From 07bb0ed1fc8905eda9cd506677ef6347d936387b Mon Sep 17 00:00:00 2001 From: Augustin Date: Fri, 25 Oct 2024 19:23:03 +0200 Subject: [PATCH 001/808] connectors-qa: do not enforce PyPi publication (#47358) --- airbyte-ci/connectors/connectors_qa/README.md | 7 +++++- .../connectors/connectors_qa/pyproject.toml | 2 +- .../src/connectors_qa/checks/packaging.py | 14 +++++------ .../unit_tests/test_checks/test_packaging.py | 24 +++++++++++++------ .../resources/qa-checks.md | 2 +- 5 files changed, 32 insertions(+), 17 deletions(-) diff --git a/airbyte-ci/connectors/connectors_qa/README.md b/airbyte-ci/connectors/connectors_qa/README.md index 9579bee44fd5..43e15a45fb57 100644 --- a/airbyte-ci/connectors/connectors_qa/README.md +++ b/airbyte-ci/connectors/connectors_qa/README.md @@ -108,6 +108,11 @@ poe lint ## Changelog +### 1.10.0 +Do not enforce that PyPi publication is enabled for Python connectors. +Enforce that it's declared in the metadata file. +It can be set to true or false. + ### 1.9.1 Fail assets icon check if the icon is the default Airbyte icon. @@ -176,7 +181,7 @@ Fix access to connector types: it should be accessed from the `Connector.connect - Add `applies_to_connector_types` attribute to `Check` class to specify the connector types that the check applies to. -- Make `CheckPublishToPyPiIsEnabled` run on source connectors only. +- Make `CheckPublishToPyPiIsDeclared` run on source connectors only. ### 1.0.0 diff --git a/airbyte-ci/connectors/connectors_qa/pyproject.toml b/airbyte-ci/connectors/connectors_qa/pyproject.toml index c74574ee5d74..5c94a2b294f6 100644 --- a/airbyte-ci/connectors/connectors_qa/pyproject.toml +++ b/airbyte-ci/connectors/connectors_qa/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "connectors-qa" -version = "1.9.1" +version = "1.10.0" description = "A package to run QA checks on Airbyte connectors, generate reports and documentation." authors = ["Airbyte "] readme = "README.md" diff --git a/airbyte-ci/connectors/connectors_qa/src/connectors_qa/checks/packaging.py b/airbyte-ci/connectors/connectors_qa/src/connectors_qa/checks/packaging.py index dae0891dbf8b..806fcb232c2d 100644 --- a/airbyte-ci/connectors/connectors_qa/src/connectors_qa/checks/packaging.py +++ b/airbyte-ci/connectors/connectors_qa/src/connectors_qa/checks/packaging.py @@ -42,8 +42,8 @@ def _run(self, connector: Connector) -> CheckResult: ) -class CheckPublishToPyPiIsEnabled(PackagingCheck): - name = "Python connectors must have PyPi publishing enabled" +class CheckPublishToPyPiIsDeclared(PackagingCheck): + name = "Python connectors must have PyPi publishing declared." description = f"Python connectors must have [PyPi](https://pypi.org/) publishing enabled in their `{consts.METADATA_FILE_NAME}` file. This is declared by setting `remoteRegistries.pypi.enabled` to `true` in {consts.METADATA_FILE_NAME}. This is to ensure that all connectors can be published to PyPi and can be used in `PyAirbyte`." applies_to_connector_languages = [ ConnectorLanguage.PYTHON, @@ -52,14 +52,14 @@ class CheckPublishToPyPiIsEnabled(PackagingCheck): applies_to_connector_types = ["source"] def _run(self, connector: Connector) -> CheckResult: - publish_to_pypi_is_enabled = get(connector.metadata, "remoteRegistries.pypi.enabled", False) - if not publish_to_pypi_is_enabled: + publish_to_pypi_is_enabled = get(connector.metadata, "remoteRegistries.pypi.enabled") + if publish_to_pypi_is_enabled is None: return self.create_check_result( connector=connector, passed=False, - message=f"PyPi publishing is not enabled. Please enable it in the {consts.METADATA_FILE_NAME} file", + message=f"PyPi publishing is not declared. Please set it in the {consts.METADATA_FILE_NAME} file", ) - return self.create_check_result(connector=connector, passed=True, message="PyPi publishing is enabled") + return self.create_check_result(connector=connector, passed=True, message="PyPi publishing is declared") class CheckManifestOnlyConnectorBaseImage(PackagingCheck): @@ -234,6 +234,6 @@ def _run(self, connector: Connector) -> CheckResult: CheckConnectorLicenseMatchInPyproject(), CheckVersionFollowsSemver(), CheckConnectorVersionMatchInPyproject(), - CheckPublishToPyPiIsEnabled(), + CheckPublishToPyPiIsDeclared(), CheckManifestOnlyConnectorBaseImage(), ] diff --git a/airbyte-ci/connectors/connectors_qa/tests/unit_tests/test_checks/test_packaging.py b/airbyte-ci/connectors/connectors_qa/tests/unit_tests/test_checks/test_packaging.py index 4d75b6195e26..b494c9d40074 100644 --- a/airbyte-ci/connectors/connectors_qa/tests/unit_tests/test_checks/test_packaging.py +++ b/airbyte-ci/connectors/connectors_qa/tests/unit_tests/test_checks/test_packaging.py @@ -99,29 +99,39 @@ def test_fail_with_missing_image(self, mocker, tmp_path): assert "A manifest-only connector must use `source-declarative-manifest` base image" in result.message -class TestCheckPublishToPyPiIsEnabled: - def test_fail_if_publish_to_pypi_is_not_enabled(self, mocker): +class TestCheckPublishToPyPiIsDeclared: + def test_fail_if_publish_to_pypi_is_not_declared(self, mocker): # Arrange - connector = mocker.MagicMock(metadata={"remoteRegistries": {"pypi": {"enabled": False}}}) + connector = mocker.MagicMock(metadata={"remoteRegistries": {}}) # Act - result = packaging.CheckPublishToPyPiIsEnabled()._run(connector) + result = packaging.CheckPublishToPyPiIsDeclared()._run(connector) # Assert assert result.status == CheckStatus.FAILED - assert "PyPi publishing is not enabled" in result.message + assert "PyPi publishing is not declared" in result.message def test_pass_if_publish_to_pypi_is_enabled(self, mocker): # Arrange connector = mocker.MagicMock(metadata={"remoteRegistries": {"pypi": {"enabled": True}}}) # Act - result = packaging.CheckPublishToPyPiIsEnabled()._run(connector) + result = packaging.CheckPublishToPyPiIsDeclared()._run(connector) # Assert assert result.status == CheckStatus.PASSED - assert "PyPi publishing is enabled" in result.message + assert "PyPi publishing is declared" in result.message + + def test_pass_if_publish_to_pypi_is_disabled(self, mocker): + # Arrange + connector = mocker.MagicMock(metadata={"remoteRegistries": {"pypi": {"enabled": False}}}) + # Act + result = packaging.CheckPublishToPyPiIsDeclared()._run(connector) + + # Assert + assert result.status == CheckStatus.PASSED + assert "PyPi publishing is declared" in result.message class TestCheckConnectorLicense: def test_fail_when_license_is_missing(self, mocker): diff --git a/docs/contributing-to-airbyte/resources/qa-checks.md b/docs/contributing-to-airbyte/resources/qa-checks.md index 0a471d23d6e6..6d0ceaeb3a82 100644 --- a/docs/contributing-to-airbyte/resources/qa-checks.md +++ b/docs/contributing-to-airbyte/resources/qa-checks.md @@ -360,7 +360,7 @@ _Applies to connector with any Airbyte usage level_ Connector version in metadata.yaml and pyproject.toml file must match. This is to ensure that connector release is consistent. -### Python connectors must have PyPi publishing enabled +### Python connectors must have PyPi publishing declared. _Applies to the following connector types: source_ _Applies to the following connector languages: python, low-code_ From eacada5b26f4a8d8a8f79df41160d7dc38001e37 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Fri, 25 Oct 2024 23:06:40 +0530 Subject: [PATCH 002/808] source-uservoice contribution from parthiv11 (#46867) Co-authored-by: Marcos Marx --- .../connectors/source-uservoice/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-uservoice/icon.svg | 7 + .../connectors/source-uservoice/manifest.yaml | 4206 +++++++++++++++++ .../connectors/source-uservoice/metadata.yaml | 35 + docs/integrations/sources/uservoice.md | 58 + 6 files changed, 4356 insertions(+) create mode 100644 airbyte-integrations/connectors/source-uservoice/README.md create mode 100644 airbyte-integrations/connectors/source-uservoice/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-uservoice/icon.svg create mode 100644 airbyte-integrations/connectors/source-uservoice/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-uservoice/metadata.yaml create mode 100644 docs/integrations/sources/uservoice.md diff --git a/airbyte-integrations/connectors/source-uservoice/README.md b/airbyte-integrations/connectors/source-uservoice/README.md new file mode 100644 index 000000000000..6a47780e7ec6 --- /dev/null +++ b/airbyte-integrations/connectors/source-uservoice/README.md @@ -0,0 +1,33 @@ +# Uservoice +This directory contains the manifest-only connector for `source-uservoice`. + +Airbyte connector for UserVoice.com allows users to efficiently extract data from the UserVoice and integrate it with various data destinations. This connector can sync data such as user feedback, suggestions, comments, tickets, and support metrics, providing a streamlined way to analyze and act on customer feedback. It supports incremental data syncs, ensuring that new or updated data is captured without duplication. The connector is designed for easy setup, enabling seamless integration with UserVoice's API to ensure your customer insights are always up to date. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-uservoice:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-uservoice build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-uservoice test +``` + diff --git a/airbyte-integrations/connectors/source-uservoice/acceptance-test-config.yml b/airbyte-integrations/connectors/source-uservoice/acceptance-test-config.yml new file mode 100644 index 000000000000..bfe441489288 --- /dev/null +++ b/airbyte-integrations/connectors/source-uservoice/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-uservoice:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-uservoice/icon.svg b/airbyte-integrations/connectors/source-uservoice/icon.svg new file mode 100644 index 000000000000..1798129384d3 --- /dev/null +++ b/airbyte-integrations/connectors/source-uservoice/icon.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/airbyte-integrations/connectors/source-uservoice/manifest.yaml b/airbyte-integrations/connectors/source-uservoice/manifest.yaml new file mode 100644 index 000000000000..8d7a6a5faf09 --- /dev/null +++ b/airbyte-integrations/connectors/source-uservoice/manifest.yaml @@ -0,0 +1,4206 @@ +version: 5.12.0 + +type: DeclarativeSource + +description: >- + Airbyte connector for UserVoice.com allows users to efficiently extract data + from the UserVoice and integrate it with various data destinations. This + connector can sync data such as user feedback, suggestions, comments, tickets, + and support metrics, providing a streamlined way to analyze and act on + customer feedback. It supports incremental data syncs, ensuring that new or + updated data is captured without duplication. The connector is designed for + easy setup, enabling seamless integration with UserVoice's API to ensure your + customer insights are always up to date. + +check: + type: CheckStream + stream_names: + - forums + +definitions: + streams: + forums: + type: DeclarativeStream + name: forums + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/forums + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - forums + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/forums" + external_accounts: + type: DeclarativeStream + name: external_accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/external_accounts + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - external_accounts + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/external_accounts" + external_users: + type: DeclarativeStream + name: external_users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/external_users + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - external_users + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/external_users" + features: + type: DeclarativeStream + name: features + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/features + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - features + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/features" + feedback_records: + type: DeclarativeStream + name: feedback_records + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/feedback_records + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - feedback_records + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/feedback_records" + suggestions: + type: DeclarativeStream + name: suggestions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/suggestions + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - suggestions + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/suggestions" + attachments: + type: DeclarativeStream + name: attachments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/attachments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - attachments + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/attachments" + categories: + type: DeclarativeStream + name: categories + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/categories + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - categories + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/categories" + comments: + type: DeclarativeStream + name: comments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/comments + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - comments + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/comments" + custom_fields: + type: DeclarativeStream + name: custom_fields + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/custom_fields + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - custom_fields + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/custom_fields" + feature_statuses: + type: DeclarativeStream + name: feature_statuses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/feature_statuses + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - feature_statuses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/feature_statuses" + forum_invitations: + type: DeclarativeStream + name: forum_invitations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/forum_invitations + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - forum_invitations + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/forum_invitations" + importance_responses: + type: DeclarativeStream + name: importance_responses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/importance_responses + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - importance_responses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/importance_responses" + importance_scores: + type: DeclarativeStream + name: importance_scores + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/importance_scores + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - importance_scores + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/importance_scores" + internal_status_updates: + type: DeclarativeStream + name: internal_status_updates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/internal_status_updates + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - internal_status_updates + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/internal_status_updates" + internal_flags: + type: DeclarativeStream + name: internal_flags + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/internal_flags + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - internal_flags + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/internal_flags" + internal_statuses: + type: DeclarativeStream + name: internal_statuses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/internal_statuses + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - internal_statuses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/internal_statuses" + labels: + type: DeclarativeStream + name: labels + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/labels + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - labels + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/labels" + permissions: + type: DeclarativeStream + name: permissions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/permissions + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - permissions + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/permissions" + notes: + type: DeclarativeStream + name: notes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/notes + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - notes + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/notes" + product_areas: + type: DeclarativeStream + name: product_areas + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/product_areas + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - product_areas + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/product_areas" + segmented_values: + type: DeclarativeStream + name: segmented_values + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/segmented_values + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - segmented_values + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/segmented_values" + segments: + type: DeclarativeStream + name: segments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/segments + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - segments + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/segments" + service_hook_logs: + type: DeclarativeStream + name: service_hook_logs + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/service_hook_logs + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - service_hook_logs + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/service_hook_logs" + status_updates: + type: DeclarativeStream + name: status_updates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/status_updates + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - status_updates + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/status_updates" + statuses: + type: DeclarativeStream + name: statuses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/statuses + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - statuses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/statuses" + supporter_messages: + type: DeclarativeStream + name: supporter_messages + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/supporter_messages + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - supporter_messages + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/supporter_messages" + suggested_merges: + type: DeclarativeStream + name: suggested_merges + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/suggested_merges + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - suggested_merges + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/suggested_merges" + suggestion_activity_entries: + type: DeclarativeStream + name: suggestion_activity_entries + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/suggestion_activity_entries + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - suggestion_activity_entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/suggestion_activity_entries" + supporters: + type: DeclarativeStream + name: supporters + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/supporters + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - supporters + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/supporters" + teams: + type: DeclarativeStream + name: teams + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/teams + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - teams + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/teams" + translatable_strings: + type: DeclarativeStream + name: translatable_strings + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/translatable_strings + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/translatable_strings" + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /admin/users + http_method: GET + request_parameters: + sort: updated_at + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - users + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('cursor') }}" + stop_condition: "{{ response.get('pagination', {}).get('cursor') is not defined }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: updated_after + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: updated_before + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + base_requester: + type: HttpRequester + url_base: https://{{ config['subdomain'] }}.uservoice.com/api/v2 + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/forums" + - $ref: "#/definitions/streams/external_accounts" + - $ref: "#/definitions/streams/external_users" + - $ref: "#/definitions/streams/features" + - $ref: "#/definitions/streams/feedback_records" + - $ref: "#/definitions/streams/suggestions" + - $ref: "#/definitions/streams/attachments" + - $ref: "#/definitions/streams/categories" + - $ref: "#/definitions/streams/comments" + - $ref: "#/definitions/streams/custom_fields" + - $ref: "#/definitions/streams/feature_statuses" + - $ref: "#/definitions/streams/forum_invitations" + - $ref: "#/definitions/streams/importance_responses" + - $ref: "#/definitions/streams/importance_scores" + - $ref: "#/definitions/streams/internal_status_updates" + - $ref: "#/definitions/streams/internal_flags" + - $ref: "#/definitions/streams/internal_statuses" + - $ref: "#/definitions/streams/labels" + - $ref: "#/definitions/streams/permissions" + - $ref: "#/definitions/streams/notes" + - $ref: "#/definitions/streams/product_areas" + - $ref: "#/definitions/streams/segmented_values" + - $ref: "#/definitions/streams/segments" + - $ref: "#/definitions/streams/service_hook_logs" + - $ref: "#/definitions/streams/status_updates" + - $ref: "#/definitions/streams/statuses" + - $ref: "#/definitions/streams/supporter_messages" + - $ref: "#/definitions/streams/suggested_merges" + - $ref: "#/definitions/streams/suggestion_activity_entries" + - $ref: "#/definitions/streams/supporters" + - $ref: "#/definitions/streams/teams" + - $ref: "#/definitions/streams/translatable_strings" + - $ref: "#/definitions/streams/users" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - subdomain + - api_key + - start_date + properties: + subdomain: + type: string + name: subdomain + order: 0 + title: subdomain + api_key: + type: string + order: 1 + title: API Key + airbyte_secret: true + start_date: + type: string + order: 2 + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + additionalProperties: true + +metadata: + autoImportSchema: + forums: true + external_accounts: false + external_users: false + features: false + feedback_records: false + suggestions: true + attachments: true + categories: true + comments: true + custom_fields: true + feature_statuses: true + forum_invitations: true + importance_responses: true + importance_scores: true + internal_status_updates: true + internal_flags: true + internal_statuses: true + labels: true + permissions: true + notes: true + product_areas: true + segmented_values: true + segments: true + service_hook_logs: true + status_updates: true + statuses: true + supporter_messages: true + suggested_merges: true + suggestion_activity_entries: true + supporters: true + teams: true + translatable_strings: true + users: true + yamlComponents: + streams: + product_areas: + - recordSelector + testedStreams: + forums: + hasRecords: true + streamHash: c20b96f8e6e6f1006f3110e2834f8034ff4c2aad + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + external_accounts: + hasRecords: true + streamHash: f07bb7559b2e47d7c23668e43883a7799606b71f + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + external_users: + hasRecords: true + streamHash: 750d547a73828a07e311071c777c8a76e1eaae83 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + features: + hasRecords: true + streamHash: 63136619487aeefaf57884301be87508984a7214 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + feedback_records: + hasRecords: true + streamHash: 5da1e0a2e3934b54fdc8a8361f6161c13deb0aa6 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + suggestions: + hasRecords: true + streamHash: 2a4af4080781066223acc90c5cb1a28bd04f192f + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + attachments: + hasRecords: true + streamHash: 2b3d494bbf88474a7e9bf474e2064eb004820d16 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + categories: + hasRecords: true + streamHash: 093f84de0c311282151cea1efbc1eff8e14c822c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + comments: + hasRecords: true + streamHash: 6e06c3febb678ac01c632ab09af95b40e5108bbd + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + custom_fields: + hasRecords: true + streamHash: e8bbc14235cdc3bd8ba84583adeee480a293c568 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + feature_statuses: + hasRecords: true + streamHash: ebeda082bbf97fadf98c680c9b42199dbe2a9351 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + forum_invitations: + hasRecords: true + streamHash: 11a532458e2721c9b40f709647b09f0b066f30a6 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + importance_responses: + hasRecords: true + streamHash: 474e2750ce7e2b60d8bf3682e2f771514bda168f + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + importance_scores: + hasRecords: true + streamHash: e5259c011982399c04855a9b703ceba4cf6be0e9 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + internal_status_updates: + hasRecords: true + streamHash: 0e80cf0aacf3acf4f2e6fba13f039ce23a51ec8b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + internal_flags: + hasRecords: true + streamHash: 8cc0980429c4324a02f55421741dbc98f5ea3729 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + internal_statuses: + hasRecords: true + streamHash: 60b507bd12f6471858b6f9c72b83330e19978031 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + labels: + hasRecords: true + streamHash: dc0f09470d8010bc896fffd4f3c3d83cbc6c8a5c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + permissions: + hasRecords: true + streamHash: 544738ab2e4b8743731b85b22e4c00781ca911bf + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + notes: + hasRecords: true + streamHash: d4729d37e72814f6f73da0648e0c3e063566a9a3 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + product_areas: + hasRecords: true + streamHash: 3588471f78b3b04a11b49fe5db2fa6a0b32a7838 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + segmented_values: + hasRecords: true + streamHash: f5098477ec99b3ea78c0fd5afbf76158237c78e9 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + segments: + hasRecords: true + streamHash: 17ea1644d15822f4f7a8ff4ea454579d9dad8299 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + service_hook_logs: + hasRecords: true + streamHash: b8913239a1bbac3dca1f75522ea306dcc15d4836 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + status_updates: + streamHash: d4629992cae8179c909f7303501179fd8e75dff0 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + statuses: + streamHash: d0e08441fcccce41bdb09f31313dc0d5afff3968 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + supporter_messages: + streamHash: cf80e223117cf73277ce60db0f2d5c881663ae4d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + suggested_merges: + streamHash: e7ba58d3bdeb9c4c1d9c900b1420bfa17fb3c87b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + suggestion_activity_entries: + streamHash: ff8cb44b6a025a242ae14285363bfcaaa31088af + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + supporters: + streamHash: 433101320e334abfd0466c224a61b7e55e3ae35e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + teams: + streamHash: 6b8e034c0584d82379a7ccc9f88b1b78853fe486 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + translatable_strings: + hasRecords: true + streamHash: 8d2ecfa37ee97d1d1fe3bcc53018a4e9b5c9dfe7 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + users: + streamHash: 8acda3158debc02006b545efedf8f64c96a0dd23 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://developer.uservoice.com/docs/api/v2/reference/ + openapiSpecUrl: https://uservoice.uservoice.com/api/v2/public/doc/api-v2-reference + +schemas: + forums: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + category_required: + type: + - boolean + - "null" + classic_voting: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + id: + type: number + importance_enabled: + type: + - boolean + - "null" + is_open: + type: + - boolean + - "null" + is_private: + type: + - boolean + - "null" + is_public: + type: + - boolean + - "null" + links: + type: + - object + - "null" + properties: + updated_by: + type: + - number + - "null" + moderation_enabled: + type: + - boolean + - "null" + name: + type: + - string + - "null" + open_suggestions_count: + type: + - number + - "null" + portal_url: + type: + - string + - "null" + prompt: + type: + - string + - "null" + suggestions_count: + type: + - number + - "null" + updated_at: + type: string + welcome_message: + type: + - string + - "null" + welcome_message_mime_type: + type: + - string + - "null" + required: + - id + - updated_at + external_accounts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + cf_crm_account_status: + type: + - string + - "null" + cf_crm_account_type: + type: + - string + - "null" + cf_crm_company_size: + type: + - number + - "null" + cf_crm_industry: + type: + - string + - "null" + cf_crm_market_segment: + type: + - string + - "null" + created_at: + type: + - string + - "null" + external_id: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: {} + mrr: + type: + - number + - "null" + mrr_cents: + type: + - number + - "null" + name: + type: + - string + - "null" + requests_count: + type: + - number + - "null" + revenue: + type: + - number + - "null" + supported_ideas_count: + type: + - number + - "null" + updated_at: + type: + - string + - "null" + users_count: + type: + - number + - "null" + required: + - id + external_users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + email: + type: + - string + - "null" + external_id: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + external_account: + type: + - number + - "null" + user: + type: + - number + - "null" + name: + type: + - string + - "null" + seen_days: + type: + - number + - "null" + updated_at: + type: + - string + - "null" + required: + - id + features: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + cf_confidence: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + label: + type: + - string + - "null" + value: + type: + - number + - "null" + cf_effort: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + label: + type: + - string + - "null" + value: + type: + - number + - "null" + cf_goal_1: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + label: + type: + - string + - "null" + value: + type: + - number + - "null" + cf_goal_2: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + label: + type: + - string + - "null" + value: + type: + - number + - "null" + cf_mockups: + type: + - string + - "null" + created_at: + type: + - string + - "null" + cv_cost_benefit: + type: + - number + - "null" + cv_lost_opportunities: + type: + - number + - "null" + cv_lost_revenue: + type: + - number + - "null" + cv_open_opportunities: + type: + - number + - "null" + cv_open_opportunities_blockers: + type: + - number + - "null" + cv_potential_revenue: + type: + - number + - "null" + cv_potential_revenue_blockers: + type: + - number + - "null" + cv_rice: + type: + - number + - "null" + cv_sample_segment.accounts_count: + type: + - number + - "null" + cv_sample_segment.revenue: + type: + - number + - "null" + cv_sample_segment.users_count: + type: + - number + - "null" + id: + type: number + jira_link_count: + type: + - number + - "null" + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + custom_fields: + type: + - array + - "null" + items: + type: + - number + - "null" + feature_status: + type: + - number + - "null" + product_area: + type: + - number + - "null" + roadmap: + type: + - number + - "null" + suggestions: + type: + - array + - "null" + items: + type: + - number + - "null" + updated_by: + type: + - number + - "null" + name: + type: + - string + - "null" + position: + type: + - number + - "null" + suggestions_count: + type: + - number + - "null" + supporter_mrr_cents: + type: + - number + - "null" + supporter_revenue: + type: + - number + - "null" + supporting_accounts_count: + type: + - number + - "null" + supporting_users_count: + type: + - number + - "null" + updated_at: + type: + - string + - "null" + vsts_link_count: + type: + - number + - "null" + required: + - id + feedback_records: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + body: + type: + - string + - "null" + body_mime_type: + type: + - string + - "null" + channel: + type: + - string + - "null" + created_at: + type: + - string + - "null" + has_attachments: + type: + - boolean + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + suggestion: + type: + - number + - "null" + supporter: + type: + - number + - "null" + updated_by: + type: + - number + - "null" + user: + type: + - number + - "null" + sentiment_score: + type: + - number + - "null" + severity: + type: + - number + - "null" + source_guid: + type: + - string + - "null" + source_type: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + required: + - id + suggestions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + account_supporters_count: + type: + - number + - "null" + admin_url: + type: + - string + - "null" + all_internal_flags_count: + type: + - number + - "null" + average_engagement: + type: + - number + - "null" + body: + type: + - string + - "null" + body_mime_type: + type: + - string + - "null" + channel: + type: + - string + - "null" + closed_at: + type: + - string + - "null" + comments_count: + type: + - number + - "null" + created_at: + type: + - string + - "null" + creator_browser: + type: + - string + - "null" + creator_browser_version: + type: + - string + - "null" + creator_mobile: + type: + - boolean + - "null" + creator_os: + type: + - string + - "null" + creator_referrer: + type: + - string + - "null" + creator_user_agent: + type: + - string + - "null" + cv_lost_opportunities: + type: + - number + - "null" + cv_lost_revenue: + type: + - number + - "null" + cv_open_opportunities: + type: + - number + - "null" + cv_open_opportunities_blockers: + type: + - number + - "null" + cv_potential_revenue: + type: + - number + - "null" + cv_potential_revenue_blockers: + type: + - number + - "null" + cv_sample_segment.accounts_count: + type: + - number + - "null" + cv_sample_segment.revenue: + type: + - number + - "null" + cv_sample_segment.users_count: + type: + - number + - "null" + engagement_trend: + type: + - number + - "null" + id: + type: number + importance_high_count: + type: + - number + - "null" + importance_high_percent: + type: + - number + - "null" + importance_low_count: + type: + - number + - "null" + importance_low_percent: + type: + - number + - "null" + importance_medium_count: + type: + - number + - "null" + importance_medium_percent: + type: + - number + - "null" + importance_score_average: + type: + - string + - "null" + importance_total_count: + type: + - number + - "null" + inappropriate_flags_count: + type: + - number + - "null" + internal_flags_count: + type: + - number + - "null" + jira_link_count: + type: + - number + - "null" + last_internal_flag_at: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + captured_by: + type: + - number + - "null" + category: + type: + - number + - "null" + created_by: + type: + - number + - "null" + custom_fields: + type: + - array + - "null" + features: + type: + - array + - "null" + items: + type: + - number + - "null" + forum: + type: + - number + - "null" + labels: + type: + - array + - "null" + items: + type: + - number + - "null" + last_internal_status_update: + type: + - number + - "null" + last_status_update: + type: + - number + - "null" + last_supporter_message: + type: + - number + - "null" + status: + type: + - number + - "null" + merge_candidates_count: + type: + - number + - "null" + notes_count: + type: + - number + - "null" + portal_url: + type: + - string + - "null" + recent_engagement: + type: + - number + - "null" + redirect_url: + type: + - string + - "null" + requests_count: + type: + - number + - "null" + satisfaction_detractor_count: + type: + - number + - "null" + satisfaction_neutral_count: + type: + - number + - "null" + satisfaction_promoter_count: + type: + - number + - "null" + sentiment_score: + type: + - number + - "null" + state: + type: + - string + - "null" + supporter_mrr: + type: + - number + - "null" + supporter_revenue: + type: + - number + - "null" + supporter_satisfaction_score: + type: + - number + - "null" + supporters_count: + type: + - number + - "null" + supporting_accounts_count: + type: + - number + - "null" + title: + type: + - string + - "null" + total_sentiment_score: + type: + - number + - "null" + updated_at: + type: string + vsts_link_count: + type: + - number + - "null" + required: + - id + - updated_at + attachments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + content_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + file_name: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + suggestion: + type: + - number + - "null" + size_in_bytes: + type: + - number + - "null" + updated_at: + type: string + url: + type: + - string + - "null" + required: + - id + - updated_at + categories: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + forum: + type: + - number + - "null" + name: + type: + - string + - "null" + open_suggestions_count: + type: + - number + - "null" + suggestions_count: + type: + - number + - "null" + updated_at: + type: string + required: + - id + - updated_at + comments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + body: + type: + - string + - "null" + body_mime_type: + type: + - string + - "null" + channel: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: number + inappropriate_flags_count: + type: + - number + - "null" + is_admin_comment: + type: + - boolean + - "null" + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + suggestion: + type: + - number + - "null" + sentiment_score: + type: + - number + - "null" + state: + type: + - string + - "null" + updated_at: + type: string + required: + - id + - updated_at + custom_fields: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + combined_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + field_type: + type: + - string + - "null" + id: + type: number + key: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + updated_by: + type: + - number + - "null" + name: + type: + - string + - "null" + numeric_enum_values: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + is_default: + type: + - boolean + - "null" + label: + type: + - string + - "null" + numeric_value: + type: + - number + - "null" + object_type: + type: + - string + - "null" + updated_at: + type: string + value_type: + type: + - string + - "null" + required: + - id + - updated_at + feature_statuses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + hex_color: + type: + - string + - "null" + id: + type: number + is_default: + type: + - boolean + - "null" + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + updated_by: + type: + - number + - "null" + name: + type: + - string + - "null" + position: + type: + - number + - "null" + updated_at: + type: string + required: + - id + - updated_at + forum_invitations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + action: + type: + - string + - "null" + claimed_at: + type: + - string + - "null" + code: + type: + - string + - "null" + created_at: + type: + - string + - "null" + email: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + claimed_by: + type: + - number + - "null" + forum: + type: + - number + - "null" + invited_by: + type: + - number + - "null" + reply_to: + type: + - string + - "null" + return_to: + type: + - string + - "null" + satisfaction_score: + type: + - string + - "null" + subject: + type: + - string + - "null" + text: + type: + - string + - "null" + updated_at: + type: string + required: + - id + - updated_at + importance_responses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: number + label: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + user: + type: + - number + - "null" + updated_at: + type: + - string + - "null" + value: + type: + - number + - "null" + required: + - id + importance_scores: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + response: + type: + - number + - "null" + suggestion: + type: + - number + - "null" + user: + type: + - number + - "null" + updated_at: + type: + - string + - "null" + required: + - id + internal_status_updates: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + hex_color: + type: + - string + - "null" + id: + type: number + internal_status_id: + type: + - number + - "null" + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + new_internal_status: + type: + - number + - "null" + old_internal_status: + type: + - number + - "null" + suggestion: + type: + - number + - "null" + name: + type: + - string + - "null" + teams_notified: + type: + - boolean + - "null" + thumbs_down_count: + type: + - number + - "null" + thumbs_up_count: + type: + - number + - "null" + required: + - id + internal_flags: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + suggestion: + type: + - number + - "null" + user: + type: + - number + - "null" + reason: + type: + - string + - "null" + updated_at: + type: string + required: + - id + - updated_at + internal_statuses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + hex_color: + type: + - string + - "null" + id: + type: number + is_default: + type: + - boolean + - "null" + name: + type: + - string + - "null" + position: + type: + - number + - "null" + updated_at: + type: string + required: + - id + - updated_at + labels: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + full_name: + type: + - string + - "null" + id: + type: number + level: + type: + - number + - "null" + links: + type: + - object + - "null" + properties: + parent: + type: + - number + - "null" + name: + type: + - string + - "null" + open_suggestions_count: + type: + - number + - "null" + updated_at: + type: string + required: + - id + - updated_at + permissions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + features: + type: + - string + - "null" + feedback: + type: + - string + - "null" + id: + type: number + knowledgebase: + type: + - string + - "null" + license_type: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + user: + type: + - number + - "null" + settings: + type: + - string + - "null" + tickets: + type: + - string + - "null" + required: + - id + notes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + body: + type: + - string + - "null" + body_mime_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + mentions: + type: + - array + - "null" + suggestion: + type: + - number + - "null" + updated_at: + type: string + required: + - id + - updated_at + product_areas: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + updated_by: + type: + - number + - "null" + name: + type: + - string + - "null" + updated_at: + type: string + required: + - id + - updated_at + segmented_values: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + column_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: number + key: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + segment: + type: + - number + - "null" + updated_by: + type: + - number + - "null" + name: + type: + - string + - "null" + object_type: + type: + - string + - "null" + updated_at: + type: string + required: + - id + - updated_at + segments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + filters: + type: + - object + - "null" + properties: + column: + type: + - string + - "null" + expressions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + column: + type: + - string + - "null" + expressions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + column: + type: + - string + - "null" + operand: + type: + - object + - "null" + properties: + val: + type: + - string + - "null" + operator: + type: + - string + - "null" + operand: + type: + - object + - "null" + properties: + val: + type: + - string + - "null" + operator: + type: + - string + - "null" + operand: + type: + - object + - "null" + properties: + val: + type: + - string + - "null" + operator: + type: + - string + - "null" + id: + type: number + key: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + updated_by: + type: + - number + - "null" + name: + type: + - string + - "null" + updated_at: + type: string + required: + - id + - updated_at + service_hook_logs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + event: + type: + - string + - "null" + exception: + type: + - string + - "null" + http_status: + type: + - number + - "null" + id: + type: number + object_id: + type: + - number + - "null" + url: + type: + - string + - "null" + required: + - id + status_updates: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + body: + type: + - string + - "null" + created_at: + type: + - string + - "null" + html_body: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + new_status: + type: + - number + - "null" + old_status: + type: + - number + - "null" + suggestion: + type: + - number + - "null" + user: + type: + - number + - "null" + reactions_enabled: + type: + - boolean + - "null" + supporters_notified: + type: + - boolean + - "null" + thumbs_down_count: + type: + - number + - "null" + thumbs_up_count: + type: + - number + - "null" + updated_at: + type: string + required: + - id + - updated_at + statuses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + allow_comments: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + hex_color: + type: + - string + - "null" + id: + type: number + is_open: + type: + - boolean + - "null" + name: + type: + - string + - "null" + position: + type: + - number + - "null" + updated_at: + type: string + required: + - id + - updated_at + supporter_messages: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + body: + type: + - string + - "null" + body_mime_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: + - number + - "null" + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + suggestion: + type: + - number + - "null" + mail_clicked_count: + type: + - number + - "null" + mail_opened_count: + type: + - number + - "null" + mail_sent_count: + type: + - number + - "null" + reply_count: + type: + - number + - "null" + updated_at: + type: string + required: + - updated_at + suggested_merges: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: number + links: + type: + - object + - "null" + properties: + suggestion_a: + type: + - number + - "null" + suggestion_b: + type: + - number + - "null" + score: + type: + - number + - "null" + state: + type: + - string + - "null" + subdomain_id: + type: + - number + - "null" + updated_at: + type: string + required: + - id + - updated_at + suggestion_activity_entries: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: number + kind: + type: + - string + - "null" + linkable_is_spam: + type: + - boolean + - "null" + linkable_needs_review: + type: + - boolean + - "null" + links: + type: + - object + - "null" + properties: + comment: + type: + - number + - "null" + created_by: + type: + - number + - "null" + feedback_record: + type: + - number + - "null" + internal_flag: + type: + - number + - "null" + internal_status_update: + type: + - number + - "null" + note: + type: + - number + - "null" + status_update: + type: + - number + - "null" + suggestion: + type: + - number + - "null" + supporter_message: + type: + - number + - "null" + new_body: + type: + - string + - "null" + new_title: + type: + - string + - "null" + required: + - id + supporters: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + channel: + type: + - string + - "null" + comments_count: + type: + - number + - "null" + created_at: + type: + - string + - "null" + how: + type: + - string + - "null" + id: + type: number + is_subscribed: + type: + - boolean + - "null" + links: + type: + - object + - "null" + properties: + created_by: + type: + - number + - "null" + suggestion: + type: + - number + - "null" + updated_by: + type: + - number + - "null" + user: + type: + - number + - "null" + requests_count: + type: + - number + - "null" + updated_at: + type: string + required: + - id + - updated_at + teams: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + members_count: + type: + - number + - "null" + name: + type: + - string + - "null" + required: + - id + translatable_strings: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + html: + type: + - object + - "null" + properties: + forum.964208.welcome_message: + type: + - string + - "null" + forum.964211.welcome_message: + type: + - string + - "null" + plain: + type: + - object + - "null" + properties: + category.510566.name: + type: + - string + - "null" + category.510569.name: + type: + - string + - "null" + category.510572.name: + type: + - string + - "null" + category.510575.name: + type: + - string + - "null" + category.510578.name: + type: + - string + - "null" + category.510581.name: + type: + - string + - "null" + category.510584.name: + type: + - string + - "null" + category.510587.name: + type: + - string + - "null" + category.510590.name: + type: + - string + - "null" + category.510593.name: + type: + - string + - "null" + category.510596.name: + type: + - string + - "null" + category.510599.name: + type: + - string + - "null" + forum.964205.name: + type: + - string + - "null" + forum.964208.name: + type: + - string + - "null" + forum.964208.prompt: + type: + - string + - "null" + forum.964211.name: + type: + - string + - "null" + forum.964211.prompt: + type: + - string + - "null" + forum.964214.name: + type: + - string + - "null" + forum.964214.prompt: + type: + - string + - "null" + status.5391407.name: + type: + - string + - "null" + status.5391410.name: + type: + - string + - "null" + status.5391413.name: + type: + - string + - "null" + status.5391416.name: + type: + - string + - "null" + status.5391419.name: + type: + - string + - "null" + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + allowed_state: + type: + - string + - "null" + avatar_url: + type: + - string + - "null" + comment_notifications: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + email_address: + type: + - string + - "null" + email_confirmed: + type: + - boolean + - "null" + id: + type: number + is_admin: + type: + - boolean + - "null" + is_owner: + type: + - boolean + - "null" + is_validation_admin: + type: + - boolean + - "null" + links: + type: + - object + - "null" + properties: + crm_account: + type: + - number + - "null" + external_users: + type: + - array + - "null" + items: + type: + - number + - "null" + name: + type: + - string + - "null" + state: + type: + - string + - "null" + status_notifications: + type: + - boolean + - "null" + supported_suggestions_count: + type: + - number + - "null" + traits: + type: + - object + - "null" + properties: + account_created_at: + type: + - number + - "null" + account_id: + type: + - string + - "null" + account_internal_id: + type: + - number + - "null" + account_monthly_rate: + type: + - number + - "null" + account_name: + type: + - string + - "null" + created_at: + type: + - number + - "null" + email: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + updated_at: + type: string + required: + - id + - updated_at diff --git a/airbyte-integrations/connectors/source-uservoice/metadata.yaml b/airbyte-integrations/connectors/source-uservoice/metadata.yaml new file mode 100644 index 000000000000..07ba6f2f45ca --- /dev/null +++ b/airbyte-integrations/connectors/source-uservoice/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "https://*.uservoice.com/api/" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-uservoice + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + connectorSubtype: api + connectorType: source + definitionId: 6ad41bae-c3a3-4a8e-abfd-c75b8604c083 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-uservoice + githubIssueLabel: source-uservoice + icon: icon.svg + license: MIT + name: Uservoice + releaseDate: 2024-10-16 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/uservoice + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/uservoice.md b/docs/integrations/sources/uservoice.md new file mode 100644 index 000000000000..34ed83ad26bf --- /dev/null +++ b/docs/integrations/sources/uservoice.md @@ -0,0 +1,58 @@ +# Uservoice +Airbyte connector for UserVoice.com allows users to efficiently extract data from the UserVoice and integrate it with various data destinations. This connector can sync data such as user feedback, suggestions, comments, tickets, and support metrics, providing a streamlined way to analyze and act on customer feedback. It supports incremental data syncs, ensuring that new or updated data is captured without duplication. The connector is designed for easy setup, enabling seamless integration with UserVoice's API to ensure your customer insights are always up to date. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `subdomain` | `string` | Subdomain. | | +| `api_key` | `string` | API Key. | | +| `start_date` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| forums | id | DefaultPaginator | ✅ | ✅ | +| external_accounts | id | DefaultPaginator | ✅ | ✅ | +| external_users | id | DefaultPaginator | ✅ | ✅ | +| features | id | DefaultPaginator | ✅ | ✅ | +| feedback_records | id | DefaultPaginator | ✅ | ✅ | +| suggestions | id | DefaultPaginator | ✅ | ✅ | +| attachments | id | DefaultPaginator | ✅ | ✅ | +| categories | id | DefaultPaginator | ✅ | ✅ | +| comments | id | DefaultPaginator | ✅ | ✅ | +| custom_fields | id | DefaultPaginator | ✅ | ✅ | +| feature_statuses | id | DefaultPaginator | ✅ | ✅ | +| forum_invitations | id | DefaultPaginator | ✅ | ✅ | +| importance_responses | id | DefaultPaginator | ✅ | ❌ | +| importance_scores | id | DefaultPaginator | ✅ | ❌ | +| internal_status_updates | id | DefaultPaginator | ✅ | ❌ | +| internal_flags | id | DefaultPaginator | ✅ | ✅ | +| internal_statuses | id | DefaultPaginator | ✅ | ✅ | +| labels | id | DefaultPaginator | ✅ | ✅ | +| permissions | id | DefaultPaginator | ✅ | ❌ | +| notes | id | DefaultPaginator | ✅ | ✅ | +| product_areas | id | DefaultPaginator | ✅ | ✅ | +| segmented_values | id | DefaultPaginator | ✅ | ✅ | +| segments | id | DefaultPaginator | ✅ | ✅ | +| service_hook_logs | id | DefaultPaginator | ✅ | ❌ | +| status_updates | id | DefaultPaginator | ✅ | ✅ | +| statuses | id | DefaultPaginator | ✅ | ✅ | +| supporter_messages | | DefaultPaginator | ✅ | ✅ | +| suggested_merges | id | DefaultPaginator | ✅ | ✅ | +| suggestion_activity_entries | id | DefaultPaginator | ✅ | ❌ | +| supporters | id | DefaultPaginator | ✅ | ✅ | +| teams | id | DefaultPaginator | ✅ | ❌ | +| translatable_strings | | No pagination | ✅ | ❌ | +| users | id | DefaultPaginator | ✅ | ✅ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-16 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From fbf1d74843458cc8f647f46f4ce8efcb9c8222cd Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Fri, 25 Oct 2024 23:22:37 +0530 Subject: [PATCH 003/808] source-invoiced contribution from parthiv11 (#46889) Co-authored-by: Marcos Marx --- .../connectors/source-invoiced/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-invoiced/icon.svg | 2 + .../connectors/source-invoiced/manifest.yaml | 3080 +++++++++++++++++ .../connectors/source-invoiced/metadata.yaml | 35 + docs/integrations/sources/invoiced.md | 40 + 6 files changed, 3207 insertions(+) create mode 100644 airbyte-integrations/connectors/source-invoiced/README.md create mode 100644 airbyte-integrations/connectors/source-invoiced/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-invoiced/icon.svg create mode 100644 airbyte-integrations/connectors/source-invoiced/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-invoiced/metadata.yaml create mode 100644 docs/integrations/sources/invoiced.md diff --git a/airbyte-integrations/connectors/source-invoiced/README.md b/airbyte-integrations/connectors/source-invoiced/README.md new file mode 100644 index 000000000000..c87f33bb1e05 --- /dev/null +++ b/airbyte-integrations/connectors/source-invoiced/README.md @@ -0,0 +1,33 @@ +# Invoiced +This directory contains the manifest-only connector for `source-invoiced`. + +This Airbyte connector for **Invoiced** enables seamless data integration between Invoiced, a cloud-based billing and invoicing platform, and various data destinations. Using this connector, you can automatically extract and sync data such as invoices, customers, payments, and more from the Invoiced API into your preferred data warehouse or analytics platform. It simplifies the process of managing financial data and helps businesses maintain accurate and up-to-date records, facilitating better reporting and analysis. Ideal for users who need to automate data pipelines from their invoicing system. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-invoiced:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-invoiced build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-invoiced test +``` + diff --git a/airbyte-integrations/connectors/source-invoiced/acceptance-test-config.yml b/airbyte-integrations/connectors/source-invoiced/acceptance-test-config.yml new file mode 100644 index 000000000000..1e63ddeb9b63 --- /dev/null +++ b/airbyte-integrations/connectors/source-invoiced/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-invoiced:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-invoiced/icon.svg b/airbyte-integrations/connectors/source-invoiced/icon.svg new file mode 100644 index 000000000000..74ca6488c3fb --- /dev/null +++ b/airbyte-integrations/connectors/source-invoiced/icon.svg @@ -0,0 +1,2 @@ + + diff --git a/airbyte-integrations/connectors/source-invoiced/manifest.yaml b/airbyte-integrations/connectors/source-invoiced/manifest.yaml new file mode 100644 index 000000000000..deca291b1fec --- /dev/null +++ b/airbyte-integrations/connectors/source-invoiced/manifest.yaml @@ -0,0 +1,3080 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + This Airbyte connector for **Invoiced** enables seamless data integration + between Invoiced, a cloud-based billing and invoicing platform, and various + data destinations. Using this connector, you can automatically extract and + sync data such as invoices, customers, payments, and more from the Invoiced + API into your preferred data warehouse or analytics platform. It simplifies + the process of managing financial data and helps businesses maintain accurate + and up-to-date records, facilitating better reporting and analysis. Ideal for + users who need to automate data pipelines from their invoicing system. + +check: + type: CheckStream + stream_names: + - customers + +definitions: + streams: + customers: + type: DeclarativeStream + name: customers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /customers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + invoices: + type: DeclarativeStream + name: invoices + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/invoices" + payments: + type: DeclarativeStream + name: payments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /payments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/payments" + credit_balance_adjustments: + type: DeclarativeStream + name: credit_balance_adjustments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /credit_balance_adjustments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/credit_balance_adjustments" + credit_notes: + type: DeclarativeStream + name: credit_notes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /credit_notes + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/credit_notes" + subscriptions: + type: DeclarativeStream + name: subscriptions + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /subscriptions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/subscriptions" + estimates: + type: DeclarativeStream + name: estimates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /estimates + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/estimates" + contacts: + type: DeclarativeStream + name: contacts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /customers/{{ stream_partition.customer_id }}/contacts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: customer_id + stream: + $ref: "#/definitions/streams/customers" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/contacts" + items: + type: DeclarativeStream + name: items + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /items + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/items" + tax_rates: + type: DeclarativeStream + name: tax_rates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tax_rates + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tax_rates" + plans: + type: DeclarativeStream + name: plans + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /plans + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/plans" + coupons: + type: DeclarativeStream + name: coupons + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /coupons + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/coupons" + events: + type: DeclarativeStream + name: events + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /events + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/events" + notes: + type: DeclarativeStream + name: notes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /notes + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/notes" + tasks: + type: DeclarativeStream + name: tasks + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tasks + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tasks" + metered_billings: + type: DeclarativeStream + name: metered_billings + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /customers/{{ stream_partition.customer_id }}/line_items + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: customer_id + stream: + $ref: "#/definitions/streams/customers" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/metered_billings" + payment_sources: + type: DeclarativeStream + name: payment_sources + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /customers/{{ stream_partition.customer_id }}/payment_sources + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: customer_id + stream: + $ref: "#/definitions/streams/customers" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/payment_sources" + base_requester: + type: HttpRequester + url_base: https://api.invoiced.com + authenticator: + type: BasicHttpAuthenticator + password: "{{ config[\"password\"] }}" + username: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/customers" + - $ref: "#/definitions/streams/invoices" + - $ref: "#/definitions/streams/payments" + - $ref: "#/definitions/streams/credit_balance_adjustments" + - $ref: "#/definitions/streams/credit_notes" + - $ref: "#/definitions/streams/subscriptions" + - $ref: "#/definitions/streams/estimates" + - $ref: "#/definitions/streams/contacts" + - $ref: "#/definitions/streams/items" + - $ref: "#/definitions/streams/tax_rates" + - $ref: "#/definitions/streams/plans" + - $ref: "#/definitions/streams/coupons" + - $ref: "#/definitions/streams/events" + - $ref: "#/definitions/streams/notes" + - $ref: "#/definitions/streams/tasks" + - $ref: "#/definitions/streams/metered_billings" + - $ref: "#/definitions/streams/payment_sources" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + properties: + api_key: + type: string + description: API key to use. Find it at https://invoiced.com/account + name: api_key + order: 0 + title: API Key + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + customers: true + invoices: false + payments: true + credit_balance_adjustments: true + credit_notes: true + subscriptions: true + estimates: true + contacts: true + items: true + tax_rates: true + plans: false + coupons: false + events: false + notes: false + tasks: false + metered_billings: true + payment_sources: true + yamlComponents: + global: + - authenticator + testedStreams: + customers: + hasRecords: true + streamHash: f04d81d913e85427986d2249751ec9adf47e64f4 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + invoices: + hasRecords: true + streamHash: da4a0bcf9cd7404e506e651999c4c4244fecb648 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + payments: + hasRecords: true + streamHash: 6de406fdd591255593d5ea989639d0b0beb50a00 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + credit_balance_adjustments: + hasRecords: true + streamHash: 44c78e2a121236faac8189086c5d85573be55320 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + credit_notes: + hasRecords: true + streamHash: 61812f3784888d62631b6a3acab333a25d036370 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + subscriptions: + hasRecords: true + streamHash: 2c9149c2d49abc9497101567d25783661e6b7efa + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + estimates: + hasRecords: true + streamHash: 6b12be619ac63db3b052ed73bac7f6201a2e854b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + contacts: + hasRecords: true + streamHash: 95905b7d863600d7068d55d4d6fc94bfe504e826 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + items: + hasRecords: true + streamHash: 77869dbd11017ceafa20406c5a88e8f09ae4cbef + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + tax_rates: + hasRecords: true + streamHash: 8d5aee416e854b7170c5fdeee3cebd3952efecb3 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + plans: + hasRecords: true + streamHash: bdf9a0dcf6b1339c7ba6e42b8fe1a60e190a5942 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + coupons: + hasRecords: true + streamHash: d5a045d226ae14ad906354d7bffcd9c857b99727 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + events: + hasRecords: true + streamHash: daf83446e7a5b197bb4fba1bf88483b2127ec066 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + notes: + hasRecords: true + streamHash: 67456e62e82f91a79e47ace5d87e27bed477b24c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + tasks: + hasRecords: true + streamHash: ecfb21a2fcb4c701f55891a0a4fc2aa3576a39d8 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + metered_billings: + streamHash: 424dc7e1237af4f012fde9ab05933752ff215502 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + payment_sources: + hasRecords: true + streamHash: de3c7a953623aab9f1a2c8d0d23384de68cbb563 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://developer.invoiced.com/api + +schemas: + customers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + metadata: + type: + - object + - "null" + active: + type: + - boolean + - "null" + autopay: + type: + - boolean + - "null" + autopay_delay_days: + type: + - number + - "null" + bill_to_parent: + type: + - boolean + - "null" + chase: + type: + - boolean + - "null" + consolidated: + type: + - boolean + - "null" + convenience_fee: + type: + - boolean + - "null" + country: + type: + - string + - "null" + created_at: + type: + - number + - "null" + credit_hold: + type: + - boolean + - "null" + currency: + type: + - string + - "null" + email: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + number: + type: + - string + - "null" + object: + type: + - string + - "null" + owner: + type: + - number + - "null" + owner_id: + type: + - number + - "null" + payment_source: + type: + - object + - "null" + properties: + brand: + type: + - string + - "null" + chargeable: + type: + - boolean + - "null" + created_at: + type: + - number + - "null" + customer_id: + type: + - number + - "null" + exp_month: + type: + - number + - "null" + exp_year: + type: + - number + - "null" + funding: + type: + - string + - "null" + gateway: + type: + - string + - "null" + gateway_id: + type: + - string + - "null" + id: + type: + - number + - "null" + issuing_country: + type: + - string + - "null" + last4: + type: + - string + - "null" + object: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + payment_terms: + type: + - string + - "null" + phone: + type: + - string + - "null" + statement_pdf_url: + type: + - string + - "null" + statement_url: + type: + - string + - "null" + taxable: + type: + - boolean + - "null" + taxes: + type: + - array + - "null" + updated_at: + type: + - number + - "null" + required: + - id + invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + attempt_count: + type: + - number + - "null" + autopay: + type: + - boolean + - "null" + balance: + type: + - number + - "null" + chase: + type: + - boolean + - "null" + closed: + type: + - boolean + - "null" + created_at: + type: + - number + - "null" + csv_url: + type: + - string + - "null" + currency: + type: + - string + - "null" + customer: + type: + - number + - "null" + date: + type: + - number + - "null" + discounts: + type: + - array + - "null" + draft: + type: + - boolean + - "null" + due_date: + type: + - number + - "null" + id: + type: number + items: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + amount: + type: + - number + - "null" + catalog_item: + type: + - string + - "null" + created_at: + type: + - number + - "null" + discountable: + type: + - boolean + - "null" + discounts: + type: + - array + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + object: + type: + - string + - "null" + period_end: + type: + - number + - "null" + period_start: + type: + - number + - "null" + plan: + type: + - string + - "null" + prorated: + type: + - boolean + - "null" + quantity: + type: + - number + - "null" + subscription: + type: + - number + - "null" + taxable: + type: + - boolean + - "null" + taxes: + type: + - array + - "null" + unit_cost: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + late_fees: + type: + - boolean + - "null" + name: + type: + - string + - "null" + needs_attention: + type: + - boolean + - "null" + number: + type: + - string + - "null" + object: + type: + - string + - "null" + paid: + type: + - boolean + - "null" + payment_terms: + type: + - string + - "null" + payment_url: + type: + - string + - "null" + pdf_url: + type: + - string + - "null" + shipping: + type: + - array + - "null" + status: + type: + - string + - "null" + subscription: + type: + - number + - "null" + subscription_id: + type: + - number + - "null" + subtotal: + type: + - number + - "null" + taxes: + type: + - array + - "null" + total: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + url: + type: + - string + - "null" + required: + - id + payments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + amount: + type: + - number + - "null" + balance: + type: + - number + - "null" + created_at: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - number + - "null" + date: + type: + - number + - "null" + id: + type: number + method: + type: + - string + - "null" + object: + type: + - string + - "null" + pdf_url: + type: + - string + - "null" + reference: + type: + - string + - "null" + source: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + voided: + type: + - boolean + - "null" + required: + - id + credit_balance_adjustments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + amount: + type: + - number + - "null" + created_at: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - number + - "null" + date: + type: + - number + - "null" + id: + type: number + notes: + type: + - string + - "null" + object: + type: + - string + - "null" + required: + - id + credit_notes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + balance: + type: + - number + - "null" + closed: + type: + - boolean + - "null" + created_at: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - number + - "null" + date: + type: + - number + - "null" + discounts: + type: + - array + - "null" + draft: + type: + - boolean + - "null" + id: + type: number + items: + type: + - array + - "null" + name: + type: + - string + - "null" + number: + type: + - string + - "null" + object: + type: + - string + - "null" + paid: + type: + - boolean + - "null" + pdf_url: + type: + - string + - "null" + shipping: + type: + - array + - "null" + status: + type: + - string + - "null" + subtotal: + type: + - number + - "null" + taxes: + type: + - array + - "null" + total: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + url: + type: + - string + - "null" + required: + - id + subscriptions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + addons: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + amount: + type: + - number + - "null" + created_at: + type: + - number + - "null" + id: + type: + - number + - "null" + object: + type: + - string + - "null" + plan: + type: + - string + - "null" + quantity: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + amount: + type: + - number + - "null" + bill_in: + type: + - string + - "null" + bill_in_advance_days: + type: + - number + - "null" + cancel_at_period_end: + type: + - boolean + - "null" + contract_period_end: + type: + - number + - "null" + contract_period_start: + type: + - number + - "null" + contract_renewal_mode: + type: + - string + - "null" + created_at: + type: + - number + - "null" + customer: + type: + - number + - "null" + cycles: + type: + - number + - "null" + discounts: + type: + - array + - "null" + id: + type: + - number + - "null" + mrr: + type: + - number + - "null" + object: + type: + - string + - "null" + paused: + type: + - boolean + - "null" + period_end: + type: + - number + - "null" + period_start: + type: + - number + - "null" + plan: + type: + - string + - "null" + quantity: + type: + - number + - "null" + recurring_total: + type: + - number + - "null" + renewed_last: + type: + - number + - "null" + renews_next: + type: + - number + - "null" + start_date: + type: + - number + - "null" + status: + type: + - string + - "null" + taxes: + type: + - array + - "null" + updated_at: + type: + - number + - "null" + url: + type: + - string + - "null" + estimates: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + closed: + type: + - boolean + - "null" + created_at: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - number + - "null" + date: + type: + - number + - "null" + deposit: + type: + - number + - "null" + deposit_paid: + type: + - boolean + - "null" + discounts: + type: + - array + - "null" + draft: + type: + - boolean + - "null" + id: + type: number + items: + type: + - array + - "null" + name: + type: + - string + - "null" + number: + type: + - string + - "null" + object: + type: + - string + - "null" + pdf_url: + type: + - string + - "null" + shipping: + type: + - array + - "null" + status: + type: + - string + - "null" + subtotal: + type: + - number + - "null" + taxes: + type: + - array + - "null" + total: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + url: + type: + - string + - "null" + required: + - id + contacts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + country: + type: + - string + - "null" + created_at: + type: + - number + - "null" + customer: + type: + - number + - "null" + customer_id: + type: + - number + - "null" + email: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + object: + type: + - string + - "null" + phone: + type: + - string + - "null" + primary: + type: + - boolean + - "null" + send_new_invoices: + type: + - boolean + - "null" + sms_enabled: + type: + - boolean + - "null" + updated_at: + type: + - number + - "null" + required: + - id + items: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + created_at: + type: + - number + - "null" + currency: + type: + - string + - "null" + discountable: + type: + - boolean + - "null" + id: + type: string + name: + type: + - string + - "null" + object: + type: + - string + - "null" + taxable: + type: + - boolean + - "null" + taxes: + type: + - array + - "null" + unit_cost: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + required: + - id + tax_rates: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + created_at: + type: + - number + - "null" + id: + type: string + inclusive: + type: + - boolean + - "null" + is_percent: + type: + - boolean + - "null" + name: + type: + - string + - "null" + object: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + value: + type: + - number + - "null" + required: + - id + plans: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + created_at: + type: + - number + - "null" + currency: + type: + - string + - "null" + id: + type: string + interval: + type: + - string + - "null" + interval_count: + type: + - number + - "null" + name: + type: + - string + - "null" + object: + type: + - string + - "null" + pricing_mode: + type: + - string + - "null" + quantity_type: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + required: + - id + coupons: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + created_at: + type: + - number + - "null" + duration: + type: + - number + - "null" + exclusive: + type: + - boolean + - "null" + id: + type: string + is_percent: + type: + - boolean + - "null" + max_redemptions: + type: + - number + - "null" + name: + type: + - string + - "null" + object: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + value: + type: + - number + - "null" + required: + - id + events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + object: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + action: + type: + - string + - "null" + active: + type: + - boolean + - "null" + addons: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + amount: + type: + - number + - "null" + created_at: + type: + - number + - "null" + id: + type: + - number + - "null" + object: + type: + - string + - "null" + plan: + type: + - string + - "null" + quantity: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + amount: + type: + - number + - "null" + applied_to: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + amount: + type: + - number + - "null" + id: + type: + - number + - "null" + invoice: + type: + - number + - "null" + attempt_count: + type: + - number + - "null" + autopay: + type: + - boolean + - "null" + autopay_delay_days: + type: + - number + - "null" + balance: + type: + - number + - "null" + bill_in: + type: + - string + - "null" + bill_in_advance_days: + type: + - number + - "null" + bill_to_parent: + type: + - boolean + - "null" + brand: + type: + - string + - "null" + cancel_at_period_end: + type: + - boolean + - "null" + catalog_item: + type: + - string + - "null" + chargeable: + type: + - boolean + - "null" + chase: + type: + - boolean + - "null" + closed: + type: + - boolean + - "null" + complete: + type: + - boolean + - "null" + consolidated: + type: + - boolean + - "null" + contract_period_end: + type: + - number + - "null" + contract_period_start: + type: + - number + - "null" + contract_renewal_mode: + type: + - string + - "null" + convenience_fee: + type: + - boolean + - "null" + country: + type: + - string + - "null" + created_at: + type: + - number + - "null" + credit_hold: + type: + - boolean + - "null" + csv_url: + type: + - string + - "null" + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + metadata: + type: + - object + - "null" + active: + type: + - boolean + - "null" + autopay: + type: + - boolean + - "null" + autopay_delay_days: + type: + - number + - "null" + bill_to_parent: + type: + - boolean + - "null" + chase: + type: + - boolean + - "null" + consolidated: + type: + - boolean + - "null" + convenience_fee: + type: + - boolean + - "null" + country: + type: + - string + - "null" + created_at: + type: + - number + - "null" + credit_hold: + type: + - boolean + - "null" + currency: + type: + - string + - "null" + email: + type: + - string + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + number: + type: + - string + - "null" + object: + type: + - string + - "null" + owner: + type: + - number + - "null" + owner_id: + type: + - number + - "null" + payment_source: + type: + - object + - "null" + properties: + brand: + type: + - string + - "null" + chargeable: + type: + - boolean + - "null" + created_at: + type: + - number + - "null" + customer_id: + type: + - number + - "null" + exp_month: + type: + - number + - "null" + exp_year: + type: + - number + - "null" + funding: + type: + - string + - "null" + gateway: + type: + - string + - "null" + gateway_id: + type: + - string + - "null" + id: + type: + - number + - "null" + issuing_country: + type: + - string + - "null" + last4: + type: + - string + - "null" + object: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + payment_terms: + type: + - string + - "null" + phone: + type: + - string + - "null" + statement_pdf_url: + type: + - string + - "null" + statement_url: + type: + - string + - "null" + taxable: + type: + - boolean + - "null" + taxes: + type: + - array + - "null" + updated_at: + type: + - number + - "null" + customer_id: + type: + - number + - "null" + cycles: + type: + - number + - "null" + date: + type: + - number + - "null" + deposit: + type: + - number + - "null" + deposit_paid: + type: + - boolean + - "null" + discountable: + type: + - boolean + - "null" + discounts: + type: + - array + - "null" + draft: + type: + - boolean + - "null" + due_date: + type: + - number + - "null" + email: + type: + - string + - "null" + exp_month: + type: + - number + - "null" + exp_year: + type: + - number + - "null" + funding: + type: + - string + - "null" + gateway: + type: + - string + - "null" + gateway_id: + type: + - string + - "null" + id: + type: + - number + - "null" + issuing_country: + type: + - string + - "null" + items: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + amount: + type: + - number + - "null" + created_at: + type: + - number + - "null" + discountable: + type: + - boolean + - "null" + discounts: + type: + - array + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + object: + type: + - string + - "null" + period_end: + type: + - number + - "null" + period_start: + type: + - number + - "null" + plan: + type: + - string + - "null" + prorated: + type: + - boolean + - "null" + quantity: + type: + - number + - "null" + subscription: + type: + - number + - "null" + taxable: + type: + - boolean + - "null" + taxes: + type: + - array + - "null" + unit_cost: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + last4: + type: + - string + - "null" + late_fees: + type: + - boolean + - "null" + method: + type: + - string + - "null" + mrr: + type: + - number + - "null" + name: + type: + - string + - "null" + needs_attention: + type: + - boolean + - "null" + notes: + type: + - string + - "null" + number: + type: + - string + - "null" + object: + type: + - string + - "null" + owner: + type: + - number + - "null" + owner_id: + type: + - number + - "null" + paid: + type: + - boolean + - "null" + paused: + type: + - boolean + - "null" + payment_source: + type: + - object + - "null" + properties: + brand: + type: + - string + - "null" + chargeable: + type: + - boolean + - "null" + created_at: + type: + - number + - "null" + customer_id: + type: + - number + - "null" + exp_month: + type: + - number + - "null" + exp_year: + type: + - number + - "null" + funding: + type: + - string + - "null" + gateway: + type: + - string + - "null" + gateway_id: + type: + - string + - "null" + id: + type: + - number + - "null" + issuing_country: + type: + - string + - "null" + last4: + type: + - string + - "null" + object: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + payment_terms: + type: + - string + - "null" + payment_url: + type: + - string + - "null" + pdf_url: + type: + - string + - "null" + period_end: + type: + - number + - "null" + period_start: + type: + - number + - "null" + phone: + type: + - string + - "null" + plan: + type: + - object + - "null" + properties: + metadata: + type: + - object + - "null" + created_at: + type: + - number + - "null" + currency: + type: + - string + - "null" + id: + type: + - string + - "null" + interval: + type: + - string + - "null" + interval_count: + type: + - number + - "null" + name: + type: + - string + - "null" + object: + type: + - string + - "null" + pricing_mode: + type: + - string + - "null" + quantity_type: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + primary: + type: + - boolean + - "null" + quantity: + type: + - number + - "null" + recurring_total: + type: + - number + - "null" + reference: + type: + - string + - "null" + renewed_last: + type: + - number + - "null" + renews_next: + type: + - number + - "null" + send_new_invoices: + type: + - boolean + - "null" + shipping: + type: + - array + - "null" + source: + type: + - string + - "null" + start_date: + type: + - number + - "null" + statement_pdf_url: + type: + - string + - "null" + statement_url: + type: + - string + - "null" + status: + type: + - string + - "null" + subscription: + type: + - number + - "null" + subscription_id: + type: + - number + - "null" + subtotal: + type: + - number + - "null" + taxable: + type: + - boolean + - "null" + taxes: + type: + - array + - "null" + total: + type: + - number + - "null" + unit_cost: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + url: + type: + - string + - "null" + user: + type: + - object + - "null" + properties: + created_at: + type: + - number + - "null" + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + id: + type: + - number + - "null" + last_name: + type: + - string + - "null" + registered: + type: + - boolean + - "null" + two_factor_enabled: + type: + - boolean + - "null" + updated_at: + type: + - number + - "null" + user_id: + type: + - number + - "null" + voided: + type: + - boolean + - "null" + previous: + type: + - object + - "null" + properties: + balance: + type: + - number + - "null" + closed: + type: + - boolean + - "null" + paid: + type: + - boolean + - "null" + payment_url: + type: + - string + - "null" + status: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + id: + type: number + timestamp: + type: + - number + - "null" + required: + - id + notes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - number + - "null" + customer: + type: + - number + - "null" + customer_id: + type: + - number + - "null" + id: + type: number + notes: + type: + - string + - "null" + object: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + user: + type: + - object + - "null" + properties: + created_at: + type: + - number + - "null" + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + id: + type: + - number + - "null" + last_name: + type: + - string + - "null" + registered: + type: + - boolean + - "null" + two_factor_enabled: + type: + - boolean + - "null" + updated_at: + type: + - number + - "null" + user_id: + type: + - number + - "null" + required: + - id + tasks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + action: + type: + - string + - "null" + complete: + type: + - boolean + - "null" + created_at: + type: + - number + - "null" + customer: + type: + - number + - "null" + customer_id: + type: + - number + - "null" + due_date: + type: + - number + - "null" + id: + type: number + name: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + user_id: + type: + - number + - "null" + required: + - id + metered_billings: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + amount: + type: + - number + - "null" + created_at: + type: + - number + - "null" + customer: + type: + - number + - "null" + discountable: + type: + - boolean + - "null" + discounts: + type: + - array + - "null" + id: + type: number + name: + type: + - string + - "null" + object: + type: + - string + - "null" + quantity: + type: + - number + - "null" + taxable: + type: + - boolean + - "null" + taxes: + type: + - array + - "null" + unit_cost: + type: + - number + - "null" + updated_at: + type: + - number + - "null" + required: + - id + payment_sources: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + brand: + type: + - string + - "null" + chargeable: + type: + - boolean + - "null" + created_at: + type: + - number + - "null" + customer: + type: + - number + - "null" + customer_id: + type: + - number + - "null" + exp_month: + type: + - number + - "null" + exp_year: + type: + - number + - "null" + funding: + type: + - string + - "null" + gateway: + type: + - string + - "null" + gateway_id: + type: + - string + - "null" + id: + type: number + issuing_country: + type: + - string + - "null" + last4: + type: + - string + - "null" + object: + type: + - string + - "null" + updated_at: + type: + - number + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-invoiced/metadata.yaml b/airbyte-integrations/connectors/source-invoiced/metadata.yaml new file mode 100644 index 000000000000..6cb0c8cf4ca3 --- /dev/null +++ b/airbyte-integrations/connectors/source-invoiced/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.invoiced.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-invoiced + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 5f43588b-998b-4398-bb15-fb6eb4fc015e + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-invoiced + githubIssueLabel: source-invoiced + icon: icon.svg + license: MIT + name: Invoiced + releaseDate: 2024-10-21 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/invoiced + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/invoiced.md b/docs/integrations/sources/invoiced.md new file mode 100644 index 000000000000..e3dfecb53b52 --- /dev/null +++ b/docs/integrations/sources/invoiced.md @@ -0,0 +1,40 @@ +# Invoiced +This Airbyte connector for **Invoiced** enables seamless data integration between Invoiced, a cloud-based billing and invoicing platform, and various data destinations. Using this connector, you can automatically extract and sync data such as invoices, customers, payments, and more from the Invoiced API into your preferred data warehouse or analytics platform. It simplifies the process of managing financial data and helps businesses maintain accurate and up-to-date records, facilitating better reporting and analysis. Ideal for users who need to automate data pipelines from their invoicing system. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. API key to use. Find it at https://invoiced.com/account | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| customers | id | DefaultPaginator | ✅ | ❌ | +| invoices | id | DefaultPaginator | ✅ | ❌ | +| payments | id | DefaultPaginator | ✅ | ❌ | +| credit_balance_adjustments | id | DefaultPaginator | ✅ | ❌ | +| credit_notes | id | DefaultPaginator | ✅ | ❌ | +| subscriptions | | DefaultPaginator | ✅ | ❌ | +| estimates | id | DefaultPaginator | ✅ | ❌ | +| contacts | id | DefaultPaginator | ✅ | ❌ | +| items | id | DefaultPaginator | ✅ | ❌ | +| tax_rates | id | DefaultPaginator | ✅ | ❌ | +| plans | id | DefaultPaginator | ✅ | ❌ | +| coupons | id | DefaultPaginator | ✅ | ❌ | +| events | id | DefaultPaginator | ✅ | ❌ | +| notes | id | DefaultPaginator | ✅ | ❌ | +| tasks | id | DefaultPaginator | ✅ | ❌ | +| metered_billings | id | DefaultPaginator | ✅ | ❌ | +| payment_sources | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From 898e2a8e77bbafa6e7515a34f93a3ecdd2d96922 Mon Sep 17 00:00:00 2001 From: Om Bhardwaj <115864495+ombhardwajj@users.noreply.github.com> Date: Fri, 25 Oct 2024 23:29:45 +0530 Subject: [PATCH 004/808] source-rentcast contribution from ombhardwajj (#46891) --- .../connectors/source-rentcast/README.md | 35 + .../acceptance-test-config.yml | 17 + .../connectors/source-rentcast/icon.svg | 1 + .../connectors/source-rentcast/manifest.yaml | 7712 +++++++++++++++++ .../connectors/source-rentcast/metadata.yaml | 35 + docs/integrations/sources/rentcast.md | 45 + 6 files changed, 7845 insertions(+) create mode 100644 airbyte-integrations/connectors/source-rentcast/README.md create mode 100644 airbyte-integrations/connectors/source-rentcast/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-rentcast/icon.svg create mode 100644 airbyte-integrations/connectors/source-rentcast/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-rentcast/metadata.yaml create mode 100644 docs/integrations/sources/rentcast.md diff --git a/airbyte-integrations/connectors/source-rentcast/README.md b/airbyte-integrations/connectors/source-rentcast/README.md new file mode 100644 index 000000000000..2c0e7275be7c --- /dev/null +++ b/airbyte-integrations/connectors/source-rentcast/README.md @@ -0,0 +1,35 @@ +# RentCast +This directory contains the manifest-only connector for `source-rentcast`. + +RentCast is the leading rental property analytics, estimation and reporting software . +This connector enables you to extract data from endpoints like Value Estimate , Rent Estimate , Property Records , Sale Listings and Rental Listings +Docs : https://developers.rentcast.io/reference/introduction + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-rentcast:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-rentcast build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-rentcast test +``` + diff --git a/airbyte-integrations/connectors/source-rentcast/acceptance-test-config.yml b/airbyte-integrations/connectors/source-rentcast/acceptance-test-config.yml new file mode 100644 index 000000000000..7b5ea87a47b9 --- /dev/null +++ b/airbyte-integrations/connectors/source-rentcast/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-rentcast:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-rentcast/icon.svg b/airbyte-integrations/connectors/source-rentcast/icon.svg new file mode 100644 index 000000000000..06526c3fba58 --- /dev/null +++ b/airbyte-integrations/connectors/source-rentcast/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-rentcast/manifest.yaml b/airbyte-integrations/connectors/source-rentcast/manifest.yaml new file mode 100644 index 000000000000..539a7ed20753 --- /dev/null +++ b/airbyte-integrations/connectors/source-rentcast/manifest.yaml @@ -0,0 +1,7712 @@ +version: 5.12.0 + +type: DeclarativeSource + +description: >- + RentCast is the leading rental property analytics, estimation and reporting + software . + + This connector enables you to extract data from endpoints like Value Estimate + , Rent Estimate , Property Records , Sale Listings and Rental Listings + + Docs : https://developers.rentcast.io/reference/introduction + +check: + type: CheckStream + stream_names: + - Property Records + +definitions: + streams: + Property Records: + type: DeclarativeStream + name: Property Records + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: properties + http_method: GET + request_parameters: + city: "{{ config['city'] }}" + state: "{{ config['state'] }}" + radius: "{{ config['radius'] }}" + status: "{{ config['status'] }}" + address: "{{ config[\"address\"] }}" + daysOld: "{{ config['days_old'] }}" + zipCode: "{{ config['zipcode'] }}" + bedrooms: "{{ config['bedrooms'] }}" + latitude: "{{ config['latitude'] }}" + bathrooms: "{{ config['bath_rooms'] }}" + longitude: "{{ config['longitude'] }}" + propertyType: "{{ config['property_type'] }}" + saleDateRange: "{{ config[\"days_old\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 500 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Property Records" + Sale Listings: + type: DeclarativeStream + name: Sale Listings + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: listings/sale + http_method: GET + request_parameters: + city: "{{ config['city'] }}" + state: "{{ config['state'] }}" + radius: "{{ config['radius'] }}" + status: "{{ config['status'] }}" + address: "{{ config[\"address\"] }}" + daysOld: "{{ config['days_old'] }}" + zipCode: "{{ config['zipcode'] }}" + bedrooms: "{{ config['bedrooms'] }}" + latitude: "{{ config['latitude'] }}" + bathrooms: "{{ config['bath_rooms'] }}" + longitude: "{{ config['longitude'] }}" + propertyType: "{{ config['property_type'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 500 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Sale Listings" + Rental Listings: + type: DeclarativeStream + name: Rental Listings + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: listings/rental/long-term + http_method: GET + request_parameters: + city: "{{ config['city'] }}" + state: "{{ config['state'] }}" + radius: "{{ config['radius'] }}" + status: "{{ config['status'] }}" + address: "{{ config[\"address\"] }}" + daysOld: "{{ config['days_old'] }}" + zipCode: "{{ config['zipcode'] }}" + bedrooms: "{{ config['bedrooms'] }}" + latitude: "{{ config['latitude'] }}" + bathrooms: "{{ config['bath_rooms'] }}" + longitude: "{{ config['longitude'] }}" + propertyType: "{{ config['property_type'] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + action: FAIL + error_message_contains: >- + The required query parameters 'address' or + 'latitude'/'longitude' were not provided + http_codes: + - 400 + error_message: Please provide a zipcode + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Rental Listings" + Statistics: + type: DeclarativeStream + name: Statistics + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: markets + http_method: GET + request_parameters: + zipCode: "{{ config[\"zipcode\"] }}" + dataType: "{{ config['data_type_'] }}" + historyRange: "{{ config['history_range'] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + action: FAIL + error_message_contains: >- + The required query parameters 'address' or + 'latitude'/'longitude' were not provided + http_codes: + - 400 + error_message: Please provide a zipcode + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Statistics" + Value Estimate: + type: DeclarativeStream + name: Value Estimate + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: avm/value + http_method: GET + request_parameters: + address: "{{ config[\"address\"] }}" + latitude: "{{ config[\"latitude\"] }}" + longitude: "{{ config[\"longitude\"] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + action: FAIL + error_message_contains: >- + The required query parameters 'address' or + 'latitude'/'longitude' were not provided + http_codes: + - 400 + error_message: >- + Please provide either an address or a latitude and + longitude. + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Value Estimate" + Rent Estimate: + type: DeclarativeStream + name: Rent Estimate + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: avm/rent/long-term + http_method: GET + request_parameters: + address: "{{ config[\"address\"] }}" + latitude: "{{ config[\"latitude\"] }}" + longitude: "{{ config[\"longitude\"] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + action: FAIL + error_message_contains: >- + The required query parameters 'address' or + 'latitude'/'longitude' were not provided + http_codes: + - 400 + error_message: >- + Please provide either an address or a latitude and + longitude. + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Rent Estimate" + base_requester: + type: HttpRequester + url_base: https://api.rentcast.io/v1/ + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_key\"] }}" + inject_into: + type: RequestOption + field_name: X-Api-Key + inject_into: header + +streams: + - $ref: "#/definitions/streams/Property Records" + - $ref: "#/definitions/streams/Sale Listings" + - $ref: "#/definitions/streams/Rental Listings" + - $ref: "#/definitions/streams/Statistics" + - $ref: "#/definitions/streams/Value Estimate" + - $ref: "#/definitions/streams/Rent Estimate" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + properties: + api_key: + type: string + order: 0 + title: API Key + airbyte_secret: true + address: + type: string + description: >- + The full address of the property, in the format of Street, City, + State, Zip. Used to retrieve data for a specific property, or together + with the radius parameter to search for listings in a specific area + order: 1 + title: Address + city: + type: string + description: >- + The name of the city, used to search for listings in a specific city. + This parameter is case-sensitive + order: 2 + title: City + state: + type: string + description: >- + The 2-character state abbreviation, used to search for listings in a + specific state. This parameter is case-sensitive + order: 3 + title: State + zipcode: + type: string + description: >- + The 5-digit zip code, used to search for listings in a specific zip + code + order: 4 + title: Zip Code + latitude: + type: string + description: >- + The latitude of the search area. Use the latitude/longitude and radius + parameters to search for listings in a specific area + order: 5 + title: Latitude + longitude: + type: string + description: >- + The longitude of the search area. Use the latitude/longitude and + radius parameters to search for listings in a specific area + order: 6 + title: Longitude + radius: + type: string + description: >- + The radius of the search area in miles, with a maximum of 100. Use in + combination with the latitude/longitude or address parameters to + search for listings in a specific area + order: 7 + title: Radius + property_type: + type: string + description: >- + The type of the property, used to search for listings matching this + criteria : Single Family , Condo , Townhouse , Manufactured , + Multi-Family , Apartment , Land , + order: 8 + title: Property Type + bedrooms: + type: number + description: >- + The number of bedrooms, used to search for listings matching this + criteria. Use 0 to indicate a studio layout + order: 9 + title: Bedrooms + bath_rooms: + type: integer + description: >- + The number of bathrooms, used to search for listings matching this + criteria. Supports fractions to indicate partial bathrooms + order: 10 + title: Bath Rooms + status: + type: string + description: >- + The current listing status, used to search for listings matching this + criteria : Active or Inactive + order: 11 + title: Status + days_old: + type: string + description: >- + The maximum number of days since a property was listed on the market, + with a minimum of 1 or The maximum number of days since a property was + last sold, with a minimum of 1. Used to search for properties that + were sold within the specified date range + order: 12 + title: Days Old + data_type_: + type: string + description: >- + The type of aggregate market data to return. Defaults to "All" if not + provided : All , Sale , Rental + order: 13 + title: "Data Type " + history_range: + type: string + description: >- + The time range for historical record entries, in months. Defaults to + 12 if not provided + order: 14 + title: History Range + additionalProperties: true + +metadata: + autoImportSchema: + Property Records: true + Sale Listings: true + Rental Listings: true + Statistics: true + Value Estimate: true + Rent Estimate: true + testedStreams: + Property Records: + streamHash: e1298090831492085ac8f43485189f209221452b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + Sale Listings: + streamHash: 76ae0f53d8e81cb915d98f47b0b83fba538c9cfe + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + Rental Listings: + streamHash: 58c16e2c77ec533828ea7bcb6c488669cae737ce + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + Statistics: + streamHash: c27bb70bcd4b3c8aad3ec6bce3d2f8ade6d2f313 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + Value Estimate: + streamHash: 9420ded5120dcadb56850bf225754f8174fb734d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + Rent Estimate: + streamHash: c7b7c969af485d657dc6ae58c5ce5ef819c968d1 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: {} + +schemas: + Property Records: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + addressLine1: + type: + - string + - "null" + addressLine2: + type: + - string + - "null" + assessorID: + type: + - string + - "null" + bathrooms: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + city: + type: + - string + - "null" + county: + type: + - string + - "null" + features: + type: + - object + - "null" + properties: + architectureType: + type: + - string + - "null" + cooling: + type: + - boolean + - "null" + coolingType: + type: + - string + - "null" + exteriorType: + type: + - string + - "null" + fireplace: + type: + - boolean + - "null" + fireplaceType: + type: + - string + - "null" + floorCount: + type: + - number + - "null" + foundationType: + type: + - string + - "null" + garage: + type: + - boolean + - "null" + garageSpaces: + type: + - number + - "null" + garageType: + type: + - string + - "null" + heating: + type: + - boolean + - "null" + heatingType: + type: + - string + - "null" + pool: + type: + - boolean + - "null" + poolType: + type: + - string + - "null" + roofType: + type: + - string + - "null" + roomCount: + type: + - number + - "null" + unitCount: + type: + - number + - "null" + viewType: + type: + - string + - "null" + formattedAddress: + type: + - string + - "null" + id: + type: string + latitude: + type: + - number + - "null" + legalDescription: + type: + - string + - "null" + longitude: + type: + - number + - "null" + lotSize: + type: + - number + - "null" + owner: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + mailingAddress: + type: + - object + - "null" + properties: + addressLine1: + type: + - string + - "null" + addressLine2: + type: + - string + - "null" + city: + type: + - string + - "null" + formattedAddress: + type: + - string + - "null" + id: + type: + - string + - "null" + state: + type: + - string + - "null" + zipCode: + type: + - string + - "null" + names: + type: + - array + - "null" + items: + type: + - string + - "null" + ownerOccupied: + type: + - boolean + - "null" + propertyTaxes: + type: + - object + - "null" + properties: + "2016": + type: + - object + - "null" + properties: + total: + type: + - number + - "null" + year: + type: + - number + - "null" + "2017": + type: + - object + - "null" + properties: + total: + type: + - number + - "null" + year: + type: + - number + - "null" + "2018": + type: + - object + - "null" + properties: + total: + type: + - number + - "null" + year: + type: + - number + - "null" + "2019": + type: + - object + - "null" + properties: + total: + type: + - number + - "null" + year: + type: + - number + - "null" + "2020": + type: + - object + - "null" + properties: + total: + type: + - number + - "null" + year: + type: + - number + - "null" + "2021": + type: + - object + - "null" + properties: + total: + type: + - number + - "null" + year: + type: + - number + - "null" + "2022": + type: + - object + - "null" + properties: + total: + type: + - number + - "null" + year: + type: + - number + - "null" + "2023": + type: + - object + - "null" + properties: + total: + type: + - number + - "null" + year: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + squareFootage: + type: + - number + - "null" + state: + type: + - string + - "null" + subdivision: + type: + - string + - "null" + taxAssessments: + type: + - object + - "null" + properties: + "2010": + type: + - object + - "null" + properties: + value: + type: + - number + - "null" + year: + type: + - number + - "null" + "2016": + type: + - object + - "null" + properties: + improvements: + type: + - number + - "null" + land: + type: + - number + - "null" + value: + type: + - number + - "null" + year: + type: + - number + - "null" + "2017": + type: + - object + - "null" + properties: + improvements: + type: + - number + - "null" + land: + type: + - number + - "null" + value: + type: + - number + - "null" + year: + type: + - number + - "null" + "2018": + type: + - object + - "null" + properties: + improvements: + type: + - number + - "null" + land: + type: + - number + - "null" + value: + type: + - number + - "null" + year: + type: + - number + - "null" + "2019": + type: + - object + - "null" + properties: + improvements: + type: + - number + - "null" + land: + type: + - number + - "null" + value: + type: + - number + - "null" + year: + type: + - number + - "null" + "2020": + type: + - object + - "null" + properties: + improvements: + type: + - number + - "null" + land: + type: + - number + - "null" + value: + type: + - number + - "null" + year: + type: + - number + - "null" + "2021": + type: + - object + - "null" + properties: + improvements: + type: + - number + - "null" + land: + type: + - number + - "null" + value: + type: + - number + - "null" + year: + type: + - number + - "null" + "2022": + type: + - object + - "null" + properties: + improvements: + type: + - number + - "null" + land: + type: + - number + - "null" + value: + type: + - number + - "null" + year: + type: + - number + - "null" + "2023": + type: + - object + - "null" + properties: + improvements: + type: + - number + - "null" + land: + type: + - number + - "null" + value: + type: + - number + - "null" + year: + type: + - number + - "null" + yearBuilt: + type: + - number + - "null" + zipCode: + type: + - string + - "null" + zoning: + type: + - string + - "null" + required: + - id + Sale Listings: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + addressLine1: + type: + - string + - "null" + addressLine2: + type: + - string + - "null" + bathrooms: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + builder: + type: + - object + - "null" + properties: + development: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + city: + type: + - string + - "null" + county: + type: + - string + - "null" + createdDate: + type: + - string + - "null" + daysOnMarket: + type: + - number + - "null" + formattedAddress: + type: + - string + - "null" + history: + type: + - object + - "null" + properties: + "2021-06-21": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2023-10-09": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2023-11-02": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2023-11-29": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2023-12-05": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2023-12-07": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-01-09": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-01-23": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-02-07": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-02-25": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-03-06": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-03-09": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-03-27": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-03-28": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-04-11": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-04-19": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-04-26": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-05-09": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-05-10": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-05-12": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-05-13": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-05-17": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-05-22": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-05-23": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-05-25": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-05-31": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-06-10": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-06-11": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-06-16": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-06-17": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-06-23": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-06-24": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-06-26": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-06-30": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-07-02": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-07-03": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-08": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-09": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-10": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-15": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-17": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-19": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-22": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-24": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-07-25": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-27": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-07": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-08": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-10": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-11": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-14": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-15": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-16": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-17": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-19": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-21": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-22": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-23": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-26": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-27": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-28": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-29": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-30": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-31": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-03": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-04": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-05": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-06": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-08": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-09": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-10": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-11": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-12": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-13": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-14": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-16": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-17": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-18": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-19": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-20": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-21": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-23": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-24": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-25": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-26": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-27": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-29": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-10-01": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-10-03": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-04": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-10-07": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-10": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-11": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-12": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-13": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-14": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-15": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-16": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-17": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-18": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + hoa: + type: + - object + - "null" + properties: + fee: + type: + - number + - "null" + id: + type: string + lastSeenDate: + type: + - string + - "null" + latitude: + type: + - number + - "null" + listedDate: + type: + - string + - "null" + listingAgent: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + website: + type: + - string + - "null" + listingOffice: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + website: + type: + - string + - "null" + listingType: + type: + - string + - "null" + longitude: + type: + - number + - "null" + lotSize: + type: + - number + - "null" + mlsName: + type: + - string + - "null" + mlsNumber: + type: + - string + - "null" + price: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + removedDate: + type: + - string + - "null" + squareFootage: + type: + - number + - "null" + state: + type: + - string + - "null" + status: + type: + - string + - "null" + yearBuilt: + type: + - number + - "null" + zipCode: + type: + - string + - "null" + required: + - id + Rental Listings: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + addressLine1: + type: + - string + - "null" + addressLine2: + type: + - string + - "null" + bathrooms: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + city: + type: + - string + - "null" + county: + type: + - string + - "null" + createdDate: + type: + - string + - "null" + daysOnMarket: + type: + - number + - "null" + formattedAddress: + type: + - string + - "null" + history: + type: + - object + - "null" + properties: + "2022-05-23": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2023-04-12": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2023-09-13": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2023-12-16": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-05-02": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-06-13": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-07-21": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-07-31": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-08-12": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-14": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-08-28": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-09": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-14": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-17": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-18": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-09-19": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-28": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-09-30": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-03": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-10-11": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-10-12": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + removedDate: + type: + - string + - "null" + "2024-10-17": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + "2024-10-18": + type: + - object + - "null" + properties: + daysOnMarket: + type: + - number + - "null" + event: + type: + - string + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + price: + type: + - number + - "null" + id: + type: string + lastSeenDate: + type: + - string + - "null" + latitude: + type: + - number + - "null" + listedDate: + type: + - string + - "null" + listingAgent: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + website: + type: + - string + - "null" + listingOffice: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + website: + type: + - string + - "null" + listingType: + type: + - string + - "null" + longitude: + type: + - number + - "null" + mlsName: + type: + - string + - "null" + mlsNumber: + type: + - string + - "null" + price: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + removedDate: + type: + - string + - "null" + squareFootage: + type: + - number + - "null" + state: + type: + - string + - "null" + status: + type: + - string + - "null" + yearBuilt: + type: + - number + - "null" + zipCode: + type: + - string + - "null" + required: + - id + Statistics: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: + - string + - "null" + rentalData: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + dataByPropertyType: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + totalListings: + type: + - number + - "null" + history: + type: + - object + - "null" + properties: + 2023-11: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2023-12: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-01: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-02: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-03: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-04: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-05: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-06: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-07: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageRent: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxRent: + type: + - number + - "null" + minRent: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-08: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + dataByPropertyType: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-09: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + dataByPropertyType: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-10: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + dataByPropertyType: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averageRent: + type: + - number + - "null" + averageRentPerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + lastUpdatedDate: + type: + - string + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxRent: + type: + - number + - "null" + maxRentPerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianRent: + type: + - number + - "null" + medianRentPerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minRent: + type: + - number + - "null" + minRentPerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + saleData: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + dataByPropertyType: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + totalListings: + type: + - number + - "null" + history: + type: + - object + - "null" + properties: + 2024-01: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-02: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-03: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-04: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-05: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-06: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-07: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averagePrice: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxPrice: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-08: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + dataByPropertyType: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-09: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + dataByPropertyType: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + 2024-10: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + dataByBedrooms: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + dataByPropertyType: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + averageDaysOnMarket: + type: + - number + - "null" + averagePrice: + type: + - number + - "null" + averagePricePerSquareFoot: + type: + - number + - "null" + averageSquareFootage: + type: + - number + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + totalListings: + type: + - number + - "null" + date: + type: + - string + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + lastUpdatedDate: + type: + - string + - "null" + maxDaysOnMarket: + type: + - number + - "null" + maxPrice: + type: + - number + - "null" + maxPricePerSquareFoot: + type: + - number + - "null" + maxSquareFootage: + type: + - number + - "null" + medianDaysOnMarket: + type: + - number + - "null" + medianPrice: + type: + - number + - "null" + medianPricePerSquareFoot: + type: + - number + - "null" + medianSquareFootage: + type: + - number + - "null" + minDaysOnMarket: + type: + - number + - "null" + minPrice: + type: + - number + - "null" + minPricePerSquareFoot: + type: + - number + - "null" + minSquareFootage: + type: + - number + - "null" + newListings: + type: + - number + - "null" + totalListings: + type: + - number + - "null" + zipCode: + type: + - string + - "null" + Value Estimate: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + comparables: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + addressLine1: + type: + - string + - "null" + bathrooms: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + city: + type: + - string + - "null" + correlation: + type: + - number + - "null" + county: + type: + - string + - "null" + daysOld: + type: + - number + - "null" + daysOnMarket: + type: + - number + - "null" + distance: + type: + - number + - "null" + formattedAddress: + type: + - string + - "null" + id: + type: + - string + - "null" + lastSeenDate: + type: + - string + - "null" + latitude: + type: + - number + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + longitude: + type: + - number + - "null" + lotSize: + type: + - number + - "null" + price: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + removedDate: + type: + - string + - "null" + squareFootage: + type: + - number + - "null" + state: + type: + - string + - "null" + yearBuilt: + type: + - number + - "null" + zipCode: + type: + - string + - "null" + latitude: + type: + - number + - "null" + longitude: + type: + - number + - "null" + price: + type: + - number + - "null" + priceRangeHigh: + type: + - number + - "null" + priceRangeLow: + type: + - number + - "null" + Rent Estimate: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + comparables: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + addressLine1: + type: + - string + - "null" + addressLine2: + type: + - string + - "null" + bathrooms: + type: + - number + - "null" + bedrooms: + type: + - number + - "null" + city: + type: + - string + - "null" + correlation: + type: + - number + - "null" + county: + type: + - string + - "null" + daysOld: + type: + - number + - "null" + daysOnMarket: + type: + - number + - "null" + distance: + type: + - number + - "null" + formattedAddress: + type: + - string + - "null" + id: + type: + - string + - "null" + lastSeenDate: + type: + - string + - "null" + latitude: + type: + - number + - "null" + listedDate: + type: + - string + - "null" + listingType: + type: + - string + - "null" + longitude: + type: + - number + - "null" + lotSize: + type: + - number + - "null" + price: + type: + - number + - "null" + propertyType: + type: + - string + - "null" + removedDate: + type: + - string + - "null" + squareFootage: + type: + - number + - "null" + state: + type: + - string + - "null" + yearBuilt: + type: + - number + - "null" + zipCode: + type: + - string + - "null" + latitude: + type: + - number + - "null" + longitude: + type: + - number + - "null" + rent: + type: + - number + - "null" + rentRangeHigh: + type: + - number + - "null" + rentRangeLow: + type: + - number + - "null" diff --git a/airbyte-integrations/connectors/source-rentcast/metadata.yaml b/airbyte-integrations/connectors/source-rentcast/metadata.yaml new file mode 100644 index 000000000000..35ce0ca8e491 --- /dev/null +++ b/airbyte-integrations/connectors/source-rentcast/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.rentcast.io" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-rentcast + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: f1d3c80a-b443-49b9-ad32-560ce3d61edb + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-rentcast + githubIssueLabel: source-rentcast + icon: icon.svg + license: MIT + name: RentCast + releaseDate: 2024-10-18 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/rentcast + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/rentcast.md b/docs/integrations/sources/rentcast.md new file mode 100644 index 000000000000..206f7ebaaf1e --- /dev/null +++ b/docs/integrations/sources/rentcast.md @@ -0,0 +1,45 @@ +# RentCast +RentCast is the leading rental property analytics, estimation and reporting software . +This connector enables you to extract data from endpoints like Value Estimate , Rent Estimate , Property Records , Sale Listings and Rental Listings +Docs : https://developers.rentcast.io/reference/introduction + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. | | +| `address` | `string` | Address. The full address of the property, in the format of Street, City, State, Zip. Used to retrieve data for a specific property, or together with the radius parameter to search for listings in a specific area | | +| `city` | `string` | City. The name of the city, used to search for listings in a specific city. This parameter is case-sensitive | | +| `state` | `string` | State. The 2-character state abbreviation, used to search for listings in a specific state. This parameter is case-sensitive | | +| `zipcode` | `string` | Zip Code. The 5-digit zip code, used to search for listings in a specific zip code | | +| `latitude` | `string` | Latitude. The latitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area | | +| `longitude` | `string` | Longitude. The longitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area | | +| `radius` | `string` | Radius. The radius of the search area in miles, with a maximum of 100. Use in combination with the latitude/longitude or address parameters to search for listings in a specific area | | +| `property_type` | `string` | Property Type. The type of the property, used to search for listings matching this criteria : Single Family , Condo , Townhouse , Manufactured , Multi-Family , Apartment , Land , | | +| `bedrooms` | `number` | Bedrooms. The number of bedrooms, used to search for listings matching this criteria. Use 0 to indicate a studio layout | | +| `bath_rooms` | `integer` | Bath Rooms. The number of bathrooms, used to search for listings matching this criteria. Supports fractions to indicate partial bathrooms | | +| `status` | `string` | Status. The current listing status, used to search for listings matching this criteria : Active or Inactive | | +| `days_old` | `string` | Days Old. The maximum number of days since a property was listed on the market, with a minimum of 1 or The maximum number of days since a property was last sold, with a minimum of 1. Used to search for properties that were sold within the specified date range | | +| `data_type_` | `string` | Data Type . The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental | | +| `history_range` | `string` | History Range. The time range for historical record entries, in months. Defaults to 12 if not provided | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| Property Records | id | DefaultPaginator | ✅ | ❌ | +| Sale Listings | id | DefaultPaginator | ✅ | ❌ | +| Rental Listings | id | No pagination | ✅ | ❌ | +| Statistics | | No pagination | ✅ | ❌ | +| Value Estimate | | No pagination | ✅ | ❌ | +| Rent Estimate | | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-18 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | + +
From dbd7c139ca3f96f4c7436add20e50dd642246e4c Mon Sep 17 00:00:00 2001 From: Aazam Thakur <59562284+aazam-gh@users.noreply.github.com> Date: Fri, 25 Oct 2024 23:52:07 +0530 Subject: [PATCH 005/808] source-concord contribution from aazam-gh (#46899) Co-authored-by: Marcos Marx --- .../connectors/source-concord/README.md | 39 + .../source-concord/acceptance-test-config.yml | 17 + .../connectors/source-concord/icon.svg | 15 + .../connectors/source-concord/manifest.yaml | 1878 +++++++++++++++++ .../connectors/source-concord/metadata.yaml | 35 + docs/integrations/sources/concord.md | 37 + 6 files changed, 2021 insertions(+) create mode 100644 airbyte-integrations/connectors/source-concord/README.md create mode 100644 airbyte-integrations/connectors/source-concord/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-concord/icon.svg create mode 100644 airbyte-integrations/connectors/source-concord/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-concord/metadata.yaml create mode 100644 docs/integrations/sources/concord.md diff --git a/airbyte-integrations/connectors/source-concord/README.md b/airbyte-integrations/connectors/source-concord/README.md new file mode 100644 index 000000000000..fa87ae072030 --- /dev/null +++ b/airbyte-integrations/connectors/source-concord/README.md @@ -0,0 +1,39 @@ +# Concord +This directory contains the manifest-only connector for `source-concord`. + +This is the setup for the Concord source which ingests data from the concord API. + +Concord turns contract data into financial insights. Sign, store and search unlimited contracts https://www.concord.app/ + +In order to use this source, you must first create a concord account and log in. Then navigate to Automations -> Integrations -> Concord API -> Generate New Key to obtain your API key. + +The API is accessible from two environments, sandbox and production. You can learn more about the API here https://api.doc.concordnow.com/ + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-concord:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-concord build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-concord test +``` + diff --git a/airbyte-integrations/connectors/source-concord/acceptance-test-config.yml b/airbyte-integrations/connectors/source-concord/acceptance-test-config.yml new file mode 100644 index 000000000000..0a19a6c91ce9 --- /dev/null +++ b/airbyte-integrations/connectors/source-concord/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-concord:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-concord/icon.svg b/airbyte-integrations/connectors/source-concord/icon.svg new file mode 100644 index 000000000000..aed9fd3c32fa --- /dev/null +++ b/airbyte-integrations/connectors/source-concord/icon.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-concord/manifest.yaml b/airbyte-integrations/connectors/source-concord/manifest.yaml new file mode 100644 index 000000000000..d884fa7a8108 --- /dev/null +++ b/airbyte-integrations/connectors/source-concord/manifest.yaml @@ -0,0 +1,1878 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + This is the setup for the Concord source which ingests data from the concord + API. + + + Concord turns contract data into financial insights. Sign, store and search + unlimited contracts https://www.concord.app/ + + + In order to use this source, you must first create a concord account and log + in. Then navigate to Automations -> Integrations -> Concord API -> Generate + New Key to obtain your API key. + + + The API is accessible from two environments, sandbox and production. You can + learn more about the API here https://api.doc.concordnow.com/ + +check: + type: CheckStream + stream_names: + - agreements + +definitions: + streams: + agreements: + type: DeclarativeStream + name: agreements + primary_key: + - uid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: organizations/{{stream_partition.parent_id}}/agreements + http_method: GET + request_headers: + organization: "{{ config[\"env\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: start + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 0 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: parent_id + stream: + $ref: "#/definitions/streams/user_organizations" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/agreements" + user_organizations: + type: DeclarativeStream + name: user_organizations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: user/me/organizations + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - organizations + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/user_organizations" + organization: + type: DeclarativeStream + name: organization + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: organizations/{{stream_partition.parent_id}} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: parent_id + stream: + $ref: "#/definitions/streams/user_organizations" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/organization" + folders: + type: DeclarativeStream + name: folders + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: organizations/{{stream_partition.parent_id}}/folders + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: parent_id + stream: + $ref: "#/definitions/streams/user_organizations" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/folders" + reports: + type: DeclarativeStream + name: reports + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: organizations/{{stream_partition.parent_id}}/reports + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - reports + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: numberOfItemsByPage + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 0 + page_size: 100 + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: parent_id + stream: + $ref: "#/definitions/streams/user_organizations" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/reports" + tags: + type: DeclarativeStream + name: tags + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: tags + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - tags + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tags" + organization_members: + type: DeclarativeStream + name: organization_members + primary_key: + - user_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: organizations/{{stream_partition.parent_id}}/members + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - members + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: start + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: parent_id + stream: + $ref: "#/definitions/streams/user_organizations" + transformations: + - type: AddFields + fields: + - path: + - user_id + value: "{{ record['user']['id'] }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/organization_members" + base_requester: + type: HttpRequester + url_base: https://{{ config["env"] }}.concordnow.com/api/rest/1/ + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_key\"] }}" + inject_into: + type: RequestOption + field_name: X-API-KEY + inject_into: header + +streams: + - $ref: "#/definitions/streams/agreements" + - $ref: "#/definitions/streams/user_organizations" + - $ref: "#/definitions/streams/organization" + - $ref: "#/definitions/streams/folders" + - $ref: "#/definitions/streams/reports" + - $ref: "#/definitions/streams/tags" + - $ref: "#/definitions/streams/organization_members" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - env + properties: + api_key: + type: string + name: api_key + order: 0 + title: API Key + airbyte_secret: true + env: + type: string + description: The environment from where you want to access the API. + enum: + - uat + - api + name: organizationId + order: 1 + title: Environment + additionalProperties: true + +metadata: + autoImportSchema: + agreements: true + user_organizations: true + organization: false + folders: false + reports: false + tags: true + organization_members: false + testedStreams: + agreements: + streamHash: 07d516db9e3071f685d7e9f55fc2fc7ff5ce8dd5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + user_organizations: + streamHash: 5520dfe5fc4a50db732484e0a2b69b057f998ed2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + organization: + streamHash: 883312227d1d185dadbc88ee7bbbb2ac3c423eba + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + folders: + streamHash: 00fe7f2e0b38ad208db1f322bdea9f74b8551326 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + reports: + streamHash: a1a6c2f6b428c996d9af1ffa8578223779bd0851 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + tags: + streamHash: 884d1cd380e602b84919004685e117b97fcf0452 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + organization_members: + streamHash: d617acc1e88d4a7e563ca0c6b4f574e2e6e9ce04 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://api.doc.concordnow.com/ + openapiSpecUrl: https://api.doc.concordnow.com/concord-openapi-bundled.yaml + +schemas: + agreements: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + properties: + accessFromRole: + type: + - boolean + - "null" + accessType: + type: + - string + - "null" + createdAt: + type: + - number + - "null" + inboxed: + type: + - boolean + - "null" + modifiedAt: + type: + - number + - "null" + properties: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + content: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + propertyType: + type: + - string + - "null" + value: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + metadata: + type: + - object + - "null" + properties: + fullName: + type: + - string + - "null" + propertyValueId: + type: + - string + - "null" + valueText: + type: + - string + - "null" + propertyId: + type: + - string + - "null" + propertyName: + type: + - string + - "null" + propertySource: + type: + - string + - "null" + read: + type: + - boolean + - "null" + status: + type: + - string + - "null" + summaryStatus: + type: + - string + - "null" + tags: + type: + - array + - "null" + title: + type: + - string + - "null" + trashed: + type: + - boolean + - "null" + with: + type: + - array + - "null" + items: + type: + - string + - "null" + uid: + type: string + required: + - uid + user_organizations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + createdAt: + type: + - number + - "null" + id: + type: number + isParent: + type: + - boolean + - "null" + isSubsidiary: + type: + - boolean + - "null" + name: + type: + - string + - "null" + subscription: + type: + - string + - "null" + subsidiaries: + type: + - array + - "null" + user: + type: + - object + - "null" + properties: + features: + type: + - object + - "null" + properties: + accessRules: + type: + - boolean + - "null" + adminOversight: + type: + - boolean + - "null" + amendments: + type: + - boolean + - "null" + analytics: + type: + - boolean + - "null" + api: + type: + - boolean + - "null" + auditTrail: + type: + - boolean + - "null" + autoTemplates: + type: + - boolean + - "null" + bulkUpload: + type: + - boolean + - "null" + clauseLibrary: + type: + - boolean + - "null" + complexPasswords: + type: + - boolean + - "null" + customBranding: + type: + - boolean + - "null" + customRoles: + type: + - boolean + - "null" + dataLocalization: + type: + - boolean + - "null" + dedicatedEncryptionKey: + type: + - boolean + - "null" + drafting: + type: + - boolean + - "null" + execution: + type: + - boolean + - "null" + exports: + type: + - object + - "null" + properties: + advanced: + type: + - boolean + - "null" + simple: + type: + - boolean + - "null" + integrations: + type: + - object + - "null" + properties: + box: + type: + - boolean + - "null" + docusign: + type: + - boolean + - "null" + dropbox: + type: + - boolean + - "null" + facebook: + type: + - boolean + - "null" + gdrive: + type: + - boolean + - "null" + google: + type: + - boolean + - "null" + hubspot: + type: + - boolean + - "null" + linkedin: + type: + - boolean + - "null" + salesforce: + type: + - boolean + - "null" + saml: + type: + - boolean + - "null" + webhook: + type: + - boolean + - "null" + internalWorkflows: + type: + - boolean + - "null" + organizationFieldItem: + type: + - boolean + - "null" + property: + type: + - boolean + - "null" + reports: + type: + - boolean + - "null" + sendContractWithDocument: + type: + - boolean + - "null" + sendInvitationWithDocument: + type: + - boolean + - "null" + signDoubleAuth: + type: + - object + - "null" + properties: + coworkers: + type: + - boolean + - "null" + thirdParties: + type: + - boolean + - "null" + signature: + type: + - boolean + - "null" + subsidiaries: + type: + - boolean + - "null" + userGroups: + type: + - boolean + - "null" + versioning: + type: + - boolean + - "null" + whitelistedIp: + type: + - boolean + - "null" + workflowCenter: + type: + - boolean + - "null" + role: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + rights: + type: + - object + - "null" + properties: + accessAllAgreement: + type: + - boolean + - "null" + contractAccess: + type: + - boolean + - "null" + contractAttachments: + type: + - boolean + - "null" + contractCreate: + type: + - boolean + - "null" + contractCreateBulk: + type: + - boolean + - "null" + contractDelete: + type: + - boolean + - "null" + contractUpdate: + type: + - boolean + - "null" + draftCommentAdd: + type: + - boolean + - "null" + draftCommentReply: + type: + - boolean + - "null" + draftCommentResolve: + type: + - boolean + - "null" + draftOrganizationWorkflowUse: + type: + - boolean + - "null" + draftWorkflowCreate: + type: + - boolean + - "null" + draftWorkflowDelete: + type: + - boolean + - "null" + draftWorkflowUpdate: + type: + - boolean + - "null" + fillFields: + type: + - boolean + - "null" + folderCreate: + type: + - boolean + - "null" + folderDelete: + type: + - boolean + - "null" + folderList: + type: + - boolean + - "null" + folderUpdate: + type: + - boolean + - "null" + groupCreate: + type: + - boolean + - "null" + groupDelete: + type: + - boolean + - "null" + groupUpdate: + type: + - boolean + - "null" + groupUpdateUsers: + type: + - boolean + - "null" + negotiationAddComment: + type: + - boolean + - "null" + negotiationAttachments: + type: + - boolean + - "null" + negotiationBreak: + type: + - boolean + - "null" + negotiationCommentAdd: + type: + - boolean + - "null" + negotiationCommentReply: + type: + - boolean + - "null" + negotiationCommentResolve: + type: + - boolean + - "null" + negotiationCreate: + type: + - boolean + - "null" + negotiationInvite: + type: + - boolean + - "null" + negotiationOrganizationWorkflowUse: + type: + - boolean + - "null" + negotiationSign: + type: + - boolean + - "null" + negotiationUpdate: + type: + - boolean + - "null" + negotiationUpdateFirstVersion: + type: + - boolean + - "null" + negotiationUpdateMetadata: + type: + - boolean + - "null" + negotiationUpdateOwn: + type: + - boolean + - "null" + negotiationWorkflowCreate: + type: + - boolean + - "null" + negotiationWorkflowDelete: + type: + - boolean + - "null" + negotiationWorkflowUpdate: + type: + - boolean + - "null" + orgAccessAllContract: + type: + - boolean + - "null" + orgAccessAllNegotiation: + type: + - boolean + - "null" + orgAccessAllTemplate: + type: + - boolean + - "null" + orgAccessRuleModify: + type: + - boolean + - "null" + orgAccessRuleView: + type: + - boolean + - "null" + orgAddUsers: + type: + - boolean + - "null" + orgBilling: + type: + - boolean + - "null" + orgCreate: + type: + - boolean + - "null" + orgInviteUsers: + type: + - boolean + - "null" + orgRemoveUsers: + type: + - boolean + - "null" + orgUpdate: + type: + - boolean + - "null" + organizationClauseCreate: + type: + - boolean + - "null" + organizationClauseDelete: + type: + - boolean + - "null" + organizationClauseList: + type: + - boolean + - "null" + organizationClauseUpdate: + type: + - boolean + - "null" + organizationFieldItemCreate: + type: + - boolean + - "null" + organizationFieldItemDelete: + type: + - boolean + - "null" + organizationFieldItemGet: + type: + - boolean + - "null" + organizationFieldItemUpdate: + type: + - boolean + - "null" + organizationWorkflowCreate: + type: + - boolean + - "null" + organizationWorkflowDelete: + type: + - boolean + - "null" + organizationWorkflowList: + type: + - boolean + - "null" + organizationWorkflowUpdate: + type: + - boolean + - "null" + propertyCreate: + type: + - boolean + - "null" + propertyDelete: + type: + - boolean + - "null" + propertyList: + type: + - boolean + - "null" + propertyUpdate: + type: + - boolean + - "null" + roleCreate: + type: + - boolean + - "null" + roleDelete: + type: + - boolean + - "null" + roleUpdate: + type: + - boolean + - "null" + roleUpdateUsers: + type: + - boolean + - "null" + tagCreate: + type: + - boolean + - "null" + tagDelete: + type: + - boolean + - "null" + tagListAll: + type: + - boolean + - "null" + tagUpdate: + type: + - boolean + - "null" + templateAttachments: + type: + - boolean + - "null" + templateCommentAdd: + type: + - boolean + - "null" + templateCommentReply: + type: + - boolean + - "null" + templateCommentResolve: + type: + - boolean + - "null" + templateCreate: + type: + - boolean + - "null" + templateDelete: + type: + - boolean + - "null" + templateOrganizationWorkflowUse: + type: + - boolean + - "null" + templateUpdate: + type: + - boolean + - "null" + templateUpdateTags: + type: + - boolean + - "null" + templateUpdateUsers: + type: + - boolean + - "null" + templateUse: + type: + - boolean + - "null" + templateWorkflowCreate: + type: + - boolean + - "null" + templateWorkflowDelete: + type: + - boolean + - "null" + templateWorkflowUpdate: + type: + - boolean + - "null" + subscription: + type: + - string + - "null" + required: + - id + organization: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + adminOversight: + type: + - boolean + - "null" + allTagsVisible: + type: + - boolean + - "null" + askForTags: + type: + - string + - "null" + canCollaboratorSign: + type: + - boolean + - "null" + contactInfos: + type: + - object + - "null" + properties: + mobileCode: + type: + - number + - "null" + phoneCode: + type: + - number + - "null" + createdAt: + type: + - number + - "null" + deleted: + type: + - boolean + - "null" + emailDomains: + type: + - array + - "null" + id: + type: number + name: + type: + - string + - "null" + passwordStrategy: + type: + - boolean + - "null" + region: + type: + - string + - "null" + sendContractWithDocument: + type: + - boolean + - "null" + sendInvitationWithDocument: + type: + - boolean + - "null" + signingAuthentications: + type: + - object + - "null" + properties: + colleagues: + type: + - string + - "null" + thirdParties: + type: + - string + - "null" + subscription: + type: + - string + - "null" + subsidiaries: + type: + - array + - "null" + whitelistedIps: + type: + - array + - "null" + required: + - id + folders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + access: + type: + - object + - "null" + properties: + allUserInOrganizationAccess: + type: + - boolean + - "null" + invitations: + type: + - array + - "null" + teams: + type: + - array + - "null" + users: + type: + - array + - "null" + children: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + access: + type: + - object + - "null" + properties: + allUserInOrganizationAccess: + type: + - boolean + - "null" + invitations: + type: + - array + - "null" + teams: + type: + - array + - "null" + users: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + folderId: + type: + - number + - "null" + fullName: + type: + - string + - "null" + hasPicture: + type: + - boolean + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + children: + type: + - array + - "null" + documentCount: + type: + - number + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + parentId: + type: + - number + - "null" + documentCount: + type: + - number + - "null" + id: + type: number + required: + - id + reports: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + filters: + type: + - object + - "null" + properties: + createdAt: + type: + - object + - "null" + properties: + isWithinTheLast: + type: + - string + - "null" + createdBy: + type: + - array + - "null" + endAt: + type: + - object + - "null" + properties: + isWithinTheNext: + type: + - string + - "null" + modifiedAt: + type: + - object + - "null" + properties: + isMoreThan: + type: + - string + - "null" + parties: + type: + - array + - "null" + sharedWith: + type: + - array + - "null" + signatureDate: + type: + - object + - "null" + properties: + isWithinTheLast: + type: + - string + - "null" + statuses: + type: + - array + - "null" + items: + type: + - string + - "null" + tagNames: + type: + - array + - "null" + id: + type: string + lastUpdatedAt: + type: + - number + - "null" + name: + type: + - string + - "null" + required: + - id + tags: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + inAccessRule: + type: + - boolean + - "null" + name: + type: + - string + - "null" + organizationId: + type: + - number + - "null" + required: + - id + organization_members: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + createdAt: + type: + - number + - "null" + groups: + type: + - array + - "null" + isActive: + type: + - boolean + - "null" + organization: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + role: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + rights: + type: + - object + - "null" + properties: + accessAllAgreement: + type: + - boolean + - "null" + contractAccess: + type: + - boolean + - "null" + contractAttachments: + type: + - boolean + - "null" + contractCreate: + type: + - boolean + - "null" + contractCreateBulk: + type: + - boolean + - "null" + contractDelete: + type: + - boolean + - "null" + contractUpdate: + type: + - boolean + - "null" + draftCommentAdd: + type: + - boolean + - "null" + draftCommentReply: + type: + - boolean + - "null" + draftCommentResolve: + type: + - boolean + - "null" + draftOrganizationWorkflowUse: + type: + - boolean + - "null" + draftWorkflowCreate: + type: + - boolean + - "null" + draftWorkflowDelete: + type: + - boolean + - "null" + draftWorkflowUpdate: + type: + - boolean + - "null" + fillFields: + type: + - boolean + - "null" + folderCreate: + type: + - boolean + - "null" + folderDelete: + type: + - boolean + - "null" + folderList: + type: + - boolean + - "null" + folderUpdate: + type: + - boolean + - "null" + groupCreate: + type: + - boolean + - "null" + groupDelete: + type: + - boolean + - "null" + groupUpdate: + type: + - boolean + - "null" + groupUpdateUsers: + type: + - boolean + - "null" + negotiationAddComment: + type: + - boolean + - "null" + negotiationAttachments: + type: + - boolean + - "null" + negotiationBreak: + type: + - boolean + - "null" + negotiationCommentAdd: + type: + - boolean + - "null" + negotiationCommentReply: + type: + - boolean + - "null" + negotiationCommentResolve: + type: + - boolean + - "null" + negotiationCreate: + type: + - boolean + - "null" + negotiationInvite: + type: + - boolean + - "null" + negotiationOrganizationWorkflowUse: + type: + - boolean + - "null" + negotiationSign: + type: + - boolean + - "null" + negotiationUpdate: + type: + - boolean + - "null" + negotiationUpdateFirstVersion: + type: + - boolean + - "null" + negotiationUpdateMetadata: + type: + - boolean + - "null" + negotiationUpdateOwn: + type: + - boolean + - "null" + negotiationWorkflowCreate: + type: + - boolean + - "null" + negotiationWorkflowDelete: + type: + - boolean + - "null" + negotiationWorkflowUpdate: + type: + - boolean + - "null" + orgAccessAllContract: + type: + - boolean + - "null" + orgAccessAllNegotiation: + type: + - boolean + - "null" + orgAccessAllTemplate: + type: + - boolean + - "null" + orgAccessRuleModify: + type: + - boolean + - "null" + orgAccessRuleView: + type: + - boolean + - "null" + orgAddUsers: + type: + - boolean + - "null" + orgBilling: + type: + - boolean + - "null" + orgCreate: + type: + - boolean + - "null" + orgInviteUsers: + type: + - boolean + - "null" + orgRemoveUsers: + type: + - boolean + - "null" + orgUpdate: + type: + - boolean + - "null" + organizationClauseCreate: + type: + - boolean + - "null" + organizationClauseDelete: + type: + - boolean + - "null" + organizationClauseList: + type: + - boolean + - "null" + organizationClauseUpdate: + type: + - boolean + - "null" + organizationFieldItemCreate: + type: + - boolean + - "null" + organizationFieldItemDelete: + type: + - boolean + - "null" + organizationFieldItemGet: + type: + - boolean + - "null" + organizationFieldItemUpdate: + type: + - boolean + - "null" + organizationWorkflowCreate: + type: + - boolean + - "null" + organizationWorkflowDelete: + type: + - boolean + - "null" + organizationWorkflowList: + type: + - boolean + - "null" + organizationWorkflowUpdate: + type: + - boolean + - "null" + propertyCreate: + type: + - boolean + - "null" + propertyDelete: + type: + - boolean + - "null" + propertyList: + type: + - boolean + - "null" + propertyUpdate: + type: + - boolean + - "null" + roleCreate: + type: + - boolean + - "null" + roleDelete: + type: + - boolean + - "null" + roleUpdate: + type: + - boolean + - "null" + roleUpdateUsers: + type: + - boolean + - "null" + tagCreate: + type: + - boolean + - "null" + tagDelete: + type: + - boolean + - "null" + tagListAll: + type: + - boolean + - "null" + tagUpdate: + type: + - boolean + - "null" + templateAttachments: + type: + - boolean + - "null" + templateCommentAdd: + type: + - boolean + - "null" + templateCommentReply: + type: + - boolean + - "null" + templateCommentResolve: + type: + - boolean + - "null" + templateCreate: + type: + - boolean + - "null" + templateDelete: + type: + - boolean + - "null" + templateOrganizationWorkflowUse: + type: + - boolean + - "null" + templateUpdate: + type: + - boolean + - "null" + templateUpdateTags: + type: + - boolean + - "null" + templateUpdateUsers: + type: + - boolean + - "null" + templateUse: + type: + - boolean + - "null" + templateWorkflowCreate: + type: + - boolean + - "null" + templateWorkflowDelete: + type: + - boolean + - "null" + templateWorkflowUpdate: + type: + - boolean + - "null" + user: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + fullName: + type: + - string + - "null" + hasMfa: + type: + - boolean + - "null" + hasPicture: + type: + - boolean + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + user_id: + type: number + required: + - user_id diff --git a/airbyte-integrations/connectors/source-concord/metadata.yaml b/airbyte-integrations/connectors/source-concord/metadata.yaml new file mode 100644 index 000000000000..2f1ba9ddb465 --- /dev/null +++ b/airbyte-integrations/connectors/source-concord/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "https://*.concordnow.com/api/rest/1/" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-concord + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: dc50b4e6-862e-4b49-8ed7-3c988f4b1db0 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-concord + githubIssueLabel: source-concord + icon: icon.svg + license: MIT + name: Concord + releaseDate: 2024-10-25 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/concord + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/concord.md b/docs/integrations/sources/concord.md new file mode 100644 index 000000000000..9ac539a61060 --- /dev/null +++ b/docs/integrations/sources/concord.md @@ -0,0 +1,37 @@ +# Concord +This is the setup for the Concord source which ingests data from the concord API. + +Concord turns contract data into financial insights. Sign, store and search unlimited contracts https://www.concord.app/ + +In order to use this source, you must first create a concord account and log in. Then navigate to Automations -> Integrations -> Concord API -> Generate New Key to obtain your API key. + +The API is accessible from two environments, sandbox and production. You can learn more about the API here https://api.doc.concordnow.com/ + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. | | +| `environment` | `string` | enviornment. The environment from where you want to access the API https://api.doc.concordnow.com/#section/Environments. | | + + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| agreements | uid | DefaultPaginator | ✅ | ❌ | +| user_organizations | id | No pagination | ✅ | ❌ | +| organization | id | No pagination | ✅ | ❌ | +| folders | id | No pagination | ✅ | ❌ | +| reports | id | DefaultPaginator | ✅ | ❌ | +| tags | id | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-16 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | + +
From 4c9ed48aae40745dbb409b8609227f58c96f62a9 Mon Sep 17 00:00:00 2001 From: Aazam Thakur <59562284+aazam-gh@users.noreply.github.com> Date: Sat, 26 Oct 2024 00:09:33 +0530 Subject: [PATCH 006/808] source-chargedesk contribution from aazam-gh (#46986) Co-authored-by: Marcos Marx --- .../connectors/source-chargedesk/README.md | 39 + .../acceptance-test-config.yml | 17 + .../connectors/source-chargedesk/icon.svg | 1 + .../source-chargedesk/manifest.yaml | 1288 +++++++++++++++++ .../source-chargedesk/metadata.yaml | 35 + docs/integrations/sources/chargedesk.md | 35 + 6 files changed, 1415 insertions(+) create mode 100644 airbyte-integrations/connectors/source-chargedesk/README.md create mode 100644 airbyte-integrations/connectors/source-chargedesk/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-chargedesk/icon.svg create mode 100644 airbyte-integrations/connectors/source-chargedesk/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-chargedesk/metadata.yaml create mode 100644 docs/integrations/sources/chargedesk.md diff --git a/airbyte-integrations/connectors/source-chargedesk/README.md b/airbyte-integrations/connectors/source-chargedesk/README.md new file mode 100644 index 000000000000..3352b4cbc0bb --- /dev/null +++ b/airbyte-integrations/connectors/source-chargedesk/README.md @@ -0,0 +1,39 @@ +# Chargedesk +This directory contains the manifest-only connector for `source-chargedesk`. + +This is the setup for the Chargedesk source that ingests data from the chargedesk API. + +ChargeDesk integrates directly with many of the most popular payment gateways including Stripe, WooCommerce, PayPal, Braintree Payments, Recurly, Authorize.Net, Zuora & Shopify https://chargedesk.com/ + +In order to use this source, you must first create an account. Once verified and logged in, head over to Setup -> API & Webhooks -> Issue New Key to generate your API key. + +You can find more about the API here https://chargedesk.com/api-docs + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-chargedesk:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-chargedesk build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-chargedesk test +``` + diff --git a/airbyte-integrations/connectors/source-chargedesk/acceptance-test-config.yml b/airbyte-integrations/connectors/source-chargedesk/acceptance-test-config.yml new file mode 100644 index 000000000000..c70cf5cbcc7e --- /dev/null +++ b/airbyte-integrations/connectors/source-chargedesk/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-chargedesk:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-chargedesk/icon.svg b/airbyte-integrations/connectors/source-chargedesk/icon.svg new file mode 100644 index 000000000000..f7236d938eaf --- /dev/null +++ b/airbyte-integrations/connectors/source-chargedesk/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-chargedesk/manifest.yaml b/airbyte-integrations/connectors/source-chargedesk/manifest.yaml new file mode 100644 index 000000000000..290608efbd50 --- /dev/null +++ b/airbyte-integrations/connectors/source-chargedesk/manifest.yaml @@ -0,0 +1,1288 @@ +version: 5.12.0 + +type: DeclarativeSource + +description: >- + This is the setup for the Chargedesk source that ingests data from the + chargedesk API. + + + ChargeDesk integrates directly with many of the most popular payment gateways + including Stripe, WooCommerce, PayPal, Braintree Payments, Recurly, + Authorize.Net, Zuora & Shopify https://chargedesk.com/ + + + In order to use this source, you must first create an account. Once verified + and logged in, head over to Setup -> API & Webhooks -> Issue New Key to + generate your API key. + + + You can find more about the API here https://chargedesk.com/api-docs + +check: + type: CheckStream + stream_names: + - charges + +definitions: + streams: + charges: + type: DeclarativeStream + name: charges + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: count + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 500 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /charges + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - charge_id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/charges" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: occurred + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%s" + datetime_format: "%s" + start_time_option: + type: RequestOption + field_name: occurred[min] + inject_into: request_parameter + cursor_datetime_formats: + - "%s" + products: + type: DeclarativeStream + name: products + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: count + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 500 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /products + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - product_id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/products" + customers: + type: DeclarativeStream + name: customers + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: count + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 500 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /customers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - customer_id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: first_seen + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%s" + datetime_format: "%s" + start_time_option: + type: RequestOption + field_name: first_seen[min] + inject_into: request_parameter + cursor_datetime_formats: + - "%s" + subscriptions: + type: DeclarativeStream + name: subscriptions + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: count + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 500 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /subscriptions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - subscription_id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/subscriptions" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: first_seen + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%s" + datetime_format: "%s" + start_time_option: + type: RequestOption + field_name: created[min] + inject_into: request_parameter + cursor_datetime_formats: + - "%s" + base_requester: + type: HttpRequester + url_base: https://api.chargedesk.com/v1/ + authenticator: + type: BasicHttpAuthenticator + password: "{{ config[\"password\"] }}" + username: "{{ config[\"username\"] }}" + +streams: + - $ref: "#/definitions/streams/charges" + - $ref: "#/definitions/streams/customers" + - $ref: "#/definitions/streams/subscriptions" + - $ref: "#/definitions/streams/products" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - username + properties: + password: + type: string + order: 1 + title: Password + always_show: true + airbyte_secret: true + username: + type: string + order: 0 + title: Username + start_date: + type: integer + description: Date from when the sync should start in epoch Unix timestamp + order: 2 + title: Start Date + additionalProperties: true + +metadata: + assist: {} + testedStreams: + charges: + hasRecords: true + streamHash: 301092c3879ea4f9a39015317b036ca53822e6b4 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + products: + hasRecords: true + streamHash: 35f80857c06f02042bae04deaa41c324e23c9511 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + customers: + hasRecords: true + streamHash: 52863693d8a4d131535344e3f9904fbf08c2035a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + subscriptions: + hasRecords: true + streamHash: 805059fc47649d8b51102be3cc9f343e5a81d0d9 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + autoImportSchema: + charges: true + products: true + customers: true + subscriptions: true + +schemas: + charges: + type: object + $schema: http://json-schema.org/schema# + required: + - charge_id + - occurred + properties: + description: + type: + - string + - "null" + metadata: + anyOf: + - type: array + - type: object + properties: + age: + type: string + lat: + type: string + long: + type: string + user: + type: string + usage: + type: string + rating: + type: string + account: + type: string + loyalty: + type: string + product: + type: string + logs: + type: + - array + - "null" + amount: + type: + - string + - "null" + object: + type: + - string + - "null" + status: + type: + - string + - "null" + company: + type: + - string + - "null" + is_paid: + type: + - boolean + - "null" + currency: + type: + - string + - "null" + occurred: + type: string + added_tax: + type: + - string + - "null" + charge_id: + type: string + sent_void: + type: + - string + - "null" + gateway_id: + type: + - string + - "null" + manage_url: + type: + - string + - "null" + name_email: + type: + - string + - "null" + product_id: + type: + - string + - "null" + accurate_at: + type: + - string + - "null" + audited_job: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + gateway_url: + type: + - string + - "null" + invoice_url: + type: + - string + - "null" + refunded_at: + type: + - string + - "null" + status_text: + type: + - string + - "null" + support_url: + type: + - string + - "null" + product_desc: + type: + - string + - "null" + sent_dunning: + type: + - string + - "null" + sent_invoice: + type: + - string + - "null" + sent_receipt: + type: + - string + - "null" + amount_symbol: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + last_4_digits: + type: + - string + - "null" + support_email: + type: + - string + - "null" + customer_email: + type: + - string + - "null" + customer_phone: + type: + - string + - "null" + failure_reason: + type: + - string + - "null" + methods_active: + type: + - array + - "null" + items: + type: + - string + - "null" + payment_method: + type: + - string + - "null" + sent_authorize: + type: + - string + - "null" + transaction_id: + type: + - string + - "null" + amount_refunded: + type: + - string + - "null" + email_last_sent: + type: + - number + - "null" + name_send_email: + type: + - string + - "null" + subscription_id: + type: + - string + - "null" + amount_formatted: + type: + - string + - "null" + customer_country: + type: + - string + - "null" + customer_username: + type: + - string + - "null" + methods_supported: + type: + - array + - "null" + items: + type: + - string + - "null" + occurred_relative: + type: + - string + - "null" + amount_with_commas: + type: + - string + - "null" + occurred_formatted: + type: + - string + - "null" + payment_method_bank: + type: + - string + - "null" + sent_refund_receipt: + type: + - string + - "null" + invoice_download_url: + type: + - string + - "null" + payment_method_brand: + type: + - string + - "null" + customer_email_domain: + type: + - string + - "null" + refunded_at_formatted: + type: + - string + - "null" + sent_invoice_reminder: + type: + - string + - "null" + statement_description: + type: + - string + - "null" + payment_method_describe: + type: + - string + - "null" + amount_refunded_formatted: + type: + - string + - "null" + additionalProperties: true + products: + type: object + $schema: http://json-schema.org/schema# + required: + - product_id + properties: + description: + type: + - string + - "null" + url: + type: + - string + - "null" + logs: + type: + - array + - "null" + name: + type: + - string + - "null" + amount: + type: + - string + - "null" + status: + type: + - string + - "null" + charges: + type: + - number + - "null" + company: + type: + - string + - "null" + taxable: + type: + - number + - "null" + currency: + type: + - string + - "null" + interval: + type: + - string + - "null" + quantity: + type: + - string + - "null" + chargeable: + type: + - string + - "null" + first_seen: + type: + - number + - "null" + gateway_id: + type: + - string + - "null" + product_id: + type: string + support_url: + type: + - string + - "null" + setup_amount: + type: + - string + - "null" + amount_symbol: + type: + - string + - "null" + has_agent_log: + type: + - string + - "null" + interval_count: + type: + - string + - "null" + amount_formatted: + type: + - string + - "null" + readable_interval: + type: + - string + - "null" + trial_period_days: + type: + - string + - "null" + billing_cycles_total: + type: + - string + - "null" + additionalProperties: true + customers: + type: object + $schema: http://json-schema.org/schema# + required: + - customer_id + - first_seen + properties: + description: + type: + - string + - "null" + metadata: + type: + - array + - "null" + fax: + type: + - string + - "null" + logs: + type: + - array + - "null" + name: + type: + - string + - "null" + email: + type: + - string + - "null" + items: + type: + - array + - "null" + phone: + type: + - string + - "null" + edited: + type: + - string + - "null" + object: + type: + - string + - "null" + charges: + type: + - number + - "null" + company: + type: + - string + - "null" + country: + type: + - string + - "null" + tickets: + type: + - string + - "null" + website: + type: + - string + - "null" + username: + type: + - string + - "null" + has_items: + type: + - string + - "null" + delinquent: + type: + - string + - "null" + first_name: + type: + - string + - "null" + first_seen: + type: number + gateway_id: + type: + - string + - "null" + manage_url: + type: + - string + - "null" + tax_number: + type: + - string + - "null" + accurate_at: + type: + - string + - "null" + customer_id: + type: string + gateway_url: + type: + - string + - "null" + card_on_file: + type: + - string + - "null" + email_domain: + type: + - string + - "null" + send_email_to: + type: + - string + - "null" + subscriptions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + metadata: + anyOf: + - type: array + - type: object + properties: + age: + type: string + lat: + type: string + long: + type: string + user: + type: string + usage: + type: string + rating: + type: string + account: + type: string + loyalty: + type: string + product: + type: string + logs: + type: + - array + - "null" + items: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + amount: + type: + - string + - "null" + item_id: + type: + - string + - "null" + percent: + type: + - string + - "null" + currency: + type: + - string + - "null" + quantity: + type: + - string + - "null" + amount_formatted: + type: + - string + - "null" + amount: + type: + - string + - "null" + object: + type: + - string + - "null" + status: + type: + - string + - "null" + charges: + type: + - number + - "null" + company: + type: + - string + - "null" + currency: + type: + - string + - "null" + ended_at: + type: + - string + - "null" + has_meta: + type: + - string + - "null" + interval: + type: + - string + - "null" + quantity: + type: + - string + - "null" + has_items: + type: + - string + - "null" + trial_end: + type: + - string + - "null" + first_seen: + type: + - number + - "null" + gateway_id: + type: + - string + - "null" + last_email: + type: + - string + - "null" + manage_url: + type: + - string + - "null" + product_id: + type: + - string + - "null" + accurate_at: + type: + - string + - "null" + canceled_at: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + gateway_url: + type: + - string + - "null" + status_text: + type: + - string + - "null" + trial_start: + type: + - string + - "null" + product_desc: + type: + - string + - "null" + setup_amount: + type: + - string + - "null" + amount_symbol: + type: + - string + - "null" + interval_count: + type: + - string + - "null" + methods_active: + type: + - array + - "null" + items: + type: + - string + - "null" + subscription_id: + type: + - string + - "null" + amount_formatted: + type: + - string + - "null" + methods_supported: + type: + - array + - "null" + items: + type: + - string + - "null" + readable_interval: + type: + - string + - "null" + trial_period_days: + type: + - string + - "null" + current_period_end: + type: + - string + - "null" + current_period_start: + type: + - string + - "null" + last_charge_id: + type: + - string + - "null" + methods_active: + type: + - array + - "null" + items: + type: + - string + - "null" + tax_number_abr: + type: + - string + - "null" + billing_address: + type: + - string + - "null" + invoice_details: + type: + - string + - "null" + customer_company: + type: + - string + - "null" + last_paid_charge: + type: + - string + - "null" + readable_country: + type: + - string + - "null" + shipping_address: + type: + - string + - "null" + unsubscribe_void: + type: + - string + - "null" + methods_supported: + type: + - array + - "null" + items: + type: + - string + - "null" + unsubscribe_refunds: + type: + - string + - "null" + unsubscribe_receipts: + type: + - string + - "null" + unsubscribe_authorize: + type: + - string + - "null" + additionalProperties: true + subscriptions: + type: object + $schema: http://json-schema.org/schema# + required: + - subscription_id + - first_seen + properties: + metadata: + anyOf: + - type: array + - type: object + properties: + age: + type: string + lat: + type: string + long: + type: string + user: + type: string + usage: + type: string + rating: + type: string + account: + type: string + loyalty: + type: string + product: + type: string + logs: + type: + - array + - "null" + items: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + amount: + type: + - string + - "null" + item_id: + type: + - string + - "null" + percent: + type: + - string + - "null" + currency: + type: + - string + - "null" + quantity: + type: + - string + - "null" + amount_formatted: + type: + - string + - "null" + amount: + type: + - string + - "null" + object: + type: + - string + - "null" + status: + type: + - string + - "null" + charges: + type: + - number + - "null" + company: + type: + - string + - "null" + currency: + type: + - string + - "null" + ended_at: + type: + - string + - "null" + has_meta: + type: + - string + - "null" + interval: + type: + - string + - "null" + quantity: + type: + - string + - "null" + has_items: + type: + - string + - "null" + trial_end: + type: + - string + - "null" + first_seen: + type: number + gateway_id: + type: + - string + - "null" + last_email: + type: + - string + - "null" + manage_url: + type: + - string + - "null" + product_id: + type: + - string + - "null" + accurate_at: + type: + - string + - "null" + canceled_at: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + gateway_url: + type: + - string + - "null" + status_text: + type: + - string + - "null" + trial_start: + type: + - string + - "null" + product_desc: + type: + - string + - "null" + setup_amount: + type: + - string + - "null" + amount_symbol: + type: + - string + - "null" + interval_count: + type: + - string + - "null" + methods_active: + type: + - array + - "null" + items: + type: + - string + - "null" + subscription_id: + type: string + amount_formatted: + type: + - string + - "null" + methods_supported: + type: + - array + - "null" + items: + type: + - string + - "null" + readable_interval: + type: + - string + - "null" + trial_period_days: + type: + - string + - "null" + current_period_end: + type: + - string + - "null" + current_period_start: + type: + - string + - "null" + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-chargedesk/metadata.yaml b/airbyte-integrations/connectors/source-chargedesk/metadata.yaml new file mode 100644 index 000000000000..af9a5c538b59 --- /dev/null +++ b/airbyte-integrations/connectors/source-chargedesk/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.chargedesk.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-chargedesk + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + connectorSubtype: api + connectorType: source + definitionId: cd803254-3d2c-4613-a870-20d205ee6267 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-chargedesk + githubIssueLabel: source-chargedesk + icon: icon.svg + license: MIT + name: Chargedesk + releaseDate: 2024-10-18 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/chargedesk + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/chargedesk.md b/docs/integrations/sources/chargedesk.md new file mode 100644 index 000000000000..eee084dbfaec --- /dev/null +++ b/docs/integrations/sources/chargedesk.md @@ -0,0 +1,35 @@ +# Chargedesk +This is the setup for the Chargedesk source that ingests data from the chargedesk API. + +[ChargeDesk](https://chargedesk.com/) integrates directly with many of the most popular payment gateways including Stripe, WooCommerce, PayPal, Braintree Payments, Recurly, Authorize.Net, Zuora and Shopify. + +In order to use this source, you must first create an account. Once verified and logged in, head over to Setup -> API / Webhooks -> Issue New Key to generate your API key. + +You can find more about the API here https://chargedesk.com/api-docs + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `password` | `string` | Password. | | +| `username` | `string` | Username. | | +| `start_date` | `integer` | Start Date. Date from when the sync should start in epoch Unix timestamp | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| charges | charge_id | DefaultPaginator | ✅ | ✅ | +| customers | customer_id | DefaultPaginator | ✅ | ✅ | +| subscriptions | subscription_id | DefaultPaginator | ✅ | ✅ | +| products | product_id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-18 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | + +
From 89a1283bb0771d2672c889183a98f2afc5bbb8fc Mon Sep 17 00:00:00 2001 From: Guen Prawiroatmodjo Date: Fri, 25 Oct 2024 13:11:07 -0700 Subject: [PATCH 007/808] Fix: MotherDuck destination was not passing MotherDuck API key to SQL processor (#47380) --- .../airbyte_cdk/sql/_processors/motherduck.py | 2 +- .../destination_motherduck/destination.py | 44 +++++++++---------- .../destination-motherduck/metadata.yaml | 2 +- .../destination-motherduck/pyproject.toml | 2 +- docs/integrations/destinations/motherduck.md | 1 + 5 files changed, 25 insertions(+), 26 deletions(-) diff --git a/airbyte-cdk/python/airbyte_cdk/sql/_processors/motherduck.py b/airbyte-cdk/python/airbyte_cdk/sql/_processors/motherduck.py index e3ddda5e4c9b..1e3bf0019780 100644 --- a/airbyte-cdk/python/airbyte_cdk/sql/_processors/motherduck.py +++ b/airbyte-cdk/python/airbyte_cdk/sql/_processors/motherduck.py @@ -54,7 +54,7 @@ def get_sql_alchemy_url(self) -> SecretString: return SecretString( f"duckdb:///md:{self.database}?motherduck_token={self.api_key}" - f"&custom_user_agent=={self.custom_user_agent}" + f"&custom_user_agent={self.custom_user_agent}" # Not sure why this doesn't work. We have to override later in the flow. # f"&schema={self.schema_name}" ) diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py index fe30056656ac..24b7ab505fc0 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py @@ -12,7 +12,7 @@ from typing import Any, Dict, Iterable, List, Mapping from urllib.parse import urlparse -import duckdb +from airbyte_cdk import AirbyteStream, ConfiguredAirbyteStream, SyncMode from airbyte_cdk.destinations import Destination from airbyte_cdk.models import AirbyteConnectionStatus, AirbyteMessage, ConfiguredAirbyteCatalog, DestinationSyncMode, Status, Type from airbyte_cdk.sql._processors.duckdb import DuckDBConfig, DuckDBSqlProcessor @@ -125,13 +125,7 @@ def write( path = str(config.get("destination_path")) path = self._get_destination_path(path) schema_name = validated_sql_name(config.get("schema", CONFIG_DEFAULT_SCHEMA)) - - # Get and register auth token if applicable motherduck_api_key = str(config.get(CONFIG_MOTHERDUCK_API_KEY, "")) - duckdb_config = {} - if motherduck_api_key: - duckdb_config["motherduck_token"] = motherduck_api_key - duckdb_config["custom_user_agent"] = "airbyte" for configured_stream in configured_catalog.streams: stream_name = configured_stream.stream.name @@ -140,6 +134,7 @@ def write( configured_catalog=configured_catalog, schema_name=schema_name, db_path=path, + motherduck_token=motherduck_api_key, ) processor._ensure_schema_exists() @@ -171,7 +166,7 @@ def write( for message in input_messages: if message.type == Type.STATE: # flush the buffer - self._flush_buffer(buffer, configured_catalog, path, schema_name) + self._flush_buffer(buffer, configured_catalog, path, schema_name, motherduck_api_key) buffer = defaultdict(lambda: defaultdict(list)) yield message @@ -196,7 +191,7 @@ def write( logger.info(f"Message type {message.type} not supported, skipping") # flush any remaining messages - self._flush_buffer(buffer, configured_catalog, path, schema_name) + self._flush_buffer(buffer, configured_catalog, path, schema_name, motherduck_api_key) def _flush_buffer( self, @@ -204,6 +199,7 @@ def _flush_buffer( configured_catalog: ConfiguredAirbyteCatalog, db_path: str, schema_name: str, + motherduck_api_key: str, ) -> None: """ Flush the buffer to the destination @@ -212,9 +208,7 @@ def _flush_buffer( stream_name = configured_stream.stream.name if stream_name in buffer: processor = self._get_sql_processor( - configured_catalog=configured_catalog, - schema_name=schema_name, - db_path=db_path, + configured_catalog=configured_catalog, schema_name=schema_name, db_path=db_path, motherduck_token=motherduck_api_key ) processor.write_stream_data_from_buffer(buffer, stream_name, configured_stream.destination_sync_mode) @@ -238,11 +232,8 @@ def check(self, logger: logging.Logger, config: Mapping[str, Any]) -> AirbyteCon logger.info(f"Using DuckDB file at {path}") os.makedirs(os.path.dirname(path), exist_ok=True) - duckdb_config = {} - if CONFIG_MOTHERDUCK_API_KEY in config: - duckdb_config["motherduck_token"] = str(config[CONFIG_MOTHERDUCK_API_KEY]) - duckdb_config["custom_user_agent"] = "airbyte" - # Next, we want to specify 'saas_mode' for during check, + if self._is_motherduck(path): + # We want to specify 'saas_mode' for during check, # to reduce memory usage from unnecessary extensions if "?" in path: # There are already some query params; append to them. @@ -251,13 +242,20 @@ def check(self, logger: logging.Logger, config: Mapping[str, Any]) -> AirbyteCon # No query params yet; add one. path += "?saas_mode=true" - con = duckdb.connect( - database=path, - read_only=False, - config=duckdb_config, + # Create a dummy catalog to check if the SQL processor works + check_stream = ConfiguredAirbyteStream( + stream=AirbyteStream(name="check", json_schema={"type": "object"}, supported_sync_modes=[SyncMode.incremental]), + sync_mode=SyncMode.incremental, + destination_sync_mode=SyncMode.incremental, ) - con.execute("SELECT 1;") - + check_catalog = ConfiguredAirbyteCatalog(streams=[check_stream]) + processor = self._get_sql_processor( + configured_catalog=check_catalog, + schema_name="test", + db_path=path, + motherduck_token=str(config.get(CONFIG_MOTHERDUCK_API_KEY, "")), + ) + processor._execute_sql("SELECT 1;") return AirbyteConnectionStatus(status=Status.SUCCEEDED) except Exception as e: diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index 50a7a1d6a7c3..362e2f625954 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.2 + dockerImageTag: 0.1.3 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index ebe7c776b133..e5ffb5034e99 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-motherduck" -version = "0.1.2" +version = "0.1.3" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index a94ba5b95467..b9d89c100c7d 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.3 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Fix bug causing MotherDuck API key to not be correctly passed to the engine. | | 0.1.2 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Use `saas_only` mode during connection check to reduce ram usage. | | 0.1.1 | 2024-10-23 | [47312](https://github.com/airbytehq/airbyte/pull/47312) | Fix: generate new unique destination ID | | 0.1.0 | 2024-10-23 | [46904](https://github.com/airbytehq/airbyte/pull/46904) | New MotherDuck destination | From d15c1392adb22393eaf1e52290eb5121304bcf55 Mon Sep 17 00:00:00 2001 From: Aazam Thakur <59562284+aazam-gh@users.noreply.github.com> Date: Sat, 26 Oct 2024 01:41:25 +0530 Subject: [PATCH 008/808] source-kisi contribution from aazam-gh (#46987) Co-authored-by: Marcos Marx --- .../connectors/source-kisi/README.md | 50 + .../source-kisi/acceptance-test-config.yml | 17 + .../connectors/source-kisi/icon.svg | 5 + .../connectors/source-kisi/manifest.yaml | 1552 +++++++++++++++++ .../connectors/source-kisi/metadata.yaml | 35 + docs/integrations/sources/kisi.md | 44 + 6 files changed, 1703 insertions(+) create mode 100644 airbyte-integrations/connectors/source-kisi/README.md create mode 100644 airbyte-integrations/connectors/source-kisi/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-kisi/icon.svg create mode 100644 airbyte-integrations/connectors/source-kisi/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-kisi/metadata.yaml create mode 100644 docs/integrations/sources/kisi.md diff --git a/airbyte-integrations/connectors/source-kisi/README.md b/airbyte-integrations/connectors/source-kisi/README.md new file mode 100644 index 000000000000..9f3e5de045c6 --- /dev/null +++ b/airbyte-integrations/connectors/source-kisi/README.md @@ -0,0 +1,50 @@ +# Kisi +This directory contains the manifest-only connector for `source-kisi`. + +This is the setup for the Kisi source connector that ingests data from the Kisi API. + +Kisi's sturdy hardware and user-friendly software work in perfect harmony to enhance the security of your spaces. Remotely manage your locations, streamline operations, and stay compliant while enjoying mobile unlocks. https://www.getkisi.com/ + +In order to use this source, you must first create an account with Kisi. +On the top right corner, click on your name and click on My Account. +Next, select the API tab and click on Add API key. Enter your name, your Kisi password, and your verification code and click Add. Copy the API key shown on the screen. + +You can learn more about the API key here https://api.kisi.io/docs#/ + + +Kisi's sturdy hardware and user-friendly software work in perfect harmony to enhance the security of your spaces. Remotely manage your locations, streamline operations, and stay compliant while enjoying mobile unlocks. https://www.getkisi.com/ + +In order to use this source, you must first create an account with Kisi. +On the top right corner, click on your name and click on My Account. +Next, select the API tab and click on Add API key. Enter your name, your Kisi password, and your verification code and click Add. Copy the API key shown on the screen. + +You can learn more about the API key here https://api.kisi.io/docs#/ + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-kisi:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-kisi build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-kisi test +``` + diff --git a/airbyte-integrations/connectors/source-kisi/acceptance-test-config.yml b/airbyte-integrations/connectors/source-kisi/acceptance-test-config.yml new file mode 100644 index 000000000000..4ed36256e7e1 --- /dev/null +++ b/airbyte-integrations/connectors/source-kisi/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-kisi:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-kisi/icon.svg b/airbyte-integrations/connectors/source-kisi/icon.svg new file mode 100644 index 000000000000..2829aef0a094 --- /dev/null +++ b/airbyte-integrations/connectors/source-kisi/icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/airbyte-integrations/connectors/source-kisi/manifest.yaml b/airbyte-integrations/connectors/source-kisi/manifest.yaml new file mode 100644 index 000000000000..e282013c1064 --- /dev/null +++ b/airbyte-integrations/connectors/source-kisi/manifest.yaml @@ -0,0 +1,1552 @@ +version: 5.12.0 + +type: DeclarativeSource + +description: >- + This is the setup for the Kisi source connector that ingests data from the + Kisi API. + + Kisi's sturdy hardware and user-friendly software work in perfect harmony to + enhance the security of your spaces. Remotely manage your locations, + streamline operations, and stay compliant while enjoying mobile unlocks. + https://www.getkisi.com/ + + In order to use this source, you must first create an account with Kisi. + + On the top right corner, click on your name and click on My Account. + + Next, select the API tab and click on Add API key. Enter your name, your Kisi + password, and your verification code and click Add. Copy the API key shown on + the screen. + + You can learn more about the API key here https://api.kisi.io/docs#/ + +check: + type: CheckStream + stream_names: + - users + +definitions: + streams: + locks: + type: DeclarativeStream + name: locks + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /locks + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/locks" + users: + type: DeclarativeStream + name: users + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /users + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + floors: + type: DeclarativeStream + name: floors + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /floors + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + request_parameters: + place_id: "{{stream_partition.parent_id}}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: + $ref: "#/definitions/streams/places" + parent_key: id + partition_field: parent_id + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/floors" + groups: + type: DeclarativeStream + name: groups + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /groups + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/groups" + logins: + type: DeclarativeStream + name: logins + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /logins + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/logins" + places: + type: DeclarativeStream + name: places + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /places + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/places" + members: + type: DeclarativeStream + name: members + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /members + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/members" + reports: + type: DeclarativeStream + name: reports + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /reports + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/reports" + elevators: + type: DeclarativeStream + name: elevators + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /elevators + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + request_parameters: + place_id: "{{stream_partition.parent_id}}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: + $ref: "#/definitions/streams/places" + parent_key: id + partition_field: parent_id + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/elevators" + organizations: + type: DeclarativeStream + name: organizations + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /organizations + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/organizations" + role_assignments: + type: DeclarativeStream + name: role_assignments + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: role_assignments + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/role_assignments" + scheduled_reports: + type: DeclarativeStream + name: scheduled_reports + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /scheduled_reports + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/scheduled_reports" + user_export_reporters: + type: DeclarativeStream + name: user_export_reporters + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: offset + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /user_export_reporters + http_method: GET + request_headers: + Authorization: KISI-LOGIN {{ config["api_key"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/user_export_reporters" + base_requester: + type: HttpRequester + url_base: https://api.kisi.io + +streams: + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/user_export_reporters" + - $ref: "#/definitions/streams/scheduled_reports" + - $ref: "#/definitions/streams/role_assignments" + - $ref: "#/definitions/streams/places" + - $ref: "#/definitions/streams/reports" + - $ref: "#/definitions/streams/organizations" + - $ref: "#/definitions/streams/members" + - $ref: "#/definitions/streams/logins" + - $ref: "#/definitions/streams/locks" + - $ref: "#/definitions/streams/groups" + - $ref: "#/definitions/streams/floors" + - $ref: "#/definitions/streams/elevators" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + properties: + api_key: + type: string + description: Your KISI API Key + order: 0 + title: API Key + additionalProperties: true + +metadata: + assist: {} + testedStreams: + locks: + hasRecords: true + streamHash: b6590f8e5716b23ef1c2df8e329ac31b404c1110 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + users: + hasRecords: true + streamHash: 6655b1fa3ff18e66f82bbebb403aec85e263c06c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + floors: + hasRecords: true + streamHash: 21dd5fd53c9f5ac35b77ff91f07b9de8cae7c0b4 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + groups: + hasRecords: true + streamHash: 3a4f058e976d148de06bd7f869452e163d502bfe + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + logins: + hasRecords: true + streamHash: 5304b8540ee7caae03ac5ac254ee94e24849b979 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + places: + hasRecords: true + streamHash: f98ab82ec63855267b0f04a60606ef83afa77d52 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + members: + hasRecords: true + streamHash: 2f50be02b95b16a8a5bff82ed8357e7d3a76de61 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + reports: + hasRecords: true + streamHash: c54937b4edc69d1b6288643318ed909f4c4624d0 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + elevators: + hasRecords: true + streamHash: ba788c4de0fab272ed5f59ee5b754bf87ef08735 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + organizations: + hasRecords: true + streamHash: 13fde4ab4b10ca1b3b2a84b27bee57e1c4407dfc + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + role_assignments: + hasRecords: true + streamHash: 2d56b0e033811ff10bf5ba4dd5d52e5949dfbbf2 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + scheduled_reports: + hasRecords: true + streamHash: 13cb55c00ca649518f587b69779d813dcb5a978d + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + user_export_reporters: + hasRecords: true + streamHash: 273e9e4392cdf0d6b16d09f6377f631d95238767 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + autoImportSchema: + locks: true + users: true + floors: true + groups: true + logins: true + places: true + members: true + reports: true + elevators: true + organizations: true + role_assignments: true + scheduled_reports: true + user_export_reporters: true + +schemas: + locks: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: number + name: + type: + - string + - "null" + open: + type: + - boolean + - "null" + place: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + online: + type: + - boolean + - "null" + place_id: + type: + - number + - "null" + unlocked: + type: + - boolean + - "null" + configured: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + locked_down: + type: + - boolean + - "null" + groups_count: + type: + - number + - "null" + on_scheduled_unlock: + type: + - boolean + - "null" + time_restriction_enabled: + type: + - boolean + - "null" + first_to_arrive_satisfied: + type: + - boolean + - "null" + reader_restriction_enabled: + type: + - boolean + - "null" + time_restriction_time_zone: + type: + - string + - "null" + geofence_restriction_radius: + type: + - number + - "null" + geofence_restriction_enabled: + type: + - boolean + - "null" + additionalProperties: true + users: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + metadata: + type: + - object + - "null" + id: + type: number + name: + type: + - string + - "null" + email: + type: + - string + - "null" + confirmed: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + groups_count: + type: + - number + - "null" + access_enabled: + type: + - boolean + - "null" + organization_id: + type: + - number + - "null" + scim_access_enabled: + type: + - boolean + - "null" + password_flow_enabled: + type: + - boolean + - "null" + otp_required_for_login: + type: + - boolean + - "null" + additionalProperties: true + floors: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + description: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + number: + type: + - number + - "null" + place_id: + type: + - number + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + additionalProperties: true + groups: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + description: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + locks_count: + type: + - number + - "null" + users_count: + type: + - number + - "null" + login_enabled: + type: + - boolean + - "null" + members_count: + type: + - number + - "null" + elevator_stops_count: + type: + - number + - "null" + time_restriction_enabled: + type: + - boolean + - "null" + reader_restriction_enabled: + type: + - boolean + - "null" + time_restriction_time_zone: + type: + - string + - "null" + geofence_restriction_radius: + type: + - number + - "null" + geofence_restriction_enabled: + type: + - boolean + - "null" + managed_device_restriction_enabled: + type: + - boolean + - "null" + primary_device_restriction_enabled: + type: + - boolean + - "null" + additionalProperties: true + logins: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + type: + type: + - string + - "null" + id: + type: number + os: + type: + - object + - "null" + properties: + version: + type: + - string + - "null" + name: + type: + - string + - "null" + app: + type: + - object + - "null" + properties: + version: + type: + - string + - "null" + name: + type: + - string + - "null" + name: + type: + - string + - "null" + user: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + email: + type: + - string + - "null" + device: + type: + - object + - "null" + properties: + size: + type: + - string + - "null" + brand: + type: + - string + - "null" + model: + type: + - string + - "null" + expire: + type: + - boolean + - "null" + os_name: + type: + - string + - "null" + primary: + type: + - boolean + - "null" + user_id: + type: + - number + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + user_agent: + type: + - object + - "null" + properties: + version: + type: + - string + - "null" + name: + type: + - string + - "null" + device_brand: + type: + - string + - "null" + device_model: + type: + - string + - "null" + last_used_at: + type: + - string + - "null" + additionalProperties: true + places: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: number + name: + type: + - string + - "null" + address: + type: + - string + - "null" + latitude: + type: + - number + - "null" + longitude: + type: + - number + - "null" + time_zone: + type: + - string + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + locked_down: + type: + - boolean + - "null" + locks_count: + type: + - number + - "null" + organization: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + domain: + type: + - string + - "null" + tz_time_zone: + type: + - string + - "null" + members_count: + type: + - number + - "null" + occupancy_rate: + type: + - number + - "null" + organization_id: + type: + - number + - "null" + integrations_count: + type: + - number + - "null" + additionalProperties: true + members: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + metadata: + type: + - object + - "null" + id: + type: number + name: + type: + - string + - "null" + user: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + email: + type: + - string + - "null" + otp_required_for_login: + type: + - boolean + - "null" + role_id: + type: + - string + - "null" + user_id: + type: + - number + - "null" + confirmed: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + shares_count: + type: + - number + - "null" + access_enabled: + type: + - boolean + - "null" + organization_id: + type: + - number + - "null" + scim_access_enabled: + type: + - boolean + - "null" + password_flow_enabled: + type: + - boolean + - "null" + additionalProperties: true + reports: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: number + name: + type: + - string + - "null" + status: + type: + - string + - "null" + end_date: + type: + - string + - "null" + interval: + type: + - string + - "null" + time_zone: + type: + - string + - "null" + created_at: + type: + - string + - "null" + start_date: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + reporter_id: + type: + - number + - "null" + organization: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + domain: + type: + - string + - "null" + reporter_type: + type: + - string + - "null" + organization_id: + type: + - number + - "null" + additionalProperties: true + elevators: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + description: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + place_id: + type: + - number + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + elevator_stops_count: + type: + - number + - "null" + additionalProperties: true + organizations: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: number + name: + type: + - string + - "null" + domain: + type: + - string + - "null" + user_id: + type: + - number + - "null" + time_zone: + type: + - string + - "null" + send_emails: + type: + - boolean + - "null" + places_count: + type: + - number + - "null" + scim_enabled: + type: + - boolean + - "null" + sso_flow_enabled: + type: + - boolean + - "null" + apple_pass_enabled: + type: + - boolean + - "null" + sso_expiration_override: + type: + - number + - "null" + web_authentication_api_enabled: + type: + - boolean + - "null" + sso_expiration_override_enabled: + type: + - boolean + - "null" + additionalProperties: true + role_assignments: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + type: + type: + - string + - "null" + id: + type: number + user: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + email: + type: + - string + - "null" + scope: + type: + - string + - "null" + notify: + type: + - boolean + - "null" + role_id: + type: + - string + - "null" + user_id: + type: + - number + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + organization: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + domain: + type: + - string + - "null" + organization_id: + type: + - number + - "null" + additionalProperties: true + scheduled_reports: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: number + name: + type: + - string + - "null" + emails: + type: + - array + - "null" + items: + type: + - string + - "null" + period: + type: + - string + - "null" + enabled: + type: + - boolean + - "null" + frequency: + type: + - number + - "null" + time_zone: + type: + - string + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + reporter_id: + type: + - number + - "null" + organization: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + domain: + type: + - string + - "null" + scheduled_at: + type: + - string + - "null" + reporter_type: + type: + - string + - "null" + organization_id: + type: + - number + - "null" + additionalProperties: true + user_export_reporters: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: number + created_at: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + organization: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + domain: + type: + - string + - "null" + organization_id: + type: + - number + - "null" + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-kisi/metadata.yaml b/airbyte-integrations/connectors/source-kisi/metadata.yaml new file mode 100644 index 000000000000..1b968d9a5e22 --- /dev/null +++ b/airbyte-integrations/connectors/source-kisi/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.kisi.io" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-kisi + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + connectorSubtype: api + connectorType: source + definitionId: 7706728b-f644-456e-8dd4-ac92c4d8f31a + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-kisi + githubIssueLabel: source-kisi + icon: icon.svg + license: MIT + name: Kisi + releaseDate: 2024-10-18 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/kisi + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/kisi.md b/docs/integrations/sources/kisi.md new file mode 100644 index 000000000000..f5f300b5239c --- /dev/null +++ b/docs/integrations/sources/kisi.md @@ -0,0 +1,44 @@ +# Kisi +This is the setup for the Kisi source connector that ingests data from the Kisi API. + +Kisi's sturdy hardware and user-friendly software work in perfect harmony to enhance the security of your spaces. Remotely manage your locations, streamline operations, and stay compliant while enjoying mobile unlocks. https://www.getkisi.com/ + +In order to use this source, you must first create an account with Kisi. +On the top right corner, click on your name and click on My Account. +Next, select the API tab and click on Add API key. Enter your name, your Kisi password, and your verification code and click Add. Copy the API key shown on the screen. + +You can learn more about the API key here https://api.kisi.io/docs#/ + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. Your KISI API Key | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| users | id | DefaultPaginator | ✅ | ❌ | +| user_export_reporters | id | DefaultPaginator | ✅ | ❌ | +| scheduled_reports | id | DefaultPaginator | ✅ | ❌ | +| role_assignments | id | DefaultPaginator | ✅ | ❌ | +| places | id | DefaultPaginator | ✅ | ❌ | +| reports | id | DefaultPaginator | ✅ | ❌ | +| organizations | id | DefaultPaginator | ✅ | ❌ | +| members | id | DefaultPaginator | ✅ | ❌ | +| logins | id | DefaultPaginator | ✅ | ❌ | +| locks | id | DefaultPaginator | ✅ | ❌ | +| groups | id | DefaultPaginator | ✅ | ❌ | +| floors | id | DefaultPaginator | ✅ | ❌ | +| elevators | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-18 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | + +
From ba5d6eda76db0c7397f333352db25682dbf2a312 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Fri, 25 Oct 2024 14:49:31 -0700 Subject: [PATCH 009/808] Bulk load CDK: handle various null things (#47359) --- .../cdk/load/data/JsonToAirbyteValue.kt | 8 +++++++ .../cdk/load/data/JsonToAirbyteValueTest.kt | 21 +++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValue.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValue.kt index d84f6b6136fb..0d95b18fe11f 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValue.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValue.kt @@ -18,6 +18,9 @@ import java.math.BigDecimal */ class JsonToAirbyteValue { fun convert(json: JsonNode, schema: AirbyteType): AirbyteValue { + if (json.isNull) { + return NullValue + } try { return when (schema) { is ArrayType -> toArray(json, schema.items.type) @@ -103,6 +106,11 @@ class JsonToAirbyteValue { return ObjectValue( values = schema.properties + // Note that this will create an ObjectValue where properties in the schema + // might not exist in the value. + // This matches JSON behavior (i.e. explicit null != property not set), + // but we maybe would prefer to set an explicit NullValue. + .filter { (name, _) -> json.has(name) } .mapValues { (name, field) -> convert(json.get(name), field.type) } .toMap(LinkedHashMap()) ) diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValueTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValueTest.kt index 58019e3c2431..9b5fa2cc35a1 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValueTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValueTest.kt @@ -5,6 +5,7 @@ package io.airbyte.cdk.load.data import com.fasterxml.jackson.databind.node.JsonNodeFactory +import io.airbyte.cdk.util.Jsons import java.math.BigDecimal import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test @@ -160,4 +161,24 @@ class JsonToAirbyteValueTest { Assertions.assertTrue(value is TimeValue) Assertions.assertEquals("00:00:00", (value as TimeValue).value) } + + @Test + fun testMissingObjectField() { + val value = + JsonToAirbyteValue() + .convert( + Jsons.readTree("""{"foo": 1}"""), + ObjectType( + properties = + linkedMapOf( + "foo" to FieldType(IntegerType, nullable = true), + "bar" to FieldType(IntegerType, nullable = true), + ) + ) + ) + Assertions.assertEquals( + ObjectValue(linkedMapOf("foo" to IntegerValue(1))), + value, + ) + } } From b1b2f9c744408665d29f115826eab8d36e3b503e Mon Sep 17 00:00:00 2001 From: Augustin Date: Sat, 26 Oct 2024 12:20:53 +0200 Subject: [PATCH 010/808] up-to-date: ignore RC from the up to date pipeline (#47360) --- .github/workflows/connectors_up_to_date.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/connectors_up_to_date.yml b/.github/workflows/connectors_up_to_date.yml index 85ad29a6181f..c0e146da4677 100644 --- a/.github/workflows/connectors_up_to_date.yml +++ b/.github/workflows/connectors_up_to_date.yml @@ -11,7 +11,7 @@ on: inputs: connectors-options: description: "Options to pass to the 'airbyte-ci connectors' command group." - default: "--concurrency=10 --language=python --language=low-code --language=manifest-only" + default: '--concurrency=10 --language=python --language=low-code --language=manifest-only --metadata-query="''-rc.'' not in data.dockerImageTag"' auto-merge: description: "Whether to auto-merge the PRs created by the action." default: "false" @@ -39,4 +39,4 @@ jobs: sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} s3_build_cache_access_key_id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }} s3_build_cache_secret_key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }} - subcommand: "connectors ${{ github.event.inputs.connectors-options || '--concurrency=10 --language=python --language=low-code --support-level=community --support-level=certified' }} up-to-date --ignore-connector=source-declarative-manifest --create-prs ${{ github.event.inputs.auto-merge == 'false' && '' || '--auto-merge' }}" + subcommand: 'connectors ${{ github.event.inputs.connectors-options || ''--concurrency=10 --language=python --language=low-code --support-level=community --support-level=certified --metadata-query="''-rc.'' not in data.dockerImageTag"'' }} up-to-date --ignore-connector=source-declarative-manifest --create-prs ${{ github.event.inputs.auto-merge == ''false'' && '''' || ''--auto-merge'' }}' From 7658f43097517e2b262bdfa99e127911a9fd7f5a Mon Sep 17 00:00:00 2001 From: Daryna Ishchenko <80129833+darynaishchenko@users.noreply.github.com> Date: Mon, 28 Oct 2024 11:55:31 +0200 Subject: [PATCH 011/808] feat(source-gcs): added oauth flow (#45414) --- .../source-gcs/integration_tests/spec.json | 127 ++++++++++++++++-- .../connectors/source-gcs/metadata.yaml | 2 +- .../connectors/source-gcs/pyproject.toml | 2 +- .../source-gcs/source_gcs/config.py | 67 +++++++-- .../source_gcs/config_migrations.py | 57 ++++++++ .../source-gcs/source_gcs/helpers.py | 15 ++- .../connectors/source-gcs/source_gcs/run.py | 2 + .../source-gcs/source_gcs/source.py | 32 +++++ .../connectors/source-gcs/source_gcs/spec.py | 60 +++++++-- .../source-gcs/source_gcs/stream_reader.py | 24 +++- .../resource/config/config_bad_encoding.json | 6 +- .../config_bad_encoding_single_stream.json | 6 +- .../resource/config/config_legacy.json | 5 +- .../service_account_config.json | 12 ++ ...rvice_account_with_credentials_config.json | 17 +++ .../source-gcs/unit_tests/test_config.py | 3 - .../unit_tests/test_config_migrations.py | 46 +++++++ .../unit_tests/test_stream_reader.py | 22 +-- docs/integrations/sources/gcs.md | 119 ++++++++-------- 19 files changed, 509 insertions(+), 115 deletions(-) create mode 100644 airbyte-integrations/connectors/source-gcs/source_gcs/config_migrations.py create mode 100644 airbyte-integrations/connectors/source-gcs/unit_tests/resource/config_migrations/service_account_config.json create mode 100644 airbyte-integrations/connectors/source-gcs/unit_tests/resource/config_migrations/service_account_with_credentials_config.json create mode 100644 airbyte-integrations/connectors/source-gcs/unit_tests/test_config_migrations.py diff --git a/airbyte-integrations/connectors/source-gcs/integration_tests/spec.json b/airbyte-integrations/connectors/source-gcs/integration_tests/spec.json index 47a40eeb762b..3384a1f45a36 100644 --- a/airbyte-integrations/connectors/source-gcs/integration_tests/spec.json +++ b/airbyte-integrations/connectors/source-gcs/integration_tests/spec.json @@ -317,13 +317,6 @@ "mode": "local" }, "type": "object", - "discriminator": { - "propertyName": "mode", - "mapping": { - "local": "#/definitions/LocalProcessingConfigModel", - "api": "#/definitions/APIProcessingConfigModel" - } - }, "oneOf": [ { "title": "Local", @@ -437,12 +430,76 @@ "required": ["name", "format"] } }, - "service_account": { - "title": "Service Account Information", - "description": "Enter your Google Cloud service account key in JSON format", - "airbyte_secret": true, + "credentials": { + "title": "Authentication", + "description": "Credentials for connecting to the Google Cloud Storage API", + "type": "object", "order": 0, - "type": "string" + "oneOf": [ + { + "title": "Authenticate via Google (OAuth)", + "type": "object", + "properties": { + "auth_type": { + "title": "Auth Type", + "default": "Client", + "const": "Client", + "enum": ["Client"], + "type": "string" + }, + "client_id": { + "title": "Client ID", + "description": "Client ID", + "airbyte_secret": true, + "type": "string" + }, + "client_secret": { + "title": "Client Secret", + "description": "Client Secret", + "airbyte_secret": true, + "type": "string" + }, + "access_token": { + "title": "Access Token", + "description": "Access Token", + "airbyte_secret": true, + "type": "string" + }, + "refresh_token": { + "title": "Access Token", + "description": "Access Token", + "airbyte_secret": true, + "type": "string" + } + }, + "required": [ + "client_id", + "client_secret", + "access_token", + "refresh_token" + ] + }, + { + "title": "Service Account Authentication.", + "type": "object", + "properties": { + "auth_type": { + "title": "Auth Type", + "default": "Service", + "const": "Service", + "enum": ["Service"], + "type": "string" + }, + "service_account": { + "title": "Service Account Information.", + "description": "Enter your Google Cloud service account key in JSON format", + "airbyte_secret": true, + "type": "string" + } + }, + "required": ["service_account"] + } + ] }, "bucket": { "title": "Bucket", @@ -451,6 +508,50 @@ "type": "string" } }, - "required": ["streams", "service_account", "bucket"] + "required": ["streams", "credentials", "bucket"] + }, + "advanced_auth": { + "auth_flow_type": "oauth2.0", + "predicate_key": ["credentials", "auth_type"], + "predicate_value": "Client", + "oauth_config_specification": { + "complete_oauth_output_specification": { + "type": "object", + "properties": { + "access_token": { + "type": "string", + "path_in_connector_config": ["credentials", "access_token"] + }, + "refresh_token": { + "type": "string", + "path_in_connector_config": ["credentials", "refresh_token"] + } + } + }, + "complete_oauth_server_input_specification": { + "type": "object", + "properties": { + "client_id": { + "type": "string" + }, + "client_secret": { + "type": "string" + } + } + }, + "complete_oauth_server_output_specification": { + "type": "object", + "properties": { + "client_id": { + "type": "string", + "path_in_connector_config": ["credentials", "client_id"] + }, + "client_secret": { + "type": "string", + "path_in_connector_config": ["credentials", "client_secret"] + } + } + } + } } } diff --git a/airbyte-integrations/connectors/source-gcs/metadata.yaml b/airbyte-integrations/connectors/source-gcs/metadata.yaml index 3e6ee21edbca..867f7b64cadb 100644 --- a/airbyte-integrations/connectors/source-gcs/metadata.yaml +++ b/airbyte-integrations/connectors/source-gcs/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: file connectorType: source definitionId: 2a8c41ae-8c23-4be0-a73f-2ab10ca1a820 - dockerImageTag: 0.7.4 + dockerImageTag: 0.8.0 dockerRepository: airbyte/source-gcs documentationUrl: https://docs.airbyte.com/integrations/sources/gcs githubIssueLabel: source-gcs diff --git a/airbyte-integrations/connectors/source-gcs/pyproject.toml b/airbyte-integrations/connectors/source-gcs/pyproject.toml index 6ad26a04ee59..200b63178f1c 100644 --- a/airbyte-integrations/connectors/source-gcs/pyproject.toml +++ b/airbyte-integrations/connectors/source-gcs/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.7.4" +version = "0.8.0" name = "source-gcs" description = "Source implementation for Gcs." authors = [ "Airbyte ",] diff --git a/airbyte-integrations/connectors/source-gcs/source_gcs/config.py b/airbyte-integrations/connectors/source-gcs/source_gcs/config.py index 906e952973cc..40c5ec5a5cf8 100644 --- a/airbyte-integrations/connectors/source-gcs/source_gcs/config.py +++ b/airbyte-integrations/connectors/source-gcs/source_gcs/config.py @@ -3,25 +3,68 @@ # +from typing import Literal, Union + from airbyte_cdk.sources.file_based.config.abstract_file_based_spec import AbstractFileBasedSpec -from pydantic.v1 import AnyUrl, Field +from airbyte_cdk.utils.oneof_option_config import OneOfOptionConfig +from pydantic.v1 import AnyUrl, BaseModel, Field -class Config(AbstractFileBasedSpec): - """ - NOTE: When this Spec is changed, legacy_config_transformer.py must also be - modified to uptake the changes because it is responsible for converting - legacy GCS configs into file based configs using the File-Based CDK. - """ +class OAuthCredentials(BaseModel): + class Config(OneOfOptionConfig): + title = "Authenticate via Google (OAuth)" + auth_type: Literal["Client"] = Field("Client", const=True) + client_id: str = Field( + title="Client ID", + description="Client ID", + airbyte_secret=True, + ) + client_secret: str = Field( + title="Client Secret", + description="Client Secret", + airbyte_secret=True, + ) + access_token: str = Field( + title="Access Token", + description="Access Token", + airbyte_secret=True, + ) + refresh_token: str = Field( + title="Access Token", + description="Access Token", + airbyte_secret=True, + ) + + +class ServiceAccountCredentials(BaseModel): + class Config(OneOfOptionConfig): + title = "Service Account Authentication." + + auth_type: Literal["Service"] = Field("Service", const=True) service_account: str = Field( - title="Service Account Information", + title="Service Account Information.", airbyte_secret=True, description=( - "Enter your Google Cloud " - '' + 'Enter your Google Cloud ' "service account key in JSON format" ), + ) + + +class Config(AbstractFileBasedSpec, BaseModel): + """ + NOTE: When this Spec is changed, legacy_config_transformer.py must also be + modified to uptake the changes because it is responsible for converting + legacy GCS configs into file based configs using the File-Based CDK. + """ + + credentials: Union[OAuthCredentials, ServiceAccountCredentials] = Field( + title="Authentication", + description="Credentials for connecting to the Google Cloud Storage API", + type="object", + discriminator="auth_type", order=0, ) @@ -33,7 +76,3 @@ def documentation_url(cls) -> AnyUrl: Returns the documentation URL. """ return AnyUrl("https://docs.airbyte.com/integrations/sources/gcs", scheme="https") - - @staticmethod - def remove_discriminator(schema) -> None: - pass diff --git a/airbyte-integrations/connectors/source-gcs/source_gcs/config_migrations.py b/airbyte-integrations/connectors/source-gcs/source_gcs/config_migrations.py new file mode 100644 index 000000000000..c8adb929a7d0 --- /dev/null +++ b/airbyte-integrations/connectors/source-gcs/source_gcs/config_migrations.py @@ -0,0 +1,57 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. + +from typing import Any, List, Mapping + +from airbyte_cdk.config_observation import create_connector_config_control_message +from airbyte_cdk.entrypoint import AirbyteEntrypoint +from airbyte_cdk.sources import Source +from airbyte_cdk.sources.message import InMemoryMessageRepository, MessageRepository + + +class MigrateServiceAccount: + message_repository: MessageRepository = InMemoryMessageRepository() + migrate_from_path = "service_account" + migrate_to_path = "credentials" + + @classmethod + def should_migrate(cls, config: Mapping[str, Any]) -> bool: + return config.get(cls.migrate_from_path) and not config.get(cls.migrate_to_path) + + @classmethod + def transform(cls, config: Mapping[str, Any]) -> Mapping[str, Any]: + config[cls.migrate_to_path] = {"service_account": config[cls.migrate_from_path], "auth_type": "Service"} + return config + + @classmethod + def modify_and_save(cls, config_path: str, source: Source, config: Mapping[str, Any]) -> Mapping[str, Any]: + migrated_config = cls.transform(config) + + source.write_config(migrated_config, config_path) + + return migrated_config + + @classmethod + def emit_control_message(cls, migrated_config: Mapping[str, Any]) -> None: + # add the Airbyte Control Message to message repo + cls.message_repository.emit_message(create_connector_config_control_message(migrated_config)) + # emit the Airbyte Control Message from message queue to stdout + for message in cls.message_repository._message_queue: + print(message) + + @classmethod + def migrate(cls, args: List[str], source: Source) -> None: + """ + This method checks the input args, should the config be migrated, + transform if necessary and emit the CONTROL message. + """ + # get config path + config_path = AirbyteEntrypoint(source).extract_config(args) + # proceed only if `--config` arg is provided + if config_path: + # read the existing config + config = source.read_config(config_path) + # migration check + if cls.should_migrate(config): + cls.emit_control_message( + cls.modify_and_save(config_path, source, config), + ) diff --git a/airbyte-integrations/connectors/source-gcs/source_gcs/helpers.py b/airbyte-integrations/connectors/source-gcs/source_gcs/helpers.py index 130875cf67ea..7b497a6a9f35 100644 --- a/airbyte-integrations/connectors/source-gcs/source_gcs/helpers.py +++ b/airbyte-integrations/connectors/source-gcs/source_gcs/helpers.py @@ -7,12 +7,21 @@ from airbyte_cdk.sources.file_based.remote_file import RemoteFile from google.cloud import storage -from google.oauth2 import service_account +from google.oauth2 import credentials, service_account def get_gcs_client(config): - credentials = service_account.Credentials.from_service_account_info(json.loads(config.service_account)) - client = storage.Client(credentials=credentials) + if config.credentials.auth_type == "Service": + creds = service_account.Credentials.from_service_account_info(json.loads(config.credentials.service_account)) + else: + creds = credentials.Credentials( + config.credentials.access_token, + refresh_token=config.credentials.refresh_token, + token_uri="https://oauth2.googleapis.com/token", + client_id=config.credentials.client_id, + client_secret=config.credentials.client_secret, + ) + client = storage.Client(credentials=creds) return client diff --git a/airbyte-integrations/connectors/source-gcs/source_gcs/run.py b/airbyte-integrations/connectors/source-gcs/source_gcs/run.py index ab717236e923..65038c7fa7ef 100644 --- a/airbyte-integrations/connectors/source-gcs/source_gcs/run.py +++ b/airbyte-integrations/connectors/source-gcs/source_gcs/run.py @@ -11,6 +11,7 @@ from airbyte_cdk.models import AirbyteErrorTraceMessage, AirbyteMessage, AirbyteMessageSerializer, AirbyteTraceMessage, TraceType, Type from orjson import orjson from source_gcs import Config, Cursor, SourceGCS, SourceGCSStreamReader +from source_gcs.config_migrations import MigrateServiceAccount def run(): @@ -27,6 +28,7 @@ def run(): SourceGCS.read_state(state_path) if state_path else None, cursor_cls=Cursor, ) + MigrateServiceAccount.migrate(_args, source) except Exception: print( orjson.dumps( diff --git a/airbyte-integrations/connectors/source-gcs/source_gcs/source.py b/airbyte-integrations/connectors/source-gcs/source_gcs/source.py index b4fe6f6b92f0..f32151c44343 100644 --- a/airbyte-integrations/connectors/source-gcs/source_gcs/source.py +++ b/airbyte-integrations/connectors/source-gcs/source_gcs/source.py @@ -6,6 +6,7 @@ from typing import Any, Mapping, Optional from airbyte_cdk import emit_configuration_as_airbyte_control_message +from airbyte_cdk.models import AdvancedAuth, AuthFlowType, ConnectorSpecification, OAuthConfigSpecification from airbyte_cdk.sources.file_based.config.file_based_stream_config import FileBasedStreamConfig from airbyte_cdk.sources.file_based.file_based_source import FileBasedSource from airbyte_cdk.sources.file_based.stream import AbstractFileBasedStream @@ -34,6 +35,37 @@ def read_config(cls, config_path: str) -> Mapping[str, Any]: def _is_file_based_config(config: Mapping[str, Any]) -> bool: return "streams" in config + def spec(self, *args: Any, **kwargs: Any) -> ConnectorSpecification: + return ConnectorSpecification( + documentationUrl=self.spec_class.documentation_url(), + connectionSpecification=self.spec_class.schema(), + advanced_auth=AdvancedAuth( + auth_flow_type=AuthFlowType.oauth2_0, + predicate_key=["credentials", "auth_type"], + predicate_value="Client", + oauth_config_specification=OAuthConfigSpecification( + complete_oauth_output_specification={ + "type": "object", + "properties": { + "access_token": {"type": "string", "path_in_connector_config": ["credentials", "access_token"]}, + "refresh_token": {"type": "string", "path_in_connector_config": ["credentials", "refresh_token"]}, + }, + }, + complete_oauth_server_input_specification={ + "type": "object", + "properties": {"client_id": {"type": "string"}, "client_secret": {"type": "string"}}, + }, + complete_oauth_server_output_specification={ + "type": "object", + "properties": { + "client_id": {"type": "string", "path_in_connector_config": ["credentials", "client_id"]}, + "client_secret": {"type": "string", "path_in_connector_config": ["credentials", "client_secret"]}, + }, + }, + ), + ), + ) + def _make_default_stream( self, stream_config: FileBasedStreamConfig, cursor: Optional[AbstractFileBasedCursor] ) -> AbstractFileBasedStream: diff --git a/airbyte-integrations/connectors/source-gcs/source_gcs/spec.py b/airbyte-integrations/connectors/source-gcs/source_gcs/spec.py index 9e684a589e3a..0d4cbb070018 100644 --- a/airbyte-integrations/connectors/source-gcs/source_gcs/spec.py +++ b/airbyte-integrations/connectors/source-gcs/source_gcs/spec.py @@ -1,11 +1,55 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +from typing import Literal, Union - +from airbyte_cdk.utils.oneof_option_config import OneOfOptionConfig from pydantic import BaseModel, Field +class OAuthCredentials(BaseModel): + class Config(OneOfOptionConfig): + title = "Authenticate via Google (OAuth)" + + auth_type: Literal["Client"] + client_id: str = Field( + title="Client ID", + description="Client ID", + airbyte_secret=True, + ) + client_secret: str = Field( + title="Client Secret", + description="Client Secret", + airbyte_secret=True, + ) + access_token: str = Field( + title="Access Token", + description="Access Token", + airbyte_secret=True, + ) + refresh_token: str = Field( + title="Access Token", + description="Access Token", + airbyte_secret=True, + ) + + +class ServiceAccountCredentials(BaseModel): + class Config(OneOfOptionConfig): + title = "Service Account Authentication." + + auth_type: Literal["Service"] + service_account: str = Field( + title="Service Account Information.", + airbyte_secret=True, + description=( + 'Enter your Google Cloud ' + "service account key in JSON format" + ), + ) + + class SourceGCSSpec(BaseModel): """ The SourceGCSSpec class defines the expected input configuration @@ -29,12 +73,10 @@ class SourceGCSSpec(BaseModel): order=1, ) - service_account: str = Field( - title="Service Account Information.", - airbyte_secret=True, - description=( - 'Enter your Google Cloud ' - "service account key in JSON format" - ), + credentials: Union[OAuthCredentials, ServiceAccountCredentials] = Field( + title="Authentication", + description="Credentials for connecting to the Google Cloud Storage API", + type="object", + order=2, + discriminator="auth_type", ) diff --git a/airbyte-integrations/connectors/source-gcs/source_gcs/stream_reader.py b/airbyte-integrations/connectors/source-gcs/source_gcs/stream_reader.py index f0cc661bd557..9bb732061f34 100644 --- a/airbyte-integrations/connectors/source-gcs/source_gcs/stream_reader.py +++ b/airbyte-integrations/connectors/source-gcs/source_gcs/stream_reader.py @@ -14,7 +14,7 @@ from airbyte_cdk.sources.file_based.exceptions import ErrorListingFiles, FileBasedSourceError from airbyte_cdk.sources.file_based.file_based_stream_reader import AbstractFileBasedStreamReader, FileReadMode from google.cloud import storage -from google.oauth2 import service_account +from google.oauth2 import credentials, service_account from source_gcs.config import Config from source_gcs.helpers import GCSRemoteFile from source_gcs.zip_helper import ZipHelper @@ -54,7 +54,17 @@ def _initialize_gcs_client(self): return self._gcs_client def _get_credentials(self): - return service_account.Credentials.from_service_account_info(json.loads(self.config.service_account)) + if self.config.credentials.auth_type == "Service": + # Service Account authorization + return service_account.Credentials.from_service_account_info(json.loads(self.config.credentials.service_account)) + # Google OAuth + return credentials.Credentials( + self.config.credentials.access_token, + refresh_token=self.config.credentials.refresh_token, + token_uri="https://oauth2.googleapis.com/token", + client_id=self.config.credentials.client_id, + client_secret=self.config.credentials.client_secret, + ) @property def gcs_client(self) -> storage.Client: @@ -81,7 +91,11 @@ def get_matching_files(self, globs: List[str], prefix: Optional[str], logger: lo last_modified = blob.updated.astimezone(pytz.utc).replace(tzinfo=None) if not start_date or last_modified >= start_date: - uri = blob.generate_signed_url(expiration=timedelta(days=7), version="v4") + + if self.config.credentials.auth_type == "Client": + uri = f"gs://{blob.bucket.name}/{blob.name}" + else: + uri = blob.generate_signed_url(expiration=timedelta(days=7), version="v4") file_extension = ".".join(blob.name.split(".")[1:]) remote_file = GCSRemoteFile(uri=uri, last_modified=last_modified, mime_type=file_extension) @@ -116,7 +130,9 @@ def open_file(self, file: GCSRemoteFile, mode: FileReadMode, encoding: Optional[ compression = "disable" try: - result = smart_open.open(file.uri, mode=mode.value, compression=compression, encoding=encoding) + result = smart_open.open( + file.uri, mode=mode.value, compression=compression, encoding=encoding, transport_params={"client": self.gcs_client} + ) except OSError as oe: logger.warning(ERROR_MESSAGE_ACCESS.format(uri=file.uri, bucket=self.config.bucket)) logger.exception(oe) diff --git a/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_bad_encoding.json b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_bad_encoding.json index 468114d62599..8e76fc4d8fce 100644 --- a/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_bad_encoding.json +++ b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_bad_encoding.json @@ -18,5 +18,9 @@ "encoding": "utf16" } } - ] + ], + "credentials": { + "service_account": "{\"type\": \"service_account\"}", + "auth_type": "Service" + } } diff --git a/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_bad_encoding_single_stream.json b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_bad_encoding_single_stream.json index ca156500867d..d6575cd1cd96 100644 --- a/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_bad_encoding_single_stream.json +++ b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_bad_encoding_single_stream.json @@ -10,5 +10,9 @@ "encoding": "utf16" } } - ] + ], + "credentials": { + "service_account": "{\"type\": \"service_account\"}", + "auth_type": "Service" + } } diff --git a/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_legacy.json b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_legacy.json index 461f80dc9332..dbccbf7a4ec6 100644 --- a/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_legacy.json +++ b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config/config_legacy.json @@ -1,5 +1,8 @@ { "gcs_bucket": "airbyte-integration-test-source-gcs", "gcs_path": "some/path", - "service_account": "{\"type\": \"service_account\",\"project_id\": \"some-id\",\"private_key_id\": \"1234512345aoeu\",\"private_key\": \"-----BEGIN PRIVATE KEY-----\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaa==\\n-----END PRIVATE KEY-----\\n\",\"client_email\": \"gcs@gserviceaccount.com\",\"client_id\": \"12341241234\",\"auth_uri\": \"https://accounts.google.com/o/oauth2/auth\",\"token_uri\": \"https://oauth2.googleapis.com/token\",\"auth_provider_x509_cert_url\": \"https://www.googleapis.com/oauth2/v1/certs\",\"client_x509_cert_url\": \"https://www.googleapis.com/robot/v1/metadata/x509/gcs%40gserviceaccount.com\"}" + "credentials": { + "service_account": "{\"type\": \"service_account\",\"project_id\": \"some-id\",\"private_key_id\": \"1234512345aoeu\",\"private_key\": \"-----BEGIN PRIVATE KEY-----\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\\naaaaaaaaaaaaaaaaaaaaaa==\\n-----END PRIVATE KEY-----\\n\",\"client_email\": \"gcs@gserviceaccount.com\",\"client_id\": \"12341241234\",\"auth_uri\": \"https://accounts.google.com/o/oauth2/auth\",\"token_uri\": \"https://oauth2.googleapis.com/token\",\"auth_provider_x509_cert_url\": \"https://www.googleapis.com/oauth2/v1/certs\",\"client_x509_cert_url\": \"https://www.googleapis.com/robot/v1/metadata/x509/gcs%40gserviceaccount.com\"}", + "auth_type": "Service" + } } diff --git a/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config_migrations/service_account_config.json b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config_migrations/service_account_config.json new file mode 100644 index 000000000000..b5859a868d7e --- /dev/null +++ b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config_migrations/service_account_config.json @@ -0,0 +1,12 @@ +{ + "bucket": "airbyte-integration-test-source-gcs", + "service_account": "service account key", + "streams": [ + { + "name": "test", + "legacy_prefix": "test_folder/test.csv", + "validation_policy": "Emit Record", + "format": { "filetype": "csv" } + } + ] +} diff --git a/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config_migrations/service_account_with_credentials_config.json b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config_migrations/service_account_with_credentials_config.json new file mode 100644 index 000000000000..9435003f4bf1 --- /dev/null +++ b/airbyte-integrations/connectors/source-gcs/unit_tests/resource/config_migrations/service_account_with_credentials_config.json @@ -0,0 +1,17 @@ +{ + "bucket": "airbyte-integration-test-source-gcs", + "streams": [ + { + "name": "test", + "legacy_prefix": "test_folder/test.csv", + "validation_policy": "Emit Record", + "format": { + "filetype": "csv" + } + } + ], + "credentials": { + "auth_type": "Service", + "service_account": "service account key" + } +} diff --git a/airbyte-integrations/connectors/source-gcs/unit_tests/test_config.py b/airbyte-integrations/connectors/source-gcs/unit_tests/test_config.py index 6b91419574a7..ea301e8d9e12 100644 --- a/airbyte-integrations/connectors/source-gcs/unit_tests/test_config.py +++ b/airbyte-integrations/connectors/source-gcs/unit_tests/test_config.py @@ -8,6 +8,3 @@ def test_documentation_url(): assert "https" in Config.documentation_url() - -def test_remove_discriminator(): - assert Config.remove_discriminator({}) is None diff --git a/airbyte-integrations/connectors/source-gcs/unit_tests/test_config_migrations.py b/airbyte-integrations/connectors/source-gcs/unit_tests/test_config_migrations.py new file mode 100644 index 000000000000..142a7f8939c8 --- /dev/null +++ b/airbyte-integrations/connectors/source-gcs/unit_tests/test_config_migrations.py @@ -0,0 +1,46 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. + +import json +import pathlib +from typing import Any, Mapping +from unittest.mock import MagicMock + +import pytest +from airbyte_cdk import AirbyteEntrypoint +from source_gcs import SourceGCS +from source_gcs.config_migrations import MigrateServiceAccount + + +def load_config(path: str) -> Mapping[str, Any]: + with open(path, "r") as f: + return json.load(f) + +def revert_config(path: str) -> None: + migrated_config = load_config(path) + del migrated_config["credentials"] + with open(path, "w") as f: + f.write(json.dumps(migrated_config)) + +@pytest.mark.parametrize( + "config_file_path, run_revert", + [ + # Migration is required + (str(pathlib.Path(__file__).parent / "resource/config_migrations/service_account_config.json"), True), + # New config format + (str(pathlib.Path(__file__).parent / "resource/config_migrations/service_account_with_credentials_config.json"), False) + ] +) +def test_migrate_config(config_file_path, run_revert): + args = ["check", "--config", config_file_path] + source = SourceGCS(MagicMock(), MagicMock, None, AirbyteEntrypoint.extract_config(args), None,) + + MigrateServiceAccount().migrate(args, source) + migrated_config = load_config(config_file_path) + + assert "credentials" in migrated_config + assert "service_account" in migrated_config["credentials"] + assert migrated_config["credentials"]["auth_type"] == "Service" + + if run_revert: + revert_config(config_file_path) + diff --git a/airbyte-integrations/connectors/source-gcs/unit_tests/test_stream_reader.py b/airbyte-integrations/connectors/source-gcs/unit_tests/test_stream_reader.py index 34964801ab65..b5d5b501872e 100644 --- a/airbyte-integrations/connectors/source-gcs/unit_tests/test_stream_reader.py +++ b/airbyte-integrations/connectors/source-gcs/unit_tests/test_stream_reader.py @@ -1,17 +1,22 @@ # Copyright (c) 2024 Airbyte, Inc., all rights reserved. import datetime +from unittest.mock import Mock import pytest from airbyte_cdk.sources.file_based.exceptions import ErrorListingFiles from airbyte_cdk.sources.file_based.file_based_stream_reader import FileReadMode from airbyte_cdk.sources.file_based.remote_file import RemoteFile from source_gcs import Config, SourceGCSStreamReader +from source_gcs.config import ServiceAccountCredentials def test_get_matching_files_with_no_prefix(logger, mocked_reader): mocked_reader._config = Config( - service_account='{"type": "service_account"}', + credentials=ServiceAccountCredentials( + service_account='{"type": "service_account"}', + auth_type="Service" + ), bucket="test_bucket", streams=[], ) @@ -26,11 +31,9 @@ def test_get_matching_files_with_no_prefix(logger, mocked_reader): def test_open_file_with_compression(logger): reader = SourceGCSStreamReader() - reader._config = Config( - service_account='{"type": "service_account"}', - bucket="test_bucket", - streams=[], - ) + reader._gcs_client = Mock() + reader._config = Mock() + file = RemoteFile(uri="http://some.uri/file.gz?query=param", last_modified=datetime.datetime.now()) file.mime_type = "file.gz" @@ -40,11 +43,8 @@ def test_open_file_with_compression(logger): def test_open_file_without_compression(remote_file, logger): reader = SourceGCSStreamReader() - reader._config = Config( - service_account='{"type": "service_account"}', - bucket="test_bucket", - streams=[], - ) + reader._gcs_client = Mock() + reader._config = Mock() with pytest.raises(OSError): reader.open_file(remote_file, FileReadMode.READ, None, logger) diff --git a/docs/integrations/sources/gcs.md b/docs/integrations/sources/gcs.md index cb4fb993f053..9fff0d37eadb 100644 --- a/docs/integrations/sources/gcs.md +++ b/docs/integrations/sources/gcs.md @@ -12,7 +12,7 @@ Cloud storage may incur egress costs. Egress refers to data that is transferred ## Prerequisites -- JSON credentials for the service account that has access to GCS. For more details check [instructions](https://cloud.google.com/iam/docs/creating-managing-service-accounts) +- Google account or JSON credentials for the service account that have access to GCS. For more details check [instructions](https://cloud.google.com/iam/docs/creating-managing-service-accounts) - GCS bucket - The list of streams to sync @@ -41,15 +41,18 @@ Use the service account ID from above, grant read access to your target bucket. 2. Click Sources and then click + New source. 3. On the Set up the source page, select Google Cloud Storage (GCS) from the Source type dropdown. 4. Enter a name for the Google Cloud Storage (GCS) connector. -5. Paste the service account JSON key to the `Service Account Information` field . -6. Enter your GCS bucket name to the `Bucket` field. -7. Add a stream: +5. Select authorization type: + 1. **Authenticate via Google (OAuth)** from the Authentication dropdown, click **Sign in with Google** and complete the authentication workflow. + 2. **Service Account Information** and paste the service account JSON key to the `Service Account Information` field . +6. Paste the service account JSON key to the `Service Account Information` field . +7. Enter your GCS bucket name to the `Bucket` field. +8. Add a stream: 1. Give a **Name** to the stream 2. In the **Format** box, use the dropdown menu to select the format of the files you'd like to replicate. Toggling the **Optional fields** button within the **Format** box will allow you to enter additional configurations based on the selected format. For a detailed breakdown of these settings, refer to the [File Format section](#file-format-settings) below. 3. Optionally, enter the **Globs** which dictates which files to be synced. This is a regular expression that allows Airbyte to pattern match the specific files to replicate. If you are replicating all the files within your bucket, use `**` as the pattern. For more precise pattern matching options, refer to the [Path Patterns section](#path-patterns) below. 4. (Optional) - If you want to enforce a specific schema, you can enter a **Input schema**. By default, this value is set to `{}` and will automatically infer the schema from the file\(s\) you are replicating. For details on providing a custom schema, refer to the [User Schema section](#user-schema). -8. Configure the optional **Start Date** parameter that marks a starting date and time in UTC for data replication. Any files that have _not_ been modified since this specified date/time will _not_ be replicated. Use the provided datepicker (recommended) or enter the desired date programmatically in the format `YYYY-MM-DDTHH:mm:ssZ`. Leaving this field blank will replicate data from all files that have not been excluded by the **Path Pattern** and **Path Prefix**. -9. Click **Set up source** and wait for the tests to complete. +9. Configure the optional **Start Date** parameter that marks a starting date and time in UTC for data replication. Any files that have _not_ been modified since this specified date/time will _not_ be replicated. Use the provided datepicker (recommended) or enter the desired date programmatically in the format `YYYY-MM-DDTHH:mm:ssZ`. Leaving this field blank will replicate data from all files that have not been excluded by the **Path Pattern** and **Path Prefix**. +10. Click **Set up source** and wait for the tests to complete. #### For Airbyte Open Source: @@ -57,15 +60,24 @@ Use the service account ID from above, grant read access to your target bucket. 2. Click Sources and then click + New source. 3. On the Set up the source page, select Google Cloud Storage (GCS) from the Source type dropdown. 4. Enter a name for the Google Cloud Storage (GCS) connector. -5. Paste the service account JSON key to the `Service Account Information` field . -6. Enter your GCS bucket name to the `Bucket` field. -7. Add a stream: +5. Select authorization type: + 1. **Authenticate via Google (OAuth)** from the Authentication dropdown, click **Sign in with Google** and complete the authentication workflow. + 2. **Service Account Information** and paste the service account JSON key to the `Service Account Information` field . +6. Paste the service account JSON key to the `Service Account Information` field . +7. Enter your GCS bucket name to the `Bucket` field. +8. Add a stream: 1. Give a **Name** to the stream 2. In the **Format** box, use the dropdown menu to select the format of the files you'd like to replicate. Toggling the **Optional fields** button within the **Format** box will allow you to enter additional configurations based on the selected format. For a detailed breakdown of these settings, refer to the [File Format section](#file-format-settings) below. 3. Optionally, enter the **Globs** which dictates which files to be synced. This is a regular expression that allows Airbyte to pattern match the specific files to replicate. If you are replicating all the files within your bucket, use `**` as the pattern. For more precise pattern matching options, refer to the [Path Patterns section](#path-patterns) below. 4. (Optional) - If you want to enforce a specific schema, you can enter a **Input schema**. By default, this value is set to `{}` and will automatically infer the schema from the file\(s\) you are replicating. For details on providing a custom schema, refer to the [User Schema section](#user-schema). -8. Configure the optional **Start Date** parameter that marks a starting date and time in UTC for data replication. Any files that have _not_ been modified since this specified date/time will _not_ be replicated. Use the provided datepicker (recommended) or enter the desired date programmatically in the format `YYYY-MM-DDTHH:mm:ssZ`. Leaving this field blank will replicate data from all files that have not been excluded by the **Path Pattern** and **Path Prefix**. -9. Click **Set up source** and wait for the tests to complete. +9. Configure the optional **Start Date** parameter that marks a starting date and time in UTC for data replication. Any files that have _not_ been modified since this specified date/time will _not_ be replicated. Use the provided datepicker (recommended) or enter the desired date programmatically in the format `YYYY-MM-DDTHH:mm:ssZ`. Leaving this field blank will replicate data from all files that have not been excluded by the **Path Pattern** and **Path Prefix**. +10. Click **Set up source** and wait for the tests to complete. + +#### File urls + +The Google Cloud Storage (GCS) source connector uses `signed url` to work with files when source authenticated with `Service Account Information` and `gs://{blob.bucket.name}/{blob.name}` when source authenticated via Google (OAuth). +This is important to know that File urls are used in the connection state. +So if you change authorization type, and you use Incremental sync the next sync will not use old state and reread provided files in Full Refresh mode(like initial sync), next syncs will be Incremental as expected. ## Path Patterns @@ -224,48 +236,49 @@ Google Cloud Storage (GCS) supports following file formats: | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------| -| 0.7.4 | 2024-10-12 | [46858](https://github.com/airbytehq/airbyte/pull/46858) | Update dependencies | -| 0.7.3 | 2024-10-05 | [46458](https://github.com/airbytehq/airbyte/pull/46458) | Update dependencies | -| 0.7.2 | 2024-09-28 | [46178](https://github.com/airbytehq/airbyte/pull/46178) | Update dependencies | -| 0.7.1 | 2024-09-24 | [45850](https://github.com/airbytehq/airbyte/pull/45850) | Add integration tests | -| 0.7.0 | 2024-09-24 | [45671](https://github.com/airbytehq/airbyte/pull/45671) | Add .zip files support | -| 0.6.9 | 2024-09-21 | [45798](https://github.com/airbytehq/airbyte/pull/45798) | Update dependencies | -| 0.6.8 | 2024-09-19 | [45092](https://github.com/airbytehq/airbyte/pull/45092) | Update CDK v5; Fix OSError not raised in stream_reader.open_file | -| 0.6.7 | 2024-09-14 | [45492](https://github.com/airbytehq/airbyte/pull/45492) | Update dependencies | -| 0.6.6 | 2024-09-07 | [45232](https://github.com/airbytehq/airbyte/pull/45232) | Update dependencies | -| 0.6.5 | 2024-08-31 | [45010](https://github.com/airbytehq/airbyte/pull/45010) | Update dependencies | -| 0.6.4 | 2024-08-27 | [44796](https://github.com/airbytehq/airbyte/pull/44796) | Fix empty list of globs when prefix empty | -| 0.6.3 | 2024-08-26 | [44781](https://github.com/airbytehq/airbyte/pull/44781) | Set file signature URL expiration limit default to max | -| 0.6.2 | 2024-08-24 | [44733](https://github.com/airbytehq/airbyte/pull/44733) | Update dependencies | -| 0.6.1 | 2024-08-17 | [44285](https://github.com/airbytehq/airbyte/pull/44285) | Update dependencies | -| 0.6.0 | 2024-08-15 | [44015](https://github.com/airbytehq/airbyte/pull/44015) | Add support for all FileBasedSpec file types | -| 0.5.0 | 2024-08-14 | [44070](https://github.com/airbytehq/airbyte/pull/44070) | Update CDK v4 and Python 3.10 dependencies | -| 0.4.15 | 2024-08-12 | [43733](https://github.com/airbytehq/airbyte/pull/43733) | Update dependencies | -| 0.4.14 | 2024-08-10 | [43512](https://github.com/airbytehq/airbyte/pull/43512) | Update dependencies | -| 0.4.13 | 2024-08-03 | [43236](https://github.com/airbytehq/airbyte/pull/43236) | Update dependencies | -| 0.4.12 | 2024-07-27 | [42693](https://github.com/airbytehq/airbyte/pull/42693) | Update dependencies | -| 0.4.11 | 2024-07-20 | [42312](https://github.com/airbytehq/airbyte/pull/42312) | Update dependencies | -| 0.4.10 | 2024-07-13 | [41865](https://github.com/airbytehq/airbyte/pull/41865) | Update dependencies | -| 0.4.9 | 2024-07-10 | [41430](https://github.com/airbytehq/airbyte/pull/41430) | Update dependencies | -| 0.4.8 | 2024-07-09 | [41148](https://github.com/airbytehq/airbyte/pull/41148) | Update dependencies | -| 0.4.7 | 2024-07-06 | [41015](https://github.com/airbytehq/airbyte/pull/41015) | Update dependencies | -| 0.4.6 | 2024-06-26 | [40540](https://github.com/airbytehq/airbyte/pull/40540) | Update dependencies | -| 0.4.5 | 2024-06-25 | [40391](https://github.com/airbytehq/airbyte/pull/40391) | Update dependencies | -| 0.4.4 | 2024-06-24 | [40234](https://github.com/airbytehq/airbyte/pull/40234) | Update dependencies | -| 0.4.3 | 2024-06-22 | [40089](https://github.com/airbytehq/airbyte/pull/40089) | Update dependencies | -| 0.4.2 | 2024-06-06 | [39255](https://github.com/airbytehq/airbyte/pull/39255) | [autopull] Upgrade base image to v1.2.2 | -| 0.4.1 | 2024-05-29 | [38696](https://github.com/airbytehq/airbyte/pull/38696) | Avoid error on empty stream when running discover | -| 0.4.0 | 2024-03-21 | [36373](https://github.com/airbytehq/airbyte/pull/36373) | Add Gzip and Bzip compression support. Manage dependencies with Poetry. | -| 0.3.7 | 2024-02-06 | [34936](https://github.com/airbytehq/airbyte/pull/34936) | Bump CDK version to avoid missing SyncMode errors | -| 0.3.6 | 2024-01-30 | [34681](https://github.com/airbytehq/airbyte/pull/34681) | Unpin CDK version to make compatible with the Concurrent CDK | -| 0.3.5 | 2024-01-30 | [34661](https://github.com/airbytehq/airbyte/pull/34661) | Pin CDK version until upgrade for compatibility with the Concurrent CDK | -| 0.3.4 | 2024-01-11 | [34158](https://github.com/airbytehq/airbyte/pull/34158) | Fix issue in stream reader for document file type parser | -| 0.3.3 | 2023-12-06 | [33187](https://github.com/airbytehq/airbyte/pull/33187) | Bump CDK version to hide source-defined primary key | -| 0.3.2 | 2023-11-16 | [32608](https://github.com/airbytehq/airbyte/pull/32608) | Improve document file type parser | -| 0.3.1 | 2023-11-13 | [32357](https://github.com/airbytehq/airbyte/pull/32357) | Improve spec schema | -| 0.3.0 | 2023-10-11 | [31212](https://github.com/airbytehq/airbyte/pull/31212) | Migrated to file based CDK | -| 0.2.0 | 2023-06-26 | [27725](https://github.com/airbytehq/airbyte/pull/27725) | License Update: Elv2 | -| 0.1.0 | 2023-02-16 | [23186](https://github.com/airbytehq/airbyte/pull/23186) | New Source: GCS | +| 0.8.0 | 2024-10-28 | [45414](https://github.com/airbytehq/airbyte/pull/45414) | Add support for OAuth authentication | +| 0.7.4 | 2024-10-12 | [46858](https://github.com/airbytehq/airbyte/pull/46858) | Update dependencies | +| 0.7.3 | 2024-10-05 | [46458](https://github.com/airbytehq/airbyte/pull/46458) | Update dependencies | +| 0.7.2 | 2024-09-28 | [46178](https://github.com/airbytehq/airbyte/pull/46178) | Update dependencies | +| 0.7.1 | 2024-09-24 | [45850](https://github.com/airbytehq/airbyte/pull/45850) | Add integration tests | +| 0.7.0 | 2024-09-24 | [45671](https://github.com/airbytehq/airbyte/pull/45671) | Add .zip files support | +| 0.6.9 | 2024-09-21 | [45798](https://github.com/airbytehq/airbyte/pull/45798) | Update dependencies | +| 0.6.8 | 2024-09-19 | [45092](https://github.com/airbytehq/airbyte/pull/45092) | Update CDK v5; Fix OSError not raised in stream_reader.open_file | +| 0.6.7 | 2024-09-14 | [45492](https://github.com/airbytehq/airbyte/pull/45492) | Update dependencies | +| 0.6.6 | 2024-09-07 | [45232](https://github.com/airbytehq/airbyte/pull/45232) | Update dependencies | +| 0.6.5 | 2024-08-31 | [45010](https://github.com/airbytehq/airbyte/pull/45010) | Update dependencies | +| 0.6.4 | 2024-08-27 | [44796](https://github.com/airbytehq/airbyte/pull/44796) | Fix empty list of globs when prefix empty | +| 0.6.3 | 2024-08-26 | [44781](https://github.com/airbytehq/airbyte/pull/44781) | Set file signature URL expiration limit default to max | +| 0.6.2 | 2024-08-24 | [44733](https://github.com/airbytehq/airbyte/pull/44733) | Update dependencies | +| 0.6.1 | 2024-08-17 | [44285](https://github.com/airbytehq/airbyte/pull/44285) | Update dependencies | +| 0.6.0 | 2024-08-15 | [44015](https://github.com/airbytehq/airbyte/pull/44015) | Add support for all FileBasedSpec file types | +| 0.5.0 | 2024-08-14 | [44070](https://github.com/airbytehq/airbyte/pull/44070) | Update CDK v4 and Python 3.10 dependencies | +| 0.4.15 | 2024-08-12 | [43733](https://github.com/airbytehq/airbyte/pull/43733) | Update dependencies | +| 0.4.14 | 2024-08-10 | [43512](https://github.com/airbytehq/airbyte/pull/43512) | Update dependencies | +| 0.4.13 | 2024-08-03 | [43236](https://github.com/airbytehq/airbyte/pull/43236) | Update dependencies | +| 0.4.12 | 2024-07-27 | [42693](https://github.com/airbytehq/airbyte/pull/42693) | Update dependencies | +| 0.4.11 | 2024-07-20 | [42312](https://github.com/airbytehq/airbyte/pull/42312) | Update dependencies | +| 0.4.10 | 2024-07-13 | [41865](https://github.com/airbytehq/airbyte/pull/41865) | Update dependencies | +| 0.4.9 | 2024-07-10 | [41430](https://github.com/airbytehq/airbyte/pull/41430) | Update dependencies | +| 0.4.8 | 2024-07-09 | [41148](https://github.com/airbytehq/airbyte/pull/41148) | Update dependencies | +| 0.4.7 | 2024-07-06 | [41015](https://github.com/airbytehq/airbyte/pull/41015) | Update dependencies | +| 0.4.6 | 2024-06-26 | [40540](https://github.com/airbytehq/airbyte/pull/40540) | Update dependencies | +| 0.4.5 | 2024-06-25 | [40391](https://github.com/airbytehq/airbyte/pull/40391) | Update dependencies | +| 0.4.4 | 2024-06-24 | [40234](https://github.com/airbytehq/airbyte/pull/40234) | Update dependencies | +| 0.4.3 | 2024-06-22 | [40089](https://github.com/airbytehq/airbyte/pull/40089) | Update dependencies | +| 0.4.2 | 2024-06-06 | [39255](https://github.com/airbytehq/airbyte/pull/39255) | [autopull] Upgrade base image to v1.2.2 | +| 0.4.1 | 2024-05-29 | [38696](https://github.com/airbytehq/airbyte/pull/38696) | Avoid error on empty stream when running discover | +| 0.4.0 | 2024-03-21 | [36373](https://github.com/airbytehq/airbyte/pull/36373) | Add Gzip and Bzip compression support. Manage dependencies with Poetry. | +| 0.3.7 | 2024-02-06 | [34936](https://github.com/airbytehq/airbyte/pull/34936) | Bump CDK version to avoid missing SyncMode errors | +| 0.3.6 | 2024-01-30 | [34681](https://github.com/airbytehq/airbyte/pull/34681) | Unpin CDK version to make compatible with the Concurrent CDK | +| 0.3.5 | 2024-01-30 | [34661](https://github.com/airbytehq/airbyte/pull/34661) | Pin CDK version until upgrade for compatibility with the Concurrent CDK | +| 0.3.4 | 2024-01-11 | [34158](https://github.com/airbytehq/airbyte/pull/34158) | Fix issue in stream reader for document file type parser | +| 0.3.3 | 2023-12-06 | [33187](https://github.com/airbytehq/airbyte/pull/33187) | Bump CDK version to hide source-defined primary key | +| 0.3.2 | 2023-11-16 | [32608](https://github.com/airbytehq/airbyte/pull/32608) | Improve document file type parser | +| 0.3.1 | 2023-11-13 | [32357](https://github.com/airbytehq/airbyte/pull/32357) | Improve spec schema | +| 0.3.0 | 2023-10-11 | [31212](https://github.com/airbytehq/airbyte/pull/31212) | Migrated to file based CDK | +| 0.2.0 | 2023-06-26 | [27725](https://github.com/airbytehq/airbyte/pull/27725) | License Update: Elv2 | +| 0.1.0 | 2023-02-16 | [23186](https://github.com/airbytehq/airbyte/pull/23186) | New Source: GCS | From 8f0de52503f41a546108b7141cc888a17dd7f170 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:01 +0200 Subject: [PATCH 012/808] =?UTF-8?q?=F0=9F=90=99=20source-configcat:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47465)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-configcat/metadata.yaml | 4 ++-- docs/integrations/sources/configcat.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-configcat/metadata.yaml b/airbyte-integrations/connectors/source-configcat/metadata.yaml index 88a5491fc835..93930bceff0f 100644 --- a/airbyte-integrations/connectors/source-configcat/metadata.yaml +++ b/airbyte-integrations/connectors/source-configcat/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4fd7565c-8b99-439b-80d0-2d965e1d958c - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-configcat githubIssueLabel: source-configcat icon: configcat.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/configcat.md b/docs/integrations/sources/configcat.md index f61ae843988c..d0f8de641565 100644 --- a/docs/integrations/sources/configcat.md +++ b/docs/integrations/sources/configcat.md @@ -37,6 +37,7 @@ Configcat APIs are under rate limits for the number of API calls allowed per API | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------ | +| 0.2.2 | 2024-10-28 | [47465](https://github.com/airbytehq/airbyte/pull/47465) | Update dependencies | | 0.2.1 | 2024-10-21 | [47194](https://github.com/airbytehq/airbyte/pull/47194) | Update dependencies | | 0.2.0 | 2024-08-23 | [44594](https://github.com/airbytehq/airbyte/pull/44594) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-17 | [44357](https://github.com/airbytehq/airbyte/pull/44357) | Update dependencies | From 4183fe0097374a3182945d69de485c9d4dd125f9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:04 +0200 Subject: [PATCH 013/808] =?UTF-8?q?=F0=9F=90=99=20source-customer-io:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47464)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-customer-io/metadata.yaml | 4 ++-- docs/integrations/sources/customer-io.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-customer-io/metadata.yaml b/airbyte-integrations/connectors/source-customer-io/metadata.yaml index dacbc2542e0b..2a91487f4bd3 100644 --- a/airbyte-integrations/connectors/source-customer-io/metadata.yaml +++ b/airbyte-integrations/connectors/source-customer-io/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 34f697bc-b989-4eda-b06f-d0f39b88825b - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-customer-io githubIssueLabel: source-customer-io icon: customer-io.svg diff --git a/docs/integrations/sources/customer-io.md b/docs/integrations/sources/customer-io.md index 3c8598c033d8..4cf8ec61555f 100644 --- a/docs/integrations/sources/customer-io.md +++ b/docs/integrations/sources/customer-io.md @@ -47,7 +47,8 @@ Please follow the [their documentation for generating an App API Key](https://cu | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------------- | :------------------------- | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47464](https://github.com/airbytehq/airbyte/pull/47464) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44158](https://github.com/airbytehq/airbyte/pull/44158) | Refactor connector to manifest-only format | | 0.2.15 | 2024-08-12 | [43889](https://github.com/airbytehq/airbyte/pull/43889) | Update dependencies | | 0.2.14 | 2024-08-10 | [43513](https://github.com/airbytehq/airbyte/pull/43513) | Update dependencies | From 8cb3aeef5f60a752db64db6891c93fafa67c813b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:08 +0200 Subject: [PATCH 014/808] =?UTF-8?q?=F0=9F=90=99=20source-reply-io:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47462)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-reply-io/metadata.yaml | 4 ++-- docs/integrations/sources/reply-io.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-reply-io/metadata.yaml b/airbyte-integrations/connectors/source-reply-io/metadata.yaml index 272fb04aad3a..2cd21403ae79 100644 --- a/airbyte-integrations/connectors/source-reply-io/metadata.yaml +++ b/airbyte-integrations/connectors/source-reply-io/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 8cc6537e-f8a6-423c-b960-e927af76116e - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-reply-io githubIssueLabel: source-reply-io icon: reply-io.svg diff --git a/docs/integrations/sources/reply-io.md b/docs/integrations/sources/reply-io.md index caf85864d9c9..44cc27a98455 100644 --- a/docs/integrations/sources/reply-io.md +++ b/docs/integrations/sources/reply-io.md @@ -41,6 +41,7 @@ This Source is capable of syncing the following core Streams: | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :---------------------------- | +| 0.2.1 | 2024-10-28 | [47462](https://github.com/airbytehq/airbyte/pull/47462) | Update dependencies | | 0.2.0 | 2024-08-19 | [44407](https://github.com/airbytehq/airbyte/pull/44407) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-17 | [44284](https://github.com/airbytehq/airbyte/pull/44284) | Update dependencies | | 0.1.14 | 2024-08-12 | [43818](https://github.com/airbytehq/airbyte/pull/43818) | Update dependencies | From ff8c79b4d303edf19a027b2e359cef4f29f75362 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:11 +0200 Subject: [PATCH 015/808] =?UTF-8?q?=F0=9F=90=99=20source-pokeapi:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47461)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pokeapi/metadata.yaml | 4 ++-- docs/integrations/sources/pokeapi.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-pokeapi/metadata.yaml b/airbyte-integrations/connectors/source-pokeapi/metadata.yaml index b76b5f5da754..b35c899ad956 100644 --- a/airbyte-integrations/connectors/source-pokeapi/metadata.yaml +++ b/airbyte-integrations/connectors/source-pokeapi/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 6371b14b-bc68-4236-bfbd-468e8df8e968 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-pokeapi githubIssueLabel: source-pokeapi icon: pokeapi.svg diff --git a/docs/integrations/sources/pokeapi.md b/docs/integrations/sources/pokeapi.md index 8958a5f6d4b8..396be87f9774 100644 --- a/docs/integrations/sources/pokeapi.md +++ b/docs/integrations/sources/pokeapi.md @@ -39,6 +39,7 @@ The PokéAPI uses the same [JSONSchema](https://json-schema.org/understanding-js | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------- | +| 0.3.1 | 2024-10-28 | [47461](https://github.com/airbytehq/airbyte/pull/47461) | Update dependencies | | 0.3.0 | 2024-08-26 | [44791](https://github.com/airbytehq/airbyte/pull/44791) | Refactor connector to manifest-only format | | 0.2.15 | 2024-08-24 | [44749](https://github.com/airbytehq/airbyte/pull/44749) | Update dependencies | | 0.2.14 | 2024-08-17 | [44348](https://github.com/airbytehq/airbyte/pull/44348) | Update dependencies | From ebffda5cf85714d949f66b5ad6a3644f278fa4b0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:13 +0200 Subject: [PATCH 016/808] =?UTF-8?q?=F0=9F=90=99=20source-dbt:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-28]=20(#47460)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-dbt/metadata.yaml | 4 ++-- docs/integrations/sources/dbt.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-dbt/metadata.yaml b/airbyte-integrations/connectors/source-dbt/metadata.yaml index feca6824d03e..01e7241b74dc 100644 --- a/airbyte-integrations/connectors/source-dbt/metadata.yaml +++ b/airbyte-integrations/connectors/source-dbt/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-dbt connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.2@sha256:efe8a454f740dc6a07252c4a457777e7c81d95f0d2ea8e9d68114d3610e9a602 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 6eaa4fc5-cf11-413d-a0d6-0023402f71f6 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-dbt githubIssueLabel: source-dbt icon: icon.svg diff --git a/docs/integrations/sources/dbt.md b/docs/integrations/sources/dbt.md index 7ec89b564854..497bd86a6ad1 100644 --- a/docs/integrations/sources/dbt.md +++ b/docs/integrations/sources/dbt.md @@ -26,6 +26,7 @@ DBT Source Connector provides streams with your DBT projects, repositories, user | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47460](https://github.com/airbytehq/airbyte/pull/47460) | Update dependencies | | 0.0.1 | 2024-08-22 | | Initial release by natikgadzhi via Connector Builder | From 6821f8bb74656f795f0b24c93501e80f42802848 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:16 +0200 Subject: [PATCH 017/808] =?UTF-8?q?=F0=9F=90=99=20source-gorgias:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47459)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gorgias/metadata.yaml | 4 ++-- docs/integrations/sources/gorgias.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-gorgias/metadata.yaml b/airbyte-integrations/connectors/source-gorgias/metadata.yaml index 0b0fa63cc7e6..d9441b06dbb9 100644 --- a/airbyte-integrations/connectors/source-gorgias/metadata.yaml +++ b/airbyte-integrations/connectors/source-gorgias/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-gorgias connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.7.5@sha256:4832cc13b262b4cae4ba72b07da544e6ee2f5d216b7147483480d5ebc5d0d7ca + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 9fdc3733-c51a-4129-9be5-7e9ad6eab6ac - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-gorgias githubIssueLabel: source-gorgias icon: icon.svg diff --git a/docs/integrations/sources/gorgias.md b/docs/integrations/sources/gorgias.md index 0bbfccc42d54..bf9ab28da50b 100644 --- a/docs/integrations/sources/gorgias.md +++ b/docs/integrations/sources/gorgias.md @@ -43,6 +43,7 @@ Visit `https://developers.gorgias.com/reference/introduction` for API documentat | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47459](https://github.com/airbytehq/airbyte/pull/47459) | Update dependencies | | 0.0.1 | 2024-09-29 | [46221](https://github.com/airbytehq/airbyte/pull/46221) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 6d45da263dceeebdf74493f8ff63324337f51419 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:20 +0200 Subject: [PATCH 018/808] =?UTF-8?q?=F0=9F=90=99=20source-twilio-taskrouter?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47458)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-twilio-taskrouter/metadata.yaml | 4 ++-- docs/integrations/sources/twilio-taskrouter.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-twilio-taskrouter/metadata.yaml b/airbyte-integrations/connectors/source-twilio-taskrouter/metadata.yaml index dc23946c36f5..18dd34cb175a 100644 --- a/airbyte-integrations/connectors/source-twilio-taskrouter/metadata.yaml +++ b/airbyte-integrations/connectors/source-twilio-taskrouter/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 2446953b-b794-429b-a9b3-c821ba992a48 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-twilio-taskrouter documentationUrl: https://docs.airbyte.com/integrations/sources/twilio-taskrouter githubIssueLabel: source-twilio-taskrouter diff --git a/docs/integrations/sources/twilio-taskrouter.md b/docs/integrations/sources/twilio-taskrouter.md index e7778f17fd7d..67b7cde27f23 100644 --- a/docs/integrations/sources/twilio-taskrouter.md +++ b/docs/integrations/sources/twilio-taskrouter.md @@ -61,6 +61,7 @@ For more information, see [the Twilio docs for rate limitations](https://support | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.1 | 2024-10-28 | [47458](https://github.com/airbytehq/airbyte/pull/47458) | Update dependencies | | 0.2.0 | 2024-08-26 | [44776](https://github.com/airbytehq/airbyte/pull/44776) | Refactor connector to manifest-only format | | 0.1.17 | 2024-08-24 | [44727](https://github.com/airbytehq/airbyte/pull/44727) | Update dependencies | | 0.1.16 | 2024-08-17 | [44294](https://github.com/airbytehq/airbyte/pull/44294) | Update dependencies | From 7c536019952a8a8a389a92821a76490285abdc8b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:23 +0200 Subject: [PATCH 019/808] =?UTF-8?q?=F0=9F=90=99=20source-scryfall:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47457)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-scryfall/metadata.yaml | 4 ++-- docs/integrations/sources/scryfall.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-scryfall/metadata.yaml b/airbyte-integrations/connectors/source-scryfall/metadata.yaml index b7ff8f5e9a73..5f371b638300 100644 --- a/airbyte-integrations/connectors/source-scryfall/metadata.yaml +++ b/airbyte-integrations/connectors/source-scryfall/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-scryfall connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: f76b7649-322b-44a0-8cef-23aeaae89c42 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-scryfall githubIssueLabel: source-scryfall icon: icon.svg diff --git a/docs/integrations/sources/scryfall.md b/docs/integrations/sources/scryfall.md index 641758347958..7fbfede5ae22 100644 --- a/docs/integrations/sources/scryfall.md +++ b/docs/integrations/sources/scryfall.md @@ -20,6 +20,7 @@ For Magic The Gathering fans. Here is a simple data source for all the cards and | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47457](https://github.com/airbytehq/airbyte/pull/47457) | Update dependencies | | 0.0.1 | 2024-08-28 | | Initial release by [@michel-tricot](https://github.com/michel-tricot) via Connector Builder | - \ No newline at end of file + From 3bf57d8ba236658a1d7a1d7c51bd9a1eaa142a31 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:26 +0200 Subject: [PATCH 020/808] =?UTF-8?q?=F0=9F=90=99=20source-the-guardian-api:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47456)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-the-guardian-api/metadata.yaml | 4 ++-- docs/integrations/sources/the-guardian-api.md | 23 ++++++++++--------- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml b/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml index 40541ee50e37..9724e75e19ff 100644 --- a/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml @@ -3,7 +3,7 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.0.1@sha256:00e7e63244b57956f08f99ed45597e1710a269ef893722dffd841796ccdf3934 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorTestSuitesOptions: - suite: liveTests @@ -19,7 +19,7 @@ data: type: GSM connectorType: source definitionId: d42bd69f-6bf0-4d0b-9209-16231af07a92 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-the-guardian-api documentationUrl: https://docs.airbyte.com/integrations/sources/the-guardian-api githubIssueLabel: source-the-guardian-api diff --git a/docs/integrations/sources/the-guardian-api.md b/docs/integrations/sources/the-guardian-api.md index 26b69574f3a7..889540604e29 100644 --- a/docs/integrations/sources/the-guardian-api.md +++ b/docs/integrations/sources/the-guardian-api.md @@ -113,16 +113,17 @@ The key that you are assigned is rate-limited and as such any applications that | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------- | -| 0.2.0 | 2024-09-06 | [45195](https://github.com/airbytehq/airbyte/pull/45195) | Refactor connector to manifest-only format | -| 0.1.9 | 2024-08-31 | [44997](https://github.com/airbytehq/airbyte/pull/44997) | Update dependencies | -| 0.1.8 | 2024-08-24 | [44746](https://github.com/airbytehq/airbyte/pull/44746) | Update dependencies | -| 0.1.7 | 2024-08-17 | [44208](https://github.com/airbytehq/airbyte/pull/44208) | Update dependencies | -| 0.1.6 | 2024-08-10 | [43540](https://github.com/airbytehq/airbyte/pull/43540) | Update dependencies | -| 0.1.5 | 2024-08-03 | [42781](https://github.com/airbytehq/airbyte/pull/42781) | Update dependencies | -| 0.1.4 | 2024-07-20 | [42316](https://github.com/airbytehq/airbyte/pull/42316) | Update dependencies | -| 0.1.3 | 2024-07-13 | [41878](https://github.com/airbytehq/airbyte/pull/41878) | Update dependencies | -| 0.1.2 | 2024-07-10 | [41505](https://github.com/airbytehq/airbyte/pull/41505) | Update dependencies | -| 0.1.1 | 2024-07-10 | [41049](https://github.com/airbytehq/airbyte/pull/41049) | Migrate to poetry | -| 0.1.0 | 2022-10-30 | [18654](https://github.com/airbytehq/airbyte/pull/18654) | 🎉 New Source: The Guardian API [low-code CDK] | +| 0.2.1 | 2024-10-28 | [47456](https://github.com/airbytehq/airbyte/pull/47456) | Update dependencies | +| 0.2.0 | 2024-09-06 | [45195](https://github.com/airbytehq/airbyte/pull/45195) | Refactor connector to manifest-only format | +| 0.1.9 | 2024-08-31 | [44997](https://github.com/airbytehq/airbyte/pull/44997) | Update dependencies | +| 0.1.8 | 2024-08-24 | [44746](https://github.com/airbytehq/airbyte/pull/44746) | Update dependencies | +| 0.1.7 | 2024-08-17 | [44208](https://github.com/airbytehq/airbyte/pull/44208) | Update dependencies | +| 0.1.6 | 2024-08-10 | [43540](https://github.com/airbytehq/airbyte/pull/43540) | Update dependencies | +| 0.1.5 | 2024-08-03 | [42781](https://github.com/airbytehq/airbyte/pull/42781) | Update dependencies | +| 0.1.4 | 2024-07-20 | [42316](https://github.com/airbytehq/airbyte/pull/42316) | Update dependencies | +| 0.1.3 | 2024-07-13 | [41878](https://github.com/airbytehq/airbyte/pull/41878) | Update dependencies | +| 0.1.2 | 2024-07-10 | [41505](https://github.com/airbytehq/airbyte/pull/41505) | Update dependencies | +| 0.1.1 | 2024-07-10 | [41049](https://github.com/airbytehq/airbyte/pull/41049) | Migrate to poetry | +| 0.1.0 | 2022-10-30 | [18654](https://github.com/airbytehq/airbyte/pull/18654) | 🎉 New Source: The Guardian API [low-code CDK] | From 137d316e68a903ac88e5ca1170ceeb899287f6ab Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:29 +0200 Subject: [PATCH 021/808] =?UTF-8?q?=F0=9F=90=99=20source-linkedin-pages:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47455)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-linkedin-pages/metadata.yaml | 4 ++-- docs/integrations/sources/linkedin-pages.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-linkedin-pages/metadata.yaml b/airbyte-integrations/connectors/source-linkedin-pages/metadata.yaml index 5bf164c152f4..e49a1318f5e6 100644 --- a/airbyte-integrations/connectors/source-linkedin-pages/metadata.yaml +++ b/airbyte-integrations/connectors/source-linkedin-pages/metadata.yaml @@ -16,11 +16,11 @@ data: enabled: false packageName: airbyte-source-linkedin-pages connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: af54297c-e8f8-4d63-a00d-a94695acc9d3 - dockerImageTag: 1.1.1 + dockerImageTag: 1.1.2 dockerRepository: airbyte/source-linkedin-pages documentationUrl: https://docs.airbyte.com/integrations/sources/linkedin-pages githubIssueLabel: source-linkedin-pages diff --git a/docs/integrations/sources/linkedin-pages.md b/docs/integrations/sources/linkedin-pages.md index e1c7e76d0027..699dc9e69eb2 100644 --- a/docs/integrations/sources/linkedin-pages.md +++ b/docs/integrations/sources/linkedin-pages.md @@ -113,7 +113,8 @@ The source LinkedIn Pages can use either the `client_id`, `client_secret` and `r | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :--------------------------------------------------- | -| 1.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 1.1.2 | 2024-10-28 | [47455](https://github.com/airbytehq/airbyte/pull/47455) | Update dependencies | +| 1.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.1.0 | 2024-08-15 | [44132](https://github.com/airbytehq/airbyte/pull/44132) | Refactor connector to manifest-only format | | 1.0.17 | 2024-08-10 | [43560](https://github.com/airbytehq/airbyte/pull/43560) | Update dependencies | | 1.0.16 | 2024-08-03 | [43281](https://github.com/airbytehq/airbyte/pull/43281) | Update dependencies | From 12111c4059e74a58f9536b622e70b0b61723c1f8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:32 +0200 Subject: [PATCH 022/808] =?UTF-8?q?=F0=9F=90=99=20source-k6-cloud:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47454)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-k6-cloud/metadata.yaml | 4 ++-- docs/integrations/sources/k6-cloud.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml b/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml index 89d094ca8157..593344838091 100644 --- a/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml +++ b/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: e300ece7-b073-43a3-852e-8aff36a57f13 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-k6-cloud documentationUrl: https://docs.airbyte.com/integrations/sources/k6-cloud githubIssueLabel: source-k6-cloud diff --git a/docs/integrations/sources/k6-cloud.md b/docs/integrations/sources/k6-cloud.md index 3e411c28ef58..944ba73254d6 100644 --- a/docs/integrations/sources/k6-cloud.md +++ b/docs/integrations/sources/k6-cloud.md @@ -32,7 +32,8 @@ This source can sync data from the [K6 Cloud API](https://developers.k6.io). At | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47454](https://github.com/airbytehq/airbyte/pull/47454) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44137](https://github.com/airbytehq/airbyte/pull/44137) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-10 | [43493](https://github.com/airbytehq/airbyte/pull/43493) | Update dependencies | | 0.1.14 | 2024-08-03 | [43077](https://github.com/airbytehq/airbyte/pull/43077) | Update dependencies | From a325bf378083eff92cfe3330ebb78f9260c7aded Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:35 +0200 Subject: [PATCH 023/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-teams:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47453)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-microsoft-teams/metadata.yaml | 4 ++-- docs/integrations/sources/microsoft-teams.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-teams/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-teams/metadata.yaml index 7c7d07e6c176..f2466e6b218a 100644 --- a/airbyte-integrations/connectors/source-microsoft-teams/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-teams/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: eaf50f04-21dd-4620-913b-2a83f5635227 - dockerImageTag: 1.2.1 + dockerImageTag: 1.2.2 dockerRepository: airbyte/source-microsoft-teams githubIssueLabel: source-microsoft-teams icon: microsoft-teams.svg diff --git a/docs/integrations/sources/microsoft-teams.md b/docs/integrations/sources/microsoft-teams.md index a5f5abd2d25c..fb67790e0e05 100644 --- a/docs/integrations/sources/microsoft-teams.md +++ b/docs/integrations/sources/microsoft-teams.md @@ -164,7 +164,8 @@ Token acquiring implemented by [instantiate](https://docs.microsoft.com/en-us/az | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------- | -| 1.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 1.2.2 | 2024-10-28 | [47453](https://github.com/airbytehq/airbyte/pull/47453) | Update dependencies | +| 1.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.2.0 | 2024-08-15 | [44116](https://github.com/airbytehq/airbyte/pull/44116) | Refactor connector to manifest-only format | | 1.1.11 | 2024-08-12 | [43772](https://github.com/airbytehq/airbyte/pull/43772) | Update dependencies | | 1.1.10 | 2024-08-10 | [43547](https://github.com/airbytehq/airbyte/pull/43547) | Update dependencies | From c65fd94909253cafe2612e008a976f2dbcb76414 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:38 +0200 Subject: [PATCH 024/808] =?UTF-8?q?=F0=9F=90=99=20source-open-exchange-rat?= =?UTF-8?q?es:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47452)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-open-exchange-rates/metadata.yaml | 4 ++-- docs/integrations/sources/open-exchange-rates.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml b/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml index d6a4ba2c960e..1d923ccbb12f 100644 --- a/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml +++ b/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - openexchangerates.org connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 77d5ca6b-d345-4dce-ba1e-1935a75778b8 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-open-exchange-rates documentationUrl: https://docs.airbyte.com/integrations/sources/open-exchange-rates githubIssueLabel: source-open-exchange-rates diff --git a/docs/integrations/sources/open-exchange-rates.md b/docs/integrations/sources/open-exchange-rates.md index 583f753d3bd2..490f13012a66 100644 --- a/docs/integrations/sources/open-exchange-rates.md +++ b/docs/integrations/sources/open-exchange-rates.md @@ -48,7 +48,8 @@ If you have `free` subscription plan \(you may check it [here](https://openexcha | Version | Date | Pull Request | Subject | | :------ | :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47452](https://github.com/airbytehq/airbyte/pull/47452) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44108](https://github.com/airbytehq/airbyte/pull/44108) | Refactor connector to manifest-only format | | 0.2.16 | 2024-08-10 | [43582](https://github.com/airbytehq/airbyte/pull/43582) | Update dependencies | | 0.2.15 | 2024-08-03 | [43120](https://github.com/airbytehq/airbyte/pull/43120) | Update dependencies | From d5d941330da2b038e08e3fee2859698050fa2de0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:41 +0200 Subject: [PATCH 025/808] =?UTF-8?q?=F0=9F=90=99=20source-datascope:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47451)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-datascope/metadata.yaml | 4 ++-- docs/integrations/sources/datascope.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-datascope/metadata.yaml b/airbyte-integrations/connectors/source-datascope/metadata.yaml index be9844a7190a..5d38db344a6e 100644 --- a/airbyte-integrations/connectors/source-datascope/metadata.yaml +++ b/airbyte-integrations/connectors/source-datascope/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8e1ae2d2-4790-44d3-9d83-75b3fc3940ff - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-datascope githubIssueLabel: source-datascope icon: datascope.svg @@ -42,5 +42,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/datascope.md b/docs/integrations/sources/datascope.md index ee7542963eee..bb4eacddc4c4 100644 --- a/docs/integrations/sources/datascope.md +++ b/docs/integrations/sources/datascope.md @@ -64,6 +64,7 @@ GET https://www.mydatascope.com/api/external/locations | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------- | +| 0.2.2 | 2024-10-28 | [47451](https://github.com/airbytehq/airbyte/pull/47451) | Update dependencies | | 0.2.1 | 2024-10-21 | [47206](https://github.com/airbytehq/airbyte/pull/47206) | Update dependencies | | 0.2.0 | 2024-08-19 | [44416](https://github.com/airbytehq/airbyte/pull/44416) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-17 | [44213](https://github.com/airbytehq/airbyte/pull/44213) | Update dependencies | From 0ff44429efa21a14e29b3fc312fcdb0fc47606dd Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:44 +0200 Subject: [PATCH 026/808] =?UTF-8?q?=F0=9F=90=99=20source-emailoctopus:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47450)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-emailoctopus/metadata.yaml | 4 ++-- docs/integrations/sources/emailoctopus.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml b/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml index 6f99694bf878..b33c534319b9 100644 --- a/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml +++ b/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 46b25e70-c980-4590-a811-8deaf50ee09f - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-emailoctopus documentationUrl: https://docs.airbyte.com/integrations/sources/emailoctopus githubIssueLabel: source-emailoctopus diff --git a/docs/integrations/sources/emailoctopus.md b/docs/integrations/sources/emailoctopus.md index 0a892c8370d2..1c30c9919301 100644 --- a/docs/integrations/sources/emailoctopus.md +++ b/docs/integrations/sources/emailoctopus.md @@ -28,7 +28,8 @@ No documented strict rate limit. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47450](https://github.com/airbytehq/airbyte/pull/47450) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44152](https://github.com/airbytehq/airbyte/pull/44152) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-10 | [43580](https://github.com/airbytehq/airbyte/pull/43580) | Update dependencies | | 0.1.14 | 2024-08-03 | [43069](https://github.com/airbytehq/airbyte/pull/43069) | Update dependencies | From 6091e87bbd9d61dda4e1d58644f2f128ef565598 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:47 +0200 Subject: [PATCH 027/808] =?UTF-8?q?=F0=9F=90=99=20source-freshservice:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47449)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-freshservice/metadata.yaml | 4 ++-- docs/integrations/sources/freshservice.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-freshservice/metadata.yaml b/airbyte-integrations/connectors/source-freshservice/metadata.yaml index 0cdf04083dc5..120dac5b85fc 100644 --- a/airbyte-integrations/connectors/source-freshservice/metadata.yaml +++ b/airbyte-integrations/connectors/source-freshservice/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - ${domain_name}/api/v2 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 9bb85338-ea95-4c93-b267-6be89125b267 - dockerImageTag: 1.4.1 + dockerImageTag: 1.4.2 dockerRepository: airbyte/source-freshservice documentationUrl: https://docs.airbyte.com/integrations/sources/freshservice githubIssueLabel: source-freshservice diff --git a/docs/integrations/sources/freshservice.md b/docs/integrations/sources/freshservice.md index 9bd18084b2f5..4d25d4e1fe74 100644 --- a/docs/integrations/sources/freshservice.md +++ b/docs/integrations/sources/freshservice.md @@ -57,7 +57,8 @@ Please read [How to find your API key](https://api.freshservice.com/#authenticat | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:---------------------------------------------------------------------------------------| -| 1.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 1.4.2 | 2024-10-28 | [47449](https://github.com/airbytehq/airbyte/pull/47449) | Update dependencies | +| 1.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.4.0 | 2024-08-15 | [44148](https://github.com/airbytehq/airbyte/pull/44148) | Refactor connector to manifest-only format | | 1.3.17 | 2024-08-10 | [43545](https://github.com/airbytehq/airbyte/pull/43545) | Update dependencies | | 1.3.16 | 2024-08-03 | [43254](https://github.com/airbytehq/airbyte/pull/43254) | Update dependencies | From 9a002be9b532fa152376f24acf831bd3cb6b718c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:51 +0200 Subject: [PATCH 028/808] =?UTF-8?q?=F0=9F=90=99=20source-drip:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47446)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-drip/metadata.yaml | 4 ++-- docs/integrations/sources/drip.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-drip/metadata.yaml b/airbyte-integrations/connectors/source-drip/metadata.yaml index 0ead40ebeacf..ce0fdcfc05ae 100644 --- a/airbyte-integrations/connectors/source-drip/metadata.yaml +++ b/airbyte-integrations/connectors/source-drip/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-drip connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.11.1@sha256:f48a7ddc1f3acecbd8eb6a10a3146e8d0396e9a4dede77beafb76924f416df65 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 4221175d-1bb9-436d-8cc7-ca0d8605b2b6 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-drip githubIssueLabel: source-drip icon: icon.svg diff --git a/docs/integrations/sources/drip.md b/docs/integrations/sources/drip.md index c98ffe921954..8cf091e94954 100644 --- a/docs/integrations/sources/drip.md +++ b/docs/integrations/sources/drip.md @@ -29,6 +29,7 @@ Integrate seamlessly with Drip using this Airbyte connector, enabling smooth dat | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47446](https://github.com/airbytehq/airbyte/pull/47446) | Update dependencies | | 0.0.1 | 2024-10-08 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From f3bb65396dccd2b79469a4550014d87413ebf302 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:08:56 +0200 Subject: [PATCH 029/808] =?UTF-8?q?=F0=9F=90=99=20source-bigcommerce:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47117)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-bigcommerce/metadata.yaml | 2 +- .../connectors/source-bigcommerce/poetry.lock | 261 +++++++++--------- .../source-bigcommerce/pyproject.toml | 2 +- docs/integrations/sources/bigcommerce.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml b/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml index ad0b417be0d1..570e2a7f0898 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml +++ b/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 59c5501b-9f95-411e-9269-7143c939adbd - dockerImageTag: 0.2.21 + dockerImageTag: 0.2.22 dockerRepository: airbyte/source-bigcommerce documentationUrl: https://docs.airbyte.com/integrations/sources/bigcommerce githubIssueLabel: source-bigcommerce diff --git a/airbyte-integrations/connectors/source-bigcommerce/poetry.lock b/airbyte-integrations/connectors/source-bigcommerce/poetry.lock index 06658fe3a758..711efc8fb7ce 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/poetry.lock +++ b/airbyte-integrations/connectors/source-bigcommerce/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -697,138 +697,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1284,13 +1285,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml b/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml index 7a401a250a45..1f216916ad60 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml +++ b/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.21" +version = "0.2.22" name = "source-bigcommerce" description = "Source implementation for Bigcommerce." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/bigcommerce.md b/docs/integrations/sources/bigcommerce.md index 00581017c44d..1a77c343ca39 100644 --- a/docs/integrations/sources/bigcommerce.md +++ b/docs/integrations/sources/bigcommerce.md @@ -58,6 +58,7 @@ BigCommerce has some [rate limit restrictions](https://developer.bigcommerce.com | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------- | +| 0.2.22 | 2024-10-28 | [47117](https://github.com/airbytehq/airbyte/pull/47117) | Update dependencies | | 0.2.21 | 2024-10-12 | [46840](https://github.com/airbytehq/airbyte/pull/46840) | Update dependencies | | 0.2.20 | 2024-10-05 | [46453](https://github.com/airbytehq/airbyte/pull/46453) | Update dependencies | | 0.2.19 | 2024-09-28 | [46206](https://github.com/airbytehq/airbyte/pull/46206) | Update dependencies | From f86967eaacfc1eb0e9b32cd947e29afc4e754f71 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:09:19 +0200 Subject: [PATCH 030/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-onedriv?= =?UTF-8?q?e:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47060)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-microsoft-onedrive/metadata.yaml | 2 +- .../source-microsoft-onedrive/poetry.lock | 644 +++++++++--------- .../source-microsoft-onedrive/pyproject.toml | 2 +- .../sources/microsoft-onedrive.md | 1 + 4 files changed, 323 insertions(+), 326 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml index e6c68f4d6c08..bf95335c3a9d 100644 --- a/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml @@ -20,7 +20,7 @@ data: connectorSubtype: file connectorType: source definitionId: 01d1c685-fd4a-4837-8f4c-93fe5a0d2188 - dockerImageTag: 0.2.21 + dockerImageTag: 0.2.22 dockerRepository: airbyte/source-microsoft-onedrive githubIssueLabel: source-microsoft-onedrive icon: microsoft-onedrive.svg diff --git a/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock b/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock index 09aa67327f77..787969028296 100644 --- a/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock +++ b/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock @@ -65,13 +65,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -82,7 +82,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -648,13 +648,13 @@ files = [ [[package]] name = "fsspec" -version = "2024.9.0" +version = "2024.10.0" description = "File-system specification" optional = false python-versions = ">=3.8" files = [ - {file = "fsspec-2024.9.0-py3-none-any.whl", hash = "sha256:a0947d552d8a6efa72cc2c730b12c41d043509156966cca4fb157b0f2a0c574b"}, - {file = "fsspec-2024.9.0.tar.gz", hash = "sha256:4b0afb90c2f21832df142f292649035d80b421f60a9e1c027802e5a0da2b04e8"}, + {file = "fsspec-2024.10.0-py3-none-any.whl", hash = "sha256:03b9a6785766a4de40368b88906366755e2819e758b83705c88cd7cb5fe81871"}, + {file = "fsspec-2024.10.0.tar.gz", hash = "sha256:eda2d8a4116d4f2429db8550f2457da57279247dd930bb12f821b58391359493"}, ] [package.extras] @@ -754,13 +754,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "huggingface-hub" -version = "0.25.2" +version = "0.26.1" description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" optional = false python-versions = ">=3.8.0" files = [ - {file = "huggingface_hub-0.25.2-py3-none-any.whl", hash = "sha256:1897caf88ce7f97fe0110603d8f66ac264e3ba6accdf30cd66cc0fed5282ad25"}, - {file = "huggingface_hub-0.25.2.tar.gz", hash = "sha256:a1014ea111a5f40ccd23f7f7ba8ac46e20fa3b658ced1f86a00c75c06ec6423c"}, + {file = "huggingface_hub-0.26.1-py3-none-any.whl", hash = "sha256:5927a8fc64ae68859cd954b7cc29d1c8390a5e15caba6d3d349c973be8fdacf3"}, + {file = "huggingface_hub-0.26.1.tar.gz", hash = "sha256:414c0d9b769eecc86c70f9d939d0f48bb28e8461dd1130021542eff0212db890"}, ] [package.dependencies] @@ -773,16 +773,16 @@ tqdm = ">=4.42.1" typing-extensions = ">=3.7.4.3" [package.extras] -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio", "jedi", "minijinja (>=1.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "libcst (==1.4.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio", "jedi", "minijinja (>=1.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "libcst (==1.4.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] hf-transfer = ["hf-transfer (>=0.1.4)"] -inference = ["aiohttp", "minijinja (>=1.0)"] -quality = ["mypy (==1.5.1)", "ruff (>=0.5.0)"] +inference = ["aiohttp"] +quality = ["libcst (==1.4.0)", "mypy (==1.5.1)", "ruff (>=0.5.0)"] tensorflow = ["graphviz", "pydot", "tensorflow"] tensorflow-testing = ["keras (<3.0)", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio", "jedi", "minijinja (>=1.0)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] torch = ["safetensors[torch]", "torch"] typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)"] @@ -971,13 +971,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -1161,92 +1161,92 @@ testing = ["coverage", "pyyaml"] [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.22.0" +version = "3.23.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, - {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, + {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, + {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "msal" @@ -1370,68 +1370,69 @@ ntlmprovider = ["requests-ntlm"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1515,95 +1516,90 @@ pytzdata = ">=2020.1" [[package]] name = "pillow" -version = "10.4.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, - {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, - {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, - {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, - {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, - {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, - {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, - {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, - {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, - {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, - {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, - {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, - {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, - {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, - {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, - {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, - {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, - {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, - {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, - {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -1933,17 +1929,17 @@ typing-extensions = ">=4.9.0" [[package]] name = "python-iso639" -version = "2024.4.27" +version = "2024.10.22" description = "ISO 639 language codes, names, and other associated information" optional = false python-versions = ">=3.8" files = [ - {file = "python_iso639-2024.4.27-py3-none-any.whl", hash = "sha256:27526a84cebc4c4d53fea9d1ebbc7209c8d279bebaa343e6765a1fc8780565ab"}, - {file = "python_iso639-2024.4.27.tar.gz", hash = "sha256:97e63b5603e085c6a56a12a95740010e75d9134e0aab767e0978b53fd8824f13"}, + {file = "python_iso639-2024.10.22-py3-none-any.whl", hash = "sha256:02d3ce2e01c6896b30b9cbbd3e1c8ee0d7221250b5d63ea9803e0d2a81fd1047"}, + {file = "python_iso639-2024.10.22.tar.gz", hash = "sha256:750f21b6a0bc6baa24253a3d8aae92b582bf93aa40988361cd96852c2c6d9a52"}, ] [package.extras] -dev = ["black (==24.4.2)", "build (==1.2.1)", "flake8 (==7.0.0)", "pytest (==8.1.2)", "requests (==2.31.0)", "twine (==5.0.0)"] +dev = ["black (==24.10.0)", "build (==1.2.1)", "flake8 (==7.1.1)", "pytest (==8.3.3)", "requests (==2.32.3)", "twine (==5.1.1)"] [[package]] name = "python-magic" @@ -2057,99 +2053,99 @@ files = [ [[package]] name = "rapidfuzz" -version = "3.10.0" +version = "3.10.1" description = "rapid fuzzy string matching" optional = false python-versions = ">=3.9" files = [ - {file = "rapidfuzz-3.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:884453860de029380dded8f3c1918af2d8eb5adf8010261645c7e5c88c2b5428"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:718c9bd369288aca5fa929df6dbf66fdbe9768d90940a940c0b5cdc96ade4309"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a68e3724b7dab761c01816aaa64b0903734d999d5589daf97c14ef5cc0629a8e"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1af60988d47534246d9525f77288fdd9de652608a4842815d9018570b959acc6"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3084161fc3e963056232ef8d937449a2943852e07101f5a136c8f3cfa4119217"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6cd67d3d017296d98ff505529104299f78433e4b8af31b55003d901a62bbebe9"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b11a127ac590fc991e8a02c2d7e1ac86e8141c92f78546f18b5c904064a0552c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:aadce42147fc09dcef1afa892485311e824c050352e1aa6e47f56b9b27af4cf0"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b54853c2371bf0e38d67da379519deb6fbe70055efb32f6607081641af3dc752"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ce19887268e90ee81a3957eef5e46a70ecc000713796639f83828b950343f49e"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f39a2a5ded23b9b9194ec45740dce57177b80f86c6d8eba953d3ff1a25c97766"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0ec338d5f4ad8d9339a88a08db5c23e7f7a52c2b2a10510c48a0cef1fb3f0ddc"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win32.whl", hash = "sha256:56fd15ea8f4c948864fa5ebd9261c67cf7b89a1c517a0caef4df75446a7af18c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:43dfc5e733808962a822ff6d9c29f3039a3cfb3620706f5953e17cfe4496724c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win_arm64.whl", hash = "sha256:ae7966f205b5a7fde93b44ca8fed37c1c8539328d7f179b1197de34eceaceb5f"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bb0013795b40db5cf361e6f21ee7cda09627cf294977149b50e217d7fe9a2f03"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:69ef5b363afff7150a1fbe788007e307b9802a2eb6ad92ed51ab94e6ad2674c6"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c582c46b1bb0b19f1a5f4c1312f1b640c21d78c371a6615c34025b16ee56369b"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:288f6f6e7410cacb115fb851f3f18bf0e4231eb3f6cb5bd1cec0e7b25c4d039d"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9e29a13d2fd9be3e7d8c26c7ef4ba60b5bc7efbc9dbdf24454c7e9ebba31768"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea2da0459b951ee461bd4e02b8904890bd1c4263999d291c5cd01e6620177ad4"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:457827ba82261aa2ae6ac06a46d0043ab12ba7216b82d87ae1434ec0f29736d6"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5d350864269d56f51ab81ab750c9259ae5cad3152c0680baef143dcec92206a1"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a9b8f51e08c3f983d857c3889930af9ddecc768453822076683664772d87e374"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7f3a6aa6e70fc27e4ff5c479f13cc9fc26a56347610f5f8b50396a0d344c5f55"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:803f255f10d63420979b1909ef976e7d30dec42025c9b067fc1d2040cc365a7e"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2026651761bf83a0f31495cc0f70840d5c0d54388f41316e3f9cb51bd85e49a5"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win32.whl", hash = "sha256:4df75b3ebbb8cfdb9bf8b213b168620b88fd92d0c16a8bc9f9234630b282db59"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:f9f0bbfb6787b97c51516f3ccf97737d504db5d239ad44527673b81f598b84ab"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win_arm64.whl", hash = "sha256:10fdad800441b9c97d471a937ba7d42625f1b530db05e572f1cb7d401d95c893"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7dc87073ba3a40dd65591a2100aa71602107443bf10770579ff9c8a3242edb94"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a425a0a868cf8e9c6e93e1cda4b758cdfd314bb9a4fc916c5742c934e3613480"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d5d1d75e61df060c1e56596b6b0a4422a929dff19cc3dbfd5eee762c86b61"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34f213d59219a9c3ca14e94a825f585811a68ac56b4118b4dc388b5b14afc108"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96ad46f5f56f70fab2be9e5f3165a21be58d633b90bf6e67fc52a856695e4bcf"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9178277f72d144a6c7704d7ae7fa15b7b86f0f0796f0e1049c7b4ef748a662ef"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76a35e9e19a7c883c422ffa378e9a04bc98cb3b29648c5831596401298ee51e6"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a6405d34c394c65e4f73a1d300c001f304f08e529d2ed6413b46ee3037956eb"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bd393683129f446a75d8634306aed7e377627098a1286ff3af2a4f1736742820"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b0445fa9880ead81f5a7d0efc0b9c977a947d8052c43519aceeaf56eabaf6843"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c50bc308fa29767ed8f53a8d33b7633a9e14718ced038ed89d41b886e301da32"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e89605afebbd2d4b045bccfdc12a14b16fe8ccbae05f64b4b4c64a97dad1c891"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win32.whl", hash = "sha256:2db9187f3acf3cd33424ecdbaad75414c298ecd1513470df7bda885dcb68cc15"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:50e3d0c72ea15391ba9531ead7f2068a67c5b18a6a365fef3127583aaadd1725"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win_arm64.whl", hash = "sha256:9eac95b4278bd53115903d89118a2c908398ee8bdfd977ae844f1bd2b02b917c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fe5231e8afd069c742ac5b4f96344a0fe4aff52df8e53ef87faebf77f827822c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:886882367dbc985f5736356105798f2ae6e794e671fc605476cbe2e73838a9bb"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b33e13e537e3afd1627d421a142a12bbbe601543558a391a6fae593356842f6e"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:094c26116d55bf9c53abd840d08422f20da78ec4c4723e5024322321caedca48"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:545fc04f2d592e4350f59deb0818886c1b444ffba3bec535b4fbb97191aaf769"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:916a6abf3632e592b937c3d04c00a6efadd8fd30539cdcd4e6e4d92be7ca5d90"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb6ec40cef63b1922083d33bfef2f91fc0b0bc07b5b09bfee0b0f1717d558292"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c77a7330dd15c7eb5fd3631dc646fc96327f98db8181138766bd14d3e905f0ba"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:949b5e9eeaa4ecb4c7e9c2a4689dddce60929dd1ff9c76a889cdbabe8bbf2171"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b5363932a5aab67010ae1a6205c567d1ef256fb333bc23c27582481606be480c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:5dd6eec15b13329abe66cc241b484002ecb0e17d694491c944a22410a6a9e5e2"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:79e7f98525b60b3c14524e0a4e1fedf7654657b6e02eb25f1be897ab097706f3"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win32.whl", hash = "sha256:d29d1b9857c65f8cb3a29270732e1591b9bacf89de9d13fa764f79f07d8f1fd2"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:fa9720e56663cc3649d62b4b5f3145e94b8f5611e8a8e1b46507777249d46aad"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win_arm64.whl", hash = "sha256:eda4c661e68dddd56c8fbfe1ca35e40dd2afd973f7ebb1605f4d151edc63dff8"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cffbc50e0767396ed483900900dd58ce4351bc0d40e64bced8694bd41864cc71"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c038b9939da3035afb6cb2f465f18163e8f070aba0482923ecff9443def67178"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca366c2e2a54e2f663f4529b189fdeb6e14d419b1c78b754ec1744f3c01070d4"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c4c82b1689b23b1b5e6a603164ed2be41b6f6de292a698b98ba2381e889eb9d"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98f6ebe28831a482981ecfeedc8237047878424ad0c1add2c7f366ba44a20452"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4bd1a7676ee2a4c8e2f7f2550bece994f9f89e58afb96088964145a83af7408b"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec9139baa3f85b65adc700eafa03ed04995ca8533dd56c924f0e458ffec044ab"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:26de93e6495078b6af4c4d93a42ca067b16cc0e95699526c82ab7d1025b4d3bf"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f3a0bda83c18195c361b5500377d0767749f128564ca95b42c8849fd475bb327"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:63e4c175cbce8c3adc22dca5e6154588ae673f6c55374d156f3dac732c88d7de"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4dd3d8443970eaa02ab5ae45ce584b061f2799cd9f7e875190e2617440c1f9d4"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e5ddb2388610799fc46abe389600625058f2a73867e63e20107c5ad5ffa57c47"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win32.whl", hash = "sha256:2e9be5d05cd960914024412b5406fb75a82f8562f45912ff86255acbfdbfb78e"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:47aca565a39c9a6067927871973ca827023e8b65ba6c5747f4c228c8d7ddc04f"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win_arm64.whl", hash = "sha256:b0732343cdc4273b5921268026dd7266f75466eb21873cb7635a200d9d9c3fac"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f744b5eb1469bf92dd143d36570d2bdbbdc88fe5cb0b5405e53dd34f479cbd8a"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b67cc21a14327a0eb0f47bc3d7e59ec08031c7c55220ece672f9476e7a8068d3"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fe5783676f0afba4a522c80b15e99dbf4e393c149ab610308a8ef1f04c6bcc8"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4688862f957c8629d557d084f20b2d803f8738b6c4066802a0b1cc472e088d9"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20bd153aacc244e4c907d772c703fea82754c4db14f8aa64d75ff81b7b8ab92d"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:50484d563f8bfa723c74c944b0bb15b9e054db9c889348c8c307abcbee75ab92"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5897242d455461f2c5b82d7397b29341fd11e85bf3608a522177071044784ee8"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:116c71a81e046ba56551d8ab68067ca7034d94b617545316d460a452c5c3c289"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0a547e4350d1fa32624d3eab51eff8cf329f4cae110b4ea0402486b1da8be40"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:399b9b79ccfcf50ca3bad7692bc098bb8eade88d7d5e15773b7f866c91156d0c"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7947a425d1be3e744707ee58c6cb318b93a56e08f080722dcc0347e0b7a1bb9a"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:94c48b4a2a4b1d22246f48e2b11cae01ec7d23f0c9123f8bb822839ad79d0a88"}, - {file = "rapidfuzz-3.10.0.tar.gz", hash = "sha256:6b62af27e65bb39276a66533655a2fa3c60a487b03935721c45b7809527979be"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f17d9f21bf2f2f785d74f7b0d407805468b4c173fa3e52c86ec94436b338e74a"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b31f358a70efc143909fb3d75ac6cd3c139cd41339aa8f2a3a0ead8315731f2b"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f4f43f2204b56a61448ec2dd061e26fd344c404da99fb19f3458200c5874ba2"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9d81bf186a453a2757472133b24915768abc7c3964194406ed93e170e16c21cb"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3611c8f45379a12063d70075c75134f2a8bd2e4e9b8a7995112ddae95ca1c982"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3c3b537b97ac30da4b73930fa8a4fe2f79c6d1c10ad535c5c09726612cd6bed9"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:231ef1ec9cf7b59809ce3301006500b9d564ddb324635f4ea8f16b3e2a1780da"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed4f3adc1294834955b7e74edd3c6bd1aad5831c007f2d91ea839e76461a5879"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:7b6015da2e707bf632a71772a2dbf0703cff6525732c005ad24987fe86e8ec32"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:1b35a118d61d6f008e8e3fb3a77674d10806a8972c7b8be433d6598df4d60b01"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:bc308d79a7e877226f36bdf4e149e3ed398d8277c140be5c1fd892ec41739e6d"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f017dbfecc172e2d0c37cf9e3d519179d71a7f16094b57430dffc496a098aa17"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win32.whl", hash = "sha256:36c0e1483e21f918d0f2f26799fe5ac91c7b0c34220b73007301c4f831a9c4c7"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:10746c1d4c8cd8881c28a87fd7ba0c9c102346dfe7ff1b0d021cdf093e9adbff"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win_arm64.whl", hash = "sha256:dfa64b89dcb906835e275187569e51aa9d546a444489e97aaf2cc84011565fbe"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:92958ae075c87fef393f835ed02d4fe8d5ee2059a0934c6c447ea3417dfbf0e8"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ba7521e072c53e33c384e78615d0718e645cab3c366ecd3cc8cb732befd94967"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00d02cbd75d283c287471b5b3738b3e05c9096150f93f2d2dfa10b3d700f2db9"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efa1582a397da038e2f2576c9cd49b842f56fde37d84a6b0200ffebc08d82350"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f12912acee1f506f974f58de9fdc2e62eea5667377a7e9156de53241c05fdba8"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666d5d8b17becc3f53447bcb2b6b33ce6c2df78792495d1fa82b2924cd48701a"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26f71582c0d62445067ee338ddad99b655a8f4e4ed517a90dcbfbb7d19310474"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8a2ef08b27167bcff230ffbfeedd4c4fa6353563d6aaa015d725dd3632fc3de7"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:365e4fc1a2b95082c890f5e98489b894e6bf8c338c6ac89bb6523c2ca6e9f086"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1996feb7a61609fa842e6b5e0c549983222ffdedaf29644cc67e479902846dfe"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:cf654702f144beaa093103841a2ea6910d617d0bb3fccb1d1fd63c54dde2cd49"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ec108bf25de674781d0a9a935030ba090c78d49def3d60f8724f3fc1e8e75024"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win32.whl", hash = "sha256:031f8b367e5d92f7a1e27f7322012f3c321c3110137b43cc3bf678505583ef48"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:f98f36c6a1bb9a6c8bbec99ad87c8c0e364f34761739b5ea9adf7b48129ae8cf"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win_arm64.whl", hash = "sha256:f1da2028cb4e41be55ee797a82d6c1cf589442504244249dfeb32efc608edee7"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1340b56340896bede246f612b6ecf685f661a56aabef3d2512481bfe23ac5835"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2316515169b7b5a453f0ce3adbc46c42aa332cae9f2edb668e24d1fc92b2f2bb"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e06fe6a12241ec1b72c0566c6b28cda714d61965d86569595ad24793d1ab259"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d99c1cd9443b19164ec185a7d752f4b4db19c066c136f028991a480720472e23"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1d9aa156ed52d3446388ba4c2f335e312191d1ca9d1f5762ee983cf23e4ecf6"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:54bcf4efaaee8e015822be0c2c28214815f4f6b4f70d8362cfecbd58a71188ac"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0c955e32afdbfdf6e9ee663d24afb25210152d98c26d22d399712d29a9b976b"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:191633722203f5b7717efcb73a14f76f3b124877d0608c070b827c5226d0b972"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:195baad28057ec9609e40385991004e470af9ef87401e24ebe72c064431524ab"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:0fff4a6b87c07366662b62ae994ffbeadc472e72f725923f94b72a3db49f4671"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4ffed25f9fdc0b287f30a98467493d1e1ce5b583f6317f70ec0263b3c97dbba6"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d02cf8e5af89a9ac8f53c438ddff6d773f62c25c6619b29db96f4aae248177c0"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win32.whl", hash = "sha256:f3bb81d4fe6a5d20650f8c0afcc8f6e1941f6fecdb434f11b874c42467baded0"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:aaf83e9170cb1338922ae42d320699dccbbdca8ffed07faeb0b9257822c26e24"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win_arm64.whl", hash = "sha256:c5da802a0d085ad81b0f62828fb55557996c497b2d0b551bbdfeafd6d447892f"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fc22d69a1c9cccd560a5c434c0371b2df0f47c309c635a01a913e03bbf183710"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38b0dac2c8e057562b8f0d8ae5b663d2d6a28c5ab624de5b73cef9abb6129a24"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fde3bbb14e92ce8fcb5c2edfff72e474d0080cadda1c97785bf4822f037a309"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9141fb0592e55f98fe9ac0f3ce883199b9c13e262e0bf40c5b18cdf926109d16"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:237bec5dd1bfc9b40bbd786cd27949ef0c0eb5fab5eb491904c6b5df59d39d3c"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18123168cba156ab5794ea6de66db50f21bb3c66ae748d03316e71b27d907b95"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b75fe506c8e02769cc47f5ab21ce3e09b6211d3edaa8f8f27331cb6988779be"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9da82aa4b46973aaf9e03bb4c3d6977004648c8638febfc0f9d237e865761270"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:c34c022d5ad564f1a5a57a4a89793bd70d7bad428150fb8ff2760b223407cdcf"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:1e96c84d6c2a0ca94e15acb5399118fff669f4306beb98a6d8ec6f5dccab4412"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:e8e154b84a311263e1aca86818c962e1fa9eefdd643d1d5d197fcd2738f88cb9"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:335fee93188f8cd585552bb8057228ce0111bd227fa81bfd40b7df6b75def8ab"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win32.whl", hash = "sha256:6729b856166a9e95c278410f73683957ea6100c8a9d0a8dbe434c49663689255"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:0e06d99ad1ad97cb2ef7f51ec6b1fedd74a3a700e4949353871cf331d07b382a"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win_arm64.whl", hash = "sha256:8d1b7082104d596a3eb012e0549b2634ed15015b569f48879701e9d8db959dbb"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:779027d3307e1a2b1dc0c03c34df87a470a368a1a0840a9d2908baf2d4067956"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:440b5608ab12650d0390128d6858bc839ae77ffe5edf0b33a1551f2fa9860651"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82cac41a411e07a6f3dc80dfbd33f6be70ea0abd72e99c59310819d09f07d945"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:958473c9f0bca250590200fd520b75be0dbdbc4a7327dc87a55b6d7dc8d68552"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ef60dfa73749ef91cb6073be1a3e135f4846ec809cc115f3cbfc6fe283a5584"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7fbac18f2c19fc983838a60611e67e3262e36859994c26f2ee85bb268de2355"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a0d519ff39db887cd73f4e297922786d548f5c05d6b51f4e6754f452a7f4296"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bebb7bc6aeb91cc57e4881b222484c26759ca865794187217c9dcea6c33adae6"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fe07f8b9c3bb5c5ad1d2c66884253e03800f4189a60eb6acd6119ebaf3eb9894"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:bfa48a4a2d45a41457f0840c48e579db157a927f4e97acf6e20df8fc521c79de"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:2cf44d01bfe8ee605b7eaeecbc2b9ca64fc55765f17b304b40ed8995f69d7716"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e6bbca9246d9eedaa1c84e04a7f555493ba324d52ae4d9f3d9ddd1b740dcd87"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win32.whl", hash = "sha256:567f88180f2c1423b4fe3f3ad6e6310fc97b85bdba574801548597287fc07028"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:6b2cd7c29d6ecdf0b780deb587198f13213ac01c430ada6913452fd0c40190fc"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win_arm64.whl", hash = "sha256:9f912d459e46607ce276128f52bea21ebc3e9a5ccf4cccfef30dd5bddcf47be8"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ac4452f182243cfab30ba4668ef2de101effaedc30f9faabb06a095a8c90fd16"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:565c2bd4f7d23c32834652b27b51dd711814ab614b4e12add8476be4e20d1cf5"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:187d9747149321607be4ccd6f9f366730078bed806178ec3eeb31d05545e9e8f"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:616290fb9a8fa87e48cb0326d26f98d4e29f17c3b762c2d586f2b35c1fd2034b"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:073a5b107e17ebd264198b78614c0206fa438cce749692af5bc5f8f484883f50"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:39c4983e2e2ccb9732f3ac7d81617088822f4a12291d416b09b8a1eadebb3e29"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ac7adee6bcf0c6fee495d877edad1540a7e0f5fc208da03ccb64734b43522d7a"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:425f4ac80b22153d391ee3f94bc854668a0c6c129f05cf2eaf5ee74474ddb69e"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65a2fa13e8a219f9b5dcb9e74abe3ced5838a7327e629f426d333dfc8c5a6e66"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:75561f3df9a906aaa23787e9992b228b1ab69007932dc42070f747103e177ba8"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:edd062490537e97ca125bc6c7f2b7331c2b73d21dc304615afe61ad1691e15d5"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfcc8feccf63245a22dfdd16e222f1a39771a44b870beb748117a0e09cbb4a62"}, + {file = "rapidfuzz-3.10.1.tar.gz", hash = "sha256:5a15546d847a915b3f42dc79ef9b0c78b998b4e2c53b252e7166284066585979"}, ] [package.extras] @@ -2474,13 +2470,13 @@ torch = ["safetensors[numpy]", "torch (>=1.10)"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml b/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml index c99d71ceba6c..b3b60c10f1c3 100644 --- a/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml +++ b/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.21" +version = "0.2.22" name = "source-microsoft-onedrive" description = "Source implementation for Microsoft OneDrive." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/microsoft-onedrive.md b/docs/integrations/sources/microsoft-onedrive.md index 9634edd0037a..bd70c1dad2e1 100644 --- a/docs/integrations/sources/microsoft-onedrive.md +++ b/docs/integrations/sources/microsoft-onedrive.md @@ -259,6 +259,7 @@ The connector is restricted by normal Microsoft Graph [requests limitation](http | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------| +| 0.2.22 | 2024-10-28 | [47060](https://github.com/airbytehq/airbyte/pull/47060) | Update dependencies | | 0.2.21 | 2024-10-12 | [46177](https://github.com/airbytehq/airbyte/pull/46177) | Update dependencies | | 0.2.20 | 2024-09-21 | [45728](https://github.com/airbytehq/airbyte/pull/45728) | Update dependencies | | 0.2.19 | 2024-09-14 | [45583](https://github.com/airbytehq/airbyte/pull/45583) | Update dependencies | From 44a78b18c58b5b7606dcc7dac8b46d3ae41adb71 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:09:24 +0200 Subject: [PATCH 031/808] =?UTF-8?q?=F0=9F=90=99=20destination-qdrant:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47054)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-qdrant/metadata.yaml | 2 +- .../connectors/destination-qdrant/poetry.lock | 1275 +++++++++-------- .../destination-qdrant/pyproject.toml | 2 +- docs/integrations/destinations/qdrant.md | 1 + 4 files changed, 645 insertions(+), 635 deletions(-) diff --git a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml index 974839fa6bed..84ee4cc4ceba 100644 --- a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml +++ b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 6eb1198a-6d38-43e5-aaaa-dccd8f71db2b - dockerImageTag: 0.1.16 + dockerImageTag: 0.1.17 dockerRepository: airbyte/destination-qdrant githubIssueLabel: destination-qdrant icon: qdrant.svg diff --git a/airbyte-integrations/connectors/destination-qdrant/poetry.lock b/airbyte-integrations/connectors/destination-qdrant/poetry.lock index a1e6e5f53c10..bac88c57d8c2 100644 --- a/airbyte-integrations/connectors/destination-qdrant/poetry.lock +++ b/airbyte-integrations/connectors/destination-qdrant/poetry.lock @@ -208,13 +208,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -225,7 +225,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -766,13 +766,13 @@ files = [ [[package]] name = "et-xmlfile" -version = "1.1.0" +version = "2.0.0" description = "An implementation of lxml.xmlfile for the standard library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, + {file = "et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa"}, + {file = "et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54"}, ] [[package]] @@ -950,99 +950,114 @@ woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] [[package]] name = "frozenlist" -version = "1.4.1" +version = "1.5.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = false python-versions = ">=3.8" files = [ - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, - {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, - {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, - {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, - {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, - {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, - {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, - {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, - {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, - {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, - {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, - {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, - {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, ] [[package]] name = "fsspec" -version = "2024.9.0" +version = "2024.10.0" description = "File-system specification" optional = false python-versions = ">=3.8" files = [ - {file = "fsspec-2024.9.0-py3-none-any.whl", hash = "sha256:a0947d552d8a6efa72cc2c730b12c41d043509156966cca4fb157b0f2a0c574b"}, - {file = "fsspec-2024.9.0.tar.gz", hash = "sha256:4b0afb90c2f21832df142f292649035d80b421f60a9e1c027802e5a0da2b04e8"}, + {file = "fsspec-2024.10.0-py3-none-any.whl", hash = "sha256:03b9a6785766a4de40368b88906366755e2819e758b83705c88cd7cb5fe81871"}, + {file = "fsspec-2024.10.0.tar.gz", hash = "sha256:eda2d8a4116d4f2429db8550f2457da57279247dd930bb12f821b58391359493"}, ] [package.extras] @@ -1171,137 +1186,137 @@ test = ["objgraph", "psutil"] [[package]] name = "grpcio" -version = "1.66.2" +version = "1.67.0" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.66.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:fe96281713168a3270878255983d2cb1a97e034325c8c2c25169a69289d3ecfa"}, - {file = "grpcio-1.66.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:73fc8f8b9b5c4a03e802b3cd0c18b2b06b410d3c1dcbef989fdeb943bd44aff7"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:03b0b307ba26fae695e067b94cbb014e27390f8bc5ac7a3a39b7723fed085604"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d69ce1f324dc2d71e40c9261d3fdbe7d4c9d60f332069ff9b2a4d8a257c7b2b"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05bc2ceadc2529ab0b227b1310d249d95d9001cd106aa4d31e8871ad3c428d73"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ac475e8da31484efa25abb774674d837b343afb78bb3bcdef10f81a93e3d6bf"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0be4e0490c28da5377283861bed2941d1d20ec017ca397a5df4394d1c31a9b50"}, - {file = "grpcio-1.66.2-cp310-cp310-win32.whl", hash = "sha256:4e504572433f4e72b12394977679161d495c4c9581ba34a88d843eaf0f2fbd39"}, - {file = "grpcio-1.66.2-cp310-cp310-win_amd64.whl", hash = "sha256:2018b053aa15782db2541ca01a7edb56a0bf18c77efed975392583725974b249"}, - {file = "grpcio-1.66.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:2335c58560a9e92ac58ff2bc5649952f9b37d0735608242973c7a8b94a6437d8"}, - {file = "grpcio-1.66.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45a3d462826f4868b442a6b8fdbe8b87b45eb4f5b5308168c156b21eca43f61c"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:a9539f01cb04950fd4b5ab458e64a15f84c2acc273670072abe49a3f29bbad54"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce89f5876662f146d4c1f695dda29d4433a5d01c8681fbd2539afff535da14d4"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d25a14af966438cddf498b2e338f88d1c9706f3493b1d73b93f695c99c5f0e2a"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6001e575b8bbd89eee11960bb640b6da6ae110cf08113a075f1e2051cc596cae"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ea1d062c9230278793820146c95d038dc0f468cbdd172eec3363e42ff1c7d01"}, - {file = "grpcio-1.66.2-cp311-cp311-win32.whl", hash = "sha256:38b68498ff579a3b1ee8f93a05eb48dc2595795f2f62716e797dc24774c1aaa8"}, - {file = "grpcio-1.66.2-cp311-cp311-win_amd64.whl", hash = "sha256:6851de821249340bdb100df5eacfecfc4e6075fa85c6df7ee0eb213170ec8e5d"}, - {file = "grpcio-1.66.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:802d84fd3d50614170649853d121baaaa305de7b65b3e01759247e768d691ddf"}, - {file = "grpcio-1.66.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:80fd702ba7e432994df208f27514280b4b5c6843e12a48759c9255679ad38db8"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:12fda97ffae55e6526825daf25ad0fa37483685952b5d0f910d6405c87e3adb6"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:950da58d7d80abd0ea68757769c9db0a95b31163e53e5bb60438d263f4bed7b7"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e636ce23273683b00410f1971d209bf3689238cf5538d960adc3cdfe80dd0dbd"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a917d26e0fe980b0ac7bfcc1a3c4ad6a9a4612c911d33efb55ed7833c749b0ee"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49f0ca7ae850f59f828a723a9064cadbed90f1ece179d375966546499b8a2c9c"}, - {file = "grpcio-1.66.2-cp312-cp312-win32.whl", hash = "sha256:31fd163105464797a72d901a06472860845ac157389e10f12631025b3e4d0453"}, - {file = "grpcio-1.66.2-cp312-cp312-win_amd64.whl", hash = "sha256:ff1f7882e56c40b0d33c4922c15dfa30612f05fb785074a012f7cda74d1c3679"}, - {file = "grpcio-1.66.2-cp313-cp313-linux_armv7l.whl", hash = "sha256:3b00efc473b20d8bf83e0e1ae661b98951ca56111feb9b9611df8efc4fe5d55d"}, - {file = "grpcio-1.66.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1caa38fb22a8578ab8393da99d4b8641e3a80abc8fd52646f1ecc92bcb8dee34"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c408f5ef75cfffa113cacd8b0c0e3611cbfd47701ca3cdc090594109b9fcbaed"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c806852deaedee9ce8280fe98955c9103f62912a5b2d5ee7e3eaa284a6d8d8e7"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f145cc21836c332c67baa6fc81099d1d27e266401565bf481948010d6ea32d46"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:73e3b425c1e155730273f73e419de3074aa5c5e936771ee0e4af0814631fb30a"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9c509a4f78114cbc5f0740eb3d7a74985fd2eff022971bc9bc31f8bc93e66a3b"}, - {file = "grpcio-1.66.2-cp313-cp313-win32.whl", hash = "sha256:20657d6b8cfed7db5e11b62ff7dfe2e12064ea78e93f1434d61888834bc86d75"}, - {file = "grpcio-1.66.2-cp313-cp313-win_amd64.whl", hash = "sha256:fb70487c95786e345af5e854ffec8cb8cc781bcc5df7930c4fbb7feaa72e1cdf"}, - {file = "grpcio-1.66.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:a18e20d8321c6400185b4263e27982488cb5cdd62da69147087a76a24ef4e7e3"}, - {file = "grpcio-1.66.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:02697eb4a5cbe5a9639f57323b4c37bcb3ab2d48cec5da3dc2f13334d72790dd"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:99a641995a6bc4287a6315989ee591ff58507aa1cbe4c2e70d88411c4dcc0839"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ed71e81782966ffead60268bbda31ea3f725ebf8aa73634d5dda44f2cf3fb9c"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbd27c24a4cc5e195a7f56cfd9312e366d5d61b86e36d46bbe538457ea6eb8dd"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d9a9724a156c8ec6a379869b23ba3323b7ea3600851c91489b871e375f710bc8"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d8d4732cc5052e92cea2f78b233c2e2a52998ac40cd651f40e398893ad0d06ec"}, - {file = "grpcio-1.66.2-cp38-cp38-win32.whl", hash = "sha256:7b2c86457145ce14c38e5bf6bdc19ef88e66c5fee2c3d83285c5aef026ba93b3"}, - {file = "grpcio-1.66.2-cp38-cp38-win_amd64.whl", hash = "sha256:e88264caad6d8d00e7913996030bac8ad5f26b7411495848cc218bd3a9040b6c"}, - {file = "grpcio-1.66.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:c400ba5675b67025c8a9f48aa846f12a39cf0c44df5cd060e23fda5b30e9359d"}, - {file = "grpcio-1.66.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:66a0cd8ba6512b401d7ed46bb03f4ee455839957f28b8d61e7708056a806ba6a"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:06de8ec0bd71be123eec15b0e0d457474931c2c407869b6c349bd9bed4adbac3"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb57870449dfcfac428afbb5a877829fcb0d6db9d9baa1148705739e9083880e"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b672abf90a964bfde2d0ecbce30f2329a47498ba75ce6f4da35a2f4532b7acbc"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad2efdbe90c73b0434cbe64ed372e12414ad03c06262279b104a029d1889d13e"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9c3a99c519f4638e700e9e3f83952e27e2ea10873eecd7935823dab0c1c9250e"}, - {file = "grpcio-1.66.2-cp39-cp39-win32.whl", hash = "sha256:78fa51ebc2d9242c0fc5db0feecc57a9943303b46664ad89921f5079e2e4ada7"}, - {file = "grpcio-1.66.2-cp39-cp39-win_amd64.whl", hash = "sha256:728bdf36a186e7f51da73be7f8d09457a03061be848718d0edf000e709418987"}, - {file = "grpcio-1.66.2.tar.gz", hash = "sha256:563588c587b75c34b928bc428548e5b00ea38c46972181a4d8b75ba7e3f24231"}, + {file = "grpcio-1.67.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:bd79929b3bb96b54df1296cd3bf4d2b770bd1df6c2bdf549b49bab286b925cdc"}, + {file = "grpcio-1.67.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:16724ffc956ea42967f5758c2f043faef43cb7e48a51948ab593570570d1e68b"}, + {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:2b7183c80b602b0ad816315d66f2fb7887614ead950416d60913a9a71c12560d"}, + {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efe32b45dd6d118f5ea2e5deaed417d8a14976325c93812dd831908522b402c9"}, + {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe89295219b9c9e47780a0f1c75ca44211e706d1c598242249fe717af3385ec8"}, + {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa8d025fae1595a207b4e47c2e087cb88d47008494db258ac561c00877d4c8f8"}, + {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f95e15db43e75a534420e04822df91f645664bf4ad21dfaad7d51773c80e6bb4"}, + {file = "grpcio-1.67.0-cp310-cp310-win32.whl", hash = "sha256:a6b9a5c18863fd4b6624a42e2712103fb0f57799a3b29651c0e5b8119a519d65"}, + {file = "grpcio-1.67.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6eb68493a05d38b426604e1dc93bfc0137c4157f7ab4fac5771fd9a104bbaa6"}, + {file = "grpcio-1.67.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:e91d154689639932305b6ea6f45c6e46bb51ecc8ea77c10ef25aa77f75443ad4"}, + {file = "grpcio-1.67.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cb204a742997277da678611a809a8409657b1398aaeebf73b3d9563b7d154c13"}, + {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:ae6de510f670137e755eb2a74b04d1041e7210af2444103c8c95f193340d17ee"}, + {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74b900566bdf68241118f2918d312d3bf554b2ce0b12b90178091ea7d0a17b3d"}, + {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4e95e43447a02aa603abcc6b5e727d093d161a869c83b073f50b9390ecf0fa8"}, + {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0bb94e66cd8f0baf29bd3184b6aa09aeb1a660f9ec3d85da615c5003154bc2bf"}, + {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:82e5bd4b67b17c8c597273663794a6a46a45e44165b960517fe6d8a2f7f16d23"}, + {file = "grpcio-1.67.0-cp311-cp311-win32.whl", hash = "sha256:7fc1d2b9fd549264ae585026b266ac2db53735510a207381be509c315b4af4e8"}, + {file = "grpcio-1.67.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac11ecb34a86b831239cc38245403a8de25037b448464f95c3315819e7519772"}, + {file = "grpcio-1.67.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:227316b5631260e0bef8a3ce04fa7db4cc81756fea1258b007950b6efc90c05d"}, + {file = "grpcio-1.67.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d90cfdafcf4b45a7a076e3e2a58e7bc3d59c698c4f6470b0bb13a4d869cf2273"}, + {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:77196216d5dd6f99af1c51e235af2dd339159f657280e65ce7e12c1a8feffd1d"}, + {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15c05a26a0f7047f720da41dc49406b395c1470eef44ff7e2c506a47ac2c0591"}, + {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3840994689cc8cbb73d60485c594424ad8adb56c71a30d8948d6453083624b52"}, + {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:5a1e03c3102b6451028d5dc9f8591131d6ab3c8a0e023d94c28cb930ed4b5f81"}, + {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:682968427a63d898759474e3b3178d42546e878fdce034fd7474ef75143b64e3"}, + {file = "grpcio-1.67.0-cp312-cp312-win32.whl", hash = "sha256:d01793653248f49cf47e5695e0a79805b1d9d4eacef85b310118ba1dfcd1b955"}, + {file = "grpcio-1.67.0-cp312-cp312-win_amd64.whl", hash = "sha256:985b2686f786f3e20326c4367eebdaed3e7aa65848260ff0c6644f817042cb15"}, + {file = "grpcio-1.67.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:8c9a35b8bc50db35ab8e3e02a4f2a35cfba46c8705c3911c34ce343bd777813a"}, + {file = "grpcio-1.67.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:42199e704095b62688998c2d84c89e59a26a7d5d32eed86d43dc90e7a3bd04aa"}, + {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c4c425f440fb81f8d0237c07b9322fc0fb6ee2b29fbef5f62a322ff8fcce240d"}, + {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:323741b6699cd2b04a71cb38f502db98f90532e8a40cb675393d248126a268af"}, + {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:662c8e105c5e5cee0317d500eb186ed7a93229586e431c1bf0c9236c2407352c"}, + {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f6bd2ab135c64a4d1e9e44679a616c9bc944547357c830fafea5c3caa3de5153"}, + {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:2f55c1e0e2ae9bdd23b3c63459ee4c06d223b68aeb1961d83c48fb63dc29bc03"}, + {file = "grpcio-1.67.0-cp313-cp313-win32.whl", hash = "sha256:fd6bc27861e460fe28e94226e3673d46e294ca4673d46b224428d197c5935e69"}, + {file = "grpcio-1.67.0-cp313-cp313-win_amd64.whl", hash = "sha256:cf51d28063338608cd8d3cd64677e922134837902b70ce00dad7f116e3998210"}, + {file = "grpcio-1.67.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:7f200aca719c1c5dc72ab68be3479b9dafccdf03df530d137632c534bb6f1ee3"}, + {file = "grpcio-1.67.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0892dd200ece4822d72dd0952f7112c542a487fc48fe77568deaaa399c1e717d"}, + {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:f4d613fbf868b2e2444f490d18af472ccb47660ea3df52f068c9c8801e1f3e85"}, + {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c69bf11894cad9da00047f46584d5758d6ebc9b5950c0dc96fec7e0bce5cde9"}, + {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9bca3ca0c5e74dea44bf57d27e15a3a3996ce7e5780d61b7c72386356d231db"}, + {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:014dfc020e28a0d9be7e93a91f85ff9f4a87158b7df9952fe23cc42d29d31e1e"}, + {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d4ea4509d42c6797539e9ec7496c15473177ce9abc89bc5c71e7abe50fc25737"}, + {file = "grpcio-1.67.0-cp38-cp38-win32.whl", hash = "sha256:9d75641a2fca9ae1ae86454fd25d4c298ea8cc195dbc962852234d54a07060ad"}, + {file = "grpcio-1.67.0-cp38-cp38-win_amd64.whl", hash = "sha256:cff8e54d6a463883cda2fab94d2062aad2f5edd7f06ae3ed030f2a74756db365"}, + {file = "grpcio-1.67.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:62492bd534979e6d7127b8a6b29093161a742dee3875873e01964049d5250a74"}, + {file = "grpcio-1.67.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eef1dce9d1a46119fd09f9a992cf6ab9d9178b696382439446ca5f399d7b96fe"}, + {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:f623c57a5321461c84498a99dddf9d13dac0e40ee056d884d6ec4ebcab647a78"}, + {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54d16383044e681f8beb50f905249e4e7261dd169d4aaf6e52eab67b01cbbbe2"}, + {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2a44e572fb762c668e4812156b81835f7aba8a721b027e2d4bb29fb50ff4d33"}, + {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:391df8b0faac84d42f5b8dfc65f5152c48ed914e13c522fd05f2aca211f8bfad"}, + {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cfd9306511fdfc623a1ba1dc3bc07fbd24e6cfbe3c28b4d1e05177baa2f99617"}, + {file = "grpcio-1.67.0-cp39-cp39-win32.whl", hash = "sha256:30d47dbacfd20cbd0c8be9bfa52fdb833b395d4ec32fe5cff7220afc05d08571"}, + {file = "grpcio-1.67.0-cp39-cp39-win_amd64.whl", hash = "sha256:f55f077685f61f0fbd06ea355142b71e47e4a26d2d678b3ba27248abfe67163a"}, + {file = "grpcio-1.67.0.tar.gz", hash = "sha256:e090b2553e0da1c875449c8e75073dd4415dd71c9bde6a406240fdf4c0ee467c"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.66.2)"] +protobuf = ["grpcio-tools (>=1.67.0)"] [[package]] name = "grpcio-tools" -version = "1.66.2" +version = "1.67.0" description = "Protobuf code generator for gRPC" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio_tools-1.66.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:40b7ad804ff78490408177cfe87427d5a67224f82a2bdfabe9d8d6ac6239733b"}, - {file = "grpcio_tools-1.66.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:a886fa2ff9e897b35489557d1c61cbc0e4efc42c4dc0d120a9516f294fefb107"}, - {file = "grpcio_tools-1.66.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:1d5e22b2c7f5b453462c85aa66f99961d5c7b275d1c60b84fe847c06c73c9400"}, - {file = "grpcio_tools-1.66.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a425b2600ad4fcf887107ee975a9b7c20478c2959c58b12af7f36577d7a7f7b3"}, - {file = "grpcio_tools-1.66.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef979af76b0cd3f5235d3ec30e86a4f0acc0eab179e796ddbb481aa351a1e6ca"}, - {file = "grpcio_tools-1.66.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:99638043e1a78b8617f31b676f1ecf248d75a45b318776af3acc48a85c8e10a2"}, - {file = "grpcio_tools-1.66.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0a465850c7e5c4ab588c7b7275d47781e9c0ee397a8faf4977262592f95e1831"}, - {file = "grpcio_tools-1.66.2-cp310-cp310-win32.whl", hash = "sha256:48997b704d2fcf59d922228c7a79fcd35d52ca8b2202e5cfe193962643b8354f"}, - {file = "grpcio_tools-1.66.2-cp310-cp310-win_amd64.whl", hash = "sha256:ab4eda584ba2e647e9bb5098f5e4e8d370a333761bf33924e9a7c14f069c8b08"}, - {file = "grpcio_tools-1.66.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:007750b4db62018e441f8401fa567aa11174ae0173826cbbe54982fdf2383067"}, - {file = "grpcio_tools-1.66.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:18554bc91640b2f1ce18aa5c6bebd51500ca0b43b5df4e700e6f76522e2b0e94"}, - {file = "grpcio_tools-1.66.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:3fe2fc2e4a16d745cae01e1348b401378e58ced920ff759a6b4b85a7ad507896"}, - {file = "grpcio_tools-1.66.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0933420362621d8792fea9350f0c82c514da5f93888d1476c37d9e3722d260b0"}, - {file = "grpcio_tools-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3aef5abd34bea8ea98448cd58a938992238c4717df93d12f84fa5f56efb11d0"}, - {file = "grpcio_tools-1.66.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7afd9eb9be413a731cff7ad638081795a7ed0fec4b23af5cec2099fbd9d742f9"}, - {file = "grpcio_tools-1.66.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fd1fa95188ae7d5460a8c4a2abcb2777fdf9c3b80d592a2e8434c52a6eb48e8d"}, - {file = "grpcio_tools-1.66.2-cp311-cp311-win32.whl", hash = "sha256:80c233215cf0f08353b7aac4e86cdedf4d545ed368a7491ccc9996e5a317dce4"}, - {file = "grpcio_tools-1.66.2-cp311-cp311-win_amd64.whl", hash = "sha256:2a9a376b300aa2b4da8e6c4f6f746e824d3f24eefeac2753ffffe2b9f37d156d"}, - {file = "grpcio_tools-1.66.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:d8ca76fc40a7d35ddf1229afd04408e2ff94caf4385068c8b147e064e951e0ba"}, - {file = "grpcio_tools-1.66.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:6cc3da6994d575c425c74ce33e34b86a975ea7e78bb9c3525e8439a3af3c508f"}, - {file = "grpcio_tools-1.66.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:89e437ced43275e7427cc82a837f5cd43ebe18a1080b0e50a47627895b44b0e6"}, - {file = "grpcio_tools-1.66.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d95f030e708266d7fd6d3e5d56e30a9bbbe230604856b1fe93edd892e4389aab"}, - {file = "grpcio_tools-1.66.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b3cf9ae67f8bb431ab3ff60db75c3586dc5aa993be4b15bd7cad651362563cd"}, - {file = "grpcio_tools-1.66.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:b4896a0853fc402273e908c0a0710d25242f1ae907efb9d22ba6d82d4ba00ad8"}, - {file = "grpcio_tools-1.66.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:d31aad10f90fccb0073bc03b4d1b67690ef4f0cd9af96e82944b9cc655d12b6f"}, - {file = "grpcio_tools-1.66.2-cp312-cp312-win32.whl", hash = "sha256:d8f976f35683e49467d0bf2b90c170ac5443cd162d48d8d868801fd0d87a5fa8"}, - {file = "grpcio_tools-1.66.2-cp312-cp312-win_amd64.whl", hash = "sha256:b2c19e5a888a6ee48ba699581a90c04806b2a93f574f37449c359ec17a793669"}, - {file = "grpcio_tools-1.66.2-cp313-cp313-linux_armv7l.whl", hash = "sha256:7e8c9aa91a9e51199048202e3c54491e0a89fb3ac47dde36ff2964fbcee143a3"}, - {file = "grpcio_tools-1.66.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:0eaedd3c77824c3762b728c485f91097a58116fa135f3bbc24703621476cd866"}, - {file = "grpcio_tools-1.66.2-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:a14007902fb6565c21815da4177105ec905ef37f0550190c4d1bbeb2928c6560"}, - {file = "grpcio_tools-1.66.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:df8f098bb92d192230f3b23df514b139f3549e2a4390d1f0f0d8ff89de458c54"}, - {file = "grpcio_tools-1.66.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c68642829368f4f83929e0df571dbbc99f1f1553555d8f98d0582da9f6743d9e"}, - {file = "grpcio_tools-1.66.2-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:5fd20110d2c7706dfdd95457807acb8c050253be2e272b9f5fb977e87ea44d86"}, - {file = "grpcio_tools-1.66.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:4b16244be4cff92408eb82901b883a70f3dd902fb7c7f66e2a368271be84cde4"}, - {file = "grpcio_tools-1.66.2-cp313-cp313-win32.whl", hash = "sha256:d872ba3bbe9e15b43eeb9310dad5edbf490bb3ab0072a46b3a12fed0234eec23"}, - {file = "grpcio_tools-1.66.2-cp313-cp313-win_amd64.whl", hash = "sha256:a2810921218471aab5c8cd20204d3b1886aa8e13b495e882158bb398982cf18e"}, - {file = "grpcio_tools-1.66.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:538eb263b9969e866619775df341307ece0b09afce091ede8141c5bb4d7d8933"}, - {file = "grpcio_tools-1.66.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:9a68c71bb1358f0994fc7d0f0d70a0d419d57507faa25c982145be401f6aca48"}, - {file = "grpcio_tools-1.66.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:1bc41d5b36d414bb0940aa50e30d624903a2538f9387ae730953675adcbe1498"}, - {file = "grpcio_tools-1.66.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c43dcd3ee13418545ea10416f46296ddbc7fb355cf136ddebd3b3f881a383168"}, - {file = "grpcio_tools-1.66.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dc16f9e6baafed315846e79a746513863e6ecbb89e9c98d872834e44f9e87a5"}, - {file = "grpcio_tools-1.66.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3655c96eef8aac2a610bbf4cb9c7839fcff09f07a609b74408b3b0a136e1ef57"}, - {file = "grpcio_tools-1.66.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:86d971fc64e63642058ac01ce2e484a8340d60a95ead0dc6697ef2aa18a7b936"}, - {file = "grpcio_tools-1.66.2-cp38-cp38-win32.whl", hash = "sha256:c14db004b28ee2adefc6d36107d7fdf770f7509bd1f1ecd195eecb88cdbe5d96"}, - {file = "grpcio_tools-1.66.2-cp38-cp38-win_amd64.whl", hash = "sha256:c65f12474634195ff5ed91b304412b80008c067d28226c26b4e451ea9da16b24"}, - {file = "grpcio_tools-1.66.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:75c6a25a5cf729c4606c388013cf7c59dda99cf3718c24fe4fd52b06c19955d0"}, - {file = "grpcio_tools-1.66.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a5146e780ed87348d84b11fc3843741e676b2a84d493363bf0b4ae31c56841b"}, - {file = "grpcio_tools-1.66.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:c42ba1b24e701544bf08a43bb2d63d56dedd0fd33a5b499c9cf85e15aa154b13"}, - {file = "grpcio_tools-1.66.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5daf9807260e172ffcc5dd582c01f60bac820f99f0151a507c8a537f9e6dceb8"}, - {file = "grpcio_tools-1.66.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a15a4d0f4eba3773dabe07113b42e018a8fa9a28441483ada111991d5c1468b6"}, - {file = "grpcio_tools-1.66.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:cc4f65cd189832676dca16046a4b6247d0bc1fc20648d16ac7fb0b075d1658f4"}, - {file = "grpcio_tools-1.66.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ba63dbcbb8ade67e5a04dd3a6c5860efb454bda6d5e8558b17c9a7251339ce36"}, - {file = "grpcio_tools-1.66.2-cp39-cp39-win32.whl", hash = "sha256:c4df0f547f4193dfa6689949b374974f08d81f129174738f0410ba8d45dc63be"}, - {file = "grpcio_tools-1.66.2-cp39-cp39-win_amd64.whl", hash = "sha256:0cad9ffe5df7801201773b91f14923cf3e20ca764e418ae7f8cb75f6045a0aa1"}, - {file = "grpcio_tools-1.66.2.tar.gz", hash = "sha256:4a36e07913d26ba5ccfd2685ba63ca97f26b08c249d2cc9e74dda37efa49d7e4"}, + {file = "grpcio_tools-1.67.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:12aa38af76b5ef00a55808c7c374ed18d5dc7cc8081b717e56da3c50df1776e2"}, + {file = "grpcio_tools-1.67.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:b0b03d055127bbc7c629454804b53b5cad2cedfcf904576d159a8a04c22b8e66"}, + {file = "grpcio_tools-1.67.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:02b0b50c59a8f7428326197027a2f586d216c46138c547f861533c46bff78bfe"}, + {file = "grpcio_tools-1.67.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2afdfe151ed9edbd4a3fd646716f83b58010769c57f9c0aa1cf4c3bfb1240a8"}, + {file = "grpcio_tools-1.67.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc3eeb87575b2b360c5ef5aef22eb76cfdd6a255d2f628a48ab0e5a61a0039fb"}, + {file = "grpcio_tools-1.67.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ead78089c4771605a1ff8894e47f2267440693f1beeee06fd5a788aede83370f"}, + {file = "grpcio_tools-1.67.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0671dcdccef09ca4eb415c1d6f470a857c6486733c146676f6810a3ade1d42cb"}, + {file = "grpcio_tools-1.67.0-cp310-cp310-win32.whl", hash = "sha256:a7398d90b8c7da479aec8f853d3664d5a93c209f8ac3bd41cb7ae4e8677a45c6"}, + {file = "grpcio_tools-1.67.0-cp310-cp310-win_amd64.whl", hash = "sha256:f7e7d70a74df7e07be7cceaa694b7e8e5f3bef8e0299906f60885ecf7a40adb4"}, + {file = "grpcio_tools-1.67.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:655716bf931a22a090134d87953710033640996d31e36f5f9b0106ff5f552d8e"}, + {file = "grpcio_tools-1.67.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:484ae782f9d3ff58e0bbb2f4cad14d5f5d9132fc701835b1dffd2c2a06f73ba6"}, + {file = "grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:f3e34de876efe1273f91e25ef241e449ed7f9411472dd9ff56d2039618017c30"}, + {file = "grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8301719edde2c3d388995703cdd962f558b76e9750405f772dce61402e4c3d0"}, + {file = "grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1629ea246044ccd473d9ac4c9f137a440d830b5e08d35225e1b354dbbb15b75d"}, + {file = "grpcio_tools-1.67.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d77a3c5cec0065267ca1a0b2589ececd1277ce25aa67f13ec50c816ee6f26f7f"}, + {file = "grpcio_tools-1.67.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c9bf992bcc7d9e6eaa20705056e1b955593092a38cec1746fef389d873ab2056"}, + {file = "grpcio_tools-1.67.0-cp311-cp311-win32.whl", hash = "sha256:7e6e3db119c38629e0767cdb2ee18726ecc87e2249117d4c9e7ce06ea8c894ea"}, + {file = "grpcio_tools-1.67.0-cp311-cp311-win_amd64.whl", hash = "sha256:c6c27aec301a0e6cf231f9ee1c467c64002af51170fa7c0f3bb10bbfcd03fee7"}, + {file = "grpcio_tools-1.67.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:dca7f053cbdb26a587d4410ddb893877c585fb60a31f22fdd128e4f7c4dab27c"}, + {file = "grpcio_tools-1.67.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:de8c4f68ffa690769d84329c17c7fdd5fbe4c61b8f8a0de03f1ad8ef8bb06963"}, + {file = "grpcio_tools-1.67.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:6e4ecb24c27a78f09fead45d4ed873805d6026124ccb6793b6fb93a490b78ddf"}, + {file = "grpcio_tools-1.67.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:004d6ef1b5f724480f05c0bdc904bf8c78c43d633c537d99abe51b52ce0cadeb"}, + {file = "grpcio_tools-1.67.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dd257072c86eb9b36791b3674a513a215ba76bbdd38fc228f0e8c6dc5ce3524"}, + {file = "grpcio_tools-1.67.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a8cca551317ed26e17d13b6ee27b2bd62f5fe9b3842b4e88389deb984f995848"}, + {file = "grpcio_tools-1.67.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a7ac3b4f837c693142f6688b629d1f6408f6ab250d927159b572555f5339fe25"}, + {file = "grpcio_tools-1.67.0-cp312-cp312-win32.whl", hash = "sha256:95feec33388e2a8f72c360a68efe6f0bfed9c771e94d21b7f2359d0010f60219"}, + {file = "grpcio_tools-1.67.0-cp312-cp312-win_amd64.whl", hash = "sha256:50a31d035193ebe7154181eac84734e25bdcdb36adba849d3b2adf1c3b0c382b"}, + {file = "grpcio_tools-1.67.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:9ecb7c2e5da052a3feaeaa83d8f2a946a8feec8a50751b0e6175da982b49ebb1"}, + {file = "grpcio_tools-1.67.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:3c52164f2b9d41c6d75464bb45f45737dcb421e92e98d85d94fda100c67a24d8"}, + {file = "grpcio_tools-1.67.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:471f58b919767290260d427dd9b760796e6208ee5fcda2f76bb8bd585ff842ec"}, + {file = "grpcio_tools-1.67.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72c6bcdf38f672721c093c92b1fb1f9a02a365acc5bd42e1c69fe6e904b26081"}, + {file = "grpcio_tools-1.67.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:833b1eb9c03d28a798294523f75294055eff78fa897adf797876337b901afeb9"}, + {file = "grpcio_tools-1.67.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:1db92ad6ade1946fc5705eb04956fcfdb3a0a4682de8dc3fce31cb97b6e4fcb8"}, + {file = "grpcio_tools-1.67.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:38128310ded818e1044c0cd0979d76f7c0d3c3946a526a8aa39cd258624c3bf3"}, + {file = "grpcio_tools-1.67.0-cp313-cp313-win32.whl", hash = "sha256:db57930dc20ab678311727883bdb9f122daf06c14f3fd3067c9ccedb7eb056c3"}, + {file = "grpcio_tools-1.67.0-cp313-cp313-win_amd64.whl", hash = "sha256:7de44d8d3bb920a4973a559f2950d03382fa4aed4880306416ffa73d24838477"}, + {file = "grpcio_tools-1.67.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:793896648734aad3ad8f26795dcdd6040aecd35efef43fcbb67d221373e6379a"}, + {file = "grpcio_tools-1.67.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:941418cba6a8adfcac3ff7ff3bdef00b55a44d673634c15bddcfa7778e49239e"}, + {file = "grpcio_tools-1.67.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:0d63ff6be6f3d0294249fc7a21f26f06c9cc209130c5328907cd678406d7d232"}, + {file = "grpcio_tools-1.67.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:af80ced3ba49377ef7bec93e9ccbfa357875460e9a624ed12d9a7d5348741a76"}, + {file = "grpcio_tools-1.67.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3c3fbb4a6d10764295540579492397bc7a3334e1a92dd17a4bc7b69159cf70a"}, + {file = "grpcio_tools-1.67.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a05c10fb783f609d16e1f754ebad9bb432a1adbfc46139d154e8fd6b15f59988"}, + {file = "grpcio_tools-1.67.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ea8af001f08c678ab59e2bf2614d8b09d62210e540f7af1129c172fe4fd330c7"}, + {file = "grpcio_tools-1.67.0-cp38-cp38-win32.whl", hash = "sha256:004d329aee385fa874979196e5359a967c370d31813f61eba88043ccaa2e06d8"}, + {file = "grpcio_tools-1.67.0-cp38-cp38-win_amd64.whl", hash = "sha256:fc43593bd051abb73a5d130fc041923144089ac459fb01165960106ebb686fd0"}, + {file = "grpcio_tools-1.67.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:d285c036ddfc2618c4db60b584409dd8313d41473bd46177c763ea22ed9aeb1f"}, + {file = "grpcio_tools-1.67.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:623fdad489447e1565d0ba5a818d54b4e74cd73800b6a32c4c009601c7f7a36c"}, + {file = "grpcio_tools-1.67.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:24536af8a5f8e532fbd996c1763eff51526d1d1563f9499ff5ffffb9a08811f3"}, + {file = "grpcio_tools-1.67.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd64a9a8eb675dd2aa59cb4b2ab025a3b02ae1bb9e483c7fb518ffa0f0755cda"}, + {file = "grpcio_tools-1.67.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94378bc90fb008b0a56237748aa42c787fd86c392e7df3d65f0fe7fcd93844a"}, + {file = "grpcio_tools-1.67.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d0f39a9d860a6768574cd77b5d9ad81513fa1c575d3a050d4e72e6d79dcd62f3"}, + {file = "grpcio_tools-1.67.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c578f1306bfd0dd0668e24f8c04d61529928de2660217022a947a56be177bc2d"}, + {file = "grpcio_tools-1.67.0-cp39-cp39-win32.whl", hash = "sha256:0c2cf8d09bdc05e0550ad413e0bc0d552500bb7f98d36079b7b9d38e064e02f7"}, + {file = "grpcio_tools-1.67.0-cp39-cp39-win_amd64.whl", hash = "sha256:cc570bcd9c9681bb011f746ea90cc50559be629227aaaaae9fde8549525f0287"}, + {file = "grpcio_tools-1.67.0.tar.gz", hash = "sha256:181b3d4e61b83142c182ec366f3079b0023509743986e54c9465ca38cac255f8"}, ] [package.dependencies] -grpcio = ">=1.66.2" +grpcio = ">=1.67.0" protobuf = ">=5.26.1,<6.0dev" setuptools = "*" @@ -1842,13 +1857,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -1878,92 +1893,92 @@ dev = ["Sphinx (==7.2.5)", "colorama (==0.4.5)", "colorama (==0.4.6)", "exceptio [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.22.0" +version = "3.23.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, - {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, + {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, + {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "matplotlib" @@ -2152,38 +2167,43 @@ typing-extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} [[package]] name = "mypy" -version = "1.11.2" +version = "1.13.0" description = "Optional static typing for Python" optional = false python-versions = ">=3.8" files = [ - {file = "mypy-1.11.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d42a6dd818ffce7be66cce644f1dff482f1d97c53ca70908dff0b9ddc120b77a"}, - {file = "mypy-1.11.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:801780c56d1cdb896eacd5619a83e427ce436d86a3bdf9112527f24a66618fef"}, - {file = "mypy-1.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41ea707d036a5307ac674ea172875f40c9d55c5394f888b168033177fce47383"}, - {file = "mypy-1.11.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6e658bd2d20565ea86da7d91331b0eed6d2eee22dc031579e6297f3e12c758c8"}, - {file = "mypy-1.11.2-cp310-cp310-win_amd64.whl", hash = "sha256:478db5f5036817fe45adb7332d927daa62417159d49783041338921dcf646fc7"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75746e06d5fa1e91bfd5432448d00d34593b52e7e91a187d981d08d1f33d4385"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a976775ab2256aadc6add633d44f100a2517d2388906ec4f13231fafbb0eccca"}, - {file = "mypy-1.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cd953f221ac1379050a8a646585a29574488974f79d8082cedef62744f0a0104"}, - {file = "mypy-1.11.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:57555a7715c0a34421013144a33d280e73c08df70f3a18a552938587ce9274f4"}, - {file = "mypy-1.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:36383a4fcbad95f2657642a07ba22ff797de26277158f1cc7bd234821468b1b6"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e8960dbbbf36906c5c0b7f4fbf2f0c7ffb20f4898e6a879fcf56a41a08b0d318"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06d26c277962f3fb50e13044674aa10553981ae514288cb7d0a738f495550b36"}, - {file = "mypy-1.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6e7184632d89d677973a14d00ae4d03214c8bc301ceefcdaf5c474866814c987"}, - {file = "mypy-1.11.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3a66169b92452f72117e2da3a576087025449018afc2d8e9bfe5ffab865709ca"}, - {file = "mypy-1.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:969ea3ef09617aff826885a22ece0ddef69d95852cdad2f60c8bb06bf1f71f70"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:37c7fa6121c1cdfcaac97ce3d3b5588e847aa79b580c1e922bb5d5d2902df19b"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a8a53bc3ffbd161b5b2a4fff2f0f1e23a33b0168f1c0778ec70e1a3d66deb86"}, - {file = "mypy-1.11.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2ff93107f01968ed834f4256bc1fc4475e2fecf6c661260066a985b52741ddce"}, - {file = "mypy-1.11.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:edb91dded4df17eae4537668b23f0ff6baf3707683734b6a818d5b9d0c0c31a1"}, - {file = "mypy-1.11.2-cp38-cp38-win_amd64.whl", hash = "sha256:ee23de8530d99b6db0573c4ef4bd8f39a2a6f9b60655bf7a1357e585a3486f2b"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:801ca29f43d5acce85f8e999b1e431fb479cb02d0e11deb7d2abb56bdaf24fd6"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af8d155170fcf87a2afb55b35dc1a0ac21df4431e7d96717621962e4b9192e70"}, - {file = "mypy-1.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7821776e5c4286b6a13138cc935e2e9b6fde05e081bdebf5cdb2bb97c9df81d"}, - {file = "mypy-1.11.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:539c570477a96a4e6fb718b8d5c3e0c0eba1f485df13f86d2970c91f0673148d"}, - {file = "mypy-1.11.2-cp39-cp39-win_amd64.whl", hash = "sha256:3f14cd3d386ac4d05c5a39a51b84387403dadbd936e17cb35882134d4f8f0d24"}, - {file = "mypy-1.11.2-py3-none-any.whl", hash = "sha256:b499bc07dbdcd3de92b0a8b29fdf592c111276f6a12fe29c30f6c417dd546d12"}, - {file = "mypy-1.11.2.tar.gz", hash = "sha256:7f9993ad3e0ffdc95c2a14b66dee63729f021968bff8ad911867579c65d13a79"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, ] [package.dependencies] @@ -2193,6 +2213,7 @@ typing-extensions = ">=4.6.0" [package.extras] dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] install-types = ["pip"] mypyc = ["setuptools (>=50)"] reports = ["lxml"] @@ -2384,68 +2405,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -2595,95 +2617,90 @@ pytzdata = ">=2020.1" [[package]] name = "pillow" -version = "10.4.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, - {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, - {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, - {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, - {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, - {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, - {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, - {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, - {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, - {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, - {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, - {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, - {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, - {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, - {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, - {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, - {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, - {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, - {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, - {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -2864,22 +2881,22 @@ files = [ [[package]] name = "protobuf" -version = "5.28.2" +version = "5.28.3" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-5.28.2-cp310-abi3-win32.whl", hash = "sha256:eeea10f3dc0ac7e6b4933d32db20662902b4ab81bf28df12218aa389e9c2102d"}, - {file = "protobuf-5.28.2-cp310-abi3-win_amd64.whl", hash = "sha256:2c69461a7fcc8e24be697624c09a839976d82ae75062b11a0972e41fd2cd9132"}, - {file = "protobuf-5.28.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a8b9403fc70764b08d2f593ce44f1d2920c5077bf7d311fefec999f8c40f78b7"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:35cfcb15f213449af7ff6198d6eb5f739c37d7e4f1c09b5d0641babf2cc0c68f"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:5e8a95246d581eef20471b5d5ba010d55f66740942b95ba9b872d918c459452f"}, - {file = "protobuf-5.28.2-cp38-cp38-win32.whl", hash = "sha256:87317e9bcda04a32f2ee82089a204d3a2f0d3c8aeed16568c7daf4756e4f1fe0"}, - {file = "protobuf-5.28.2-cp38-cp38-win_amd64.whl", hash = "sha256:c0ea0123dac3399a2eeb1a1443d82b7afc9ff40241433296769f7da42d142ec3"}, - {file = "protobuf-5.28.2-cp39-cp39-win32.whl", hash = "sha256:ca53faf29896c526863366a52a8f4d88e69cd04ec9571ed6082fa117fac3ab36"}, - {file = "protobuf-5.28.2-cp39-cp39-win_amd64.whl", hash = "sha256:8ddc60bf374785fb7cb12510b267f59067fa10087325b8e1855b898a0d81d276"}, - {file = "protobuf-5.28.2-py3-none-any.whl", hash = "sha256:52235802093bd8a2811abbe8bf0ab9c5f54cca0a751fdd3f6ac2a21438bffece"}, - {file = "protobuf-5.28.2.tar.gz", hash = "sha256:59379674ff119717404f7454647913787034f03fe7049cbef1d74a97bb4593f0"}, + {file = "protobuf-5.28.3-cp310-abi3-win32.whl", hash = "sha256:0c4eec6f987338617072592b97943fdbe30d019c56126493111cf24344c1cc24"}, + {file = "protobuf-5.28.3-cp310-abi3-win_amd64.whl", hash = "sha256:91fba8f445723fcf400fdbe9ca796b19d3b1242cd873907979b9ed71e4afe868"}, + {file = "protobuf-5.28.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a3f6857551e53ce35e60b403b8a27b0295f7d6eb63d10484f12bc6879c715687"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:3fa2de6b8b29d12c61911505d893afe7320ce7ccba4df913e2971461fa36d584"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:712319fbdddb46f21abb66cd33cb9e491a5763b2febd8f228251add221981135"}, + {file = "protobuf-5.28.3-cp38-cp38-win32.whl", hash = "sha256:3e6101d095dfd119513cde7259aa703d16c6bbdfae2554dfe5cfdbe94e32d548"}, + {file = "protobuf-5.28.3-cp38-cp38-win_amd64.whl", hash = "sha256:27b246b3723692bf1068d5734ddaf2fccc2cdd6e0c9b47fe099244d80200593b"}, + {file = "protobuf-5.28.3-cp39-cp39-win32.whl", hash = "sha256:135658402f71bbd49500322c0f736145731b16fc79dc8f367ab544a17eab4535"}, + {file = "protobuf-5.28.3-cp39-cp39-win_amd64.whl", hash = "sha256:70585a70fc2dd4818c51287ceef5bdba6387f88a578c86d47bb34669b5552c36"}, + {file = "protobuf-5.28.3-py3-none-any.whl", hash = "sha256:cee1757663fa32a1ee673434fcf3bf24dd54763c79690201208bafec62f19eed"}, + {file = "protobuf-5.28.3.tar.gz", hash = "sha256:64badbc49180a5e401f373f9ce7ab1d18b63f7dd4a9cdc43c92b9f0b481cef7b"}, ] [[package]] @@ -3033,13 +3050,13 @@ tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] name = "pyparsing" -version = "3.1.4" +version = "3.2.0" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.9" files = [ - {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, - {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, + {file = "pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84"}, + {file = "pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c"}, ] [package.extras] @@ -3175,29 +3192,29 @@ files = [ [[package]] name = "pywin32" -version = "307" +version = "308" description = "Python for Window Extensions" optional = false python-versions = "*" files = [ - {file = "pywin32-307-cp310-cp310-win32.whl", hash = "sha256:f8f25d893c1e1ce2d685ef6d0a481e87c6f510d0f3f117932781f412e0eba31b"}, - {file = "pywin32-307-cp310-cp310-win_amd64.whl", hash = "sha256:36e650c5e5e6b29b5d317385b02d20803ddbac5d1031e1f88d20d76676dd103d"}, - {file = "pywin32-307-cp310-cp310-win_arm64.whl", hash = "sha256:0c12d61e0274e0c62acee79e3e503c312426ddd0e8d4899c626cddc1cafe0ff4"}, - {file = "pywin32-307-cp311-cp311-win32.whl", hash = "sha256:fec5d27cc893178fab299de911b8e4d12c5954e1baf83e8a664311e56a272b75"}, - {file = "pywin32-307-cp311-cp311-win_amd64.whl", hash = "sha256:987a86971753ed7fdd52a7fb5747aba955b2c7fbbc3d8b76ec850358c1cc28c3"}, - {file = "pywin32-307-cp311-cp311-win_arm64.whl", hash = "sha256:fd436897c186a2e693cd0437386ed79f989f4d13d6f353f8787ecbb0ae719398"}, - {file = "pywin32-307-cp312-cp312-win32.whl", hash = "sha256:07649ec6b01712f36debf39fc94f3d696a46579e852f60157a729ac039df0815"}, - {file = "pywin32-307-cp312-cp312-win_amd64.whl", hash = "sha256:00d047992bb5dcf79f8b9b7c81f72e0130f9fe4b22df613f755ab1cc021d8347"}, - {file = "pywin32-307-cp312-cp312-win_arm64.whl", hash = "sha256:b53658acbfc6a8241d72cc09e9d1d666be4e6c99376bc59e26cdb6223c4554d2"}, - {file = "pywin32-307-cp313-cp313-win32.whl", hash = "sha256:ea4d56e48dc1ab2aa0a5e3c0741ad6e926529510516db7a3b6981a1ae74405e5"}, - {file = "pywin32-307-cp313-cp313-win_amd64.whl", hash = "sha256:576d09813eaf4c8168d0bfd66fb7cb3b15a61041cf41598c2db4a4583bf832d2"}, - {file = "pywin32-307-cp313-cp313-win_arm64.whl", hash = "sha256:b30c9bdbffda6a260beb2919f918daced23d32c79109412c2085cbc513338a0a"}, - {file = "pywin32-307-cp37-cp37m-win32.whl", hash = "sha256:5101472f5180c647d4525a0ed289ec723a26231550dbfd369ec19d5faf60e511"}, - {file = "pywin32-307-cp37-cp37m-win_amd64.whl", hash = "sha256:05de55a7c110478dc4b202230e98af5e0720855360d2b31a44bb4e296d795fba"}, - {file = "pywin32-307-cp38-cp38-win32.whl", hash = "sha256:13d059fb7f10792542082f5731d5d3d9645320fc38814759313e5ee97c3fac01"}, - {file = "pywin32-307-cp38-cp38-win_amd64.whl", hash = "sha256:7e0b2f93769d450a98ac7a31a087e07b126b6d571e8b4386a5762eb85325270b"}, - {file = "pywin32-307-cp39-cp39-win32.whl", hash = "sha256:55ee87f2f8c294e72ad9d4261ca423022310a6e79fb314a8ca76ab3f493854c6"}, - {file = "pywin32-307-cp39-cp39-win_amd64.whl", hash = "sha256:e9d5202922e74985b037c9ef46778335c102b74b95cec70f629453dbe7235d87"}, + {file = "pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"}, + {file = "pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"}, + {file = "pywin32-308-cp310-cp310-win_arm64.whl", hash = "sha256:a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c"}, + {file = "pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a"}, + {file = "pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b"}, + {file = "pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6"}, + {file = "pywin32-308-cp312-cp312-win32.whl", hash = "sha256:587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897"}, + {file = "pywin32-308-cp312-cp312-win_amd64.whl", hash = "sha256:00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47"}, + {file = "pywin32-308-cp312-cp312-win_arm64.whl", hash = "sha256:9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091"}, + {file = "pywin32-308-cp313-cp313-win32.whl", hash = "sha256:1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed"}, + {file = "pywin32-308-cp313-cp313-win_amd64.whl", hash = "sha256:fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4"}, + {file = "pywin32-308-cp313-cp313-win_arm64.whl", hash = "sha256:ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd"}, + {file = "pywin32-308-cp37-cp37m-win32.whl", hash = "sha256:1f696ab352a2ddd63bd07430080dd598e6369152ea13a25ebcdd2f503a38f1ff"}, + {file = "pywin32-308-cp37-cp37m-win_amd64.whl", hash = "sha256:13dcb914ed4347019fbec6697a01a0aec61019c1046c2b905410d197856326a6"}, + {file = "pywin32-308-cp38-cp38-win32.whl", hash = "sha256:5794e764ebcabf4ff08c555b31bd348c9025929371763b2183172ff4708152f0"}, + {file = "pywin32-308-cp38-cp38-win_amd64.whl", hash = "sha256:3b92622e29d651c6b783e368ba7d6722b1634b8e70bd376fd7610fe1992e19de"}, + {file = "pywin32-308-cp39-cp39-win32.whl", hash = "sha256:7873ca4dc60ab3287919881a7d4f88baee4a6e639aa6962de25a98ba6b193341"}, + {file = "pywin32-308-cp39-cp39-win_amd64.whl", hash = "sha256:71b3322d949b4cc20776436a9c9ba0eeedcbc9c650daa536df63f0ff111bb920"}, ] [[package]] @@ -3574,13 +3591,13 @@ test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "po [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -3616,60 +3633,68 @@ files = [ [[package]] name = "sqlalchemy" -version = "2.0.35" +version = "2.0.36" description = "Database Abstraction Library" optional = false python-versions = ">=3.7" files = [ - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:67219632be22f14750f0d1c70e62f204ba69d28f62fd6432ba05ab295853de9b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4668bd8faf7e5b71c0319407b608f278f279668f358857dbfd10ef1954ac9f90"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb8bea573863762bbf45d1e13f87c2d2fd32cee2dbd50d050f83f87429c9e1ea"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f552023710d4b93d8fb29a91fadf97de89c5926c6bd758897875435f2a939f33"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:016b2e665f778f13d3c438651dd4de244214b527a275e0acf1d44c05bc6026a9"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7befc148de64b6060937231cbff8d01ccf0bfd75aa26383ffdf8d82b12ec04ff"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win32.whl", hash = "sha256:22b83aed390e3099584b839b93f80a0f4a95ee7f48270c97c90acd40ee646f0b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win_amd64.whl", hash = "sha256:a29762cd3d116585278ffb2e5b8cc311fb095ea278b96feef28d0b423154858e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e21f66748ab725ade40fa7af8ec8b5019c68ab00b929f6643e1b1af461eddb60"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8a6219108a15fc6d24de499d0d515c7235c617b2540d97116b663dade1a54d62"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:042622a5306c23b972192283f4e22372da3b8ddf5f7aac1cc5d9c9b222ab3ff6"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:627dee0c280eea91aed87b20a1f849e9ae2fe719d52cbf847c0e0ea34464b3f7"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4fdcd72a789c1c31ed242fd8c1bcd9ea186a98ee8e5408a50e610edfef980d71"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:89b64cd8898a3a6f642db4eb7b26d1b28a497d4022eccd7717ca066823e9fb01"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win32.whl", hash = "sha256:6a93c5a0dfe8d34951e8a6f499a9479ffb9258123551fa007fc708ae2ac2bc5e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win_amd64.whl", hash = "sha256:c68fe3fcde03920c46697585620135b4ecfdfc1ed23e75cc2c2ae9f8502c10b8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:eb60b026d8ad0c97917cb81d3662d0b39b8ff1335e3fabb24984c6acd0c900a2"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6921ee01caf375363be5e9ae70d08ce7ca9d7e0e8983183080211a062d299468"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cdf1a0dbe5ced887a9b127da4ffd7354e9c1a3b9bb330dce84df6b70ccb3a8d"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93a71c8601e823236ac0e5d087e4f397874a421017b3318fd92c0b14acf2b6db"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e04b622bb8a88f10e439084486f2f6349bf4d50605ac3e445869c7ea5cf0fa8c"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1b56961e2d31389aaadf4906d453859f35302b4eb818d34a26fab72596076bb8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win32.whl", hash = "sha256:0f9f3f9a3763b9c4deb8c5d09c4cc52ffe49f9876af41cc1b2ad0138878453cf"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win_amd64.whl", hash = "sha256:25b0f63e7fcc2a6290cb5f7f5b4fc4047843504983a28856ce9b35d8f7de03cc"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f021d334f2ca692523aaf7bbf7592ceff70c8594fad853416a81d66b35e3abf9"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05c3f58cf91683102f2f0265c0db3bd3892e9eedabe059720492dbaa4f922da1"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:032d979ce77a6c2432653322ba4cbeabf5a6837f704d16fa38b5a05d8e21fa00"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:2e795c2f7d7249b75bb5f479b432a51b59041580d20599d4e112b5f2046437a3"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:cc32b2990fc34380ec2f6195f33a76b6cdaa9eecf09f0c9404b74fc120aef36f"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win32.whl", hash = "sha256:9509c4123491d0e63fb5e16199e09f8e262066e58903e84615c301dde8fa2e87"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win_amd64.whl", hash = "sha256:3655af10ebcc0f1e4e06c5900bb33e080d6a1fa4228f502121f28a3b1753cde5"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4c31943b61ed8fdd63dfd12ccc919f2bf95eefca133767db6fbbd15da62078ec"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a62dd5d7cc8626a3634208df458c5fe4f21200d96a74d122c83bc2015b333bc1"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0630774b0977804fba4b6bbea6852ab56c14965a2b0c7fc7282c5f7d90a1ae72"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d625eddf7efeba2abfd9c014a22c0f6b3796e0ffb48f5d5ab106568ef01ff5a"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ada603db10bb865bbe591939de854faf2c60f43c9b763e90f653224138f910d9"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c41411e192f8d3ea39ea70e0fae48762cd11a2244e03751a98bd3c0ca9a4e936"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win32.whl", hash = "sha256:d299797d75cd747e7797b1b41817111406b8b10a4f88b6e8fe5b5e59598b43b0"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win_amd64.whl", hash = "sha256:0375a141e1c0878103eb3d719eb6d5aa444b490c96f3fedab8471c7f6ffe70ee"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ccae5de2a0140d8be6838c331604f91d6fafd0735dbdcee1ac78fc8fbaba76b4"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2a275a806f73e849e1c309ac11108ea1a14cd7058577aba962cd7190e27c9e3c"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:732e026240cdd1c1b2e3ac515c7a23820430ed94292ce33806a95869c46bd139"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890da8cd1941fa3dab28c5bac3b9da8502e7e366f895b3b8e500896f12f94d11"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c0d8326269dbf944b9201911b0d9f3dc524d64779a07518199a58384c3d37a44"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b76d63495b0508ab9fc23f8152bac63205d2a704cd009a2b0722f4c8e0cba8e0"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win32.whl", hash = "sha256:69683e02e8a9de37f17985905a5eca18ad651bf592314b4d3d799029797d0eb3"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win_amd64.whl", hash = "sha256:aee110e4ef3c528f3abbc3c2018c121e708938adeeff9006428dd7c8555e9b3f"}, - {file = "SQLAlchemy-2.0.35-py3-none-any.whl", hash = "sha256:2ab3f0336c0387662ce6221ad30ab3a5e6499aab01b9790879b6578fd9b8faa1"}, - {file = "sqlalchemy-2.0.35.tar.gz", hash = "sha256:e11d7ea4d24f0a262bccf9a7cd6284c976c5369dac21db237cff59586045ab9f"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:59b8f3adb3971929a3e660337f5dacc5942c2cdb760afcabb2614ffbda9f9f72"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37350015056a553e442ff672c2d20e6f4b6d0b2495691fa239d8aa18bb3bc908"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8318f4776c85abc3f40ab185e388bee7a6ea99e7fa3a30686580b209eaa35c08"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c245b1fbade9c35e5bd3b64270ab49ce990369018289ecfde3f9c318411aaa07"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69f93723edbca7342624d09f6704e7126b152eaed3cdbb634cb657a54332a3c5"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f9511d8dd4a6e9271d07d150fb2f81874a3c8c95e11ff9af3a2dfc35fe42ee44"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win32.whl", hash = "sha256:c3f3631693003d8e585d4200730616b78fafd5a01ef8b698f6967da5c605b3fa"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win_amd64.whl", hash = "sha256:a86bfab2ef46d63300c0f06936bd6e6c0105faa11d509083ba8f2f9d237fb5b5"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fd3a55deef00f689ce931d4d1b23fa9f04c880a48ee97af488fd215cf24e2a6c"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4f5e9cd989b45b73bd359f693b935364f7e1f79486e29015813c338450aa5a71"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0ddd9db6e59c44875211bc4c7953a9f6638b937b0a88ae6d09eb46cced54eff"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2519f3a5d0517fc159afab1015e54bb81b4406c278749779be57a569d8d1bb0d"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59b1ee96617135f6e1d6f275bbe988f419c5178016f3d41d3c0abb0c819f75bb"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:39769a115f730d683b0eb7b694db9789267bcd027326cccc3125e862eb03bfd8"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win32.whl", hash = "sha256:66bffbad8d6271bb1cc2f9a4ea4f86f80fe5e2e3e501a5ae2a3dc6a76e604e6f"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win_amd64.whl", hash = "sha256:23623166bfefe1487d81b698c423f8678e80df8b54614c2bf4b4cfcd7c711959"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f7b64e6ec3f02c35647be6b4851008b26cff592a95ecb13b6788a54ef80bbdd4"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:46331b00096a6db1fdc052d55b101dbbfc99155a548e20a0e4a8e5e4d1362855"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdf3386a801ea5aba17c6410dd1dc8d39cf454ca2565541b5ac42a84e1e28f53"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac9dfa18ff2a67b09b372d5db8743c27966abf0e5344c555d86cc7199f7ad83a"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:90812a8933df713fdf748b355527e3af257a11e415b613dd794512461eb8a686"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1bc330d9d29c7f06f003ab10e1eaced295e87940405afe1b110f2eb93a233588"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win32.whl", hash = "sha256:79d2e78abc26d871875b419e1fd3c0bca31a1cb0043277d0d850014599626c2e"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win_amd64.whl", hash = "sha256:b544ad1935a8541d177cb402948b94e871067656b3a0b9e91dbec136b06a2ff5"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5cc79df7f4bc3d11e4b542596c03826063092611e481fcf1c9dfee3c94355ef"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3c01117dd36800f2ecaa238c65365b7b16497adc1522bf84906e5710ee9ba0e8"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bc633f4ee4b4c46e7adcb3a9b5ec083bf1d9a97c1d3854b92749d935de40b9b"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e46ed38affdfc95d2c958de328d037d87801cfcbea6d421000859e9789e61c2"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b2985c0b06e989c043f1dc09d4fe89e1616aadd35392aea2844f0458a989eacf"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a121d62ebe7d26fec9155f83f8be5189ef1405f5973ea4874a26fab9f1e262c"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win32.whl", hash = "sha256:0572f4bd6f94752167adfd7c1bed84f4b240ee6203a95e05d1e208d488d0d436"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win_amd64.whl", hash = "sha256:8c78ac40bde930c60e0f78b3cd184c580f89456dd87fc08f9e3ee3ce8765ce88"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:be9812b766cad94a25bc63bec11f88c4ad3629a0cec1cd5d4ba48dc23860486b"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aae840ebbd6cdd41af1c14590e5741665e5272d2fee999306673a1bb1fdb4d"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4557e1f11c5f653ebfdd924f3f9d5ebfc718283b0b9beebaa5dd6b77ec290971"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07b441f7d03b9a66299ce7ccf3ef2900abc81c0db434f42a5694a37bd73870f2"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:28120ef39c92c2dd60f2721af9328479516844c6b550b077ca450c7d7dc68575"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win32.whl", hash = "sha256:b81ee3d84803fd42d0b154cb6892ae57ea6b7c55d8359a02379965706c7efe6c"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win_amd64.whl", hash = "sha256:f942a799516184c855e1a32fbc7b29d7e571b52612647866d4ec1c3242578fcb"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3d6718667da04294d7df1670d70eeddd414f313738d20a6f1d1f379e3139a545"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:72c28b84b174ce8af8504ca28ae9347d317f9dba3999e5981a3cd441f3712e24"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b11d0cfdd2b095e7b0686cf5fabeb9c67fae5b06d265d8180715b8cfa86522e3"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e32092c47011d113dc01ab3e1d3ce9f006a47223b18422c5c0d150af13a00687"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6a440293d802d3011028e14e4226da1434b373cbaf4a4bbb63f845761a708346"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c54a1e53a0c308a8e8a7dffb59097bff7facda27c70c286f005327f21b2bd6b1"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win32.whl", hash = "sha256:1e0d612a17581b6616ff03c8e3d5eff7452f34655c901f75d62bd86449d9750e"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win_amd64.whl", hash = "sha256:8958b10490125124463095bbdadda5aa22ec799f91958e410438ad6c97a7b793"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc022184d3e5cacc9579e41805a681187650e170eb2fd70e28b86192a479dcaa"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b817d41d692bf286abc181f8af476c4fbef3fd05e798777492618378448ee689"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4e46a888b54be23d03a89be510f24a7652fe6ff660787b96cd0e57a4ebcb46d"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4ae3005ed83f5967f961fd091f2f8c5329161f69ce8480aa8168b2d7fe37f06"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:03e08af7a5f9386a43919eda9de33ffda16b44eb11f3b313e6822243770e9763"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3dbb986bad3ed5ceaf090200eba750b5245150bd97d3e67343a3cfed06feecf7"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win32.whl", hash = "sha256:9fe53b404f24789b5ea9003fc25b9a3988feddebd7e7b369c8fac27ad6f52f28"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win_amd64.whl", hash = "sha256:af148a33ff0349f53512a049c6406923e4e02bf2f26c5fb285f143faf4f0e46a"}, + {file = "SQLAlchemy-2.0.36-py3-none-any.whl", hash = "sha256:fddbe92b4760c6f5d48162aef14824add991aeda8ddadb3c31d56eb15ca69f8e"}, + {file = "sqlalchemy-2.0.36.tar.gz", hash = "sha256:7f2767680b6d2398aea7082e45a774b2b0767b5c8d8ffb9c8b683088ea9b29c5"}, ] [package.dependencies] @@ -3682,7 +3707,7 @@ aioodbc = ["aioodbc", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5,!=1.1.10)"] mssql = ["pyodbc"] mssql-pymssql = ["pymssql"] mssql-pyodbc = ["pyodbc"] @@ -4135,109 +4160,93 @@ files = [ [[package]] name = "yarl" -version = "1.15.0" +version = "1.16.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19"}, - {file = "yarl-1.15.0-cp310-cp310-win32.whl", hash = "sha256:4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9"}, - {file = "yarl-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1"}, - {file = "yarl-1.15.0-cp311-cp311-win32.whl", hash = "sha256:a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb"}, - {file = "yarl-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d"}, - {file = "yarl-1.15.0-cp312-cp312-win32.whl", hash = "sha256:e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4"}, - {file = "yarl-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e"}, - {file = "yarl-1.15.0-cp313-cp313-win32.whl", hash = "sha256:eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53"}, - {file = "yarl-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738"}, - {file = "yarl-1.15.0-cp38-cp38-win32.whl", hash = "sha256:d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95"}, - {file = "yarl-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9"}, - {file = "yarl-1.15.0-cp39-cp39-win32.whl", hash = "sha256:a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb"}, - {file = "yarl-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0"}, - {file = "yarl-1.15.0-py3-none-any.whl", hash = "sha256:1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5"}, - {file = "yarl-1.15.0.tar.gz", hash = "sha256:efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32468f41242d72b87ab793a86d92f885355bcf35b3355aa650bfa846a5c60058"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:234f3a3032b505b90e65b5bc6652c2329ea7ea8855d8de61e1642b74b4ee65d2"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a0296040e5cddf074c7f5af4a60f3fc42c0237440df7bcf5183be5f6c802ed5"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de6c14dd7c7c0badba48157474ea1f03ebee991530ba742d381b28d4f314d6f3"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b140e532fe0266003c936d017c1ac301e72ee4a3fd51784574c05f53718a55d8"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:019f5d58093402aa8f6661e60fd82a28746ad6d156f6c5336a70a39bd7b162b9"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c42998fd1cbeb53cd985bff0e4bc25fbe55fd6eb3a545a724c1012d69d5ec84"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7c30fb38c300fe8140df30a046a01769105e4cf4282567a29b5cdb635b66c4"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e49e0fd86c295e743fd5be69b8b0712f70a686bc79a16e5268386c2defacaade"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:b9ca7b9147eb1365c8bab03c003baa1300599575effad765e0b07dd3501ea9af"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:27e11db3f1e6a51081a981509f75617b09810529de508a181319193d320bc5c7"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8994c42f4ca25df5380ddf59f315c518c81df6a68fed5bb0c159c6cb6b92f120"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:542fa8e09a581bcdcbb30607c7224beff3fdfb598c798ccd28a8184ffc18b7eb"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2bd6a51010c7284d191b79d3b56e51a87d8e1c03b0902362945f15c3d50ed46b"}, + {file = "yarl-1.16.0-cp310-cp310-win32.whl", hash = "sha256:178ccb856e265174a79f59721031060f885aca428983e75c06f78aa24b91d929"}, + {file = "yarl-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe8bba2545427418efc1929c5c42852bdb4143eb8d0a46b09de88d1fe99258e7"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d8643975a0080f361639787415a038bfc32d29208a4bf6b783ab3075a20b1ef3"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:676d96bafc8c2d0039cea0cd3fd44cee7aa88b8185551a2bb93354668e8315c2"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9525f03269e64310416dbe6c68d3b23e5d34aaa8f47193a1c45ac568cecbc49"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b37d5ec034e668b22cf0ce1074d6c21fd2a08b90d11b1b73139b750a8b0dd97"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f32c4cb7386b41936894685f6e093c8dfaf0960124d91fe0ec29fe439e201d0"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b8e265a0545637492a7e12fd7038370d66c9375a61d88c5567d0e044ded9202"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:789a3423f28a5fff46fbd04e339863c169ece97c827b44de16e1a7a42bc915d2"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1d1f45e3e8d37c804dca99ab3cf4ab3ed2e7a62cd82542924b14c0a4f46d243"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:621280719c4c5dad4c1391160a9b88925bb8b0ff6a7d5af3224643024871675f"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed097b26f18a1f5ff05f661dc36528c5f6735ba4ce8c9645e83b064665131349"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2f1fe2b2e3ee418862f5ebc0c0083c97f6f6625781382f828f6d4e9b614eba9b"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:87dd10bc0618991c66cee0cc65fa74a45f4ecb13bceec3c62d78ad2e42b27a16"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4199db024b58a8abb2cfcedac7b1292c3ad421684571aeb622a02f242280e8d6"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:99a9dcd4b71dd5f5f949737ab3f356cfc058c709b4f49833aeffedc2652dac56"}, + {file = "yarl-1.16.0-cp311-cp311-win32.whl", hash = "sha256:a9394c65ae0ed95679717d391c862dece9afacd8fa311683fc8b4362ce8a410c"}, + {file = "yarl-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b9101f528ae0f8f65ac9d64dda2bb0627de8a50344b2f582779f32fda747c1d"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4ffb7c129707dd76ced0a4a4128ff452cecf0b0e929f2668ea05a371d9e5c104"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1a5e9d8ce1185723419c487758d81ac2bde693711947032cce600ca7c9cda7d6"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d743e3118b2640cef7768ea955378c3536482d95550222f908f392167fe62059"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26768342f256e6e3c37533bf9433f5f15f3e59e3c14b2409098291b3efaceacb"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1b0796168b953bca6600c5f97f5ed407479889a36ad7d17183366260f29a6b9"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858728086914f3a407aa7979cab743bbda1fe2bdf39ffcd991469a370dd7414d"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5570e6d47bcb03215baf4c9ad7bf7c013e56285d9d35013541f9ac2b372593e7"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66ea8311422a7ba1fc79b4c42c2baa10566469fe5a78500d4e7754d6e6db8724"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:649bddcedee692ee8a9b7b6e38582cb4062dc4253de9711568e5620d8707c2a3"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a91654adb7643cb21b46f04244c5a315a440dcad63213033826549fa2435f71"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b439cae82034ade094526a8f692b9a2b5ee936452de5e4c5f0f6c48df23f8604"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:571f781ae8ac463ce30bacebfaef2c6581543776d5970b2372fbe31d7bf31a07"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:aa7943f04f36d6cafc0cf53ea89824ac2c37acbdb4b316a654176ab8ffd0f968"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1a5cf32539373ff39d97723e39a9283a7277cbf1224f7aef0c56c9598b6486c3"}, + {file = "yarl-1.16.0-cp312-cp312-win32.whl", hash = "sha256:a5b6c09b9b4253d6a208b0f4a2f9206e511ec68dce9198e0fbec4f160137aa67"}, + {file = "yarl-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:1208ca14eed2fda324042adf8d6c0adf4a31522fa95e0929027cd487875f0240"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5ace0177520bd4caa99295a9b6fb831d0e9a57d8e0501a22ffaa61b4c024283"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7118bdb5e3ed81acaa2095cba7ec02a0fe74b52a16ab9f9ac8e28e53ee299732"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38fec8a2a94c58bd47c9a50a45d321ab2285ad133adefbbadf3012c054b7e656"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8791d66d81ee45866a7bb15a517b01a2bcf583a18ebf5d72a84e6064c417e64b"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cf936ba67bc6c734f3aa1c01391da74ab7fc046a9f8bbfa230b8393b90cf472"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1aab176dd55b59f77a63b27cffaca67d29987d91a5b615cbead41331e6b7428"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d0759004c08abd5d1b81300a91d18c8577c6389300bed1c7c11675105a44d"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bc22e00edeb068f71967ab99081e9406cd56dbed864fc3a8259442999d71552"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:35b4f7842154176523e0a63c9b871168c69b98065d05a4f637fce342a6a2693a"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7ace71c4b7a0c41f317ae24be62bb61e9d80838d38acb20e70697c625e71f120"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8f639e3f5795a6568aa4f7d2ac6057c757dcd187593679f035adbf12b892bb00"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e8be3aff14f0120ad049121322b107f8a759be76a6a62138322d4c8a337a9e2c"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:122d8e7986043d0549e9eb23c7fd23be078be4b70c9eb42a20052b3d3149c6f2"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0fd9c227990f609c165f56b46107d0bc34553fe0387818c42c02f77974402c36"}, + {file = "yarl-1.16.0-cp313-cp313-win32.whl", hash = "sha256:595ca5e943baed31d56b33b34736461a371c6ea0038d3baec399949dd628560b"}, + {file = "yarl-1.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:921b81b8d78f0e60242fb3db615ea3f368827a76af095d5a69f1c3366db3f596"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab2b2ac232110a1fdb0d3ffcd087783edd3d4a6ced432a1bf75caf7b7be70916"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f8713717a09acbfee7c47bfc5777e685539fefdd34fa72faf504c8be2f3df4e"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdcffe1dbcb4477d2b4202f63cd972d5baa155ff5a3d9e35801c46a415b7f71a"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a91217208306d82357c67daeef5162a41a28c8352dab7e16daa82e3718852a7"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ab3ed42c78275477ea8e917491365e9a9b69bb615cb46169020bd0aa5e2d6d3"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:707ae579ccb3262dfaef093e202b4c3fb23c3810e8df544b1111bd2401fd7b09"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7a852d1cd0b8d8b37fc9d7f8581152add917a98cfe2ea6e241878795f917ae"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3f1cc3d3d4dc574bebc9b387f6875e228ace5748a7c24f49d8f01ac1bc6c31b"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5ff96da263740779b0893d02b718293cc03400c3a208fc8d8cd79d9b0993e532"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:3d375a19ba2bfe320b6d873f3fb165313b002cef8b7cc0a368ad8b8a57453837"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:62c7da0ad93a07da048b500514ca47b759459ec41924143e2ddb5d7e20fd3db5"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:147b0fcd0ee33b4b5f6edfea80452d80e419e51b9a3f7a96ce98eaee145c1581"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:504e1fe1cc4f170195320eb033d2b0ccf5c6114ce5bf2f617535c01699479bca"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bdcf667a5dec12a48f669e485d70c54189f0639c2157b538a4cffd24a853624f"}, + {file = "yarl-1.16.0-cp39-cp39-win32.whl", hash = "sha256:e9951afe6557c75a71045148890052cb942689ee4c9ec29f5436240e1fcc73b7"}, + {file = "yarl-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d7aaa8ff95d0840e289423e7dc35696c2b058d635f945bf05b5cd633146b027"}, + {file = "yarl-1.16.0-py3-none-any.whl", hash = "sha256:e6980a558d8461230c457218bd6c92dfc1d10205548215c2c21d79dc8d0a96f3"}, + {file = "yarl-1.16.0.tar.gz", hash = "sha256:b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml index 3a674100ad73..c6e0d851673d 100644 --- a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml +++ b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-qdrant" -version = "0.1.16" +version = "0.1.17" description = "Airbyte destination implementation for Qdrant." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/qdrant.md b/docs/integrations/destinations/qdrant.md index 5e7b7885da60..af082510e51d 100644 --- a/docs/integrations/destinations/qdrant.md +++ b/docs/integrations/destinations/qdrant.md @@ -73,6 +73,7 @@ You should now have all the requirements needed to configure Qdrant as a destina | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------- | +| 0.1.17 | 2024-10-28 | [47054](https://github.com/airbytehq/airbyte/pull/47054) | Update dependencies | | 0.1.16 | 2024-10-12 | [46774](https://github.com/airbytehq/airbyte/pull/46774) | Update dependencies | | 0.1.15 | 2024-10-05 | [46417](https://github.com/airbytehq/airbyte/pull/46417) | Update dependencies | | 0.1.14 | 2024-09-28 | [46137](https://github.com/airbytehq/airbyte/pull/46137) | Update dependencies | From 25018a86cb5157297258b723232de3024022895a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 12:09:34 +0200 Subject: [PATCH 032/808] =?UTF-8?q?=F0=9F=90=99=20source-pocket:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47034)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pocket/metadata.yaml | 4 ++-- docs/integrations/sources/pocket.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-pocket/metadata.yaml b/airbyte-integrations/connectors/source-pocket/metadata.yaml index 203f44c5baa1..a1753e90bf7d 100644 --- a/airbyte-integrations/connectors/source-pocket/metadata.yaml +++ b/airbyte-integrations/connectors/source-pocket/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: b0dd65f1-081f-4731-9c51-38e9e6aa0ebf - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-pocket documentationUrl: https://docs.airbyte.com/integrations/sources/pocket githubIssueLabel: source-pocket diff --git a/docs/integrations/sources/pocket.md b/docs/integrations/sources/pocket.md index 3c24e43f0c8d..641155b841b8 100644 --- a/docs/integrations/sources/pocket.md +++ b/docs/integrations/sources/pocket.md @@ -57,6 +57,7 @@ curl --insecure -X POST -H 'Content-Type: application/json' -H 'X-Accept: applic | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.1 | 2024-10-28 | [47034](https://github.com/airbytehq/airbyte/pull/47034) | Update dependencies | | 0.2.0 | 2024-10-21 | [47143](https://github.com/airbytehq/airbyte/pull/47143) | Migrate to manifest only format | | 0.1.21 | 2024-10-12 | [46838](https://github.com/airbytehq/airbyte/pull/46838) | Update dependencies | | 0.1.20 | 2024-10-05 | [46404](https://github.com/airbytehq/airbyte/pull/46404) | Update dependencies | From 6988679424cc004041ca8c8b893c155800b5f1b3 Mon Sep 17 00:00:00 2001 From: Augustin Date: Mon, 28 Oct 2024 11:55:02 +0100 Subject: [PATCH 033/808] up-to-date: fix quote escape in workflow (#47444) ## Motivation The single quote escaping syntax used in GHA workflow to run `airbyte-ci` was wrong. Separating `schedule` triggers from `workflow_dispatch` triggers makes it easier to get the syntax right. ### Workflow and Command Updates: * [`.github/workflows/connectors_up_to_date.yml`](diffhunk://#diff-2d17c6d9c0d58a040bfab9725e36051d4330b78f1a76e2f9fb024f673b7a74d4L14-R14): Added a new metadata query to exclude `source-declarative-manifest` from the `connectors-options` input. Updated the workflow to handle both `workflow_dispatch` and `schedule` events separately. [[1]](diffhunk://#diff-2d17c6d9c0d58a040bfab9725e36051d4330b78f1a76e2f9fb024f673b7a74d4L14-R14) [[2]](diffhunk://#diff-2d17c6d9c0d58a040bfab9725e36051d4330b78f1a76e2f9fb024f673b7a74d4L28-R30) [[3]](diffhunk://#diff-2d17c6d9c0d58a040bfab9725e36051d4330b78f1a76e2f9fb024f673b7a74d4L42-R59) ### Documentation Changes: * [`airbyte-ci/connectors/pipelines/README.md`](diffhunk://#diff-62eccd92928fbcd3d285983bfdaa2b0d4ca49016cb9c2f63d6d9fc968c59c541L528): Removed the `--ignore-connector` option from the documentation and added an entry to the changelog explaining the removal. [[1]](diffhunk://#diff-62eccd92928fbcd3d285983bfdaa2b0d4ca49016cb9c2f63d6d9fc968c59c541L528) [[2]](diffhunk://#diff-62eccd92928fbcd3d285983bfdaa2b0d4ca49016cb9c2f63d6d9fc968c59c541R853) ### Codebase Simplification: * [`airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/commands.py`](diffhunk://#diff-e6ca381b7841536a83b88d6b45f24bbcdbe304f88248787054817373d8f73544L52-L57): Removed the `--ignore-connector` option and its related logic from the `up_to_date` command. [[1]](diffhunk://#diff-e6ca381b7841536a83b88d6b45f24bbcdbe304f88248787054817373d8f73544L52-L57) [[2]](diffhunk://#diff-e6ca381b7841536a83b88d6b45f24bbcdbe304f88248787054817373d8f73544L66-L75) ### Version Bump: * [`airbyte-ci/connectors/pipelines/pyproject.toml`](diffhunk://#diff-087e2c37602bbd6824f875004abddcb4e1a374da12bf84201671ed0900882ce0L7-R7): Updated the version from `4.41.6` to `4.41.7`. --- .github/workflows/connectors_up_to_date.yml | 25 ++++++++++++++++--- airbyte-ci/connectors/pipelines/README.md | 4 +-- .../connectors/up_to_date/commands.py | 10 -------- .../connectors/pipelines/pyproject.toml | 2 +- 4 files changed, 24 insertions(+), 17 deletions(-) diff --git a/.github/workflows/connectors_up_to_date.yml b/.github/workflows/connectors_up_to_date.yml index c0e146da4677..4e16eaf02ef6 100644 --- a/.github/workflows/connectors_up_to_date.yml +++ b/.github/workflows/connectors_up_to_date.yml @@ -11,7 +11,7 @@ on: inputs: connectors-options: description: "Options to pass to the 'airbyte-ci connectors' command group." - default: '--concurrency=10 --language=python --language=low-code --language=manifest-only --metadata-query="''-rc.'' not in data.dockerImageTag"' + default: '--concurrency=10 --language=python --language=low-code --language=manifest-only --metadata-query="''-rc.'' not in data.dockerImageTag" --metadata-query="''source-declarative-manifest'' not in data.dockerRepository"' auto-merge: description: "Whether to auto-merge the PRs created by the action." default: "false" @@ -25,8 +25,9 @@ jobs: steps: - name: Checkout Airbyte uses: actions/checkout@v4 - - name: Run airbyte-ci connectors up-to-date - id: airbyte-ci-connectors-up-to-date + - name: Run airbyte-ci connectors up-to-date [WORKFLOW] + if: github.event_name == 'workflow_dispatch' + id: airbyte-ci-connectors-up-to-date-workflow-dispatch uses: ./.github/actions/run-airbyte-ci with: context: "master" @@ -39,4 +40,20 @@ jobs: sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} s3_build_cache_access_key_id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }} s3_build_cache_secret_key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }} - subcommand: 'connectors ${{ github.event.inputs.connectors-options || ''--concurrency=10 --language=python --language=low-code --support-level=community --support-level=certified --metadata-query="''-rc.'' not in data.dockerImageTag"'' }} up-to-date --ignore-connector=source-declarative-manifest --create-prs ${{ github.event.inputs.auto-merge == ''false'' && '''' || ''--auto-merge'' }}' + subcommand: "connectors ${{ github.event.inputs.connectors-options }} up-to-date --create-prs ${{ github.event.inputs.auto-merge == 'false' && '' || '--auto-merge' }}" + - name: Run airbyte-ci connectors up-to-date [SCHEDULE] + if: github.event_name == 'schedule' + id: airbyte-ci-connectors-up-to-date-schedule + uses: ./.github/actions/run-airbyte-ci + with: + context: "master" + dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_3 }} + docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} + docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} + gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} + gcs_credentials: ${{ secrets.METADATA_SERVICE_PROD_GCS_CREDENTIALS }} + github_token: ${{ secrets.GH_PAT_MAINTENANCE_OSS }} + sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} + s3_build_cache_access_key_id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }} + s3_build_cache_secret_key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }} + subcommand: 'connectors --concurrency=10 --language=python --language=low-code --support-level=community --support-level=certified --metadata-query="\"source-declarative-manifest\" not in data.dockerRepository" --metadata-query="\"-rc.\" not in data.dockerImageTag" up-to-date --ignore-connector=source-declarative-manifest --create-prs --auto-merge' diff --git a/airbyte-ci/connectors/pipelines/README.md b/airbyte-ci/connectors/pipelines/README.md index 6dbb0ad25a1b..82a1ff372a10 100644 --- a/airbyte-ci/connectors/pipelines/README.md +++ b/airbyte-ci/connectors/pipelines/README.md @@ -525,7 +525,6 @@ Options: --open-reports Auto open reports in the browser. --create-prs Create pull requests for each updated connector. --auto-merge Set the auto-merge label on created PRs. - --ignore-connector TEXT Ignore a connector by its technical name (can be used multiple times). --help Show this message and exit. ``` @@ -851,7 +850,8 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only | Version | PR | Description | | ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -| 4.41.6 | [#47308](https://github.com/airbytehq/airbyte/pull/47308) | Connector testing: skip incremental acceptance test when the connector is not released. | +| 4.41.7 | [#47444](https://github.com/airbytehq/airbyte/pull/47444) | Remove redundant `--ignore-connector` error from up-to-date. `--metadata-query` can be used instead. | +| 4.41.6 | [#47308](https://github.com/airbytehq/airbyte/pull/47308) | Connector testing: skip incremental acceptance test when the connector is not released. | | 4.41.5 | [#47255](https://github.com/airbytehq/airbyte/pull/47255) | Fix `DisableProgressiveRollout` following Dagger API change. | | 4.41.4 | [#47203](https://github.com/airbytehq/airbyte/pull/47203) | Fix some `with_exec` and entrypoint usage following Dagger upgrade | | 4.41.3 | [#47189](https://github.com/airbytehq/airbyte/pull/47189) | Fix up-to-date which did not export doc to the right path | diff --git a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/commands.py b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/commands.py index 6361bcd8ee07..5bce0e3d597d 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/commands.py +++ b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/commands.py @@ -49,12 +49,6 @@ default=False, help="Auto open reports in browser", ) -@click.option( - "--ignore-connector", - type=str, - multiple=True, - help="Connector technical name to ignore in the pipeline", -) @click.pass_context async def up_to_date( ctx: click.Context, @@ -63,16 +57,12 @@ async def up_to_date( auto_merge: bool, no_bump: bool, open_reports: bool, - ignore_connector: List[str], ) -> bool: if create_prs and not ctx.obj["ci_github_access_token"]: raise click.ClickException( "GitHub access token is required to create or simulate a pull request. Set the CI_GITHUB_ACCESS_TOKEN environment variable." ) - ctx.obj["selected_connectors_with_modified_files"] = [ - connector for connector in ctx.obj["selected_connectors_with_modified_files"] if connector.technical_name not in ignore_connector - ] return await run_connector_pipeline( ctx, "Get Python connector up to date", diff --git a/airbyte-ci/connectors/pipelines/pyproject.toml b/airbyte-ci/connectors/pipelines/pyproject.toml index 12dc4ae8c605..cb6618b38ce2 100644 --- a/airbyte-ci/connectors/pipelines/pyproject.toml +++ b/airbyte-ci/connectors/pipelines/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pipelines" -version = "4.41.6" +version = "4.41.7" description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines" authors = ["Airbyte "] From b4496f07c74e76a3ff29b0e323f6fe2608f520f2 Mon Sep 17 00:00:00 2001 From: Augustin Date: Mon, 28 Oct 2024 11:58:39 +0100 Subject: [PATCH 034/808] up-to-date/base-image: cache dockerhub image listing (#47447) ## What * Problems:`up-to-date`: to find the latest base image we have to list all the base images available and fetch their digest. If this operation is not cached it can easily lead to DockerHub rate limiting issue. * Solution: Add a `cache_ttl_seconds` parameters to cache the interaction with the `crane` client. In `up-to-date` we set this cache TTL to 1 day. This pull request introduces a caching mechanism to avoid DockerHub rate limiting and updates various files to support this new feature. The most important changes include adding a cache TTL for base image listings, updating the `CraneClient` and related methods to accept a cache TTL, and adding logging for digest fetching. ### Caching Mechanism: * [`airbyte-ci/connectors/base_images/README.md`](diffhunk://#diff-2e343fda68ecd85f5023c98f7f9a41af2125e7e1cc12d545bc13ace788a4d075R97-R99): Added a changelog entry for version 1.1.0, mentioning the cache TTL addition. * [`airbyte-ci/connectors/base_images/base_images/utils/docker.py`](diffhunk://#diff-d92863e5bd18b276dba43c00c727c4f54d65193740f2044c7929948652e2d1b3L38-R48): Modified the `CraneClient` class to accept a `cache_ttl_seconds` parameter and updated the `bare_container` initialization to use this TTL. * [`airbyte-ci/connectors/base_images/base_images/version_registry.py`](diffhunk://#diff-2b84383522cacca9880ff1dae76f40d08ec437c59208cd856e41f63971f4340dL108-R140): Updated methods to pass the `cache_ttl_seconds` parameter to the `CraneClient`. [[1]](diffhunk://#diff-2b84383522cacca9880ff1dae76f40d08ec437c59208cd856e41f63971f4340dL108-R140) [[2]](diffhunk://#diff-2b84383522cacca9880ff1dae76f40d08ec437c59208cd856e41f63971f4340dL144-R152) [[3]](diffhunk://#diff-2b84383522cacca9880ff1dae76f40d08ec437c59208cd856e41f63971f4340dL249-R274) [[4]](diffhunk://#diff-2b84383522cacca9880ff1dae76f40d08ec437c59208cd856e41f63971f4340dL267-R293) * [`airbyte-ci/connectors/pipelines/README.md`](diffhunk://#diff-62eccd92928fbcd3d285983bfdaa2b0d4ca49016cb9c2f63d6d9fc968c59c541R853): Documented the use of `cache_ttl` for base image registry listing in version 4.41.8. * [`airbyte-ci/connectors/pipelines/pyproject.toml`](diffhunk://#diff-087e2c37602bbd6824f875004abddcb4e1a374da12bf84201671ed0900882ce0L7-R7): Bumped the version to 4.41.8. ### Logging Enhancements: * [`airbyte-ci/connectors/base_images/base_images/utils/docker.py`](diffhunk://#diff-d92863e5bd18b276dba43c00c727c4f54d65193740f2044c7929948652e2d1b3R90-R95): Added logging statements for digest fetching to help identify bottlenecks and improve debugging. --- airbyte-ci/connectors/base_images/README.md | 3 ++ .../base_images/base_images/utils/docker.py | 19 ++++---- .../base_images/version_registry.py | 44 +++++++++++++------ .../connectors/base_images/pyproject.toml | 2 +- airbyte-ci/connectors/pipelines/README.md | 1 + .../pipelines/airbyte_ci/steps/base_image.py | 4 ++ .../connectors/pipelines/pyproject.toml | 2 +- 7 files changed, 51 insertions(+), 24 deletions(-) diff --git a/airbyte-ci/connectors/base_images/README.md b/airbyte-ci/connectors/base_images/README.md index 018812e3a1e8..30630d7d3f32 100644 --- a/airbyte-ci/connectors/base_images/README.md +++ b/airbyte-ci/connectors/base_images/README.md @@ -94,6 +94,9 @@ poetry run mypy base_images --check-untyped-defs ``` ## CHANGELOG +### 1.1.0 +- Add a cache ttl for base image listing to avoid DockerHub rate limiting. + ### 1.0.4 - Upgrade Dagger to `0.13.3` diff --git a/airbyte-ci/connectors/base_images/base_images/utils/docker.py b/airbyte-ci/connectors/base_images/base_images/utils/docker.py index 7485565299f3..822d917a7634 100644 --- a/airbyte-ci/connectors/base_images/base_images/utils/docker.py +++ b/airbyte-ci/connectors/base_images/base_images/utils/docker.py @@ -4,6 +4,7 @@ import getpass import os +import time import uuid from typing import List, Tuple @@ -35,16 +36,16 @@ class CraneClient: "gcr.io/go-containerregistry/crane/debug:v0.15.1@sha256:f6ddf8e2c47df889e06e33c3e83b84251ac19c8728a670ff39f2ca9e90c4f905" ) - def __init__(self, dagger_client: dagger.Client, docker_credentials: Tuple[str, str]): + def __init__(self, dagger_client: dagger.Client, docker_credentials: Tuple[str, str], cache_ttl_seconds: int = 0): self.docker_hub_username_secret = dagger_client.set_secret("DOCKER_HUB_USERNAME", docker_credentials[0]) self.docker_hub_username_password = dagger_client.set_secret("DOCKER_HUB_PASSWORD", docker_credentials[1]) - self.bare_container = ( - dagger_client.container().from_(self.CRANE_IMAGE_ADDRESS) - # We don't want to cache any subsequent commands that might run in this container - # because we want to have fresh output data every time we run this command. - .with_env_variable("CACHE_BUSTER", str(uuid.uuid4())) - ) + if cache_ttl_seconds == 0: + cache_buster = str(uuid.uuid4()) + else: + cache_buster = str(int(time.time()) // cache_ttl_seconds) + + self.bare_container = dagger_client.container().from_(self.CRANE_IMAGE_ADDRESS).with_env_variable("CACHE_BUSTER", cache_buster) self.authenticated_container = self.login() @@ -56,7 +57,6 @@ def login(self) -> dagger.Container: ) async def digest(self, repository_and_tag: str) -> str: - console.log(f"Fetching digest for {repository_and_tag}...") return (await self.authenticated_container.with_exec(["digest", repository_and_tag], use_entrypoint=True).stdout()).strip() async def ls(self, registry_name: str, repository_name: str) -> List[str]: @@ -87,7 +87,10 @@ async def get_all_images(self) -> List[published_image.PublishedImage]: # We want the digest to uniquely identify the image, so we need to fetch it separately with `crane digest` available_addresses_without_digest = [f"{repository_address}:{tag}" for tag in all_tags] available_addresses_with_digest = [] + console.log(f"Fetching digests for {len(available_addresses_without_digest)} images...") + # TODO: This is a bottleneck, we should parallelize this for address in available_addresses_without_digest: digest = await self.crane_client.digest(address) available_addresses_with_digest.append(f"{address}@{digest}") + console.log(f"Found digests for {len(available_addresses_with_digest)} images in {repository_address}") return [published_image.PublishedImage.from_address(address) for address in available_addresses_with_digest] diff --git a/airbyte-ci/connectors/base_images/base_images/version_registry.py b/airbyte-ci/connectors/base_images/base_images/version_registry.py index 3f142051f494..41337c8006a8 100644 --- a/airbyte-ci/connectors/base_images/base_images/version_registry.py +++ b/airbyte-ci/connectors/base_images/base_images/version_registry.py @@ -105,7 +105,10 @@ def get_changelog_entries(ConnectorBaseImageClass: Type[AirbyteConnectorBaseImag @staticmethod async def get_all_published_base_images( - dagger_client: dagger.Client, docker_credentials: Tuple[str, str], ConnectorBaseImageClass: Type[AirbyteConnectorBaseImage] + dagger_client: dagger.Client, + docker_credentials: Tuple[str, str], + ConnectorBaseImageClass: Type[AirbyteConnectorBaseImage], + cache_ttl_seconds: int = 0, ) -> List[published_image.PublishedImage]: """Returns all the published base images for a given base image version class. @@ -113,23 +116,28 @@ async def get_all_published_base_images( dagger_client (dagger.Client): The dagger client used to build the registry. docker_credentials (Tuple[str, str]): The docker credentials used to fetch published images from DockerHub. ConnectorBaseImageClass (Type[AirbyteConnectorBaseImage]): The base image version class bound to the registry. - + cache_ttl_seconds (int, optional): The cache time to live in seconds for crane output. Defaults to 0. Returns: List[published_image.PublishedImage]: The published base images for a given base image version class. """ - crane_client = docker.CraneClient(dagger_client, docker_credentials) + crane_client = docker.CraneClient(dagger_client, docker_credentials, cache_ttl_seconds=cache_ttl_seconds) remote_registry = docker.RemoteRepository(crane_client, consts.REMOTE_REGISTRY, ConnectorBaseImageClass.repository) # type: ignore return await remote_registry.get_all_images() @staticmethod async def load( - ConnectorBaseImageClass: Type[AirbyteConnectorBaseImage], dagger_client: dagger.Client, docker_credentials: Tuple[str, str] + ConnectorBaseImageClass: Type[AirbyteConnectorBaseImage], + dagger_client: dagger.Client, + docker_credentials: Tuple[str, str], + cache_ttl_seconds: int = 0, ) -> VersionRegistry: """Instantiates a registry by fetching available versions from the remote registry and loading the changelog from disk. Args: ConnectorBaseImageClass (Type[AirbyteConnectorBaseImage]): The base image version class bound to the registry. - + dagger_client (dagger.Client): The dagger client used to build the registry. + docker_credentials (Tuple[str, str]): The docker credentials used to fetch published images from DockerHub. + cache_ttl_seconds (int, optional): The cache time to live in seconds for crane output. Defaults to 0. Returns: VersionRegistry: The registry. """ @@ -141,7 +149,7 @@ async def load( # Instantiate a crane client and a remote registry to fetch published images from DockerHub published_docker_images = await VersionRegistry.get_all_published_base_images( - dagger_client, docker_credentials, ConnectorBaseImageClass + dagger_client, docker_credentials, ConnectorBaseImageClass, cache_ttl_seconds=cache_ttl_seconds ) # Build a dict of published images by version number for easier lookup @@ -246,16 +254,24 @@ def latest_not_pre_released_published_entry(self) -> Optional[VersionRegistryEnt return None -async def get_python_registry(dagger_client: dagger.Client, docker_credentials: Tuple[str, str]) -> VersionRegistry: - return await VersionRegistry.load(AirbytePythonConnectorBaseImage, dagger_client, docker_credentials) +async def get_python_registry( + dagger_client: dagger.Client, docker_credentials: Tuple[str, str], cache_ttl_seconds: int = 0 +) -> VersionRegistry: + return await VersionRegistry.load( + AirbytePythonConnectorBaseImage, dagger_client, docker_credentials, cache_ttl_seconds=cache_ttl_seconds + ) -async def get_manifest_only_registry(dagger_client: dagger.Client, docker_credentials: Tuple[str, str]) -> VersionRegistry: - return await VersionRegistry.load(AirbyteManifestOnlyConnectorBaseImage, dagger_client, docker_credentials) +async def get_manifest_only_registry( + dagger_client: dagger.Client, docker_credentials: Tuple[str, str], cache_ttl_seconds: int = 0 +) -> VersionRegistry: + return await VersionRegistry.load( + AirbyteManifestOnlyConnectorBaseImage, dagger_client, docker_credentials, cache_ttl_seconds=cache_ttl_seconds + ) async def get_registry_for_language( - dagger_client: dagger.Client, language: ConnectorLanguage, docker_credentials: Tuple[str, str] + dagger_client: dagger.Client, language: ConnectorLanguage, docker_credentials: Tuple[str, str], cache_ttl_seconds: int = 0 ) -> VersionRegistry: """Returns the registry for a given language. It is meant to be used externally to get the registry for a given connector language. @@ -264,7 +280,7 @@ async def get_registry_for_language( dagger_client (dagger.Client): The dagger client used to build the registry. language (ConnectorLanguage): The connector language. docker_credentials (Tuple[str, str]): The docker credentials used to fetch published images from DockerHub. - + cache_ttl_seconds (int, optional): The cache time to live in seconds for crane output. Defaults to 0. Raises: NotImplementedError: Raised if the registry for the given language is not implemented yet. @@ -272,9 +288,9 @@ async def get_registry_for_language( VersionRegistry: The registry for the given language. """ if language in [ConnectorLanguage.PYTHON, ConnectorLanguage.LOW_CODE]: - return await get_python_registry(dagger_client, docker_credentials) + return await get_python_registry(dagger_client, docker_credentials, cache_ttl_seconds=cache_ttl_seconds) elif language is ConnectorLanguage.MANIFEST_ONLY: - return await get_manifest_only_registry(dagger_client, docker_credentials) + return await get_manifest_only_registry(dagger_client, docker_credentials, cache_ttl_seconds=cache_ttl_seconds) else: raise NotImplementedError(f"Registry for language {language} is not implemented yet.") diff --git a/airbyte-ci/connectors/base_images/pyproject.toml b/airbyte-ci/connectors/base_images/pyproject.toml index 5e4a901d05d2..46a7b98d6a2b 100644 --- a/airbyte-ci/connectors/base_images/pyproject.toml +++ b/airbyte-ci/connectors/base_images/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "airbyte-connectors-base-images" -version = "1.0.4" +version = "1.1.0" description = "This package is used to generate and publish the base images for Airbyte Connectors." authors = ["Augustin Lafanechere "] readme = "README.md" diff --git a/airbyte-ci/connectors/pipelines/README.md b/airbyte-ci/connectors/pipelines/README.md index 82a1ff372a10..27253c252e57 100644 --- a/airbyte-ci/connectors/pipelines/README.md +++ b/airbyte-ci/connectors/pipelines/README.md @@ -850,6 +850,7 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only | Version | PR | Description | | ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| 4.41.8 | [#47447](https://github.com/airbytehq/airbyte/pull/47447) | Use `cache_ttl` for base image registry listing in `up-to-date`. | | 4.41.7 | [#47444](https://github.com/airbytehq/airbyte/pull/47444) | Remove redundant `--ignore-connector` error from up-to-date. `--metadata-query` can be used instead. | | 4.41.6 | [#47308](https://github.com/airbytehq/airbyte/pull/47308) | Connector testing: skip incremental acceptance test when the connector is not released. | | 4.41.5 | [#47255](https://github.com/airbytehq/airbyte/pull/47255) | Fix `DisableProgressiveRollout` following Dagger API change. | diff --git a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/steps/base_image.py b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/steps/base_image.py index e8cfa14e3183..03c0c21d5854 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/steps/base_image.py +++ b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/steps/base_image.py @@ -22,6 +22,9 @@ class NoBaseImageAddressInMetadataError(Exception): class UpdateBaseImageMetadata(StepModifyingFiles): + + BASE_IMAGE_LIST_CACHE_TTL_SECONDS = 60 * 60 * 24 # 1 day + context: ConnectorContext title = "Upgrade the base image to the latest version in metadata.yaml" @@ -45,6 +48,7 @@ async def get_latest_base_image_address(self) -> Optional[str]: self.dagger_client, self.context.connector.language, (self.context.docker_hub_username.value, self.context.docker_hub_password.value), + cache_ttl_seconds=self.BASE_IMAGE_LIST_CACHE_TTL_SECONDS, ) return version_registry_for_language.latest_not_pre_released_published_entry.published_docker_image.address except NotImplementedError: diff --git a/airbyte-ci/connectors/pipelines/pyproject.toml b/airbyte-ci/connectors/pipelines/pyproject.toml index cb6618b38ce2..b05c7de0edfc 100644 --- a/airbyte-ci/connectors/pipelines/pyproject.toml +++ b/airbyte-ci/connectors/pipelines/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pipelines" -version = "4.41.7" +version = "4.41.8" description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines" authors = ["Airbyte "] From ecf09cc30e65cf5fcb788deb33ce4f0c1138a96e Mon Sep 17 00:00:00 2001 From: Augustin Date: Mon, 28 Oct 2024 12:02:40 +0100 Subject: [PATCH 035/808] airbyte-ci: build manifest only connectors correctly in `up-to-date` (#47483) ## What * Problems: We saw build failure at `up-to-date` time, which let to unhandled errors. * Solution: Manifest only connector build was not wired in the up-to-date pipeline, we used the python connector build logic on these connectors which led to these execeptions. This pull request includes several changes aimed at improving the build logic and updating dependencies for the Airbyte CI connectors. The most important changes involve fixing the build logic to support any connector language, refactoring the import statements, and updating the pipeline version. ### Improvements to build logic: * [`airbyte-ci/connectors/pipelines/README.md`](diffhunk://#diff-62eccd92928fbcd3d285983bfdaa2b0d4ca49016cb9c2f63d6d9fc968c59c541R853): Added a new entry to document the fix for build logic used in `up-to-date` to support any connector language. ### Refactoring: * [`airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/pipeline.py`](diffhunk://#diff-cef433180658cd9d23043da2e4577f65c9bfb7bca5e9bacca87e3b24ad3e56bbL11-R11): Refactored import statements to use `run_connector_build` instead of `BuildConnectorImages`. * [`airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/pipeline.py`](diffhunk://#diff-cef433180658cd9d23043da2e4577f65c9bfb7bca5e9bacca87e3b24ad3e56bbL129-R129): Updated the `run_connector_up_to_date_pipeline` function to use `run_connector_build` for building connector images. ### Dependency updates: * [`airbyte-ci/connectors/pipelines/pyproject.toml`](diffhunk://#diff-087e2c37602bbd6824f875004abddcb4e1a374da12bf84201671ed0900882ce0L7-R7): Updated the version from `4.41.8` to `4.41.9`. --- airbyte-ci/connectors/pipelines/README.md | 1 + .../pipelines/airbyte_ci/connectors/up_to_date/pipeline.py | 4 ++-- airbyte-ci/connectors/pipelines/pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-ci/connectors/pipelines/README.md b/airbyte-ci/connectors/pipelines/README.md index 27253c252e57..da75cb2fd326 100644 --- a/airbyte-ci/connectors/pipelines/README.md +++ b/airbyte-ci/connectors/pipelines/README.md @@ -850,6 +850,7 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only | Version | PR | Description | | ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| 4.41.9 | [#47483](https://github.com/airbytehq/airbyte/pull/47483) | Fix build logic used in `up-to-date` to support any connector language. | | 4.41.8 | [#47447](https://github.com/airbytehq/airbyte/pull/47447) | Use `cache_ttl` for base image registry listing in `up-to-date`. | | 4.41.7 | [#47444](https://github.com/airbytehq/airbyte/pull/47444) | Remove redundant `--ignore-connector` error from up-to-date. `--metadata-query` can be used instead. | | 4.41.6 | [#47308](https://github.com/airbytehq/airbyte/pull/47308) | Connector testing: skip incremental acceptance test when the connector is not released. | diff --git a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/pipeline.py b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/pipeline.py index 6803f367583d..ede69ad81627 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/pipeline.py +++ b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/up_to_date/pipeline.py @@ -8,7 +8,7 @@ from typing import TYPE_CHECKING from jinja2 import Environment, PackageLoader, select_autoescape -from pipelines.airbyte_ci.connectors.build_image.steps.python_connectors import BuildConnectorImages +from pipelines.airbyte_ci.connectors.build_image.steps import run_connector_build from pipelines.airbyte_ci.connectors.context import ConnectorContext from pipelines.airbyte_ci.connectors.reports import ConnectorReport from pipelines.airbyte_ci.steps.base_image import UpdateBaseImageMetadata @@ -126,7 +126,7 @@ async def run_connector_up_to_date_pipeline( # to fill the PR body with the correct information about what exactly got updated. if create_pull_request: # Building connector images is also universal across connector technologies. - build_result = await BuildConnectorImages(context).run() + build_result = await run_connector_build(context) step_results.append(build_result) dependency_updates: List[DependencyUpdate] = [] diff --git a/airbyte-ci/connectors/pipelines/pyproject.toml b/airbyte-ci/connectors/pipelines/pyproject.toml index b05c7de0edfc..b5044371ce8c 100644 --- a/airbyte-ci/connectors/pipelines/pyproject.toml +++ b/airbyte-ci/connectors/pipelines/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pipelines" -version = "4.41.8" +version = "4.41.9" description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines" authors = ["Airbyte "] From 917ddae846ee8c9fb2de01412ec2d6368ae75627 Mon Sep 17 00:00:00 2001 From: Augustin Date: Mon, 28 Oct 2024 12:24:44 +0100 Subject: [PATCH 036/808] airbyte-ci: rework VersionIncrementCheck for RC (#47386) --- airbyte-ci/connectors/pipelines/README.md | 1 + .../airbyte_ci/connectors/publish/pipeline.py | 2 +- .../connectors/test/steps/common.py | 56 ++++++++++++--- .../connectors/pipelines/pyproject.toml | 2 +- .../tests/test_steps/test_version_check.py | 72 +++++++++++++++++++ 5 files changed, 120 insertions(+), 13 deletions(-) create mode 100644 airbyte-ci/connectors/pipelines/tests/test_steps/test_version_check.py diff --git a/airbyte-ci/connectors/pipelines/README.md b/airbyte-ci/connectors/pipelines/README.md index da75cb2fd326..71190a5823e8 100644 --- a/airbyte-ci/connectors/pipelines/README.md +++ b/airbyte-ci/connectors/pipelines/README.md @@ -850,6 +850,7 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only | Version | PR | Description | | ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| 4.42.0 | [#47386](https://github.com/airbytehq/airbyte/pull/47386) | Version increment check: make sure consecutive RC remain on the same version. | | 4.41.9 | [#47483](https://github.com/airbytehq/airbyte/pull/47483) | Fix build logic used in `up-to-date` to support any connector language. | | 4.41.8 | [#47447](https://github.com/airbytehq/airbyte/pull/47447) | Use `cache_ttl` for base image registry listing in `up-to-date`. | | 4.41.7 | [#47444](https://github.com/airbytehq/airbyte/pull/47444) | Remove redundant `--ignore-connector` error from up-to-date. `--metadata-query` can be used instead. | diff --git a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/publish/pipeline.py b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/publish/pipeline.py index 6c3dbbd888ee..56af45b38413 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/publish/pipeline.py +++ b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/publish/pipeline.py @@ -19,7 +19,7 @@ from pipelines.airbyte_ci.connectors.build_image import steps from pipelines.airbyte_ci.connectors.publish.context import PublishConnectorContext, RolloutMode from pipelines.airbyte_ci.connectors.reports import ConnectorReport -from pipelines.airbyte_ci.metadata.pipeline import MetadataRollbackReleaseCandidate, MetadataUpload, MetadataValidation +from pipelines.airbyte_ci.metadata.pipeline import MetadataUpload, MetadataValidation from pipelines.airbyte_ci.steps.bump_version import SetConnectorVersion from pipelines.airbyte_ci.steps.changelog import AddChangelogEntry from pipelines.airbyte_ci.steps.pull_request import CreateOrUpdatePullRequest diff --git a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/common.py b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/common.py index 316bf75ccef3..1aa0a4f3fc81 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/common.py +++ b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/common.py @@ -13,7 +13,7 @@ from functools import cached_property from pathlib import Path from textwrap import dedent -from typing import Any, ClassVar, Dict, List, Optional, Set +from typing import Any, Dict, List, Optional, Set import dagger import requests # type: ignore @@ -44,7 +44,6 @@ class VersionCheck(Step, ABC): """A step to validate the connector version was bumped if files were modified""" context: ConnectorContext - failure_message: ClassVar @property def should_run(self) -> bool: @@ -79,9 +78,8 @@ def current_connector_version(self) -> semver.Version: def success_result(self) -> StepResult: return StepResult(step=self, status=StepStatus.SUCCESS) - @property - def failure_result(self) -> StepResult: - return StepResult(step=self, status=StepStatus.FAILURE, stderr=self.failure_message) + def _get_failure_result(self, failure_message: str) -> StepResult: + return StepResult(step=self, status=StepStatus.FAILURE, stderr=failure_message) @abstractmethod def validate(self) -> StepResult: @@ -118,10 +116,6 @@ class VersionIncrementCheck(VersionCheck): "build_customization.py", ] - @property - def failure_message(self) -> str: - return f"The dockerImageTag in {METADATA_FILE_NAME} was not incremented. The files you modified should lead to a version bump. Master version is {self.master_connector_version}, current version is {self.current_connector_version}" - @property def should_run(self) -> bool: for filename in self.context.modified_files: @@ -130,9 +124,49 @@ def should_run(self) -> bool: return True return False + def is_version_not_incremented(self) -> bool: + return self.master_connector_version >= self.current_connector_version + + def get_failure_message_for_no_increment(self) -> str: + return ( + f"The dockerImageTag in {METADATA_FILE_NAME} was not incremented. " + f"Master version is {self.master_connector_version}, current version is {self.current_connector_version}" + ) + + def are_both_versions_release_candidates(self) -> bool: + return bool( + self.master_connector_version.prerelease + and self.current_connector_version.prerelease + and "rc" in self.master_connector_version.prerelease + and "rc" in self.current_connector_version.prerelease + ) + + def have_same_major_minor_patch(self) -> bool: + return ( + self.master_connector_version.major == self.current_connector_version.major + and self.master_connector_version.minor == self.current_connector_version.minor + and self.master_connector_version.patch == self.current_connector_version.patch + ) + def validate(self) -> StepResult: - if not self.current_connector_version > self.master_connector_version: - return self.failure_result + if self.is_version_not_incremented(): + return self._get_failure_result( + ( + f"The dockerImageTag in {METADATA_FILE_NAME} was not incremented. " + f"Master version is {self.master_connector_version}, current version is {self.current_connector_version}" + ) + ) + + if self.are_both_versions_release_candidates(): + if not self.have_same_major_minor_patch(): + return self._get_failure_result( + ( + f"Master and current version are release candidates but they have different major, minor or patch versions. " + f"Release candidates should only differ in the prerelease part. Master version is {self.master_connector_version}, " + f"current version is {self.current_connector_version}" + ) + ) + return self.success_result diff --git a/airbyte-ci/connectors/pipelines/pyproject.toml b/airbyte-ci/connectors/pipelines/pyproject.toml index b5044371ce8c..7832ed1a1223 100644 --- a/airbyte-ci/connectors/pipelines/pyproject.toml +++ b/airbyte-ci/connectors/pipelines/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pipelines" -version = "4.41.9" +version = "4.42.0" description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines" authors = ["Airbyte "] diff --git a/airbyte-ci/connectors/pipelines/tests/test_steps/test_version_check.py b/airbyte-ci/connectors/pipelines/tests/test_steps/test_version_check.py new file mode 100644 index 000000000000..3475fc1d1d9c --- /dev/null +++ b/airbyte-ci/connectors/pipelines/tests/test_steps/test_version_check.py @@ -0,0 +1,72 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. + +import pytest +from connector_ops.utils import METADATA_FILE_NAME +from pipelines.airbyte_ci.connectors.test.steps.common import VersionIncrementCheck +from semver import VersionInfo + + +class TestVersionIncrementCheck: + @pytest.fixture + def context(self, mocker, tmp_path): + context = mocker.Mock() + context.connector = mocker.Mock(code_directory=str(tmp_path), technical_name="test-connector") + context.modified_files = ["/path/to/connector/src/main.py", "/path/to/connector/README.md"] + context.secrets_to_mask = [] + return context + + def _get_version_increment_check(self, mocker, context, master_version="1.0.0", current_version="1.0.1"): + + mocker.patch( + "pipelines.airbyte_ci.connectors.test.steps.common.VersionIncrementCheck.master_connector_version", + new_callable=mocker.PropertyMock, + return_value=VersionInfo.parse(master_version), + ) + mocker.patch( + "pipelines.airbyte_ci.connectors.test.steps.common.VersionIncrementCheck.current_connector_version", + new_callable=mocker.PropertyMock, + return_value=VersionInfo.parse(current_version), + ) + + return VersionIncrementCheck(context) + + def test_should_run(self, context): + context.modified_files = ["some_file"] + assert VersionIncrementCheck(context).should_run + + def test_should_not_run(self, context): + for bypassed_file in VersionIncrementCheck.BYPASS_CHECK_FOR: + context.modified_files = [bypassed_file] + assert not VersionIncrementCheck(context).should_run + + def test_validate_success_no_rc_increment(self, mocker, context): + version_increment_check = self._get_version_increment_check(mocker, context, master_version="1.0.0", current_version="1.0.1") + result = version_increment_check.validate() + assert result.success + + def test_validate_failure_no_increment(self, context, mocker): + version_increment_check = self._get_version_increment_check(mocker, context, master_version="1.0.0", current_version="1.0.0") + result = version_increment_check.validate() + assert not result.success + assert ( + result.stderr + == f"The dockerImageTag in {METADATA_FILE_NAME} was not incremented. Master version is {version_increment_check.master_connector_version}, current version is {version_increment_check.current_connector_version}" + ) + + def test_validate_failure_rc_with_different_versions(self, context, mocker): + version_increment_check = self._get_version_increment_check( + mocker, context, master_version="1.0.0-rc.1", current_version="1.0.1-rc.1" + ) + result = version_increment_check.validate() + assert not result.success + assert ( + result.stderr + == f"Master and current version are release candidates but they have different major, minor or patch versions. Release candidates should only differ in the prerelease part. Master version is {version_increment_check.master_connector_version}, current version is {version_increment_check.current_connector_version}" + ) + + def test_validate_success_rc_increment(self, context, mocker): + version_increment_check = self._get_version_increment_check( + mocker, context, master_version="1.0.1-rc.1", current_version="1.0.1-rc.2" + ) + result = version_increment_check.validate() + assert result.success From fb769bd0a046101d1df3a797a82b2863dd3a214c Mon Sep 17 00:00:00 2001 From: Anatolii Yatsuk <35109939+tolik0@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:03:41 +0200 Subject: [PATCH 037/808] feat(airbyte-cdk): Add Per Partition with Global fallback Cursor (#45125) --- .../sources/declarative/async_job/job.py | 2 +- .../declarative/async_job/repository.py | 2 +- .../sources/declarative/declarative_stream.py | 4 +- .../declarative/extractors/record_filter.py | 20 +- .../declarative/incremental/__init__.py | 9 +- .../incremental/global_substream_cursor.py | 98 +++- .../incremental/per_partition_cursor.py | 67 ++- .../incremental/per_partition_with_global.py | 188 +++++++ .../parsers/model_to_component_factory.py | 38 +- .../cartesian_product_stream_slicer.py | 76 ++- .../substream_partition_router.py | 19 +- .../extractors/test_record_filter.py | 303 ++++++---- .../test_per_partition_cursor_integration.py | 215 +++++++- .../test_model_to_component_factory.py | 23 +- .../test_parent_state_stream.py | 518 ++++++++++++++++-- .../test_substream_partition_router.py | 96 +++- .../incremental-syncs.md | 42 +- 17 files changed, 1386 insertions(+), 334 deletions(-) create mode 100644 airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/async_job/job.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/async_job/job.py index 8ae4e40e7022..5b4f1c7ab0ce 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/async_job/job.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/async_job/job.py @@ -4,8 +4,8 @@ from datetime import timedelta from typing import Optional -from airbyte_cdk import StreamSlice from airbyte_cdk.sources.declarative.async_job.timer import Timer +from airbyte_cdk.sources.types import StreamSlice from .status import AsyncJobStatus diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/async_job/repository.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/async_job/repository.py index 151c1d922f55..b2de8659a393 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/async_job/repository.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/async_job/repository.py @@ -3,8 +3,8 @@ from abc import abstractmethod from typing import Any, Iterable, Mapping, Set -from airbyte_cdk import StreamSlice from airbyte_cdk.sources.declarative.async_job.job import AsyncJob +from airbyte_cdk.sources.types import StreamSlice class AsyncJobRepository: diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_stream.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_stream.py index d30d833c8d5b..09ce080c8ae4 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_stream.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_stream.py @@ -6,7 +6,7 @@ from typing import Any, Iterable, List, Mapping, MutableMapping, Optional, Union from airbyte_cdk.models import SyncMode -from airbyte_cdk.sources.declarative.incremental import GlobalSubstreamCursor, PerPartitionCursor +from airbyte_cdk.sources.declarative.incremental import GlobalSubstreamCursor, PerPartitionCursor, PerPartitionWithGlobalCursor from airbyte_cdk.sources.declarative.interpolation import InterpolatedString from airbyte_cdk.sources.declarative.migrations.state_migration import StateMigration from airbyte_cdk.sources.declarative.retrievers import SimpleRetriever @@ -200,7 +200,7 @@ def _get_checkpoint_reader( cursor = self.get_cursor() checkpoint_mode = self._checkpoint_mode - if isinstance(cursor, (GlobalSubstreamCursor, PerPartitionCursor)): + if isinstance(cursor, (GlobalSubstreamCursor, PerPartitionCursor, PerPartitionWithGlobalCursor)): self.has_multiple_slices = True return CursorBasedCheckpointReader( stream_slices=mappings_or_slices, diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/extractors/record_filter.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/extractors/record_filter.py index 0d175d35b057..f396224c12e8 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/extractors/record_filter.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/extractors/record_filter.py @@ -3,9 +3,9 @@ # import datetime from dataclasses import InitVar, dataclass -from typing import Any, Iterable, Mapping, Optional +from typing import Any, Iterable, Mapping, Optional, Union -from airbyte_cdk.sources.declarative.incremental import DatetimeBasedCursor, PerPartitionCursor +from airbyte_cdk.sources.declarative.incremental import DatetimeBasedCursor, GlobalSubstreamCursor, PerPartitionWithGlobalCursor from airbyte_cdk.sources.declarative.interpolation.interpolated_boolean import InterpolatedBoolean from airbyte_cdk.sources.types import Config, StreamSlice, StreamState @@ -55,14 +55,12 @@ class ClientSideIncrementalRecordFilterDecorator(RecordFilter): def __init__( self, date_time_based_cursor: DatetimeBasedCursor, - per_partition_cursor: Optional[PerPartitionCursor] = None, - is_global_substream_cursor: bool = False, + substream_cursor: Optional[Union[PerPartitionWithGlobalCursor, GlobalSubstreamCursor]], **kwargs: Any, ): super().__init__(**kwargs) self._date_time_based_cursor = date_time_based_cursor - self._per_partition_cursor = per_partition_cursor - self.is_global_substream_cursor = is_global_substream_cursor + self._substream_cursor = substream_cursor @property def _cursor_field(self) -> str: @@ -108,15 +106,9 @@ def _get_state_value(self, stream_state: StreamState, stream_slice: StreamSlice) :param StreamSlice stream_slice: Current Stream slice :return Optional[str]: cursor_value in case it was found, otherwise None. """ - if self._per_partition_cursor: - # self._per_partition_cursor is the same object that DeclarativeStream uses to save/update stream_state - partition_state = self._per_partition_cursor.select_state(stream_slice=stream_slice) - return partition_state.get(self._cursor_field) if partition_state else None + state = (self._substream_cursor or self._date_time_based_cursor).select_state(stream_slice) - if self.is_global_substream_cursor: - return stream_state.get("state", {}).get(self._cursor_field) # type: ignore # state is inside a dict for GlobalSubstreamCursor - - return stream_state.get(self._cursor_field) + return state.get(self._cursor_field) if state else None def _get_filter_date(self, state_value: Optional[str]) -> datetime.datetime: start_date_parsed = self._start_date_from_config diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/__init__.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/__init__.py index 5699000bd9f4..11c1cba9913f 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/__init__.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/__init__.py @@ -6,7 +6,11 @@ from airbyte_cdk.sources.declarative.incremental.declarative_cursor import DeclarativeCursor from airbyte_cdk.sources.declarative.incremental.global_substream_cursor import GlobalSubstreamCursor from airbyte_cdk.sources.declarative.incremental.per_partition_cursor import CursorFactory, PerPartitionCursor -from airbyte_cdk.sources.declarative.incremental.resumable_full_refresh_cursor import ResumableFullRefreshCursor, ChildPartitionResumableFullRefreshCursor +from airbyte_cdk.sources.declarative.incremental.per_partition_with_global import PerPartitionWithGlobalCursor +from airbyte_cdk.sources.declarative.incremental.resumable_full_refresh_cursor import ( + ChildPartitionResumableFullRefreshCursor, + ResumableFullRefreshCursor, +) __all__ = [ "CursorFactory", @@ -14,6 +18,7 @@ "DeclarativeCursor", "GlobalSubstreamCursor", "PerPartitionCursor", + "PerPartitionWithGlobalCursor", "ResumableFullRefreshCursor", - "ChildPartitionResumableFullRefreshCursor" + "ChildPartitionResumableFullRefreshCursor", ] diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py index 9e37bc34385e..f7454ef083a5 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py @@ -4,13 +4,48 @@ import threading import time -from typing import Any, Iterable, Mapping, Optional, Union +from typing import Any, Callable, Iterable, Mapping, Optional, TypeVar, Union from airbyte_cdk.sources.declarative.incremental.datetime_based_cursor import DatetimeBasedCursor from airbyte_cdk.sources.declarative.incremental.declarative_cursor import DeclarativeCursor from airbyte_cdk.sources.declarative.partition_routers.partition_router import PartitionRouter from airbyte_cdk.sources.types import Record, StreamSlice, StreamState +T = TypeVar("T") + + +def iterate_with_last_flag_and_state( + generator: Iterable[T], get_stream_state_func: Callable[[], Optional[Mapping[str, StreamState]]] +) -> Iterable[tuple[T, bool, Any]]: + """ + Iterates over the given generator, yielding tuples containing the element, a flag + indicating whether it's the last element in the generator, and the result of + `get_stream_state_func` applied to the element. + + Args: + generator: The iterable to iterate over. + get_stream_state_func: A function that takes an element from the generator and + returns its state. + + Returns: + An iterator that yields tuples of the form (element, is_last, state). + """ + + iterator = iter(generator) + + try: + current = next(iterator) + state = get_stream_state_func() + except StopIteration: + return # Return an empty iterator + + for next_item in iterator: + yield current, False, state + current = next_item + state = get_stream_state_func() + + yield current, True, state + class Timer: """ @@ -25,7 +60,7 @@ def start(self) -> None: def finish(self) -> int: if self._start: - return int((time.perf_counter_ns() - self._start) // 1e9) + return ((time.perf_counter_ns() - self._start) / 1e9).__ceil__() else: raise RuntimeError("Global substream cursor timer not started") @@ -52,6 +87,12 @@ def __init__(self, stream_cursor: DatetimeBasedCursor, partition_router: Partiti self._slice_semaphore = threading.Semaphore(0) # Start with 0, indicating no slices being tracked self._all_slices_yielded = False self._lookback_window: Optional[int] = None + self._current_partition: Optional[Mapping[str, Any]] = None + self._last_slice: bool = False + self._parent_state: Optional[Mapping[str, Any]] = None + + def start_slices_generation(self) -> None: + self._timer.start() def stream_slices(self) -> Iterable[StreamSlice]: """ @@ -68,32 +109,39 @@ def stream_slices(self) -> Iterable[StreamSlice]: * Setting `self._all_slices_yielded = True`. We do that before actually yielding the last slice as the caller of `stream_slices` might stop iterating at any point and hence the code after `yield` might not be executed * Yield the last slice. At that point, once there are as many slices yielded as closes, the global slice will be closed too """ - previous_slice = None - slice_generator = ( StreamSlice(partition=partition, cursor_slice=cursor_slice) for partition in self._partition_router.stream_slices() for cursor_slice in self._stream_cursor.stream_slices() ) - self._timer.start() - for slice in slice_generator: - if previous_slice is not None: - # Release the semaphore to indicate that a slice has been yielded - self._slice_semaphore.release() - yield previous_slice + self.start_slices_generation() + for slice, last, state in iterate_with_last_flag_and_state(slice_generator, self._partition_router.get_stream_state): + self._parent_state = state + self.register_slice(last) + yield slice + self._parent_state = self._partition_router.get_stream_state() - # Store the current slice as the previous slice for the next iteration - previous_slice = slice + def generate_slices_from_partition(self, partition: StreamSlice) -> Iterable[StreamSlice]: + slice_generator = ( + StreamSlice(partition=partition, cursor_slice=cursor_slice) for cursor_slice in self._stream_cursor.stream_slices() + ) - # After all slices have been generated, release the semaphore one final time - # and flag that all slices have been yielded - self._slice_semaphore.release() - self._all_slices_yielded = True + yield from slice_generator - # Yield the last slice - if previous_slice is not None: - yield previous_slice + def register_slice(self, last: bool) -> None: + """ + Tracks the processing of a stream slice. + + Releases the semaphore for each slice. If it's the last slice (`last=True`), + sets `_all_slices_yielded` to `True` to indicate no more slices will be processed. + + Args: + last (bool): True if the current slice is the last in the sequence. + """ + self._slice_semaphore.release() + if last: + self._all_slices_yielded = True def set_initial_state(self, stream_state: StreamState) -> None: """ @@ -125,7 +173,12 @@ def set_initial_state(self, stream_state: StreamState) -> None: self._lookback_window = stream_state["lookback_window"] self._inject_lookback_into_stream_cursor(stream_state["lookback_window"]) - self._stream_cursor.set_initial_state(stream_state["state"]) + if "state" in stream_state: + self._stream_cursor.set_initial_state(stream_state["state"]) + elif "states" not in stream_state: + # We assume that `stream_state` is in the old global format + # Example: {"global_state_format_key": "global_state_format_value"} + self._stream_cursor.set_initial_state(stream_state) # Set parent state for partition routers based on parent streams self._partition_router.set_initial_state(stream_state) @@ -172,9 +225,8 @@ def close_slice(self, stream_slice: StreamSlice, *args: Any) -> None: def get_stream_state(self) -> StreamState: state: dict[str, Any] = {"state": self._stream_cursor.get_stream_state()} - parent_state = self._partition_router.get_stream_state() - if parent_state: - state["parent_state"] = parent_state + if self._parent_state: + state["parent_state"] = self._parent_state if self._lookback_window is not None: state["lookback_window"] = self._lookback_window diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py index bec5d061eaa2..86236ec92230 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py @@ -11,6 +11,8 @@ from airbyte_cdk.sources.streams.checkpoint.per_partition_key_serializer import PerPartitionKeySerializer from airbyte_cdk.sources.types import Record, StreamSlice, StreamState +logger = logging.getLogger("airbyte") + class CursorFactory: def __init__(self, create_function: Callable[[], DeclarativeCursor]): @@ -22,23 +24,20 @@ def create(self) -> DeclarativeCursor: class PerPartitionCursor(DeclarativeCursor): """ - Given a stream has many partitions, it is important to provide a state per partition. - - Record | Stream Slice | Last Record | DatetimeCursorBased cursor - -- | -- | -- | -- - 1 | {"start_time": "2021-01-01","end_time": "2021-01-31","owner_resource": "1"''} | cursor_field: “2021-01-15” | 2021-01-15 - 2 | {"start_time": "2021-02-01","end_time": "2021-02-28","owner_resource": "1"''} | cursor_field: “2021-02-15” | 2021-02-15 - 3 | {"start_time": "2021-01-01","end_time": "2021-01-31","owner_resource": "2"''} | cursor_field: “2021-01-03” | 2021-01-03 - 4 | {"start_time": "2021-02-01","end_time": "2021-02-28","owner_resource": "2"''} | cursor_field: “2021-02-14” | 2021-02-14 - - Given the following errors, this can lead to some loss or duplication of records: - When | Problem | Affected Record - -- | -- | -- - Between record #1 and #2 | Loss | #3 - Between record #2 and #3 | Loss | #3, #4 - Between record #3 and #4 | Duplication | #1, #2 - - Therefore, we need to manage state per partition. + Manages state per partition when a stream has many partitions, to prevent data loss or duplication. + + **Partition Limitation and Limit Reached Logic** + + - **DEFAULT_MAX_PARTITIONS_NUMBER**: The maximum number of partitions to keep in memory (default is 10,000). + - **_cursor_per_partition**: An ordered dictionary that stores cursors for each partition. + - **_over_limit**: A counter that increments each time an oldest partition is removed when the limit is exceeded. + + The class ensures that the number of partitions tracked does not exceed the `DEFAULT_MAX_PARTITIONS_NUMBER` to prevent excessive memory usage. + + - When the number of partitions exceeds the limit, the oldest partitions are removed from `_cursor_per_partition`, and `_over_limit` is incremented accordingly. + - The `limit_reached` method returns `True` when `_over_limit` exceeds `DEFAULT_MAX_PARTITIONS_NUMBER`, indicating that the global cursor should be used instead of per-partition cursors. + + This approach avoids unnecessary switching to a global cursor due to temporary spikes in partition counts, ensuring that switching is only done when a sustained high number of partitions is observed. """ DEFAULT_MAX_PARTITIONS_NUMBER = 10000 @@ -54,30 +53,40 @@ def __init__(self, cursor_factory: CursorFactory, partition_router: PartitionRou # The dict is ordered to ensure that once the maximum number of partitions is reached, # the oldest partitions can be efficiently removed, maintaining the most recent partitions. self._cursor_per_partition: OrderedDict[str, DeclarativeCursor] = OrderedDict() + self._over_limit = 0 self._partition_serializer = PerPartitionKeySerializer() def stream_slices(self) -> Iterable[StreamSlice]: slices = self._partition_router.stream_slices() for partition in slices: - # Ensure the maximum number of partitions is not exceeded - self._ensure_partition_limit() + yield from self.generate_slices_from_partition(partition) + + def generate_slices_from_partition(self, partition: StreamSlice) -> Iterable[StreamSlice]: + # Ensure the maximum number of partitions is not exceeded + self._ensure_partition_limit() - cursor = self._cursor_per_partition.get(self._to_partition_key(partition.partition)) - if not cursor: - partition_state = self._state_to_migrate_from if self._state_to_migrate_from else self._NO_CURSOR_STATE - cursor = self._create_cursor(partition_state) - self._cursor_per_partition[self._to_partition_key(partition.partition)] = cursor + cursor = self._cursor_per_partition.get(self._to_partition_key(partition.partition)) + if not cursor: + partition_state = self._state_to_migrate_from if self._state_to_migrate_from else self._NO_CURSOR_STATE + cursor = self._create_cursor(partition_state) + self._cursor_per_partition[self._to_partition_key(partition.partition)] = cursor - for cursor_slice in cursor.stream_slices(): - yield StreamSlice(partition=partition, cursor_slice=cursor_slice, extra_fields=partition.extra_fields) + for cursor_slice in cursor.stream_slices(): + yield StreamSlice(partition=partition, cursor_slice=cursor_slice, extra_fields=partition.extra_fields) def _ensure_partition_limit(self) -> None: """ Ensure the maximum number of partitions is not exceeded. If so, the oldest added partition will be dropped. """ while len(self._cursor_per_partition) > self.DEFAULT_MAX_PARTITIONS_NUMBER - 1: + self._over_limit += 1 oldest_partition = self._cursor_per_partition.popitem(last=False)[0] # Remove the oldest partition - logging.warning(f"The maximum number of partitions has been reached. Dropping the oldest partition: {oldest_partition}.") + logger.warning( + f"The maximum number of partitions has been reached. Dropping the oldest partition: {oldest_partition}. Over limit: {self._over_limit}." + ) + + def limit_reached(self) -> bool: + return self._over_limit > self.DEFAULT_MAX_PARTITIONS_NUMBER def set_initial_state(self, stream_state: StreamState) -> None: """ @@ -121,6 +130,10 @@ def set_initial_state(self, stream_state: StreamState) -> None: for state in stream_state["states"]: self._cursor_per_partition[self._to_partition_key(state["partition"])] = self._create_cursor(state["cursor"]) + # set default state for missing partitions if it is per partition with fallback to global + if "state" in stream_state: + self._state_to_migrate_from = stream_state["state"] + # Set parent state for partition routers based on parent streams self._partition_router.set_initial_state(stream_state) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py new file mode 100644 index 000000000000..d5ad6b40d1b8 --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py @@ -0,0 +1,188 @@ +# +# Copyright (c) 2023 Airbyte, Inc., all rights reserved. +# +from typing import Any, Iterable, Mapping, MutableMapping, Optional, Union + +from airbyte_cdk.sources.declarative.incremental.datetime_based_cursor import DatetimeBasedCursor +from airbyte_cdk.sources.declarative.incremental.declarative_cursor import DeclarativeCursor +from airbyte_cdk.sources.declarative.incremental.global_substream_cursor import GlobalSubstreamCursor, iterate_with_last_flag_and_state +from airbyte_cdk.sources.declarative.incremental.per_partition_cursor import CursorFactory, PerPartitionCursor +from airbyte_cdk.sources.declarative.partition_routers.partition_router import PartitionRouter +from airbyte_cdk.sources.types import Record, StreamSlice, StreamState + + +class PerPartitionWithGlobalCursor(DeclarativeCursor): + """ + Manages state for streams with multiple partitions, with an optional fallback to a global cursor when specific conditions are met. + + This cursor handles partitioned streams by maintaining individual state per partition using `PerPartitionCursor`. If the number of partitions exceeds a defined limit, it switches to a global cursor (`GlobalSubstreamCursor`) to manage state more efficiently. + + **Overview** + + - **Partition-Based State**: Initially manages state per partition to ensure accurate processing of each partition's data. + - **Global Fallback**: Switches to a global cursor when the partition limit is exceeded to handle state management more effectively. + + **Switching Logic** + + - Monitors the number of partitions. + - If `PerPartitionCursor.limit_reached()` returns `True`, sets `_use_global_cursor` to `True`, activating the global cursor. + + **Active Cursor Selection** + + - Uses the `_get_active_cursor()` helper method to select the active cursor based on the `_use_global_cursor` flag. + - This simplifies the logic and ensures consistent cursor usage across methods. + + **State Structure Example** + + ```json + { + "states": [ + { + "partition": {"partition_key": "partition_1"}, + "cursor": {"cursor_field": "2021-01-15"} + }, + { + "partition": {"partition_key": "partition_2"}, + "cursor": {"cursor_field": "2021-02-14"} + } + ], + "state": { + "cursor_field": "2021-02-15" + }, + "use_global_cursor": false + } + ``` + + In this example, the cursor is using partition-based state management (`"use_global_cursor": false`), maintaining separate cursor states for each partition. + + **Usage Scenario** + + Suitable for streams where the number of partitions may vary significantly, requiring dynamic switching between per-partition and global state management to ensure data consistency and efficient synchronization. + """ + + def __init__(self, cursor_factory: CursorFactory, partition_router: PartitionRouter, stream_cursor: DatetimeBasedCursor): + self._partition_router = partition_router + self._per_partition_cursor = PerPartitionCursor(cursor_factory, partition_router) + self._global_cursor = GlobalSubstreamCursor(stream_cursor, partition_router) + self._use_global_cursor = False + self._current_partition: Optional[Mapping[str, Any]] = None + self._last_slice: bool = False + self._parent_state: Optional[Mapping[str, Any]] = None + + def _get_active_cursor(self) -> Union[PerPartitionCursor, GlobalSubstreamCursor]: + return self._global_cursor if self._use_global_cursor else self._per_partition_cursor + + def stream_slices(self) -> Iterable[StreamSlice]: + self._global_cursor.start_slices_generation() + + # Iterate through partitions and process slices + for partition, is_last_partition, parent_state in iterate_with_last_flag_and_state( + self._partition_router.stream_slices(), self._partition_router.get_stream_state + ): + # Generate slices for the current cursor and handle the last slice using the flag + self._parent_state = parent_state + for slice, is_last_slice, _ in iterate_with_last_flag_and_state( + self._get_active_cursor().generate_slices_from_partition(partition=partition), lambda: None + ): + self._global_cursor.register_slice(is_last_slice and is_last_partition) + yield slice + self._parent_state = self._partition_router.get_stream_state() + + def set_initial_state(self, stream_state: StreamState) -> None: + """ + Set the initial state for the cursors. + """ + self._use_global_cursor = stream_state.get("use_global_cursor", False) + + self._parent_state = stream_state.get("parent_state", {}) + + self._global_cursor.set_initial_state(stream_state) + if not self._use_global_cursor: + self._per_partition_cursor.set_initial_state(stream_state) + + def observe(self, stream_slice: StreamSlice, record: Record) -> None: + if not self._use_global_cursor and self._per_partition_cursor.limit_reached(): + self._use_global_cursor = True + + if not self._use_global_cursor: + self._per_partition_cursor.observe(stream_slice, record) + self._global_cursor.observe(stream_slice, record) + + def close_slice(self, stream_slice: StreamSlice, *args: Any) -> None: + if not self._use_global_cursor: + self._per_partition_cursor.close_slice(stream_slice, *args) + self._global_cursor.close_slice(stream_slice, *args) + + def get_stream_state(self) -> StreamState: + final_state: MutableMapping[str, Any] = {"use_global_cursor": self._use_global_cursor} + + final_state.update(self._global_cursor.get_stream_state()) + if not self._use_global_cursor: + final_state.update(self._per_partition_cursor.get_stream_state()) + + final_state["parent_state"] = self._parent_state + if not final_state.get("parent_state"): + del final_state["parent_state"] + + return final_state + + def select_state(self, stream_slice: Optional[StreamSlice] = None) -> Optional[StreamState]: + return self._get_active_cursor().select_state(stream_slice) + + def get_request_params( + self, + *, + stream_state: Optional[StreamState] = None, + stream_slice: Optional[StreamSlice] = None, + next_page_token: Optional[Mapping[str, Any]] = None, + ) -> Mapping[str, Any]: + return self._get_active_cursor().get_request_params( + stream_state=stream_state, + stream_slice=stream_slice, + next_page_token=next_page_token, + ) + + def get_request_headers( + self, + *, + stream_state: Optional[StreamState] = None, + stream_slice: Optional[StreamSlice] = None, + next_page_token: Optional[Mapping[str, Any]] = None, + ) -> Mapping[str, Any]: + return self._get_active_cursor().get_request_headers( + stream_state=stream_state, + stream_slice=stream_slice, + next_page_token=next_page_token, + ) + + def get_request_body_data( + self, + *, + stream_state: Optional[StreamState] = None, + stream_slice: Optional[StreamSlice] = None, + next_page_token: Optional[Mapping[str, Any]] = None, + ) -> Union[Mapping[str, Any], str]: + return self._get_active_cursor().get_request_body_data( + stream_state=stream_state, + stream_slice=stream_slice, + next_page_token=next_page_token, + ) + + def get_request_body_json( + self, + *, + stream_state: Optional[StreamState] = None, + stream_slice: Optional[StreamSlice] = None, + next_page_token: Optional[Mapping[str, Any]] = None, + ) -> Mapping[str, Any]: + return self._get_active_cursor().get_request_body_json( + stream_state=stream_state, + stream_slice=stream_slice, + next_page_token=next_page_token, + ) + + def should_be_synced(self, record: Record) -> bool: + return self._global_cursor.should_be_synced(record) or self._per_partition_cursor.should_be_synced(record) + + def is_greater_than_or_equal(self, first: Record, second: Record) -> bool: + return self._global_cursor.is_greater_than_or_equal(first, second) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py index 4ec85e1ee81f..8d1b2a6d200f 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py @@ -49,6 +49,7 @@ DeclarativeCursor, GlobalSubstreamCursor, PerPartitionCursor, + PerPartitionWithGlobalCursor, ResumableFullRefreshCursor, ) from airbyte_cdk.sources.declarative.interpolation import InterpolatedString @@ -361,9 +362,11 @@ def create_api_key_authenticator( ) ) return ApiKeyAuthenticator( - token_provider=token_provider - if token_provider is not None - else InterpolatedStringTokenProvider(api_token=model.api_token or "", config=config, parameters=model.parameters or {}), + token_provider=( + token_provider + if token_provider is not None + else InterpolatedStringTokenProvider(api_token=model.api_token or "", config=config, parameters=model.parameters or {}) + ), request_option=request_option, config=config, parameters=model.parameters or {}, @@ -431,9 +434,11 @@ def create_bearer_authenticator( if token_provider is not None and model.api_token != "": raise ValueError("If token_provider is set, api_token is ignored and has to be set to empty string.") return BearerAuthenticator( - token_provider=token_provider - if token_provider is not None - else InterpolatedStringTokenProvider(api_token=model.api_token or "", config=config, parameters=model.parameters or {}), + token_provider=( + token_provider + if token_provider is not None + else InterpolatedStringTokenProvider(api_token=model.api_token or "", config=config, parameters=model.parameters or {}) + ), config=config, parameters=model.parameters or {}, ) @@ -683,13 +688,14 @@ def create_declarative_stream(self, model: DeclarativeStreamModel, config: Confi and hasattr(model.incremental_sync, "is_client_side_incremental") and model.incremental_sync.is_client_side_incremental ): - supported_slicers = (DatetimeBasedCursor, GlobalSubstreamCursor, PerPartitionCursor) + supported_slicers = (DatetimeBasedCursor, GlobalSubstreamCursor, PerPartitionWithGlobalCursor) if combined_slicers and not isinstance(combined_slicers, supported_slicers): - raise ValueError("Unsupported Slicer is used. PerPartitionCursor should be used here instead") + raise ValueError("Unsupported Slicer is used. PerPartitionWithGlobalCursor should be used here instead") client_side_incremental_sync = { "date_time_based_cursor": self._create_component_from_model(model=model.incremental_sync, config=config), - "per_partition_cursor": combined_slicers if isinstance(combined_slicers, PerPartitionCursor) else None, - "is_global_substream_cursor": isinstance(combined_slicers, GlobalSubstreamCursor), + "substream_cursor": ( + combined_slicers if isinstance(combined_slicers, (PerPartitionWithGlobalCursor, GlobalSubstreamCursor)) else None + ), } if model.incremental_sync and isinstance(model.incremental_sync, DatetimeBasedCursorModel): @@ -791,11 +797,13 @@ def _merge_stream_slicers(self, model: DeclarativeStreamModel, config: Config) - cursor_component = self._create_component_from_model(model=incremental_sync_model, config=config) return GlobalSubstreamCursor(stream_cursor=cursor_component, partition_router=stream_slicer) else: - return PerPartitionCursor( + cursor_component = self._create_component_from_model(model=incremental_sync_model, config=config) + return PerPartitionWithGlobalCursor( cursor_factory=CursorFactory( lambda: self._create_component_from_model(model=incremental_sync_model, config=config), ), partition_router=stream_slicer, + stream_cursor=cursor_component, ) elif model.incremental_sync: return self._create_component_from_model(model=model.incremental_sync, config=config) if model.incremental_sync else None @@ -1355,9 +1363,11 @@ def create_async_retriever( ), primary_key=None, name=job_download_components_name, - paginator=self._create_component_from_model(model=model.download_paginator, decoder=decoder, config=config, url_base="") - if model.download_paginator - else NoPagination(parameters={}), + paginator=( + self._create_component_from_model(model=model.download_paginator, decoder=decoder, config=config, url_base="") + if model.download_paginator + else NoPagination(parameters={}) + ), config=config, parameters={}, ) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py index b3fcc1794ccf..14898428ede3 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py @@ -3,14 +3,35 @@ # import itertools +import logging from collections import ChainMap +from collections.abc import Callable from dataclasses import InitVar, dataclass from typing import Any, Iterable, List, Mapping, Optional from airbyte_cdk.sources.declarative.partition_routers.partition_router import PartitionRouter +from airbyte_cdk.sources.declarative.partition_routers.substream_partition_router import SubstreamPartitionRouter from airbyte_cdk.sources.types import StreamSlice, StreamState +def check_for_substream_in_slicers(slicers: Iterable[PartitionRouter], log_warning: Callable[[str], None]) -> None: + """ + Recursively checks for the presence of SubstreamPartitionRouter within slicers. + Logs a warning if a SubstreamPartitionRouter is found within a CartesianProductStreamSlicer. + + Args: + slicers (Iterable[PartitionRouter]): The list of slicers to check. + log_warning (Callable): Logging function to record warnings. + """ + for slicer in slicers: + if isinstance(slicer, SubstreamPartitionRouter): + log_warning("Parent state handling is not supported for CartesianProductStreamSlicer.") + return + elif isinstance(slicer, CartesianProductStreamSlicer): + # Recursively check sub-slicers within CartesianProductStreamSlicer + check_for_substream_in_slicers(slicer.stream_slicers, log_warning) + + @dataclass class CartesianProductStreamSlicer(PartitionRouter): """ @@ -35,6 +56,9 @@ class CartesianProductStreamSlicer(PartitionRouter): stream_slicers: List[PartitionRouter] parameters: InitVar[Mapping[str, Any]] + def __post_init__(self, parameters: Mapping[str, Any]) -> None: + check_for_substream_in_slicers(self.stream_slicers, self.logger.warning) + def get_request_params( self, *, @@ -115,52 +139,16 @@ def stream_slices(self) -> Iterable[StreamSlice]: def set_initial_state(self, stream_state: StreamState) -> None: """ - Set the state of the parent streams. - - This method tries to set the parent state for every stream slicer. If a stream slicer does not have parent streams, - this will be skipped due to the default StreamSlicer implementation. - - Args: - stream_state (StreamState): The state of the streams to be set. If `parent_state` exists in the - stream_state, it will update the state of each parent stream with the corresponding state from the stream_state. - - Example of state format: - { - "parent_state": { - "parent_stream_name_1": { - "last_updated": "2023-05-27T00:00:00Z" - }, - "parent_stream_name_2": { - "last_updated": "2023-05-27T00:00:00Z" - } - } - } + Parent stream states are not supported for cartesian product stream slicer """ - for stream_slicer in self.stream_slicers: - stream_slicer.set_initial_state(stream_state) + pass def get_stream_state(self) -> Optional[Mapping[str, StreamState]]: """ - Get the state of the parent streams. - - This method returns the combined parent states from all stream slicers. If a stream slicer does not have parent streams, - this will be skipped due to the default StreamSlicer implementation. - - Returns: - Optional[Mapping[str, StreamState]]: The current state of the parent streams in a dictionary format. - The returned format will be: - { - "parent_stream_name1": { - "last_updated": "2023-05-27T00:00:00Z" - }, - "parent_stream_name2": { - "last_updated": "2023-05-27T00:00:00Z" - } - } + Parent stream states are not supported for cartesian product stream slicer """ - combined_state: dict[str, StreamState] = {} - for s in self.stream_slicers: - parent_state = s.get_stream_state() - if parent_state: - combined_state.update(parent_state) - return combined_state + pass + + @property + def logger(self) -> logging.Logger: + return logging.getLogger("airbyte.CartesianProductStreamSlicer") diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py index 9eac1f6bb66e..b9ca80f25463 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py @@ -4,7 +4,7 @@ import copy import logging from dataclasses import InitVar, dataclass -from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Mapping, Optional, Union +from typing import TYPE_CHECKING, Any, Iterable, List, Mapping, Optional, Union import dpath from airbyte_cdk.models import AirbyteMessage @@ -69,7 +69,6 @@ def __post_init__(self, parameters: Mapping[str, Any]) -> None: if not self.parent_stream_configs: raise ValueError("SubstreamPartitionRouter needs at least 1 parent stream") self._parameters = parameters - self._parent_state: Dict[str, Any] = {} def get_request_params( self, @@ -144,8 +143,6 @@ def stream_slices(self) -> Iterable[StreamSlice]: if parent_stream_config.extra_fields: extra_fields = [[field_path_part.eval(self.config) for field_path_part in field_path] for field_path in parent_stream_config.extra_fields] # type: ignore # extra_fields is always casted to an interpolated string - incremental_dependency = parent_stream_config.incremental_dependency - # read_stateless() assumes the parent is not concurrent. This is currently okay since the concurrent CDK does # not support either substreams or RFR, but something that needs to be considered once we do for parent_record in parent_stream.read_only_records(): @@ -179,13 +176,6 @@ def stream_slices(self) -> Iterable[StreamSlice]: extra_fields=extracted_extra_fields, ) - if incremental_dependency: - self._parent_state[parent_stream.name] = copy.deepcopy(parent_stream.state) - - # A final parent state update and yield of records is needed, so we don't skip records for the final parent slice - if incremental_dependency: - self._parent_state[parent_stream.name] = copy.deepcopy(parent_stream.state) - def _extract_extra_fields( self, parent_record: Mapping[str, Any] | AirbyteMessage, extra_fields: Optional[List[List[str]]] = None ) -> Mapping[str, Any]: @@ -242,7 +232,6 @@ def set_initial_state(self, stream_state: StreamState) -> None: for parent_config in self.parent_stream_configs: if parent_config.incremental_dependency: parent_config.stream.state = parent_state.get(parent_config.stream.name, {}) - self._parent_state[parent_config.stream.name] = parent_config.stream.state def get_stream_state(self) -> Optional[Mapping[str, StreamState]]: """ @@ -261,7 +250,11 @@ def get_stream_state(self) -> Optional[Mapping[str, StreamState]]: } } """ - return copy.deepcopy(self._parent_state) + parent_state = {} + for parent_config in self.parent_stream_configs: + if parent_config.incremental_dependency: + parent_state[parent_config.stream.name] = copy.deepcopy(parent_config.stream.state) + return parent_state @property def logger(self) -> logging.Logger: diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/extractors/test_record_filter.py b/airbyte-cdk/python/unit_tests/sources/declarative/extractors/test_record_filter.py index 693e13e86fbf..498f61b714bd 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/extractors/test_record_filter.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/extractors/test_record_filter.py @@ -6,7 +6,12 @@ import pytest from airbyte_cdk.sources.declarative.datetime import MinMaxDatetime from airbyte_cdk.sources.declarative.extractors.record_filter import ClientSideIncrementalRecordFilterDecorator, RecordFilter -from airbyte_cdk.sources.declarative.incremental import CursorFactory, DatetimeBasedCursor, PerPartitionCursor +from airbyte_cdk.sources.declarative.incremental import ( + CursorFactory, + DatetimeBasedCursor, + GlobalSubstreamCursor, + PerPartitionWithGlobalCursor, +) from airbyte_cdk.sources.declarative.interpolation import InterpolatedString from airbyte_cdk.sources.declarative.models import CustomRetriever, DeclarativeStream, ParentStreamConfig from airbyte_cdk.sources.declarative.partition_routers import SubstreamPartitionRouter @@ -18,6 +23,7 @@ {"id": 2, "created_at": "2021-01-03"}, {"id": 3, "created_at": "2021-01-04"}, {"id": 4, "created_at": "2021-02-01"}, + {"id": 5, "created_at": "2021-01-02"}, ] DATE_TIME_WITH_TZ_FORMAT = "%Y-%m-%dT%H:%M:%S%z" @@ -41,29 +47,29 @@ "filter_template, records, expected_records", [ ( - "{{ record['created_at'] > stream_state['created_at'] }}", - [{"id": 1, "created_at": "06-06-21"}, {"id": 2, "created_at": "06-07-21"}, {"id": 3, "created_at": "06-08-21"}], - [{"id": 2, "created_at": "06-07-21"}, {"id": 3, "created_at": "06-08-21"}], + "{{ record['created_at'] > stream_state['created_at'] }}", + [{"id": 1, "created_at": "06-06-21"}, {"id": 2, "created_at": "06-07-21"}, {"id": 3, "created_at": "06-08-21"}], + [{"id": 2, "created_at": "06-07-21"}, {"id": 3, "created_at": "06-08-21"}], ), ( - "{{ record['last_seen'] >= stream_slice['last_seen'] }}", - [{"id": 1, "last_seen": "06-06-21"}, {"id": 2, "last_seen": "06-07-21"}, {"id": 3, "last_seen": "06-10-21"}], - [{"id": 3, "last_seen": "06-10-21"}], + "{{ record['last_seen'] >= stream_slice['last_seen'] }}", + [{"id": 1, "last_seen": "06-06-21"}, {"id": 2, "last_seen": "06-07-21"}, {"id": 3, "last_seen": "06-10-21"}], + [{"id": 3, "last_seen": "06-10-21"}], ), ( - "{{ record['id'] >= next_page_token['last_seen_id'] }}", - [{"id": 11}, {"id": 12}, {"id": 13}, {"id": 14}, {"id": 15}], - [{"id": 14}, {"id": 15}], + "{{ record['id'] >= next_page_token['last_seen_id'] }}", + [{"id": 11}, {"id": 12}, {"id": 13}, {"id": 14}, {"id": 15}], + [{"id": 14}, {"id": 15}], ), ( - "{{ record['id'] >= next_page_token['path_to_nowhere'] }}", - [{"id": 11}, {"id": 12}, {"id": 13}, {"id": 14}, {"id": 15}], - [], + "{{ record['id'] >= next_page_token['path_to_nowhere'] }}", + [{"id": 11}, {"id": 12}, {"id": 13}, {"id": 14}, {"id": 15}], + [], ), ( - "{{ record['created_at'] > parameters['created_at'] }}", - [{"id": 1, "created_at": "06-06-21"}, {"id": 2, "created_at": "06-07-21"}, {"id": 3, "created_at": "06-08-21"}], - [{"id": 3, "created_at": "06-08-21"}], + "{{ record['created_at'] > parameters['created_at'] }}", + [{"id": 1, "created_at": "06-06-21"}, {"id": 2, "created_at": "06-07-21"}, {"id": 3, "created_at": "06-08-21"}], + [{"id": 3, "created_at": "06-08-21"}], ), ( "{{ record['created_at'] > stream_slice.extra_fields['created_at'] }}", @@ -97,62 +103,62 @@ def test_record_filter(filter_template: str, records: List[Mapping], expected_re @pytest.mark.parametrize( "datetime_format, stream_state, record_filter_expression, end_datetime, records_to_filter, expected_record_ids", [ - (DATE_FORMAT, {}, None, "2021-01-05", RECORDS_TO_FILTER_DATE_FORMAT, [2, 3]), - (DATE_FORMAT, {}, None, None, RECORDS_TO_FILTER_DATE_FORMAT, [2, 3, 4]), + (DATE_FORMAT, {}, None, "2021-01-05", RECORDS_TO_FILTER_DATE_FORMAT, [2, 3, 5]), + (DATE_FORMAT, {}, None, None, RECORDS_TO_FILTER_DATE_FORMAT, [2, 3, 4, 5]), (DATE_FORMAT, {"created_at": "2021-01-04"}, None, "2021-01-05", RECORDS_TO_FILTER_DATE_FORMAT, [3]), (DATE_FORMAT, {"created_at": "2021-01-04"}, None, None, RECORDS_TO_FILTER_DATE_FORMAT, [3, 4]), - (DATE_FORMAT, {}, "{{ record['id'] % 2 == 1 }}", "2021-01-05", RECORDS_TO_FILTER_DATE_FORMAT, [3]), + (DATE_FORMAT, {}, "{{ record['id'] % 2 == 1 }}", "2021-01-05", RECORDS_TO_FILTER_DATE_FORMAT, [3, 5]), (DATE_TIME_WITH_TZ_FORMAT, {}, None, "2021-01-05T00:00:00+00:00", RECORDS_TO_FILTER_DATE_TIME_WITH_TZ_FORMAT, [2, 3]), (DATE_TIME_WITH_TZ_FORMAT, {}, None, None, RECORDS_TO_FILTER_DATE_TIME_WITH_TZ_FORMAT, [2, 3, 4]), ( - DATE_TIME_WITH_TZ_FORMAT, - {"created_at": "2021-01-04T00:00:00+00:00"}, - None, - "2021-01-05T00:00:00+00:00", - RECORDS_TO_FILTER_DATE_TIME_WITH_TZ_FORMAT, - [3], + DATE_TIME_WITH_TZ_FORMAT, + {"created_at": "2021-01-04T00:00:00+00:00"}, + None, + "2021-01-05T00:00:00+00:00", + RECORDS_TO_FILTER_DATE_TIME_WITH_TZ_FORMAT, + [3], ), ( - DATE_TIME_WITH_TZ_FORMAT, - {"created_at": "2021-01-04T00:00:00+00:00"}, - None, - None, - RECORDS_TO_FILTER_DATE_TIME_WITH_TZ_FORMAT, - [3, 4], + DATE_TIME_WITH_TZ_FORMAT, + {"created_at": "2021-01-04T00:00:00+00:00"}, + None, + None, + RECORDS_TO_FILTER_DATE_TIME_WITH_TZ_FORMAT, + [3, 4], ), ( - DATE_TIME_WITH_TZ_FORMAT, - {}, - "{{ record['id'] % 2 == 1 }}", - "2021-01-05T00:00:00+00:00", - RECORDS_TO_FILTER_DATE_TIME_WITH_TZ_FORMAT, - [3], + DATE_TIME_WITH_TZ_FORMAT, + {}, + "{{ record['id'] % 2 == 1 }}", + "2021-01-05T00:00:00+00:00", + RECORDS_TO_FILTER_DATE_TIME_WITH_TZ_FORMAT, + [3], ), (DATE_TIME_WITHOUT_TZ_FORMAT, {}, None, "2021-01-05T00:00:00", RECORDS_TO_FILTER_DATE_TIME_WITHOUT_TZ_FORMAT, [2, 3]), (DATE_TIME_WITHOUT_TZ_FORMAT, {}, None, None, RECORDS_TO_FILTER_DATE_TIME_WITHOUT_TZ_FORMAT, [2, 3, 4]), ( - DATE_TIME_WITHOUT_TZ_FORMAT, - {"created_at": "2021-01-04T00:00:00"}, - None, - "2021-01-05T00:00:00", - RECORDS_TO_FILTER_DATE_TIME_WITHOUT_TZ_FORMAT, - [3], + DATE_TIME_WITHOUT_TZ_FORMAT, + {"created_at": "2021-01-04T00:00:00"}, + None, + "2021-01-05T00:00:00", + RECORDS_TO_FILTER_DATE_TIME_WITHOUT_TZ_FORMAT, + [3], ), ( - DATE_TIME_WITHOUT_TZ_FORMAT, - {"created_at": "2021-01-04T00:00:00"}, - None, - None, - RECORDS_TO_FILTER_DATE_TIME_WITHOUT_TZ_FORMAT, - [3, 4], + DATE_TIME_WITHOUT_TZ_FORMAT, + {"created_at": "2021-01-04T00:00:00"}, + None, + None, + RECORDS_TO_FILTER_DATE_TIME_WITHOUT_TZ_FORMAT, + [3, 4], ), ( - DATE_TIME_WITHOUT_TZ_FORMAT, - {}, - "{{ record['id'] % 2 == 1 }}", - "2021-01-05T00:00:00", - RECORDS_TO_FILTER_DATE_TIME_WITHOUT_TZ_FORMAT, - [3], + DATE_TIME_WITHOUT_TZ_FORMAT, + {}, + "{{ record['id'] % 2 == 1 }}", + "2021-01-05T00:00:00", + RECORDS_TO_FILTER_DATE_TIME_WITHOUT_TZ_FORMAT, + [3], ), ], ids=[ @@ -174,12 +180,12 @@ def test_record_filter(filter_template: str, records: List[Mapping], expected_re ], ) def test_client_side_record_filter_decorator_no_parent_stream( - datetime_format: str, - stream_state: Optional[Mapping], - record_filter_expression: str, - end_datetime: Optional[str], - records_to_filter: List[Mapping], - expected_record_ids: List[int], + datetime_format: str, + stream_state: Optional[Mapping], + record_filter_expression: str, + end_datetime: Optional[str], + records_to_filter: List[Mapping], + expected_record_ids: List[int], ): date_time_based_cursor = DatetimeBasedCursor( start_datetime=MinMaxDatetime(datetime="2021-01-01", datetime_format=DATE_FORMAT, parameters={}), @@ -191,13 +197,14 @@ def test_client_side_record_filter_decorator_no_parent_stream( config={}, parameters={}, ) + date_time_based_cursor.set_initial_state(stream_state) record_filter_decorator = ClientSideIncrementalRecordFilterDecorator( config={}, condition=record_filter_expression, parameters={}, date_time_based_cursor=date_time_based_cursor, - per_partition_cursor=None, + substream_cursor=None, ) filtered_records = list( @@ -208,53 +215,157 @@ def test_client_side_record_filter_decorator_no_parent_stream( @pytest.mark.parametrize( - "stream_state, expected_record_ids", + "stream_state, cursor_type, expected_record_ids", [ - ({}, [2, 3]), - ({"states": [{"some_parent_id": {"created_at": "2021-01-03"}}]}, [3]), + # Use only DatetimeBasedCursor + ({}, 'datetime', [2, 3, 5]), + # Use GlobalSubstreamCursor with no state + ({}, 'global_substream', [2, 3, 5]), + # Use GlobalSubstreamCursor with global state + ( + { + 'state': {'created_at': '2021-01-03'} + }, + 'global_substream', + [2, 3] + ), + # Use PerPartitionWithGlobalCursor with partition state + ( + { + 'use_global_cursor': False, + 'state': {'created_at': '2021-01-10'}, + 'states': [ + { + 'partition': {'id': 'some_parent_id', 'parent_slice': {}}, + 'cursor': {'created_at': '2021-01-03'} + } + ] + }, + 'per_partition_with_global', + [2, 3] + ), + # Use PerPartitionWithGlobalCursor with global state + ( + { + 'use_global_cursor': True, + 'state': {'created_at': '2021-01-03'}, + 'states': [ + { + 'partition': {'id': 'some_parent_id', 'parent_slice': {}}, + 'cursor': {'created_at': '2021-01-13'} + } + ] + }, + 'per_partition_with_global', + [2, 3] + ), + # Use PerPartitionWithGlobalCursor with partition state missing, global cursor used + ( + { + 'use_global_cursor': True, + 'state': {'created_at': '2021-01-03'} + }, + 'per_partition_with_global', + [2, 3] + ), + # Use PerPartitionWithGlobalCursor with partition state missing, global cursor not used + ( + { + 'use_global_cursor': False, + 'state': {'created_at': '2021-01-03'} + }, + 'per_partition_with_global', + [2, 3, 5] # Global cursor not used, start date used + ), ], - ids=["no_stream_state_no_record_filter", "with_stream_state_no_record_filter"], + ids=[ + 'datetime_cursor_only', + 'global_substream_no_state', + 'global_substream_with_state', + 'per_partition_with_partition_state', + 'per_partition_with_global_state', + 'per_partition_partition_missing_global_cursor_used', + 'per_partition_partition_missing_global_cursor_not_used', + ] ) -def test_client_side_record_filter_decorator_with_parent_stream(stream_state: Optional[Mapping], expected_record_ids: List[int]): - date_time_based_cursor = DatetimeBasedCursor( - start_datetime=MinMaxDatetime(datetime="2021-01-01", datetime_format=DATE_FORMAT, parameters={}), - end_datetime=MinMaxDatetime(datetime="2021-01-05", datetime_format=DATE_FORMAT, parameters={}), - step="P10Y", - cursor_field=InterpolatedString.create("created_at", parameters={}), - datetime_format=DATE_FORMAT, - cursor_granularity="P1D", - config={}, - parameters={}, - ) - per_partition_cursor = PerPartitionCursor( - cursor_factory=CursorFactory(lambda: date_time_based_cursor), - partition_router=SubstreamPartitionRouter( +def test_client_side_record_filter_decorator_with_cursor_types( + stream_state: Optional[Mapping], + cursor_type: str, + expected_record_ids: List[int] +): + def date_time_based_cursor_factory() -> DatetimeBasedCursor: + return DatetimeBasedCursor( + start_datetime=MinMaxDatetime(datetime="2021-01-01", datetime_format=DATE_FORMAT, parameters={}), + end_datetime=MinMaxDatetime(datetime="2021-01-05", datetime_format=DATE_FORMAT, parameters={}), + step="P10Y", + cursor_field=InterpolatedString.create("created_at", parameters={}), + datetime_format=DATE_FORMAT, + cursor_granularity="P1D", config={}, parameters={}, - parent_stream_configs=[ - ParentStreamConfig( - type="ParentStreamConfig", - parent_key="id", - partition_field="id", - stream=DeclarativeStream( - type="DeclarativeStream", retriever=CustomRetriever(type="CustomRetriever", class_name="a_class_name") - ), - ) - ], - ), + ) + + date_time_based_cursor = date_time_based_cursor_factory() + + substream_cursor = None + partition_router = SubstreamPartitionRouter( + config={}, + parameters={}, + parent_stream_configs=[ + ParentStreamConfig( + type="ParentStreamConfig", + parent_key="id", + partition_field="id", + stream=DeclarativeStream( + type="DeclarativeStream", + retriever=CustomRetriever(type="CustomRetriever", class_name="a_class_name") + ), + ) + ], ) - if stream_state: - per_partition_cursor.set_initial_state( - {"states": [{"partition": {"id": "some_parent_id", "parent_slice": {}}, "cursor": {"created_at": "2021-01-04"}}]} + + if cursor_type == 'datetime': + # Use only DatetimeBasedCursor + pass # No additional cursor needed + elif cursor_type == 'global_substream': + # Create GlobalSubstreamCursor instance + substream_cursor = GlobalSubstreamCursor( + stream_cursor=date_time_based_cursor, + partition_router=partition_router, + ) + if stream_state: + substream_cursor.set_initial_state(stream_state) + elif cursor_type == 'per_partition_with_global': + # Create PerPartitionWithGlobalCursor instance + substream_cursor = PerPartitionWithGlobalCursor( + cursor_factory=CursorFactory(date_time_based_cursor_factory), + partition_router=partition_router, + stream_cursor=date_time_based_cursor, ) + else: + raise ValueError(f"Unsupported cursor type: {cursor_type}") + + if substream_cursor and stream_state: + substream_cursor.set_initial_state(stream_state) + elif stream_state: + date_time_based_cursor.set_initial_state(stream_state) + + # Create the record_filter_decorator with appropriate cursor record_filter_decorator = ClientSideIncrementalRecordFilterDecorator( - config={}, parameters={}, date_time_based_cursor=date_time_based_cursor, per_partition_cursor=per_partition_cursor + config={}, + parameters={}, + date_time_based_cursor=date_time_based_cursor, + substream_cursor=substream_cursor, ) + + # The partition we're testing + stream_slice = StreamSlice(partition={"id": "some_parent_id", "parent_slice": {}}, cursor_slice={}) + filtered_records = list( record_filter_decorator.filter_records( records=RECORDS_TO_FILTER_DATE_FORMAT, stream_state=stream_state, - stream_slice=StreamSlice(partition={"id": "some_parent_id", "parent_slice": {}}, cursor_slice={}), + stream_slice=stream_slice, next_page_token=None, ) ) diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/incremental/test_per_partition_cursor_integration.py b/airbyte-cdk/python/unit_tests/sources/declarative/incremental/test_per_partition_cursor_integration.py index 3e2c7b77f0f8..4fff298b99aa 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/incremental/test_per_partition_cursor_integration.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/incremental/test_per_partition_cursor_integration.py @@ -2,6 +2,7 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +import logging from unittest.mock import MagicMock, patch from airbyte_cdk.models import ( @@ -202,12 +203,14 @@ def test_given_record_for_partition_when_read_then_update_state(): ) assert stream_instance.state == { + "state": {}, + "use_global_cursor": False, "states": [ { "partition": {"partition_field": "1"}, "cursor": {CURSOR_FIELD: "2022-01-15"}, } - ] + ], } @@ -282,7 +285,14 @@ def test_substream_without_input_state(): ] -def test_partition_limitation(): +def test_partition_limitation(caplog): + """ + Test that when the number of partitions exceeds the maximum allowed limit in PerPartitionCursor, + the oldest partitions are dropped, and the state is updated accordingly. + + In this test, we set the maximum number of partitions to 2 and provide 3 partitions. + We verify that the state only retains information for the two most recent partitions. + """ source = ManifestDeclarativeSource( source_config=ManifestBuilder() .with_list_partition_router("Rates", "partition_field", ["1", "2", "3"]) @@ -351,14 +361,24 @@ def test_partition_limitation(): ] logger = MagicMock() - # with patch.object(PerPartitionCursor, "stream_slices", return_value=partition_slices): - with patch.object(SimpleRetriever, "_read_pages", side_effect=records_list): - with patch.object(PerPartitionCursor, "DEFAULT_MAX_PARTITIONS_NUMBER", 2): - output = list(source.read(logger, {}, catalog, initial_state)) + # Use caplog to capture logs + with caplog.at_level(logging.WARNING, logger="airbyte"): + with patch.object(SimpleRetriever, "_read_pages", side_effect=records_list): + with patch.object(PerPartitionCursor, "DEFAULT_MAX_PARTITIONS_NUMBER", 2): + output = list(source.read(logger, {}, catalog, initial_state)) + + # Check if the warning was logged + logged_messages = [record.message for record in caplog.records if record.levelname == "WARNING"] + warning_message = ( + 'The maximum number of partitions has been reached. Dropping the oldest partition: {"partition_field":"1"}. Over limit: 1.' + ) + assert warning_message in logged_messages - # assert output_data == expected_records final_state = [orjson.loads(orjson.dumps(message.state.stream.stream_state)) for message in output if message.state] assert final_state[-1] == { + "lookback_window": 1, + "state": {"cursor_field": "2022-02-17"}, + "use_global_cursor": False, "states": [ { "partition": {"partition_field": "2"}, @@ -368,5 +388,184 @@ def test_partition_limitation(): "partition": {"partition_field": "3"}, "cursor": {CURSOR_FIELD: "2022-02-17"}, }, - ] + ], + } + + +def test_perpartition_with_fallback(caplog): + """ + Test that when the number of partitions exceeds the limit in PerPartitionCursor, + the cursor falls back to using the global cursor for state management. + + This test also checks that the appropriate warning logs are emitted when the partition limit is exceeded. + """ + source = ManifestDeclarativeSource( + source_config=ManifestBuilder() + .with_list_partition_router("Rates", "partition_field", ["1", "2", "3", "4", "5", "6"]) + .with_incremental_sync( + "Rates", + start_datetime="2022-01-01", + end_datetime="2022-02-28", + datetime_format="%Y-%m-%d", + cursor_field=CURSOR_FIELD, + step="P1M", + cursor_granularity="P1D", + ) + .build() + ) + + partition_slices = [StreamSlice(partition={"partition_field": str(i)}, cursor_slice={}) for i in range(1, 7)] + + records_list = [ + [ + Record({"a record key": "a record value", CURSOR_FIELD: "2022-01-15"}, partition_slices[0]), + Record({"a record key": "a record value", CURSOR_FIELD: "2022-01-16"}, partition_slices[0]), + ], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-02-15"}, partition_slices[0])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-01-16"}, partition_slices[1])], + [], + [], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-02-17"}, partition_slices[2])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-01-17"}, partition_slices[3])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-02-19"}, partition_slices[3])], + [], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-02-18"}, partition_slices[4])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-01-13"}, partition_slices[3])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-02-18"}, partition_slices[3])], + ] + + configured_stream = ConfiguredAirbyteStream( + stream=AirbyteStream(name="Rates", json_schema={}, supported_sync_modes=[SyncMode.full_refresh, SyncMode.incremental]), + sync_mode=SyncMode.incremental, + destination_sync_mode=DestinationSyncMode.append, + ) + catalog = ConfiguredAirbyteCatalog(streams=[configured_stream]) + + initial_state = [ + AirbyteStateMessage( + type=AirbyteStateType.STREAM, + stream=AirbyteStreamState( + stream_descriptor=StreamDescriptor(name="Rates", namespace=None), + stream_state=AirbyteStateBlob( + { + "states": [ + { + "partition": {"partition_field": "1"}, + "cursor": {CURSOR_FIELD: "2022-01-01"}, + }, + { + "partition": {"partition_field": "2"}, + "cursor": {CURSOR_FIELD: "2022-01-02"}, + }, + { + "partition": {"partition_field": "3"}, + "cursor": {CURSOR_FIELD: "2022-01-03"}, + }, + ] + } + ), + ), + ) + ] + logger = MagicMock() + + # Use caplog to capture logs + with caplog.at_level(logging.WARNING, logger="airbyte"): + with patch.object(SimpleRetriever, "_read_pages", side_effect=records_list): + with patch.object(PerPartitionCursor, "DEFAULT_MAX_PARTITIONS_NUMBER", 2): + output = list(source.read(logger, {}, catalog, initial_state)) + + # Check if the warnings were logged + expected_warning_messages = [ + 'The maximum number of partitions has been reached. Dropping the oldest partition: {"partition_field":"1"}. Over limit: 1.', + 'The maximum number of partitions has been reached. Dropping the oldest partition: {"partition_field":"2"}. Over limit: 2.', + 'The maximum number of partitions has been reached. Dropping the oldest partition: {"partition_field":"3"}. Over limit: 3.', + ] + + logged_messages = [record.message for record in caplog.records if record.levelname == "WARNING"] + + for expected_message in expected_warning_messages: + assert expected_message in logged_messages + + # Proceed with existing assertions + final_state = [orjson.loads(orjson.dumps(message.state.stream.stream_state)) for message in output if message.state] + assert final_state[-1] == {"use_global_cursor": True, "state": {"cursor_field": "2022-02-19"}, "lookback_window": 1} + + +def test_per_partition_cursor_within_limit(caplog): + """ + Test that the PerPartitionCursor correctly updates the state for each partition + when the number of partitions is within the allowed limit. + + This test also checks that no warning logs are emitted when the partition limit is not exceeded. + """ + source = ManifestDeclarativeSource( + source_config=ManifestBuilder() + .with_list_partition_router("Rates", "partition_field", ["1", "2", "3"]) + .with_incremental_sync( + "Rates", + start_datetime="2022-01-01", + end_datetime="2022-03-31", + datetime_format="%Y-%m-%d", + cursor_field=CURSOR_FIELD, + step="P1M", + cursor_granularity="P1D", + ) + .build() + ) + + partition_slices = [StreamSlice(partition={"partition_field": str(i)}, cursor_slice={}) for i in range(1, 4)] + + records_list = [ + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-01-15"}, partition_slices[0])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-02-20"}, partition_slices[0])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-03-25"}, partition_slices[0])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-01-16"}, partition_slices[1])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-02-18"}, partition_slices[1])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-03-28"}, partition_slices[1])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-01-17"}, partition_slices[2])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-02-19"}, partition_slices[2])], + [Record({"a record key": "a record value", CURSOR_FIELD: "2022-03-29"}, partition_slices[2])], + ] + + configured_stream = ConfiguredAirbyteStream( + stream=AirbyteStream(name="Rates", json_schema={}, supported_sync_modes=[SyncMode.full_refresh, SyncMode.incremental]), + sync_mode=SyncMode.incremental, + destination_sync_mode=DestinationSyncMode.append, + ) + catalog = ConfiguredAirbyteCatalog(streams=[configured_stream]) + + initial_state = {} + logger = MagicMock() + + # Use caplog to capture logs + with caplog.at_level(logging.WARNING, logger="airbyte"): + with patch.object(SimpleRetriever, "_read_pages", side_effect=records_list): + with patch.object(PerPartitionCursor, "DEFAULT_MAX_PARTITIONS_NUMBER", 5): + output = list(source.read(logger, {}, catalog, initial_state)) + + # Since the partition limit is not exceeded, we expect no warnings + logged_warnings = [record.message for record in caplog.records if record.levelname == "WARNING"] + assert len(logged_warnings) == 0 + + # Proceed with existing assertions + final_state = [orjson.loads(orjson.dumps(message.state.stream.stream_state)) for message in output if message.state] + assert final_state[-1] == { + "lookback_window": 1, + "state": {"cursor_field": "2022-03-29"}, + "use_global_cursor": False, + "states": [ + { + "partition": {"partition_field": "1"}, + "cursor": {CURSOR_FIELD: "2022-03-25"}, + }, + { + "partition": {"partition_field": "2"}, + "cursor": {CURSOR_FIELD: "2022-03-28"}, + }, + { + "partition": {"partition_field": "3"}, + "cursor": {CURSOR_FIELD: "2022-03-29"}, + }, + ], } diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py b/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py index 592fb5eb8a29..9b3789050287 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py @@ -25,7 +25,13 @@ from airbyte_cdk.sources.declarative.decoders import JsonDecoder, PaginationDecoderDecorator from airbyte_cdk.sources.declarative.extractors import DpathExtractor, RecordFilter, RecordSelector from airbyte_cdk.sources.declarative.extractors.record_filter import ClientSideIncrementalRecordFilterDecorator -from airbyte_cdk.sources.declarative.incremental import CursorFactory, DatetimeBasedCursor, PerPartitionCursor, ResumableFullRefreshCursor +from airbyte_cdk.sources.declarative.incremental import ( + CursorFactory, + DatetimeBasedCursor, + PerPartitionCursor, + PerPartitionWithGlobalCursor, + ResumableFullRefreshCursor, +) from airbyte_cdk.sources.declarative.interpolation import InterpolatedString from airbyte_cdk.sources.declarative.models import CheckStream as CheckStreamModel from airbyte_cdk.sources.declarative.models import CompositeErrorHandler as CompositeErrorHandlerModel @@ -702,9 +708,9 @@ def test_stream_with_incremental_and_retriever_with_partition_router(): assert isinstance(stream, DeclarativeStream) assert isinstance(stream.retriever, SimpleRetriever) - assert isinstance(stream.retriever.stream_slicer, PerPartitionCursor) + assert isinstance(stream.retriever.stream_slicer, PerPartitionWithGlobalCursor) - datetime_stream_slicer = stream.retriever.stream_slicer._cursor_factory.create() + datetime_stream_slicer = stream.retriever.stream_slicer._per_partition_cursor._cursor_factory.create() assert isinstance(datetime_stream_slicer, DatetimeBasedCursor) assert isinstance(datetime_stream_slicer._start_datetime, MinMaxDatetime) assert datetime_stream_slicer._start_datetime.datetime.string == "{{ config['start_time'] }}" @@ -1047,7 +1053,7 @@ def test_client_side_incremental_with_partition_router(): stream = factory.create_component(model_type=DeclarativeStreamModel, component_definition=stream_manifest, config=input_config) assert isinstance(stream.retriever.record_selector.record_filter, ClientSideIncrementalRecordFilterDecorator) - assert isinstance(stream.retriever.record_selector.record_filter._per_partition_cursor, PerPartitionCursor) + assert isinstance(stream.retriever.record_selector.record_filter._substream_cursor, PerPartitionWithGlobalCursor) def test_given_data_feed_and_client_side_incremental_then_raise_error(): @@ -2056,7 +2062,7 @@ def test_default_schema_loader(self): "values": "{{config['repos']}}", "cursor_field": "a_key", }, - PerPartitionCursor, + PerPartitionWithGlobalCursor, id="test_create_simple_retriever_with_incremental_and_partition_router", ), pytest.param( @@ -2081,7 +2087,7 @@ def test_default_schema_loader(self): "cursor_field": "b_key", }, ], - PerPartitionCursor, + PerPartitionWithGlobalCursor, id="test_create_simple_retriever_with_partition_routers_multiple_components", ), pytest.param(None, None, SinglePartitionRouter, id="test_create_simple_retriever_with_no_incremental_or_partition_router"), @@ -2118,15 +2124,16 @@ def test_merge_incremental_and_partition_router(incremental, partition_router, e assert isinstance(stream, DeclarativeStream) assert isinstance(stream.retriever, SimpleRetriever) + print(stream.retriever.stream_slicer) assert isinstance(stream.retriever.stream_slicer, expected_type) if incremental and partition_router: - assert isinstance(stream.retriever.stream_slicer, PerPartitionCursor) + assert isinstance(stream.retriever.stream_slicer, PerPartitionWithGlobalCursor) if isinstance(partition_router, list) and len(partition_router) > 1: assert isinstance(stream.retriever.stream_slicer._partition_router, CartesianProductStreamSlicer) assert len(stream.retriever.stream_slicer._partition_router.stream_slicers) == len(partition_router) elif partition_router and isinstance(partition_router, list) and len(partition_router) > 1: - assert isinstance(stream.retriever.stream_slicer, PerPartitionCursor) + assert isinstance(stream.retriever.stream_slicer, PerPartitionWithGlobalCursor) assert len(stream.retriever.stream_slicer.stream_slicerS) == len(partition_router) diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/partition_routers/test_parent_state_stream.py b/airbyte-cdk/python/unit_tests/sources/declarative/partition_routers/test_parent_state_stream.py index d7f35475a716..8b820e490101 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/partition_routers/test_parent_state_stream.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/partition_routers/test_parent_state_stream.py @@ -245,6 +245,86 @@ def _run_read( return list(source.read(logger, config, catalog, state)) +def run_incremental_parent_state_test(manifest, mock_requests, expected_records, initial_state, expected_states): + """ + Run an incremental parent state test for the specified stream. + + This function performs the following steps: + 1. Mocks the API requests as defined in mock_requests. + 2. Executes the read operation using the provided manifest and config. + 3. Asserts that the output records match the expected records. + 4. Collects intermediate states and records, performing additional reads as necessary. + 5. Compares the cumulative records from each state against the expected records. + 6. Asserts that the final state matches one of the expected states for each run. + + Args: + manifest (dict): The manifest configuration for the stream. + mock_requests (list): A list of tuples containing URL and response data for mocking API requests. + expected_records (list): The expected records to compare against the output. + initial_state (list): The initial state to start the read operation. + expected_states (list): A list of expected final states after the read operation. + """ + _stream_name = "post_comment_votes" + config = {"start_date": "2024-01-01T00:00:01Z", "credentials": {"email": "email", "api_token": "api_token"}} + + with requests_mock.Mocker() as m: + for url, response in mock_requests: + m.get(url, json=response) + + # Run the initial read + output = _run_read(manifest, config, _stream_name, initial_state) + output_data = [message.record.data for message in output if message.record] + + # Assert that output_data equals expected_records + assert output_data == expected_records + + # Collect the intermediate states and records produced before each state + cumulative_records = [] + intermediate_states = [] + final_states = [] # To store the final state after each read + + # Store the final state after the initial read + final_state_initial = [orjson.loads(orjson.dumps(message.state.stream.stream_state)) for message in output if message.state] + final_states.append(final_state_initial[-1]) + + for message in output: + if message.type.value == "RECORD": + record_data = message.record.data + cumulative_records.append(record_data) + elif message.type.value == "STATE": + # Record the state and the records produced before this state + state = message.state + records_before_state = cumulative_records.copy() + intermediate_states.append((state, records_before_state)) + + # For each intermediate state, perform another read starting from that state + for state, records_before_state in intermediate_states[:-1]: + output_intermediate = _run_read(manifest, config, _stream_name, [state]) + records_from_state = [message.record.data for message in output_intermediate if message.record] + + # Combine records produced before the state with records from the new read + cumulative_records_state = records_before_state + records_from_state + + # Duplicates may occur because the state matches the cursor of the last record, causing it to be re-emitted in the next sync. + cumulative_records_state_deduped = list({orjson.dumps(record): record for record in cumulative_records_state}.values()) + + # Compare the cumulative records with the expected records + expected_records_set = list({orjson.dumps(record): record for record in expected_records}.values()) + assert sorted(cumulative_records_state_deduped, key=lambda x: orjson.dumps(x)) == sorted( + expected_records_set, key=lambda x: orjson.dumps(x) + ), f"Records mismatch with intermediate state {state}. Expected {expected_records}, got {cumulative_records_state_deduped}" + + # Store the final state after each intermediate read + final_state_intermediate = [ + orjson.loads(orjson.dumps(message.state.stream.stream_state)) for message in output_intermediate if message.state + ] + final_states.append(final_state_intermediate[-1]) + + # Assert that the final state matches the expected state for all runs + for i, final_state in enumerate(final_states): + assert final_state in expected_states, f"Final state mismatch at run {i + 1}. Expected {expected_states}, got {final_state}" + + @pytest.mark.parametrize( "test_name, manifest, mock_requests, expected_records, initial_state, expected_state", [ @@ -350,6 +430,13 @@ def _run_read( "votes": [{"id": 102, "comment_id": 11, "created_at": "2024-01-13T00:00:00Z"}], }, ), + # Fetch votes for comment 12 of post 1 + ( + "https://api.example.com/community/posts/1/comments/12/votes?per_page=100&start_time=2024-01-15T00:00:00Z", + { + "votes": [], + }, + ), # Fetch votes for comment 20 of post 2 ( "https://api.example.com/community/posts/2/comments/20/votes?per_page=100&start_time=2024-01-12T00:00:00Z", @@ -403,6 +490,22 @@ def _run_read( ], # Expected state { + "use_global_cursor": False, + "state": {"created_at": "2024-01-15T00:00:00Z"}, + "parent_state": { + "post_comments": { + "use_global_cursor": False, + "state": {"updated_at": "2024-01-25T00:00:00Z"}, + "parent_state": {"posts": {"updated_at": "2024-01-30T00:00:00Z"}}, + "lookback_window": 1, + "states": [ + {"partition": {"id": 1, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-25T00:00:00Z"}}, + {"partition": {"id": 2, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-22T00:00:00Z"}}, + {"partition": {"id": 3, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-09T00:00:00Z"}}, + ], + } + }, + "lookback_window": 1, "states": [ { "partition": {"id": 10, "parent_slice": {"id": 1, "parent_slice": {}}}, @@ -425,21 +528,171 @@ def _run_read( "cursor": {"created_at": "2024-01-10T00:00:00Z"}, }, ], + }, + ), + ], +) +def test_incremental_parent_state(test_name, manifest, mock_requests, expected_records, initial_state, expected_state): + additional_expected_state = copy.deepcopy(expected_state) + # State for empty partition (comment 12), when the global cursor is used for intermediate states + empty_state = {"cursor": {"created_at": "2024-01-15T00:00:00Z"}, "partition": {"id": 12, "parent_slice": {"id": 1, "parent_slice": {}}}} + additional_expected_state["states"].append(empty_state) + run_incremental_parent_state_test(manifest, mock_requests, expected_records, initial_state, [expected_state, additional_expected_state]) + + +@pytest.mark.parametrize( + "test_name, manifest, mock_requests, expected_records, initial_state, expected_state", + [ + ( + "test_incremental_parent_state", + SUBSTREAM_MANIFEST, + [ + # Fetch the first page of posts + ( + "https://api.example.com/community/posts?per_page=100&start_time=2024-01-05T00:00:00Z", + { + "posts": [], + "next_page": "https://api.example.com/community/posts?per_page=100&start_time=2024-01-05T00:00:00Z&page=2", + }, + ), + # Fetch the second page of posts + ( + "https://api.example.com/community/posts?per_page=100&start_time=2024-01-05T00:00:00Z&page=2", + {"posts": []}, + ), + # Fetch the first page of comments for post 1 + ( + "https://api.example.com/community/posts/1/comments?per_page=100", + { + "comments": [], + "next_page": "https://api.example.com/community/posts/1/comments?per_page=100&page=2", + }, + ), + # Fetch the second page of comments for post 1 + ( + "https://api.example.com/community/posts/1/comments?per_page=100&page=2", + {"comments": []}, + ), + # Fetch the first page of votes for comment 10 of post 1 + ( + "https://api.example.com/community/posts/1/comments/10/votes?per_page=100&start_time=2024-01-02T00:00:00Z", + { + "votes": [], + "next_page": "https://api.example.com/community/posts/1/comments/10/votes?per_page=100&page=2&start_time=2024-01-01T00:00:01Z", + }, + ), + # Fetch the second page of votes for comment 10 of post 1 + ( + "https://api.example.com/community/posts/1/comments/10/votes?per_page=100&page=2&start_time=2024-01-01T00:00:01Z", + {"votes": []}, + ), + # Fetch the first page of votes for comment 11 of post 1 + ( + "https://api.example.com/community/posts/1/comments/11/votes?per_page=100&start_time=2024-01-03T00:00:00Z", + {"votes": []}, + ), + # Fetch the first page of votes for comment 12 of post 1 + ("https://api.example.com/community/posts/1/comments/12/votes?per_page=100&start_time=2024-01-01T00:00:01Z", {"votes": []}), + # Fetch the first page of comments for post 2 + ( + "https://api.example.com/community/posts/2/comments?per_page=100", + { + "comments": [], + "next_page": "https://api.example.com/community/posts/2/comments?per_page=100&page=2", + }, + ), + # Fetch the second page of comments for post 2 + ( + "https://api.example.com/community/posts/2/comments?per_page=100&page=2", + {"comments": []}, + ), + # Fetch the first page of votes for comment 20 of post 2 + ( + "https://api.example.com/community/posts/2/comments/20/votes?per_page=100&start_time=2024-01-01T00:00:01Z", + {"votes": []}, + ), + # Fetch the first page of votes for comment 21 of post 2 + ( + "https://api.example.com/community/posts/2/comments/21/votes?per_page=100&start_time=2024-01-01T00:00:01Z", + {"votes": []}, + ), + # Fetch the first page of comments for post 3 + ( + "https://api.example.com/community/posts/3/comments?per_page=100", + {"comments": []}, + ), + # Fetch the first page of votes for comment 30 of post 3 + ( + "https://api.example.com/community/posts/3/comments/30/votes?per_page=100", + {"votes": []}, + ), + ], + # Expected records + [], + # Initial state + [ + AirbyteStateMessage( + type=AirbyteStateType.STREAM, + stream=AirbyteStreamState( + stream_descriptor=StreamDescriptor(name="post_comment_votes", namespace=None), + stream_state=AirbyteStateBlob( + { + "parent_state": { + "post_comments": { + "states": [ + {"partition": {"id": 1, "parent_slice": {}}, "cursor": {"updated_at": "2023-01-04T00:00:00Z"}} + ], + "parent_state": {"posts": {"updated_at": "2024-01-05T00:00:00Z"}}, + } + }, + "states": [ + { + "partition": {"id": 10, "parent_slice": {"id": 1, "parent_slice": {}}}, + "cursor": {"created_at": "2024-01-02T00:00:00Z"}, + }, + { + "partition": {"id": 11, "parent_slice": {"id": 1, "parent_slice": {}}}, + "cursor": {"created_at": "2024-01-03T00:00:00Z"}, + }, + ], + "state": {"created_at": "2024-01-03T00:00:00Z"}, + "lookback_window": 1, + } + ), + ), + ) + ], + # Expected state + { + "lookback_window": 1, + "use_global_cursor": False, + "state": {"created_at": "2024-01-03T00:00:00Z"}, "parent_state": { "post_comments": { - "states": [ - {"partition": {"id": 1, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-25T00:00:00Z"}}, - {"partition": {"id": 2, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-22T00:00:00Z"}}, - {"partition": {"id": 3, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-09T00:00:00Z"}}, - ], - "parent_state": {"posts": {"updated_at": "2024-01-30T00:00:00Z"}}, + "use_global_cursor": False, + "state": {}, + "parent_state": {"posts": {"updated_at": "2024-01-05T00:00:00Z"}}, + "states": [{"partition": {"id": 1, "parent_slice": {}}, "cursor": {"updated_at": "2023-01-04T00:00:00Z"}}], } }, + "states": [ + { + "partition": {"id": 10, "parent_slice": {"id": 1, "parent_slice": {}}}, + "cursor": {"created_at": "2024-01-02T00:00:00Z"}, + }, + { + "partition": {"id": 11, "parent_slice": {"id": 1, "parent_slice": {}}}, + "cursor": {"created_at": "2024-01-03T00:00:00Z"}, + }, + ], }, ), ], ) -def test_incremental_parent_state(test_name, manifest, mock_requests, expected_records, initial_state, expected_state): +def test_incremental_parent_state_no_slices(test_name, manifest, mock_requests, expected_records, initial_state, expected_state): + """ + Test incremental partition router with no parent records + """ _stream_name = "post_comment_votes" config = {"start_date": "2024-01-01T00:00:01Z", "credentials": {"email": "email", "api_token": "api_token"}} @@ -447,44 +700,178 @@ def test_incremental_parent_state(test_name, manifest, mock_requests, expected_r for url, response in mock_requests: m.get(url, json=response) - # Run the initial read output = _run_read(manifest, config, _stream_name, initial_state) output_data = [message.record.data for message in output if message.record] - # Assert that output_data equals expected_records assert output_data == expected_records + final_state = [orjson.loads(orjson.dumps(message.state.stream.stream_state)) for message in output if message.state] + assert final_state[-1] == expected_state - # Collect the intermediate states and records produced before each state - cumulative_records = [] - intermediate_states = [] - for message in output: - if message.type.value == "RECORD": - record_data = message.record.data - cumulative_records.append(record_data) - elif message.type.value == "STATE": - # Record the state and the records produced before this state - state = message.state - records_before_state = cumulative_records.copy() - intermediate_states.append((state, records_before_state)) - - # For each intermediate state, perform another read starting from that state - for state, records_before_state in intermediate_states[:-1]: - output_intermediate = _run_read(manifest, config, _stream_name, [state]) - records_from_state = [message.record.data for message in output_intermediate if message.record] - # Combine records produced before the state with records from the new read - cumulative_records_state = records_before_state + records_from_state +@pytest.mark.parametrize( + "test_name, manifest, mock_requests, expected_records, initial_state, expected_state", + [ + ( + "test_incremental_parent_state", + SUBSTREAM_MANIFEST, + [ + # Fetch the first page of posts + ( + "https://api.example.com/community/posts?per_page=100&start_time=2024-01-05T00:00:00Z", + { + "posts": [{"id": 1, "updated_at": "2024-01-30T00:00:00Z"}, {"id": 2, "updated_at": "2024-01-29T00:00:00Z"}], + "next_page": "https://api.example.com/community/posts?per_page=100&start_time=2024-01-05T00:00:00Z&page=2", + }, + ), + # Fetch the second page of posts + ( + "https://api.example.com/community/posts?per_page=100&start_time=2024-01-05T00:00:00Z&page=2", + {"posts": [{"id": 3, "updated_at": "2024-01-28T00:00:00Z"}]}, + ), + # Fetch the first page of comments for post 1 + ( + "https://api.example.com/community/posts/1/comments?per_page=100", + { + "comments": [ + {"id": 9, "post_id": 1, "updated_at": "2023-01-01T00:00:00Z"}, + {"id": 10, "post_id": 1, "updated_at": "2024-01-25T00:00:00Z"}, + {"id": 11, "post_id": 1, "updated_at": "2024-01-24T00:00:00Z"}, + ], + "next_page": "https://api.example.com/community/posts/1/comments?per_page=100&page=2", + }, + ), + # Fetch the second page of comments for post 1 + ( + "https://api.example.com/community/posts/1/comments?per_page=100&page=2", + {"comments": [{"id": 12, "post_id": 1, "updated_at": "2024-01-23T00:00:00Z"}]}, + ), + # Fetch the first page of votes for comment 10 of post 1 + ( + "https://api.example.com/community/posts/1/comments/10/votes?per_page=100&start_time=2024-01-03T00:00:00Z", + { + "votes": [], + "next_page": "https://api.example.com/community/posts/1/comments/10/votes?per_page=100&page=2&start_time=2024-01-01T00:00:01Z", + }, + ), + # Fetch the second page of votes for comment 10 of post 1 + ( + "https://api.example.com/community/posts/1/comments/10/votes?per_page=100&page=2&start_time=2024-01-01T00:00:01Z", + {"votes": []}, + ), + # Fetch the first page of votes for comment 11 of post 1 + ( + "https://api.example.com/community/posts/1/comments/11/votes?per_page=100&start_time=2024-01-03T00:00:00Z", + {"votes": []}, + ), + # Fetch the first page of votes for comment 12 of post 1 + ("https://api.example.com/community/posts/1/comments/12/votes?per_page=100&start_time=2024-01-03T00:00:00Z", {"votes": []}), + # Fetch the first page of comments for post 2 + ( + "https://api.example.com/community/posts/2/comments?per_page=100", + { + "comments": [{"id": 20, "post_id": 2, "updated_at": "2024-01-22T00:00:00Z"}], + "next_page": "https://api.example.com/community/posts/2/comments?per_page=100&page=2", + }, + ), + # Fetch the second page of comments for post 2 + ( + "https://api.example.com/community/posts/2/comments?per_page=100&page=2", + {"comments": [{"id": 21, "post_id": 2, "updated_at": "2024-01-21T00:00:00Z"}]}, + ), + # Fetch the first page of votes for comment 20 of post 2 + ( + "https://api.example.com/community/posts/2/comments/20/votes?per_page=100&start_time=2024-01-03T00:00:00Z", + {"votes": []}, + ), + # Fetch the first page of votes for comment 21 of post 2 + ( + "https://api.example.com/community/posts/2/comments/21/votes?per_page=100&start_time=2024-01-03T00:00:00Z", + {"votes": []}, + ), + # Fetch the first page of comments for post 3 + ( + "https://api.example.com/community/posts/3/comments?per_page=100", + {"comments": [{"id": 30, "post_id": 3, "updated_at": "2024-01-09T00:00:00Z"}]}, + ), + # Fetch the first page of votes for comment 30 of post 3 + ( + "https://api.example.com/community/posts/3/comments/30/votes?per_page=100", + {"votes": []}, + ), + ], + # Expected records + [], + # Initial state + [ + AirbyteStateMessage( + type=AirbyteStateType.STREAM, + stream=AirbyteStreamState( + stream_descriptor=StreamDescriptor(name="post_comment_votes", namespace=None), + stream_state=AirbyteStateBlob( + { + "parent_state": { + "post_comments": { + "states": [ + {"partition": {"id": 1, "parent_slice": {}}, "cursor": {"updated_at": "2023-01-04T00:00:00Z"}} + ], + "parent_state": {"posts": {"updated_at": "2024-01-05T00:00:00Z"}}, + } + }, + "states": [ + { + "partition": {"id": 10, "parent_slice": {"id": 1, "parent_slice": {}}}, + "cursor": {"created_at": "2024-01-02T00:00:00Z"}, + }, + { + "partition": {"id": 11, "parent_slice": {"id": 1, "parent_slice": {}}}, + "cursor": {"created_at": "2024-01-03T00:00:00Z"}, + }, + ], + "use_global_cursor": True, + "state": {"created_at": "2024-01-03T00:00:00Z"}, + "lookback_window": 0, + } + ), + ), + ) + ], + # Expected state + { + "lookback_window": 1, + "use_global_cursor": True, + "state": {"created_at": "2024-01-03T00:00:00Z"}, + "parent_state": { + "post_comments": { + "use_global_cursor": False, + "state": {"updated_at": "2024-01-25T00:00:00Z"}, + "parent_state": {"posts": {"updated_at": "2024-01-30T00:00:00Z"}}, + "lookback_window": 1, + "states": [ + {"partition": {"id": 1, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-25T00:00:00Z"}}, + {"partition": {"id": 2, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-22T00:00:00Z"}}, + {"partition": {"id": 3, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-09T00:00:00Z"}}, + ], + } + }, + }, + ), + ], +) +def test_incremental_parent_state_no_records(test_name, manifest, mock_requests, expected_records, initial_state, expected_state): + """ + Test incremental partition router with no child records + """ + _stream_name = "post_comment_votes" + config = {"start_date": "2024-01-01T00:00:01Z", "credentials": {"email": "email", "api_token": "api_token"}} - # Duplicates may occur because the state matches the cursor of the last record, causing it to be re-emitted in the next sync. - cumulative_records_state_deduped = list({orjson.dumps(record): record for record in cumulative_records_state}.values()) + with requests_mock.Mocker() as m: + for url, response in mock_requests: + m.get(url, json=response) - # Compare the cumulative records with the expected records - expected_records_set = list({orjson.dumps(record): record for record in expected_records}.values()) - assert sorted(cumulative_records_state_deduped, key=lambda x: orjson.dumps(x)) == sorted( - expected_records_set, key=lambda x: orjson.dumps(x) - ), f"Records mismatch with intermediate state {state}. Expected {expected_records}, got {cumulative_records_state_deduped}" + output = _run_read(manifest, config, _stream_name, initial_state) + output_data = [message.record.data for message in output if message.record] - # Assert that the final state matches the expected state + assert output_data == expected_records final_state = [orjson.loads(orjson.dumps(message.state.stream.stream_state)) for message in output if message.state] assert final_state[-1] == expected_state @@ -624,6 +1011,9 @@ def test_incremental_parent_state(test_name, manifest, mock_requests, expected_r ], # Expected state { + "use_global_cursor": False, + "state": {"created_at": "2024-01-15T00:00:00Z"}, + "lookback_window": 1, "states": [ { "partition": {"id": 10, "parent_slice": {"id": 1, "parent_slice": {}}}, @@ -994,6 +1384,38 @@ def test_incremental_parent_state_no_incremental_dependency( "https://api.example.com/community/posts/3/comments/30/votes?per_page=100", {"votes": [{"id": 300, "comment_id": 30, "created_at": "2024-01-10T00:00:00Z"}]}, ), + # Requests with intermediate states + # Fetch votes for comment 10 of post 1 + ( + "https://api.example.com/community/posts/1/comments/10/votes?per_page=100&start_time=2024-01-14T23:59:59Z", + { + "votes": [{"id": 100, "comment_id": 10, "created_at": "2024-01-15T00:00:00Z"}], + }, + ), + # Fetch votes for comment 11 of post 1 + ( + "https://api.example.com/community/posts/1/comments/11/votes?per_page=100&start_time=2024-01-14T23:59:59Z", + { + "votes": [{"id": 102, "comment_id": 11, "created_at": "2024-01-13T00:00:00Z"}], + }, + ), + # Fetch votes for comment 12 of post 1 + ( + "https://api.example.com/community/posts/1/comments/12/votes?per_page=100&start_time=2024-01-14T23:59:59Z", + { + "votes": [], + }, + ), + # Fetch votes for comment 20 of post 2 + ( + "https://api.example.com/community/posts/2/comments/20/votes?per_page=100&start_time=2024-01-14T23:59:59Z", + {"votes": [{"id": 200, "comment_id": 20, "created_at": "2024-01-12T00:00:00Z"}]}, + ), + # Fetch votes for comment 21 of post 2 + ( + "https://api.example.com/community/posts/2/comments/21/votes?per_page=100&start_time=2024-01-14T23:59:59Z", + {"votes": [{"id": 201, "comment_id": 21, "created_at": "2024-01-12T00:00:15Z"}]}, + ), ], # Expected records [ @@ -1030,14 +1452,18 @@ def test_incremental_parent_state_no_incremental_dependency( # Expected state { "state": {"created_at": "2024-01-15T00:00:00Z"}, + "lookback_window": 1, "parent_state": { "post_comments": { + "use_global_cursor": False, + "state": {"updated_at": "2024-01-25T00:00:00Z"}, + "parent_state": {"posts": {"updated_at": "2024-01-30T00:00:00Z"}}, + "lookback_window": 1, "states": [ {"partition": {"id": 1, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-25T00:00:00Z"}}, {"partition": {"id": 2, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-22T00:00:00Z"}}, {"partition": {"id": 3, "parent_slice": {}}, "cursor": {"updated_at": "2024-01-09T00:00:00Z"}}, ], - "parent_state": {"posts": {"updated_at": "2024-01-30T00:00:00Z"}}, } }, }, @@ -1163,23 +1589,9 @@ def test_incremental_parent_state_no_incremental_dependency( ) ], # Expected state - {"state": {"created_at": "2024-01-15T00:00:00Z"}}, + {"state": {"created_at": "2024-01-15T00:00:00Z"}, "lookback_window": 1}, ), ], ) def test_incremental_global_parent_state(test_name, manifest, mock_requests, expected_records, initial_state, expected_state): - _stream_name = "post_comment_votes" - config = {"start_date": "2024-01-01T00:00:01Z", "credentials": {"email": "email", "api_token": "api_token"}} - - with requests_mock.Mocker() as m: - for url, response in mock_requests: - m.get(url, json=response) - - output = _run_read(manifest, config, _stream_name, initial_state) - output_data = [message.record.data for message in output if message.record] - - assert output_data == expected_records - final_state = [orjson.loads(orjson.dumps(message.state.stream.stream_state)) for message in output if message.state][-1] - assert "lookback_window" in final_state - final_state.pop("lookback_window") - assert final_state == expected_state + run_incremental_parent_state_test(manifest, mock_requests, expected_records, initial_state, [expected_state]) diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/partition_routers/test_substream_partition_router.py b/airbyte-cdk/python/unit_tests/sources/declarative/partition_routers/test_substream_partition_router.py index 8e362048de9c..f29917abdccf 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/partition_routers/test_substream_partition_router.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/partition_routers/test_substream_partition_router.py @@ -2,6 +2,7 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +import logging from functools import partial from typing import Any, Iterable, List, Mapping, MutableMapping, Optional, Union @@ -11,6 +12,7 @@ from airbyte_cdk.sources.declarative.incremental import ChildPartitionResumableFullRefreshCursor, ResumableFullRefreshCursor from airbyte_cdk.sources.declarative.incremental.per_partition_cursor import CursorFactory, PerPartitionCursor, StreamSlice from airbyte_cdk.sources.declarative.interpolation import InterpolatedString +from airbyte_cdk.sources.declarative.partition_routers import CartesianProductStreamSlicer, ListPartitionRouter from airbyte_cdk.sources.declarative.partition_routers.substream_partition_router import ParentStreamConfig, SubstreamPartitionRouter from airbyte_cdk.sources.declarative.requesters.request_option import RequestOption, RequestOptionType from airbyte_cdk.sources.streams.checkpoint import Cursor @@ -622,10 +624,10 @@ def test_substream_checkpoints_after_each_parent_partition(): ] expected_parent_state = [ - {}, {"first_stream": {}}, {"first_stream": {}}, {"first_stream": {"start_time": "2024-04-27", "end_time": "2024-05-27"}}, + {"first_stream": {"start_time": "2024-04-27", "end_time": "2024-05-27"}}, {"first_stream": {"start_time": "2024-05-27", "end_time": "2024-06-27"}}, ] @@ -656,9 +658,9 @@ def test_substream_checkpoints_after_each_parent_partition(): expected_counter = 0 for actual_slice in partition_router.stream_slices(): assert actual_slice == expected_slices[expected_counter] - assert partition_router._parent_state == expected_parent_state[expected_counter] + assert partition_router.get_stream_state() == expected_parent_state[expected_counter] expected_counter += 1 - assert partition_router._parent_state == expected_parent_state[expected_counter] + assert partition_router.get_stream_state() == expected_parent_state[expected_counter] @pytest.mark.parametrize( @@ -685,12 +687,12 @@ def test_substream_using_resumable_full_refresh_parent_stream(use_incremental_de ] expected_parent_state = [ - {}, {"persona_3_characters": {}}, {"persona_3_characters": {}}, {"persona_3_characters": {"next_page_token": 2}}, {"persona_3_characters": {"next_page_token": 2}}, {"persona_3_characters": {"next_page_token": 3}}, + {"persona_3_characters": {"next_page_token": 3}}, {"persona_3_characters": {"__ab_full_refresh_sync_complete": True}}, ] @@ -731,10 +733,10 @@ def test_substream_using_resumable_full_refresh_parent_stream(use_incremental_de for actual_slice in partition_router.stream_slices(): assert actual_slice == expected_slices[expected_counter] if use_incremental_dependency: - assert partition_router._parent_state == expected_parent_state[expected_counter] + assert partition_router.get_stream_state() == expected_parent_state[expected_counter] expected_counter += 1 if use_incremental_dependency: - assert partition_router._parent_state == expected_parent_state[expected_counter] + assert partition_router.get_stream_state() == expected_parent_state[expected_counter] @pytest.mark.parametrize( @@ -761,12 +763,12 @@ def test_substream_using_resumable_full_refresh_parent_stream_slices(use_increme ] expected_parent_state = [ - {}, {"persona_3_characters": {}}, {"persona_3_characters": {}}, {"persona_3_characters": {"next_page_token": 2}}, {"persona_3_characters": {"next_page_token": 2}}, {"persona_3_characters": {"next_page_token": 3}}, + {"persona_3_characters": {"next_page_token": 3}}, {"persona_3_characters": {"__ab_full_refresh_sync_complete": True}}, ] @@ -828,10 +830,10 @@ def test_substream_using_resumable_full_refresh_parent_stream_slices(use_increme assert actual_slice == expected_parent_slices[expected_counter] # check for parent state if use_incremental_dependency: - assert substream_cursor_slicer._partition_router._parent_state == expected_parent_state[expected_counter] + assert substream_cursor_slicer._partition_router.get_stream_state() == expected_parent_state[expected_counter] expected_counter += 1 if use_incremental_dependency: - assert substream_cursor_slicer._partition_router._parent_state == expected_parent_state[expected_counter] + assert substream_cursor_slicer._partition_router.get_stream_state() == expected_parent_state[expected_counter] # validate final state for closed substream slices final_state = substream_cursor_slicer.get_stream_state() @@ -890,3 +892,79 @@ def test_substream_partition_router_with_extra_keys(parent_stream_configs, expec partition_router = SubstreamPartitionRouter(parent_stream_configs=parent_stream_configs, parameters={}, config={}) slices = [s.extra_fields for s in partition_router.stream_slices()] assert slices == expected_slices + + +@pytest.mark.parametrize( + "stream_slicers, expect_warning", + [ + # Case with two ListPartitionRouters, no warning expected + ( + [ + ListPartitionRouter(values=["1", "2", "3"], cursor_field="partition_field", config={}, parameters={}), + ListPartitionRouter(values=["1", "2", "3"], cursor_field="partition_field", config={}, parameters={}), + ], + False, + ), + # Case with a SubstreamPartitionRouter, warning expected + ( + [ + ListPartitionRouter(values=["1", "2", "3"], cursor_field="partition_field", config={}, parameters={}), + SubstreamPartitionRouter( + parent_stream_configs=[ + ParentStreamConfig( + stream=MockStream([{}], [{"a": {"b": 0}}, {"a": {"b": 1}}, {"a": {"c": 2}}, {"a": {"b": 3}}], "first_stream"), + parent_key="a/b", + partition_field="first_stream_id", + parameters={}, + config={}, + ) + ], + parameters={}, + config={}, + ), + ], + True, + ), + # Case with nested CartesianProductStreamSlicer containing a SubstreamPartitionRouter, warning expected + ( + [ + ListPartitionRouter(values=["1", "2", "3"], cursor_field="partition_field", config={}, parameters={}), + CartesianProductStreamSlicer( + stream_slicers=[ + ListPartitionRouter(values=["1", "2", "3"], cursor_field="partition_field", config={}, parameters={}), + SubstreamPartitionRouter( + parent_stream_configs=[ + ParentStreamConfig( + stream=MockStream( + [{}], [{"a": {"b": 0}}, {"a": {"b": 1}}, {"a": {"c": 2}}, {"a": {"b": 3}}], "first_stream" + ), + parent_key="a/b", + partition_field="first_stream_id", + parameters={}, + config={}, + ) + ], + parameters={}, + config={}, + ), + ], + parameters={}, + ), + ], + True, + ), + ], +) +def test_cartesian_product_stream_slicer_warning_log_message(caplog, stream_slicers, expect_warning): + """Test that a warning is logged when SubstreamPartitionRouter is used within a CartesianProductStreamSlicer.""" + warning_message = "Parent state handling is not supported for CartesianProductStreamSlicer." + + with caplog.at_level(logging.WARNING, logger="airbyte"): + CartesianProductStreamSlicer(stream_slicers=stream_slicers, parameters={}) + + logged_warnings = [record.message for record in caplog.records if record.levelname == "WARNING"] + + if expect_warning: + assert warning_message in logged_warnings + else: + assert warning_message not in logged_warnings diff --git a/docs/connector-development/config-based/understanding-the-yaml-file/incremental-syncs.md b/docs/connector-development/config-based/understanding-the-yaml-file/incremental-syncs.md index 1ba21a4f9065..c88efc8269ae 100644 --- a/docs/connector-development/config-based/understanding-the-yaml-file/incremental-syncs.md +++ b/docs/connector-development/config-based/understanding-the-yaml-file/incremental-syncs.md @@ -175,22 +175,25 @@ incremental_sync: Nested streams, subresources, or streams that depend on other streams can be implemented using a [`SubstreamPartitionRouter`](#SubstreamPartitionRouter) -The default state format is **per partition**, but there are options to enhance efficiency depending on your use case: **incremental_dependency** and **global_substream_cursor**. Here's when and how to use each option, with examples: - -#### Per Partition (Default) -- **Description**: This is the default state format, where each partition has its own cursor. -- **Limitation**: The per partition state has a limit of 10,000 partitions. When this limit is exceeded, the oldest partitions are deleted. During the next sync, deleted partitions will be read in full refresh, which can be inefficient. -- **When to Use**: Use this option if the number of partitions is manageable (under 10,000). +The default state format is **per partition with fallback to global**, but there are options to enhance efficiency depending on your use case: **incremental_dependency** and **global_substream_cursor**. Here's when and how to use each option, with examples: +#### Per Partition with Fallback to Global (Default) +- **Description**: This is the default state format, where each partition has its own cursor. However, when the number of records in the parent sync exceeds two times the set limit, the cursor automatically falls back to a global state to manage efficiency and scalability. +- **Limitation**: The per partition state has a limit of 10,000 partitions. Once this limit is exceeded, the global cursor takes over, aggregating the state across partitions to avoid inefficiencies. +- **When to Use**: Use this as the default option for most cases. It provides the flexibility of managing partitions while preventing performance degradation when large numbers of records are involved. - **Example State**: ```json - [ - { "partition": "A", "timestamp": "2024-08-01T00:00:00" }, - { "partition": "B", "timestamp": "2024-08-01T01:00:00" }, - { "partition": "C", "timestamp": "2024-08-01T02:00:00" } - ] + { + "states": [ + {"partition_key": "partition_1", "cursor_field": "2021-01-15"}, + {"partition_key": "partition_2", "cursor_field": "2021-02-14"} + ], + "state": { + "cursor_field": "2021-02-15" + }, + "use_global_cursor": false + } ``` - #### Incremental Dependency - **Description**: This option allows the parent stream to be read incrementally, ensuring that only new data is synced. - **Requirement**: The API must ensure that the parent record's cursor is updated whenever child records are added or updated. If this requirement is not met, child records added to older parent records will be lost. @@ -201,7 +204,7 @@ The default state format is **per partition**, but there are options to enhance "parent_state": { "parent_stream": { "timestamp": "2024-08-01T00:00:00" } }, - "child_state": [ + "states": [ { "partition": "A", "timestamp": "2024-08-01T00:00:00" }, { "partition": "B", "timestamp": "2024-08-01T01:00:00" } ] @@ -209,9 +212,9 @@ The default state format is **per partition**, but there are options to enhance ``` #### Global Substream Cursor -- **Description**: This option uses a single global cursor for all partitions, significantly reducing the state size. It enforces a minimal lookback window for substream based on the duration of the previous sync to avoid losing records. This lookback ensures that any records added or updated during the sync are captured in subsequent syncs. -- **When to Use**: Use this option if the number of partitions in the parent stream is significantly higher than the 10,000 partition limit (e.g., millions of records per sync). This prevents the inefficiency of reading most partitions in full refresh and avoids duplicates during the next sync. -- **Operational Detail**: The global cursor's value is updated only at the end of the sync. If the sync fails, only the parent state is updated if the incremental dependency is enabled. +- **Description**: This option uses a single global cursor for all partitions, significantly reducing the state size. It enforces a minimal lookback window based on the previous sync's duration to avoid losing records added or updated during the sync. Since the global cursor is already part of the per partition with fallback to global approach, it should only be used cautiously for custom connectors with exceptionally large parent streams to avoid managing state per partition. +- **When to Use**: Use this option cautiously for custom connectors where the number of partitions in the parent stream is extremely high (e.g., millions of records per sync). The global cursor avoids the inefficiency of managing state per partition but sacrifices some granularity, which may not be suitable for every use case. +- **Operational Detail**: The global cursor is updated only at the end of the sync. If the sync fails, only the parent state is updated, provided that the incremental dependency is enabled. The global cursor ensures that records are captured through a lookback window, even if they were added during the sync. - **Example State**: ```json [ @@ -220,9 +223,10 @@ The default state format is **per partition**, but there are options to enhance ``` ### Summary -- **Per Partition**: Default, use for manageable partitions (\<10k). -- **Incremental Dependency**: Use for incremental parent streams with a dependent child cursor. Ensure API updates parent cursor with child records. -- **Global Substream Cursor**: Ideal for large-scale parent streams with many partitions to optimize performance. +Summary +- **Per Partition with Fallback to Global (Default)**: Best for managing scalability and optimizing state size. Starts with per partition cursors, and automatically falls back to a global cursor if the number of records in the parent sync exceeds two times the partition limit. +- **Incremental Dependency**: Use for incremental parent streams with a dependent child cursor. Ensure the API updates the parent cursor when child records are added or updated. +- **Global Substream Cursor**: Use cautiously for custom connectors with very large parent streams. Avoids per partition state management but sacrifices some granularity. Choose the option that best fits your data structure and sync requirements to optimize performance and data integrity. From 81ce6f234b21bda8d58d287c5c4ef30aedad0cce Mon Sep 17 00:00:00 2001 From: tolik0 Date: Mon, 28 Oct 2024 12:06:44 +0000 Subject: [PATCH 038/808] =?UTF-8?q?=F0=9F=A4=96=20minor=20bump=20Python=20?= =?UTF-8?q?CDK=20to=20version=205.17.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-cdk/python/CHANGELOG.md | 3 +++ airbyte-cdk/python/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index 15164c314f6d..4b0993edc2d6 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 5.17.0 +Add Per Partition with Global fallback Cursor + ## 5.16.0 Better structured error log messages in connector_builder module, with message / internal_message / stacktrace split into separate fields diff --git a/airbyte-cdk/python/pyproject.toml b/airbyte-cdk/python/pyproject.toml index 9769cd2149bc..7bec56cb0f13 100644 --- a/airbyte-cdk/python/pyproject.toml +++ b/airbyte-cdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-cdk" -version = "5.16.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." authors = ["Airbyte "] license = "MIT" From 7de53bfa1668bb190b30090d3d40b3079439c914 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:25 +0200 Subject: [PATCH 039/808] =?UTF-8?q?=F0=9F=90=99=20source-uservoice:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47500)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-uservoice/metadata.yaml | 4 ++-- docs/integrations/sources/uservoice.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-uservoice/metadata.yaml b/airbyte-integrations/connectors/source-uservoice/metadata.yaml index 07ba6f2f45ca..91ef46417888 100644 --- a/airbyte-integrations/connectors/source-uservoice/metadata.yaml +++ b/airbyte-integrations/connectors/source-uservoice/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-uservoice connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 6ad41bae-c3a3-4a8e-abfd-c75b8604c083 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-uservoice githubIssueLabel: source-uservoice icon: icon.svg diff --git a/docs/integrations/sources/uservoice.md b/docs/integrations/sources/uservoice.md index 34ed83ad26bf..b385d2356186 100644 --- a/docs/integrations/sources/uservoice.md +++ b/docs/integrations/sources/uservoice.md @@ -53,6 +53,7 @@ Airbyte connector for UserVoice.com allows users to efficiently extract data fro | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47500](https://github.com/airbytehq/airbyte/pull/47500) | Update dependencies | | 0.0.1 | 2024-10-16 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 2e130ac16b9cbed82292ed3858b9c349e58803ce Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:29 +0200 Subject: [PATCH 040/808] =?UTF-8?q?=F0=9F=90=99=20source-gnews:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47499)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gnews/metadata.yaml | 4 ++-- docs/integrations/sources/gnews.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-gnews/metadata.yaml b/airbyte-integrations/connectors/source-gnews/metadata.yaml index d48e9aa5d34b..f2dbe81aa0e5 100644 --- a/airbyte-integrations/connectors/source-gnews/metadata.yaml +++ b/airbyte-integrations/connectors/source-gnews/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ce38aec4-5a77-439a-be29-9ca44fd4e811 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-gnews githubIssueLabel: source-gnews icon: gnews.svg @@ -40,5 +40,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/gnews.md b/docs/integrations/sources/gnews.md index 53a79931cbce..add4f9e236ee 100644 --- a/docs/integrations/sources/gnews.md +++ b/docs/integrations/sources/gnews.md @@ -40,7 +40,8 @@ Rate Limiting is based on the API Key tier subscription, get more info [here](ht | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------- | -| 0.2.0 | 2024-10-17 | [46959](https://github.com/airbytehq/airbyte/pull/46959) | Refactor connector to manifest-only format | +| 0.2.1 | 2024-10-28 | [47499](https://github.com/airbytehq/airbyte/pull/47499) | Update dependencies | +| 0.2.0 | 2024-10-17 | [46959](https://github.com/airbytehq/airbyte/pull/46959) | Refactor connector to manifest-only format | | 0.1.25 | 2024-10-12 | [46802](https://github.com/airbytehq/airbyte/pull/46802) | Update dependencies | | 0.1.24 | 2024-10-05 | [46425](https://github.com/airbytehq/airbyte/pull/46425) | Update dependencies | | 0.1.23 | 2024-09-28 | [46209](https://github.com/airbytehq/airbyte/pull/46209) | Update dependencies | From 1e2c8354a9799117ffd6667077c96e2b16feedb8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:32 +0200 Subject: [PATCH 041/808] =?UTF-8?q?=F0=9F=90=99=20source-persona:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47498)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-persona/metadata.yaml | 4 ++-- docs/integrations/sources/persona.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-persona/metadata.yaml b/airbyte-integrations/connectors/source-persona/metadata.yaml index cc9152559052..a761ea4527ce 100644 --- a/airbyte-integrations/connectors/source-persona/metadata.yaml +++ b/airbyte-integrations/connectors/source-persona/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-persona connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 7e55429a-a1ea-43c2-81c2-4fc3cf88f81f - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-persona githubIssueLabel: source-persona icon: icon.svg diff --git a/docs/integrations/sources/persona.md b/docs/integrations/sources/persona.md index a84be8b036b7..1a0b7ce0f672 100644 --- a/docs/integrations/sources/persona.md +++ b/docs/integrations/sources/persona.md @@ -28,6 +28,7 @@ Airbyte connector for [Persona](https://withpersona.com) that makes it easy to m | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47498](https://github.com/airbytehq/airbyte/pull/47498) | Update dependencies | | 0.0.1 | 2024-10-03 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From bd191b244c0e1b921651a96ba116cdcccbd1dd84 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:35 +0200 Subject: [PATCH 042/808] =?UTF-8?q?=F0=9F=90=99=20source-yahoo-finance-pri?= =?UTF-8?q?ce:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47497)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-yahoo-finance-price/metadata.yaml | 4 ++-- docs/integrations/sources/yahoo-finance-price.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml b/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml index a9858ed10643..11b2bcd80493 100644 --- a/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml +++ b/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 09a517d3-803f-448d-97bf-0b1ee64b90ef - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-yahoo-finance-price documentationUrl: https://docs.airbyte.com/integrations/sources/yahoo-finance-price githubIssueLabel: source-yahoo-finance-price diff --git a/docs/integrations/sources/yahoo-finance-price.md b/docs/integrations/sources/yahoo-finance-price.md index 60ea344c8bfb..256d33cb4ad7 100644 --- a/docs/integrations/sources/yahoo-finance-price.md +++ b/docs/integrations/sources/yahoo-finance-price.md @@ -9,6 +9,7 @@ The Airbyte Source for [Yahoo Finance Price](https://finance.yahoo.com/) | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.1 | 2024-10-28 | [47497](https://github.com/airbytehq/airbyte/pull/47497) | Update dependencies | | 0.3.0 | 2024-10-06 | [46526](https://github.com/airbytehq/airbyte/pull/46526) | Converting to manifest-only format | | 0.2.23 | 2024-10-05 | [46468](https://github.com/airbytehq/airbyte/pull/46468) | Update dependencies | | 0.2.22 | 2024-09-28 | [45792](https://github.com/airbytehq/airbyte/pull/45792) | Update dependencies | From 112cf2d12383ae497e39f97a2416254010af5615 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:39 +0200 Subject: [PATCH 043/808] =?UTF-8?q?=F0=9F=90=99=20source-polygon-stock-api?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47496)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-polygon-stock-api/metadata.yaml | 4 ++-- docs/integrations/sources/polygon-stock-api.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml b/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml index 59b25c0c5b4e..8f95998f4eec 100644 --- a/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.polygon.io connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 5807d72f-0abc-49f9-8fa5-ae820007032b - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-polygon-stock-api documentationUrl: https://docs.airbyte.com/integrations/sources/polygon-stock-api githubIssueLabel: source-polygon-stock-api diff --git a/docs/integrations/sources/polygon-stock-api.md b/docs/integrations/sources/polygon-stock-api.md index 578b2f666e25..174c2b55b4d1 100644 --- a/docs/integrations/sources/polygon-stock-api.md +++ b/docs/integrations/sources/polygon-stock-api.md @@ -53,6 +53,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.1 | 2024-10-28 | [47496](https://github.com/airbytehq/airbyte/pull/47496) | Update dependencies | | 0.2.0 | 2024-08-19 | [44408](https://github.com/airbytehq/airbyte/pull/44408) | Refactor connector to manifest-only format | | 0.1.17 | 2024-08-17 | [44245](https://github.com/airbytehq/airbyte/pull/44245) | Update dependencies | | 0.1.16 | 2024-08-10 | [43526](https://github.com/airbytehq/airbyte/pull/43526) | Update dependencies | From 46c16cc6e09f4057d156b549f275d6c093fc1b63 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:42 +0200 Subject: [PATCH 044/808] =?UTF-8?q?=F0=9F=90=99=20source-zendesk-sell:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47495)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zendesk-sell/metadata.yaml | 4 ++-- docs/integrations/sources/zendesk-sell.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-zendesk-sell/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-sell/metadata.yaml index 530afa2c35a2..67d00783f20b 100644 --- a/airbyte-integrations/connectors/source-zendesk-sell/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-sell/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 982eaa4c-bba1-4cce-a971-06a41f700b8c - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-zendesk-sell githubIssueLabel: source-zendesk-sell icon: zendesk.svg @@ -42,5 +42,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.3@sha256:c313c25af0617f5879361e684c956ac25ac1122beaf311c967e5b7a9b45ded79 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/zendesk-sell.md b/docs/integrations/sources/zendesk-sell.md index 1f935b66ffc6..febec39e43b7 100644 --- a/docs/integrations/sources/zendesk-sell.md +++ b/docs/integrations/sources/zendesk-sell.md @@ -77,6 +77,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------- | +| 0.3.1 | 2024-10-28 | [47495](https://github.com/airbytehq/airbyte/pull/47495) | Update dependencies | | 0.3.0 | 2024-08-22 | [44562](https://github.com/airbytehq/airbyte/pull/44562) | Refactor connector to manifest-only format | | 0.2.14 | 2024-08-17 | [44295](https://github.com/airbytehq/airbyte/pull/44295) | Update dependencies | | 0.2.13 | 2024-08-12 | [43802](https://github.com/airbytehq/airbyte/pull/43802) | Update dependencies | From 620492d3e1557250fc07356ea288dce3f5359b33 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:45 +0200 Subject: [PATCH 045/808] =?UTF-8?q?=F0=9F=90=99=20source-survicate:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47494)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-survicate/metadata.yaml | 4 ++-- docs/integrations/sources/survicate.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-survicate/metadata.yaml b/airbyte-integrations/connectors/source-survicate/metadata.yaml index 98fa4abf771d..6f5447d72086 100644 --- a/airbyte-integrations/connectors/source-survicate/metadata.yaml +++ b/airbyte-integrations/connectors/source-survicate/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-survicate connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 5770c58b-3288-4fa0-a968-bb8a6607fae1 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-survicate githubIssueLabel: source-survicate icon: icon.svg diff --git a/docs/integrations/sources/survicate.md b/docs/integrations/sources/survicate.md index 0c6c0c18aeb3..e1f1b23e4ddf 100644 --- a/docs/integrations/sources/survicate.md +++ b/docs/integrations/sources/survicate.md @@ -33,6 +33,7 @@ Refer `https://developers.survicate.com/data-export/setup/#authentication` for m | Version | Date | Pull Request | Subject | | ------------------ | ------------ | -- | ---------------- | +| 0.0.2 | 2024-10-28 | [47494](https://github.com/airbytehq/airbyte/pull/47494) | Update dependencies | | 0.0.1 | 2024-09-05 | [45163](https://github.com/airbytehq/airbyte/pull/45163) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 702fe5982a20145bbedf9b024d2383a8ba619d1f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:49 +0200 Subject: [PATCH 046/808] =?UTF-8?q?=F0=9F=90=99=20source-mux:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-28]=20(#47492)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mux/metadata.yaml | 4 ++-- docs/integrations/sources/mux.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-mux/metadata.yaml b/airbyte-integrations/connectors/source-mux/metadata.yaml index 3de103111a5a..712fd41ee3ec 100644 --- a/airbyte-integrations/connectors/source-mux/metadata.yaml +++ b/airbyte-integrations/connectors/source-mux/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mux connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.7.4@sha256:48bf84274f0def1c368a798a588722914b275cbd3eddf3c358236bffed141760 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 7bc19e81-14ee-43cb-a2ac-f3bcf6ba0459 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-mux githubIssueLabel: source-mux icon: icon.svg diff --git a/docs/integrations/sources/mux.md b/docs/integrations/sources/mux.md index 5e682c3b3074..7002cb33736d 100644 --- a/docs/integrations/sources/mux.md +++ b/docs/integrations/sources/mux.md @@ -34,6 +34,7 @@ Visit `https://docs.mux.com/api-reference` for API documentation | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47492](https://github.com/airbytehq/airbyte/pull/47492) | Update dependencies | | 0.0.1 | 2024-09-27 | [45921](https://github.com/airbytehq/airbyte/pull/45921) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 8690f5e8d2b053734da93fd78fe73186706ba541 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:52 +0200 Subject: [PATCH 047/808] =?UTF-8?q?=F0=9F=90=99=20source-nasa:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47491)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-nasa/metadata.yaml | 4 ++-- docs/integrations/sources/nasa.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-nasa/metadata.yaml b/airbyte-integrations/connectors/source-nasa/metadata.yaml index 2c94348a80b3..72b640c7e959 100644 --- a/airbyte-integrations/connectors/source-nasa/metadata.yaml +++ b/airbyte-integrations/connectors/source-nasa/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1a8667d7-7978-43cd-ba4d-d32cbd478971 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-nasa githubIssueLabel: source-nasa icon: nasa.svg @@ -38,5 +38,5 @@ data: # alias: airbyte-connector-testing-secret-store - language:manifest-only connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/nasa.md b/docs/integrations/sources/nasa.md index c63a7a5f0ae4..12ee18c6628c 100644 --- a/docs/integrations/sources/nasa.md +++ b/docs/integrations/sources/nasa.md @@ -43,7 +43,8 @@ The NASA connector should not run into NASA API limitations under normal usage. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------- | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47491](https://github.com/airbytehq/airbyte/pull/47491) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44115](https://github.com/airbytehq/airbyte/pull/44115) | Refactor connector to manifest-only format | | 0.2.14 | 2024-08-12 | [43907](https://github.com/airbytehq/airbyte/pull/43907) | Update dependencies | | 0.2.13 | 2024-08-10 | [43625](https://github.com/airbytehq/airbyte/pull/43625) | Update dependencies | From 3968ac5082b25db3dcd879bb987a865f224a6314 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:56 +0200 Subject: [PATCH 048/808] =?UTF-8?q?=F0=9F=90=99=20source-qonto:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47490)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-qonto/metadata.yaml | 4 ++-- docs/integrations/sources/qonto.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-qonto/metadata.yaml b/airbyte-integrations/connectors/source-qonto/metadata.yaml index 8bb0c53570e3..115d6491cef1 100644 --- a/airbyte-integrations/connectors/source-qonto/metadata.yaml +++ b/airbyte-integrations/connectors/source-qonto/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ccd3901d-edf3-4e58-900c-942d6990aa59 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-qonto githubIssueLabel: source-qonto icon: qonto.svg @@ -27,7 +27,7 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 remoteRegistries: pypi: enabled: false diff --git a/docs/integrations/sources/qonto.md b/docs/integrations/sources/qonto.md index c67ed03dc964..4cd811589169 100644 --- a/docs/integrations/sources/qonto.md +++ b/docs/integrations/sources/qonto.md @@ -10,7 +10,8 @@ The Airbyte Source for [Qonto](https://qonto.com) | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------- | -| 0.3.0 | 2024-10-06 | [46523](https://github.com/airbytehq/airbyte/pull/46523) | Migrate to Manifest-only | +| 0.3.1 | 2024-10-28 | [47490](https://github.com/airbytehq/airbyte/pull/47490) | Update dependencies | +| 0.3.0 | 2024-10-06 | [46523](https://github.com/airbytehq/airbyte/pull/46523) | Migrate to Manifest-only | | 0.2.22 | 2024-10-05 | [46414](https://github.com/airbytehq/airbyte/pull/46414) | Update dependencies | | 0.2.21 | 2024-09-28 | [46175](https://github.com/airbytehq/airbyte/pull/46175) | Update dependencies | | 0.2.20 | 2024-09-21 | [45752](https://github.com/airbytehq/airbyte/pull/45752) | Update dependencies | From 42a935ab76f5a258f7948f4199d8a25520ed661a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:12:59 +0200 Subject: [PATCH 049/808] =?UTF-8?q?=F0=9F=90=99=20source-mailjet-sms:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47489)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailjet-sms/metadata.yaml | 4 ++-- docs/integrations/sources/mailjet-sms.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailjet-sms/metadata.yaml b/airbyte-integrations/connectors/source-mailjet-sms/metadata.yaml index 78e5dd4f501b..4c5bfa03d19b 100644 --- a/airbyte-integrations/connectors/source-mailjet-sms/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailjet-sms/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 6ec2acea-7fd1-4378-b403-41a666e0c028 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-mailjet-sms documentationUrl: https://docs.airbyte.com/integrations/sources/mailjet-sms githubIssueLabel: source-mailjet-sms diff --git a/docs/integrations/sources/mailjet-sms.md b/docs/integrations/sources/mailjet-sms.md index 3332d4d9ed1b..3e1db43842e3 100644 --- a/docs/integrations/sources/mailjet-sms.md +++ b/docs/integrations/sources/mailjet-sms.md @@ -32,7 +32,8 @@ Mailjet APIs are under rate limits for the number of API calls allowed per API k | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47489](https://github.com/airbytehq/airbyte/pull/47489) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44128](https://github.com/airbytehq/airbyte/pull/44128) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-10 | [43594](https://github.com/airbytehq/airbyte/pull/43594) | Update dependencies | | 0.1.14 | 2024-08-03 | [43179](https://github.com/airbytehq/airbyte/pull/43179) | Update dependencies | From 38768790dc49344821ae426810241ec04eccdfdf Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:13:03 +0200 Subject: [PATCH 050/808] =?UTF-8?q?=F0=9F=90=99=20source-veeqo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47488)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-veeqo/metadata.yaml | 4 ++-- docs/integrations/sources/veeqo.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-veeqo/metadata.yaml b/airbyte-integrations/connectors/source-veeqo/metadata.yaml index 56d223c71119..f3f99dcea22e 100644 --- a/airbyte-integrations/connectors/source-veeqo/metadata.yaml +++ b/airbyte-integrations/connectors/source-veeqo/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-veeqo connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: ae647c65-da81-4ae5-958a-86490ce53a5e - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-veeqo githubIssueLabel: source-veeqo icon: icon.svg diff --git a/docs/integrations/sources/veeqo.md b/docs/integrations/sources/veeqo.md index 2be9f2199a90..a667cae50a6b 100644 --- a/docs/integrations/sources/veeqo.md +++ b/docs/integrations/sources/veeqo.md @@ -30,6 +30,7 @@ Veeqo Airbyte connector for Veeqo enables seamless data integration between Veeq | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47488](https://github.com/airbytehq/airbyte/pull/47488) | Update dependencies | | 0.0.1 | 2024-10-17 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From fe2799ffb73815ae8618fb96e860715f643c3db6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:13:09 +0200 Subject: [PATCH 051/808] =?UTF-8?q?=F0=9F=90=99=20source-iterable:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47487)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-iterable/metadata.yaml | 2 +- airbyte-integrations/connectors/source-iterable/poetry.lock | 6 +++--- .../connectors/source-iterable/pyproject.toml | 2 +- docs/integrations/sources/iterable.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-iterable/metadata.yaml b/airbyte-integrations/connectors/source-iterable/metadata.yaml index cd5bdf032ac5..36f4b4a80766 100644 --- a/airbyte-integrations/connectors/source-iterable/metadata.yaml +++ b/airbyte-integrations/connectors/source-iterable/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2e875208-0c0b-4ee4-9e92-1cb3156ea799 - dockerImageTag: 0.6.15 + dockerImageTag: 0.6.16 dockerRepository: airbyte/source-iterable documentationUrl: https://docs.airbyte.com/integrations/sources/iterable githubIssueLabel: source-iterable diff --git a/airbyte-integrations/connectors/source-iterable/poetry.lock b/airbyte-integrations/connectors/source-iterable/poetry.lock index 87e244db887d..52562a6406e4 100644 --- a/airbyte-integrations/connectors/source-iterable/poetry.lock +++ b/airbyte-integrations/connectors/source-iterable/poetry.lock @@ -1619,13 +1619,13 @@ test = ["pytest", "tornado (>=4.5)", "typeguard"] [[package]] name = "textual" -version = "0.84.0" +version = "0.85.1" description = "Modern Text User Interface framework" optional = false python-versions = "<4.0.0,>=3.8.1" files = [ - {file = "textual-0.84.0-py3-none-any.whl", hash = "sha256:1457d2cb66ba4ea46812355f31adbb4b693424a94e69d052e4affe1dc410ec96"}, - {file = "textual-0.84.0.tar.gz", hash = "sha256:fb89717960fea7a539823fa264252f7be1c84844e4b8d27360e6d4edb36846a8"}, + {file = "textual-0.85.1-py3-none-any.whl", hash = "sha256:a1a064c67b9b81cfa0c1b14298aa52221855aa4a56ad17a9b89a5594c73657a8"}, + {file = "textual-0.85.1.tar.gz", hash = "sha256:9966214390fad9a84c3f69d49398487897577f5fa788838106dd77bd7babc9cd"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-iterable/pyproject.toml b/airbyte-integrations/connectors/source-iterable/pyproject.toml index 18cc163a8282..cc1829ec4c99 100644 --- a/airbyte-integrations/connectors/source-iterable/pyproject.toml +++ b/airbyte-integrations/connectors/source-iterable/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.15" +version = "0.6.16" name = "source-iterable" description = "Source implementation for Iterable." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/iterable.md b/docs/integrations/sources/iterable.md index 476adaef7435..d2bb81ef599b 100644 --- a/docs/integrations/sources/iterable.md +++ b/docs/integrations/sources/iterable.md @@ -83,6 +83,7 @@ The Iterable source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0.6.16 | 2024-10-28 | [47487](https://github.com/airbytehq/airbyte/pull/47487) | Update dependencies | | 0.6.15 | 2024-10-23 | [47057](https://github.com/airbytehq/airbyte/pull/47057) | Update dependencies | | 0.6.14 | 2024-10-12 | [46814](https://github.com/airbytehq/airbyte/pull/46814) | Update dependencies | | 0.6.13 | 2024-10-05 | [46399](https://github.com/airbytehq/airbyte/pull/46399) | Update dependencies | From c21ce154ad34aed04a1c57f1a0e35b9e1313cd79 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:13:13 +0200 Subject: [PATCH 052/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-entra-i?= =?UTF-8?q?d:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47479)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-microsoft-entra-id/metadata.yaml | 4 ++-- docs/integrations/sources/microsoft-entra-id.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml index 2e988dfa8dd0..6e911c68f2b2 100644 --- a/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-microsoft-entra-id connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 337930a3-778a-413e-99cf-e79a3fca1c74 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-microsoft-entra-id githubIssueLabel: source-microsoft-entra-id icon: icon.svg diff --git a/docs/integrations/sources/microsoft-entra-id.md b/docs/integrations/sources/microsoft-entra-id.md index 5e4d22c431a0..726a021a76bc 100644 --- a/docs/integrations/sources/microsoft-entra-id.md +++ b/docs/integrations/sources/microsoft-entra-id.md @@ -37,6 +37,7 @@ First of all you need to register an application in the Microsoft Entra Admin Ce | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47479](https://github.com/airbytehq/airbyte/pull/47479) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 8369523109f8da88e09f0c3ad8c6e7993d97e44e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:13:17 +0200 Subject: [PATCH 053/808] =?UTF-8?q?=F0=9F=90=99=20source-statsig:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47473)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-statsig/metadata.yaml | 4 ++-- docs/integrations/sources/statsig.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-statsig/metadata.yaml b/airbyte-integrations/connectors/source-statsig/metadata.yaml index feeb82c747b3..7ba2cb620598 100644 --- a/airbyte-integrations/connectors/source-statsig/metadata.yaml +++ b/airbyte-integrations/connectors/source-statsig/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-statsig connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.7.5@sha256:4832cc13b262b4cae4ba72b07da544e6ee2f5d216b7147483480d5ebc5d0d7ca + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: c8f77358-755a-4778-a1fc-c23c3cee7d83 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-statsig githubIssueLabel: source-statsig icon: icon.svg diff --git a/docs/integrations/sources/statsig.md b/docs/integrations/sources/statsig.md index 3601eb4a9bb8..e8c7d4ccbec3 100644 --- a/docs/integrations/sources/statsig.md +++ b/docs/integrations/sources/statsig.md @@ -43,6 +43,7 @@ See the [API docs](https://docs.statsig.com/http-api) for steps to generate the | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47473](https://github.com/airbytehq/airbyte/pull/47473) | Update dependencies | | 0.0.1 | 2024-09-27 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From fc9389af58a7695fb0801d5e8177674e9759e966 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:13:21 +0200 Subject: [PATCH 054/808] =?UTF-8?q?=F0=9F=90=99=20source-high-level:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47472)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-high-level/metadata.yaml | 4 ++-- docs/integrations/sources/high-level.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-high-level/metadata.yaml b/airbyte-integrations/connectors/source-high-level/metadata.yaml index 2e68e5a6f143..078ed20a65b0 100644 --- a/airbyte-integrations/connectors/source-high-level/metadata.yaml +++ b/airbyte-integrations/connectors/source-high-level/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-high-level connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 2028e68a-8c97-45c4-b196-e61bad7b6f40 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-high-level githubIssueLabel: source-high-level icon: icon.svg diff --git a/docs/integrations/sources/high-level.md b/docs/integrations/sources/high-level.md index 286f4129c199..06cb1cf60b81 100644 --- a/docs/integrations/sources/high-level.md +++ b/docs/integrations/sources/high-level.md @@ -33,6 +33,7 @@ Proxy connector for [Go High Level](https://gohighlevel.com) (Lead Connector). R | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47472](https://github.com/airbytehq/airbyte/pull/47472) | Update dependencies | | 0.0.1 | 2024-08-23 | | Initial release by [@Stockotaco](https://github.com/stockotaco) via Connector Builder | From c2d32e774ecd9705fd9f8610c6b4b13607c7cfbc Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:13:24 +0200 Subject: [PATCH 055/808] =?UTF-8?q?=F0=9F=90=99=20source-ip2whois:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47471)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-ip2whois/metadata.yaml | 4 ++-- docs/integrations/sources/ip2whois.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-ip2whois/metadata.yaml b/airbyte-integrations/connectors/source-ip2whois/metadata.yaml index 4600c216f71b..e6ce35b2bbf4 100644 --- a/airbyte-integrations/connectors/source-ip2whois/metadata.yaml +++ b/airbyte-integrations/connectors/source-ip2whois/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: f23b7b7c-d705-49a3-9042-09add3b104a5 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-ip2whois documentationUrl: https://docs.airbyte.com/integrations/sources/ip2whois githubIssueLabel: source-ip2whois diff --git a/docs/integrations/sources/ip2whois.md b/docs/integrations/sources/ip2whois.md index 13d172f00855..e8ba5aac4034 100644 --- a/docs/integrations/sources/ip2whois.md +++ b/docs/integrations/sources/ip2whois.md @@ -32,7 +32,8 @@ Ip2whois APIs allows you to query up to 500 WHOIS domain name per month. | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47471](https://github.com/airbytehq/airbyte/pull/47471) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44138](https://github.com/airbytehq/airbyte/pull/44138) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-10 | [43644](https://github.com/airbytehq/airbyte/pull/43644) | Update dependencies | | 0.1.14 | 2024-08-03 | [43158](https://github.com/airbytehq/airbyte/pull/43158) | Update dependencies | From 959e0fa40e3797ea0cb18688b1f5850dc5551d38 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:13:30 +0200 Subject: [PATCH 056/808] =?UTF-8?q?=F0=9F=90=99=20source-sonar-cloud:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47469)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sonar-cloud/metadata.yaml | 4 ++-- docs/integrations/sources/sonar-cloud.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-sonar-cloud/metadata.yaml b/airbyte-integrations/connectors/source-sonar-cloud/metadata.yaml index 9a18d51e8dc9..9bd60b1ba3a7 100644 --- a/airbyte-integrations/connectors/source-sonar-cloud/metadata.yaml +++ b/airbyte-integrations/connectors/source-sonar-cloud/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - sonarcloud.io connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 3ab1d7d0-1577-4ab9-bcc4-1ff6a4c2c9f2 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-sonar-cloud documentationUrl: https://docs.airbyte.com/integrations/sources/sonar-cloud githubIssueLabel: source-sonar-cloud diff --git a/docs/integrations/sources/sonar-cloud.md b/docs/integrations/sources/sonar-cloud.md index fc2de6bb4b64..51416b34e87f 100644 --- a/docs/integrations/sources/sonar-cloud.md +++ b/docs/integrations/sources/sonar-cloud.md @@ -30,7 +30,8 @@ This source can sync data from the [Sonar cloud API](https://sonarcloud.io/web_a | Version | Date | Pull Request | Subject | | :------ | :-------------------------------------------------------------------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47469](https://github.com/airbytehq/airbyte/pull/47469) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44063](https://github.com/airbytehq/airbyte/pull/44063) | Refactor connector to manifest-only format | | 0.1.17 | 2024-08-10 | [43569](https://github.com/airbytehq/airbyte/pull/43569) | Update dependencies | | 0.1.16 | 2024-08-03 | [43249](https://github.com/airbytehq/airbyte/pull/43249) | Update dependencies | From 04e5eff20e36245c44decf30c8d93b0d944273c7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:13:37 +0200 Subject: [PATCH 057/808] =?UTF-8?q?=F0=9F=90=99=20source-us-census:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47119)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-us-census/metadata.yaml | 4 ++-- docs/integrations/sources/us-census.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-us-census/metadata.yaml b/airbyte-integrations/connectors/source-us-census/metadata.yaml index 17e37d6454a3..5340c3d3c39b 100644 --- a/airbyte-integrations/connectors/source-us-census/metadata.yaml +++ b/airbyte-integrations/connectors/source-us-census/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: c4cfaeda-c757-489a-8aba-859fb08b6970 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-us-census githubIssueLabel: source-us-census icon: uscensus.svg @@ -47,5 +47,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/us-census.md b/docs/integrations/sources/us-census.md index 9802593c8feb..f355394cb087 100644 --- a/docs/integrations/sources/us-census.md +++ b/docs/integrations/sources/us-census.md @@ -45,6 +45,7 @@ In addition, to understand how to configure the dataset path and query parameter | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.3.1 | 2024-10-28 | [47119](https://github.com/airbytehq/airbyte/pull/47119) | Update dependencies | | 0.3.0 | 2024-10-22 | [47246](https://github.com/airbytehq/airbyte/pull/47246) | Migrate to manifest-only format | | 0.2.6 | 2024-10-12 | [46813](https://github.com/airbytehq/airbyte/pull/46813) | Update dependencies | | 0.2.5 | 2024-10-05 | [46442](https://github.com/airbytehq/airbyte/pull/46442) | Update dependencies | From fa8086eb634ec02642f973b8a2100903a0b7fc0f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:13:48 +0200 Subject: [PATCH 058/808] =?UTF-8?q?=F0=9F=90=99=20destination-firebolt:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-28]=20(#47100)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-firebolt/metadata.yaml | 2 +- .../destination-firebolt/poetry.lock | 202 +++++++++--------- .../destination-firebolt/pyproject.toml | 2 +- docs/integrations/destinations/firebolt.md | 1 + 4 files changed, 104 insertions(+), 103 deletions(-) diff --git a/airbyte-integrations/connectors/destination-firebolt/metadata.yaml b/airbyte-integrations/connectors/destination-firebolt/metadata.yaml index 7987898ed16c..13dc80051bec 100644 --- a/airbyte-integrations/connectors/destination-firebolt/metadata.yaml +++ b/airbyte-integrations/connectors/destination-firebolt/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 18081484-02a5-4662-8dba-b270b582f321 - dockerImageTag: 0.2.22 + dockerImageTag: 0.2.23 dockerRepository: airbyte/destination-firebolt githubIssueLabel: destination-firebolt connectorBuildOptions: diff --git a/airbyte-integrations/connectors/destination-firebolt/poetry.lock b/airbyte-integrations/connectors/destination-firebolt/poetry.lock index 34889ec54c69..aa7cb96b59dd 100644 --- a/airbyte-integrations/connectors/destination-firebolt/poetry.lock +++ b/airbyte-integrations/connectors/destination-firebolt/poetry.lock @@ -64,13 +64,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -81,7 +81,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -426,38 +426,38 @@ files = [ [[package]] name = "cryptography" -version = "43.0.1" +version = "43.0.3" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." optional = false python-versions = ">=3.7" files = [ - {file = "cryptography-43.0.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:8385d98f6a3bf8bb2d65a73e17ed87a3ba84f6991c155691c51112075f9ffc5d"}, - {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27e613d7077ac613e399270253259d9d53872aaf657471473ebfc9a52935c062"}, - {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68aaecc4178e90719e95298515979814bda0cbada1256a4485414860bd7ab962"}, - {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:de41fd81a41e53267cb020bb3a7212861da53a7d39f863585d13ea11049cf277"}, - {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f98bf604c82c416bc829e490c700ca1553eafdf2912a91e23a79d97d9801372a"}, - {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:61ec41068b7b74268fa86e3e9e12b9f0c21fcf65434571dbb13d954bceb08042"}, - {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:014f58110f53237ace6a408b5beb6c427b64e084eb451ef25a28308270086494"}, - {file = "cryptography-43.0.1-cp37-abi3-win32.whl", hash = "sha256:2bd51274dcd59f09dd952afb696bf9c61a7a49dfc764c04dd33ef7a6b502a1e2"}, - {file = "cryptography-43.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:666ae11966643886c2987b3b721899d250855718d6d9ce41b521252a17985f4d"}, - {file = "cryptography-43.0.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac119bb76b9faa00f48128b7f5679e1d8d437365c5d26f1c2c3f0da4ce1b553d"}, - {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bbcce1a551e262dfbafb6e6252f1ae36a248e615ca44ba302df077a846a8806"}, - {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58d4e9129985185a06d849aa6df265bdd5a74ca6e1b736a77959b498e0505b85"}, - {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d03a475165f3134f773d1388aeb19c2d25ba88b6a9733c5c590b9ff7bbfa2e0c"}, - {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:511f4273808ab590912a93ddb4e3914dfd8a388fed883361b02dea3791f292e1"}, - {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:80eda8b3e173f0f247f711eef62be51b599b5d425c429b5d4ca6a05e9e856baa"}, - {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:38926c50cff6f533f8a2dae3d7f19541432610d114a70808f0926d5aaa7121e4"}, - {file = "cryptography-43.0.1-cp39-abi3-win32.whl", hash = "sha256:a575913fb06e05e6b4b814d7f7468c2c660e8bb16d8d5a1faf9b33ccc569dd47"}, - {file = "cryptography-43.0.1-cp39-abi3-win_amd64.whl", hash = "sha256:d75601ad10b059ec832e78823b348bfa1a59f6b8d545db3a24fd44362a1564cb"}, - {file = "cryptography-43.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ea25acb556320250756e53f9e20a4177515f012c9eaea17eb7587a8c4d8ae034"}, - {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c1332724be35d23a854994ff0b66530119500b6053d0bd3363265f7e5e77288d"}, - {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fba1007b3ef89946dbbb515aeeb41e30203b004f0b4b00e5e16078b518563289"}, - {file = "cryptography-43.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5b43d1ea6b378b54a1dc99dd8a2b5be47658fe9a7ce0a58ff0b55f4b43ef2b84"}, - {file = "cryptography-43.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:88cce104c36870d70c49c7c8fd22885875d950d9ee6ab54df2745f83ba0dc365"}, - {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d3cdb25fa98afdd3d0892d132b8d7139e2c087da1712041f6b762e4f807cc96"}, - {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e710bf40870f4db63c3d7d929aa9e09e4e7ee219e703f949ec4073b4294f6172"}, - {file = "cryptography-43.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7c05650fe8023c5ed0d46793d4b7d7e6cd9c04e68eabe5b0aeea836e37bdcec2"}, - {file = "cryptography-43.0.1.tar.gz", hash = "sha256:203e92a75716d8cfb491dc47c79e17d0d9207ccffcbcb35f598fbe463ae3444d"}, + {file = "cryptography-43.0.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:bf7a1932ac4176486eab36a19ed4c0492da5d97123f1406cf15e41b05e787d2e"}, + {file = "cryptography-43.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63efa177ff54aec6e1c0aefaa1a241232dcd37413835a9b674b6e3f0ae2bfd3e"}, + {file = "cryptography-43.0.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e1ce50266f4f70bf41a2c6dc4358afadae90e2a1e5342d3c08883df1675374f"}, + {file = "cryptography-43.0.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:443c4a81bb10daed9a8f334365fe52542771f25aedaf889fd323a853ce7377d6"}, + {file = "cryptography-43.0.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:74f57f24754fe349223792466a709f8e0c093205ff0dca557af51072ff47ab18"}, + {file = "cryptography-43.0.3-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9762ea51a8fc2a88b70cf2995e5675b38d93bf36bd67d91721c309df184f49bd"}, + {file = "cryptography-43.0.3-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:81ef806b1fef6b06dcebad789f988d3b37ccaee225695cf3e07648eee0fc6b73"}, + {file = "cryptography-43.0.3-cp37-abi3-win32.whl", hash = "sha256:cbeb489927bd7af4aa98d4b261af9a5bc025bd87f0e3547e11584be9e9427be2"}, + {file = "cryptography-43.0.3-cp37-abi3-win_amd64.whl", hash = "sha256:f46304d6f0c6ab8e52770addfa2fc41e6629495548862279641972b6215451cd"}, + {file = "cryptography-43.0.3-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:8ac43ae87929a5982f5948ceda07001ee5e83227fd69cf55b109144938d96984"}, + {file = "cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:846da004a5804145a5f441b8530b4bf35afbf7da70f82409f151695b127213d5"}, + {file = "cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f996e7268af62598f2fc1204afa98a3b5712313a55c4c9d434aef49cadc91d4"}, + {file = "cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:f7b178f11ed3664fd0e995a47ed2b5ff0a12d893e41dd0494f406d1cf555cab7"}, + {file = "cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:c2e6fc39c4ab499049df3bdf567f768a723a5e8464816e8f009f121a5a9f4405"}, + {file = "cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:e1be4655c7ef6e1bbe6b5d0403526601323420bcf414598955968c9ef3eb7d16"}, + {file = "cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:df6b6c6d742395dd77a23ea3728ab62f98379eff8fb61be2744d4679ab678f73"}, + {file = "cryptography-43.0.3-cp39-abi3-win32.whl", hash = "sha256:d56e96520b1020449bbace2b78b603442e7e378a9b3bd68de65c782db1507995"}, + {file = "cryptography-43.0.3-cp39-abi3-win_amd64.whl", hash = "sha256:0c580952eef9bf68c4747774cde7ec1d85a6e61de97281f2dba83c7d2c806362"}, + {file = "cryptography-43.0.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d03b5621a135bffecad2c73e9f4deb1a0f977b9a8ffe6f8e002bf6c9d07b918c"}, + {file = "cryptography-43.0.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:a2a431ee15799d6db9fe80c82b055bae5a752bef645bba795e8e52687c69efe3"}, + {file = "cryptography-43.0.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:281c945d0e28c92ca5e5930664c1cefd85efe80e5c0d2bc58dd63383fda29f83"}, + {file = "cryptography-43.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f18c716be16bc1fea8e95def49edf46b82fccaa88587a45f8dc0ff6ab5d8e0a7"}, + {file = "cryptography-43.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4a02ded6cd4f0a5562a8887df8b3bd14e822a90f97ac5e544c162899bc467664"}, + {file = "cryptography-43.0.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:53a583b6637ab4c4e3591a15bc9db855b8d9dee9a669b550f311480acab6eb08"}, + {file = "cryptography-43.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1ec0bcf7e17c0c5669d881b1cd38c4972fade441b27bda1051665faaa89bdcaa"}, + {file = "cryptography-43.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2ce6fae5bdad59577b44e4dfed356944fbf1d925269114c28be377692643b4ff"}, + {file = "cryptography-43.0.3.tar.gz", hash = "sha256:315b9001266a492a6ff443b61238f956b214dbec9910a081ba5b6646a055a805"}, ] [package.dependencies] @@ -470,7 +470,7 @@ nox = ["nox"] pep8test = ["check-sdist", "click", "mypy", "ruff"] sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "cryptography-vectors (==43.0.1)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test = ["certifi", "cryptography-vectors (==43.0.3)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] [[package]] @@ -742,72 +742,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -1353,13 +1353,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1432,13 +1432,13 @@ files = [ [[package]] name = "trio" -version = "0.26.2" +version = "0.27.0" description = "A friendly Python library for async concurrency and I/O" optional = false python-versions = ">=3.8" files = [ - {file = "trio-0.26.2-py3-none-any.whl", hash = "sha256:c5237e8133eb0a1d72f09a971a55c28ebe69e351c783fc64bc37db8db8bbe1d0"}, - {file = "trio-0.26.2.tar.gz", hash = "sha256:0346c3852c15e5c7d40ea15972c4805689ef2cb8b5206f794c9c19450119f3a4"}, + {file = "trio-0.27.0-py3-none-any.whl", hash = "sha256:68eabbcf8f457d925df62da780eff15ff5dc68fd6b367e2dde59f7aaf2a0b884"}, + {file = "trio-0.27.0.tar.gz", hash = "sha256:1dcc95ab1726b2da054afea8fd761af74bad79bd52381b84eae408e983c76831"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-firebolt/pyproject.toml b/airbyte-integrations/connectors/destination-firebolt/pyproject.toml index b9122089d2f8..3611c658bac2 100644 --- a/airbyte-integrations/connectors/destination-firebolt/pyproject.toml +++ b/airbyte-integrations/connectors/destination-firebolt/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.22" +version = "0.2.23" name = "destination-firebolt" description = "Destination implementation for Firebolt." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/firebolt.md b/docs/integrations/destinations/firebolt.md index 8b274fecb8f4..2de9d03c123f 100644 --- a/docs/integrations/destinations/firebolt.md +++ b/docs/integrations/destinations/firebolt.md @@ -98,6 +98,7 @@ Firebolt. Each table will contain 3 columns: | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- | :------------------------------------- | +| 0.2.23 | 2024-10-28 | [47100](https://github.com/airbytehq/airbyte/pull/47100) | Update dependencies | | 0.2.22 | 2024-10-12 | [46841](https://github.com/airbytehq/airbyte/pull/46841) | Update dependencies | | 0.2.21 | 2024-10-05 | [46420](https://github.com/airbytehq/airbyte/pull/46420) | Update dependencies | | 0.2.20 | 2024-09-28 | [46144](https://github.com/airbytehq/airbyte/pull/46144) | Update dependencies | From 141b27ffaf1148abf6d12f304935e9bcba7f7a19 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 14:15:00 +0200 Subject: [PATCH 059/808] =?UTF-8?q?=F0=9F=90=99=20source-breezometer:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#43777)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-breezometer/metadata.yaml | 4 ++-- docs/integrations/sources/breezometer.md | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-breezometer/metadata.yaml b/airbyte-integrations/connectors/source-breezometer/metadata.yaml index 01bf656dc7d2..dd42e4bdf11c 100644 --- a/airbyte-integrations/connectors/source-breezometer/metadata.yaml +++ b/airbyte-integrations/connectors/source-breezometer/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7c37685e-8512-4901-addf-9afbef6c0de9 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-breezometer githubIssueLabel: source-breezometer icon: breezometer.svg @@ -38,5 +38,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.3@sha256:c313c25af0617f5879361e684c956ac25ac1122beaf311c967e5b7a9b45ded79 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/breezometer.md b/docs/integrations/sources/breezometer.md index 6598ccc39944..8a0971f1e6a3 100644 --- a/docs/integrations/sources/breezometer.md +++ b/docs/integrations/sources/breezometer.md @@ -39,8 +39,9 @@ The Breezometer connector supports full sync refresh. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------ | -| 0.2.0 | 2024-08-22 | [44563](https://github.com/airbytehq/airbyte/pull/44563) | Refactor connector to manifest-only format | -| 0.1.1 | 2024-05-21 | [38529](https://github.com/airbytehq/airbyte/pull/38529) | [autopull] base image + poetry + up_to_date | -| 0.1.0 | 2022-10-29 | [18650](https://github.com/airbytehq/airbyte/pull/18650) | Initial version/release of the connector. | +| 0.2.1 | 2024-10-28 | [43777](https://github.com/airbytehq/airbyte/pull/43777) | Update dependencies | +| 0.2.0 | 2024-08-22 | [44563](https://github.com/airbytehq/airbyte/pull/44563) | Refactor connector to manifest-only format | +| 0.1.1 | 2024-05-21 | [38529](https://github.com/airbytehq/airbyte/pull/38529) | [autopull] base image + poetry + up_to_date | +| 0.1.0 | 2022-10-29 | [18650](https://github.com/airbytehq/airbyte/pull/18650) | Initial version/release of the connector. | From 97514e6b3693ecc3ee3cfcec051dfa7a42f4956e Mon Sep 17 00:00:00 2001 From: tolik0 Date: Mon, 28 Oct 2024 12:48:34 +0000 Subject: [PATCH 060/808] =?UTF-8?q?=F0=9F=A4=96=20Cut=20version=205.17.0?= =?UTF-8?q?=20of=20source-declarative-manifest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-declarative-manifest/metadata.yaml | 2 +- .../connectors/source-declarative-manifest/poetry.lock | 8 ++++---- .../connectors/source-declarative-manifest/pyproject.toml | 4 ++-- docs/integrations/sources/low-code.md | 1 + 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml index 7807f91f06a3..8d5634b416ac 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml +++ b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml @@ -8,7 +8,7 @@ data: connectorType: source definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436 # This version should not be updated manually - it is updated by the CDK release workflow. - dockerImageTag: 5.16.0 + dockerImageTag: 5.17.0 dockerRepository: airbyte/source-declarative-manifest # This page is hidden from the docs for now, since the connector is not in any Airbyte registries. documentationUrl: https://docs.airbyte.com/integrations/sources/low-code diff --git a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock index 0d90ecd2c834..061d388c6034 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock +++ b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "5.16.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.16.0-py3-none-any.whl", hash = "sha256:71f909ffc489e3c20ee2ee8a307fe30035bc3f62b221951ede1f2063b76b49a9"}, - {file = "airbyte_cdk-5.16.0.tar.gz", hash = "sha256:1f214a93c3ec20c047d13c4612de0cdaf76fb87e8f312fd7a8ea1e216ad1794a"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -1747,4 +1747,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10,<3.12" -content-hash = "62a37bc67a317299cc94df0750dca824191a594334df14f8331dc18b1537f85c" +content-hash = "70df7684faebd836c644dce4dca63ec92b77c85cc443ae5a1e52034c1285e086" diff --git a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml index ce49810fe617..40398f12f6ef 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml +++ b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "5.16.0" +version = "5.17.0" name = "source-declarative-manifest" description = "Base source implementation for low-code sources." authors = ["Airbyte "] @@ -17,7 +17,7 @@ include = "source_declarative_manifest" [tool.poetry.dependencies] python = "^3.10,<3.12" -airbyte-cdk = "5.16.0" +airbyte-cdk = "5.17.0" [tool.poetry.scripts] source-declarative-manifest = "source_declarative_manifest.run:run" diff --git a/docs/integrations/sources/low-code.md b/docs/integrations/sources/low-code.md index df9e88f41e62..b830b4ef1f39 100644 --- a/docs/integrations/sources/low-code.md +++ b/docs/integrations/sources/low-code.md @@ -9,6 +9,7 @@ The changelog below is automatically updated by the `bump_version` command as pa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 5.17.0 | 2024-10-28 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.17.0 | | 5.16.0 | 2024-10-23 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.16.0 | | 5.15.0 | 2024-10-23 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.15.0 | | 5.14.1 | 2024-10-23 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.14.1 | From 87aa2311cc7c87362ddc156adfe9944d8751c6a6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:08:43 +0200 Subject: [PATCH 061/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-lists:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47544)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-microsoft-lists/metadata.yaml | 4 ++-- docs/integrations/sources/microsoft-lists.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml index 5dd3bb3147a9..22ffa5385c69 100644 --- a/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-microsoft-lists connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 18ea5fae-f0b1-4d82-9aef-832bb922a5b5 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-microsoft-lists githubIssueLabel: source-microsoft-lists icon: icon.svg diff --git a/docs/integrations/sources/microsoft-lists.md b/docs/integrations/sources/microsoft-lists.md index a0152087b227..6f481886bfd7 100644 --- a/docs/integrations/sources/microsoft-lists.md +++ b/docs/integrations/sources/microsoft-lists.md @@ -61,6 +61,7 @@ Microsoft Lists connector enables seamless data integration and synchronization | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47544](https://github.com/airbytehq/airbyte/pull/47544) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 416f7ace929db1f98a369bca59d1cdb8196eea9f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:09:47 +0200 Subject: [PATCH 062/808] =?UTF-8?q?=F0=9F=90=99=20source-visma-economic:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47543)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-visma-economic/metadata.yaml | 4 ++-- docs/integrations/sources/visma-economic.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-visma-economic/metadata.yaml b/airbyte-integrations/connectors/source-visma-economic/metadata.yaml index 85c6879fcde1..d7a298a7e1a6 100644 --- a/airbyte-integrations/connectors/source-visma-economic/metadata.yaml +++ b/airbyte-integrations/connectors/source-visma-economic/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - restapi.e-conomic.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 42495935-95de-4f5c-ae08-8fac00f6b308 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-visma-economic documentationUrl: https://docs.airbyte.com/integrations/sources/visma-economic githubIssueLabel: source-visma-economic diff --git a/docs/integrations/sources/visma-economic.md b/docs/integrations/sources/visma-economic.md index 700c7c1382ff..c907c428e18f 100644 --- a/docs/integrations/sources/visma-economic.md +++ b/docs/integrations/sources/visma-economic.md @@ -52,7 +52,8 @@ For more information about the api see the [E-conomic REST API Documentation](ht | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47543](https://github.com/airbytehq/airbyte/pull/47543) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-14 | [44052](https://github.com/airbytehq/airbyte/pull/44052) | Refactor connector to manifest-only format | | 0.2.15 | 2024-08-10 | [43690](https://github.com/airbytehq/airbyte/pull/43690) | Update dependencies | | 0.2.14 | 2024-08-03 | [43165](https://github.com/airbytehq/airbyte/pull/43165) | Update dependencies | From a6d96e61fc1e883eb068c2a26a053c2d18fd07f0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:09:50 +0200 Subject: [PATCH 063/808] =?UTF-8?q?=F0=9F=90=99=20source-reddit:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47542)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-reddit/metadata.yaml | 4 ++-- docs/integrations/sources/reddit.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/source-reddit/metadata.yaml b/airbyte-integrations/connectors/source-reddit/metadata.yaml index 93dc0d91449c..3c0eb0efff37 100644 --- a/airbyte-integrations/connectors/source-reddit/metadata.yaml +++ b/airbyte-integrations/connectors/source-reddit/metadata.yaml @@ -14,11 +14,11 @@ data: enabled: false packageName: airbyte-source-reddit connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 3ed344ac-4099-402c-bf83-1cfdc53295d9 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-reddit githubIssueLabel: source-reddit icon: icon.svg diff --git a/docs/integrations/sources/reddit.md b/docs/integrations/sources/reddit.md index 42d0a8335668..c225f7e4dcda 100644 --- a/docs/integrations/sources/reddit.md +++ b/docs/integrations/sources/reddit.md @@ -65,6 +65,7 @@ Hit send to receive `api_key` in the response under `access_token` | Version | Date |Pull Request | Subject | |------------------|------------|--------------|----------------| -| 0.0.1 | 2024-08-23 |[44579](https://github.com/airbytehq/airbyte/pull/44579)| Initial release by [btkcodedev](https://github.com/btkcodedev) via Connector Builder| +| 0.0.2 | 2024-10-28 | [47542](https://github.com/airbytehq/airbyte/pull/47542) | Update dependencies | +| 0.0.1 | 2024-08-23 | [44579](https://github.com/airbytehq/airbyte/pull/44579) | Initial release by [btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 5a8147a45bd8893a040f9fb6531be44447a89fd8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:09:54 +0200 Subject: [PATCH 064/808] =?UTF-8?q?=F0=9F=90=99=20source-teamtailor:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47540)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-teamtailor/metadata.yaml | 4 ++-- docs/integrations/sources/teamtailor.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-teamtailor/metadata.yaml b/airbyte-integrations/connectors/source-teamtailor/metadata.yaml index 34d2578c762d..c2e3c5b34681 100644 --- a/airbyte-integrations/connectors/source-teamtailor/metadata.yaml +++ b/airbyte-integrations/connectors/source-teamtailor/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-teamtailor connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 6d811b1b-5b94-4d5a-a74a-c2e46e5cb87c - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-teamtailor githubIssueLabel: source-teamtailor icon: icon.svg diff --git a/docs/integrations/sources/teamtailor.md b/docs/integrations/sources/teamtailor.md index 2323c7981c0d..e14befe8dfcc 100644 --- a/docs/integrations/sources/teamtailor.md +++ b/docs/integrations/sources/teamtailor.md @@ -45,6 +45,7 @@ Make sure to have the add-ons installed in your account for using the `nps-respo | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47540](https://github.com/airbytehq/airbyte/pull/47540) | Update dependencies | | 0.0.1 | 2024-10-14 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 9396fe2fffbd3fe5d98713c1e9008fb366d23ced Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:09:57 +0200 Subject: [PATCH 065/808] =?UTF-8?q?=F0=9F=90=99=20source-postmarkapp:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47539)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-postmarkapp/metadata.yaml | 4 ++-- docs/integrations/sources/postmarkapp.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-postmarkapp/metadata.yaml b/airbyte-integrations/connectors/source-postmarkapp/metadata.yaml index 8d5b549cce71..9dbdf6126280 100644 --- a/airbyte-integrations/connectors/source-postmarkapp/metadata.yaml +++ b/airbyte-integrations/connectors/source-postmarkapp/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: cde75ca1-1e28-4a0f-85bb-90c546de9f1f - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-postmarkapp documentationUrl: https://docs.airbyte.com/integrations/sources/postmarkapp githubIssueLabel: source-postmarkapp diff --git a/docs/integrations/sources/postmarkapp.md b/docs/integrations/sources/postmarkapp.md index dcde3b522a39..4023e3704bdd 100644 --- a/docs/integrations/sources/postmarkapp.md +++ b/docs/integrations/sources/postmarkapp.md @@ -58,7 +58,8 @@ The Postmarkapp source connector supports the following [sync modes](https://doc | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.0 | 2024-10-06 | [46522](https://github.com/airbytehq/airbyte/pull/46522) | Migrate to Manifest-only | +| 0.2.1 | 2024-10-28 | [47539](https://github.com/airbytehq/airbyte/pull/47539) | Update dependencies | +| 0.2.0 | 2024-10-06 | [46522](https://github.com/airbytehq/airbyte/pull/46522) | Migrate to Manifest-only | | 0.1.21 | 2024-10-05 | [46509](https://github.com/airbytehq/airbyte/pull/46509) | Update dependencies | | 0.1.20 | 2024-09-28 | [45793](https://github.com/airbytehq/airbyte/pull/45793) | Update dependencies | | 0.1.19 | 2024-09-14 | [45535](https://github.com/airbytehq/airbyte/pull/45535) | Update dependencies | From d690a35645acb56433dcbf1b96f5c3a420bd0f74 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:01 +0200 Subject: [PATCH 066/808] =?UTF-8?q?=F0=9F=90=99=20source-mention:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47538)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mention/metadata.yaml | 4 ++-- docs/integrations/sources/mention.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mention/metadata.yaml b/airbyte-integrations/connectors/source-mention/metadata.yaml index 6fb668345945..34032642ea99 100644 --- a/airbyte-integrations/connectors/source-mention/metadata.yaml +++ b/airbyte-integrations/connectors/source-mention/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mention connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 1180b5a7-8658-4510-ba65-611191333ba8 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-mention githubIssueLabel: source-mention icon: icon.svg diff --git a/docs/integrations/sources/mention.md b/docs/integrations/sources/mention.md index 0ce80733a348..455379aae3bc 100644 --- a/docs/integrations/sources/mention.md +++ b/docs/integrations/sources/mention.md @@ -33,6 +33,7 @@ Docs: https://dev.mention.com/current/ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47538](https://github.com/airbytehq/airbyte/pull/47538) | Update dependencies | | 0.0.1 | 2024-10-23 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | From 8dd42bda2470af2ae8ead274b8b2851e76f6d626 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:06 +0200 Subject: [PATCH 067/808] =?UTF-8?q?=F0=9F=90=99=20source-intercom:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47537)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-intercom/metadata.yaml | 2 +- .../connectors/source-intercom/poetry.lock | 123 +++++++-------- .../connectors/source-intercom/pyproject.toml | 2 +- docs/integrations/sources/intercom.md | 143 +++++++++--------- 4 files changed, 136 insertions(+), 134 deletions(-) diff --git a/airbyte-integrations/connectors/source-intercom/metadata.yaml b/airbyte-integrations/connectors/source-intercom/metadata.yaml index 9b080353da5e..41b51a1a0dd8 100644 --- a/airbyte-integrations/connectors/source-intercom/metadata.yaml +++ b/airbyte-integrations/connectors/source-intercom/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: d8313939-3782-41b0-be29-b3ca20d8dd3a - dockerImageTag: 0.8.0 + dockerImageTag: 0.8.1 dockerRepository: airbyte/source-intercom documentationUrl: https://docs.airbyte.com/integrations/sources/intercom githubIssueLabel: source-intercom diff --git a/airbyte-integrations/connectors/source-intercom/poetry.lock b/airbyte-integrations/connectors/source-intercom/poetry.lock index b64d5cc8c88f..1d6abbe9a3fb 100644 --- a/airbyte-integrations/connectors/source-intercom/poetry.lock +++ b/airbyte-integrations/connectors/source-intercom/poetry.lock @@ -707,13 +707,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.136" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.136-py3-none-any.whl", hash = "sha256:cad2215eb7a754ee259878e19c558f4f8d3795aa1b699f087d4500e640f80d0a"}, - {file = "langsmith-0.1.136.tar.gz", hash = "sha256:5c0de01a313db70dd9a85845c0f416a69b5b653b3e98ba413d7d41e8851315b1"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -820,68 +820,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.9" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.9-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a377186a11b48c55969e34f0aa414c2826a234f212d6f2b312ba512e3cdb2c6f"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bf37bf0ca538065c34efe1803378b2dadd7e05b06610a086c2857f15ee59e12"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7d9d83a91168aa48309acba804e393b7d9216b66f15e38f339b9fbb00db8986d"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e0014038a17a1fe273da0a5489787677ef5a64566ab383ad6d929e44ed5683f4"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d6ae1b1733e4528e45675ed09a732b6ac37d716bce2facaf467f84ce774adecd"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe91c2259c4a859356b6db1c6e649b40577492f66d483da8b8af6da0f87c00e3"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a04f912c32463386ba117591c99a3d9e40b3b69bed9c5123d89dff06f0f5a4b0"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae82ca347829ca47431767b079f96bb977f592189250ccdede676339a80c8982"}, - {file = "orjson-3.10.9-cp310-none-win32.whl", hash = "sha256:fd5083906825d7f5d23089425ce5424d783d6294020bcabb8518a3e1f97833e5"}, - {file = "orjson-3.10.9-cp310-none-win_amd64.whl", hash = "sha256:e9ff9521b5be0340c8e686bcfe2619777fd7583f71e7b494601cc91ad3919d2e"}, - {file = "orjson-3.10.9-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f3bd9df47385b8fabb3b2ee1e83f9960b8accc1905be971a1c257f16c32b491e"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4948961b6bce1e2086b2cf0b56cc454cdab589d40c7f85be71fb5a5556c51d3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a9fc7a6cf2b229ddc323e136df13b3fb4466c50d84ed600cd0898223dd2fea3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2314846e1029a2d2b899140f350eaaf3a73281df43ba84ac44d94ca861b5b269"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f52d993504827503411df2d60e60acf52885561458d6273f99ecd172f31c4352"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e29bbf08d907756c145a3a3a1f7ce2f11f15e3edbd3342842589d6030981b76f"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7ae82992c00b480c3cc7dac6739324554be8c5d8e858a90044928506a3333ef4"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6fdf8d32b6d94019dc15163542d345e9ce4c4661f56b318608aa3088a1a3a23b"}, - {file = "orjson-3.10.9-cp311-none-win32.whl", hash = "sha256:01f5fef452b4d7615f2e94153479370a4b59e0c964efb32dd902978f807a45cd"}, - {file = "orjson-3.10.9-cp311-none-win_amd64.whl", hash = "sha256:95361c4197c7ce9afdf56255de6f4e2474c39d16a277cce31d1b99a2520486d8"}, - {file = "orjson-3.10.9-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:43ad5560db54331c007dc38be5ba7706cb72974a29ae8227019d89305d750a6f"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1471c3274b1a4a9b8f4b9ed6effaea9ad885796373797515c44b365b375c256d"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:41d8cac575acd15918903d74cfaabb5dbe57b357b93341332f647d1013928dcc"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2920c8754f1aedc98bd357ec172af18ce48f5f1017a92244c85fe41d16d3c6e0"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7fa3ff6a0d9d15a0d0d2254cca16cd919156a18423654ce5574591392fe9914"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1e91b90c0c26bd79593967c1adef421bcff88c9e723d49c93bb7ad8af80bc6b"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f11949024f785ace1a516db32fa6255f6227226b2c988abf66f5aee61d43d8f7"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:060e020d85d0ec145bc1b536b1fd9c10a0519c91991ead9724d6f759ebe26b9a"}, - {file = "orjson-3.10.9-cp312-none-win32.whl", hash = "sha256:71f73439999fe662843da3607cdf6e75b1551c330f487e5801d463d969091c63"}, - {file = "orjson-3.10.9-cp312-none-win_amd64.whl", hash = "sha256:12e2efe81356b8448f1cd130f8d75d3718de583112d71f2e2f8baa81bd835bb9"}, - {file = "orjson-3.10.9-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:0ab6e3ad10e964392f0e838751bcce2ef9c8fa8be7deddffff83088e5791566d"}, - {file = "orjson-3.10.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68ef65223baab00f469c8698f771ab3e6ccf6af2a987e77de5b566b4ec651150"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6f130848205fea90a2cb9fa2b11cafff9a9f31f4efad225800bc8b9e4a702f24"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2ea7a98f3295ed8adb6730a5788cc78dafea28300d19932a1d2143457f7db802"}, - {file = "orjson-3.10.9-cp313-none-win32.whl", hash = "sha256:bdce39f96149a74fddeb2674c54f1da5e57724d32952eb6df2ac719b66d453cc"}, - {file = "orjson-3.10.9-cp313-none-win_amd64.whl", hash = "sha256:d11383701d4b58e795039b662ada46987744293d57bfa2719e7379b8d67bc796"}, - {file = "orjson-3.10.9-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1c3a1e845916a3739ab4162bb48dee66e0e727a19faf397176a7db0d9826cc3c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:063ca59d93d93d1387f0c4bb766c6d4f5b0e423fe7c366d0bd4401a56d1669d1"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:938b7fcd79cf06fe348fb24b6163fbaa2fdc9fbed8b1f06318f24467f1487e63"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cc32a9e43c7693011ccde6f8eff8cba75ca0d2a55de11092faa4a716101e67f5"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1b3069b7e2f57f3eef2282029b9c2ba21f08a55f1018e483663a3356f046af4c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4289b5d1f88fd05dcafdd7a1f3b17bb722e77712b7618f98e86bdda560e0a1a"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:74f5a7a7f282d326be71b722b0c350da7af6f5f15b9378da177e0e4a09bd91a3"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:80e0c013e50cf7198319d8137931684eb9f32daa067e8276d9dbdd4010bb4add"}, - {file = "orjson-3.10.9-cp38-none-win32.whl", hash = "sha256:9d989152df8f60a76867354e0e08d896292ab9fb96a7ef89a5b3838de174522c"}, - {file = "orjson-3.10.9-cp38-none-win_amd64.whl", hash = "sha256:485358fe9892d6bfd88e5885b66bf88496e1842c8f35f61682ff9928b12a6cf0"}, - {file = "orjson-3.10.9-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ca54e6f320e33c8a6e471c424ee16576361d905c15d69e134c2906d3fcb31795"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9a9eb03a29c9b30b6c8bb35e5fa20d96589a76e0042005be59b7c3af10a7e43"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:731e8859fc99b398c286320726906404091141e9223dd5e9e6917f7e32e1cc68"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:75b061c11f5aab979a95927a76394b4a85e3e4d63d0a2a16b56a4f7c6503afab"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b61b08f6397f004570fd6a840f4a58946b63b4c7029408cdedb45fe85c7d17f7"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c4f5e0360b7f0aba91dafe12469108109a0e8973956d4a9865ca262a6881406"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e403429e2947a059545e305d97e4b0eb90d3bb44b396d6f327d7ae2018391e13"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0e492b93e122264c2dc78700859122631a4715bda88fabf57d9226954cfe7ec5"}, - {file = "orjson-3.10.9-cp39-none-win32.whl", hash = "sha256:bfba9605e85bfd19b83a21c2c25c2bed2000d5f097f3fa3ad5b5f8a7263a3148"}, - {file = "orjson-3.10.9-cp39-none-win_amd64.whl", hash = "sha256:77d277fa138d4bf145e8b24042004891c188c52ac8492724a183f42b0031cf0c"}, - {file = "orjson-3.10.9.tar.gz", hash = "sha256:c378074e0c46035dc66e57006993233ec66bf8487d501bab41649b4b7289ed4d"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-intercom/pyproject.toml b/airbyte-integrations/connectors/source-intercom/pyproject.toml index 983cb6bbcb65..571525288f71 100644 --- a/airbyte-integrations/connectors/source-intercom/pyproject.toml +++ b/airbyte-integrations/connectors/source-intercom/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.8.0" +version = "0.8.1" name = "source-intercom" description = "Source implementation for Intercom Yaml." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/intercom.md b/docs/integrations/sources/intercom.md index 0c4d7468245f..2f65647fc8ad 100644 --- a/docs/integrations/sources/intercom.md +++ b/docs/integrations/sources/intercom.md @@ -96,76 +96,77 @@ The Intercom connector should not run into Intercom API limitations under normal | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------| -| 0.8.0 | 2024-10-23 | [46658](https://github.com/airbytehq/airbyte/pull/46658) | Add `lookback_window` to the source specification | -| 0.7.5 | 2024-10-21 | [47120](https://github.com/airbytehq/airbyte/pull/47120) | Update dependencies | -| 0.7.4 | 2024-10-12 | [46831](https://github.com/airbytehq/airbyte/pull/46831) | Update dependencies | -| 0.7.3 | 2024-10-05 | [46447](https://github.com/airbytehq/airbyte/pull/46447) | Update dependencies | -| 0.7.2 | 2024-09-28 | [45279](https://github.com/airbytehq/airbyte/pull/45279) | Update dependencies | -| 0.7.1 | 2024-08-31 | [44966](https://github.com/airbytehq/airbyte/pull/44966) | Update dependencies | -| 0.7.0 | 2024-08-29 | [44911](https://github.com/airbytehq/airbyte/pull/44911) | Migrate to CDK v4 | -| 0.6.21 | 2024-08-24 | [44672](https://github.com/airbytehq/airbyte/pull/44672) | Update dependencies | -| 0.6.20 | 2024-08-17 | [44296](https://github.com/airbytehq/airbyte/pull/44296) | Update dependencies | -| 0.6.19 | 2024-08-12 | [43878](https://github.com/airbytehq/airbyte/pull/43878) | Update dependencies | -| 0.6.18 | 2024-08-10 | [43500](https://github.com/airbytehq/airbyte/pull/43500) | Update dependencies | -| 0.6.17 | 2024-08-03 | [43276](https://github.com/airbytehq/airbyte/pull/43276) | Update dependencies | -| 0.6.16 | 2024-07-29 | [42094](https://github.com/airbytehq/airbyte/pull/42094) | Use latest CDK, raise config error on `Active subscription needed` error and transient errors for `Companies` stream. | -| 0.6.15 | 2024-07-27 | [42654](https://github.com/airbytehq/airbyte/pull/42654) | Update dependencies | -| 0.6.14 | 2024-07-20 | [42262](https://github.com/airbytehq/airbyte/pull/42262) | Update dependencies | -| 0.6.13 | 2024-07-13 | [41712](https://github.com/airbytehq/airbyte/pull/41712) | Update dependencies | -| 0.6.12 | 2024-07-10 | [41356](https://github.com/airbytehq/airbyte/pull/41356) | Update dependencies | -| 0.6.11 | 2024-07-09 | [41112](https://github.com/airbytehq/airbyte/pull/41112) | Update dependencies | -| 0.6.10 | 2024-07-06 | [40878](https://github.com/airbytehq/airbyte/pull/40878) | Update dependencies | -| 0.6.9 | 2024-06-25 | [40428](https://github.com/airbytehq/airbyte/pull/40428) | Update dependencies | -| 0.6.8 | 2024-06-22 | [39951](https://github.com/airbytehq/airbyte/pull/39951) | Update dependencies | -| 0.6.7 | 2024-06-06 | [39286](https://github.com/airbytehq/airbyte/pull/39286) | [autopull] Upgrade base image to v1.2.2 | -| 0.6.6 | 2024-05-24 | [38626](https://github.com/airbytehq/airbyte/pull/38626) | Add step granularity for activity logs stream | -| 0.6.5 | 2024-04-19 | [36644](https://github.com/airbytehq/airbyte/pull/36644) | Updating to 0.80.0 CDK | -| 0.6.4 | 2024-04-12 | [36644](https://github.com/airbytehq/airbyte/pull/36644) | Schema descriptions | -| 0.6.3 | 2024-03-23 | [36414](https://github.com/airbytehq/airbyte/pull/36414) | Fixed `pagination` regression bug for `conversations` stream | -| 0.6.2 | 2024-03-22 | [36277](https://github.com/airbytehq/airbyte/pull/36277) | Fixed the bug for `conversations` stream failed due to `404 - User Not Found`, when the `2.10` API version is used | -| 0.6.1 | 2024-03-18 | [36232](https://github.com/airbytehq/airbyte/pull/36232) | Fixed the bug caused the regression when setting the `Intercom-Version` header, updated the source to use the latest CDK version | -| 0.6.0 | 2024-02-12 | [35176](https://github.com/airbytehq/airbyte/pull/35176) | Update the connector to use `2.10` API version | -| 0.5.1 | 2024-02-12 | [35148](https://github.com/airbytehq/airbyte/pull/35148) | Manage dependencies with Poetry | -| 0.5.0 | 2024-02-09 | [35063](https://github.com/airbytehq/airbyte/pull/35063) | Add missing fields for mutiple streams | -| 0.4.0 | 2024-01-11 | [33882](https://github.com/airbytehq/airbyte/pull/33882) | Add new stream `Activity Logs` | -| 0.3.2 | 2023-12-07 | [33223](https://github.com/airbytehq/airbyte/pull/33223) | Ignore 404 error for `Conversation Parts` | -| 0.3.1 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image | -| 0.3.0 | 2023-05-25 | [29598](https://github.com/airbytehq/airbyte/pull/29598) | Update custom components to make them compatible with latest cdk version, simplify logic, update schemas | -| 0.2.1 | 2023-05-25 | [26571](https://github.com/airbytehq/airbyte/pull/26571) | Remove authSpecification from spec.json in favour of advancedAuth | -| 0.2.0 | 2023-04-05 | [23013](https://github.com/airbytehq/airbyte/pull/23013) | Migrated to Low-code (YAML Frramework) | -| 0.1.33 | 2023-03-20 | [22980](https://github.com/airbytehq/airbyte/pull/22980) | Specified date formatting in specification | -| 0.1.32 | 2023-02-27 | [22095](https://github.com/airbytehq/airbyte/pull/22095) | Extended `Contacts` schema adding `opted_out_subscription_types` property | -| 0.1.31 | 2023-02-17 | [23152](https://github.com/airbytehq/airbyte/pull/23152) | Add `TypeTransformer` to stream `companies` | -| 0.1.30 | 2023-01-27 | [22010](https://github.com/airbytehq/airbyte/pull/22010) | Set `AvailabilityStrategy` for streams explicitly to `None` | -| 0.1.29 | 2022-10-31 | [18681](https://github.com/airbytehq/airbyte/pull/18681) | Define correct version for airbyte-cdk~=0.2 | -| 0.1.28 | 2022-10-20 | [18216](https://github.com/airbytehq/airbyte/pull/18216) | Use airbyte-cdk~=0.2.0 with SQLite caching | -| 0.1.27 | 2022-08-28 | [17326](https://github.com/airbytehq/airbyte/pull/17326) | Migrate to per-stream states | -| 0.1.26 | 2022-08-18 | [16540](https://github.com/airbytehq/airbyte/pull/16540) | Fix JSON schema | -| 0.1.25 | 2022-08-18 | [15681](https://github.com/airbytehq/airbyte/pull/15681) | Update Intercom API to v 2.5 | -| 0.1.24 | 2022-07-21 | [14924](https://github.com/airbytehq/airbyte/pull/14924) | Remove `additionalProperties` field from schemas | -| 0.1.23 | 2022-07-19 | [14830](https://github.com/airbytehq/airbyte/pull/14830) | Added `checkpoint_interval` for Incremental streams | -| 0.1.22 | 2022-07-09 | [14554](https://github.com/airbytehq/airbyte/pull/14554) | Fixed `conversation_parts` stream schema definition | -| 0.1.21 | 2022-07-05 | [14403](https://github.com/airbytehq/airbyte/pull/14403) | Refactored `Conversations`, `Conversation Parts`, `Company Segments` to increase performance | -| 0.1.20 | 2022-06-24 | [14099](https://github.com/airbytehq/airbyte/pull/14099) | Extended `Contacts` stream schema with `sms_consent`,`unsubscribe_from_sms` properties | -| 0.1.19 | 2022-05-25 | [13204](https://github.com/airbytehq/airbyte/pull/13204) | Fixed `conversation_parts` stream schema definition | -| 0.1.18 | 2022-05-04 | [12482](https://github.com/airbytehq/airbyte/pull/12482) | Update input configuration copy | -| 0.1.17 | 2022-04-29 | [12374](https://github.com/airbytehq/airbyte/pull/12374) | Fixed filtering of conversation_parts | -| 0.1.16 | 2022-03-23 | [11206](https://github.com/airbytehq/airbyte/pull/11206) | Added conversation_id field to conversation_part records | -| 0.1.15 | 2022-03-22 | [11176](https://github.com/airbytehq/airbyte/pull/11176) | Correct `check_connection` URL | -| 0.1.14 | 2022-03-16 | [11208](https://github.com/airbytehq/airbyte/pull/11208) | Improve 'conversations' incremental sync speed | -| 0.1.13 | 2022-01-14 | [9513](https://github.com/airbytehq/airbyte/pull/9513) | Added handling of scroll param when it expired | -| 0.1.12 | 2021-12-14 | [8429](https://github.com/airbytehq/airbyte/pull/8429) | Updated fields and descriptions | -| 0.1.11 | 2021-12-13 | [8685](https://github.com/airbytehq/airbyte/pull/8685) | Remove time.sleep for rate limit | -| 0.1.10 | 2021-12-10 | [8637](https://github.com/airbytehq/airbyte/pull/8637) | Fix 'conversations' order and sorting. Correction of the companies stream | -| 0.1.9 | 2021-12-03 | [8395](https://github.com/airbytehq/airbyte/pull/8395) | Fix backoff of 'companies' stream | -| 0.1.8 | 2021-11-09 | [7060](https://github.com/airbytehq/airbyte/pull/7060) | Added oauth support | -| 0.1.7 | 2021-11-08 | [7499](https://github.com/airbytehq/airbyte/pull/7499) | Remove base-python dependencies | -| 0.1.6 | 2021-10-07 | [6879](https://github.com/airbytehq/airbyte/pull/6879) | Corrected pagination for contacts | -| 0.1.5 | 2021-09-28 | [6082](https://github.com/airbytehq/airbyte/pull/6082) | Corrected android\_last\_seen\_at field data type in schemas | -| 0.1.4 | 2021-09-20 | [6087](https://github.com/airbytehq/airbyte/pull/6087) | Corrected updated\_at field data type in schemas | -| 0.1.3 | 2021-09-08 | [5908](https://github.com/airbytehq/airbyte/pull/5908) | Corrected timestamp and arrays in schemas | -| 0.1.2 | 2021-08-19 | [5531](https://github.com/airbytehq/airbyte/pull/5531) | Corrected pagination | -| 0.1.1 | 2021-07-31 | [5123](https://github.com/airbytehq/airbyte/pull/5123) | Corrected rate limit | -| 0.1.0 | 2021-07-19 | [4676](https://github.com/airbytehq/airbyte/pull/4676) | Release Intercom CDK Connector | +| 0.8.1 | 2024-10-28 | [47537](https://github.com/airbytehq/airbyte/pull/47537) | Update dependencies | +| 0.8.0 | 2024-10-23 | [46658](https://github.com/airbytehq/airbyte/pull/46658) | Add `lookback_window` to the source specification | +| 0.7.5 | 2024-10-21 | [47120](https://github.com/airbytehq/airbyte/pull/47120) | Update dependencies | +| 0.7.4 | 2024-10-12 | [46831](https://github.com/airbytehq/airbyte/pull/46831) | Update dependencies | +| 0.7.3 | 2024-10-05 | [46447](https://github.com/airbytehq/airbyte/pull/46447) | Update dependencies | +| 0.7.2 | 2024-09-28 | [45279](https://github.com/airbytehq/airbyte/pull/45279) | Update dependencies | +| 0.7.1 | 2024-08-31 | [44966](https://github.com/airbytehq/airbyte/pull/44966) | Update dependencies | +| 0.7.0 | 2024-08-29 | [44911](https://github.com/airbytehq/airbyte/pull/44911) | Migrate to CDK v4 | +| 0.6.21 | 2024-08-24 | [44672](https://github.com/airbytehq/airbyte/pull/44672) | Update dependencies | +| 0.6.20 | 2024-08-17 | [44296](https://github.com/airbytehq/airbyte/pull/44296) | Update dependencies | +| 0.6.19 | 2024-08-12 | [43878](https://github.com/airbytehq/airbyte/pull/43878) | Update dependencies | +| 0.6.18 | 2024-08-10 | [43500](https://github.com/airbytehq/airbyte/pull/43500) | Update dependencies | +| 0.6.17 | 2024-08-03 | [43276](https://github.com/airbytehq/airbyte/pull/43276) | Update dependencies | +| 0.6.16 | 2024-07-29 | [42094](https://github.com/airbytehq/airbyte/pull/42094) | Use latest CDK, raise config error on `Active subscription needed` error and transient errors for `Companies` stream. | +| 0.6.15 | 2024-07-27 | [42654](https://github.com/airbytehq/airbyte/pull/42654) | Update dependencies | +| 0.6.14 | 2024-07-20 | [42262](https://github.com/airbytehq/airbyte/pull/42262) | Update dependencies | +| 0.6.13 | 2024-07-13 | [41712](https://github.com/airbytehq/airbyte/pull/41712) | Update dependencies | +| 0.6.12 | 2024-07-10 | [41356](https://github.com/airbytehq/airbyte/pull/41356) | Update dependencies | +| 0.6.11 | 2024-07-09 | [41112](https://github.com/airbytehq/airbyte/pull/41112) | Update dependencies | +| 0.6.10 | 2024-07-06 | [40878](https://github.com/airbytehq/airbyte/pull/40878) | Update dependencies | +| 0.6.9 | 2024-06-25 | [40428](https://github.com/airbytehq/airbyte/pull/40428) | Update dependencies | +| 0.6.8 | 2024-06-22 | [39951](https://github.com/airbytehq/airbyte/pull/39951) | Update dependencies | +| 0.6.7 | 2024-06-06 | [39286](https://github.com/airbytehq/airbyte/pull/39286) | [autopull] Upgrade base image to v1.2.2 | +| 0.6.6 | 2024-05-24 | [38626](https://github.com/airbytehq/airbyte/pull/38626) | Add step granularity for activity logs stream | +| 0.6.5 | 2024-04-19 | [36644](https://github.com/airbytehq/airbyte/pull/36644) | Updating to 0.80.0 CDK | +| 0.6.4 | 2024-04-12 | [36644](https://github.com/airbytehq/airbyte/pull/36644) | Schema descriptions | +| 0.6.3 | 2024-03-23 | [36414](https://github.com/airbytehq/airbyte/pull/36414) | Fixed `pagination` regression bug for `conversations` stream | +| 0.6.2 | 2024-03-22 | [36277](https://github.com/airbytehq/airbyte/pull/36277) | Fixed the bug for `conversations` stream failed due to `404 - User Not Found`, when the `2.10` API version is used | +| 0.6.1 | 2024-03-18 | [36232](https://github.com/airbytehq/airbyte/pull/36232) | Fixed the bug caused the regression when setting the `Intercom-Version` header, updated the source to use the latest CDK version | +| 0.6.0 | 2024-02-12 | [35176](https://github.com/airbytehq/airbyte/pull/35176) | Update the connector to use `2.10` API version | +| 0.5.1 | 2024-02-12 | [35148](https://github.com/airbytehq/airbyte/pull/35148) | Manage dependencies with Poetry | +| 0.5.0 | 2024-02-09 | [35063](https://github.com/airbytehq/airbyte/pull/35063) | Add missing fields for mutiple streams | +| 0.4.0 | 2024-01-11 | [33882](https://github.com/airbytehq/airbyte/pull/33882) | Add new stream `Activity Logs` | +| 0.3.2 | 2023-12-07 | [33223](https://github.com/airbytehq/airbyte/pull/33223) | Ignore 404 error for `Conversation Parts` | +| 0.3.1 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image | +| 0.3.0 | 2023-05-25 | [29598](https://github.com/airbytehq/airbyte/pull/29598) | Update custom components to make them compatible with latest cdk version, simplify logic, update schemas | +| 0.2.1 | 2023-05-25 | [26571](https://github.com/airbytehq/airbyte/pull/26571) | Remove authSpecification from spec.json in favour of advancedAuth | +| 0.2.0 | 2023-04-05 | [23013](https://github.com/airbytehq/airbyte/pull/23013) | Migrated to Low-code (YAML Frramework) | +| 0.1.33 | 2023-03-20 | [22980](https://github.com/airbytehq/airbyte/pull/22980) | Specified date formatting in specification | +| 0.1.32 | 2023-02-27 | [22095](https://github.com/airbytehq/airbyte/pull/22095) | Extended `Contacts` schema adding `opted_out_subscription_types` property | +| 0.1.31 | 2023-02-17 | [23152](https://github.com/airbytehq/airbyte/pull/23152) | Add `TypeTransformer` to stream `companies` | +| 0.1.30 | 2023-01-27 | [22010](https://github.com/airbytehq/airbyte/pull/22010) | Set `AvailabilityStrategy` for streams explicitly to `None` | +| 0.1.29 | 2022-10-31 | [18681](https://github.com/airbytehq/airbyte/pull/18681) | Define correct version for airbyte-cdk~=0.2 | +| 0.1.28 | 2022-10-20 | [18216](https://github.com/airbytehq/airbyte/pull/18216) | Use airbyte-cdk~=0.2.0 with SQLite caching | +| 0.1.27 | 2022-08-28 | [17326](https://github.com/airbytehq/airbyte/pull/17326) | Migrate to per-stream states | +| 0.1.26 | 2022-08-18 | [16540](https://github.com/airbytehq/airbyte/pull/16540) | Fix JSON schema | +| 0.1.25 | 2022-08-18 | [15681](https://github.com/airbytehq/airbyte/pull/15681) | Update Intercom API to v 2.5 | +| 0.1.24 | 2022-07-21 | [14924](https://github.com/airbytehq/airbyte/pull/14924) | Remove `additionalProperties` field from schemas | +| 0.1.23 | 2022-07-19 | [14830](https://github.com/airbytehq/airbyte/pull/14830) | Added `checkpoint_interval` for Incremental streams | +| 0.1.22 | 2022-07-09 | [14554](https://github.com/airbytehq/airbyte/pull/14554) | Fixed `conversation_parts` stream schema definition | +| 0.1.21 | 2022-07-05 | [14403](https://github.com/airbytehq/airbyte/pull/14403) | Refactored `Conversations`, `Conversation Parts`, `Company Segments` to increase performance | +| 0.1.20 | 2022-06-24 | [14099](https://github.com/airbytehq/airbyte/pull/14099) | Extended `Contacts` stream schema with `sms_consent`,`unsubscribe_from_sms` properties | +| 0.1.19 | 2022-05-25 | [13204](https://github.com/airbytehq/airbyte/pull/13204) | Fixed `conversation_parts` stream schema definition | +| 0.1.18 | 2022-05-04 | [12482](https://github.com/airbytehq/airbyte/pull/12482) | Update input configuration copy | +| 0.1.17 | 2022-04-29 | [12374](https://github.com/airbytehq/airbyte/pull/12374) | Fixed filtering of conversation_parts | +| 0.1.16 | 2022-03-23 | [11206](https://github.com/airbytehq/airbyte/pull/11206) | Added conversation_id field to conversation_part records | +| 0.1.15 | 2022-03-22 | [11176](https://github.com/airbytehq/airbyte/pull/11176) | Correct `check_connection` URL | +| 0.1.14 | 2022-03-16 | [11208](https://github.com/airbytehq/airbyte/pull/11208) | Improve 'conversations' incremental sync speed | +| 0.1.13 | 2022-01-14 | [9513](https://github.com/airbytehq/airbyte/pull/9513) | Added handling of scroll param when it expired | +| 0.1.12 | 2021-12-14 | [8429](https://github.com/airbytehq/airbyte/pull/8429) | Updated fields and descriptions | +| 0.1.11 | 2021-12-13 | [8685](https://github.com/airbytehq/airbyte/pull/8685) | Remove time.sleep for rate limit | +| 0.1.10 | 2021-12-10 | [8637](https://github.com/airbytehq/airbyte/pull/8637) | Fix 'conversations' order and sorting. Correction of the companies stream | +| 0.1.9 | 2021-12-03 | [8395](https://github.com/airbytehq/airbyte/pull/8395) | Fix backoff of 'companies' stream | +| 0.1.8 | 2021-11-09 | [7060](https://github.com/airbytehq/airbyte/pull/7060) | Added oauth support | +| 0.1.7 | 2021-11-08 | [7499](https://github.com/airbytehq/airbyte/pull/7499) | Remove base-python dependencies | +| 0.1.6 | 2021-10-07 | [6879](https://github.com/airbytehq/airbyte/pull/6879) | Corrected pagination for contacts | +| 0.1.5 | 2021-09-28 | [6082](https://github.com/airbytehq/airbyte/pull/6082) | Corrected android\_last\_seen\_at field data type in schemas | +| 0.1.4 | 2021-09-20 | [6087](https://github.com/airbytehq/airbyte/pull/6087) | Corrected updated\_at field data type in schemas | +| 0.1.3 | 2021-09-08 | [5908](https://github.com/airbytehq/airbyte/pull/5908) | Corrected timestamp and arrays in schemas | +| 0.1.2 | 2021-08-19 | [5531](https://github.com/airbytehq/airbyte/pull/5531) | Corrected pagination | +| 0.1.1 | 2021-07-31 | [5123](https://github.com/airbytehq/airbyte/pull/5123) | Corrected rate limit | +| 0.1.0 | 2021-07-19 | [4676](https://github.com/airbytehq/airbyte/pull/4676) | Release Intercom CDK Connector | From cbc0b1b990cd42b83363d5e23ff6dfe078fc2a5a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:10 +0200 Subject: [PATCH 068/808] =?UTF-8?q?=F0=9F=90=99=20source-pennylane:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47536)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pennylane/metadata.yaml | 4 ++-- docs/integrations/sources/pennylane.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-pennylane/metadata.yaml b/airbyte-integrations/connectors/source-pennylane/metadata.yaml index cb843ae6d2ff..febde32d6307 100644 --- a/airbyte-integrations/connectors/source-pennylane/metadata.yaml +++ b/airbyte-integrations/connectors/source-pennylane/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-pennylane connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.2@sha256:efe8a454f740dc6a07252c4a457777e7c81d95f0d2ea8e9d68114d3610e9a602 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: b9e4a306-4e3b-4387-a01d-c00d03d8c28c - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-pennylane githubIssueLabel: source-pennylane icon: icon.svg diff --git a/docs/integrations/sources/pennylane.md b/docs/integrations/sources/pennylane.md index 1e037235e8bc..12aac8154815 100644 --- a/docs/integrations/sources/pennylane.md +++ b/docs/integrations/sources/pennylane.md @@ -27,6 +27,7 @@ | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47536](https://github.com/airbytehq/airbyte/pull/47536) | Update dependencies | | 0.0.1 | 2024-08-21 | | Initial release by natikgadzhi via Connector Builder | From e4576328edd7a5d909ca19deea3a10fd3e660fbd Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:14 +0200 Subject: [PATCH 069/808] =?UTF-8?q?=F0=9F=90=99=20source-ezofficeinventory?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47535)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-ezofficeinventory/metadata.yaml | 4 ++-- docs/integrations/sources/ezofficeinventory.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml b/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml index f38582a2c120..fefde8b7c480 100644 --- a/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml +++ b/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-ezofficeinventory connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 7b6be0f6-4139-42f8-a89e-2ca25560979a - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-ezofficeinventory githubIssueLabel: source-ezofficeinventory icon: icon.svg diff --git a/docs/integrations/sources/ezofficeinventory.md b/docs/integrations/sources/ezofficeinventory.md index 1496f4d68712..448ec5db76cd 100644 --- a/docs/integrations/sources/ezofficeinventory.md +++ b/docs/integrations/sources/ezofficeinventory.md @@ -37,6 +37,7 @@ A manifest only source for EZOfficeInventory. https://ezo.io/ezofficeinventory/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| -| 0.0.1 | 2024-09-15 | [45590](https://github.com/airbytehq/airbyte/pull/45590) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | +| 0.0.2 | 2024-10-28 | [47535](https://github.com/airbytehq/airbyte/pull/47535) | Update dependencies | +| 0.0.1 | 2024-09-15 | [45590](https://github.com/airbytehq/airbyte/pull/45590) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | - \ No newline at end of file + From 94ceec9dabf80548bc8dd0a3ad73abba1f5519bb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:19 +0200 Subject: [PATCH 070/808] =?UTF-8?q?=F0=9F=90=99=20source-invoiced:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47534)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-invoiced/metadata.yaml | 4 ++-- docs/integrations/sources/invoiced.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-invoiced/metadata.yaml b/airbyte-integrations/connectors/source-invoiced/metadata.yaml index 6cb0c8cf4ca3..011e2463f6d3 100644 --- a/airbyte-integrations/connectors/source-invoiced/metadata.yaml +++ b/airbyte-integrations/connectors/source-invoiced/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-invoiced connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 5f43588b-998b-4398-bb15-fb6eb4fc015e - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-invoiced githubIssueLabel: source-invoiced icon: icon.svg diff --git a/docs/integrations/sources/invoiced.md b/docs/integrations/sources/invoiced.md index e3dfecb53b52..88af743faef8 100644 --- a/docs/integrations/sources/invoiced.md +++ b/docs/integrations/sources/invoiced.md @@ -35,6 +35,7 @@ This Airbyte connector for **Invoiced** enables seamless data integration betwee | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47534](https://github.com/airbytehq/airbyte/pull/47534) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 6b67aa40e59d021c2e6707da457e4ae48c28382a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:24 +0200 Subject: [PATCH 071/808] =?UTF-8?q?=F0=9F=90=99=20source-goldcast:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47533)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-goldcast/metadata.yaml | 4 ++-- docs/integrations/sources/goldcast.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-goldcast/metadata.yaml b/airbyte-integrations/connectors/source-goldcast/metadata.yaml index f74d415c39f3..18692a0cb904 100644 --- a/airbyte-integrations/connectors/source-goldcast/metadata.yaml +++ b/airbyte-integrations/connectors/source-goldcast/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.3@sha256:c313c25af0617f5879361e684c956ac25ac1122beaf311c967e5b7a9b45ded79 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: c2c25d04-9bb1-4171-8a7a-bb7cead8add0 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-goldcast githubIssueLabel: source-goldcast icon: goldcast.svg diff --git a/docs/integrations/sources/goldcast.md b/docs/integrations/sources/goldcast.md index 1d5d4107717d..11f11e39afc7 100644 --- a/docs/integrations/sources/goldcast.md +++ b/docs/integrations/sources/goldcast.md @@ -96,6 +96,7 @@ This is a child stream of the events stream indicating webinars that belong to t | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 0.2.1 | 2024-10-28 | [47533](https://github.com/airbytehq/airbyte/pull/47533) | Update dependencies | | 0.2.0 | 2024-08-22 | [44568](https://github.com/airbytehq/airbyte/pull/44568) | Refactor connector to manifest-only format | | 0.1.8 | 2024-08-12 | [43804](https://github.com/airbytehq/airbyte/pull/43804) | Update dependencies | | 0.1.7 | 2024-08-10 | [43522](https://github.com/airbytehq/airbyte/pull/43522) | Update dependencies | From fa1076128ae271b055871b3c5a0c05cd41cb085a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:29 +0200 Subject: [PATCH 072/808] =?UTF-8?q?=F0=9F=90=99=20source-metabase:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47531)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-metabase/metadata.yaml | 4 ++-- docs/integrations/sources/metabase.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-metabase/metadata.yaml b/airbyte-integrations/connectors/source-metabase/metadata.yaml index 9d6c477ca248..69ad256faa5a 100644 --- a/airbyte-integrations/connectors/source-metabase/metadata.yaml +++ b/airbyte-integrations/connectors/source-metabase/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - "*" connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: c7cb421b-942e-4468-99ee-e369bcabaec5 - dockerImageTag: 2.1.1 + dockerImageTag: 2.1.2 dockerRepository: airbyte/source-metabase documentationUrl: https://docs.airbyte.com/integrations/sources/metabase githubIssueLabel: source-metabase diff --git a/docs/integrations/sources/metabase.md b/docs/integrations/sources/metabase.md index 854a5ea714bb..167128b43837 100644 --- a/docs/integrations/sources/metabase.md +++ b/docs/integrations/sources/metabase.md @@ -77,7 +77,8 @@ The Metabase source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------- | -| 2.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 2.1.2 | 2024-10-28 | [47531](https://github.com/airbytehq/airbyte/pull/47531) | Update dependencies | +| 2.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 2.1.0 | 2024-08-15 | [44127](https://github.com/airbytehq/airbyte/pull/44127) | Refactor connector to manifest-only format | | 2.0.13 | 2024-08-12 | [43857](https://github.com/airbytehq/airbyte/pull/43857) | Update dependencies | | 2.0.12 | 2024-08-10 | [43685](https://github.com/airbytehq/airbyte/pull/43685) | Update dependencies | From 4a8e30985009328bf9e39c2dc24753b2fd93583c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:36 +0200 Subject: [PATCH 073/808] =?UTF-8?q?=F0=9F=90=99=20source-pypi:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47528)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pypi/metadata.yaml | 4 ++-- docs/integrations/sources/pypi.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-pypi/metadata.yaml b/airbyte-integrations/connectors/source-pypi/metadata.yaml index 9065d65ba998..34c3ccddef3c 100644 --- a/airbyte-integrations/connectors/source-pypi/metadata.yaml +++ b/airbyte-integrations/connectors/source-pypi/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 88ecd3a8-5f5b-11ed-9b6a-0242ac120002 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-pypi documentationUrl: https://docs.airbyte.com/integrations/sources/pypi githubIssueLabel: source-pypi diff --git a/docs/integrations/sources/pypi.md b/docs/integrations/sources/pypi.md index b728bd2368a5..1027cee7f8b8 100644 --- a/docs/integrations/sources/pypi.md +++ b/docs/integrations/sources/pypi.md @@ -31,7 +31,8 @@ Try not to make a lot of requests (thousands) in a short amount of time (minutes | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47528](https://github.com/airbytehq/airbyte/pull/47528) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44082](https://github.com/airbytehq/airbyte/pull/44082) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-10 | [43643](https://github.com/airbytehq/airbyte/pull/43643) | Update dependencies | | 0.1.14 | 2024-08-03 | [43137](https://github.com/airbytehq/airbyte/pull/43137) | Update dependencies | From 25802b6c4e6bc0eec94de09f40913366af42d2da Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:39 +0200 Subject: [PATCH 074/808] =?UTF-8?q?=F0=9F=90=99=20source-workflowmax:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47527)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-workflowmax/metadata.yaml | 4 ++-- docs/integrations/sources/workflowmax.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-workflowmax/metadata.yaml b/airbyte-integrations/connectors/source-workflowmax/metadata.yaml index 18395f04071c..aa3a1dc2dfa3 100644 --- a/airbyte-integrations/connectors/source-workflowmax/metadata.yaml +++ b/airbyte-integrations/connectors/source-workflowmax/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-workflowmax connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: a3eb6410-f3c3-48ba-8b27-29a56de1e9db - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-workflowmax githubIssueLabel: source-workflowmax icon: icon.svg diff --git a/docs/integrations/sources/workflowmax.md b/docs/integrations/sources/workflowmax.md index 3d12baa3de93..ab28ec1a87fd 100644 --- a/docs/integrations/sources/workflowmax.md +++ b/docs/integrations/sources/workflowmax.md @@ -60,6 +60,7 @@ Then authorize your source with the required information. | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47527](https://github.com/airbytehq/airbyte/pull/47527) | Update dependencies | | 0.0.1 | 2024-10-13 | [46866](https://github.com/airbytehq/airbyte/pull/46866) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 72d055c10c0c3ba7a8cc9211a7e071b8ab56862f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:43 +0200 Subject: [PATCH 075/808] =?UTF-8?q?=F0=9F=90=99=20source-coassemble:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47526)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-coassemble/metadata.yaml | 4 ++-- docs/integrations/sources/coassemble.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-coassemble/metadata.yaml b/airbyte-integrations/connectors/source-coassemble/metadata.yaml index bdb9a83e6b07..9fb55b2b49c7 100644 --- a/airbyte-integrations/connectors/source-coassemble/metadata.yaml +++ b/airbyte-integrations/connectors/source-coassemble/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-coassemble connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.7.3@sha256:4c4a567211fbcdf42805f261020bf5be46454bfeba781a92d30fe414ef964212 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 85999b05-fae0-4312-a3ae-f4987f50d434 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-coassemble githubIssueLabel: source-coassemble icon: icon.svg diff --git a/docs/integrations/sources/coassemble.md b/docs/integrations/sources/coassemble.md index 35f714776799..e7744cd47649 100644 --- a/docs/integrations/sources/coassemble.md +++ b/docs/integrations/sources/coassemble.md @@ -26,6 +26,7 @@ See the [Coassemble API docs](https://developers.coassemble.com/get-started) for | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47526](https://github.com/airbytehq/airbyte/pull/47526) | Update dependencies | | 0.0.1 | 2024-09-19 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 97547cad297e6d5d54ec579ea15b8e6bec0d1bc7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:49 +0200 Subject: [PATCH 076/808] =?UTF-8?q?=F0=9F=90=99=20source-recreation:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47524)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recreation/metadata.yaml | 4 ++-- docs/integrations/sources/recreation.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-recreation/metadata.yaml b/airbyte-integrations/connectors/source-recreation/metadata.yaml index ef0fbffd1ec3..4d03460b882f 100644 --- a/airbyte-integrations/connectors/source-recreation/metadata.yaml +++ b/airbyte-integrations/connectors/source-recreation/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 25d7535d-91e0-466a-aa7f-af81578be277 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-recreation documentationUrl: https://docs.airbyte.com/integrations/sources/recreation githubIssueLabel: source-recreation diff --git a/docs/integrations/sources/recreation.md b/docs/integrations/sources/recreation.md index 0883239936c9..972822816d5c 100644 --- a/docs/integrations/sources/recreation.md +++ b/docs/integrations/sources/recreation.md @@ -60,7 +60,8 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47524](https://github.com/airbytehq/airbyte/pull/47524) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44080](https://github.com/airbytehq/airbyte/pull/44080) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-10 | [43621](https://github.com/airbytehq/airbyte/pull/43621) | Update dependencies | | 0.1.14 | 2024-08-03 | [43109](https://github.com/airbytehq/airbyte/pull/43109) | Update dependencies | From a926480185e77f748356d7ad5c92275e05e50679 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:53 +0200 Subject: [PATCH 077/808] =?UTF-8?q?=F0=9F=90=99=20source-recruitee:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47522)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recruitee/metadata.yaml | 4 ++-- docs/integrations/sources/recruitee.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-recruitee/metadata.yaml b/airbyte-integrations/connectors/source-recruitee/metadata.yaml index a3d1af00fd39..e64e1e43d77b 100644 --- a/airbyte-integrations/connectors/source-recruitee/metadata.yaml +++ b/airbyte-integrations/connectors/source-recruitee/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3b046ac7-d8d3-4eb3-b122-f96b2a16d8a8 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-recruitee githubIssueLabel: source-recruitee icon: recruitee.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/recruitee.md b/docs/integrations/sources/recruitee.md index 0f32ba19af94..8616a066e15c 100644 --- a/docs/integrations/sources/recruitee.md +++ b/docs/integrations/sources/recruitee.md @@ -53,7 +53,8 @@ The Recruitee source connector supports the following [sync modes](https://docs. | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :-------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47522](https://github.com/airbytehq/airbyte/pull/47522) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44079](https://github.com/airbytehq/airbyte/pull/44079) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43810](https://github.com/airbytehq/airbyte/pull/43810) | Update dependencies | | 0.1.13 | 2024-08-10 | [43508](https://github.com/airbytehq/airbyte/pull/43508) | Update dependencies | From a0adc1a92eb98e38f041672a1e7faa606a35aeed Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:10:57 +0200 Subject: [PATCH 078/808] =?UTF-8?q?=F0=9F=90=99=20source-eventbrite:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47521)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-eventbrite/metadata.yaml | 4 ++-- docs/integrations/sources/eventbrite.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-eventbrite/metadata.yaml b/airbyte-integrations/connectors/source-eventbrite/metadata.yaml index 038093d20e93..e633e1291203 100644 --- a/airbyte-integrations/connectors/source-eventbrite/metadata.yaml +++ b/airbyte-integrations/connectors/source-eventbrite/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-eventbrite connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 6748b22d-3d27-4907-b8c0-04f6c8ef71b8 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-eventbrite githubIssueLabel: source-eventbrite icon: icon.svg diff --git a/docs/integrations/sources/eventbrite.md b/docs/integrations/sources/eventbrite.md index c2542eef49d9..ab2c718eb0f6 100644 --- a/docs/integrations/sources/eventbrite.md +++ b/docs/integrations/sources/eventbrite.md @@ -37,6 +37,7 @@ To get a Private Token: | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47521](https://github.com/airbytehq/airbyte/pull/47521) | Update dependencies | | 0.0.1 | 2024-09-21 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From cfe224e0663edb9398d0721186478e2c462b9b51 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:11:03 +0200 Subject: [PATCH 079/808] =?UTF-8?q?=F0=9F=90=99=20source-northpass-lms:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-28]=20(#47520)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-northpass-lms/metadata.yaml | 4 ++-- docs/integrations/sources/northpass-lms.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml b/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml index 528afd3d27a3..252a7114178c 100644 --- a/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml +++ b/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: dd4d317e-7537-456c-b6ba-264b17ce6daa - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-northpass-lms githubIssueLabel: source-northpass-lms icon: icon.svg diff --git a/docs/integrations/sources/northpass-lms.md b/docs/integrations/sources/northpass-lms.md index ba8816c12c07..605fc8b662fd 100644 --- a/docs/integrations/sources/northpass-lms.md +++ b/docs/integrations/sources/northpass-lms.md @@ -81,6 +81,7 @@ Link to Northpass LMS API documentation [here](https://developers.northpass.com/ | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 0.2.1 | 2024-10-28 | [47520](https://github.com/airbytehq/airbyte/pull/47520) | Update dependencies | | 0.2.0 | 2024-08-26 | [44771](https://github.com/airbytehq/airbyte/pull/44771) | Refactor connector to manifest-only format | | 0.1.4 | 2024-08-24 | [44684](https://github.com/airbytehq/airbyte/pull/44684) | Update dependencies | | 0.1.3 | 2024-08-17 | [44231](https://github.com/airbytehq/airbyte/pull/44231) | Update dependencies | From e4057129d69fb0fa2d7b11d8338dc0c2dd22f57e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:13:22 +0200 Subject: [PATCH 080/808] =?UTF-8?q?=F0=9F=90=99=20source-paystack:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47518)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-paystack/metadata.yaml | 4 ++-- docs/integrations/sources/paystack.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-paystack/metadata.yaml b/airbyte-integrations/connectors/source-paystack/metadata.yaml index 1de3203c54b4..dc3a7d427824 100644 --- a/airbyte-integrations/connectors/source-paystack/metadata.yaml +++ b/airbyte-integrations/connectors/source-paystack/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: 193bdcb8-1dd9-48d1-aade-91cadfd74f9b - dockerImageTag: 1.1.1 + dockerImageTag: 1.1.2 dockerRepository: airbyte/source-paystack githubIssueLabel: source-paystack icon: paystack.svg @@ -51,5 +51,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/paystack.md b/docs/integrations/sources/paystack.md index a3cc9d278985..17c906618eb2 100644 --- a/docs/integrations/sources/paystack.md +++ b/docs/integrations/sources/paystack.md @@ -68,7 +68,8 @@ The Paystack connector should not run into Paystack API limitations under normal | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------- | -| 1.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 1.1.2 | 2024-10-28 | [47518](https://github.com/airbytehq/airbyte/pull/47518) | Update dependencies | +| 1.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.1.0 | 2024-08-15 | [44101](https://github.com/airbytehq/airbyte/pull/44101) | Refactor connector to manifest-only format | | 1.0.11 | 2024-08-12 | [43809](https://github.com/airbytehq/airbyte/pull/43809) | Update dependencies | | 1.0.10 | 2024-08-10 | [43464](https://github.com/airbytehq/airbyte/pull/43464) | Update dependencies | From eb5264642c7b1c2e57921475f18686e9480eef3a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:13:25 +0200 Subject: [PATCH 081/808] =?UTF-8?q?=F0=9F=90=99=20source-coda:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47517)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-coda/metadata.yaml | 4 ++-- docs/integrations/sources/coda.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-coda/metadata.yaml b/airbyte-integrations/connectors/source-coda/metadata.yaml index 10ce1342cb3d..efe173f55a0c 100644 --- a/airbyte-integrations/connectors/source-coda/metadata.yaml +++ b/airbyte-integrations/connectors/source-coda/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - https://coda.io/ connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 27f910fd-f832-4b2e-bcfd-6ab342e434d8 - dockerImageTag: 1.3.1 + dockerImageTag: 1.3.2 dockerRepository: airbyte/source-coda documentationUrl: https://docs.airbyte.com/integrations/sources/coda githubIssueLabel: source-coda diff --git a/docs/integrations/sources/coda.md b/docs/integrations/sources/coda.md index 893ac068ade8..9436d306c929 100644 --- a/docs/integrations/sources/coda.md +++ b/docs/integrations/sources/coda.md @@ -67,7 +67,8 @@ The Coda source connector supports the following [sync modes](https://docs.airby | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:------------------------------------------------------------------------------------------------------------| -| 1.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 1.3.2 | 2024-10-28 | [47517](https://github.com/airbytehq/airbyte/pull/47517) | Update dependencies | +| 1.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.3.0 | 2024-08-15 | [44165](https://github.com/airbytehq/airbyte/pull/44165) | Refactor connector to manifest-only format | | 1.2.13 | 2024-08-12 | [43890](https://github.com/airbytehq/airbyte/pull/43890) | Update dependencies | | 1.2.12 | 2024-08-10 | [43516](https://github.com/airbytehq/airbyte/pull/43516) | Update dependencies | From e868301f4cb5621a9a78e70ad91e35fc36872b7f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:13:29 +0200 Subject: [PATCH 082/808] =?UTF-8?q?=F0=9F=90=99=20source-bitly:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47516)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-bitly/metadata.yaml | 4 ++-- docs/integrations/sources/bitly.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-bitly/metadata.yaml b/airbyte-integrations/connectors/source-bitly/metadata.yaml index 6b77eed75695..b8db33dcd4f6 100644 --- a/airbyte-integrations/connectors/source-bitly/metadata.yaml +++ b/airbyte-integrations/connectors/source-bitly/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-bitly connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 3631f862-646b-4abf-abde-dc37acf3847c - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-bitly githubIssueLabel: source-bitly icon: icon.svg diff --git a/docs/integrations/sources/bitly.md b/docs/integrations/sources/bitly.md index dc1f9c0759a8..b2429ab2a0de 100644 --- a/docs/integrations/sources/bitly.md +++ b/docs/integrations/sources/bitly.md @@ -33,6 +33,7 @@ Generate API Key [here](https://app.bitly.com/settings/api/) or go to Settings | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47516](https://github.com/airbytehq/airbyte/pull/47516) | Update dependencies | | 0.0.1 | 2024-09-01 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 04f9f267fb3d50e16856be9353a4c352d61a639b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:13:34 +0200 Subject: [PATCH 083/808] =?UTF-8?q?=F0=9F=90=99=20source-sigma-computing:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47514)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sigma-computing/metadata.yaml | 4 ++-- docs/integrations/sources/sigma-computing.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sigma-computing/metadata.yaml b/airbyte-integrations/connectors/source-sigma-computing/metadata.yaml index 95ba91a2e69f..4434a1c6d40f 100644 --- a/airbyte-integrations/connectors/source-sigma-computing/metadata.yaml +++ b/airbyte-integrations/connectors/source-sigma-computing/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-sigma-computing connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 40fed53b-3a55-4ce3-a25f-93af5b5379b0 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-sigma-computing githubIssueLabel: source-sigma-computing icon: icon.svg diff --git a/docs/integrations/sources/sigma-computing.md b/docs/integrations/sources/sigma-computing.md index 2496d231c6a5..6655ebc0416e 100644 --- a/docs/integrations/sources/sigma-computing.md +++ b/docs/integrations/sources/sigma-computing.md @@ -38,6 +38,7 @@ Next, head over to Developer Access and click on create. This will generate your | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47514](https://github.com/airbytehq/airbyte/pull/47514) | Update dependencies | | 0.0.1 | 2024-10-13 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From cbc4eee63047eba224468caeb8c07896f08ea42e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:13:37 +0200 Subject: [PATCH 084/808] =?UTF-8?q?=F0=9F=90=99=20source-factorial:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47512)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-factorial/metadata.yaml | 4 ++-- docs/integrations/sources/factorial.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-factorial/metadata.yaml b/airbyte-integrations/connectors/source-factorial/metadata.yaml index 95f6adc554ae..cb6bf148206e 100644 --- a/airbyte-integrations/connectors/source-factorial/metadata.yaml +++ b/airbyte-integrations/connectors/source-factorial/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-factorial connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 02e8708f-3270-4f13-8b67-257b8ef439f0 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-factorial githubIssueLabel: source-factorial icon: icon.svg diff --git a/docs/integrations/sources/factorial.md b/docs/integrations/sources/factorial.md index cea320a9b0a8..fe57a34cd2b9 100644 --- a/docs/integrations/sources/factorial.md +++ b/docs/integrations/sources/factorial.md @@ -53,6 +53,7 @@ Visit `https://apidoc.factorialhr.com/reference` for API documentation | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47512](https://github.com/airbytehq/airbyte/pull/47512) | Update dependencies | | 0.0.1 | 2024-09-24 | [45882](https://github.com/airbytehq/airbyte/pull/45882) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From e7d2bb8624003f53dc03510d8faf133dc8b078ec Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:13:43 +0200 Subject: [PATCH 085/808] =?UTF-8?q?=F0=9F=90=99=20source-hubplanner:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47511)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-hubplanner/metadata.yaml | 4 ++-- docs/integrations/sources/hubplanner.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-hubplanner/metadata.yaml b/airbyte-integrations/connectors/source-hubplanner/metadata.yaml index 27cff372955b..41be60caf637 100644 --- a/airbyte-integrations/connectors/source-hubplanner/metadata.yaml +++ b/airbyte-integrations/connectors/source-hubplanner/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8097ceb9-383f-42f6-9f92-d3fd4bcc7689 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-hubplanner githubIssueLabel: source-hubplanner icon: hubplanner.svg @@ -43,5 +43,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.3@sha256:c313c25af0617f5879361e684c956ac25ac1122beaf311c967e5b7a9b45ded79 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/hubplanner.md b/docs/integrations/sources/hubplanner.md index fc5617e4fe5c..562c0dea9337 100644 --- a/docs/integrations/sources/hubplanner.md +++ b/docs/integrations/sources/hubplanner.md @@ -44,6 +44,7 @@ The Okta source connector supports the following [sync modes](https://docs.airby | Version | Date | Pull Request | Subject | | :------ | :--- | :----------- | :------ | +| 0.3.1 | 2024-10-28 | [47511](https://github.com/airbytehq/airbyte/pull/47511) | Update dependencies | | 0.3.0 | 2024-08-22 | [44569](https://github.com/airbytehq/airbyte/pull/44569) | Refactor connector to manifest-only format | | 0.2.12 | 2024-08-17 | [43903](https://github.com/airbytehq/airbyte/pull/43903) | Update dependencies | | 0.2.11 | 2024-08-10 | [43511](https://github.com/airbytehq/airbyte/pull/43511) | Update dependencies | From b3e8c76e777acacc80beff2f3880b7883503b623 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:13:51 +0200 Subject: [PATCH 086/808] =?UTF-8?q?=F0=9F=90=99=20source-everhour:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47508)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-everhour/metadata.yaml | 4 ++-- docs/integrations/sources/everhour.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-everhour/metadata.yaml b/airbyte-integrations/connectors/source-everhour/metadata.yaml index bc4483d1efff..bbcd3b2325ce 100644 --- a/airbyte-integrations/connectors/source-everhour/metadata.yaml +++ b/airbyte-integrations/connectors/source-everhour/metadata.yaml @@ -18,11 +18,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 6babfc42-c734-4ef6-a817-6eca15f0f9b7 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-everhour githubIssueLabel: source-everhour icon: everhour.svg diff --git a/docs/integrations/sources/everhour.md b/docs/integrations/sources/everhour.md index ae3e27dd176b..a60d3a36e2e4 100644 --- a/docs/integrations/sources/everhour.md +++ b/docs/integrations/sources/everhour.md @@ -28,7 +28,8 @@ This project supports the following streams: | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :-------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47508](https://github.com/airbytehq/airbyte/pull/47508) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44151](https://github.com/airbytehq/airbyte/pull/44151) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-10 | [43561](https://github.com/airbytehq/airbyte/pull/43561) | Update dependencies | | 0.1.12 | 2024-08-03 | [43205](https://github.com/airbytehq/airbyte/pull/43205) | Update dependencies | From 15b44016f8dba640c22853522aa051e05ea7a7ec Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:13:54 +0200 Subject: [PATCH 087/808] =?UTF-8?q?=F0=9F=90=99=20source-smartengage:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47507)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-smartengage/metadata.yaml | 4 ++-- docs/integrations/sources/smartengage.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-smartengage/metadata.yaml b/airbyte-integrations/connectors/source-smartengage/metadata.yaml index 7da0f7705c2e..873140360d8f 100644 --- a/airbyte-integrations/connectors/source-smartengage/metadata.yaml +++ b/airbyte-integrations/connectors/source-smartengage/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 21cc4a17-a011-4485-8a3e-e2341a91ab9f - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-smartengage documentationUrl: https://docs.airbyte.com/integrations/sources/smartengage githubIssueLabel: source-smartengage diff --git a/docs/integrations/sources/smartengage.md b/docs/integrations/sources/smartengage.md index 8f209d5556bd..39706989fddd 100644 --- a/docs/integrations/sources/smartengage.md +++ b/docs/integrations/sources/smartengage.md @@ -31,7 +31,8 @@ This source can sync data from the [SmartEngage API](https://smartengage.com/doc | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47507](https://github.com/airbytehq/airbyte/pull/47507) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44064](https://github.com/airbytehq/airbyte/pull/44064) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-10 | [43523](https://github.com/airbytehq/airbyte/pull/43523) | Update dependencies | | 0.1.14 | 2024-08-03 | [43294](https://github.com/airbytehq/airbyte/pull/43294) | Update dependencies | From c4db68d36f76290b2a77691bc2ddf9b820f43262 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:13:58 +0200 Subject: [PATCH 088/808] =?UTF-8?q?=F0=9F=90=99=20source-survey-sparrow:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47506)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-survey-sparrow/metadata.yaml | 4 ++-- docs/integrations/sources/survey-sparrow.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-survey-sparrow/metadata.yaml b/airbyte-integrations/connectors/source-survey-sparrow/metadata.yaml index 3944569a5685..9a8c6edac6cf 100644 --- a/airbyte-integrations/connectors/source-survey-sparrow/metadata.yaml +++ b/airbyte-integrations/connectors/source-survey-sparrow/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 4a4d887b-0f2d-4b33-ab7f-9b01b9072804 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-survey-sparrow documentationUrl: https://docs.airbyte.com/integrations/sources/survey-sparrow githubIssueLabel: source-survey-sparrow diff --git a/docs/integrations/sources/survey-sparrow.md b/docs/integrations/sources/survey-sparrow.md index ef4ef31bb3d6..6e7e11f4da44 100644 --- a/docs/integrations/sources/survey-sparrow.md +++ b/docs/integrations/sources/survey-sparrow.md @@ -49,7 +49,8 @@ In order to get access token, follow these steps: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47506](https://github.com/airbytehq/airbyte/pull/47506) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-14 | [44059](https://github.com/airbytehq/airbyte/pull/44059) | Refactor connector to manifest-only format | | 0.2.14 | 2024-08-10 | [43652](https://github.com/airbytehq/airbyte/pull/43652) | Update dependencies | | 0.2.13 | 2024-08-03 | [43147](https://github.com/airbytehq/airbyte/pull/43147) | Update dependencies | From 9d75d198034c474e40ac0b8f9a46c6c607533c40 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:14:01 +0200 Subject: [PATCH 089/808] =?UTF-8?q?=F0=9F=90=99=20destination-milvus:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47505)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-milvus/metadata.yaml | 2 +- .../connectors/destination-milvus/poetry.lock | 8 ++++---- .../connectors/destination-milvus/pyproject.toml | 2 +- docs/integrations/destinations/milvus.md | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/destination-milvus/metadata.yaml b/airbyte-integrations/connectors/destination-milvus/metadata.yaml index 57e95dd8c919..9a027d75dc9c 100644 --- a/airbyte-integrations/connectors/destination-milvus/metadata.yaml +++ b/airbyte-integrations/connectors/destination-milvus/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 65de8962-48c9-11ee-be56-0242ac120002 - dockerImageTag: 0.0.36 + dockerImageTag: 0.0.37 dockerRepository: airbyte/destination-milvus githubIssueLabel: destination-milvus icon: milvus.svg diff --git a/airbyte-integrations/connectors/destination-milvus/poetry.lock b/airbyte-integrations/connectors/destination-milvus/poetry.lock index 1574bfb86a42..e5d804b0c5cf 100644 --- a/airbyte-integrations/connectors/destination-milvus/poetry.lock +++ b/airbyte-integrations/connectors/destination-milvus/poetry.lock @@ -623,13 +623,13 @@ tests = ["dj-database-url", "dj-email-url", "django-cache-url", "pytest"] [[package]] name = "et-xmlfile" -version = "1.1.0" +version = "2.0.0" description = "An implementation of lxml.xmlfile for the standard library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, + {file = "et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa"}, + {file = "et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54"}, ] [[package]] diff --git a/airbyte-integrations/connectors/destination-milvus/pyproject.toml b/airbyte-integrations/connectors/destination-milvus/pyproject.toml index ce6de222645a..aa4d1cb5601b 100644 --- a/airbyte-integrations/connectors/destination-milvus/pyproject.toml +++ b/airbyte-integrations/connectors/destination-milvus/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-milvus" -version = "0.0.36" +version = "0.0.37" description = "Airbyte destination implementation for Milvus." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/milvus.md b/docs/integrations/destinations/milvus.md index 872c28ee9909..95da6410152b 100644 --- a/docs/integrations/destinations/milvus.md +++ b/docs/integrations/destinations/milvus.md @@ -116,6 +116,7 @@ vector_store.similarity_search("test") | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.0.37 | 2024-10-28 | [47505](https://github.com/airbytehq/airbyte/pull/47505) | Update dependencies | | 0.0.36 | 2024-10-23 | [47080](https://github.com/airbytehq/airbyte/pull/47080) | Update dependencies | | 0.0.35 | 2024-10-05 | [46483](https://github.com/airbytehq/airbyte/pull/46483) | Update dependencies | | 0.0.34 | 2024-09-28 | [46165](https://github.com/airbytehq/airbyte/pull/46165) | Update dependencies | From 4332dd6e7c65dc15ff7bd9f7a1b9cc11022a2e26 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:14:05 +0200 Subject: [PATCH 090/808] =?UTF-8?q?=F0=9F=90=99=20source-timely:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47503)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-timely/metadata.yaml | 4 +- docs/integrations/sources/timely.md | 41 ++++++++++--------- 2 files changed, 23 insertions(+), 22 deletions(-) diff --git a/airbyte-integrations/connectors/source-timely/metadata.yaml b/airbyte-integrations/connectors/source-timely/metadata.yaml index f4e1fc4b1048..e7702ec22fb6 100644 --- a/airbyte-integrations/connectors/source-timely/metadata.yaml +++ b/airbyte-integrations/connectors/source-timely/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.timelyapp.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: bc617b5f-1b9e-4a2d-bebe-782fd454a771 - dockerImageTag: 0.4.1 + dockerImageTag: 0.4.2 dockerRepository: airbyte/source-timely documentationUrl: https://docs.airbyte.com/integrations/sources/timely githubIssueLabel: source-timely diff --git a/docs/integrations/sources/timely.md b/docs/integrations/sources/timely.md index 3bf11c4790ea..640e4812e684 100644 --- a/docs/integrations/sources/timely.md +++ b/docs/integrations/sources/timely.md @@ -37,25 +37,26 @@ The Timely source connector supports the following [sync modes](https://docs.air | Version | Date | Pull Request | Subject | | :------ | :-------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | -| 0.4.0 | 2024-08-07 | [43368](https://github.com/airbytehq/airbyte/pull/43368) | Refactor connector to manifest-only format | -| 0.3.15 | 2024-08-03 | [43226](https://github.com/airbytehq/airbyte/pull/43226) | Update dependencies | -| 0.3.14 | 2024-07-27 | [42635](https://github.com/airbytehq/airbyte/pull/42635) | Update dependencies | -| 0.3.13 | 2024-07-20 | [42252](https://github.com/airbytehq/airbyte/pull/42252) | Update dependencies | -| 0.3.12 | 2024-07-13 | [41921](https://github.com/airbytehq/airbyte/pull/41921) | Update dependencies | -| 0.3.11 | 2024-07-10 | [41348](https://github.com/airbytehq/airbyte/pull/41348) | Update dependencies | -| 0.3.10 | 2024-07-09 | [41268](https://github.com/airbytehq/airbyte/pull/41268) | Update dependencies | -| 0.3.9 | 2024-07-06 | [40773](https://github.com/airbytehq/airbyte/pull/40773) | Update dependencies | -| 0.3.8 | 2024-06-26 | [40510](https://github.com/airbytehq/airbyte/pull/40510) | Update dependencies | -| 0.3.7 | 2024-06-22 | [39996](https://github.com/airbytehq/airbyte/pull/39996) | Update dependencies | -| 0.3.6 | 2024-06-04 | [39054](https://github.com/airbytehq/airbyte/pull/39054) | [autopull] Upgrade base image to v1.2.1 | -| 0.3.5 | 2024-05-20 | [38228](https://github.com/airbytehq/airbyte/pull/38228) | Make compatible with builder | -| 0.3.4 | 2024-04-19 | [37270](https://github.com/airbytehq/airbyte/pull/37270) | Updating to 0.80.0 CDK | -| 0.3.3 | 2024-04-18 | [37270](https://github.com/airbytehq/airbyte/pull/37270) | Manage dependencies with Poetry. | -| 0.3.2 | 2024-04-15 | [37270](https://github.com/airbytehq/airbyte/pull/37270) | Base image migration: remove Dockerfile and use the python-connector-base image | -| 0.3.1 | 2024-04-12 | [37270](https://github.com/airbytehq/airbyte/pull/37270) | schema descriptions | -| 0.3.0 | 2023-10-25 | [31002](https://github.com/airbytehq/airbyte/pull/31002) | Migrate to low-code framework | -| 0.2.0 | 2023-10-23 | [31745](https://github.com/airbytehq/airbyte/pull/31745) | Fix schemas | -| 0.1.0 | 2022-06-22 | [13617](https://github.com/airbytehq/airbyte/pull/13617) | Initial release | +| 0.4.2 | 2024-10-28 | [47503](https://github.com/airbytehq/airbyte/pull/47503) | Update dependencies | +| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.4.0 | 2024-08-07 | [43368](https://github.com/airbytehq/airbyte/pull/43368) | Refactor connector to manifest-only format | +| 0.3.15 | 2024-08-03 | [43226](https://github.com/airbytehq/airbyte/pull/43226) | Update dependencies | +| 0.3.14 | 2024-07-27 | [42635](https://github.com/airbytehq/airbyte/pull/42635) | Update dependencies | +| 0.3.13 | 2024-07-20 | [42252](https://github.com/airbytehq/airbyte/pull/42252) | Update dependencies | +| 0.3.12 | 2024-07-13 | [41921](https://github.com/airbytehq/airbyte/pull/41921) | Update dependencies | +| 0.3.11 | 2024-07-10 | [41348](https://github.com/airbytehq/airbyte/pull/41348) | Update dependencies | +| 0.3.10 | 2024-07-09 | [41268](https://github.com/airbytehq/airbyte/pull/41268) | Update dependencies | +| 0.3.9 | 2024-07-06 | [40773](https://github.com/airbytehq/airbyte/pull/40773) | Update dependencies | +| 0.3.8 | 2024-06-26 | [40510](https://github.com/airbytehq/airbyte/pull/40510) | Update dependencies | +| 0.3.7 | 2024-06-22 | [39996](https://github.com/airbytehq/airbyte/pull/39996) | Update dependencies | +| 0.3.6 | 2024-06-04 | [39054](https://github.com/airbytehq/airbyte/pull/39054) | [autopull] Upgrade base image to v1.2.1 | +| 0.3.5 | 2024-05-20 | [38228](https://github.com/airbytehq/airbyte/pull/38228) | Make compatible with builder | +| 0.3.4 | 2024-04-19 | [37270](https://github.com/airbytehq/airbyte/pull/37270) | Updating to 0.80.0 CDK | +| 0.3.3 | 2024-04-18 | [37270](https://github.com/airbytehq/airbyte/pull/37270) | Manage dependencies with Poetry. | +| 0.3.2 | 2024-04-15 | [37270](https://github.com/airbytehq/airbyte/pull/37270) | Base image migration: remove Dockerfile and use the python-connector-base image | +| 0.3.1 | 2024-04-12 | [37270](https://github.com/airbytehq/airbyte/pull/37270) | schema descriptions | +| 0.3.0 | 2023-10-25 | [31002](https://github.com/airbytehq/airbyte/pull/31002) | Migrate to low-code framework | +| 0.2.0 | 2023-10-23 | [31745](https://github.com/airbytehq/airbyte/pull/31745) | Fix schemas | +| 0.1.0 | 2022-06-22 | [13617](https://github.com/airbytehq/airbyte/pull/13617) | Initial release | From 9efffb4be6da710d3f2357d8d72aa8d9380a46fd Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:14:30 +0200 Subject: [PATCH 091/808] =?UTF-8?q?=F0=9F=90=99=20source-bing-ads:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47093)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-bing-ads/metadata.yaml | 2 +- .../connectors/source-bing-ads/poetry.lock | 256 +++++++++--------- .../connectors/source-bing-ads/pyproject.toml | 2 +- docs/integrations/sources/bing-ads.md | 141 +++++----- 4 files changed, 202 insertions(+), 199 deletions(-) diff --git a/airbyte-integrations/connectors/source-bing-ads/metadata.yaml b/airbyte-integrations/connectors/source-bing-ads/metadata.yaml index 5ef08a0e1729..fd3f3e40aa22 100644 --- a/airbyte-integrations/connectors/source-bing-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-bing-ads/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 47f25999-dd5e-4636-8c39-e7cea2453331 - dockerImageTag: 2.8.0 + dockerImageTag: 2.8.1 dockerRepository: airbyte/source-bing-ads documentationUrl: https://docs.airbyte.com/integrations/sources/bing-ads erdUrl: https://dbdocs.io/airbyteio/source-bing-ads?view=relationships diff --git a/airbyte-integrations/connectors/source-bing-ads/poetry.lock b/airbyte-integrations/connectors/source-bing-ads/poetry.lock index 6dd8bb885a54..9b9ef2076cbb 100644 --- a/airbyte-integrations/connectors/source-bing-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-bing-ads/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "5.13.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.13.0-py3-none-any.whl", hash = "sha256:b26c99631e797c0bdb8373a6a05c81bf62b7d7397ca41b6ee05702d1013bd389"}, - {file = "airbyte_cdk-5.13.0.tar.gz", hash = "sha256:ab5799a238366dff61a8cded347b02deb63818513af4e61e2d1a51608a2280df"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -43,6 +43,7 @@ xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -767,13 +768,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.136" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.136-py3-none-any.whl", hash = "sha256:cad2215eb7a754ee259878e19c558f4f8d3795aa1b699f087d4500e640f80d0a"}, - {file = "langsmith-0.1.136.tar.gz", hash = "sha256:5c0de01a313db70dd9a85845c0f416a69b5b653b3e98ba413d7d41e8851315b1"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -785,72 +786,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -942,68 +943,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-bing-ads/pyproject.toml b/airbyte-integrations/connectors/source-bing-ads/pyproject.toml index 4510de32e5b9..45fc915f030b 100644 --- a/airbyte-integrations/connectors/source-bing-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-bing-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.8.0" +version = "2.8.1" name = "source-bing-ads" description = "Source implementation for Bing Ads." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/bing-ads.md b/docs/integrations/sources/bing-ads.md index 6e71331bd8d8..603973002d5a 100644 --- a/docs/integrations/sources/bing-ads.md +++ b/docs/integrations/sources/bing-ads.md @@ -261,76 +261,77 @@ The Bing Ads API limits the number of requests for all Microsoft Advertising cli | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------| -| 2.8.0 | 2024-10-21 | [46991](https://github.com/airbytehq/airbyte/pull/46991) | Update CDK to v5 | -| 2.7.9 | 2024-10-12 | [46847](https://github.com/airbytehq/airbyte/pull/46847) | Update dependencies | -| 2.7.8 | 2024-10-05 | [46504](https://github.com/airbytehq/airbyte/pull/46504) | Update dependencies | -| 2.7.7 | 2024-09-28 | [46151](https://github.com/airbytehq/airbyte/pull/46151) | Update dependencies | -| 2.7.6 | 2024-09-21 | [45512](https://github.com/airbytehq/airbyte/pull/45512) | Update dependencies | -| 2.7.5 | 2024-09-07 | [45246](https://github.com/airbytehq/airbyte/pull/45246) | Update dependencies | -| 2.7.4 | 2024-08-31 | [44276](https://github.com/airbytehq/airbyte/pull/44276) | Update dependencies | -| 2.7.3 | 2024-08-12 | [43742](https://github.com/airbytehq/airbyte/pull/43742) | Update dependencies | -| 2.7.2 | 2024-08-10 | [43591](https://github.com/airbytehq/airbyte/pull/43591) | Update dependencies | -| 2.7.1 | 2024-08-03 | [43245](https://github.com/airbytehq/airbyte/pull/43245) | Update dependencies | -| 2.7.0 | 2024-07-31 | [42548](https://github.com/airbytehq/airbyte/pull/42548) | Migrate to CDK v4.1.0 | -| 2.6.12 | 2024-07-27 | [42812](https://github.com/airbytehq/airbyte/pull/42812) | Update dependencies | -| 2.6.11 | 2024-07-20 | [42360](https://github.com/airbytehq/airbyte/pull/42360) | Update dependencies | -| 2.6.10 | 2024-07-13 | [41875](https://github.com/airbytehq/airbyte/pull/41875) | Update dependencies | -| 2.6.9 | 2024-07-10 | [41383](https://github.com/airbytehq/airbyte/pull/41383) | Update dependencies | -| 2.6.8 | 2024-07-09 | [41314](https://github.com/airbytehq/airbyte/pull/41314) | Update dependencies | -| 2.6.7 | 2024-07-06 | [40906](https://github.com/airbytehq/airbyte/pull/40906) | Update dependencies | -| 2.6.6 | 2024-07-05 | [34966](https://github.com/airbytehq/airbyte/pull/34966) | Add support for Performance Max campaigns. | -| 2.6.5 | 2024-06-27 | [40585](https://github.com/airbytehq/airbyte/pull/40585) | Replaced deprecated AirbyteLogger with logging.Logger | -| 2.6.4 | 2024-06-25 | [40457](https://github.com/airbytehq/airbyte/pull/40457) | Update dependencies | -| 2.6.3 | 2024-06-22 | [40006](https://github.com/airbytehq/airbyte/pull/40006) | Update dependencies | -| 2.6.2 | 2024-06-06 | [39177](https://github.com/airbytehq/airbyte/pull/39177) | [autopull] Upgrade base image to v1.2.2 | -| 2.6.1 | 2024-05-02 | [36632](https://github.com/airbytehq/airbyte/pull/36632) | Schema descriptions | -| 2.6.0 | 2024-04-25 | [35878](https://github.com/airbytehq/airbyte/pull/35878) | Add missing fields in keyword_performance_report | -| 2.5.0 | 2024-03-21 | [35891](https://github.com/airbytehq/airbyte/pull/35891) | Accounts stream: add TaxCertificate field to schema | -| 2.4.0 | 2024-03-19 | [36267](https://github.com/airbytehq/airbyte/pull/36267) | Pin airbyte-cdk version to `^0` | -| 2.3.0 | 2024-03-05 | [35812](https://github.com/airbytehq/airbyte/pull/35812) | New streams: Audience Performance Report, Goals And Funnels Report, Product Dimension Performance Report. | -| 2.2.0 | 2024-02-13 | [35201](https://github.com/airbytehq/airbyte/pull/35201) | New streams: Budget and Product Dimension Performance. | -| 2.1.4 | 2024-02-12 | [35179](https://github.com/airbytehq/airbyte/pull/35179) | Manage dependencies with Poetry | -| 2.1.3 | 2024-01-31 | [34712](https://github.com/airbytehq/airbyte/pull/34712) | Fix duplicated records for report-based streams | -| 2.1.2 | 2024-01-09 | [34045](https://github.com/airbytehq/airbyte/pull/34045) | Speed up record transformation | -| 2.1.1 | 2023-12-15 | [33500](https://github.com/airbytehq/airbyte/pull/33500) | Fix state setter when state was provided | -| 2.1.0 | 2023-12-05 | [33095](https://github.com/airbytehq/airbyte/pull/33095) | Add account filtering | -| 2.0.1 | 2023-11-16 | [32597](https://github.com/airbytehq/airbyte/pull/32597) | Fix start date parsing from stream state | -| 2.0.0 | 2023-11-07 | [31995](https://github.com/airbytehq/airbyte/pull/31995) | Schema update for Accounts, Campaigns and Search Query Performance Report streams. Convert `date` and `date-time` fields to standard `RFC3339` | -| 1.13.0 | 2023-11-13 | [32306](https://github.com/airbytehq/airbyte/pull/32306) | Add Custom reports and decrease backoff max tries number | -| 1.12.1 | 2023-11-10 | [32422](https://github.com/airbytehq/airbyte/pull/32422) | Normalize numeric values in reports | -| 1.12.0 | 2023-11-09 | [32340](https://github.com/airbytehq/airbyte/pull/32340) | Remove default start date in favor of Time Period - Last Year and This Year, if start date is not provided | -| 1.11.0 | 2023-11-06 | [32201](https://github.com/airbytehq/airbyte/pull/32201) | Skip broken CSV report files | -| 1.10.0 | 2023-11-06 | [32148](https://github.com/airbytehq/airbyte/pull/32148) | Add new fields to stream Ads: "BusinessName", "CallToAction", "Headline", "Images", "Videos", "Text" | -| 1.9.0 | 2023-11-03 | [32131](https://github.com/airbytehq/airbyte/pull/32131) | Add "CampaignId", "AccountId", "CustomerId" fields to Ad Groups, Ads and Campaigns streams. | -| 1.8.0 | 2023-11-02 | [32059](https://github.com/airbytehq/airbyte/pull/32059) | Add new streams `CampaignImpressionPerformanceReport` (daily, hourly, weekly, monthly) | -| 1.7.1 | 2023-11-02 | [32088](https://github.com/airbytehq/airbyte/pull/32088) | Raise config error when user does not have accounts | -| 1.7.0 | 2023-11-01 | [32027](https://github.com/airbytehq/airbyte/pull/32027) | Add new streams `AdGroupImpressionPerformanceReport` | -| 1.6.0 | 2023-10-31 | [32008](https://github.com/airbytehq/airbyte/pull/32008) | Add new streams `Keywords` | -| 1.5.0 | 2023-10-30 | [31952](https://github.com/airbytehq/airbyte/pull/31952) | Add new streams `Labels`, `App install ads`, `Keyword Labels`, `Campaign Labels`, `App Install Ad Labels`, `Ad Group Labels` | -| 1.4.0 | 2023-10-27 | [31885](https://github.com/airbytehq/airbyte/pull/31885) | Add new stream: `AccountImpressionPerformanceReport` (daily, hourly, weekly, monthly) | -| 1.3.0 | 2023-10-26 | [31837](https://github.com/airbytehq/airbyte/pull/31837) | Add new stream: `UserLocationPerformanceReport` (daily, hourly, weekly, monthly) | -| 1.2.0 | 2023-10-24 | [31783](https://github.com/airbytehq/airbyte/pull/31783) | Add new stream: `SearchQueryPerformanceReport` (daily, hourly, weekly, monthly) | -| 1.1.0 | 2023-10-24 | [31712](https://github.com/airbytehq/airbyte/pull/31712) | Add new stream: `AgeGenderAudienceReport` (daily, hourly, weekly, monthly) | -| 1.0.2 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image | -| 1.0.1 | 2023-10-16 | [31432](https://github.com/airbytehq/airbyte/pull/31432) | Remove primary keys from the geographic performance reports - complete what was missed in version 1.0.0 | -| 1.0.0 | 2023-10-11 | [31277](https://github.com/airbytehq/airbyte/pull/31277) | Remove primary keys from the geographic performance reports | -| 0.2.3 | 2023-09-28 | [30834](https://github.com/airbytehq/airbyte/pull/30834) | Wrap auth error with the config error | -| 0.2.2 | 2023-09-27 | [30791](https://github.com/airbytehq/airbyte/pull/30791) | Fix missing fields for geographic performance reports | -| 0.2.1 | 2023-09-04 | [30128](https://github.com/airbytehq/airbyte/pull/30128) | Add increasing download timeout if ReportingDownloadException occurs | -| 0.2.0 | 2023-08-17 | [27619](https://github.com/airbytehq/airbyte/pull/27619) | Add Geographic Performance Report | -| 0.1.24 | 2023-06-22 | [27619](https://github.com/airbytehq/airbyte/pull/27619) | Retry request after facing temporary name resolution error | -| 0.1.23 | 2023-05-11 | [25996](https://github.com/airbytehq/airbyte/pull/25996) | Implement a retry logic if SSL certificate validation fails | -| 0.1.22 | 2023-05-08 | [24223](https://github.com/airbytehq/airbyte/pull/24223) | Add CampaignLabels report column in campaign performance report | -| 0.1.21 | 2023-04-28 | [25668](https://github.com/airbytehq/airbyte/pull/25668) | Add undeclared fields to accounts, campaigns, campaign_performance_report, keyword_performance_report and account_performance_report streams | -| 0.1.20 | 2023-03-09 | [23663](https://github.com/airbytehq/airbyte/pull/23663) | Add lookback window for performance reports in incremental mode | -| 0.1.19 | 2023-03-08 | [23868](https://github.com/airbytehq/airbyte/pull/23868) | Add dimensional-type columns for reports | -| 0.1.18 | 2023-01-30 | [22073](https://github.com/airbytehq/airbyte/pull/22073) | Fix null values in the `Keyword` column of `keyword_performance_report` streams | -| 0.1.17 | 2022-12-10 | [20005](https://github.com/airbytehq/airbyte/pull/20005) | Add `Keyword` to `keyword_performance_report` stream | -| 0.1.16 | 2022-10-12 | [17873](https://github.com/airbytehq/airbyte/pull/17873) | Fix: added missing campaign types in (Audience, Shopping and DynamicSearchAds) in campaigns stream | -| 0.1.15 | 2022-10-03 | [17505](https://github.com/airbytehq/airbyte/pull/17505) | Fix: limit cache size for ServiceClient instances | -| 0.1.14 | 2022-09-29 | [17403](https://github.com/airbytehq/airbyte/pull/17403) | Fix: limit cache size for ReportingServiceManager instances | -| 0.1.13 | 2022-09-29 | [17386](https://github.com/airbytehq/airbyte/pull/17386) | Migrate to per-stream states | -| 0.1.12 | 2022-09-05 | [16335](https://github.com/airbytehq/airbyte/pull/16335) | Added backoff for socket.timeout | +| 2.8.1 | 2024-10-28 | [47093](https://github.com/airbytehq/airbyte/pull/47093) | Update dependencies | +| 2.8.0 | 2024-10-21 | [46991](https://github.com/airbytehq/airbyte/pull/46991) | Update CDK to v5 | +| 2.7.9 | 2024-10-12 | [46847](https://github.com/airbytehq/airbyte/pull/46847) | Update dependencies | +| 2.7.8 | 2024-10-05 | [46504](https://github.com/airbytehq/airbyte/pull/46504) | Update dependencies | +| 2.7.7 | 2024-09-28 | [46151](https://github.com/airbytehq/airbyte/pull/46151) | Update dependencies | +| 2.7.6 | 2024-09-21 | [45512](https://github.com/airbytehq/airbyte/pull/45512) | Update dependencies | +| 2.7.5 | 2024-09-07 | [45246](https://github.com/airbytehq/airbyte/pull/45246) | Update dependencies | +| 2.7.4 | 2024-08-31 | [44276](https://github.com/airbytehq/airbyte/pull/44276) | Update dependencies | +| 2.7.3 | 2024-08-12 | [43742](https://github.com/airbytehq/airbyte/pull/43742) | Update dependencies | +| 2.7.2 | 2024-08-10 | [43591](https://github.com/airbytehq/airbyte/pull/43591) | Update dependencies | +| 2.7.1 | 2024-08-03 | [43245](https://github.com/airbytehq/airbyte/pull/43245) | Update dependencies | +| 2.7.0 | 2024-07-31 | [42548](https://github.com/airbytehq/airbyte/pull/42548) | Migrate to CDK v4.1.0 | +| 2.6.12 | 2024-07-27 | [42812](https://github.com/airbytehq/airbyte/pull/42812) | Update dependencies | +| 2.6.11 | 2024-07-20 | [42360](https://github.com/airbytehq/airbyte/pull/42360) | Update dependencies | +| 2.6.10 | 2024-07-13 | [41875](https://github.com/airbytehq/airbyte/pull/41875) | Update dependencies | +| 2.6.9 | 2024-07-10 | [41383](https://github.com/airbytehq/airbyte/pull/41383) | Update dependencies | +| 2.6.8 | 2024-07-09 | [41314](https://github.com/airbytehq/airbyte/pull/41314) | Update dependencies | +| 2.6.7 | 2024-07-06 | [40906](https://github.com/airbytehq/airbyte/pull/40906) | Update dependencies | +| 2.6.6 | 2024-07-05 | [34966](https://github.com/airbytehq/airbyte/pull/34966) | Add support for Performance Max campaigns. | +| 2.6.5 | 2024-06-27 | [40585](https://github.com/airbytehq/airbyte/pull/40585) | Replaced deprecated AirbyteLogger with logging.Logger | +| 2.6.4 | 2024-06-25 | [40457](https://github.com/airbytehq/airbyte/pull/40457) | Update dependencies | +| 2.6.3 | 2024-06-22 | [40006](https://github.com/airbytehq/airbyte/pull/40006) | Update dependencies | +| 2.6.2 | 2024-06-06 | [39177](https://github.com/airbytehq/airbyte/pull/39177) | [autopull] Upgrade base image to v1.2.2 | +| 2.6.1 | 2024-05-02 | [36632](https://github.com/airbytehq/airbyte/pull/36632) | Schema descriptions | +| 2.6.0 | 2024-04-25 | [35878](https://github.com/airbytehq/airbyte/pull/35878) | Add missing fields in keyword_performance_report | +| 2.5.0 | 2024-03-21 | [35891](https://github.com/airbytehq/airbyte/pull/35891) | Accounts stream: add TaxCertificate field to schema | +| 2.4.0 | 2024-03-19 | [36267](https://github.com/airbytehq/airbyte/pull/36267) | Pin airbyte-cdk version to `^0` | +| 2.3.0 | 2024-03-05 | [35812](https://github.com/airbytehq/airbyte/pull/35812) | New streams: Audience Performance Report, Goals And Funnels Report, Product Dimension Performance Report. | +| 2.2.0 | 2024-02-13 | [35201](https://github.com/airbytehq/airbyte/pull/35201) | New streams: Budget and Product Dimension Performance. | +| 2.1.4 | 2024-02-12 | [35179](https://github.com/airbytehq/airbyte/pull/35179) | Manage dependencies with Poetry | +| 2.1.3 | 2024-01-31 | [34712](https://github.com/airbytehq/airbyte/pull/34712) | Fix duplicated records for report-based streams | +| 2.1.2 | 2024-01-09 | [34045](https://github.com/airbytehq/airbyte/pull/34045) | Speed up record transformation | +| 2.1.1 | 2023-12-15 | [33500](https://github.com/airbytehq/airbyte/pull/33500) | Fix state setter when state was provided | +| 2.1.0 | 2023-12-05 | [33095](https://github.com/airbytehq/airbyte/pull/33095) | Add account filtering | +| 2.0.1 | 2023-11-16 | [32597](https://github.com/airbytehq/airbyte/pull/32597) | Fix start date parsing from stream state | +| 2.0.0 | 2023-11-07 | [31995](https://github.com/airbytehq/airbyte/pull/31995) | Schema update for Accounts, Campaigns and Search Query Performance Report streams. Convert `date` and `date-time` fields to standard `RFC3339` | +| 1.13.0 | 2023-11-13 | [32306](https://github.com/airbytehq/airbyte/pull/32306) | Add Custom reports and decrease backoff max tries number | +| 1.12.1 | 2023-11-10 | [32422](https://github.com/airbytehq/airbyte/pull/32422) | Normalize numeric values in reports | +| 1.12.0 | 2023-11-09 | [32340](https://github.com/airbytehq/airbyte/pull/32340) | Remove default start date in favor of Time Period - Last Year and This Year, if start date is not provided | +| 1.11.0 | 2023-11-06 | [32201](https://github.com/airbytehq/airbyte/pull/32201) | Skip broken CSV report files | +| 1.10.0 | 2023-11-06 | [32148](https://github.com/airbytehq/airbyte/pull/32148) | Add new fields to stream Ads: "BusinessName", "CallToAction", "Headline", "Images", "Videos", "Text" | +| 1.9.0 | 2023-11-03 | [32131](https://github.com/airbytehq/airbyte/pull/32131) | Add "CampaignId", "AccountId", "CustomerId" fields to Ad Groups, Ads and Campaigns streams. | +| 1.8.0 | 2023-11-02 | [32059](https://github.com/airbytehq/airbyte/pull/32059) | Add new streams `CampaignImpressionPerformanceReport` (daily, hourly, weekly, monthly) | +| 1.7.1 | 2023-11-02 | [32088](https://github.com/airbytehq/airbyte/pull/32088) | Raise config error when user does not have accounts | +| 1.7.0 | 2023-11-01 | [32027](https://github.com/airbytehq/airbyte/pull/32027) | Add new streams `AdGroupImpressionPerformanceReport` | +| 1.6.0 | 2023-10-31 | [32008](https://github.com/airbytehq/airbyte/pull/32008) | Add new streams `Keywords` | +| 1.5.0 | 2023-10-30 | [31952](https://github.com/airbytehq/airbyte/pull/31952) | Add new streams `Labels`, `App install ads`, `Keyword Labels`, `Campaign Labels`, `App Install Ad Labels`, `Ad Group Labels` | +| 1.4.0 | 2023-10-27 | [31885](https://github.com/airbytehq/airbyte/pull/31885) | Add new stream: `AccountImpressionPerformanceReport` (daily, hourly, weekly, monthly) | +| 1.3.0 | 2023-10-26 | [31837](https://github.com/airbytehq/airbyte/pull/31837) | Add new stream: `UserLocationPerformanceReport` (daily, hourly, weekly, monthly) | +| 1.2.0 | 2023-10-24 | [31783](https://github.com/airbytehq/airbyte/pull/31783) | Add new stream: `SearchQueryPerformanceReport` (daily, hourly, weekly, monthly) | +| 1.1.0 | 2023-10-24 | [31712](https://github.com/airbytehq/airbyte/pull/31712) | Add new stream: `AgeGenderAudienceReport` (daily, hourly, weekly, monthly) | +| 1.0.2 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image | +| 1.0.1 | 2023-10-16 | [31432](https://github.com/airbytehq/airbyte/pull/31432) | Remove primary keys from the geographic performance reports - complete what was missed in version 1.0.0 | +| 1.0.0 | 2023-10-11 | [31277](https://github.com/airbytehq/airbyte/pull/31277) | Remove primary keys from the geographic performance reports | +| 0.2.3 | 2023-09-28 | [30834](https://github.com/airbytehq/airbyte/pull/30834) | Wrap auth error with the config error | +| 0.2.2 | 2023-09-27 | [30791](https://github.com/airbytehq/airbyte/pull/30791) | Fix missing fields for geographic performance reports | +| 0.2.1 | 2023-09-04 | [30128](https://github.com/airbytehq/airbyte/pull/30128) | Add increasing download timeout if ReportingDownloadException occurs | +| 0.2.0 | 2023-08-17 | [27619](https://github.com/airbytehq/airbyte/pull/27619) | Add Geographic Performance Report | +| 0.1.24 | 2023-06-22 | [27619](https://github.com/airbytehq/airbyte/pull/27619) | Retry request after facing temporary name resolution error | +| 0.1.23 | 2023-05-11 | [25996](https://github.com/airbytehq/airbyte/pull/25996) | Implement a retry logic if SSL certificate validation fails | +| 0.1.22 | 2023-05-08 | [24223](https://github.com/airbytehq/airbyte/pull/24223) | Add CampaignLabels report column in campaign performance report | +| 0.1.21 | 2023-04-28 | [25668](https://github.com/airbytehq/airbyte/pull/25668) | Add undeclared fields to accounts, campaigns, campaign_performance_report, keyword_performance_report and account_performance_report streams | +| 0.1.20 | 2023-03-09 | [23663](https://github.com/airbytehq/airbyte/pull/23663) | Add lookback window for performance reports in incremental mode | +| 0.1.19 | 2023-03-08 | [23868](https://github.com/airbytehq/airbyte/pull/23868) | Add dimensional-type columns for reports | +| 0.1.18 | 2023-01-30 | [22073](https://github.com/airbytehq/airbyte/pull/22073) | Fix null values in the `Keyword` column of `keyword_performance_report` streams | +| 0.1.17 | 2022-12-10 | [20005](https://github.com/airbytehq/airbyte/pull/20005) | Add `Keyword` to `keyword_performance_report` stream | +| 0.1.16 | 2022-10-12 | [17873](https://github.com/airbytehq/airbyte/pull/17873) | Fix: added missing campaign types in (Audience, Shopping and DynamicSearchAds) in campaigns stream | +| 0.1.15 | 2022-10-03 | [17505](https://github.com/airbytehq/airbyte/pull/17505) | Fix: limit cache size for ServiceClient instances | +| 0.1.14 | 2022-09-29 | [17403](https://github.com/airbytehq/airbyte/pull/17403) | Fix: limit cache size for ReportingServiceManager instances | +| 0.1.13 | 2022-09-29 | [17386](https://github.com/airbytehq/airbyte/pull/17386) | Migrate to per-stream states | +| 0.1.12 | 2022-09-05 | [16335](https://github.com/airbytehq/airbyte/pull/16335) | Added backoff for socket.timeout | | 0.1.11 | 2022-08-25 | [15684](https://github.com/airbytehq/airbyte/pull/15684) (published in [15987](https://github.com/airbytehq/airbyte/pull/15987)) | Fixed log messages being unreadable | | 0.1.10 | 2022-08-12 | [15602](https://github.com/airbytehq/airbyte/pull/15602) | Fixed bug caused Hourly Reports to crash due to invalid fields set | | 0.1.9 | 2022-08-02 | [14862](https://github.com/airbytehq/airbyte/pull/14862) | Added missing columns | From e7a1b0424953ce722c2fb26727fa093d8264be28 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:14:50 +0200 Subject: [PATCH 092/808] =?UTF-8?q?=F0=9F=90=99=20source-recurly:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47067)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recurly/metadata.yaml | 2 +- .../connectors/source-recurly/poetry.lock | 130 +++++++++--------- .../connectors/source-recurly/pyproject.toml | 2 +- docs/integrations/sources/recurly.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-recurly/metadata.yaml b/airbyte-integrations/connectors/source-recurly/metadata.yaml index e2be251c00da..a09c31c91544 100644 --- a/airbyte-integrations/connectors/source-recurly/metadata.yaml +++ b/airbyte-integrations/connectors/source-recurly/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: cd42861b-01fc-4658-a8ab-5d11d0510f01 - dockerImageTag: 1.1.11 + dockerImageTag: 1.1.12 dockerRepository: airbyte/source-recurly documentationUrl: https://docs.airbyte.com/integrations/sources/recurly githubIssueLabel: source-recurly diff --git a/airbyte-integrations/connectors/source-recurly/poetry.lock b/airbyte-integrations/connectors/source-recurly/poetry.lock index 3af435143137..a5b4b7f8e604 100644 --- a/airbyte-integrations/connectors/source-recurly/poetry.lock +++ b/airbyte-integrations/connectors/source-recurly/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -895,13 +895,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-recurly/pyproject.toml b/airbyte-integrations/connectors/source-recurly/pyproject.toml index 3db1bdb6f9b7..835af1388b0e 100644 --- a/airbyte-integrations/connectors/source-recurly/pyproject.toml +++ b/airbyte-integrations/connectors/source-recurly/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.11" +version = "1.1.12" name = "source-recurly" description = "Source implementation for Recurly." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/recurly.md b/docs/integrations/sources/recurly.md index 51cfc34d3e82..0aa7653e2ce4 100644 --- a/docs/integrations/sources/recurly.md +++ b/docs/integrations/sources/recurly.md @@ -66,6 +66,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------- | +| 1.1.12 | 2024-10-28 | [47067](https://github.com/airbytehq/airbyte/pull/47067) | Update dependencies | | 1.1.11 | 2024-10-12 | [46829](https://github.com/airbytehq/airbyte/pull/46829) | Update dependencies | | 1.1.10 | 2024-10-05 | [46456](https://github.com/airbytehq/airbyte/pull/46456) | Update dependencies | | 1.1.9 | 2024-09-28 | [46140](https://github.com/airbytehq/airbyte/pull/46140) | Update dependencies | From 7ee595397158e1a81d3df8805b422808063a7138 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:15:09 +0200 Subject: [PATCH 093/808] =?UTF-8?q?=F0=9F=90=99=20source-adjust:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47046)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-adjust/metadata.yaml | 2 +- .../connectors/source-adjust/poetry.lock | 261 +++++++++--------- .../connectors/source-adjust/pyproject.toml | 2 +- docs/integrations/sources/adjust.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-adjust/metadata.yaml b/airbyte-integrations/connectors/source-adjust/metadata.yaml index bce9c14a96f0..971f901b3f79 100644 --- a/airbyte-integrations/connectors/source-adjust/metadata.yaml +++ b/airbyte-integrations/connectors/source-adjust/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: d3b7fa46-111b-419a-998a-d7f046f6d66d - dockerImageTag: 0.1.24 + dockerImageTag: 0.1.25 dockerRepository: airbyte/source-adjust documentationUrl: https://docs.airbyte.com/integrations/sources/adjust githubIssueLabel: source-adjust diff --git a/airbyte-integrations/connectors/source-adjust/poetry.lock b/airbyte-integrations/connectors/source-adjust/poetry.lock index 2d9b72370c15..4c0d837c973f 100644 --- a/airbyte-integrations/connectors/source-adjust/poetry.lock +++ b/airbyte-integrations/connectors/source-adjust/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -697,138 +697,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1284,13 +1285,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-adjust/pyproject.toml b/airbyte-integrations/connectors/source-adjust/pyproject.toml index babdf06affe2..79d6aefbdd14 100644 --- a/airbyte-integrations/connectors/source-adjust/pyproject.toml +++ b/airbyte-integrations/connectors/source-adjust/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.24" +version = "0.1.25" name = "source-adjust" description = "Source implementation for Adjust." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/adjust.md b/docs/integrations/sources/adjust.md index f9ae77501996..5f1188d2428b 100644 --- a/docs/integrations/sources/adjust.md +++ b/docs/integrations/sources/adjust.md @@ -42,6 +42,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |---------|------------| -------------------------------------------------------- |---------------------------------------------| +| 0.1.25 | 2024-10-28 | [47046](https://github.com/airbytehq/airbyte/pull/47046) | Update dependencies | | 0.1.24 | 2024-10-12 | [46851](https://github.com/airbytehq/airbyte/pull/46851) | Update dependencies | | 0.1.23 | 2024-10-05 | [46411](https://github.com/airbytehq/airbyte/pull/46411) | Update dependencies | | 0.1.22 | 2024-09-28 | [46147](https://github.com/airbytehq/airbyte/pull/46147) | Update dependencies | From 654030400b105122377a74d7a12cc32be59ccdc4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:15:14 +0200 Subject: [PATCH 094/808] =?UTF-8?q?=F0=9F=90=99=20destination-google-sheet?= =?UTF-8?q?s:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47042)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-google-sheets/metadata.yaml | 2 +- .../destination-google-sheets/poetry.lock | 168 +++++++++--------- .../destination-google-sheets/pyproject.toml | 2 +- .../destinations/google-sheets.md | 1 + 4 files changed, 87 insertions(+), 86 deletions(-) diff --git a/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml b/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml index 195c4bd402dd..ac8bced043cb 100644 --- a/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml +++ b/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: destination definitionId: a4cbd2d1-8dbe-4818-b8bc-b90ad782d12a - dockerImageTag: 0.2.27 + dockerImageTag: 0.2.28 dockerRepository: airbyte/destination-google-sheets githubIssueLabel: destination-google-sheets icon: google-sheets.svg diff --git a/airbyte-integrations/connectors/destination-google-sheets/poetry.lock b/airbyte-integrations/connectors/destination-google-sheets/poetry.lock index 093f5bedb951..1de77df64fb8 100644 --- a/airbyte-integrations/connectors/destination-google-sheets/poetry.lock +++ b/airbyte-integrations/connectors/destination-google-sheets/poetry.lock @@ -535,72 +535,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -762,13 +762,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "proto-plus" -version = "1.24.0" +version = "1.25.0" description = "Beautiful, Pythonic protocol buffers." optional = false python-versions = ">=3.7" files = [ - {file = "proto-plus-1.24.0.tar.gz", hash = "sha256:30b72a5ecafe4406b0d339db35b56c4059064e69227b8c3bda7462397f966445"}, - {file = "proto_plus-1.24.0-py3-none-any.whl", hash = "sha256:402576830425e5f6ce4c2a6702400ac79897dab0b4343821aa5188b0fab81a12"}, + {file = "proto_plus-1.25.0-py3-none-any.whl", hash = "sha256:c91fc4a65074ade8e458e95ef8bac34d4008daa7cce4a12d6707066fca648961"}, + {file = "proto_plus-1.25.0.tar.gz", hash = "sha256:fbb17f57f7bd05a68b7707e745e26528b0b3c34e378db91eef93912c54982d91"}, ] [package.dependencies] @@ -779,22 +779,22 @@ testing = ["google-api-core (>=1.31.5)"] [[package]] name = "protobuf" -version = "5.28.2" +version = "5.28.3" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-5.28.2-cp310-abi3-win32.whl", hash = "sha256:eeea10f3dc0ac7e6b4933d32db20662902b4ab81bf28df12218aa389e9c2102d"}, - {file = "protobuf-5.28.2-cp310-abi3-win_amd64.whl", hash = "sha256:2c69461a7fcc8e24be697624c09a839976d82ae75062b11a0972e41fd2cd9132"}, - {file = "protobuf-5.28.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a8b9403fc70764b08d2f593ce44f1d2920c5077bf7d311fefec999f8c40f78b7"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:35cfcb15f213449af7ff6198d6eb5f739c37d7e4f1c09b5d0641babf2cc0c68f"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:5e8a95246d581eef20471b5d5ba010d55f66740942b95ba9b872d918c459452f"}, - {file = "protobuf-5.28.2-cp38-cp38-win32.whl", hash = "sha256:87317e9bcda04a32f2ee82089a204d3a2f0d3c8aeed16568c7daf4756e4f1fe0"}, - {file = "protobuf-5.28.2-cp38-cp38-win_amd64.whl", hash = "sha256:c0ea0123dac3399a2eeb1a1443d82b7afc9ff40241433296769f7da42d142ec3"}, - {file = "protobuf-5.28.2-cp39-cp39-win32.whl", hash = "sha256:ca53faf29896c526863366a52a8f4d88e69cd04ec9571ed6082fa117fac3ab36"}, - {file = "protobuf-5.28.2-cp39-cp39-win_amd64.whl", hash = "sha256:8ddc60bf374785fb7cb12510b267f59067fa10087325b8e1855b898a0d81d276"}, - {file = "protobuf-5.28.2-py3-none-any.whl", hash = "sha256:52235802093bd8a2811abbe8bf0ab9c5f54cca0a751fdd3f6ac2a21438bffece"}, - {file = "protobuf-5.28.2.tar.gz", hash = "sha256:59379674ff119717404f7454647913787034f03fe7049cbef1d74a97bb4593f0"}, + {file = "protobuf-5.28.3-cp310-abi3-win32.whl", hash = "sha256:0c4eec6f987338617072592b97943fdbe30d019c56126493111cf24344c1cc24"}, + {file = "protobuf-5.28.3-cp310-abi3-win_amd64.whl", hash = "sha256:91fba8f445723fcf400fdbe9ca796b19d3b1242cd873907979b9ed71e4afe868"}, + {file = "protobuf-5.28.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a3f6857551e53ce35e60b403b8a27b0295f7d6eb63d10484f12bc6879c715687"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:3fa2de6b8b29d12c61911505d893afe7320ce7ccba4df913e2971461fa36d584"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:712319fbdddb46f21abb66cd33cb9e491a5763b2febd8f228251add221981135"}, + {file = "protobuf-5.28.3-cp38-cp38-win32.whl", hash = "sha256:3e6101d095dfd119513cde7259aa703d16c6bbdfae2554dfe5cfdbe94e32d548"}, + {file = "protobuf-5.28.3-cp38-cp38-win_amd64.whl", hash = "sha256:27b246b3723692bf1068d5734ddaf2fccc2cdd6e0c9b47fe099244d80200593b"}, + {file = "protobuf-5.28.3-cp39-cp39-win32.whl", hash = "sha256:135658402f71bbd49500322c0f736145731b16fc79dc8f367ab544a17eab4535"}, + {file = "protobuf-5.28.3-cp39-cp39-win_amd64.whl", hash = "sha256:70585a70fc2dd4818c51287ceef5bdba6387f88a578c86d47bb34669b5552c36"}, + {file = "protobuf-5.28.3-py3-none-any.whl", hash = "sha256:cee1757663fa32a1ee673434fcf3bf24dd54763c79690201208bafec62f19eed"}, + {file = "protobuf-5.28.3.tar.gz", hash = "sha256:64badbc49180a5e401f373f9ce7ab1d18b63f7dd4a9cdc43c92b9f0b481cef7b"}, ] [[package]] @@ -901,13 +901,13 @@ pandas = ["pandas (>=0.14.0)"] [[package]] name = "pyparsing" -version = "3.1.4" +version = "3.2.0" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.9" files = [ - {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, - {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, + {file = "pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84"}, + {file = "pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c"}, ] [package.extras] @@ -1154,13 +1154,13 @@ pyasn1 = ">=0.1.3" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml b/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml index c4896c093108..6373bf960d8f 100644 --- a/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml +++ b/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.27" +version = "0.2.28" name = "destination-google-sheets" description = "Destination implementation for Google Sheets." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/google-sheets.md b/docs/integrations/destinations/google-sheets.md index 2bf07b638df9..93102b7db1b1 100644 --- a/docs/integrations/destinations/google-sheets.md +++ b/docs/integrations/destinations/google-sheets.md @@ -155,6 +155,7 @@ EXAMPLE: | Version | Date | Pull Request | Subject | |---------| ---------- | -------------------------------------------------------- | ---------------------------------------------------------- | +| 0.2.28 | 2024-10-28 | [47042](https://github.com/airbytehq/airbyte/pull/47042) | Update dependencies | | 0.2.27 | 2024-10-12 | [46772](https://github.com/airbytehq/airbyte/pull/46772) | Update dependencies | | 0.2.26 | 2024-10-05 | [46464](https://github.com/airbytehq/airbyte/pull/46464) | Update dependencies | | 0.2.25 | 2024-09-28 | [46204](https://github.com/airbytehq/airbyte/pull/46204) | Update dependencies | From 580dae0b4f9978236b2472c9b8f630389aedb639 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:15:18 +0200 Subject: [PATCH 095/808] =?UTF-8?q?=F0=9F=90=99=20source-outbrain-amplify:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47040)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-outbrain-amplify/metadata.yaml | 2 +- .../source-outbrain-amplify/poetry.lock | 130 +++++++++--------- .../source-outbrain-amplify/pyproject.toml | 2 +- docs/integrations/sources/outbrain-amplify.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml b/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml index e9070ba5e95c..146467545891 100644 --- a/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml +++ b/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml @@ -16,7 +16,7 @@ data: type: GSM connectorType: source definitionId: 4fe962d0-a70e-4516-aa99-c551abf46352 - dockerImageTag: 0.1.18 + dockerImageTag: 0.1.19 dockerRepository: airbyte/source-outbrain-amplify documentationUrl: https://docs.airbyte.com/integrations/sources/outbrain-amplify githubIssueLabel: source-outbrain-amplify diff --git a/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock b/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock index ccf70931ffd9..efdf4268b7c2 100644 --- a/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock +++ b/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock @@ -420,72 +420,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -875,13 +875,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml b/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml index ec88ace1d11f..dc2b91393ec4 100644 --- a/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml +++ b/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.18" +version = "0.1.19" name = "source-outbrain-amplify" description = "Source implementation for outbrain amplify." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/outbrain-amplify.md b/docs/integrations/sources/outbrain-amplify.md index 206e1c8eb8e9..b91d01e38891 100644 --- a/docs/integrations/sources/outbrain-amplify.md +++ b/docs/integrations/sources/outbrain-amplify.md @@ -65,6 +65,7 @@ Specify credentials and a start date. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------- | +| 0.1.19 | 2024-10-28 | [47040](https://github.com/airbytehq/airbyte/pull/47040) | Update dependencies | | 0.1.18 | 2024-10-12 | [46775](https://github.com/airbytehq/airbyte/pull/46775) | Update dependencies | | 0.1.17 | 2024-10-05 | [46403](https://github.com/airbytehq/airbyte/pull/46403) | Update dependencies | | 0.1.16 | 2024-09-28 | [46195](https://github.com/airbytehq/airbyte/pull/46195) | Update dependencies | From 971e61d65250a877e1ce2ce79537d01710176b63 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:15:31 +0200 Subject: [PATCH 096/808] =?UTF-8?q?=F0=9F=90=99=20source-asana:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47026)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-asana/metadata.yaml | 2 +- .../connectors/source-asana/poetry.lock | 261 +++++++++--------- .../connectors/source-asana/pyproject.toml | 2 +- docs/integrations/sources/asana.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-asana/metadata.yaml b/airbyte-integrations/connectors/source-asana/metadata.yaml index 33808225c0f5..8e19094d7a74 100644 --- a/airbyte-integrations/connectors/source-asana/metadata.yaml +++ b/airbyte-integrations/connectors/source-asana/metadata.yaml @@ -28,7 +28,7 @@ data: connectorSubtype: api connectorType: source definitionId: d0243522-dccf-4978-8ba0-37ed47a0bdbf - dockerImageTag: 1.2.12 + dockerImageTag: 1.2.13 dockerRepository: airbyte/source-asana githubIssueLabel: source-asana icon: asana.svg diff --git a/airbyte-integrations/connectors/source-asana/poetry.lock b/airbyte-integrations/connectors/source-asana/poetry.lock index fe8537443ea2..02302faf1ed9 100644 --- a/airbyte-integrations/connectors/source-asana/poetry.lock +++ b/airbyte-integrations/connectors/source-asana/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -669,13 +669,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -687,138 +687,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1261,13 +1262,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-asana/pyproject.toml b/airbyte-integrations/connectors/source-asana/pyproject.toml index 2e966f4ce389..f13fbdc682fc 100644 --- a/airbyte-integrations/connectors/source-asana/pyproject.toml +++ b/airbyte-integrations/connectors/source-asana/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.2.12" +version = "1.2.13" name = "source-asana" description = "Source implementation for asana." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/asana.md b/docs/integrations/sources/asana.md index b943aedfbbbe..9ac31ea0907b 100644 --- a/docs/integrations/sources/asana.md +++ b/docs/integrations/sources/asana.md @@ -106,6 +106,7 @@ The connector is restricted by [Asana rate limits](https://developers.asana.com/ | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------| +| 1.2.13 | 2024-10-28 | [47026](https://github.com/airbytehq/airbyte/pull/47026) | Update dependencies | | 1.2.12 | 2024-10-12 | [46825](https://github.com/airbytehq/airbyte/pull/46825) | Update dependencies | | 1.2.11 | 2024-10-05 | [46501](https://github.com/airbytehq/airbyte/pull/46501) | Update dependencies | | 1.2.10 | 2024-09-28 | [46166](https://github.com/airbytehq/airbyte/pull/46166) | Update dependencies | From eb4aa6221e0a5cbcc14c461806a7d04419a8e088 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:15:35 +0200 Subject: [PATCH 097/808] =?UTF-8?q?=F0=9F=90=99=20source-smartsheets:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47024)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-smartsheets/metadata.yaml | 2 +- .../connectors/source-smartsheets/poetry.lock | 130 +++++++++--------- .../source-smartsheets/pyproject.toml | 2 +- docs/integrations/sources/smartsheets.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-smartsheets/metadata.yaml b/airbyte-integrations/connectors/source-smartsheets/metadata.yaml index e1e91c6981a4..9000aa9dd982 100644 --- a/airbyte-integrations/connectors/source-smartsheets/metadata.yaml +++ b/airbyte-integrations/connectors/source-smartsheets/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: api connectorType: source definitionId: 374ebc65-6636-4ea0-925c-7d35999a8ffc - dockerImageTag: 1.1.23 + dockerImageTag: 1.1.24 dockerRepository: airbyte/source-smartsheets documentationUrl: https://docs.airbyte.com/integrations/sources/smartsheets githubIssueLabel: source-smartsheets diff --git a/airbyte-integrations/connectors/source-smartsheets/poetry.lock b/airbyte-integrations/connectors/source-smartsheets/poetry.lock index 3dd8b80df0f1..4bd15a1c6b4a 100644 --- a/airbyte-integrations/connectors/source-smartsheets/poetry.lock +++ b/airbyte-integrations/connectors/source-smartsheets/poetry.lock @@ -406,72 +406,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -875,13 +875,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-smartsheets/pyproject.toml b/airbyte-integrations/connectors/source-smartsheets/pyproject.toml index 754d14f33a18..027d94fe3185 100644 --- a/airbyte-integrations/connectors/source-smartsheets/pyproject.toml +++ b/airbyte-integrations/connectors/source-smartsheets/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.23" +version = "1.1.24" name = "source-smartsheets" description = "Source implementation for Smartsheets." authors = [ "Nate Nowack ",] diff --git a/docs/integrations/sources/smartsheets.md b/docs/integrations/sources/smartsheets.md index 4e2a90720b1d..f03ac7130ca9 100644 --- a/docs/integrations/sources/smartsheets.md +++ b/docs/integrations/sources/smartsheets.md @@ -117,6 +117,7 @@ The remaining column datatypes supported by Smartsheets are more complex types ( | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------- | +| 1.1.24 | 2024-10-28 | [47024](https://github.com/airbytehq/airbyte/pull/47024) | Update dependencies | | 1.1.23 | 2024-10-12 | [46783](https://github.com/airbytehq/airbyte/pull/46783) | Update dependencies | | 1.1.22 | 2024-10-05 | [46427](https://github.com/airbytehq/airbyte/pull/46427) | Update dependencies | | 1.1.21 | 2024-09-28 | [46154](https://github.com/airbytehq/airbyte/pull/46154) | Update dependencies | From ad5d76c42d4277dfe57693d3ff395d8f26861539 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 16:15:56 +0200 Subject: [PATCH 098/808] =?UTF-8?q?=F0=9F=90=99=20source-freshsales:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#44277)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-freshsales/metadata.yaml | 4 ++-- docs/integrations/sources/freshsales.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-freshsales/metadata.yaml b/airbyte-integrations/connectors/source-freshsales/metadata.yaml index 2d9297f7e4f0..a9f7e57a1f3c 100644 --- a/airbyte-integrations/connectors/source-freshsales/metadata.yaml +++ b/airbyte-integrations/connectors/source-freshsales/metadata.yaml @@ -18,11 +18,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: eca08d79-7b92-4065-b7f3-79c14836ebe7 - dockerImageTag: 1.1.0 + dockerImageTag: 1.1.1 releases: breakingChanges: 1.0.0: diff --git a/docs/integrations/sources/freshsales.md b/docs/integrations/sources/freshsales.md index 612d04dddd18..04696d3f8d88 100644 --- a/docs/integrations/sources/freshsales.md +++ b/docs/integrations/sources/freshsales.md @@ -68,6 +68,7 @@ The Freshsales connector should not run into Freshsales API limitations under no | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------- | +| 1.1.1 | 2024-10-28 | [44277](https://github.com/airbytehq/airbyte/pull/44277) | Update dependencies | | 1.1.0 | 2024-08-15 | [44149](https://github.com/airbytehq/airbyte/pull/44149) | Refactor connector to manifest-only format | | 1.0.14 | 2024-08-12 | [43904](https://github.com/airbytehq/airbyte/pull/43904) | Update dependencies | | 1.0.13 | 2024-08-10 | [43678](https://github.com/airbytehq/airbyte/pull/43678) | Update dependencies | From 845c4bc57f4a0a19deaa5b5cceafd03fe618709f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:09:56 +0200 Subject: [PATCH 099/808] =?UTF-8?q?=F0=9F=90=99=20source-breezy-hr:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47587)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-breezy-hr/metadata.yaml | 4 ++-- docs/integrations/sources/breezy-hr.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-breezy-hr/metadata.yaml b/airbyte-integrations/connectors/source-breezy-hr/metadata.yaml index 494e407c433e..4184acea2a0a 100644 --- a/airbyte-integrations/connectors/source-breezy-hr/metadata.yaml +++ b/airbyte-integrations/connectors/source-breezy-hr/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-breezy-hr connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.2@sha256:efe8a454f740dc6a07252c4a457777e7c81d95f0d2ea8e9d68114d3610e9a602 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: bc2c2e4f-41a1-40e3-9e82-eea19cf958ff - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-breezy-hr githubIssueLabel: source-breezy-hr icon: icon.svg diff --git a/docs/integrations/sources/breezy-hr.md b/docs/integrations/sources/breezy-hr.md index d0d2e870022b..dc171de0e938 100644 --- a/docs/integrations/sources/breezy-hr.md +++ b/docs/integrations/sources/breezy-hr.md @@ -22,6 +22,7 @@ An Airbyte source for Breezy applicant tracking system. | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47587](https://github.com/airbytehq/airbyte/pull/47587) | Update dependencies | | 0.0.1 | 2024-08-20 | | Initial release by natikgadzhi via Connector Builder | - \ No newline at end of file + From c4ff4293fc395271eb12afd2e9ffbca83d2e3a1c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:00 +0200 Subject: [PATCH 100/808] =?UTF-8?q?=F0=9F=90=99=20source-safetyculture:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-28]=20(#47586)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-safetyculture/metadata.yaml | 4 ++-- docs/integrations/sources/safetyculture.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-safetyculture/metadata.yaml b/airbyte-integrations/connectors/source-safetyculture/metadata.yaml index becfbc3d22b8..5f770e8f5de3 100644 --- a/airbyte-integrations/connectors/source-safetyculture/metadata.yaml +++ b/airbyte-integrations/connectors/source-safetyculture/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-safetyculture connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 570b875e-52d9-40e0-a43c-340ebae2d9f8 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-safetyculture githubIssueLabel: source-safetyculture icon: icon.svg diff --git a/docs/integrations/sources/safetyculture.md b/docs/integrations/sources/safetyculture.md index b9508137919b..f69ce5cb1d89 100644 --- a/docs/integrations/sources/safetyculture.md +++ b/docs/integrations/sources/safetyculture.md @@ -54,6 +54,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47586](https://github.com/airbytehq/airbyte/pull/47586) | Update dependencies | | 0.0.1 | 2024-10-04 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 32747dbaa3ed7916dc820594850396b0fc38b7c4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:06 +0200 Subject: [PATCH 101/808] =?UTF-8?q?=F0=9F=90=99=20source-sap-fieldglass:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47583)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sap-fieldglass/metadata.yaml | 4 ++-- docs/integrations/sources/sap-fieldglass.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml b/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml index 4eb97000e84d..99eb3f0155b6 100644 --- a/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml +++ b/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ec5f3102-fb31-4916-99ae-864faf8e7e25 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-sap-fieldglass githubIssueLabel: source-sap-fieldglass icon: sapfieldglass.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/sap-fieldglass.md b/docs/integrations/sources/sap-fieldglass.md index 3fa51b4b9db8..591b9b5201dd 100644 --- a/docs/integrations/sources/sap-fieldglass.md +++ b/docs/integrations/sources/sap-fieldglass.md @@ -25,7 +25,8 @@ This page contains the setup guide and reference information for the SAP Fieldgl | Version | Date | Pull Request | Subject | | :------ | :--------- | :---------------------------------------------- |:--------------------------------------------| -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47583](https://github.com/airbytehq/airbyte/pull/47583) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44075](https://github.com/airbytehq/airbyte/pull/44075) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43894](https://github.com/airbytehq/airbyte/pull/43894) | Update dependencies | | 0.1.13 | 2024-08-10 | [43657](https://github.com/airbytehq/airbyte/pull/43657) | Update dependencies | From 4c3c2e52de4b52eb070c7ae523ac097d2f50b34b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:09 +0200 Subject: [PATCH 102/808] =?UTF-8?q?=F0=9F=90=99=20source-zoho-books:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47582)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zoho-books/metadata.yaml | 4 ++-- docs/integrations/sources/zoho-books.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-zoho-books/metadata.yaml b/airbyte-integrations/connectors/source-zoho-books/metadata.yaml index 3767234b6b52..c45f81efa319 100644 --- a/airbyte-integrations/connectors/source-zoho-books/metadata.yaml +++ b/airbyte-integrations/connectors/source-zoho-books/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-zoho-books connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: b67f9de8-177d-4d48-9c5c-8a767d845885 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-zoho-books githubIssueLabel: source-zoho-books icon: icon.svg diff --git a/docs/integrations/sources/zoho-books.md b/docs/integrations/sources/zoho-books.md index 1e6974b9aa96..8510e71011e0 100644 --- a/docs/integrations/sources/zoho-books.md +++ b/docs/integrations/sources/zoho-books.md @@ -38,6 +38,7 @@ The Zoho Books connector enables seamless integration of financial data, automa | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47582](https://github.com/airbytehq/airbyte/pull/47582) | Update dependencies | | 0.0.1 | 2024-10-19 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 6d97529f6463141bcf68ea64b438138b992eaa6e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:12 +0200 Subject: [PATCH 103/808] =?UTF-8?q?=F0=9F=90=99=20source-sage-hr:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47581)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-sage-hr/metadata.yaml | 4 ++-- docs/integrations/sources/sage-hr.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sage-hr/metadata.yaml b/airbyte-integrations/connectors/source-sage-hr/metadata.yaml index d6bd029ebad9..9e186b620b2c 100644 --- a/airbyte-integrations/connectors/source-sage-hr/metadata.yaml +++ b/airbyte-integrations/connectors/source-sage-hr/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-sage-hr connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.11.1@sha256:f48a7ddc1f3acecbd8eb6a10a3146e8d0396e9a4dede77beafb76924f416df65 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: d8384215-9de6-4268-bbea-40c636ee14c7 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-sage-hr githubIssueLabel: source-sage-hr icon: icon.svg diff --git a/docs/integrations/sources/sage-hr.md b/docs/integrations/sources/sage-hr.md index 5c21d7858723..a24a1762f462 100644 --- a/docs/integrations/sources/sage-hr.md +++ b/docs/integrations/sources/sage-hr.md @@ -31,6 +31,7 @@ The Sage HR Airbyte Connector enables seamless data integration, allowing you to | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47581](https://github.com/airbytehq/airbyte/pull/47581) | Update dependencies | | 0.0.1 | 2024-10-08 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 84b5a12241429ea9dd0601a96bcffbff1a86e4a7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:15 +0200 Subject: [PATCH 104/808] =?UTF-8?q?=F0=9F=90=99=20source-flexport:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47580)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-flexport/metadata.yaml | 4 ++-- docs/integrations/sources/flexport.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-flexport/metadata.yaml b/airbyte-integrations/connectors/source-flexport/metadata.yaml index d99631a76de0..f8d73bff4edf 100644 --- a/airbyte-integrations/connectors/source-flexport/metadata.yaml +++ b/airbyte-integrations/connectors/source-flexport/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: f95337f1-2ad1-4baf-922f-2ca9152de630 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-flexport githubIssueLabel: source-flexport icon: flexport.svg @@ -32,5 +32,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/flexport.md b/docs/integrations/sources/flexport.md index 4896240b70c7..767eec60de7b 100644 --- a/docs/integrations/sources/flexport.md +++ b/docs/integrations/sources/flexport.md @@ -49,6 +49,7 @@ Authentication uses a pre-created API token which can be [created in the UI](htt | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------ | +| 0.3.1 | 2024-10-28 | [47580](https://github.com/airbytehq/airbyte/pull/47580) | Update dependencies | | 0.3.0 | 2024-10-05 | [46416](https://github.com/airbytehq/airbyte/pull/46416) | Migrate to Manifest-only CDK | | 0.2.20 | 2024-10-05 | [46455](https://github.com/airbytehq/airbyte/pull/46455) | Update dependencies | | 0.2.19 | 2024-09-28 | [46199](https://github.com/airbytehq/airbyte/pull/46199) | Update dependencies | From 223be64fba2970fbe1dcd5199dc7abc7d6a978b7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:18 +0200 Subject: [PATCH 105/808] =?UTF-8?q?=F0=9F=90=99=20source-persistiq:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47579)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-persistiq/metadata.yaml | 4 ++-- docs/integrations/sources/persistiq.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-persistiq/metadata.yaml b/airbyte-integrations/connectors/source-persistiq/metadata.yaml index aba5eded08c9..cce6656f8b08 100644 --- a/airbyte-integrations/connectors/source-persistiq/metadata.yaml +++ b/airbyte-integrations/connectors/source-persistiq/metadata.yaml @@ -3,7 +3,7 @@ data: hosts: - api.persistiq.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 remoteRegistries: pypi: enabled: false @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3052c77e-8b91-47e2-97a0-a29a22794b4b - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-persistiq githubIssueLabel: source-persistiq icon: persistiq.svg diff --git a/docs/integrations/sources/persistiq.md b/docs/integrations/sources/persistiq.md index d7c84ef4b635..34414a306233 100644 --- a/docs/integrations/sources/persistiq.md +++ b/docs/integrations/sources/persistiq.md @@ -43,6 +43,7 @@ Please read [How to find your API key](https://apidocs.persistiq.com/#introducti | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------| +| 0.3.3 | 2024-10-28 | [47579](https://github.com/airbytehq/airbyte/pull/47579) | Update dependencies | | 0.3.2 | 2024-10-21 | [47193](https://github.com/airbytehq/airbyte/pull/47193) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44098](https://github.com/airbytehq/airbyte/pull/44098) | Refactor connector to manifest-only format | From e8de0ce4e04ab99fa1849fad0348ee27599690d0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:22 +0200 Subject: [PATCH 106/808] =?UTF-8?q?=F0=9F=90=99=20source-mixmax:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47578)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mixmax/metadata.yaml | 4 ++-- docs/integrations/sources/mixmax.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-mixmax/metadata.yaml b/airbyte-integrations/connectors/source-mixmax/metadata.yaml index d77974ce6585..7a1061536d2d 100644 --- a/airbyte-integrations/connectors/source-mixmax/metadata.yaml +++ b/airbyte-integrations/connectors/source-mixmax/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mixmax connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.7.3@sha256:4c4a567211fbcdf42805f261020bf5be46454bfeba781a92d30fe414ef964212 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 63df2e59-d086-4980-af83-01948325eacd - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-mixmax githubIssueLabel: source-mixmax icon: icon.svg diff --git a/docs/integrations/sources/mixmax.md b/docs/integrations/sources/mixmax.md index b13d67cfd89d..edc8fedaf456 100644 --- a/docs/integrations/sources/mixmax.md +++ b/docs/integrations/sources/mixmax.md @@ -44,6 +44,7 @@ Visit `https://developer.mixmax.com/reference/getting-started-with-the-api` for | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47578](https://github.com/airbytehq/airbyte/pull/47578) | Update dependencies | | 0.0.1 | 2024-09-26 | [45921](https://github.com/airbytehq/airbyte/pull/45921) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 5be1e8d2774771d33026156b6859e8c40acd31da Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:25 +0200 Subject: [PATCH 107/808] =?UTF-8?q?=F0=9F=90=99=20source-rd-station-market?= =?UTF-8?q?ing:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47577)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rd-station-marketing/metadata.yaml | 4 ++-- docs/integrations/sources/rd-station-marketing.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml b/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml index 413a39c484d6..8ec3ba38550a 100644 --- a/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: fb141f29-be2a-450b-a4f2-2cd203a00f84 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-rd-station-marketing githubIssueLabel: source-rd-station-marketing icon: rdstation.svg @@ -36,5 +36,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/rd-station-marketing.md b/docs/integrations/sources/rd-station-marketing.md index 803f0077a09d..cb5d5982b785 100644 --- a/docs/integrations/sources/rd-station-marketing.md +++ b/docs/integrations/sources/rd-station-marketing.md @@ -47,7 +47,8 @@ Each endpoint has its own performance limitations, which also consider the accou | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------- | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47577](https://github.com/airbytehq/airbyte/pull/47577) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-14 | [44081](https://github.com/airbytehq/airbyte/pull/44081) | Refactor connector to manifest-only format | | 0.2.8 | 2024-08-10 | [43486](https://github.com/airbytehq/airbyte/pull/43486) | Update dependencies | | 0.2.7 | 2024-08-03 | [43085](https://github.com/airbytehq/airbyte/pull/43085) | Update dependencies | From c45fb43d8825935426f1cd3c5065394a6485a69d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:28 +0200 Subject: [PATCH 108/808] =?UTF-8?q?=F0=9F=90=99=20source-oura:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47576)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-oura/metadata.yaml | 4 ++-- docs/integrations/sources/oura.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-oura/metadata.yaml b/airbyte-integrations/connectors/source-oura/metadata.yaml index 1e4973516fe8..eaba1395ae73 100644 --- a/airbyte-integrations/connectors/source-oura/metadata.yaml +++ b/airbyte-integrations/connectors/source-oura/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 2bf6c581-bec5-4e32-891d-de33036bd631 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-oura githubIssueLabel: source-oura icon: oura.svg diff --git a/docs/integrations/sources/oura.md b/docs/integrations/sources/oura.md index 1ec4bfb352f8..9a85e54aa158 100644 --- a/docs/integrations/sources/oura.md +++ b/docs/integrations/sources/oura.md @@ -56,6 +56,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------| +| 0.2.1 | 2024-10-28 | [47576](https://github.com/airbytehq/airbyte/pull/47576) | Update dependencies | | 0.2.0 | 2024-08-19 | [44409](https://github.com/airbytehq/airbyte/pull/44409) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-17 | [44271](https://github.com/airbytehq/airbyte/pull/44271) | Update dependencies | | 0.1.13 | 2024-08-12 | [43788](https://github.com/airbytehq/airbyte/pull/43788) | Update dependencies | From 053e8390bc3d242d33cf3ce8e9cf6898bbeb2128 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:32 +0200 Subject: [PATCH 109/808] =?UTF-8?q?=F0=9F=90=99=20source-7shifts:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47575)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-7shifts/metadata.yaml | 4 ++-- docs/integrations/sources/7shifts.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-7shifts/metadata.yaml b/airbyte-integrations/connectors/source-7shifts/metadata.yaml index a4f4cdcddaa6..467d8fef7ecf 100644 --- a/airbyte-integrations/connectors/source-7shifts/metadata.yaml +++ b/airbyte-integrations/connectors/source-7shifts/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-7shifts connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: a8b458a3-024f-430e-8f62-a200c3eb79fd - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-7shifts githubIssueLabel: source-7shifts icon: icon.svg diff --git a/docs/integrations/sources/7shifts.md b/docs/integrations/sources/7shifts.md index 2fe2528972b1..e27a0e8dcd8f 100644 --- a/docs/integrations/sources/7shifts.md +++ b/docs/integrations/sources/7shifts.md @@ -33,6 +33,7 @@ Generate an Access Token by navigating to "Company Settings", then "Developer To | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47575](https://github.com/airbytehq/airbyte/pull/47575) | Update dependencies | | 0.0.1 | 2024-09-18 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | - \ No newline at end of file + From 91f4d2d7494e9480f1d051248bc39fde9beda565 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:36 +0200 Subject: [PATCH 110/808] =?UTF-8?q?=F0=9F=90=99=20source-codefresh:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47574)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-codefresh/metadata.yaml | 4 ++-- docs/integrations/sources/codefresh.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-codefresh/metadata.yaml b/airbyte-integrations/connectors/source-codefresh/metadata.yaml index 532bae49b22f..b01c2731b675 100644 --- a/airbyte-integrations/connectors/source-codefresh/metadata.yaml +++ b/airbyte-integrations/connectors/source-codefresh/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-codefresh connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: cd8313fe-05cb-4439-aed5-26a2adc4856c - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-codefresh githubIssueLabel: source-codefresh icon: icon.svg diff --git a/docs/integrations/sources/codefresh.md b/docs/integrations/sources/codefresh.md index 4a62b0f382d7..b8b37fdfc7d8 100644 --- a/docs/integrations/sources/codefresh.md +++ b/docs/integrations/sources/codefresh.md @@ -36,6 +36,7 @@ It provides streams like agents, builds, audit, analytics etc. | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47574](https://github.com/airbytehq/airbyte/pull/47574) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 58b84f9d32637d9ff697ea7ef7df3f6237d8f83f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:39 +0200 Subject: [PATCH 111/808] =?UTF-8?q?=F0=9F=90=99=20source-tvmaze-schedule:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47573)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tvmaze-schedule/metadata.yaml | 4 ++-- docs/integrations/sources/tvmaze-schedule.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-tvmaze-schedule/metadata.yaml b/airbyte-integrations/connectors/source-tvmaze-schedule/metadata.yaml index 93d0728b89da..6863545c6c85 100644 --- a/airbyte-integrations/connectors/source-tvmaze-schedule/metadata.yaml +++ b/airbyte-integrations/connectors/source-tvmaze-schedule/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: bd14b08f-9f43-400f-b2b6-7248b5c72561 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-tvmaze-schedule githubIssueLabel: source-tvmaze-schedule icon: tvmazeschedule.svg @@ -42,5 +42,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/tvmaze-schedule.md b/docs/integrations/sources/tvmaze-schedule.md index 47504fc022d6..2f8f2e548a67 100644 --- a/docs/integrations/sources/tvmaze-schedule.md +++ b/docs/integrations/sources/tvmaze-schedule.md @@ -51,7 +51,8 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47573](https://github.com/airbytehq/airbyte/pull/47573) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44055](https://github.com/airbytehq/airbyte/pull/44055) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-12 | [43740](https://github.com/airbytehq/airbyte/pull/43740) | Update dependencies | | 0.1.12 | 2024-08-10 | [43530](https://github.com/airbytehq/airbyte/pull/43530) | Update dependencies | From 7f51f45c3a6714ae3ae57b4c5f1a04aeabb14e0e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:43 +0200 Subject: [PATCH 112/808] =?UTF-8?q?=F0=9F=90=99=20source-airbyte:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47572)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-airbyte/metadata.yaml | 4 ++-- docs/integrations/sources/airbyte.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-airbyte/metadata.yaml b/airbyte-integrations/connectors/source-airbyte/metadata.yaml index 521e8f35f209..05481609e7c8 100644 --- a/airbyte-integrations/connectors/source-airbyte/metadata.yaml +++ b/airbyte-integrations/connectors/source-airbyte/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-airbyte connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 284f6466-3004-4d83-a9b2-e4b36cbbbd41 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-airbyte githubIssueLabel: source-airbyte icon: icon.svg diff --git a/docs/integrations/sources/airbyte.md b/docs/integrations/sources/airbyte.md index d7801f306140..d7003794773e 100644 --- a/docs/integrations/sources/airbyte.md +++ b/docs/integrations/sources/airbyte.md @@ -23,6 +23,7 @@ This source allows you to sync up data about your Airbyte Cloud workspaces. [Tak | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47572](https://github.com/airbytehq/airbyte/pull/47572) | Update dependencies | | 0.0.1 | 2024-08-27 | | Initial release by [@johnwasserman](https://github.com/johnwasserman) via Connector Builder | - \ No newline at end of file + From 3c8dbf9fcb353f3142f7a405effd6c94091dbe38 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:46 +0200 Subject: [PATCH 113/808] =?UTF-8?q?=F0=9F=90=99=20source-simplecast:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47571)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-simplecast/metadata.yaml | 4 ++-- docs/integrations/sources/simplecast.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-simplecast/metadata.yaml b/airbyte-integrations/connectors/source-simplecast/metadata.yaml index 454db23a35d3..3faa491b5a1d 100644 --- a/airbyte-integrations/connectors/source-simplecast/metadata.yaml +++ b/airbyte-integrations/connectors/source-simplecast/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-simplecast connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 776ca64c-95eb-47ec-a54d-9db3d16435d0 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-simplecast githubIssueLabel: source-simplecast icon: icon.svg diff --git a/docs/integrations/sources/simplecast.md b/docs/integrations/sources/simplecast.md index edd10e38320b..692d93e842e3 100644 --- a/docs/integrations/sources/simplecast.md +++ b/docs/integrations/sources/simplecast.md @@ -27,6 +27,7 @@ Say hello to the modern end-to-end podcasting platform. Simplecast remains the e | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47571](https://github.com/airbytehq/airbyte/pull/47571) | Update dependencies | | 0.0.1 | 2024-10-03 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 04e544049dbfed94b7458db43bf77dc872fe0de8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:49 +0200 Subject: [PATCH 114/808] =?UTF-8?q?=F0=9F=90=99=20source-gmail:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47570)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gmail/metadata.yaml | 4 ++-- docs/integrations/sources/gmail.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-gmail/metadata.yaml b/airbyte-integrations/connectors/source-gmail/metadata.yaml index 68d5391006e3..e4c6e7333f05 100644 --- a/airbyte-integrations/connectors/source-gmail/metadata.yaml +++ b/airbyte-integrations/connectors/source-gmail/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-gmail connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.11.1@sha256:f48a7ddc1f3acecbd8eb6a10a3146e8d0396e9a4dede77beafb76924f416df65 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: f7833dac-fc18-4feb-a2a9-94b22001edc6 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-gmail githubIssueLabel: source-gmail icon: icon.svg diff --git a/docs/integrations/sources/gmail.md b/docs/integrations/sources/gmail.md index 25f72461a1a9..600b88a46c94 100644 --- a/docs/integrations/sources/gmail.md +++ b/docs/integrations/sources/gmail.md @@ -33,6 +33,7 @@ Note that this connector uses the Google API OAuth2.0 for authentication. To get | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47570](https://github.com/airbytehq/airbyte/pull/47570) | Update dependencies | | 0.0.1 | 2024-10-09 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 579396bcb7025a847006f8c0256e22ed351db313 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:54 +0200 Subject: [PATCH 115/808] =?UTF-8?q?=F0=9F=90=99=20source-piwik:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47569)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-piwik/metadata.yaml | 4 ++-- docs/integrations/sources/piwik.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-piwik/metadata.yaml b/airbyte-integrations/connectors/source-piwik/metadata.yaml index 216438f39aeb..56fd67805fa5 100644 --- a/airbyte-integrations/connectors/source-piwik/metadata.yaml +++ b/airbyte-integrations/connectors/source-piwik/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-piwik connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 09f894a4-d2fb-488f-b0eb-640205314296 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-piwik githubIssueLabel: source-piwik icon: icon.svg diff --git a/docs/integrations/sources/piwik.md b/docs/integrations/sources/piwik.md index 834b14e8579e..5a8f1ce59a75 100644 --- a/docs/integrations/sources/piwik.md +++ b/docs/integrations/sources/piwik.md @@ -41,6 +41,7 @@ Visit `https://developers.piwik.pro/en/latest/platform/getting_started.html#gene | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47569](https://github.com/airbytehq/airbyte/pull/47569) | Update dependencies | | 0.0.1 | 2024-09-14 | [45586](https://github.com/airbytehq/airbyte/pull/45586) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 80e223f6bc9c12cbbbc1ed5b1529bef802610381 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:11:58 +0200 Subject: [PATCH 116/808] =?UTF-8?q?=F0=9F=90=99=20source-calendly:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47568)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-calendly/metadata.yaml | 4 ++-- docs/integrations/sources/calendly.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-calendly/metadata.yaml b/airbyte-integrations/connectors/source-calendly/metadata.yaml index 4b22bfe614a8..ae3f2287ba5a 100644 --- a/airbyte-integrations/connectors/source-calendly/metadata.yaml +++ b/airbyte-integrations/connectors/source-calendly/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-calendly connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: b8f2cbee-b073-4dd8-9b80-97d7bae967a4 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-calendly githubIssueLabel: source-calendly icon: icon.svg diff --git a/docs/integrations/sources/calendly.md b/docs/integrations/sources/calendly.md index 00d8ea8a6c57..62b25401a85b 100644 --- a/docs/integrations/sources/calendly.md +++ b/docs/integrations/sources/calendly.md @@ -32,6 +32,7 @@ Incremental sync in `scheduled_events` uses `start_time` as a cursor. This may l | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47568](https://github.com/airbytehq/airbyte/pull/47568) | Update dependencies | | 0.0.1 | 2024-09-01 | | Initial release by [@natikgadzhi](https://github.com/natikgadzhi) via Connector Builder | From 1de0f87f111c77db2f43b7b17a6d3728d9137f62 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:03 +0200 Subject: [PATCH 117/808] =?UTF-8?q?=F0=9F=90=99=20source-senseforce:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47567)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-senseforce/metadata.yaml | 4 ++-- docs/integrations/sources/senseforce.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-senseforce/metadata.yaml b/airbyte-integrations/connectors/source-senseforce/metadata.yaml index 638fd497a4bf..154f81ce27cb 100644 --- a/airbyte-integrations/connectors/source-senseforce/metadata.yaml +++ b/airbyte-integrations/connectors/source-senseforce/metadata.yaml @@ -6,7 +6,7 @@ data: connectorSubtype: api connectorType: source definitionId: 39de93cb-1511-473e-a673-5cbedb9436af - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-senseforce githubIssueLabel: source-senseforce icon: senseforce.svg @@ -47,5 +47,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/senseforce.md b/docs/integrations/sources/senseforce.md index 2de9395fcb93..a7b43f471dbc 100644 --- a/docs/integrations/sources/senseforce.md +++ b/docs/integrations/sources/senseforce.md @@ -87,7 +87,8 @@ Senseforce utilizes an undocumented rate limit which - under normal use - should | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47567](https://github.com/airbytehq/airbyte/pull/47567) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44073](https://github.com/airbytehq/airbyte/pull/44073) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-12 | [43865](https://github.com/airbytehq/airbyte/pull/43865) | Update dependencies | | 0.1.14 | 2024-08-10 | [43704](https://github.com/airbytehq/airbyte/pull/43704) | Update dependencies | From 3f42e3442b8ffdf2843f7ef50a6b0393bd75290f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:08 +0200 Subject: [PATCH 118/808] =?UTF-8?q?=F0=9F=90=99=20source-secoda:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47566)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-secoda/metadata.yaml | 4 ++-- docs/integrations/sources/secoda.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-secoda/metadata.yaml b/airbyte-integrations/connectors/source-secoda/metadata.yaml index a025ce40819b..e7901268cc64 100644 --- a/airbyte-integrations/connectors/source-secoda/metadata.yaml +++ b/airbyte-integrations/connectors/source-secoda/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: da9fc6b9-8059-4be0-b204-f56e22e4d52d - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-secoda githubIssueLabel: source-secoda icon: secoda.svg @@ -42,5 +42,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/secoda.md b/docs/integrations/sources/secoda.md index 2f03d0240040..11291ff9e8f8 100644 --- a/docs/integrations/sources/secoda.md +++ b/docs/integrations/sources/secoda.md @@ -32,7 +32,8 @@ This source can sync data from the [Secoda API](https://docs.secoda.co/secoda-ap | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47566](https://github.com/airbytehq/airbyte/pull/47566) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44074](https://github.com/airbytehq/airbyte/pull/44074) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43864](https://github.com/airbytehq/airbyte/pull/43864) | Update dependencies | | 0.1.13 | 2024-08-10 | [43631](https://github.com/airbytehq/airbyte/pull/43631) | Update dependencies | From 07e84c1034dba0db1bd2a185fac928281ca43edf Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:14 +0200 Subject: [PATCH 119/808] =?UTF-8?q?=F0=9F=90=99=20source-when-i-work:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47565)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-when-i-work/metadata.yaml | 4 ++-- docs/integrations/sources/when-i-work.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-when-i-work/metadata.yaml b/airbyte-integrations/connectors/source-when-i-work/metadata.yaml index bba5850557d7..eb1dd5a0717d 100644 --- a/airbyte-integrations/connectors/source-when-i-work/metadata.yaml +++ b/airbyte-integrations/connectors/source-when-i-work/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-when-i-work connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 81ee3b58-ae1e-4727-be23-30248fa27a0a - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-when-i-work githubIssueLabel: source-when-i-work icon: icon.svg diff --git a/docs/integrations/sources/when-i-work.md b/docs/integrations/sources/when-i-work.md index 3d284d5f9d1c..9bd0b1c2a7f0 100644 --- a/docs/integrations/sources/when-i-work.md +++ b/docs/integrations/sources/when-i-work.md @@ -38,6 +38,7 @@ You have to give your login email and password used with `when-i-work` account f | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47565](https://github.com/airbytehq/airbyte/pull/47565) | Update dependencies | | 0.0.1 | 2024-09-10 | [45367](https://github.com/airbytehq/airbyte/pull/45367) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 16259d705c0676b5d4e808e1ba53cd1cdf981853 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:18 +0200 Subject: [PATCH 120/808] =?UTF-8?q?=F0=9F=90=99=20source-shortio:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47564)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-shortio/metadata.yaml | 4 ++-- docs/integrations/sources/shortio.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-shortio/metadata.yaml b/airbyte-integrations/connectors/source-shortio/metadata.yaml index e967c3a271a0..8c7b19e70f6e 100644 --- a/airbyte-integrations/connectors/source-shortio/metadata.yaml +++ b/airbyte-integrations/connectors/source-shortio/metadata.yaml @@ -4,7 +4,7 @@ data: - https://api.short.io - https://api-v2.short.cm connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 remoteRegistries: pypi: enabled: false @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2fed2292-5586-480c-af92-9944e39fe12d - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-shortio githubIssueLabel: source-shortio icon: shortio.svg diff --git a/docs/integrations/sources/shortio.md b/docs/integrations/sources/shortio.md index 6a5b62520ea9..c9d4b04cfc32 100644 --- a/docs/integrations/sources/shortio.md +++ b/docs/integrations/sources/shortio.md @@ -44,7 +44,8 @@ This Source is capable of syncing the following Streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47564](https://github.com/airbytehq/airbyte/pull/47564) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-14 | [44066](https://github.com/airbytehq/airbyte/pull/44066) | Refactor connector to manifest-only format | | 0.2.13 | 2024-08-12 | [43852](https://github.com/airbytehq/airbyte/pull/43852) | Update dependencies | | 0.2.12 | 2024-08-10 | [43602](https://github.com/airbytehq/airbyte/pull/43602) | Update dependencies | From 046999c615e3be85c73d27dafc8a0d92a6ed3cee Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:24 +0200 Subject: [PATCH 121/808] =?UTF-8?q?=F0=9F=90=99=20source-pendo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47563)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pendo/metadata.yaml | 4 ++-- docs/integrations/sources/pendo.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-pendo/metadata.yaml b/airbyte-integrations/connectors/source-pendo/metadata.yaml index be1a16899db9..637f662ae77e 100644 --- a/airbyte-integrations/connectors/source-pendo/metadata.yaml +++ b/airbyte-integrations/connectors/source-pendo/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: b1ccb590-e84f-46c0-83a0-2048ccfffdae - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-pendo documentationUrl: https://docs.airbyte.com/integrations/sources/pendo githubIssueLabel: source-pendo diff --git a/docs/integrations/sources/pendo.md b/docs/integrations/sources/pendo.md index b5e390e63fad..18f78fb8ce97 100644 --- a/docs/integrations/sources/pendo.md +++ b/docs/integrations/sources/pendo.md @@ -64,7 +64,8 @@ The Pendo source connector supports the following [sync modes](https://docs.airb | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47563](https://github.com/airbytehq/airbyte/pull/47563) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44100](https://github.com/airbytehq/airbyte/pull/44100) | Refactor connector to manifest-only format | | 0.1.16 | 2024-08-10 | [43593](https://github.com/airbytehq/airbyte/pull/43593) | Update dependencies | | 0.1.15 | 2024-08-03 | [43114](https://github.com/airbytehq/airbyte/pull/43114) | Update dependencies | From 9ccb33ad1e61aa5cac3660efd5856ac17caf3ffc Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:28 +0200 Subject: [PATCH 122/808] =?UTF-8?q?=F0=9F=90=99=20source-news-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47562)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-news-api/metadata.yaml | 4 ++-- docs/integrations/sources/news-api.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-news-api/metadata.yaml b/airbyte-integrations/connectors/source-news-api/metadata.yaml index e9eb0603c944..40b702fd9252 100644 --- a/airbyte-integrations/connectors/source-news-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-news-api/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: df38991e-f35b-4af2-996d-36817f614587 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-news-api githubIssueLabel: source-news-api icon: newsapi.svg diff --git a/docs/integrations/sources/news-api.md b/docs/integrations/sources/news-api.md index f230e33c950e..a086129ac504 100644 --- a/docs/integrations/sources/news-api.md +++ b/docs/integrations/sources/news-api.md @@ -61,7 +61,8 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :--------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47562](https://github.com/airbytehq/airbyte/pull/47562) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44114](https://github.com/airbytehq/airbyte/pull/44114) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-12 | [43908](https://github.com/airbytehq/airbyte/pull/43908) | Update dependencies | | 0.1.14 | 2024-08-10 | [43589](https://github.com/airbytehq/airbyte/pull/43589) | Update dependencies | From 2a3f268f95ddbf8b9e577452fda0b3d5d61cf822 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:32 +0200 Subject: [PATCH 123/808] =?UTF-8?q?=F0=9F=90=99=20source-spacex-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47561)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-spacex-api/metadata.yaml | 4 ++-- docs/integrations/sources/spacex-api.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-spacex-api/metadata.yaml b/airbyte-integrations/connectors/source-spacex-api/metadata.yaml index a3e7a44c35f5..7dd00606c5ef 100644 --- a/airbyte-integrations/connectors/source-spacex-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-spacex-api/metadata.yaml @@ -6,11 +6,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 62235e65-af7a-4138-9130-0bda954eb6a8 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-spacex-api githubIssueLabel: source-spacex-api icon: spacex.svg diff --git a/docs/integrations/sources/spacex-api.md b/docs/integrations/sources/spacex-api.md index 9009a4d56fd0..6bd34b441bf0 100644 --- a/docs/integrations/sources/spacex-api.md +++ b/docs/integrations/sources/spacex-api.md @@ -75,7 +75,8 @@ The SpaceX API has both v4 and v5 for [launches](https://github.com/r-spacex/Spa | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------| -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47561](https://github.com/airbytehq/airbyte/pull/47561) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-09 | [43431](https://github.com/airbytehq/airbyte/pull/43431) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-03 | [43176](https://github.com/airbytehq/airbyte/pull/43176) | Update dependencies | | 0.1.12 | 2024-07-27 | [42792](https://github.com/airbytehq/airbyte/pull/42792) | Update dependencies | From 94d39f0ba215daff0608d5ffc60b6824c86c01ba Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:37 +0200 Subject: [PATCH 124/808] =?UTF-8?q?=F0=9F=90=99=20source-chargedesk:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47560)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chargedesk/metadata.yaml | 4 ++-- docs/integrations/sources/chargedesk.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-chargedesk/metadata.yaml b/airbyte-integrations/connectors/source-chargedesk/metadata.yaml index af9a5c538b59..309ba68435b2 100644 --- a/airbyte-integrations/connectors/source-chargedesk/metadata.yaml +++ b/airbyte-integrations/connectors/source-chargedesk/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-chargedesk connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: cd803254-3d2c-4613-a870-20d205ee6267 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-chargedesk githubIssueLabel: source-chargedesk icon: icon.svg diff --git a/docs/integrations/sources/chargedesk.md b/docs/integrations/sources/chargedesk.md index eee084dbfaec..3c33840f6a5b 100644 --- a/docs/integrations/sources/chargedesk.md +++ b/docs/integrations/sources/chargedesk.md @@ -30,6 +30,7 @@ You can find more about the API here https://chargedesk.com/api-docs | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47560](https://github.com/airbytehq/airbyte/pull/47560) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From c91004d6ac659e119025321e58dc18e4e10c0188 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:41 +0200 Subject: [PATCH 125/808] =?UTF-8?q?=F0=9F=90=99=20source-coingecko-coins:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47559)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-coingecko-coins/metadata.yaml | 4 ++-- docs/integrations/sources/coingecko-coins.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml index 97921e907118..b202e170f669 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml +++ b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml @@ -2,14 +2,14 @@ data: connectorSubtype: api connectorType: source definitionId: 9cdd4183-d0ba-40c3-aad3-6f46d4103974 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-coingecko-coins githubIssueLabel: source-coingecko-coins icon: coingeckocoins.svg license: MIT name: CoinGecko Coins connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.3@sha256:c313c25af0617f5879361e684c956ac25ac1122beaf311c967e5b7a9b45ded79 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 remoteRegistries: pypi: enabled: false diff --git a/docs/integrations/sources/coingecko-coins.md b/docs/integrations/sources/coingecko-coins.md index 24ce82cc0092..f0be98570777 100644 --- a/docs/integrations/sources/coingecko-coins.md +++ b/docs/integrations/sources/coingecko-coins.md @@ -52,6 +52,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------- | +| 0.2.1 | 2024-10-28 | [47559](https://github.com/airbytehq/airbyte/pull/47559) | Update dependencies | | 0.2.0 | 2024-08-22 | [44565](https://github.com/airbytehq/airbyte/pull/44565) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-17 | [44306](https://github.com/airbytehq/airbyte/pull/44306) | Update dependencies | | 0.1.12 | 2024-08-12 | [43911](https://github.com/airbytehq/airbyte/pull/43911) | Update dependencies | From f45bfd09eaf0a368982604385a79fb1b1aa93560 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:45 +0200 Subject: [PATCH 126/808] =?UTF-8?q?=F0=9F=90=99=20source-savvycal:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47558)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-savvycal/metadata.yaml | 4 ++-- docs/integrations/sources/savvycal.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-savvycal/metadata.yaml b/airbyte-integrations/connectors/source-savvycal/metadata.yaml index 5402fd0f8483..dd1140887566 100644 --- a/airbyte-integrations/connectors/source-savvycal/metadata.yaml +++ b/airbyte-integrations/connectors/source-savvycal/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-savvycal connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: a554ed06-74e2-4c60-9510-d63f7dc463b6 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-savvycal githubIssueLabel: source-savvycal icon: icon.svg diff --git a/docs/integrations/sources/savvycal.md b/docs/integrations/sources/savvycal.md index ec68ccd6d61b..e560228ea746 100644 --- a/docs/integrations/sources/savvycal.md +++ b/docs/integrations/sources/savvycal.md @@ -21,6 +21,7 @@ Sync your scheduled meetings and scheduling links from SavvyCal! | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47558](https://github.com/airbytehq/airbyte/pull/47558) | Update dependencies | | 0.0.1 | 2024-09-01 | | Initial release by [@natikgadzhi](https://github.com/natikgadzhi) via Connector Builder | - \ No newline at end of file + From a67bad5e144e745b0e356a7c586a18441c7d309f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:49 +0200 Subject: [PATCH 127/808] =?UTF-8?q?=F0=9F=90=99=20source-countercyclical:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47557)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-countercyclical/metadata.yaml | 4 ++-- docs/integrations/sources/countercyclical.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-countercyclical/metadata.yaml b/airbyte-integrations/connectors/source-countercyclical/metadata.yaml index 1c199728162b..9807c68fa5aa 100644 --- a/airbyte-integrations/connectors/source-countercyclical/metadata.yaml +++ b/airbyte-integrations/connectors/source-countercyclical/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-countercyclical connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: cd671e85-accc-4f85-8f79-b55294e95a11 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-countercyclical githubIssueLabel: source-countercyclical icon: icon.svg diff --git a/docs/integrations/sources/countercyclical.md b/docs/integrations/sources/countercyclical.md index 1eff9bdf1e55..7c4ee6be62cb 100644 --- a/docs/integrations/sources/countercyclical.md +++ b/docs/integrations/sources/countercyclical.md @@ -21,6 +21,7 @@ Countercyclical is the fully end-to-end financial intelligence platform designed | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47557](https://github.com/airbytehq/airbyte/pull/47557) | Update dependencies | | 0.0.1 | 2024-10-06 | | Initial release by [@williamleiby](https://github.com/williamleiby) via Connector Builder | From 0e6a7acb59eb103998f2f192f7c7dc155aa5ca0e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:53 +0200 Subject: [PATCH 128/808] =?UTF-8?q?=F0=9F=90=99=20source-cimis:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47556)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-cimis/metadata.yaml | 4 ++-- docs/integrations/sources/cimis.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-cimis/metadata.yaml b/airbyte-integrations/connectors/source-cimis/metadata.yaml index cc75aeccba67..7c50fb1a9259 100644 --- a/airbyte-integrations/connectors/source-cimis/metadata.yaml +++ b/airbyte-integrations/connectors/source-cimis/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-cimis connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: d169ef9b-6741-4af6-b4c8-7ec4410d7f0e - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-cimis githubIssueLabel: source-cimis icon: icon.svg diff --git a/docs/integrations/sources/cimis.md b/docs/integrations/sources/cimis.md index 0f967aa39611..13fcf3d8c6d8 100644 --- a/docs/integrations/sources/cimis.md +++ b/docs/integrations/sources/cimis.md @@ -33,6 +33,7 @@ To get started, register and request your appKey from the [CIMIS website](https: | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47556](https://github.com/airbytehq/airbyte/pull/47556) | Update dependencies | | 0.0.1 | 2024-09-18 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 40ce46a56d5f50a0f4e6d10f600f45aaf22fb963 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:12:57 +0200 Subject: [PATCH 129/808] =?UTF-8?q?=F0=9F=90=99=20source-whisky-hunter:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-28]=20(#47555)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-whisky-hunter/metadata.yaml | 4 ++-- docs/integrations/sources/whisky-hunter.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml b/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml index 84c87c892c0f..da7d6fb3ed64 100644 --- a/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml +++ b/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: e65f84c0-7598-458a-bfac-f770c381ff5d - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-whisky-hunter githubIssueLabel: source-whisky-hunter icon: whiskyhunter.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/whisky-hunter.md b/docs/integrations/sources/whisky-hunter.md index 77a90cad3b36..56e04f3af44a 100644 --- a/docs/integrations/sources/whisky-hunter.md +++ b/docs/integrations/sources/whisky-hunter.md @@ -38,7 +38,8 @@ There is no published rate limit. However, since this data updates infrequently, | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47555](https://github.com/airbytehq/airbyte/pull/47555) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44045](https://github.com/airbytehq/airbyte/pull/44045) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43793](https://github.com/airbytehq/airbyte/pull/43793) | Update dependencies | | 0.1.13 | 2024-08-10 | [43553](https://github.com/airbytehq/airbyte/pull/43553) | Update dependencies | From fe05257c8820fde5c6fa509adeedb716838a9ea8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:13:01 +0200 Subject: [PATCH 130/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-entra-i?= =?UTF-8?q?d:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47554)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/integrations/sources/microsoft-entra-id.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/sources/microsoft-entra-id.md b/docs/integrations/sources/microsoft-entra-id.md index 726a021a76bc..642c8f3ff04e 100644 --- a/docs/integrations/sources/microsoft-entra-id.md +++ b/docs/integrations/sources/microsoft-entra-id.md @@ -37,7 +37,7 @@ First of all you need to register an application in the Microsoft Entra Admin Ce | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| -| 0.0.2 | 2024-10-28 | [47479](https://github.com/airbytehq/airbyte/pull/47479) | Update dependencies | +| 0.0.2 | 2024-10-28 | [47554](https://github.com/airbytehq/airbyte/pull/47554) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 5e7c1ec508f19e09e0fce0afc717a71515e80f15 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:13:06 +0200 Subject: [PATCH 131/808] =?UTF-8?q?=F0=9F=90=99=20source-confluence:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47553)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-confluence/metadata.yaml | 4 ++-- docs/integrations/sources/confluence.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-confluence/metadata.yaml b/airbyte-integrations/connectors/source-confluence/metadata.yaml index 20e6efb20f67..26064d2f10a5 100644 --- a/airbyte-integrations/connectors/source-confluence/metadata.yaml +++ b/airbyte-integrations/connectors/source-confluence/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - ${subdomain}.atlassian.net connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: cf40a7f8-71f8-45ce-a7fa-fca053e4028c - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-confluence documentationUrl: https://docs.airbyte.com/integrations/sources/confluence githubIssueLabel: source-confluence diff --git a/docs/integrations/sources/confluence.md b/docs/integrations/sources/confluence.md index 272f4064b0a6..78762cac1ddb 100644 --- a/docs/integrations/sources/confluence.md +++ b/docs/integrations/sources/confluence.md @@ -63,7 +63,8 @@ The Confluence connector should not run into Confluence API limitations under no | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47553](https://github.com/airbytehq/airbyte/pull/47553) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44162](https://github.com/airbytehq/airbyte/pull/44162) | Refactor connector to manifest-only format | | 0.2.16 | 2024-08-10 | [43573](https://github.com/airbytehq/airbyte/pull/43573) | Update dependencies | | 0.2.15 | 2024-08-03 | [43053](https://github.com/airbytehq/airbyte/pull/43053) | Update dependencies | From 9e8c9d6c9863f0f171051f631f76346bdf0ef72a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:13:10 +0200 Subject: [PATCH 132/808] =?UTF-8?q?=F0=9F=90=99=20source-teamwork:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47552)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-teamwork/metadata.yaml | 4 ++-- docs/integrations/sources/teamwork.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-teamwork/metadata.yaml b/airbyte-integrations/connectors/source-teamwork/metadata.yaml index 11cc4f7285e5..b8df2dab5ee5 100644 --- a/airbyte-integrations/connectors/source-teamwork/metadata.yaml +++ b/airbyte-integrations/connectors/source-teamwork/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-teamwork connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 7fcd456d-2c13-4437-a05b-cf436699a519 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-teamwork githubIssueLabel: source-teamwork icon: icon.svg diff --git a/docs/integrations/sources/teamwork.md b/docs/integrations/sources/teamwork.md index 288a747c513e..95e9db059680 100644 --- a/docs/integrations/sources/teamwork.md +++ b/docs/integrations/sources/teamwork.md @@ -57,6 +57,7 @@ Your default login username and password could be used as secrets, ref: `https:/ | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47552](https://github.com/airbytehq/airbyte/pull/47552) | Update dependencies | | 0.0.1 | 2024-09-05 | [45155](https://github.com/airbytehq/airbyte/pull/45155) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From f081f66fb64164f3fc9ab5aab2fbaea89dbf86b6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:13:16 +0200 Subject: [PATCH 133/808] =?UTF-8?q?=F0=9F=90=99=20source-google-tasks:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47550)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-google-tasks/metadata.yaml | 4 ++-- docs/integrations/sources/google-tasks.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-tasks/metadata.yaml b/airbyte-integrations/connectors/source-google-tasks/metadata.yaml index e97b8828856b..f8fe26e98ff5 100644 --- a/airbyte-integrations/connectors/source-google-tasks/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-tasks/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-google-tasks connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 751c2519-1446-416e-9736-9b98585f8125 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-google-tasks githubIssueLabel: source-google-tasks icon: icon.svg diff --git a/docs/integrations/sources/google-tasks.md b/docs/integrations/sources/google-tasks.md index 5b9e0d040582..4ed5525cba26 100644 --- a/docs/integrations/sources/google-tasks.md +++ b/docs/integrations/sources/google-tasks.md @@ -43,6 +43,7 @@ Steps: | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47550](https://github.com/airbytehq/airbyte/pull/47550) | Update dependencies | | 0.0.1 | 2024-09-12 | [45427](https://github.com/airbytehq/airbyte/pull/45427) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From f7028c9144cb8ba40ce7a9f674bda990ba862eb2 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:13:21 +0200 Subject: [PATCH 134/808] =?UTF-8?q?=F0=9F=90=99=20source-exchange-rates:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47549)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-exchange-rates/metadata.yaml | 4 ++-- docs/integrations/sources/exchange-rates.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml b/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml index b2d0a670e215..fe469dcb8023 100644 --- a/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml +++ b/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml @@ -16,11 +16,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: e2b40e36-aa0e-4bed-b41b-bcea6fa348b1 - dockerImageTag: 1.4.1 + dockerImageTag: 1.4.2 dockerRepository: airbyte/source-exchange-rates githubIssueLabel: source-exchange-rates icon: exchangeratesapi.svg diff --git a/docs/integrations/sources/exchange-rates.md b/docs/integrations/sources/exchange-rates.md index 410312159b1c..d5979f155803 100644 --- a/docs/integrations/sources/exchange-rates.md +++ b/docs/integrations/sources/exchange-rates.md @@ -90,7 +90,8 @@ The Exchange Rates API has rate limits that vary per pricing plan. The free plan | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------ | -| 1.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 1.4.2 | 2024-10-28 | [47549](https://github.com/airbytehq/airbyte/pull/47549) | Update dependencies | +| 1.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.4.0 | 2024-08-15 | [44150](https://github.com/airbytehq/airbyte/pull/44150) | Refactor connector to manifest-only format | | 1.3.11 | 2024-08-12 | [43761](https://github.com/airbytehq/airbyte/pull/43761) | Update dependencies | | 1.3.10 | 2024-08-10 | [43639](https://github.com/airbytehq/airbyte/pull/43639) | Update dependencies | From 4f7d0ccc5eff8212f382253c6fbfb30e37106aa8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:13:34 +0200 Subject: [PATCH 135/808] =?UTF-8?q?=F0=9F=90=99=20source-glassfrog:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47519)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-glassfrog/metadata.yaml | 4 ++-- docs/integrations/sources/glassfrog.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-glassfrog/metadata.yaml b/airbyte-integrations/connectors/source-glassfrog/metadata.yaml index 9286905fbd4b..ba8b487aa7f5 100644 --- a/airbyte-integrations/connectors/source-glassfrog/metadata.yaml +++ b/airbyte-integrations/connectors/source-glassfrog/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.glassfrog.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: cf8ff320-6272-4faa-89e6-4402dc17e5d5 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-glassfrog documentationUrl: https://docs.airbyte.com/integrations/sources/glassfrog githubIssueLabel: source-glassfrog diff --git a/docs/integrations/sources/glassfrog.md b/docs/integrations/sources/glassfrog.md index e92d2cce9e17..f6d3de8cade2 100644 --- a/docs/integrations/sources/glassfrog.md +++ b/docs/integrations/sources/glassfrog.md @@ -50,7 +50,8 @@ This Source is capable of syncing the following Streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47519](https://github.com/airbytehq/airbyte/pull/47519) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44146](https://github.com/airbytehq/airbyte/pull/44146) | Refactor connector to manifest-only format | | 0.2.15 | 2024-08-10 | [43676](https://github.com/airbytehq/airbyte/pull/43676) | Update dependencies | | 0.2.14 | 2024-08-03 | [43261](https://github.com/airbytehq/airbyte/pull/43261) | Update dependencies | From 01faa18645080a75ac94d4574ce63f99aa3d3890 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:13:49 +0200 Subject: [PATCH 136/808] =?UTF-8?q?=F0=9F=90=99=20source-linnworks:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47116)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-linnworks/metadata.yaml | 2 +- .../connectors/source-linnworks/poetry.lock | 314 +++++++++--------- .../source-linnworks/pyproject.toml | 2 +- docs/integrations/sources/linnworks.md | 1 + 4 files changed, 152 insertions(+), 167 deletions(-) diff --git a/airbyte-integrations/connectors/source-linnworks/metadata.yaml b/airbyte-integrations/connectors/source-linnworks/metadata.yaml index 92c319396695..36dfef5f3489 100644 --- a/airbyte-integrations/connectors/source-linnworks/metadata.yaml +++ b/airbyte-integrations/connectors/source-linnworks/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7b86879e-26c5-4ef6-a5ce-2be5c7b46d1e - dockerImageTag: 0.1.30 + dockerImageTag: 0.1.31 dockerRepository: airbyte/source-linnworks documentationUrl: https://docs.airbyte.com/integrations/sources/linnworks githubIssueLabel: source-linnworks diff --git a/airbyte-integrations/connectors/source-linnworks/poetry.lock b/airbyte-integrations/connectors/source-linnworks/poetry.lock index f1479190ec09..ea99306eefd1 100644 --- a/airbyte-integrations/connectors/source-linnworks/poetry.lock +++ b/airbyte-integrations/connectors/source-linnworks/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -1095,13 +1095,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1311,109 +1311,93 @@ files = [ [[package]] name = "yarl" -version = "1.15.0" +version = "1.16.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19"}, - {file = "yarl-1.15.0-cp310-cp310-win32.whl", hash = "sha256:4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9"}, - {file = "yarl-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1"}, - {file = "yarl-1.15.0-cp311-cp311-win32.whl", hash = "sha256:a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb"}, - {file = "yarl-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d"}, - {file = "yarl-1.15.0-cp312-cp312-win32.whl", hash = "sha256:e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4"}, - {file = "yarl-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e"}, - {file = "yarl-1.15.0-cp313-cp313-win32.whl", hash = "sha256:eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53"}, - {file = "yarl-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738"}, - {file = "yarl-1.15.0-cp38-cp38-win32.whl", hash = "sha256:d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95"}, - {file = "yarl-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9"}, - {file = "yarl-1.15.0-cp39-cp39-win32.whl", hash = "sha256:a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb"}, - {file = "yarl-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0"}, - {file = "yarl-1.15.0-py3-none-any.whl", hash = "sha256:1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5"}, - {file = "yarl-1.15.0.tar.gz", hash = "sha256:efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32468f41242d72b87ab793a86d92f885355bcf35b3355aa650bfa846a5c60058"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:234f3a3032b505b90e65b5bc6652c2329ea7ea8855d8de61e1642b74b4ee65d2"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a0296040e5cddf074c7f5af4a60f3fc42c0237440df7bcf5183be5f6c802ed5"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de6c14dd7c7c0badba48157474ea1f03ebee991530ba742d381b28d4f314d6f3"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b140e532fe0266003c936d017c1ac301e72ee4a3fd51784574c05f53718a55d8"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:019f5d58093402aa8f6661e60fd82a28746ad6d156f6c5336a70a39bd7b162b9"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c42998fd1cbeb53cd985bff0e4bc25fbe55fd6eb3a545a724c1012d69d5ec84"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7c30fb38c300fe8140df30a046a01769105e4cf4282567a29b5cdb635b66c4"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e49e0fd86c295e743fd5be69b8b0712f70a686bc79a16e5268386c2defacaade"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:b9ca7b9147eb1365c8bab03c003baa1300599575effad765e0b07dd3501ea9af"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:27e11db3f1e6a51081a981509f75617b09810529de508a181319193d320bc5c7"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8994c42f4ca25df5380ddf59f315c518c81df6a68fed5bb0c159c6cb6b92f120"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:542fa8e09a581bcdcbb30607c7224beff3fdfb598c798ccd28a8184ffc18b7eb"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2bd6a51010c7284d191b79d3b56e51a87d8e1c03b0902362945f15c3d50ed46b"}, + {file = "yarl-1.16.0-cp310-cp310-win32.whl", hash = "sha256:178ccb856e265174a79f59721031060f885aca428983e75c06f78aa24b91d929"}, + {file = "yarl-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe8bba2545427418efc1929c5c42852bdb4143eb8d0a46b09de88d1fe99258e7"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d8643975a0080f361639787415a038bfc32d29208a4bf6b783ab3075a20b1ef3"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:676d96bafc8c2d0039cea0cd3fd44cee7aa88b8185551a2bb93354668e8315c2"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9525f03269e64310416dbe6c68d3b23e5d34aaa8f47193a1c45ac568cecbc49"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b37d5ec034e668b22cf0ce1074d6c21fd2a08b90d11b1b73139b750a8b0dd97"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f32c4cb7386b41936894685f6e093c8dfaf0960124d91fe0ec29fe439e201d0"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b8e265a0545637492a7e12fd7038370d66c9375a61d88c5567d0e044ded9202"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:789a3423f28a5fff46fbd04e339863c169ece97c827b44de16e1a7a42bc915d2"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1d1f45e3e8d37c804dca99ab3cf4ab3ed2e7a62cd82542924b14c0a4f46d243"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:621280719c4c5dad4c1391160a9b88925bb8b0ff6a7d5af3224643024871675f"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed097b26f18a1f5ff05f661dc36528c5f6735ba4ce8c9645e83b064665131349"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2f1fe2b2e3ee418862f5ebc0c0083c97f6f6625781382f828f6d4e9b614eba9b"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:87dd10bc0618991c66cee0cc65fa74a45f4ecb13bceec3c62d78ad2e42b27a16"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4199db024b58a8abb2cfcedac7b1292c3ad421684571aeb622a02f242280e8d6"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:99a9dcd4b71dd5f5f949737ab3f356cfc058c709b4f49833aeffedc2652dac56"}, + {file = "yarl-1.16.0-cp311-cp311-win32.whl", hash = "sha256:a9394c65ae0ed95679717d391c862dece9afacd8fa311683fc8b4362ce8a410c"}, + {file = "yarl-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b9101f528ae0f8f65ac9d64dda2bb0627de8a50344b2f582779f32fda747c1d"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4ffb7c129707dd76ced0a4a4128ff452cecf0b0e929f2668ea05a371d9e5c104"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1a5e9d8ce1185723419c487758d81ac2bde693711947032cce600ca7c9cda7d6"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d743e3118b2640cef7768ea955378c3536482d95550222f908f392167fe62059"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26768342f256e6e3c37533bf9433f5f15f3e59e3c14b2409098291b3efaceacb"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1b0796168b953bca6600c5f97f5ed407479889a36ad7d17183366260f29a6b9"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858728086914f3a407aa7979cab743bbda1fe2bdf39ffcd991469a370dd7414d"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5570e6d47bcb03215baf4c9ad7bf7c013e56285d9d35013541f9ac2b372593e7"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66ea8311422a7ba1fc79b4c42c2baa10566469fe5a78500d4e7754d6e6db8724"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:649bddcedee692ee8a9b7b6e38582cb4062dc4253de9711568e5620d8707c2a3"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a91654adb7643cb21b46f04244c5a315a440dcad63213033826549fa2435f71"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b439cae82034ade094526a8f692b9a2b5ee936452de5e4c5f0f6c48df23f8604"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:571f781ae8ac463ce30bacebfaef2c6581543776d5970b2372fbe31d7bf31a07"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:aa7943f04f36d6cafc0cf53ea89824ac2c37acbdb4b316a654176ab8ffd0f968"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1a5cf32539373ff39d97723e39a9283a7277cbf1224f7aef0c56c9598b6486c3"}, + {file = "yarl-1.16.0-cp312-cp312-win32.whl", hash = "sha256:a5b6c09b9b4253d6a208b0f4a2f9206e511ec68dce9198e0fbec4f160137aa67"}, + {file = "yarl-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:1208ca14eed2fda324042adf8d6c0adf4a31522fa95e0929027cd487875f0240"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5ace0177520bd4caa99295a9b6fb831d0e9a57d8e0501a22ffaa61b4c024283"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7118bdb5e3ed81acaa2095cba7ec02a0fe74b52a16ab9f9ac8e28e53ee299732"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38fec8a2a94c58bd47c9a50a45d321ab2285ad133adefbbadf3012c054b7e656"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8791d66d81ee45866a7bb15a517b01a2bcf583a18ebf5d72a84e6064c417e64b"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cf936ba67bc6c734f3aa1c01391da74ab7fc046a9f8bbfa230b8393b90cf472"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1aab176dd55b59f77a63b27cffaca67d29987d91a5b615cbead41331e6b7428"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d0759004c08abd5d1b81300a91d18c8577c6389300bed1c7c11675105a44d"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bc22e00edeb068f71967ab99081e9406cd56dbed864fc3a8259442999d71552"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:35b4f7842154176523e0a63c9b871168c69b98065d05a4f637fce342a6a2693a"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7ace71c4b7a0c41f317ae24be62bb61e9d80838d38acb20e70697c625e71f120"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8f639e3f5795a6568aa4f7d2ac6057c757dcd187593679f035adbf12b892bb00"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e8be3aff14f0120ad049121322b107f8a759be76a6a62138322d4c8a337a9e2c"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:122d8e7986043d0549e9eb23c7fd23be078be4b70c9eb42a20052b3d3149c6f2"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0fd9c227990f609c165f56b46107d0bc34553fe0387818c42c02f77974402c36"}, + {file = "yarl-1.16.0-cp313-cp313-win32.whl", hash = "sha256:595ca5e943baed31d56b33b34736461a371c6ea0038d3baec399949dd628560b"}, + {file = "yarl-1.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:921b81b8d78f0e60242fb3db615ea3f368827a76af095d5a69f1c3366db3f596"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab2b2ac232110a1fdb0d3ffcd087783edd3d4a6ced432a1bf75caf7b7be70916"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f8713717a09acbfee7c47bfc5777e685539fefdd34fa72faf504c8be2f3df4e"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdcffe1dbcb4477d2b4202f63cd972d5baa155ff5a3d9e35801c46a415b7f71a"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a91217208306d82357c67daeef5162a41a28c8352dab7e16daa82e3718852a7"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ab3ed42c78275477ea8e917491365e9a9b69bb615cb46169020bd0aa5e2d6d3"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:707ae579ccb3262dfaef093e202b4c3fb23c3810e8df544b1111bd2401fd7b09"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7a852d1cd0b8d8b37fc9d7f8581152add917a98cfe2ea6e241878795f917ae"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3f1cc3d3d4dc574bebc9b387f6875e228ace5748a7c24f49d8f01ac1bc6c31b"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5ff96da263740779b0893d02b718293cc03400c3a208fc8d8cd79d9b0993e532"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:3d375a19ba2bfe320b6d873f3fb165313b002cef8b7cc0a368ad8b8a57453837"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:62c7da0ad93a07da048b500514ca47b759459ec41924143e2ddb5d7e20fd3db5"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:147b0fcd0ee33b4b5f6edfea80452d80e419e51b9a3f7a96ce98eaee145c1581"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:504e1fe1cc4f170195320eb033d2b0ccf5c6114ce5bf2f617535c01699479bca"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bdcf667a5dec12a48f669e485d70c54189f0639c2157b538a4cffd24a853624f"}, + {file = "yarl-1.16.0-cp39-cp39-win32.whl", hash = "sha256:e9951afe6557c75a71045148890052cb942689ee4c9ec29f5436240e1fcc73b7"}, + {file = "yarl-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d7aaa8ff95d0840e289423e7dc35696c2b058d635f945bf05b5cd633146b027"}, + {file = "yarl-1.16.0-py3-none-any.whl", hash = "sha256:e6980a558d8461230c457218bd6c92dfc1d10205548215c2c21d79dc8d0a96f3"}, + {file = "yarl-1.16.0.tar.gz", hash = "sha256:b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-linnworks/pyproject.toml b/airbyte-integrations/connectors/source-linnworks/pyproject.toml index 46c97d758709..b4cb4913cec0 100644 --- a/airbyte-integrations/connectors/source-linnworks/pyproject.toml +++ b/airbyte-integrations/connectors/source-linnworks/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.30" +version = "0.1.31" name = "source-linnworks" description = "Source implementation for Linnworks." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/linnworks.md b/docs/integrations/sources/linnworks.md index e4ea8b548bba..635c5c2268fc 100644 --- a/docs/integrations/sources/linnworks.md +++ b/docs/integrations/sources/linnworks.md @@ -74,6 +74,7 @@ Rate limits for the Linnworks API vary across endpoints. Use the [links in the * | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------------------------- | +| 0.1.31 | 2024-10-28 | [47116](https://github.com/airbytehq/airbyte/pull/47116) | Update dependencies | | 0.1.30 | 2024-10-12 | [46798](https://github.com/airbytehq/airbyte/pull/46798) | Update dependencies | | 0.1.29 | 2024-10-05 | [46406](https://github.com/airbytehq/airbyte/pull/46406) | Update dependencies | | 0.1.28 | 2024-09-28 | [46124](https://github.com/airbytehq/airbyte/pull/46124) | Update dependencies | From 3f4600deebf8287f9b72c6675dbc4fde8c781cbc Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:13:58 +0200 Subject: [PATCH 137/808] =?UTF-8?q?=F0=9F=90=99=20source-firebolt:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47109)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-firebolt/metadata.yaml | 2 +- .../connectors/source-firebolt/poetry.lock | 267 +++++++++--------- .../connectors/source-firebolt/pyproject.toml | 2 +- docs/integrations/sources/firebolt.md | 1 + 4 files changed, 137 insertions(+), 135 deletions(-) diff --git a/airbyte-integrations/connectors/source-firebolt/metadata.yaml b/airbyte-integrations/connectors/source-firebolt/metadata.yaml index 08b675f98973..ce7ede0d5d37 100644 --- a/airbyte-integrations/connectors/source-firebolt/metadata.yaml +++ b/airbyte-integrations/connectors/source-firebolt/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: source definitionId: 6f2ac653-8623-43c4-8950-19218c7caf3d - dockerImageTag: 2.0.22 + dockerImageTag: 2.0.23 dockerRepository: airbyte/source-firebolt githubIssueLabel: source-firebolt connectorBuildOptions: diff --git a/airbyte-integrations/connectors/source-firebolt/poetry.lock b/airbyte-integrations/connectors/source-firebolt/poetry.lock index 49fda236b297..e7ea02037e02 100644 --- a/airbyte-integrations/connectors/source-firebolt/poetry.lock +++ b/airbyte-integrations/connectors/source-firebolt/poetry.lock @@ -67,13 +67,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -84,7 +84,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -807,13 +807,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -825,138 +825,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1473,13 +1474,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1567,13 +1568,13 @@ files = [ [[package]] name = "trio" -version = "0.26.2" +version = "0.27.0" description = "A friendly Python library for async concurrency and I/O" optional = false python-versions = ">=3.8" files = [ - {file = "trio-0.26.2-py3-none-any.whl", hash = "sha256:c5237e8133eb0a1d72f09a971a55c28ebe69e351c783fc64bc37db8db8bbe1d0"}, - {file = "trio-0.26.2.tar.gz", hash = "sha256:0346c3852c15e5c7d40ea15972c4805689ef2cb8b5206f794c9c19450119f3a4"}, + {file = "trio-0.27.0-py3-none-any.whl", hash = "sha256:68eabbcf8f457d925df62da780eff15ff5dc68fd6b367e2dde59f7aaf2a0b884"}, + {file = "trio-0.27.0.tar.gz", hash = "sha256:1dcc95ab1726b2da054afea8fd761af74bad79bd52381b84eae408e983c76831"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-firebolt/pyproject.toml b/airbyte-integrations/connectors/source-firebolt/pyproject.toml index f9830b377261..612e6c807f0d 100644 --- a/airbyte-integrations/connectors/source-firebolt/pyproject.toml +++ b/airbyte-integrations/connectors/source-firebolt/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.22" +version = "2.0.23" name = "source-firebolt" description = "Source implementation for Firebolt." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/firebolt.md b/docs/integrations/sources/firebolt.md index e24b95cff1e4..c08b4f5b92f4 100644 --- a/docs/integrations/sources/firebolt.md +++ b/docs/integrations/sources/firebolt.md @@ -54,6 +54,7 @@ You can now use the Airbyte Firebolt source. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------- | +| 2.0.23 | 2024-10-28 | [47109](https://github.com/airbytehq/airbyte/pull/47109) | Update dependencies | | 2.0.22 | 2024-10-12 | [46826](https://github.com/airbytehq/airbyte/pull/46826) | Update dependencies | | 2.0.21 | 2024-10-05 | [46471](https://github.com/airbytehq/airbyte/pull/46471) | Update dependencies | | 2.0.20 | 2024-09-28 | [46210](https://github.com/airbytehq/airbyte/pull/46210) | Update dependencies | From 42a7272c23271096ba278bd4f90d0d9a30b41d80 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:14:08 +0200 Subject: [PATCH 138/808] =?UTF-8?q?=F0=9F=90=99=20source-aws-cloudtrail:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47096)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-aws-cloudtrail/metadata.yaml | 2 +- .../source-aws-cloudtrail/poetry.lock | 261 +++++++++--------- .../source-aws-cloudtrail/pyproject.toml | 2 +- docs/integrations/sources/aws-cloudtrail.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml b/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml index 11e48449c413..d61771be1d76 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml @@ -24,7 +24,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6ff047c0-f5d5-4ce5-8c81-204a830fa7e1 - dockerImageTag: 1.0.18 + dockerImageTag: 1.0.19 dockerRepository: airbyte/source-aws-cloudtrail githubIssueLabel: source-aws-cloudtrail icon: aws-cloudtrail.svg diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock b/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock index 85f215e48eeb..95df18bc0255 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -669,13 +669,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -687,138 +687,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1261,13 +1262,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml b/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml index 63822dae3a5d..0ef83789901a 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.18" +version = "1.0.19" name = "source-aws-cloudtrail" description = "Source implementation for aws-cloudtrail." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/aws-cloudtrail.md b/docs/integrations/sources/aws-cloudtrail.md index 878a7072e9f2..a4a1894696ef 100644 --- a/docs/integrations/sources/aws-cloudtrail.md +++ b/docs/integrations/sources/aws-cloudtrail.md @@ -54,6 +54,7 @@ Please, follow this [steps](https://docs.aws.amazon.com/powershell/latest/usergu | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 1.0.19 | 2024-10-28 | [47096](https://github.com/airbytehq/airbyte/pull/47096) | Update dependencies | | 1.0.18 | 2024-10-12 | [46761](https://github.com/airbytehq/airbyte/pull/46761) | Update dependencies | | 1.0.17 | 2024-10-05 | [46498](https://github.com/airbytehq/airbyte/pull/46498) | Update dependencies | | 1.0.16 | 2024-09-28 | [46156](https://github.com/airbytehq/airbyte/pull/46156) | Update dependencies | From 7e4675871a9a60a74588ca7fd958297a0a220387 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:14:21 +0200 Subject: [PATCH 139/808] =?UTF-8?q?=F0=9F=90=99=20source-kyriba:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47079)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-kyriba/metadata.yaml | 2 +- .../connectors/source-kyriba/poetry.lock | 130 +++++++++--------- .../connectors/source-kyriba/pyproject.toml | 2 +- docs/integrations/sources/kyriba.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-kyriba/metadata.yaml b/airbyte-integrations/connectors/source-kyriba/metadata.yaml index c18fd1e9b5c6..21b70fa640cf 100644 --- a/airbyte-integrations/connectors/source-kyriba/metadata.yaml +++ b/airbyte-integrations/connectors/source-kyriba/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 547dc08e-ab51-421d-953b-8f3745201a8c - dockerImageTag: 0.1.23 + dockerImageTag: 0.1.24 dockerRepository: airbyte/source-kyriba documentationUrl: https://docs.airbyte.com/integrations/sources/kyriba githubIssueLabel: source-kyriba diff --git a/airbyte-integrations/connectors/source-kyriba/poetry.lock b/airbyte-integrations/connectors/source-kyriba/poetry.lock index 1d52a6b48880..daa4d036e32d 100644 --- a/airbyte-integrations/connectors/source-kyriba/poetry.lock +++ b/airbyte-integrations/connectors/source-kyriba/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,13 +884,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-kyriba/pyproject.toml b/airbyte-integrations/connectors/source-kyriba/pyproject.toml index 9d869e625942..a79537a49efb 100644 --- a/airbyte-integrations/connectors/source-kyriba/pyproject.toml +++ b/airbyte-integrations/connectors/source-kyriba/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.23" +version = "0.1.24" name = "source-kyriba" description = "Source implementation for Kyriba." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/kyriba.md b/docs/integrations/sources/kyriba.md index 82c857e969d5..837bf957cb53 100644 --- a/docs/integrations/sources/kyriba.md +++ b/docs/integrations/sources/kyriba.md @@ -71,6 +71,7 @@ The Kyriba connector should not run into API limitations under normal usage. [Cr | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------- | +| 0.1.24 | 2024-10-28 | [47079](https://github.com/airbytehq/airbyte/pull/47079) | Update dependencies | | 0.1.23 | 2024-10-12 | [46830](https://github.com/airbytehq/airbyte/pull/46830) | Update dependencies | | 0.1.22 | 2024-10-05 | [46459](https://github.com/airbytehq/airbyte/pull/46459) | Update dependencies | | 0.1.21 | 2024-09-28 | [46203](https://github.com/airbytehq/airbyte/pull/46203) | Update dependencies | From d1ecc216bdb23efbc9ae198cd8c3ab8be9595d59 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:14:31 +0200 Subject: [PATCH 140/808] =?UTF-8?q?=F0=9F=90=99=20source-bamboo-hr:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47072)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-bamboo-hr/metadata.yaml | 2 +- .../connectors/source-bamboo-hr/poetry.lock | 261 +++++++++--------- .../source-bamboo-hr/pyproject.toml | 2 +- docs/integrations/sources/bamboo-hr.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml b/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml index 9a26b6f07afa..da1e92b79ef3 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml +++ b/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 90916976-a132-4ce9-8bce-82a03dd58788 - dockerImageTag: 0.4.13 + dockerImageTag: 0.4.14 dockerRepository: airbyte/source-bamboo-hr documentationUrl: https://docs.airbyte.com/integrations/sources/bamboo-hr githubIssueLabel: source-bamboo-hr diff --git a/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock b/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock index fe8537443ea2..02302faf1ed9 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock +++ b/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -669,13 +669,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -687,138 +687,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1261,13 +1262,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml b/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml index 5138ffe9fe53..33b73ee519f0 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml +++ b/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.13" +version = "0.4.14" name = "source-bamboo-hr" description = "Source implementation for Bamboo Hr." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/bamboo-hr.md b/docs/integrations/sources/bamboo-hr.md index d9435a1b1c3c..14e2a2481457 100644 --- a/docs/integrations/sources/bamboo-hr.md +++ b/docs/integrations/sources/bamboo-hr.md @@ -91,6 +91,7 @@ Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.4.14 | 2024-10-28 | [47072](https://github.com/airbytehq/airbyte/pull/47072) | Update dependencies | | 0.4.13 | 2024-10-12 | [46842](https://github.com/airbytehq/airbyte/pull/46842) | Update dependencies | | 0.4.12 | 2024-10-05 | [46500](https://github.com/airbytehq/airbyte/pull/46500) | Update dependencies | | 0.4.11 | 2024-09-28 | [46157](https://github.com/airbytehq/airbyte/pull/46157) | Update dependencies | From 01e33e18b590fe7067e37aa59800bcfc69f716b8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:14:40 +0200 Subject: [PATCH 141/808] =?UTF-8?q?=F0=9F=90=99=20source-google-analytics-?= =?UTF-8?q?data-api:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#4706?= =?UTF-8?q?1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../metadata.yaml | 2 +- .../poetry.lock | 261 +++++++++--------- .../pyproject.toml | 2 +- .../sources/google-analytics-data-api.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml b/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml index 2d18929f86be..e2b40f320ce5 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml @@ -12,7 +12,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3cc2eafd-84aa-4dca-93af-322d9dfeec1a - dockerImageTag: 2.5.12 + dockerImageTag: 2.5.13 dockerRepository: airbyte/source-google-analytics-data-api documentationUrl: https://docs.airbyte.com/integrations/sources/google-analytics-data-api githubIssueLabel: source-google-analytics-data-api diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock b/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock index 8191e763aa42..f8df8a509295 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock @@ -67,13 +67,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -84,7 +84,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -704,13 +704,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -722,72 +722,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -837,68 +837,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1487,13 +1488,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml b/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml index 55e605a44e37..6092c9871e7a 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.5.12" +version = "2.5.13" name = "source-google-analytics-data-api" description = "Source implementation for Google Analytics Data Api." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-analytics-data-api.md b/docs/integrations/sources/google-analytics-data-api.md index 5cf2106a21b1..83642fab56a6 100644 --- a/docs/integrations/sources/google-analytics-data-api.md +++ b/docs/integrations/sources/google-analytics-data-api.md @@ -272,6 +272,7 @@ The Google Analytics connector is subject to Google Analytics Data API quotas. P | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:---------------------------------------------------------------------------------------| +| 2.5.13 | 2024-10-28 | [47061](https://github.com/airbytehq/airbyte/pull/47061) | Update dependencies | | 2.5.12 | 2024-10-12 | [46819](https://github.com/airbytehq/airbyte/pull/46819) | Update dependencies | | 2.5.11 | 2024-10-05 | [46475](https://github.com/airbytehq/airbyte/pull/46475) | Update dependencies | | 2.5.10 | 2024-09-28 | [46158](https://github.com/airbytehq/airbyte/pull/46158) | Update dependencies | From 2c94a61feeb166be239e766696568ed5ec0680cb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:14:44 +0200 Subject: [PATCH 142/808] =?UTF-8?q?=F0=9F=90=99=20source-okta:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47058)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-okta/metadata.yaml | 2 +- .../connectors/source-okta/poetry.lock | 261 +++++++++--------- .../connectors/source-okta/pyproject.toml | 2 +- docs/integrations/sources/okta.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-okta/metadata.yaml b/airbyte-integrations/connectors/source-okta/metadata.yaml index af51449cf653..73ec5fa8045b 100644 --- a/airbyte-integrations/connectors/source-okta/metadata.yaml +++ b/airbyte-integrations/connectors/source-okta/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1d4fdb25-64fc-4569-92da-fcdca79a8372 - dockerImageTag: 0.3.9 + dockerImageTag: 0.3.10 dockerRepository: airbyte/source-okta githubIssueLabel: source-okta icon: icon.svg diff --git a/airbyte-integrations/connectors/source-okta/poetry.lock b/airbyte-integrations/connectors/source-okta/poetry.lock index 491a2abbf518..17e1b3f16e04 100644 --- a/airbyte-integrations/connectors/source-okta/poetry.lock +++ b/airbyte-integrations/connectors/source-okta/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -697,138 +697,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1284,13 +1285,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-okta/pyproject.toml b/airbyte-integrations/connectors/source-okta/pyproject.toml index e0a224e188c0..de6af65e7afc 100644 --- a/airbyte-integrations/connectors/source-okta/pyproject.toml +++ b/airbyte-integrations/connectors/source-okta/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.9" +version = "0.3.10" name = "source-okta" description = "Source implementation for okta." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/okta.md b/docs/integrations/sources/okta.md index 892fbe9a8832..159ffd0cefa4 100644 --- a/docs/integrations/sources/okta.md +++ b/docs/integrations/sources/okta.md @@ -86,6 +86,7 @@ The connector is restricted by normal Okta [requests limitation](https://develop | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------| +| 0.3.10 | 2024-10-28 | [47058](https://github.com/airbytehq/airbyte/pull/47058) | Update dependencies | | 0.3.9 | 2024-10-12 | [46804](https://github.com/airbytehq/airbyte/pull/46804) | Update dependencies | | 0.3.8 | 2024-10-05 | [46481](https://github.com/airbytehq/airbyte/pull/46481) | Update dependencies | | 0.3.7 | 2024-09-28 | [46148](https://github.com/airbytehq/airbyte/pull/46148) | Update dependencies | From c991bbe4e7a8075641d3b3469490eac3f8ef149e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:14:48 +0200 Subject: [PATCH 143/808] =?UTF-8?q?=F0=9F=90=99=20source-genesys:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47056)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-genesys/metadata.yaml | 2 +- .../connectors/source-genesys/poetry.lock | 130 +++++++++--------- .../connectors/source-genesys/pyproject.toml | 2 +- docs/integrations/sources/genesys.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-genesys/metadata.yaml b/airbyte-integrations/connectors/source-genesys/metadata.yaml index 6159dce48700..8e7565a34a11 100644 --- a/airbyte-integrations/connectors/source-genesys/metadata.yaml +++ b/airbyte-integrations/connectors/source-genesys/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5ea4459a-8f1a-452a-830f-a65c38cc438d - dockerImageTag: 0.1.20 + dockerImageTag: 0.1.21 dockerRepository: airbyte/source-genesys githubIssueLabel: source-genesys icon: genesys.svg diff --git a/airbyte-integrations/connectors/source-genesys/poetry.lock b/airbyte-integrations/connectors/source-genesys/poetry.lock index 1d52a6b48880..daa4d036e32d 100644 --- a/airbyte-integrations/connectors/source-genesys/poetry.lock +++ b/airbyte-integrations/connectors/source-genesys/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,13 +884,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-genesys/pyproject.toml b/airbyte-integrations/connectors/source-genesys/pyproject.toml index 10c85affbeac..4e6c7feb81e4 100644 --- a/airbyte-integrations/connectors/source-genesys/pyproject.toml +++ b/airbyte-integrations/connectors/source-genesys/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.20" +version = "0.1.21" name = "source-genesys" description = "Source implementation for Genesys." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/genesys.md b/docs/integrations/sources/genesys.md index d06df7090715..37d04076ee10 100644 --- a/docs/integrations/sources/genesys.md +++ b/docs/integrations/sources/genesys.md @@ -31,6 +31,7 @@ You can follow the documentation on [API credentials](https://developer.genesys. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------- | +| 0.1.21 | 2024-10-28 | [47056](https://github.com/airbytehq/airbyte/pull/47056) | Update dependencies | | 0.1.20 | 2024-10-12 | [46776](https://github.com/airbytehq/airbyte/pull/46776) | Update dependencies | | 0.1.19 | 2024-10-05 | [46466](https://github.com/airbytehq/airbyte/pull/46466) | Update dependencies | | 0.1.18 | 2024-09-28 | [46128](https://github.com/airbytehq/airbyte/pull/46128) | Update dependencies | From bb48c1c7e464578a08c98775a2898d9bb196d03f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:14:53 +0200 Subject: [PATCH 144/808] =?UTF-8?q?=F0=9F=90=99=20source-github:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47051)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-github/metadata.yaml | 2 +- .../connectors/source-github/poetry.lock | 273 +++++++++--------- .../connectors/source-github/pyproject.toml | 2 +- docs/integrations/sources/github.md | 1 + 4 files changed, 140 insertions(+), 138 deletions(-) diff --git a/airbyte-integrations/connectors/source-github/metadata.yaml b/airbyte-integrations/connectors/source-github/metadata.yaml index 53f7f79df11e..152d2130e645 100644 --- a/airbyte-integrations/connectors/source-github/metadata.yaml +++ b/airbyte-integrations/connectors/source-github/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: ef69ef6e-aa7f-4af1-a01d-ef775033524e - dockerImageTag: 1.8.14 + dockerImageTag: 1.8.15 dockerRepository: airbyte/source-github documentationUrl: https://docs.airbyte.com/integrations/sources/github erdUrl: https://dbdocs.io/airbyteio/source-github?view=relationships diff --git a/airbyte-integrations/connectors/source-github/poetry.lock b/airbyte-integrations/connectors/source-github/poetry.lock index a86effb8683d..6f8cd9a9f3ca 100644 --- a/airbyte-integrations/connectors/source-github/poetry.lock +++ b/airbyte-integrations/connectors/source-github/poetry.lock @@ -69,13 +69,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +86,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -528,13 +528,13 @@ files = [ [[package]] name = "graphql-core" -version = "3.2.4" +version = "3.2.5" description = "GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL." optional = false python-versions = "<4,>=3.6" files = [ - {file = "graphql-core-3.2.4.tar.gz", hash = "sha256:acbe2e800980d0e39b4685dd058c2f4042660b89ebca38af83020fd872ff1264"}, - {file = "graphql_core-3.2.4-py3-none-any.whl", hash = "sha256:1604f2042edc5f3114f49cac9d77e25863be51b23a54a61a23245cf32f6476f0"}, + {file = "graphql_core-3.2.5-py3-none-any.whl", hash = "sha256:2f150d5096448aa4f8ab26268567bbfeef823769893b39c1a2e1409590939c8a"}, + {file = "graphql_core-3.2.5.tar.gz", hash = "sha256:e671b90ed653c808715645e3998b7ab67d382d55467b7e2978549111bbabf8d5"}, ] [[package]] @@ -742,13 +742,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -760,72 +760,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -855,68 +855,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1557,13 +1558,13 @@ tests = ["coverage (>=6.0.0)", "flake8", "mypy", "pytest (>=7.0.0)", "pytest-asy [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1643,13 +1644,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-github/pyproject.toml b/airbyte-integrations/connectors/source-github/pyproject.toml index 6f60b8f0d7c3..b6a51a0a86f0 100644 --- a/airbyte-integrations/connectors/source-github/pyproject.toml +++ b/airbyte-integrations/connectors/source-github/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.8.14" +version = "1.8.15" name = "source-github" description = "Source implementation for GitHub." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/github.md b/docs/integrations/sources/github.md index 9233a3568c1a..84f41397fba6 100644 --- a/docs/integrations/sources/github.md +++ b/docs/integrations/sources/github.md @@ -225,6 +225,7 @@ Your token should have at least the `repo` scope. Depending on which streams you | Version | Date | Pull Request | Subject | |:--------|:-----------|:------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 1.8.15 | 2024-10-28 | [47051](https://github.com/airbytehq/airbyte/pull/47051) | Update dependencies | | 1.8.14 | 2024-10-12 | [46766](https://github.com/airbytehq/airbyte/pull/46766) | Update dependencies | | 1.8.13 | 2024-10-05 | [46415](https://github.com/airbytehq/airbyte/pull/46415) | Update dependencies | | 1.8.12 | 2024-09-28 | [46117](https://github.com/airbytehq/airbyte/pull/46117) | Update dependencies | From 276a37f03ca54758e00dd1888c2cc55e1ed6e33d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:15:08 +0200 Subject: [PATCH 145/808] =?UTF-8?q?=F0=9F=90=99=20source-surveycto:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47036)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-surveycto/metadata.yaml | 2 +- .../connectors/source-surveycto/poetry.lock | 282 +++++++++--------- .../source-surveycto/pyproject.toml | 2 +- docs/integrations/sources/surveycto.md | 1 + 4 files changed, 144 insertions(+), 143 deletions(-) diff --git a/airbyte-integrations/connectors/source-surveycto/metadata.yaml b/airbyte-integrations/connectors/source-surveycto/metadata.yaml index 9ae862e73ddc..d3c74a87d6bc 100644 --- a/airbyte-integrations/connectors/source-surveycto/metadata.yaml +++ b/airbyte-integrations/connectors/source-surveycto/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: dd4632f4-15e0-4649-9b71-41719fb1fdee - dockerImageTag: 0.1.24 + dockerImageTag: 0.1.25 dockerRepository: airbyte/source-surveycto githubIssueLabel: source-surveycto icon: surveycto.svg diff --git a/airbyte-integrations/connectors/source-surveycto/poetry.lock b/airbyte-integrations/connectors/source-surveycto/poetry.lock index c3eaddad060b..877fa7f6c9ba 100644 --- a/airbyte-integrations/connectors/source-surveycto/poetry.lock +++ b/airbyte-integrations/connectors/source-surveycto/poetry.lock @@ -545,85 +545,85 @@ grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] [[package]] name = "grpcio" -version = "1.66.2" +version = "1.67.0" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.66.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:fe96281713168a3270878255983d2cb1a97e034325c8c2c25169a69289d3ecfa"}, - {file = "grpcio-1.66.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:73fc8f8b9b5c4a03e802b3cd0c18b2b06b410d3c1dcbef989fdeb943bd44aff7"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:03b0b307ba26fae695e067b94cbb014e27390f8bc5ac7a3a39b7723fed085604"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d69ce1f324dc2d71e40c9261d3fdbe7d4c9d60f332069ff9b2a4d8a257c7b2b"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05bc2ceadc2529ab0b227b1310d249d95d9001cd106aa4d31e8871ad3c428d73"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ac475e8da31484efa25abb774674d837b343afb78bb3bcdef10f81a93e3d6bf"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0be4e0490c28da5377283861bed2941d1d20ec017ca397a5df4394d1c31a9b50"}, - {file = "grpcio-1.66.2-cp310-cp310-win32.whl", hash = "sha256:4e504572433f4e72b12394977679161d495c4c9581ba34a88d843eaf0f2fbd39"}, - {file = "grpcio-1.66.2-cp310-cp310-win_amd64.whl", hash = "sha256:2018b053aa15782db2541ca01a7edb56a0bf18c77efed975392583725974b249"}, - {file = "grpcio-1.66.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:2335c58560a9e92ac58ff2bc5649952f9b37d0735608242973c7a8b94a6437d8"}, - {file = "grpcio-1.66.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45a3d462826f4868b442a6b8fdbe8b87b45eb4f5b5308168c156b21eca43f61c"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:a9539f01cb04950fd4b5ab458e64a15f84c2acc273670072abe49a3f29bbad54"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce89f5876662f146d4c1f695dda29d4433a5d01c8681fbd2539afff535da14d4"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d25a14af966438cddf498b2e338f88d1c9706f3493b1d73b93f695c99c5f0e2a"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6001e575b8bbd89eee11960bb640b6da6ae110cf08113a075f1e2051cc596cae"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ea1d062c9230278793820146c95d038dc0f468cbdd172eec3363e42ff1c7d01"}, - {file = "grpcio-1.66.2-cp311-cp311-win32.whl", hash = "sha256:38b68498ff579a3b1ee8f93a05eb48dc2595795f2f62716e797dc24774c1aaa8"}, - {file = "grpcio-1.66.2-cp311-cp311-win_amd64.whl", hash = "sha256:6851de821249340bdb100df5eacfecfc4e6075fa85c6df7ee0eb213170ec8e5d"}, - {file = "grpcio-1.66.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:802d84fd3d50614170649853d121baaaa305de7b65b3e01759247e768d691ddf"}, - {file = "grpcio-1.66.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:80fd702ba7e432994df208f27514280b4b5c6843e12a48759c9255679ad38db8"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:12fda97ffae55e6526825daf25ad0fa37483685952b5d0f910d6405c87e3adb6"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:950da58d7d80abd0ea68757769c9db0a95b31163e53e5bb60438d263f4bed7b7"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e636ce23273683b00410f1971d209bf3689238cf5538d960adc3cdfe80dd0dbd"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a917d26e0fe980b0ac7bfcc1a3c4ad6a9a4612c911d33efb55ed7833c749b0ee"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49f0ca7ae850f59f828a723a9064cadbed90f1ece179d375966546499b8a2c9c"}, - {file = "grpcio-1.66.2-cp312-cp312-win32.whl", hash = "sha256:31fd163105464797a72d901a06472860845ac157389e10f12631025b3e4d0453"}, - {file = "grpcio-1.66.2-cp312-cp312-win_amd64.whl", hash = "sha256:ff1f7882e56c40b0d33c4922c15dfa30612f05fb785074a012f7cda74d1c3679"}, - {file = "grpcio-1.66.2-cp313-cp313-linux_armv7l.whl", hash = "sha256:3b00efc473b20d8bf83e0e1ae661b98951ca56111feb9b9611df8efc4fe5d55d"}, - {file = "grpcio-1.66.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1caa38fb22a8578ab8393da99d4b8641e3a80abc8fd52646f1ecc92bcb8dee34"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c408f5ef75cfffa113cacd8b0c0e3611cbfd47701ca3cdc090594109b9fcbaed"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c806852deaedee9ce8280fe98955c9103f62912a5b2d5ee7e3eaa284a6d8d8e7"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f145cc21836c332c67baa6fc81099d1d27e266401565bf481948010d6ea32d46"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:73e3b425c1e155730273f73e419de3074aa5c5e936771ee0e4af0814631fb30a"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9c509a4f78114cbc5f0740eb3d7a74985fd2eff022971bc9bc31f8bc93e66a3b"}, - {file = "grpcio-1.66.2-cp313-cp313-win32.whl", hash = "sha256:20657d6b8cfed7db5e11b62ff7dfe2e12064ea78e93f1434d61888834bc86d75"}, - {file = "grpcio-1.66.2-cp313-cp313-win_amd64.whl", hash = "sha256:fb70487c95786e345af5e854ffec8cb8cc781bcc5df7930c4fbb7feaa72e1cdf"}, - {file = "grpcio-1.66.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:a18e20d8321c6400185b4263e27982488cb5cdd62da69147087a76a24ef4e7e3"}, - {file = "grpcio-1.66.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:02697eb4a5cbe5a9639f57323b4c37bcb3ab2d48cec5da3dc2f13334d72790dd"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:99a641995a6bc4287a6315989ee591ff58507aa1cbe4c2e70d88411c4dcc0839"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ed71e81782966ffead60268bbda31ea3f725ebf8aa73634d5dda44f2cf3fb9c"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbd27c24a4cc5e195a7f56cfd9312e366d5d61b86e36d46bbe538457ea6eb8dd"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d9a9724a156c8ec6a379869b23ba3323b7ea3600851c91489b871e375f710bc8"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d8d4732cc5052e92cea2f78b233c2e2a52998ac40cd651f40e398893ad0d06ec"}, - {file = "grpcio-1.66.2-cp38-cp38-win32.whl", hash = "sha256:7b2c86457145ce14c38e5bf6bdc19ef88e66c5fee2c3d83285c5aef026ba93b3"}, - {file = "grpcio-1.66.2-cp38-cp38-win_amd64.whl", hash = "sha256:e88264caad6d8d00e7913996030bac8ad5f26b7411495848cc218bd3a9040b6c"}, - {file = "grpcio-1.66.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:c400ba5675b67025c8a9f48aa846f12a39cf0c44df5cd060e23fda5b30e9359d"}, - {file = "grpcio-1.66.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:66a0cd8ba6512b401d7ed46bb03f4ee455839957f28b8d61e7708056a806ba6a"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:06de8ec0bd71be123eec15b0e0d457474931c2c407869b6c349bd9bed4adbac3"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb57870449dfcfac428afbb5a877829fcb0d6db9d9baa1148705739e9083880e"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b672abf90a964bfde2d0ecbce30f2329a47498ba75ce6f4da35a2f4532b7acbc"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad2efdbe90c73b0434cbe64ed372e12414ad03c06262279b104a029d1889d13e"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9c3a99c519f4638e700e9e3f83952e27e2ea10873eecd7935823dab0c1c9250e"}, - {file = "grpcio-1.66.2-cp39-cp39-win32.whl", hash = "sha256:78fa51ebc2d9242c0fc5db0feecc57a9943303b46664ad89921f5079e2e4ada7"}, - {file = "grpcio-1.66.2-cp39-cp39-win_amd64.whl", hash = "sha256:728bdf36a186e7f51da73be7f8d09457a03061be848718d0edf000e709418987"}, - {file = "grpcio-1.66.2.tar.gz", hash = "sha256:563588c587b75c34b928bc428548e5b00ea38c46972181a4d8b75ba7e3f24231"}, + {file = "grpcio-1.67.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:bd79929b3bb96b54df1296cd3bf4d2b770bd1df6c2bdf549b49bab286b925cdc"}, + {file = "grpcio-1.67.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:16724ffc956ea42967f5758c2f043faef43cb7e48a51948ab593570570d1e68b"}, + {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:2b7183c80b602b0ad816315d66f2fb7887614ead950416d60913a9a71c12560d"}, + {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efe32b45dd6d118f5ea2e5deaed417d8a14976325c93812dd831908522b402c9"}, + {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe89295219b9c9e47780a0f1c75ca44211e706d1c598242249fe717af3385ec8"}, + {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa8d025fae1595a207b4e47c2e087cb88d47008494db258ac561c00877d4c8f8"}, + {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f95e15db43e75a534420e04822df91f645664bf4ad21dfaad7d51773c80e6bb4"}, + {file = "grpcio-1.67.0-cp310-cp310-win32.whl", hash = "sha256:a6b9a5c18863fd4b6624a42e2712103fb0f57799a3b29651c0e5b8119a519d65"}, + {file = "grpcio-1.67.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6eb68493a05d38b426604e1dc93bfc0137c4157f7ab4fac5771fd9a104bbaa6"}, + {file = "grpcio-1.67.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:e91d154689639932305b6ea6f45c6e46bb51ecc8ea77c10ef25aa77f75443ad4"}, + {file = "grpcio-1.67.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cb204a742997277da678611a809a8409657b1398aaeebf73b3d9563b7d154c13"}, + {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:ae6de510f670137e755eb2a74b04d1041e7210af2444103c8c95f193340d17ee"}, + {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74b900566bdf68241118f2918d312d3bf554b2ce0b12b90178091ea7d0a17b3d"}, + {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4e95e43447a02aa603abcc6b5e727d093d161a869c83b073f50b9390ecf0fa8"}, + {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0bb94e66cd8f0baf29bd3184b6aa09aeb1a660f9ec3d85da615c5003154bc2bf"}, + {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:82e5bd4b67b17c8c597273663794a6a46a45e44165b960517fe6d8a2f7f16d23"}, + {file = "grpcio-1.67.0-cp311-cp311-win32.whl", hash = "sha256:7fc1d2b9fd549264ae585026b266ac2db53735510a207381be509c315b4af4e8"}, + {file = "grpcio-1.67.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac11ecb34a86b831239cc38245403a8de25037b448464f95c3315819e7519772"}, + {file = "grpcio-1.67.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:227316b5631260e0bef8a3ce04fa7db4cc81756fea1258b007950b6efc90c05d"}, + {file = "grpcio-1.67.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d90cfdafcf4b45a7a076e3e2a58e7bc3d59c698c4f6470b0bb13a4d869cf2273"}, + {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:77196216d5dd6f99af1c51e235af2dd339159f657280e65ce7e12c1a8feffd1d"}, + {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15c05a26a0f7047f720da41dc49406b395c1470eef44ff7e2c506a47ac2c0591"}, + {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3840994689cc8cbb73d60485c594424ad8adb56c71a30d8948d6453083624b52"}, + {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:5a1e03c3102b6451028d5dc9f8591131d6ab3c8a0e023d94c28cb930ed4b5f81"}, + {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:682968427a63d898759474e3b3178d42546e878fdce034fd7474ef75143b64e3"}, + {file = "grpcio-1.67.0-cp312-cp312-win32.whl", hash = "sha256:d01793653248f49cf47e5695e0a79805b1d9d4eacef85b310118ba1dfcd1b955"}, + {file = "grpcio-1.67.0-cp312-cp312-win_amd64.whl", hash = "sha256:985b2686f786f3e20326c4367eebdaed3e7aa65848260ff0c6644f817042cb15"}, + {file = "grpcio-1.67.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:8c9a35b8bc50db35ab8e3e02a4f2a35cfba46c8705c3911c34ce343bd777813a"}, + {file = "grpcio-1.67.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:42199e704095b62688998c2d84c89e59a26a7d5d32eed86d43dc90e7a3bd04aa"}, + {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c4c425f440fb81f8d0237c07b9322fc0fb6ee2b29fbef5f62a322ff8fcce240d"}, + {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:323741b6699cd2b04a71cb38f502db98f90532e8a40cb675393d248126a268af"}, + {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:662c8e105c5e5cee0317d500eb186ed7a93229586e431c1bf0c9236c2407352c"}, + {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f6bd2ab135c64a4d1e9e44679a616c9bc944547357c830fafea5c3caa3de5153"}, + {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:2f55c1e0e2ae9bdd23b3c63459ee4c06d223b68aeb1961d83c48fb63dc29bc03"}, + {file = "grpcio-1.67.0-cp313-cp313-win32.whl", hash = "sha256:fd6bc27861e460fe28e94226e3673d46e294ca4673d46b224428d197c5935e69"}, + {file = "grpcio-1.67.0-cp313-cp313-win_amd64.whl", hash = "sha256:cf51d28063338608cd8d3cd64677e922134837902b70ce00dad7f116e3998210"}, + {file = "grpcio-1.67.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:7f200aca719c1c5dc72ab68be3479b9dafccdf03df530d137632c534bb6f1ee3"}, + {file = "grpcio-1.67.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0892dd200ece4822d72dd0952f7112c542a487fc48fe77568deaaa399c1e717d"}, + {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:f4d613fbf868b2e2444f490d18af472ccb47660ea3df52f068c9c8801e1f3e85"}, + {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c69bf11894cad9da00047f46584d5758d6ebc9b5950c0dc96fec7e0bce5cde9"}, + {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9bca3ca0c5e74dea44bf57d27e15a3a3996ce7e5780d61b7c72386356d231db"}, + {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:014dfc020e28a0d9be7e93a91f85ff9f4a87158b7df9952fe23cc42d29d31e1e"}, + {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d4ea4509d42c6797539e9ec7496c15473177ce9abc89bc5c71e7abe50fc25737"}, + {file = "grpcio-1.67.0-cp38-cp38-win32.whl", hash = "sha256:9d75641a2fca9ae1ae86454fd25d4c298ea8cc195dbc962852234d54a07060ad"}, + {file = "grpcio-1.67.0-cp38-cp38-win_amd64.whl", hash = "sha256:cff8e54d6a463883cda2fab94d2062aad2f5edd7f06ae3ed030f2a74756db365"}, + {file = "grpcio-1.67.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:62492bd534979e6d7127b8a6b29093161a742dee3875873e01964049d5250a74"}, + {file = "grpcio-1.67.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eef1dce9d1a46119fd09f9a992cf6ab9d9178b696382439446ca5f399d7b96fe"}, + {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:f623c57a5321461c84498a99dddf9d13dac0e40ee056d884d6ec4ebcab647a78"}, + {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54d16383044e681f8beb50f905249e4e7261dd169d4aaf6e52eab67b01cbbbe2"}, + {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2a44e572fb762c668e4812156b81835f7aba8a721b027e2d4bb29fb50ff4d33"}, + {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:391df8b0faac84d42f5b8dfc65f5152c48ed914e13c522fd05f2aca211f8bfad"}, + {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cfd9306511fdfc623a1ba1dc3bc07fbd24e6cfbe3c28b4d1e05177baa2f99617"}, + {file = "grpcio-1.67.0-cp39-cp39-win32.whl", hash = "sha256:30d47dbacfd20cbd0c8be9bfa52fdb833b395d4ec32fe5cff7220afc05d08571"}, + {file = "grpcio-1.67.0-cp39-cp39-win_amd64.whl", hash = "sha256:f55f077685f61f0fbd06ea355142b71e47e4a26d2d678b3ba27248abfe67163a"}, + {file = "grpcio-1.67.0.tar.gz", hash = "sha256:e090b2553e0da1c875449c8e75073dd4415dd71c9bde6a406240fdf4c0ee467c"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.66.2)"] +protobuf = ["grpcio-tools (>=1.67.0)"] [[package]] name = "grpcio-status" -version = "1.66.2" +version = "1.67.0" description = "Status proto mapping for gRPC" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio_status-1.66.2-py3-none-any.whl", hash = "sha256:e5fe189f6897d12aa9cd74408a17ca41e44fad30871cf84f5cbd17bd713d2455"}, - {file = "grpcio_status-1.66.2.tar.gz", hash = "sha256:fb55cbb5c2e67062f7a4d5c99e489d074fb57e98678d5c3c6692a2d74d89e9ae"}, + {file = "grpcio_status-1.67.0-py3-none-any.whl", hash = "sha256:0e79e2e01ba41a6ca6ed9d7a825323c511fe1653a646f8014c7e3c8132527acc"}, + {file = "grpcio_status-1.67.0.tar.gz", hash = "sha256:c3e5a86fa007e9e263cd5f988a8a907484da4caab582874ea2a4a6092734046b"}, ] [package.dependencies] googleapis-common-protos = ">=1.5.5" -grpcio = ">=1.66.2" +grpcio = ">=1.67.0" protobuf = ">=5.26.1,<6.0dev" [[package]] @@ -716,72 +716,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -862,13 +862,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "proto-plus" -version = "1.24.0" +version = "1.25.0" description = "Beautiful, Pythonic protocol buffers." optional = false python-versions = ">=3.7" files = [ - {file = "proto-plus-1.24.0.tar.gz", hash = "sha256:30b72a5ecafe4406b0d339db35b56c4059064e69227b8c3bda7462397f966445"}, - {file = "proto_plus-1.24.0-py3-none-any.whl", hash = "sha256:402576830425e5f6ce4c2a6702400ac79897dab0b4343821aa5188b0fab81a12"}, + {file = "proto_plus-1.25.0-py3-none-any.whl", hash = "sha256:c91fc4a65074ade8e458e95ef8bac34d4008daa7cce4a12d6707066fca648961"}, + {file = "proto_plus-1.25.0.tar.gz", hash = "sha256:fbb17f57f7bd05a68b7707e745e26528b0b3c34e378db91eef93912c54982d91"}, ] [package.dependencies] @@ -879,22 +879,22 @@ testing = ["google-api-core (>=1.31.5)"] [[package]] name = "protobuf" -version = "5.28.2" +version = "5.28.3" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-5.28.2-cp310-abi3-win32.whl", hash = "sha256:eeea10f3dc0ac7e6b4933d32db20662902b4ab81bf28df12218aa389e9c2102d"}, - {file = "protobuf-5.28.2-cp310-abi3-win_amd64.whl", hash = "sha256:2c69461a7fcc8e24be697624c09a839976d82ae75062b11a0972e41fd2cd9132"}, - {file = "protobuf-5.28.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a8b9403fc70764b08d2f593ce44f1d2920c5077bf7d311fefec999f8c40f78b7"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:35cfcb15f213449af7ff6198d6eb5f739c37d7e4f1c09b5d0641babf2cc0c68f"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:5e8a95246d581eef20471b5d5ba010d55f66740942b95ba9b872d918c459452f"}, - {file = "protobuf-5.28.2-cp38-cp38-win32.whl", hash = "sha256:87317e9bcda04a32f2ee82089a204d3a2f0d3c8aeed16568c7daf4756e4f1fe0"}, - {file = "protobuf-5.28.2-cp38-cp38-win_amd64.whl", hash = "sha256:c0ea0123dac3399a2eeb1a1443d82b7afc9ff40241433296769f7da42d142ec3"}, - {file = "protobuf-5.28.2-cp39-cp39-win32.whl", hash = "sha256:ca53faf29896c526863366a52a8f4d88e69cd04ec9571ed6082fa117fac3ab36"}, - {file = "protobuf-5.28.2-cp39-cp39-win_amd64.whl", hash = "sha256:8ddc60bf374785fb7cb12510b267f59067fa10087325b8e1855b898a0d81d276"}, - {file = "protobuf-5.28.2-py3-none-any.whl", hash = "sha256:52235802093bd8a2811abbe8bf0ab9c5f54cca0a751fdd3f6ac2a21438bffece"}, - {file = "protobuf-5.28.2.tar.gz", hash = "sha256:59379674ff119717404f7454647913787034f03fe7049cbef1d74a97bb4593f0"}, + {file = "protobuf-5.28.3-cp310-abi3-win32.whl", hash = "sha256:0c4eec6f987338617072592b97943fdbe30d019c56126493111cf24344c1cc24"}, + {file = "protobuf-5.28.3-cp310-abi3-win_amd64.whl", hash = "sha256:91fba8f445723fcf400fdbe9ca796b19d3b1242cd873907979b9ed71e4afe868"}, + {file = "protobuf-5.28.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a3f6857551e53ce35e60b403b8a27b0295f7d6eb63d10484f12bc6879c715687"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:3fa2de6b8b29d12c61911505d893afe7320ce7ccba4df913e2971461fa36d584"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:712319fbdddb46f21abb66cd33cb9e491a5763b2febd8f228251add221981135"}, + {file = "protobuf-5.28.3-cp38-cp38-win32.whl", hash = "sha256:3e6101d095dfd119513cde7259aa703d16c6bbdfae2554dfe5cfdbe94e32d548"}, + {file = "protobuf-5.28.3-cp38-cp38-win_amd64.whl", hash = "sha256:27b246b3723692bf1068d5734ddaf2fccc2cdd6e0c9b47fe099244d80200593b"}, + {file = "protobuf-5.28.3-cp39-cp39-win32.whl", hash = "sha256:135658402f71bbd49500322c0f736145731b16fc79dc8f367ab544a17eab4535"}, + {file = "protobuf-5.28.3-cp39-cp39-win_amd64.whl", hash = "sha256:70585a70fc2dd4818c51287ceef5bdba6387f88a578c86d47bb34669b5552c36"}, + {file = "protobuf-5.28.3-py3-none-any.whl", hash = "sha256:cee1757663fa32a1ee673434fcf3bf24dd54763c79690201208bafec62f19eed"}, + {file = "protobuf-5.28.3.tar.gz", hash = "sha256:64badbc49180a5e401f373f9ce7ab1d18b63f7dd4a9cdc43c92b9f0b481cef7b"}, ] [[package]] @@ -1260,13 +1260,13 @@ pyasn1 = ">=0.1.3" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-surveycto/pyproject.toml b/airbyte-integrations/connectors/source-surveycto/pyproject.toml index 430a1412af4b..72b894ae54cf 100644 --- a/airbyte-integrations/connectors/source-surveycto/pyproject.toml +++ b/airbyte-integrations/connectors/source-surveycto/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.24" +version = "0.1.25" name = "source-surveycto" description = "Source implementation for Surveycto." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/surveycto.md b/docs/integrations/sources/surveycto.md index b2f6952ff61c..4578c9882b84 100644 --- a/docs/integrations/sources/surveycto.md +++ b/docs/integrations/sources/surveycto.md @@ -52,6 +52,7 @@ The SurveyCTO source connector supports the following streams: | Version | Date | Pull Request | Subject | | ------- | ---------- | -------------------------------------------------------- | -------------------------- | +| 0.1.25 | 2024-10-28 | [47036](https://github.com/airbytehq/airbyte/pull/47036) | Update dependencies | | 0.1.24 | 2024-10-12 | [46834](https://github.com/airbytehq/airbyte/pull/46834) | Update dependencies | | 0.1.23 | 2024-10-05 | [46450](https://github.com/airbytehq/airbyte/pull/46450) | Update dependencies | | 0.1.22 | 2024-09-28 | [46112](https://github.com/airbytehq/airbyte/pull/46112) | Update dependencies | From 4163b2bc9d44f8e1ce26c13b8dbb9143742e47be Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:16:05 +0200 Subject: [PATCH 146/808] =?UTF-8?q?=F0=9F=90=99=20source-tyntec-sms:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#43782)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tyntec-sms/metadata.yaml | 4 ++-- docs/integrations/sources/tyntec-sms.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml b/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml index 43fdec7998c7..a20bcc97a11b 100644 --- a/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml +++ b/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3c0c3cd1-b3e0-464a-9090-d3ceb5f92346 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-tyntec-sms githubIssueLabel: source-tyntec-sms icon: tyntec.svg @@ -27,5 +27,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/tyntec-sms.md b/docs/integrations/sources/tyntec-sms.md index 26975f26a545..cb45bf8b3d55 100644 --- a/docs/integrations/sources/tyntec-sms.md +++ b/docs/integrations/sources/tyntec-sms.md @@ -65,7 +65,8 @@ The Tyntec SMS connector should not run into limitations under normal usage. Ple | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------ | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [43782](https://github.com/airbytehq/airbyte/pull/43782) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44054](https://github.com/airbytehq/airbyte/pull/44054) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-10 | [43551](https://github.com/airbytehq/airbyte/pull/43551) | Update dependencies | | 0.1.12 | 2024-08-03 | [43221](https://github.com/airbytehq/airbyte/pull/43221) | Update dependencies | From e23d6747eed2248689e92cf06875a8851626c3f5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 18:16:11 +0200 Subject: [PATCH 147/808] =?UTF-8?q?=F0=9F=90=99=20source-lever-hiring:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#43750)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-lever-hiring/metadata.yaml | 4 ++-- docs/integrations/sources/lever-hiring.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-lever-hiring/metadata.yaml b/airbyte-integrations/connectors/source-lever-hiring/metadata.yaml index 7976b7a618dd..a519edd207d5 100644 --- a/airbyte-integrations/connectors/source-lever-hiring/metadata.yaml +++ b/airbyte-integrations/connectors/source-lever-hiring/metadata.yaml @@ -18,11 +18,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 3981c999-bd7d-4afc-849b-e53dea90c948 - dockerImageTag: 0.4.1 + dockerImageTag: 0.4.2 dockerRepository: airbyte/source-lever-hiring githubIssueLabel: source-lever-hiring icon: icon.svg diff --git a/docs/integrations/sources/lever-hiring.md b/docs/integrations/sources/lever-hiring.md index 9469ed5296cc..91c27ca7899c 100644 --- a/docs/integrations/sources/lever-hiring.md +++ b/docs/integrations/sources/lever-hiring.md @@ -46,7 +46,8 @@ The Lever Hiring connector should not run into Lever Hiring API limitations unde | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------| -| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.4.2 | 2024-10-28 | [43750](https://github.com/airbytehq/airbyte/pull/43750) | Update dependencies | +| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.4.0 | 2024-08-15 | [44133](https://github.com/airbytehq/airbyte/pull/44133) | Refactor connector to manifest-only format | | 0.3.1 | 2024-06-04 | [39082](https://github.com/airbytehq/airbyte/pull/39082) | [autopull] Upgrade base image to v1.2.1 | | 0.3.0 | 2024-05-08 | [36262](https://github.com/airbytehq/airbyte/pull/36262) | Migrate to Low Code | From 041817b0a07183e2ef307a294775bf808dd21fbf Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:10:14 +0200 Subject: [PATCH 148/808] =?UTF-8?q?=F0=9F=90=99=20source-google-webfonts:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47623)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-google-webfonts/metadata.yaml | 4 ++-- docs/integrations/sources/google-webfonts.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml b/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml index f26553dff9bb..90ff01ab53a4 100644 --- a/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: a68fbcde-b465-4ab3-b2a6-b0590a875835 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-google-webfonts documentationUrl: https://docs.airbyte.com/integrations/sources/google-webfonts githubIssueLabel: source-google-webfonts diff --git a/docs/integrations/sources/google-webfonts.md b/docs/integrations/sources/google-webfonts.md index d256ff1f068a..ed55b721156a 100644 --- a/docs/integrations/sources/google-webfonts.md +++ b/docs/integrations/sources/google-webfonts.md @@ -68,6 +68,7 @@ Google Webfont's [API reference](https://developers.google.com/fonts/docs/develo | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:--------------------------------------------------------------------------------| +| 0.2.1 | 2024-10-28 | [47623](https://github.com/airbytehq/airbyte/pull/47623) | Update dependencies | | 0.2.0 | 2024-08-23 | [44615](https://github.com/airbytehq/airbyte/pull/44615) | Refactor connector to manifest-only format | | 0.1.16 | 2024-08-17 | [44279](https://github.com/airbytehq/airbyte/pull/44279) | Update dependencies | | 0.1.15 | 2024-08-10 | [43552](https://github.com/airbytehq/airbyte/pull/43552) | Update dependencies | From 25d5f2052297e9bc6b396e0b8105389f3868eecf Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:17 +0200 Subject: [PATCH 149/808] =?UTF-8?q?=F0=9F=90=99=20source-brevo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47622)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-brevo/metadata.yaml | 4 ++-- docs/integrations/sources/brevo.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-brevo/metadata.yaml b/airbyte-integrations/connectors/source-brevo/metadata.yaml index a9b478acc4c8..f6de4d8e76fe 100644 --- a/airbyte-integrations/connectors/source-brevo/metadata.yaml +++ b/airbyte-integrations/connectors/source-brevo/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-brevo connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: e2276f19-1c19-4d4e-ae6c-7df3c9c4ad49 - dockerImageTag: 0.1.0 + dockerImageTag: 0.1.1 dockerRepository: airbyte/source-brevo githubIssueLabel: source-brevo icon: icon.svg diff --git a/docs/integrations/sources/brevo.md b/docs/integrations/sources/brevo.md index 52c4804c80a4..73a8f6ab8588 100644 --- a/docs/integrations/sources/brevo.md +++ b/docs/integrations/sources/brevo.md @@ -49,7 +49,8 @@ Visit `https://app.brevo.com/settings/keys/api` for getting your api key. | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.1.1 | 2024-10-28 | [47622](https://github.com/airbytehq/airbyte/pull/47622) | Update dependencies | | 0.1.0 | 2024-10-08 | [46587](https://github.com/airbytehq/airbyte/pull/46587) | Fix Companies stream paginator+ remove incremental | | 0.0.1 | 2024-09-11 | [45382](https://github.com/airbytehq/airbyte/pull/45382) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 32dcd80e3dd7df55496b53e611f2cb38363dfb17 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:21 +0200 Subject: [PATCH 150/808] =?UTF-8?q?=F0=9F=90=99=20destination-qdrant:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47621)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-qdrant/metadata.yaml | 2 +- .../connectors/destination-qdrant/poetry.lock | 6 +++--- .../connectors/destination-qdrant/pyproject.toml | 2 +- docs/integrations/destinations/qdrant.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml index 84ee4cc4ceba..b09446308d58 100644 --- a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml +++ b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 6eb1198a-6d38-43e5-aaaa-dccd8f71db2b - dockerImageTag: 0.1.17 + dockerImageTag: 0.1.18 dockerRepository: airbyte/destination-qdrant githubIssueLabel: destination-qdrant icon: qdrant.svg diff --git a/airbyte-integrations/connectors/destination-qdrant/poetry.lock b/airbyte-integrations/connectors/destination-qdrant/poetry.lock index bac88c57d8c2..1aba1510d342 100644 --- a/airbyte-integrations/connectors/destination-qdrant/poetry.lock +++ b/airbyte-integrations/connectors/destination-qdrant/poetry.lock @@ -3954,13 +3954,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml index c6e0d851673d..b114409f579c 100644 --- a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml +++ b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-qdrant" -version = "0.1.17" +version = "0.1.18" description = "Airbyte destination implementation for Qdrant." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/qdrant.md b/docs/integrations/destinations/qdrant.md index af082510e51d..f9c525b951ee 100644 --- a/docs/integrations/destinations/qdrant.md +++ b/docs/integrations/destinations/qdrant.md @@ -73,6 +73,7 @@ You should now have all the requirements needed to configure Qdrant as a destina | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------- | +| 0.1.18 | 2024-10-28 | [47621](https://github.com/airbytehq/airbyte/pull/47621) | Update dependencies | | 0.1.17 | 2024-10-28 | [47054](https://github.com/airbytehq/airbyte/pull/47054) | Update dependencies | | 0.1.16 | 2024-10-12 | [46774](https://github.com/airbytehq/airbyte/pull/46774) | Update dependencies | | 0.1.15 | 2024-10-05 | [46417](https://github.com/airbytehq/airbyte/pull/46417) | Update dependencies | From c164c84a1976aa58b2872e401b1f9fbd7c8dc609 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:23 +0200 Subject: [PATCH 151/808] =?UTF-8?q?=F0=9F=90=99=20source-launchdarkly:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47620)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-launchdarkly/metadata.yaml | 4 ++-- docs/integrations/sources/launchdarkly.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-launchdarkly/metadata.yaml b/airbyte-integrations/connectors/source-launchdarkly/metadata.yaml index b2a66026c37d..87c566263645 100644 --- a/airbyte-integrations/connectors/source-launchdarkly/metadata.yaml +++ b/airbyte-integrations/connectors/source-launchdarkly/metadata.yaml @@ -6,11 +6,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: f96bb511-5e3c-48fc-b408-547953cd81a4 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-launchdarkly githubIssueLabel: source-launchdarkly icon: launchdarkly.svg diff --git a/docs/integrations/sources/launchdarkly.md b/docs/integrations/sources/launchdarkly.md index d1e56bd8d2a1..4c440ad86743 100644 --- a/docs/integrations/sources/launchdarkly.md +++ b/docs/integrations/sources/launchdarkly.md @@ -37,7 +37,8 @@ Launchdarkly APIs are under rate limits for the number of API calls allowed per | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47620](https://github.com/airbytehq/airbyte/pull/47620) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44135](https://github.com/airbytehq/airbyte/pull/44135) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-12 | [43791](https://github.com/airbytehq/airbyte/pull/43791) | Update dependencies | | 0.1.12 | 2024-08-10 | [43587](https://github.com/airbytehq/airbyte/pull/43587) | Update dependencies | From 95e2831f2d01e35909b208378ccf5e92646c2882 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:26 +0200 Subject: [PATCH 152/808] =?UTF-8?q?=F0=9F=90=99=20source-convertkit:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47619)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-convertkit/metadata.yaml | 4 ++-- docs/integrations/sources/convertkit.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-convertkit/metadata.yaml b/airbyte-integrations/connectors/source-convertkit/metadata.yaml index 95d28d0b3418..9ee01188383b 100644 --- a/airbyte-integrations/connectors/source-convertkit/metadata.yaml +++ b/airbyte-integrations/connectors/source-convertkit/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: be9ee02f-6efe-4970-979b-95f797a37188 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-convertkit githubIssueLabel: source-convertkit icon: convertkit.svg @@ -39,5 +39,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/convertkit.md b/docs/integrations/sources/convertkit.md index edb52e53ade6..219509bcd468 100644 --- a/docs/integrations/sources/convertkit.md +++ b/docs/integrations/sources/convertkit.md @@ -36,7 +36,8 @@ The connector has a rate limit of no more than 120 requests over a rolling 60 se | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47619](https://github.com/airbytehq/airbyte/pull/47619) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44161](https://github.com/airbytehq/airbyte/pull/44161) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43803](https://github.com/airbytehq/airbyte/pull/43803) | Update dependencies | | 0.1.13 | 2024-08-10 | [43503](https://github.com/airbytehq/airbyte/pull/43503) | Update dependencies | From b1d106ac3e6e6503568c27a55ee45987da019d5d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:29 +0200 Subject: [PATCH 153/808] =?UTF-8?q?=F0=9F=90=99=20source-wikipedia-pagevie?= =?UTF-8?q?ws:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47618)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-wikipedia-pageviews/metadata.yaml | 4 ++-- docs/integrations/sources/wikipedia-pageviews.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-wikipedia-pageviews/metadata.yaml b/airbyte-integrations/connectors/source-wikipedia-pageviews/metadata.yaml index 6ddc5c9693e3..4ad402cf3d52 100644 --- a/airbyte-integrations/connectors/source-wikipedia-pageviews/metadata.yaml +++ b/airbyte-integrations/connectors/source-wikipedia-pageviews/metadata.yaml @@ -6,11 +6,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.2@sha256:efe8a454f740dc6a07252c4a457777e7c81d95f0d2ea8e9d68114d3610e9a602 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 87c58f70-6f7a-4f70-aba5-bab1a458f5ba - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-wikipedia-pageviews githubIssueLabel: source-wikipedia-pageviews icon: wikipedia-pageviews.svg diff --git a/docs/integrations/sources/wikipedia-pageviews.md b/docs/integrations/sources/wikipedia-pageviews.md index 11db932ab007..4d7e85e242ab 100644 --- a/docs/integrations/sources/wikipedia-pageviews.md +++ b/docs/integrations/sources/wikipedia-pageviews.md @@ -53,6 +53,7 @@ The Wikipedia Pageviews source connector supports the following [sync modes](htt | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------- | +| 0.2.1 | 2024-10-28 | [47618](https://github.com/airbytehq/airbyte/pull/47618) | Update dependencies | | 0.2.0 | 2024-08-20 | [44460](https://github.com/airbytehq/airbyte/pull/44460) | Refactor connector to manifest-only format | | 0.1.10 | 2024-08-17 | [44202](https://github.com/airbytehq/airbyte/pull/44202) | Update dependencies | | 0.1.9 | 2024-08-12 | [43771](https://github.com/airbytehq/airbyte/pull/43771) | Update dependencies | From 6465a607b039eb7202ed9df481e3473c313a6576 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:32 +0200 Subject: [PATCH 154/808] =?UTF-8?q?=F0=9F=90=99=20source-leadfeeder:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47617)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-leadfeeder/metadata.yaml | 4 ++-- docs/integrations/sources/leadfeeder.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml b/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml index 4f8671b5e644..55e0ab7e2bd4 100644 --- a/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml +++ b/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-leadfeeder connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.2@sha256:efe8a454f740dc6a07252c4a457777e7c81d95f0d2ea8e9d68114d3610e9a602 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: daa0fe89-6e72-479e-a314-5e65cfc7103c - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-leadfeeder githubIssueLabel: source-leadfeeder icon: icon.svg diff --git a/docs/integrations/sources/leadfeeder.md b/docs/integrations/sources/leadfeeder.md index 63ac19e3e69b..d2a765b8b369 100644 --- a/docs/integrations/sources/leadfeeder.md +++ b/docs/integrations/sources/leadfeeder.md @@ -22,6 +22,7 @@ | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47617](https://github.com/airbytehq/airbyte/pull/47617) | Update dependencies | | 0.0.1 | 2024-08-21 | | Initial release by natikgadzhi via Connector Builder | From 2bde61b3b42c12955528e9629a74a45553431994 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:35 +0200 Subject: [PATCH 155/808] =?UTF-8?q?=F0=9F=90=99=20source-ashby:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47616)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-ashby/metadata.yaml | 4 ++-- docs/integrations/sources/ashby.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-ashby/metadata.yaml b/airbyte-integrations/connectors/source-ashby/metadata.yaml index 327f5c3f9d3f..5c19c3f34964 100644 --- a/airbyte-integrations/connectors/source-ashby/metadata.yaml +++ b/airbyte-integrations/connectors/source-ashby/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4e8c9fa0-3634-499b-b948-11581b5c3efa - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-ashby githubIssueLabel: source-ashby icon: ashby.svg @@ -29,5 +29,5 @@ data: connectorTestSuitesOptions: - suite: unitTests connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/ashby.md b/docs/integrations/sources/ashby.md index 26fe762c2199..0e161c156737 100644 --- a/docs/integrations/sources/ashby.md +++ b/docs/integrations/sources/ashby.md @@ -48,6 +48,7 @@ The Ashby connector should not run into Ashby API limitations under normal usage | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- |:--------------------------------------------| +| 0.2.1 | 2024-10-28 | [47616](https://github.com/airbytehq/airbyte/pull/47616) | Update dependencies | | 0.2.0 | 2024-08-19 | [44420](https://github.com/airbytehq/airbyte/pull/44420) | Refactor connector to manifest-only format | | 0.1.16 | 2024-08-17 | [44288](https://github.com/airbytehq/airbyte/pull/44288) | Update dependencies | | 0.1.15 | 2024-08-12 | [43780](https://github.com/airbytehq/airbyte/pull/43780) | Update dependencies | From 27106cb843c180d836aebe9e3b71cbda88e0403b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:37 +0200 Subject: [PATCH 156/808] =?UTF-8?q?=F0=9F=90=99=20source-height:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47615)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-height/metadata.yaml | 4 ++-- docs/integrations/sources/height.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-height/metadata.yaml b/airbyte-integrations/connectors/source-height/metadata.yaml index 6f99b1b2af8f..6cfe28561af9 100644 --- a/airbyte-integrations/connectors/source-height/metadata.yaml +++ b/airbyte-integrations/connectors/source-height/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-height connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 8f4b2d64-970a-4a6f-b316-3d1144c67be8 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-height githubIssueLabel: source-height icon: icon.svg diff --git a/docs/integrations/sources/height.md b/docs/integrations/sources/height.md index d606e4b76ab5..1ee1a23c80c0 100644 --- a/docs/integrations/sources/height.md +++ b/docs/integrations/sources/height.md @@ -37,6 +37,7 @@ API Documentation: https://height.notion.site/API-documentation-643aea5bf01742de | Version | Date | Pull Request | Subject | | ------------------ | ------------ | ---- | ---------------- | +| 0.0.2 | 2024-10-28 | [47615](https://github.com/airbytehq/airbyte/pull/47615) | Update dependencies | | 0.0.1 | 2024-08-31 | [45065](https://github.com/airbytehq/airbyte/pull/45065) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 1c20451f28a24ced2a000b1932eab6280000c9ee Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:40 +0200 Subject: [PATCH 157/808] =?UTF-8?q?=F0=9F=90=99=20source-zapier-supported-?= =?UTF-8?q?storage:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47614?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zapier-supported-storage/metadata.yaml | 4 ++-- docs/integrations/sources/zapier-supported-storage.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml b/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml index 46abda6a1c8d..933b596253f8 100644 --- a/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml +++ b/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: b8c917bc-7d1b-4828-995f-6726820266d0 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-zapier-supported-storage documentationUrl: https://docs.airbyte.com/integrations/sources/zapier-supported-storage githubIssueLabel: source-zapier-supported-storage diff --git a/docs/integrations/sources/zapier-supported-storage.md b/docs/integrations/sources/zapier-supported-storage.md index de1b48e4b2f9..ec0dc39aa983 100644 --- a/docs/integrations/sources/zapier-supported-storage.md +++ b/docs/integrations/sources/zapier-supported-storage.md @@ -25,8 +25,9 @@ The Zapier Supported Storage Connector can be used to sync your [Zapier](https:/ | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------| | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | -| 0.2.0 | 2024-08-09 | [43447](https://github.com/airbytehq/airbyte/pull/43447) | Refactor connector to manifest-only format | +| 0.2.2 | 2024-10-28 | [47614](https://github.com/airbytehq/airbyte/pull/47614) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.0 | 2024-08-09 | [43447](https://github.com/airbytehq/airbyte/pull/43447) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-03 | [43273](https://github.com/airbytehq/airbyte/pull/43273) | Update dependencies | | 0.1.13 | 2024-07-27 | [42720](https://github.com/airbytehq/airbyte/pull/42720) | Update dependencies | | 0.1.12 | 2024-07-20 | [42253](https://github.com/airbytehq/airbyte/pull/42253) | Update dependencies | From 22da773fbde292a733a86ec9336fce2d3cc385b6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:43 +0200 Subject: [PATCH 158/808] =?UTF-8?q?=F0=9F=90=99=20source-sparkpost:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47612)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sparkpost/metadata.yaml | 4 ++-- docs/integrations/sources/sparkpost.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sparkpost/metadata.yaml b/airbyte-integrations/connectors/source-sparkpost/metadata.yaml index 97d665b66096..44f97c546df1 100644 --- a/airbyte-integrations/connectors/source-sparkpost/metadata.yaml +++ b/airbyte-integrations/connectors/source-sparkpost/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-sparkpost connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 5f3256c6-4247-4b6d-a8e4-1df61dc9322c - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-sparkpost githubIssueLabel: source-sparkpost icon: icon.svg diff --git a/docs/integrations/sources/sparkpost.md b/docs/integrations/sources/sparkpost.md index fbfe7f0fffc8..b2f16902ad78 100644 --- a/docs/integrations/sources/sparkpost.md +++ b/docs/integrations/sources/sparkpost.md @@ -27,6 +27,7 @@ The SparkPost connector for Airbyte enables seamless integration with SparkPost | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47612](https://github.com/airbytehq/airbyte/pull/47612) | Update dependencies | | 0.0.1 | 2024-10-22 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 2a59567e7120ef028ab59912c9d8298c76b149b6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:48 +0200 Subject: [PATCH 159/808] =?UTF-8?q?=F0=9F=90=99=20source-waiteraid:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47610)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-waiteraid/metadata.yaml | 4 ++-- docs/integrations/sources/waiteraid.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-waiteraid/metadata.yaml b/airbyte-integrations/connectors/source-waiteraid/metadata.yaml index 26e9f53df70d..2e6fdd95b5fc 100644 --- a/airbyte-integrations/connectors/source-waiteraid/metadata.yaml +++ b/airbyte-integrations/connectors/source-waiteraid/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 03a53b13-794a-4d6b-8544-3b36ed8f3ce4 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-waiteraid githubIssueLabel: source-waiteraid icon: waiteraid.svg @@ -27,5 +27,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/waiteraid.md b/docs/integrations/sources/waiteraid.md index ef82c6df0f46..fe100f342e69 100644 --- a/docs/integrations/sources/waiteraid.md +++ b/docs/integrations/sources/waiteraid.md @@ -61,7 +61,8 @@ The Waiteraid source connector supports the following [sync modes](https://docs. | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------------------------------------------------- | :-------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47610](https://github.com/airbytehq/airbyte/pull/47610) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44047](https://github.com/airbytehq/airbyte/pull/44047) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43789](https://github.com/airbytehq/airbyte/pull/43789) | Update dependencies | | 0.1.13 | 2024-08-10 | [43568](https://github.com/airbytehq/airbyte/pull/43568) | Update dependencies | From 6378b39f433c380556c6518c860a36cb4a33c766 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:52 +0200 Subject: [PATCH 160/808] =?UTF-8?q?=F0=9F=90=99=20source-illumina-basespac?= =?UTF-8?q?e:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47609)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-illumina-basespace/metadata.yaml | 4 ++-- docs/integrations/sources/illumina-basespace.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml b/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml index 622d3c0df65b..03cdc66d2de5 100644 --- a/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml +++ b/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-illumina-basespace connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 62e9c4f2-a768-48f7-a8bf-d54bf1d96425 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-illumina-basespace githubIssueLabel: source-illumina-basespace icon: icon.svg diff --git a/docs/integrations/sources/illumina-basespace.md b/docs/integrations/sources/illumina-basespace.md index e10f112c53f3..4c7383a59885 100644 --- a/docs/integrations/sources/illumina-basespace.md +++ b/docs/integrations/sources/illumina-basespace.md @@ -28,6 +28,7 @@ Connector for the Basespace v1 API. This can be used to extract data on projects | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47609](https://github.com/airbytehq/airbyte/pull/47609) | Update dependencies | | 0.0.1 | 2024-09-23 | | Initial release by [@FilipeJesus](https://github.com/FilipeJesus) via Connector Builder | - \ No newline at end of file + From 9bedf07f049eaebdd93102ed93fcecbee82e6fd3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:55 +0200 Subject: [PATCH 161/808] =?UTF-8?q?=F0=9F=90=99=20source-square:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47608)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-square/metadata.yaml | 4 ++-- docs/integrations/sources/square.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-square/metadata.yaml b/airbyte-integrations/connectors/source-square/metadata.yaml index b98ca1a15c3d..0d2e842a4755 100644 --- a/airbyte-integrations/connectors/source-square/metadata.yaml +++ b/airbyte-integrations/connectors/source-square/metadata.yaml @@ -7,11 +7,11 @@ data: - connect.squareupsandbox.com - connect.squareup.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 77225a51-cd15-4a13-af02-65816bd0ecf4 - dockerImageTag: 1.7.0 + dockerImageTag: 1.7.1 dockerRepository: airbyte/source-square documentationUrl: https://docs.airbyte.com/integrations/sources/square githubIssueLabel: source-square diff --git a/docs/integrations/sources/square.md b/docs/integrations/sources/square.md index 535400d0f283..e7ca1dd28aff 100644 --- a/docs/integrations/sources/square.md +++ b/docs/integrations/sources/square.md @@ -103,7 +103,8 @@ Exponential [Backoff](https://developer.squareup.com/forums/t/current-square-api | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------ | -| 1.7.0 | 2024-10-06 | [46527](https://github.com/airbytehq/airbyte/pull/46527) | Migrate to Manifest-only | +| 1.7.1 | 2024-10-28 | [47608](https://github.com/airbytehq/airbyte/pull/47608) | Update dependencies | +| 1.7.0 | 2024-10-06 | [46527](https://github.com/airbytehq/airbyte/pull/46527) | Migrate to Manifest-only | | 1.6.23 | 2024-10-05 | [46409](https://github.com/airbytehq/airbyte/pull/46409) | Update dependencies | | 1.6.22 | 2024-09-28 | [46162](https://github.com/airbytehq/airbyte/pull/46162) | Update dependencies | | 1.6.21 | 2024-09-21 | [45787](https://github.com/airbytehq/airbyte/pull/45787) | Update dependencies | From ec62457383ede092beb4bed94b43aed4f56e4910 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:11:58 +0200 Subject: [PATCH 162/808] =?UTF-8?q?=F0=9F=90=99=20source-dropbox-sign:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47607)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-dropbox-sign/metadata.yaml | 4 ++-- docs/integrations/sources/dropbox-sign.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-dropbox-sign/metadata.yaml b/airbyte-integrations/connectors/source-dropbox-sign/metadata.yaml index 107e6737f5c9..bb6a5839a7d1 100644 --- a/airbyte-integrations/connectors/source-dropbox-sign/metadata.yaml +++ b/airbyte-integrations/connectors/source-dropbox-sign/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-dropbox-sign connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: da9cccd2-7319-44ea-b6cf-ddc08f13e959 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-dropbox-sign githubIssueLabel: source-dropbox-sign icon: icon.svg diff --git a/docs/integrations/sources/dropbox-sign.md b/docs/integrations/sources/dropbox-sign.md index 7b1f7ef29a2b..79645ef76bfb 100644 --- a/docs/integrations/sources/dropbox-sign.md +++ b/docs/integrations/sources/dropbox-sign.md @@ -23,6 +23,7 @@ See the [API docs](https://developers.hellosign.com/api/reference/authentication | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47607](https://github.com/airbytehq/airbyte/pull/47607) | Update dependencies | | 0.0.1 | 2024-09-20 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From ca3547eacc1fd95f4544f922a4dfe12cdc09dff4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:01 +0200 Subject: [PATCH 163/808] =?UTF-8?q?=F0=9F=90=99=20source-kisi:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47606)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-kisi/metadata.yaml | 4 ++-- docs/integrations/sources/kisi.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-kisi/metadata.yaml b/airbyte-integrations/connectors/source-kisi/metadata.yaml index 1b968d9a5e22..c86bbc13019b 100644 --- a/airbyte-integrations/connectors/source-kisi/metadata.yaml +++ b/airbyte-integrations/connectors/source-kisi/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-kisi connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 7706728b-f644-456e-8dd4-ac92c4d8f31a - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-kisi githubIssueLabel: source-kisi icon: icon.svg diff --git a/docs/integrations/sources/kisi.md b/docs/integrations/sources/kisi.md index f5f300b5239c..4d591e548fc3 100644 --- a/docs/integrations/sources/kisi.md +++ b/docs/integrations/sources/kisi.md @@ -39,6 +39,7 @@ You can learn more about the API key here https://api.kisi.io/docs#/ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47606](https://github.com/airbytehq/airbyte/pull/47606) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 3b536ec32bffb3814b71037857a972c5dce6abb0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:04 +0200 Subject: [PATCH 164/808] =?UTF-8?q?=F0=9F=90=99=20source-zoho-inventory:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47605)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zoho-inventory/metadata.yaml | 4 ++-- docs/integrations/sources/zoho-inventory.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-zoho-inventory/metadata.yaml b/airbyte-integrations/connectors/source-zoho-inventory/metadata.yaml index 421d6ee5a51d..54bb74422295 100644 --- a/airbyte-integrations/connectors/source-zoho-inventory/metadata.yaml +++ b/airbyte-integrations/connectors/source-zoho-inventory/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-zoho-inventory connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 757a3302-b2d5-4fb5-ae7f-b161fd619215 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-zoho-inventory githubIssueLabel: source-zoho-inventory icon: icon.svg diff --git a/docs/integrations/sources/zoho-inventory.md b/docs/integrations/sources/zoho-inventory.md index 6d278b3d1618..09dea9015a65 100644 --- a/docs/integrations/sources/zoho-inventory.md +++ b/docs/integrations/sources/zoho-inventory.md @@ -35,6 +35,7 @@ The Zoho Inventory connector enables seamless data synchronization between Zoho | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47605](https://github.com/airbytehq/airbyte/pull/47605) | Update dependencies | | 0.0.1 | 2024-10-19 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 7823ef660b75774d678309745a3ee12ed40c830c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:08 +0200 Subject: [PATCH 165/808] =?UTF-8?q?=F0=9F=90=99=20source-jotform:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47603)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-jotform/metadata.yaml | 4 ++-- docs/integrations/sources/jotform.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-jotform/metadata.yaml b/airbyte-integrations/connectors/source-jotform/metadata.yaml index 30d17f8f6145..0ed8f160b7d1 100644 --- a/airbyte-integrations/connectors/source-jotform/metadata.yaml +++ b/airbyte-integrations/connectors/source-jotform/metadata.yaml @@ -16,11 +16,11 @@ data: enabled: false packageName: airbyte-source-jotform connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 3456679e-2ff2-4ef7-aa9f-da6c0cc13894 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-jotform githubIssueLabel: source-jotform icon: icon.svg diff --git a/docs/integrations/sources/jotform.md b/docs/integrations/sources/jotform.md index 73467896d132..2152e9b652ef 100644 --- a/docs/integrations/sources/jotform.md +++ b/docs/integrations/sources/jotform.md @@ -32,6 +32,7 @@ To get started, you need a valid API key. | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47603](https://github.com/airbytehq/airbyte/pull/47603) | Update dependencies | | 0.0.1 | 2024-09-12 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 5452980a84b336dfd0641d19ecfe7f2b1b453b6e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:13 +0200 Subject: [PATCH 166/808] =?UTF-8?q?=F0=9F=90=99=20source-strava:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47601)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-strava/metadata.yaml | 4 ++-- docs/integrations/sources/strava.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-strava/metadata.yaml b/airbyte-integrations/connectors/source-strava/metadata.yaml index 645cdb63729c..8f86a365d9fb 100644 --- a/airbyte-integrations/connectors/source-strava/metadata.yaml +++ b/airbyte-integrations/connectors/source-strava/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - strava.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 7a4327c4-315a-11ec-8d3d-0242ac130003 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-strava documentationUrl: https://docs.airbyte.com/integrations/sources/strava githubIssueLabel: source-strava diff --git a/docs/integrations/sources/strava.md b/docs/integrations/sources/strava.md index 80deed6cbf0d..2af50e6b4f5e 100644 --- a/docs/integrations/sources/strava.md +++ b/docs/integrations/sources/strava.md @@ -127,6 +127,7 @@ More information about Strava rate limits and adjustments to those limits can be | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.1 | 2024-10-28 | [47601](https://github.com/airbytehq/airbyte/pull/47601) | Update dependencies | | 0.3.0 | 2024-08-27 | [44820](https://github.com/airbytehq/airbyte/pull/44820) | Refactor connector to manifest-only format | | 0.2.17 | 2024-08-24 | [44667](https://github.com/airbytehq/airbyte/pull/44667) | Update dependencies | | 0.2.16 | 2024-08-17 | [44354](https://github.com/airbytehq/airbyte/pull/44354) | Update dependencies | From 82821c57e336cf52322433cb7aaabcfe754c16d9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:16 +0200 Subject: [PATCH 167/808] =?UTF-8?q?=F0=9F=90=99=20source-missive:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47599)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-missive/metadata.yaml | 4 ++-- docs/integrations/sources/missive.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-missive/metadata.yaml b/airbyte-integrations/connectors/source-missive/metadata.yaml index 8efff797e13d..a1f6110a197c 100644 --- a/airbyte-integrations/connectors/source-missive/metadata.yaml +++ b/airbyte-integrations/connectors/source-missive/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-missive connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 740eadea-6f7a-49dc-a2e6-bdf935a79996 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-missive githubIssueLabel: source-missive icon: icon.svg diff --git a/docs/integrations/sources/missive.md b/docs/integrations/sources/missive.md index 0fc524f782d1..0c51124ca9e6 100644 --- a/docs/integrations/sources/missive.md +++ b/docs/integrations/sources/missive.md @@ -35,6 +35,7 @@ Visit `https://missiveapp.com/help/api-documentation/rest-endpoints` for API doc | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47599](https://github.com/airbytehq/airbyte/pull/47599) | Update dependencies | | 0.0.1 | 2024-09-22 | [45844](https://github.com/airbytehq/airbyte/pull/45844) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 158cf3504a7fb366fe7513353769be33e4de324c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:18 +0200 Subject: [PATCH 168/808] =?UTF-8?q?=F0=9F=90=99=20source-clazar:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47598)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-clazar/metadata.yaml | 4 +-- docs/integrations/sources/clazar.md | 29 ++++++++++--------- 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/airbyte-integrations/connectors/source-clazar/metadata.yaml b/airbyte-integrations/connectors/source-clazar/metadata.yaml index 5250884739cb..7c4fc2c7e7a2 100644 --- a/airbyte-integrations/connectors/source-clazar/metadata.yaml +++ b/airbyte-integrations/connectors/source-clazar/metadata.yaml @@ -12,11 +12,11 @@ data: enabled: false packageName: airbyte-source-clazar connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.2@sha256:efe8a454f740dc6a07252c4a457777e7c81d95f0d2ea8e9d68114d3610e9a602 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: d7df7b64-6266-45b5-ad83-e1515578f371 - dockerImageTag: 0.4.0 + dockerImageTag: 0.4.1 dockerRepository: airbyte/source-clazar githubIssueLabel: source-clazar icon: clazar.svg diff --git a/docs/integrations/sources/clazar.md b/docs/integrations/sources/clazar.md index 66d844c2a8e4..e5bb4b8fd689 100644 --- a/docs/integrations/sources/clazar.md +++ b/docs/integrations/sources/clazar.md @@ -112,20 +112,21 @@ Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------| -| 0.4.0 | 2024-08-30 | [44855](https://github.com/airbytehq/airbyte/pull/44855) | Using incremental APIs for online data | -| 0.3.0 | 2024-08-21 | [44523](https://github.com/airbytehq/airbyte/pull/44523) | Refactor connector to manifest-only format | -| 0.2.6 | 2024-08-17 | [44217](https://github.com/airbytehq/airbyte/pull/44217) | Update dependencies | -| 0.2.5 | 2024-08-12 | [43768](https://github.com/airbytehq/airbyte/pull/43768) | Update dependencies | -| 0.2.4 | 2024-08-05 | [42851](https://github.com/airbytehq/airbyte/pull/42851) | Updated schema of Analytics AWS opportunities table | -| 0.2.3 | 2024-08-03 | [43155](https://github.com/airbytehq/airbyte/pull/43155) | Update dependencies | -| 0.2.2 | 2024-07-27 | [42617](https://github.com/airbytehq/airbyte/pull/42617) | Update dependencies | -| 0.2.1 | 2024-07-20 | [42315](https://github.com/airbytehq/airbyte/pull/42315) | Update dependencies | -| 0.2.0 | 2024-07-18 | [41657](https://github.com/airbytehq/airbyte/pull/41657) | removed redundant columns from streams, added documentation for analytics | -| 0.1.4 | 2024-07-13 | [41759](https://github.com/airbytehq/airbyte/pull/41759) | Update dependencies | -| 0.1.3 | 2024-07-10 | [41351](https://github.com/airbytehq/airbyte/pull/41351) | Update dependencies | -| 0.1.2 | 2024-07-09 | [41123](https://github.com/airbytehq/airbyte/pull/41123) | Update dependencies | -| 0.1.1 | 2024-07-06 | [40922](https://github.com/airbytehq/airbyte/pull/40922) | Update dependencies | -| 0.1.0 | 2024-07-02 | [40562](https://github.com/airbytehq/airbyte/pull/40562) | New Source: Clazar | +| 0.4.1 | 2024-10-28 | [47598](https://github.com/airbytehq/airbyte/pull/47598) | Update dependencies | +| 0.4.0 | 2024-08-30 | [44855](https://github.com/airbytehq/airbyte/pull/44855) | Using incremental APIs for online data | +| 0.3.0 | 2024-08-21 | [44523](https://github.com/airbytehq/airbyte/pull/44523) | Refactor connector to manifest-only format | +| 0.2.6 | 2024-08-17 | [44217](https://github.com/airbytehq/airbyte/pull/44217) | Update dependencies | +| 0.2.5 | 2024-08-12 | [43768](https://github.com/airbytehq/airbyte/pull/43768) | Update dependencies | +| 0.2.4 | 2024-08-05 | [42851](https://github.com/airbytehq/airbyte/pull/42851) | Updated schema of Analytics AWS opportunities table | +| 0.2.3 | 2024-08-03 | [43155](https://github.com/airbytehq/airbyte/pull/43155) | Update dependencies | +| 0.2.2 | 2024-07-27 | [42617](https://github.com/airbytehq/airbyte/pull/42617) | Update dependencies | +| 0.2.1 | 2024-07-20 | [42315](https://github.com/airbytehq/airbyte/pull/42315) | Update dependencies | +| 0.2.0 | 2024-07-18 | [41657](https://github.com/airbytehq/airbyte/pull/41657) | removed redundant columns from streams, added documentation for analytics | +| 0.1.4 | 2024-07-13 | [41759](https://github.com/airbytehq/airbyte/pull/41759) | Update dependencies | +| 0.1.3 | 2024-07-10 | [41351](https://github.com/airbytehq/airbyte/pull/41351) | Update dependencies | +| 0.1.2 | 2024-07-09 | [41123](https://github.com/airbytehq/airbyte/pull/41123) | Update dependencies | +| 0.1.1 | 2024-07-06 | [40922](https://github.com/airbytehq/airbyte/pull/40922) | Update dependencies | +| 0.1.0 | 2024-07-02 | [40562](https://github.com/airbytehq/airbyte/pull/40562) | New Source: Clazar | From 619f87cc52cc780a627bc34dfc220603470823ca Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:23 +0200 Subject: [PATCH 169/808] =?UTF-8?q?=F0=9F=90=99=20source-getlago:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47596)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-getlago/metadata.yaml | 4 ++-- docs/integrations/sources/getlago.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-getlago/metadata.yaml b/airbyte-integrations/connectors/source-getlago/metadata.yaml index 6a9d4be39383..eba0683e1691 100644 --- a/airbyte-integrations/connectors/source-getlago/metadata.yaml +++ b/airbyte-integrations/connectors/source-getlago/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: e1a3866b-d3b2-43b6-b6d7-8c1ee4d7f53f - dockerImageTag: 0.7.0 + dockerImageTag: 0.7.1 dockerRepository: airbyte/source-getlago githubIssueLabel: source-getlago icon: getlago.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/getlago.md b/docs/integrations/sources/getlago.md index af959fd701e3..ed27b02e542b 100644 --- a/docs/integrations/sources/getlago.md +++ b/docs/integrations/sources/getlago.md @@ -34,6 +34,7 @@ This source can sync data from the [Lago API](https://doc.getlago.com/docs/guide | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :---------------------------------------- | +| 0.7.1 | 2024-10-28 | [47596](https://github.com/airbytehq/airbyte/pull/47596) | Update dependencies | | 0.7.0 | 2024-09-12 | [45452](https://github.com/airbytehq/airbyte/pull/45452) | Endpoint customer usage: import current from subscription and add new stream customer_usage_past | | 0.6.0 | 2024-09-06 | [45193](https://github.com/airbytehq/airbyte/pull/45193) | Endpoint customer usage ignore 405 response | | 0.5.0 | 2024-08-23 | [44613](https://github.com/airbytehq/airbyte/pull/44613) | Refactor connector to manifest-only format | From d603e2d19ff5099f0ef6d775e46ccbcde93db15e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:26 +0200 Subject: [PATCH 170/808] =?UTF-8?q?=F0=9F=90=99=20source-xsolla:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47595)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-xsolla/metadata.yaml | 4 ++-- docs/integrations/sources/xsolla.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-xsolla/metadata.yaml b/airbyte-integrations/connectors/source-xsolla/metadata.yaml index d9a455cfbd49..ca88d21af590 100644 --- a/airbyte-integrations/connectors/source-xsolla/metadata.yaml +++ b/airbyte-integrations/connectors/source-xsolla/metadata.yaml @@ -13,10 +13,10 @@ data: enabled: false packageName: airbyte-source-xsolla connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.11.1@sha256:f48a7ddc1f3acecbd8eb6a10a3146e8d0396e9a4dede77beafb76924f416df65 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorType: source definitionId: 6ff73a16-05a8-4f7e-8771-5433764678f1 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-xsolla githubIssueLabel: source-xsolla icon: icon.svg diff --git a/docs/integrations/sources/xsolla.md b/docs/integrations/sources/xsolla.md index b45a51b6f102..d59d26f69765 100644 --- a/docs/integrations/sources/xsolla.md +++ b/docs/integrations/sources/xsolla.md @@ -26,6 +26,7 @@ The Xsolla Airbyte Connector enables seamless integration between Xsolla and var | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47595](https://github.com/airbytehq/airbyte/pull/47595) | Update dependencies | | 0.0.1 | 2024-10-01 | | Initial release by [@avirajsingh7](https://github.com/avirajsingh7) via Connector Builder | From d20d1907e45c10661b9f95cb867a14d579a1df18 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:29 +0200 Subject: [PATCH 171/808] =?UTF-8?q?=F0=9F=90=99=20source-open-data-dc:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47594)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-open-data-dc/metadata.yaml | 4 ++-- docs/integrations/sources/open-data-dc.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-open-data-dc/metadata.yaml b/airbyte-integrations/connectors/source-open-data-dc/metadata.yaml index 380de7fb7752..75c1751efa02 100644 --- a/airbyte-integrations/connectors/source-open-data-dc/metadata.yaml +++ b/airbyte-integrations/connectors/source-open-data-dc/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-open-data-dc connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 1178ad64-72bb-4326-86fb-b623663842b6 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-open-data-dc githubIssueLabel: source-open-data-dc icon: icon.svg diff --git a/docs/integrations/sources/open-data-dc.md b/docs/integrations/sources/open-data-dc.md index 1c02ccd72e0e..1ff8df916765 100644 --- a/docs/integrations/sources/open-data-dc.md +++ b/docs/integrations/sources/open-data-dc.md @@ -43,6 +43,7 @@ MARID is the Master Address Repository ID associated with all addresses within t | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47594](https://github.com/airbytehq/airbyte/pull/47594) | Update dependencies | | 0.0.1 | 2024-10-06 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 29a0d62fe37e26ab352051bedbe2e7b45ac4e371 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:32 +0200 Subject: [PATCH 172/808] =?UTF-8?q?=F0=9F=90=99=20source-merge:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47593)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-merge/metadata.yaml | 4 ++-- docs/integrations/sources/merge.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-merge/metadata.yaml b/airbyte-integrations/connectors/source-merge/metadata.yaml index 849f81338cf0..5613af9afa0a 100644 --- a/airbyte-integrations/connectors/source-merge/metadata.yaml +++ b/airbyte-integrations/connectors/source-merge/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 23240e9e-d14a-43bc-899f-72ea304d1994 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-merge githubIssueLabel: source-merge icon: merge.svg @@ -37,5 +37,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/merge.md b/docs/integrations/sources/merge.md index 9657ce3d11d1..4f3ce018008e 100644 --- a/docs/integrations/sources/merge.md +++ b/docs/integrations/sources/merge.md @@ -79,6 +79,7 @@ Merge [API reference](https://api.merge.dev/api/ats/v1/) has v1 at present. The | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------- | :------------- | +| 0.2.1 | 2024-10-28 | [47593](https://github.com/airbytehq/airbyte/pull/47593) | Update dependencies | | 0.2.0 | 2024-08-26 | [44768](https://github.com/airbytehq/airbyte/pull/44768) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-24 | [44665](https://github.com/airbytehq/airbyte/pull/44665) | Update dependencies | | 0.1.14 | 2024-08-17 | [44297](https://github.com/airbytehq/airbyte/pull/44297) | Update dependencies | From 837fc42b26b62134efd22cc83807d11952ad8cd7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:35 +0200 Subject: [PATCH 173/808] =?UTF-8?q?=F0=9F=90=99=20source-mailersend:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47592)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailersend/metadata.yaml | 4 ++-- docs/integrations/sources/mailersend.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailersend/metadata.yaml b/airbyte-integrations/connectors/source-mailersend/metadata.yaml index 5ab7984dc503..5b00bed3da9e 100644 --- a/airbyte-integrations/connectors/source-mailersend/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailersend/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2707d529-3c04-46eb-9c7e-40d4038df6f7 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-mailersend githubIssueLabel: source-mailersend icon: mailersend.svg @@ -38,5 +38,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/mailersend.md b/docs/integrations/sources/mailersend.md index 2c111d748b85..e71d1d0b91eb 100644 --- a/docs/integrations/sources/mailersend.md +++ b/docs/integrations/sources/mailersend.md @@ -28,6 +28,7 @@ MailerSend has a default [rate limit](https://developers.mailersend.com/general. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------- | +| 0.2.1 | 2024-10-28 | [47592](https://github.com/airbytehq/airbyte/pull/47592) | Update dependencies | | 0.2.0 | 2024-08-26 | [44766](https://github.com/airbytehq/airbyte/pull/44766) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-24 | [44697](https://github.com/airbytehq/airbyte/pull/44697) | Update dependencies | | 0.1.14 | 2024-08-17 | [44258](https://github.com/airbytehq/airbyte/pull/44258) | Update dependencies | From d26319a3a7b1c97cb01cff0c5262c56ff44457a1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:40 +0200 Subject: [PATCH 174/808] =?UTF-8?q?=F0=9F=90=99=20destination-aws-datalake?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47590)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-aws-datalake/metadata.yaml | 2 +- .../destination-aws-datalake/poetry.lock | 222 +++++++++--------- .../destination-aws-datalake/pyproject.toml | 2 +- .../integrations/destinations/aws-datalake.md | 1 + 4 files changed, 116 insertions(+), 111 deletions(-) diff --git a/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml b/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml index 54915344de77..cf219a4cd385 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml +++ b/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml @@ -4,7 +4,7 @@ data: definitionId: 99878c90-0fbd-46d3-9d98-ffde879d17fc connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 - dockerImageTag: 0.1.34 + dockerImageTag: 0.1.35 dockerRepository: airbyte/destination-aws-datalake githubIssueLabel: destination-aws-datalake icon: awsdatalake.svg diff --git a/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock b/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock index 9527cc2aedda..62ce1154f5db 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock +++ b/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock @@ -144,17 +144,17 @@ files = [ [[package]] name = "boto3" -version = "1.35.45" +version = "1.35.49" description = "The AWS SDK for Python" optional = false python-versions = ">=3.8" files = [ - {file = "boto3-1.35.45-py3-none-any.whl", hash = "sha256:f16c7edfcbbeb0a0c22d67d6ebbfcb332fa78d3ea88275e082260ba04fe65347"}, - {file = "boto3-1.35.45.tar.gz", hash = "sha256:9f4a081e1940846171b51d903000a04322f1356d53225ce1028fc1760a155a70"}, + {file = "boto3-1.35.49-py3-none-any.whl", hash = "sha256:b660c649a27a6b47a34f6f858f5bd7c3b0a798a16dec8dda7cbebeee80fd1f60"}, + {file = "boto3-1.35.49.tar.gz", hash = "sha256:ddecb27f5699ca9f97711c52b6c0652c2e63bf6c2bfbc13b819b4f523b4d30ff"}, ] [package.dependencies] -botocore = ">=1.35.45,<1.36.0" +botocore = ">=1.35.49,<1.36.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.10.0,<0.11.0" @@ -163,13 +163,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.35.45" +version = "1.35.49" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" files = [ - {file = "botocore-1.35.45-py3-none-any.whl", hash = "sha256:e07e170975721c94ec1e3bf71a484552ad63e2499f769dd14f9f37375b4993fd"}, - {file = "botocore-1.35.45.tar.gz", hash = "sha256:9a898bfdd6b0027fee2018711192c15c2716bf6a7096b1168bd8a896df3664a1"}, + {file = "botocore-1.35.49-py3-none-any.whl", hash = "sha256:aed4d3643afd702920792b68fbe712a8c3847993820d1048cd238a6469354da1"}, + {file = "botocore-1.35.49.tar.gz", hash = "sha256:07d0c1325fdbfa49a4a054413dbdeab0a6030449b2aa66099241af2dac48afd8"}, ] [package.dependencies] @@ -757,13 +757,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.136" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.136-py3-none-any.whl", hash = "sha256:cad2215eb7a754ee259878e19c558f4f8d3795aa1b699f087d4500e640f80d0a"}, - {file = "langsmith-0.1.136.tar.gz", hash = "sha256:5c0de01a313db70dd9a85845c0f416a69b5b653b3e98ba413d7d41e8851315b1"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -890,68 +890,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.9" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.9-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a377186a11b48c55969e34f0aa414c2826a234f212d6f2b312ba512e3cdb2c6f"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bf37bf0ca538065c34efe1803378b2dadd7e05b06610a086c2857f15ee59e12"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7d9d83a91168aa48309acba804e393b7d9216b66f15e38f339b9fbb00db8986d"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e0014038a17a1fe273da0a5489787677ef5a64566ab383ad6d929e44ed5683f4"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d6ae1b1733e4528e45675ed09a732b6ac37d716bce2facaf467f84ce774adecd"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe91c2259c4a859356b6db1c6e649b40577492f66d483da8b8af6da0f87c00e3"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a04f912c32463386ba117591c99a3d9e40b3b69bed9c5123d89dff06f0f5a4b0"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae82ca347829ca47431767b079f96bb977f592189250ccdede676339a80c8982"}, - {file = "orjson-3.10.9-cp310-none-win32.whl", hash = "sha256:fd5083906825d7f5d23089425ce5424d783d6294020bcabb8518a3e1f97833e5"}, - {file = "orjson-3.10.9-cp310-none-win_amd64.whl", hash = "sha256:e9ff9521b5be0340c8e686bcfe2619777fd7583f71e7b494601cc91ad3919d2e"}, - {file = "orjson-3.10.9-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f3bd9df47385b8fabb3b2ee1e83f9960b8accc1905be971a1c257f16c32b491e"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4948961b6bce1e2086b2cf0b56cc454cdab589d40c7f85be71fb5a5556c51d3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a9fc7a6cf2b229ddc323e136df13b3fb4466c50d84ed600cd0898223dd2fea3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2314846e1029a2d2b899140f350eaaf3a73281df43ba84ac44d94ca861b5b269"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f52d993504827503411df2d60e60acf52885561458d6273f99ecd172f31c4352"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e29bbf08d907756c145a3a3a1f7ce2f11f15e3edbd3342842589d6030981b76f"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7ae82992c00b480c3cc7dac6739324554be8c5d8e858a90044928506a3333ef4"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6fdf8d32b6d94019dc15163542d345e9ce4c4661f56b318608aa3088a1a3a23b"}, - {file = "orjson-3.10.9-cp311-none-win32.whl", hash = "sha256:01f5fef452b4d7615f2e94153479370a4b59e0c964efb32dd902978f807a45cd"}, - {file = "orjson-3.10.9-cp311-none-win_amd64.whl", hash = "sha256:95361c4197c7ce9afdf56255de6f4e2474c39d16a277cce31d1b99a2520486d8"}, - {file = "orjson-3.10.9-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:43ad5560db54331c007dc38be5ba7706cb72974a29ae8227019d89305d750a6f"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1471c3274b1a4a9b8f4b9ed6effaea9ad885796373797515c44b365b375c256d"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:41d8cac575acd15918903d74cfaabb5dbe57b357b93341332f647d1013928dcc"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2920c8754f1aedc98bd357ec172af18ce48f5f1017a92244c85fe41d16d3c6e0"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7fa3ff6a0d9d15a0d0d2254cca16cd919156a18423654ce5574591392fe9914"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1e91b90c0c26bd79593967c1adef421bcff88c9e723d49c93bb7ad8af80bc6b"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f11949024f785ace1a516db32fa6255f6227226b2c988abf66f5aee61d43d8f7"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:060e020d85d0ec145bc1b536b1fd9c10a0519c91991ead9724d6f759ebe26b9a"}, - {file = "orjson-3.10.9-cp312-none-win32.whl", hash = "sha256:71f73439999fe662843da3607cdf6e75b1551c330f487e5801d463d969091c63"}, - {file = "orjson-3.10.9-cp312-none-win_amd64.whl", hash = "sha256:12e2efe81356b8448f1cd130f8d75d3718de583112d71f2e2f8baa81bd835bb9"}, - {file = "orjson-3.10.9-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:0ab6e3ad10e964392f0e838751bcce2ef9c8fa8be7deddffff83088e5791566d"}, - {file = "orjson-3.10.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68ef65223baab00f469c8698f771ab3e6ccf6af2a987e77de5b566b4ec651150"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6f130848205fea90a2cb9fa2b11cafff9a9f31f4efad225800bc8b9e4a702f24"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2ea7a98f3295ed8adb6730a5788cc78dafea28300d19932a1d2143457f7db802"}, - {file = "orjson-3.10.9-cp313-none-win32.whl", hash = "sha256:bdce39f96149a74fddeb2674c54f1da5e57724d32952eb6df2ac719b66d453cc"}, - {file = "orjson-3.10.9-cp313-none-win_amd64.whl", hash = "sha256:d11383701d4b58e795039b662ada46987744293d57bfa2719e7379b8d67bc796"}, - {file = "orjson-3.10.9-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1c3a1e845916a3739ab4162bb48dee66e0e727a19faf397176a7db0d9826cc3c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:063ca59d93d93d1387f0c4bb766c6d4f5b0e423fe7c366d0bd4401a56d1669d1"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:938b7fcd79cf06fe348fb24b6163fbaa2fdc9fbed8b1f06318f24467f1487e63"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cc32a9e43c7693011ccde6f8eff8cba75ca0d2a55de11092faa4a716101e67f5"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1b3069b7e2f57f3eef2282029b9c2ba21f08a55f1018e483663a3356f046af4c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4289b5d1f88fd05dcafdd7a1f3b17bb722e77712b7618f98e86bdda560e0a1a"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:74f5a7a7f282d326be71b722b0c350da7af6f5f15b9378da177e0e4a09bd91a3"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:80e0c013e50cf7198319d8137931684eb9f32daa067e8276d9dbdd4010bb4add"}, - {file = "orjson-3.10.9-cp38-none-win32.whl", hash = "sha256:9d989152df8f60a76867354e0e08d896292ab9fb96a7ef89a5b3838de174522c"}, - {file = "orjson-3.10.9-cp38-none-win_amd64.whl", hash = "sha256:485358fe9892d6bfd88e5885b66bf88496e1842c8f35f61682ff9928b12a6cf0"}, - {file = "orjson-3.10.9-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ca54e6f320e33c8a6e471c424ee16576361d905c15d69e134c2906d3fcb31795"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9a9eb03a29c9b30b6c8bb35e5fa20d96589a76e0042005be59b7c3af10a7e43"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:731e8859fc99b398c286320726906404091141e9223dd5e9e6917f7e32e1cc68"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:75b061c11f5aab979a95927a76394b4a85e3e4d63d0a2a16b56a4f7c6503afab"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b61b08f6397f004570fd6a840f4a58946b63b4c7029408cdedb45fe85c7d17f7"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c4f5e0360b7f0aba91dafe12469108109a0e8973956d4a9865ca262a6881406"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e403429e2947a059545e305d97e4b0eb90d3bb44b396d6f327d7ae2018391e13"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0e492b93e122264c2dc78700859122631a4715bda88fabf57d9226954cfe7ec5"}, - {file = "orjson-3.10.9-cp39-none-win32.whl", hash = "sha256:bfba9605e85bfd19b83a21c2c25c2bed2000d5f097f3fa3ad5b5f8a7263a3148"}, - {file = "orjson-3.10.9-cp39-none-win_amd64.whl", hash = "sha256:77d277fa138d4bf145e8b24042004891c188c52ac8492724a183f42b0031cf0c"}, - {file = "orjson-3.10.9.tar.gz", hash = "sha256:c378074e0c46035dc66e57006993233ec66bf8487d501bab41649b4b7289ed4d"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1099,52 +1100,55 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "pyarrow" -version = "17.0.0" +version = "18.0.0" description = "Python library for Apache Arrow" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pyarrow-17.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:a5c8b238d47e48812ee577ee20c9a2779e6a5904f1708ae240f53ecbee7c9f07"}, - {file = "pyarrow-17.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:db023dc4c6cae1015de9e198d41250688383c3f9af8f565370ab2b4cb5f62655"}, - {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da1e060b3876faa11cee287839f9cc7cdc00649f475714b8680a05fd9071d545"}, - {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75c06d4624c0ad6674364bb46ef38c3132768139ddec1c56582dbac54f2663e2"}, - {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:fa3c246cc58cb5a4a5cb407a18f193354ea47dd0648194e6265bd24177982fe8"}, - {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:f7ae2de664e0b158d1607699a16a488de3d008ba99b3a7aa5de1cbc13574d047"}, - {file = "pyarrow-17.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5984f416552eea15fd9cee03da53542bf4cddaef5afecefb9aa8d1010c335087"}, - {file = "pyarrow-17.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:1c8856e2ef09eb87ecf937104aacfa0708f22dfeb039c363ec99735190ffb977"}, - {file = "pyarrow-17.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e19f569567efcbbd42084e87f948778eb371d308e137a0f97afe19bb860ccb3"}, - {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b244dc8e08a23b3e352899a006a26ae7b4d0da7bb636872fa8f5884e70acf15"}, - {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b72e87fe3e1db343995562f7fff8aee354b55ee83d13afba65400c178ab2597"}, - {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dc5c31c37409dfbc5d014047817cb4ccd8c1ea25d19576acf1a001fe07f5b420"}, - {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e3343cb1e88bc2ea605986d4b94948716edc7a8d14afd4e2c097232f729758b4"}, - {file = "pyarrow-17.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:a27532c38f3de9eb3e90ecab63dfda948a8ca859a66e3a47f5f42d1e403c4d03"}, - {file = "pyarrow-17.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9b8a823cea605221e61f34859dcc03207e52e409ccf6354634143e23af7c8d22"}, - {file = "pyarrow-17.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f1e70de6cb5790a50b01d2b686d54aaf73da01266850b05e3af2a1bc89e16053"}, - {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0071ce35788c6f9077ff9ecba4858108eebe2ea5a3f7cf2cf55ebc1dbc6ee24a"}, - {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:757074882f844411fcca735e39aae74248a1531367a7c80799b4266390ae51cc"}, - {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ba11c4f16976e89146781a83833df7f82077cdab7dc6232c897789343f7891a"}, - {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b0c6ac301093b42d34410b187bba560b17c0330f64907bfa4f7f7f2444b0cf9b"}, - {file = "pyarrow-17.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:392bc9feabc647338e6c89267635e111d71edad5fcffba204425a7c8d13610d7"}, - {file = "pyarrow-17.0.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:af5ff82a04b2171415f1410cff7ebb79861afc5dae50be73ce06d6e870615204"}, - {file = "pyarrow-17.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:edca18eaca89cd6382dfbcff3dd2d87633433043650c07375d095cd3517561d8"}, - {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c7916bff914ac5d4a8fe25b7a25e432ff921e72f6f2b7547d1e325c1ad9d155"}, - {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f553ca691b9e94b202ff741bdd40f6ccb70cdd5fbf65c187af132f1317de6145"}, - {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0cdb0e627c86c373205a2f94a510ac4376fdc523f8bb36beab2e7f204416163c"}, - {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:d7d192305d9d8bc9082d10f361fc70a73590a4c65cf31c3e6926cd72b76bc35c"}, - {file = "pyarrow-17.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:02dae06ce212d8b3244dd3e7d12d9c4d3046945a5933d28026598e9dbbda1fca"}, - {file = "pyarrow-17.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:13d7a460b412f31e4c0efa1148e1d29bdf18ad1411eb6757d38f8fbdcc8645fb"}, - {file = "pyarrow-17.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9b564a51fbccfab5a04a80453e5ac6c9954a9c5ef2890d1bcf63741909c3f8df"}, - {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32503827abbc5aadedfa235f5ece8c4f8f8b0a3cf01066bc8d29de7539532687"}, - {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a155acc7f154b9ffcc85497509bcd0d43efb80d6f733b0dc3bb14e281f131c8b"}, - {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:dec8d129254d0188a49f8a1fc99e0560dc1b85f60af729f47de4046015f9b0a5"}, - {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a48ddf5c3c6a6c505904545c25a4ae13646ae1f8ba703c4df4a1bfe4f4006bda"}, - {file = "pyarrow-17.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:42bf93249a083aca230ba7e2786c5f673507fa97bbd9725a1e2754715151a204"}, - {file = "pyarrow-17.0.0.tar.gz", hash = "sha256:4beca9521ed2c0921c1023e68d097d0299b62c362639ea315572a58f3f50fd28"}, + {file = "pyarrow-18.0.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:2333f93260674e185cfbf208d2da3007132572e56871f451ba1a556b45dae6e2"}, + {file = "pyarrow-18.0.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:4c381857754da44326f3a49b8b199f7f87a51c2faacd5114352fc78de30d3aba"}, + {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:603cd8ad4976568954598ef0a6d4ed3dfb78aff3d57fa8d6271f470f0ce7d34f"}, + {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58a62549a3e0bc9e03df32f350e10e1efb94ec6cf63e3920c3385b26663948ce"}, + {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bc97316840a349485fbb137eb8d0f4d7057e1b2c1272b1a20eebbbe1848f5122"}, + {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:2e549a748fa8b8715e734919923f69318c953e077e9c02140ada13e59d043310"}, + {file = "pyarrow-18.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:606e9a3dcb0f52307c5040698ea962685fb1c852d72379ee9412be7de9c5f9e2"}, + {file = "pyarrow-18.0.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d5795e37c0a33baa618c5e054cd61f586cf76850a251e2b21355e4085def6280"}, + {file = "pyarrow-18.0.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:5f0510608ccd6e7f02ca8596962afb8c6cc84c453e7be0da4d85f5f4f7b0328a"}, + {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:616ea2826c03c16e87f517c46296621a7c51e30400f6d0a61be645f203aa2b93"}, + {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1824f5b029ddd289919f354bc285992cb4e32da518758c136271cf66046ef22"}, + {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:6dd1b52d0d58dd8f685ced9971eb49f697d753aa7912f0a8f50833c7a7426319"}, + {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:320ae9bd45ad7ecc12ec858b3e8e462578de060832b98fc4d671dee9f10d9954"}, + {file = "pyarrow-18.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:2c992716cffb1088414f2b478f7af0175fd0a76fea80841b1706baa8fb0ebaad"}, + {file = "pyarrow-18.0.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:e7ab04f272f98ebffd2a0661e4e126036f6936391ba2889ed2d44c5006237802"}, + {file = "pyarrow-18.0.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:03f40b65a43be159d2f97fd64dc998f769d0995a50c00f07aab58b0b3da87e1f"}, + {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be08af84808dff63a76860847c48ec0416928a7b3a17c2f49a072cac7c45efbd"}, + {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c70c1965cde991b711a98448ccda3486f2a336457cf4ec4dca257a926e149c9"}, + {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:00178509f379415a3fcf855af020e3340254f990a8534294ec3cf674d6e255fd"}, + {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a71ab0589a63a3e987beb2bc172e05f000a5c5be2636b4b263c44034e215b5d7"}, + {file = "pyarrow-18.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:fe92efcdbfa0bcf2fa602e466d7f2905500f33f09eb90bf0bcf2e6ca41b574c8"}, + {file = "pyarrow-18.0.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:907ee0aa8ca576f5e0cdc20b5aeb2ad4d3953a3b4769fc4b499e00ef0266f02f"}, + {file = "pyarrow-18.0.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:66dcc216ebae2eb4c37b223feaf82f15b69d502821dde2da138ec5a3716e7463"}, + {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc1daf7c425f58527900876354390ee41b0ae962a73ad0959b9d829def583bb1"}, + {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:871b292d4b696b09120ed5bde894f79ee2a5f109cb84470546471df264cae136"}, + {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:082ba62bdcb939824ba1ce10b8acef5ab621da1f4c4805e07bfd153617ac19d4"}, + {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:2c664ab88b9766413197733c1720d3dcd4190e8fa3bbdc3710384630a0a7207b"}, + {file = "pyarrow-18.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:dc892be34dbd058e8d189b47db1e33a227d965ea8805a235c8a7286f7fd17d3a"}, + {file = "pyarrow-18.0.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:28f9c39a56d2c78bf6b87dcc699d520ab850919d4a8c7418cd20eda49874a2ea"}, + {file = "pyarrow-18.0.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:f1a198a50c409ab2d009fbf20956ace84567d67f2c5701511d4dd561fae6f32e"}, + {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5bd7fd32e3ace012d43925ea4fc8bd1b02cc6cc1e9813b518302950e89b5a22"}, + {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:336addb8b6f5208be1b2398442c703a710b6b937b1a046065ee4db65e782ff5a"}, + {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:45476490dd4adec5472c92b4d253e245258745d0ccaabe706f8d03288ed60a79"}, + {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:b46591222c864e7da7faa3b19455196416cd8355ff6c2cc2e65726a760a3c420"}, + {file = "pyarrow-18.0.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:eb7e3abcda7e1e6b83c2dc2909c8d045881017270a119cc6ee7fdcfe71d02df8"}, + {file = "pyarrow-18.0.0-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:09f30690b99ce34e0da64d20dab372ee54431745e4efb78ac938234a282d15f9"}, + {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d5ca5d707e158540312e09fd907f9f49bacbe779ab5236d9699ced14d2293b8"}, + {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6331f280c6e4521c69b201a42dd978f60f7e129511a55da9e0bfe426b4ebb8d"}, + {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:3ac24b2be732e78a5a3ac0b3aa870d73766dd00beba6e015ea2ea7394f8b4e55"}, + {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b30a927c6dff89ee702686596f27c25160dd6c99be5bcc1513a763ae5b1bfc03"}, + {file = "pyarrow-18.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:8f40ec677e942374e3d7f2fad6a67a4c2811a8b975e8703c6fd26d3b168a90e2"}, + {file = "pyarrow-18.0.0.tar.gz", hash = "sha256:a6aa027b1a9d2970cf328ccd6dbe4a996bc13c39fd427f502782f5bdb9ca20f5"}, ] -[package.dependencies] -numpy = ">=1.16.6" - [package.extras] test = ["cffi", "hypothesis", "pandas", "pytest", "pytz"] diff --git a/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml b/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml index 9ebf64bd02c0..e87e7a68de96 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml +++ b/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.34" +version = "0.1.35" name = "destination-aws-datalake" description = "Destination Implementation for AWS Datalake." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/aws-datalake.md b/docs/integrations/destinations/aws-datalake.md index 40712fed6ebc..9f8497890dd4 100644 --- a/docs/integrations/destinations/aws-datalake.md +++ b/docs/integrations/destinations/aws-datalake.md @@ -94,6 +94,7 @@ which will be translated for compatibility with the Glue Data Catalog: | Version | Date | Pull Request | Subject | |:--------| :--------- | :--------------------------------------------------------- | :--------------------------------------------------- | +| 0.1.35 | 2024-10-28 | [47590](https://github.com/airbytehq/airbyte/pull/47590) | Update dependencies | | 0.1.34 | 2024-10-22 | [47091](https://github.com/airbytehq/airbyte/pull/47091) | Update dependencies | | 0.1.33 | 2024-10-12 | [46790](https://github.com/airbytehq/airbyte/pull/46790) | Update dependencies | | 0.1.32 | 2024-10-05 | [46400](https://github.com/airbytehq/airbyte/pull/46400) | Update dependencies | From 5c303dd0df1bf64afaa013f4da93f52a425c8c42 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:44 +0200 Subject: [PATCH 175/808] =?UTF-8?q?=F0=9F=90=99=20source-uppromote:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47589)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-uppromote/metadata.yaml | 4 ++-- docs/integrations/sources/uppromote.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-uppromote/metadata.yaml b/airbyte-integrations/connectors/source-uppromote/metadata.yaml index 8936982e2510..8eb122d54e89 100644 --- a/airbyte-integrations/connectors/source-uppromote/metadata.yaml +++ b/airbyte-integrations/connectors/source-uppromote/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-uppromote connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: d75a7792-e5db-4645-93c3-b4a16ad62ab0 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-uppromote githubIssueLabel: source-uppromote icon: icon.svg diff --git a/docs/integrations/sources/uppromote.md b/docs/integrations/sources/uppromote.md index a4366b02b63d..18f1a79b3f58 100644 --- a/docs/integrations/sources/uppromote.md +++ b/docs/integrations/sources/uppromote.md @@ -21,6 +21,7 @@ The Uppromote Connector for Airbyte enables seamless data integration between Up | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47589](https://github.com/airbytehq/airbyte/pull/47589) | Update dependencies | | 0.0.1 | 2024-10-10 | | Initial release by [@avirajsingh7](https://github.com/avirajsingh7) via Connector Builder | From 0ab21ae0d0583acab38b8586057a756d62ca0cf3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:12:47 +0200 Subject: [PATCH 176/808] =?UTF-8?q?=F0=9F=90=99=20source-sendgrid:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47588)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-sendgrid/metadata.yaml | 4 ++-- docs/integrations/sources/sendgrid.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sendgrid/metadata.yaml b/airbyte-integrations/connectors/source-sendgrid/metadata.yaml index e7a972c91674..ef7b392c4670 100644 --- a/airbyte-integrations/connectors/source-sendgrid/metadata.yaml +++ b/airbyte-integrations/connectors/source-sendgrid/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.sendgrid.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: fbb5fbe2-16ad-4cf4-af7d-ff9d9c316c87 - dockerImageTag: 1.2.0 + dockerImageTag: 1.2.1 releases: breakingChanges: 1.0.0: diff --git a/docs/integrations/sources/sendgrid.md b/docs/integrations/sources/sendgrid.md index 947469eb0e97..b4dc4d9fc1cb 100644 --- a/docs/integrations/sources/sendgrid.md +++ b/docs/integrations/sources/sendgrid.md @@ -89,6 +89,7 @@ The connector is restricted by normal Sendgrid [requests limitation](https://doc | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 1.2.1 | 2024-10-28 | [47588](https://github.com/airbytehq/airbyte/pull/47588) | Update dependencies | | 1.2.0 | 2024-10-13 | [46870](https://github.com/airbytehq/airbyte/pull/46870) | Migrate to Manifest-only | | 1.1.5 | 2024-10-12 | [46781](https://github.com/airbytehq/airbyte/pull/46781) | Update dependencies | | 1.1.4 | 2024-10-05 | [46460](https://github.com/airbytehq/airbyte/pull/46460) | Update dependencies | From 0068d3950707fa7fb5a7ee6c3f5a4619c63ee5f1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:13:21 +0200 Subject: [PATCH 177/808] =?UTF-8?q?=F0=9F=90=99=20source-qualaroo:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47111)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-qualaroo/metadata.yaml | 2 +- .../connectors/source-qualaroo/poetry.lock | 261 +++++++++--------- .../connectors/source-qualaroo/pyproject.toml | 2 +- docs/integrations/sources/qualaroo.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-qualaroo/metadata.yaml b/airbyte-integrations/connectors/source-qualaroo/metadata.yaml index ec310d5579ec..055973b457f5 100644 --- a/airbyte-integrations/connectors/source-qualaroo/metadata.yaml +++ b/airbyte-integrations/connectors/source-qualaroo/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: eb655362-28a8-4311-8806-4fcc612734a7 - dockerImageTag: 0.3.23 + dockerImageTag: 0.3.24 dockerRepository: airbyte/source-qualaroo githubIssueLabel: source-qualaroo icon: qualaroo.svg diff --git a/airbyte-integrations/connectors/source-qualaroo/poetry.lock b/airbyte-integrations/connectors/source-qualaroo/poetry.lock index 06658fe3a758..711efc8fb7ce 100644 --- a/airbyte-integrations/connectors/source-qualaroo/poetry.lock +++ b/airbyte-integrations/connectors/source-qualaroo/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -697,138 +697,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1284,13 +1285,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-qualaroo/pyproject.toml b/airbyte-integrations/connectors/source-qualaroo/pyproject.toml index 59ed15e0a332..3975b69f9a54 100644 --- a/airbyte-integrations/connectors/source-qualaroo/pyproject.toml +++ b/airbyte-integrations/connectors/source-qualaroo/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.23" +version = "0.3.24" name = "source-qualaroo" description = "Source implementation for Qualaroo." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/qualaroo.md b/docs/integrations/sources/qualaroo.md index aeada88cf52c..aadd5179a79a 100644 --- a/docs/integrations/sources/qualaroo.md +++ b/docs/integrations/sources/qualaroo.md @@ -46,6 +46,7 @@ Please read [How to get your APIs Token and Key](https://help.qualaroo.com/hc/en | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------- | +| 0.3.24 | 2024-10-28 | [47111](https://github.com/airbytehq/airbyte/pull/47111) | Update dependencies | | 0.3.23 | 2024-10-12 | [46767](https://github.com/airbytehq/airbyte/pull/46767) | Update dependencies | | 0.3.22 | 2024-10-05 | [46439](https://github.com/airbytehq/airbyte/pull/46439) | Update dependencies | | 0.3.21 | 2024-09-28 | [46168](https://github.com/airbytehq/airbyte/pull/46168) | Update dependencies | From 187e92bab453e9b0f61470c085556f753bb8a2c6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:13:28 +0200 Subject: [PATCH 178/808] =?UTF-8?q?=F0=9F=90=99=20source-pipedrive:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47103)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pipedrive/metadata.yaml | 2 +- .../connectors/source-pipedrive/poetry.lock | 261 +++++++++--------- .../source-pipedrive/pyproject.toml | 2 +- docs/integrations/sources/pipedrive.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-pipedrive/metadata.yaml b/airbyte-integrations/connectors/source-pipedrive/metadata.yaml index 70b420ef5fca..802f0cbdc115 100644 --- a/airbyte-integrations/connectors/source-pipedrive/metadata.yaml +++ b/airbyte-integrations/connectors/source-pipedrive/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: d8286229-c680-4063-8c59-23b9b391c700 - dockerImageTag: 2.2.23 + dockerImageTag: 2.2.24 dockerRepository: airbyte/source-pipedrive documentationUrl: https://docs.airbyte.com/integrations/sources/pipedrive githubIssueLabel: source-pipedrive diff --git a/airbyte-integrations/connectors/source-pipedrive/poetry.lock b/airbyte-integrations/connectors/source-pipedrive/poetry.lock index 758d4cee79ee..3fd567953a3a 100644 --- a/airbyte-integrations/connectors/source-pipedrive/poetry.lock +++ b/airbyte-integrations/connectors/source-pipedrive/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -697,138 +697,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1267,13 +1268,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-pipedrive/pyproject.toml b/airbyte-integrations/connectors/source-pipedrive/pyproject.toml index 6c82467d823d..7c7653bd7274 100644 --- a/airbyte-integrations/connectors/source-pipedrive/pyproject.toml +++ b/airbyte-integrations/connectors/source-pipedrive/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.2.23" +version = "2.2.24" name = "source-pipedrive" description = "Source implementation for Pipedrive." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pipedrive.md b/docs/integrations/sources/pipedrive.md index 8484da391821..8c0416108fbe 100644 --- a/docs/integrations/sources/pipedrive.md +++ b/docs/integrations/sources/pipedrive.md @@ -112,6 +112,7 @@ The Pipedrive connector will gracefully handle rate limits. For more information | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------- | +| 2.2.24 | 2024-10-28 | [47103](https://github.com/airbytehq/airbyte/pull/47103) | Update dependencies | | 2.2.23 | 2024-10-12 | [46822](https://github.com/airbytehq/airbyte/pull/46822) | Update dependencies | | 2.2.22 | 2024-10-05 | [46487](https://github.com/airbytehq/airbyte/pull/46487) | Update dependencies | | 2.2.21 | 2024-09-28 | [46132](https://github.com/airbytehq/airbyte/pull/46132) | Update dependencies | From d739c549ca4e4bb8b3681c1492c044b3f45fd0cb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:13:35 +0200 Subject: [PATCH 179/808] =?UTF-8?q?=F0=9F=90=99=20source-zoom:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47094)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zoom/metadata.yaml | 2 +- .../connectors/source-zoom/poetry.lock | 130 +++++++++--------- .../connectors/source-zoom/pyproject.toml | 2 +- docs/integrations/sources/zoom.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-zoom/metadata.yaml b/airbyte-integrations/connectors/source-zoom/metadata.yaml index f1e2312cba45..9f255a76ad81 100644 --- a/airbyte-integrations/connectors/source-zoom/metadata.yaml +++ b/airbyte-integrations/connectors/source-zoom/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: cbfd9856-1322-44fb-bcf1-0b39b7a8e92e - dockerImageTag: 1.1.20 + dockerImageTag: 1.1.21 dockerRepository: airbyte/source-zoom documentationUrl: https://docs.airbyte.com/integrations/sources/zoom githubIssueLabel: source-zoom diff --git a/airbyte-integrations/connectors/source-zoom/poetry.lock b/airbyte-integrations/connectors/source-zoom/poetry.lock index eca98b0ddc9b..87d58ef2eea6 100644 --- a/airbyte-integrations/connectors/source-zoom/poetry.lock +++ b/airbyte-integrations/connectors/source-zoom/poetry.lock @@ -417,72 +417,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -885,13 +885,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-zoom/pyproject.toml b/airbyte-integrations/connectors/source-zoom/pyproject.toml index 17967529ee9c..7d395b40df7c 100644 --- a/airbyte-integrations/connectors/source-zoom/pyproject.toml +++ b/airbyte-integrations/connectors/source-zoom/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.20" +version = "1.1.21" name = "source-zoom" description = "Source implementation for Zoom." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zoom.md b/docs/integrations/sources/zoom.md index 9f46d32fb632..0fd0c7f7200a 100644 --- a/docs/integrations/sources/zoom.md +++ b/docs/integrations/sources/zoom.md @@ -71,6 +71,7 @@ JWT Tokens are deprecated, only Server-to-Server works now. [link to Zoom](https | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------- | +| 1.1.21 | 2024-10-28 | [47094](https://github.com/airbytehq/airbyte/pull/47094) | Update dependencies | | 1.1.20 | 2024-10-12 | [46824](https://github.com/airbytehq/airbyte/pull/46824) | Update dependencies | | 1.1.19 | 2024-10-05 | [46412](https://github.com/airbytehq/airbyte/pull/46412) | Update dependencies | | 1.1.18 | 2024-09-28 | [46196](https://github.com/airbytehq/airbyte/pull/46196) | Update dependencies | From df32400481c655a7b2900ebb6d809e53e08fdb8f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:13:42 +0200 Subject: [PATCH 180/808] =?UTF-8?q?=F0=9F=90=99=20source-jina-ai-reader:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47085)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-jina-ai-reader/metadata.yaml | 2 +- .../source-jina-ai-reader/poetry.lock | 261 +++++++++--------- .../source-jina-ai-reader/pyproject.toml | 2 +- docs/integrations/sources/jina-ai-reader.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml b/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml index 2d6664f5a440..08cb01915223 100644 --- a/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml +++ b/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: 47077a7f-7ab0-47ee-b428-650396a708c7 - dockerImageTag: 0.1.19 + dockerImageTag: 0.1.20 dockerRepository: airbyte/source-jina-ai-reader githubIssueLabel: source-jina-ai-reader icon: jina-ai-reader.svg diff --git a/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock b/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock index fe8537443ea2..02302faf1ed9 100644 --- a/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock +++ b/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -669,13 +669,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -687,138 +687,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1261,13 +1262,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml b/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml index a06b8f075098..eec6162224be 100644 --- a/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml +++ b/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.19" +version = "0.1.20" name = "source-jina-ai-reader" description = "Source implementation for jina-ai-reader." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/jina-ai-reader.md b/docs/integrations/sources/jina-ai-reader.md index fe3c68d7ddc4..3aea9f742eeb 100644 --- a/docs/integrations/sources/jina-ai-reader.md +++ b/docs/integrations/sources/jina-ai-reader.md @@ -50,6 +50,7 @@ The website also provides a free bearer token for testing with its interface. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 0.1.20 | 2024-10-28 | [47085](https://github.com/airbytehq/airbyte/pull/47085) | Update dependencies | | 0.1.19 | 2024-10-12 | [46768](https://github.com/airbytehq/airbyte/pull/46768) | Update dependencies | | 0.1.18 | 2024-10-05 | [46446](https://github.com/airbytehq/airbyte/pull/46446) | Update dependencies | | 0.1.17 | 2024-09-28 | [46205](https://github.com/airbytehq/airbyte/pull/46205) | Update dependencies | From b6d30b4a94ddd8cacaff22ff1507be51cc5aa181 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:13:46 +0200 Subject: [PATCH 181/808] =?UTF-8?q?=F0=9F=90=99=20source-kyve:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47078)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-kyve/metadata.yaml | 2 +- .../connectors/source-kyve/poetry.lock | 130 +++++++++--------- .../connectors/source-kyve/pyproject.toml | 2 +- docs/integrations/sources/kyve.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-kyve/metadata.yaml b/airbyte-integrations/connectors/source-kyve/metadata.yaml index a292d1cd3a33..22ff88a7ac73 100644 --- a/airbyte-integrations/connectors/source-kyve/metadata.yaml +++ b/airbyte-integrations/connectors/source-kyve/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 60a1efcc-c31c-4c63-b508-5b48b6a9f4a6 - dockerImageTag: 0.2.19 + dockerImageTag: 0.2.20 maxSecondsBetweenMessages: 7200 dockerRepository: airbyte/source-kyve githubIssueLabel: source-kyve diff --git a/airbyte-integrations/connectors/source-kyve/poetry.lock b/airbyte-integrations/connectors/source-kyve/poetry.lock index 81849d95e363..a200e9d74ec8 100644 --- a/airbyte-integrations/connectors/source-kyve/poetry.lock +++ b/airbyte-integrations/connectors/source-kyve/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,13 +884,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-kyve/pyproject.toml b/airbyte-integrations/connectors/source-kyve/pyproject.toml index 3b93e6880cbf..c58802e36c66 100644 --- a/airbyte-integrations/connectors/source-kyve/pyproject.toml +++ b/airbyte-integrations/connectors/source-kyve/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.19" +version = "0.2.20" name = "source-kyve" description = "Source implementation for KYVE." authors = [ "KYVE Core Team ",] diff --git a/docs/integrations/sources/kyve.md b/docs/integrations/sources/kyve.md index 51ccda1f1f88..3eaa4fc8cbc9 100644 --- a/docs/integrations/sources/kyve.md +++ b/docs/integrations/sources/kyve.md @@ -29,6 +29,7 @@ You can fetch with one source configuration more than one pool simultaneously. Y | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------- | :--------------------------------------------------- | +| 0.2.20 | 2024-10-28 | [47078](https://github.com/airbytehq/airbyte/pull/47078) | Update dependencies | | 0.2.19 | 2024-10-12 | [46477](https://github.com/airbytehq/airbyte/pull/46477) | Update dependencies | | 0.2.18 | 2024-09-28 | [45815](https://github.com/airbytehq/airbyte/pull/45815) | Update dependencies | | 0.2.17 | 2024-09-14 | [45493](https://github.com/airbytehq/airbyte/pull/45493) | Update dependencies | From b8c1a358e6c35ab6acdb4466797b165496a6837c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:13:50 +0200 Subject: [PATCH 182/808] =?UTF-8?q?=F0=9F=90=99=20source-gridly:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47075)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gridly/metadata.yaml | 2 +- .../connectors/source-gridly/poetry.lock | 130 +++++++++--------- .../connectors/source-gridly/pyproject.toml | 2 +- docs/integrations/sources/gridly.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-gridly/metadata.yaml b/airbyte-integrations/connectors/source-gridly/metadata.yaml index 7deec03981b9..2dfd3281384c 100644 --- a/airbyte-integrations/connectors/source-gridly/metadata.yaml +++ b/airbyte-integrations/connectors/source-gridly/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6cbea164-3237-433b-9abb-36d384ee4cbf - dockerImageTag: 0.1.21 + dockerImageTag: 0.1.22 dockerRepository: airbyte/source-gridly githubIssueLabel: source-gridly icon: gridly.svg diff --git a/airbyte-integrations/connectors/source-gridly/poetry.lock b/airbyte-integrations/connectors/source-gridly/poetry.lock index 1d52a6b48880..daa4d036e32d 100644 --- a/airbyte-integrations/connectors/source-gridly/poetry.lock +++ b/airbyte-integrations/connectors/source-gridly/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,13 +884,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-gridly/pyproject.toml b/airbyte-integrations/connectors/source-gridly/pyproject.toml index cf0d2b5172f1..79a9ba828e0b 100644 --- a/airbyte-integrations/connectors/source-gridly/pyproject.toml +++ b/airbyte-integrations/connectors/source-gridly/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.21" +version = "0.1.22" name = "source-gridly" description = "Source implementation for Gridly." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/gridly.md b/docs/integrations/sources/gridly.md index 3ffa3c6fa4a3..30005355f0b4 100644 --- a/docs/integrations/sources/gridly.md +++ b/docs/integrations/sources/gridly.md @@ -38,6 +38,7 @@ This page contains the setup guide and reference information for the Gridly sour | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------- | +| 0.1.22 | 2024-10-28 | [47075](https://github.com/airbytehq/airbyte/pull/47075) | Update dependencies | | 0.1.21 | 2024-10-12 | [46476](https://github.com/airbytehq/airbyte/pull/46476) | Update dependencies | | 0.1.20 | 2024-09-28 | [46122](https://github.com/airbytehq/airbyte/pull/46122) | Update dependencies | | 0.1.19 | 2024-09-21 | [45723](https://github.com/airbytehq/airbyte/pull/45723) | Update dependencies | From 3ece60c727bd058efa9ad63e104cd9b5f9ecfa71 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:13:56 +0200 Subject: [PATCH 183/808] =?UTF-8?q?=F0=9F=90=99=20destination-databend:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-28]=20(#47069)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-databend/metadata.yaml | 2 +- .../destination-databend/poetry.lock | 254 +++++++++--------- .../destination-databend/pyproject.toml | 2 +- docs/integrations/destinations/databend.md | 1 + 4 files changed, 134 insertions(+), 125 deletions(-) diff --git a/airbyte-integrations/connectors/destination-databend/metadata.yaml b/airbyte-integrations/connectors/destination-databend/metadata.yaml index 85d85430b48e..ba8fd51560f0 100644 --- a/airbyte-integrations/connectors/destination-databend/metadata.yaml +++ b/airbyte-integrations/connectors/destination-databend/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 302e4d8e-08d3-4098-acd4-ac67ca365b88 - dockerImageTag: 0.1.26 + dockerImageTag: 0.1.27 dockerRepository: airbyte/destination-databend githubIssueLabel: destination-databend icon: databend.svg diff --git a/airbyte-integrations/connectors/destination-databend/poetry.lock b/airbyte-integrations/connectors/destination-databend/poetry.lock index 11d01e33979a..26c68840ff9b 100644 --- a/airbyte-integrations/connectors/destination-databend/poetry.lock +++ b/airbyte-integrations/connectors/destination-databend/poetry.lock @@ -544,92 +544,92 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.22.0" +version = "3.23.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, - {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, + {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, + {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "mysql-connector" @@ -1019,13 +1019,13 @@ yaml = ["pyyaml (>=6.0.1)"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1050,60 +1050,68 @@ files = [ [[package]] name = "sqlalchemy" -version = "2.0.35" +version = "2.0.36" description = "Database Abstraction Library" optional = false python-versions = ">=3.7" files = [ - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:67219632be22f14750f0d1c70e62f204ba69d28f62fd6432ba05ab295853de9b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4668bd8faf7e5b71c0319407b608f278f279668f358857dbfd10ef1954ac9f90"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb8bea573863762bbf45d1e13f87c2d2fd32cee2dbd50d050f83f87429c9e1ea"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f552023710d4b93d8fb29a91fadf97de89c5926c6bd758897875435f2a939f33"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:016b2e665f778f13d3c438651dd4de244214b527a275e0acf1d44c05bc6026a9"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7befc148de64b6060937231cbff8d01ccf0bfd75aa26383ffdf8d82b12ec04ff"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win32.whl", hash = "sha256:22b83aed390e3099584b839b93f80a0f4a95ee7f48270c97c90acd40ee646f0b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win_amd64.whl", hash = "sha256:a29762cd3d116585278ffb2e5b8cc311fb095ea278b96feef28d0b423154858e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e21f66748ab725ade40fa7af8ec8b5019c68ab00b929f6643e1b1af461eddb60"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8a6219108a15fc6d24de499d0d515c7235c617b2540d97116b663dade1a54d62"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:042622a5306c23b972192283f4e22372da3b8ddf5f7aac1cc5d9c9b222ab3ff6"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:627dee0c280eea91aed87b20a1f849e9ae2fe719d52cbf847c0e0ea34464b3f7"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4fdcd72a789c1c31ed242fd8c1bcd9ea186a98ee8e5408a50e610edfef980d71"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:89b64cd8898a3a6f642db4eb7b26d1b28a497d4022eccd7717ca066823e9fb01"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win32.whl", hash = "sha256:6a93c5a0dfe8d34951e8a6f499a9479ffb9258123551fa007fc708ae2ac2bc5e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win_amd64.whl", hash = "sha256:c68fe3fcde03920c46697585620135b4ecfdfc1ed23e75cc2c2ae9f8502c10b8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:eb60b026d8ad0c97917cb81d3662d0b39b8ff1335e3fabb24984c6acd0c900a2"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6921ee01caf375363be5e9ae70d08ce7ca9d7e0e8983183080211a062d299468"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cdf1a0dbe5ced887a9b127da4ffd7354e9c1a3b9bb330dce84df6b70ccb3a8d"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93a71c8601e823236ac0e5d087e4f397874a421017b3318fd92c0b14acf2b6db"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e04b622bb8a88f10e439084486f2f6349bf4d50605ac3e445869c7ea5cf0fa8c"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1b56961e2d31389aaadf4906d453859f35302b4eb818d34a26fab72596076bb8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win32.whl", hash = "sha256:0f9f3f9a3763b9c4deb8c5d09c4cc52ffe49f9876af41cc1b2ad0138878453cf"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win_amd64.whl", hash = "sha256:25b0f63e7fcc2a6290cb5f7f5b4fc4047843504983a28856ce9b35d8f7de03cc"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f021d334f2ca692523aaf7bbf7592ceff70c8594fad853416a81d66b35e3abf9"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05c3f58cf91683102f2f0265c0db3bd3892e9eedabe059720492dbaa4f922da1"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:032d979ce77a6c2432653322ba4cbeabf5a6837f704d16fa38b5a05d8e21fa00"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:2e795c2f7d7249b75bb5f479b432a51b59041580d20599d4e112b5f2046437a3"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:cc32b2990fc34380ec2f6195f33a76b6cdaa9eecf09f0c9404b74fc120aef36f"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win32.whl", hash = "sha256:9509c4123491d0e63fb5e16199e09f8e262066e58903e84615c301dde8fa2e87"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win_amd64.whl", hash = "sha256:3655af10ebcc0f1e4e06c5900bb33e080d6a1fa4228f502121f28a3b1753cde5"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4c31943b61ed8fdd63dfd12ccc919f2bf95eefca133767db6fbbd15da62078ec"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a62dd5d7cc8626a3634208df458c5fe4f21200d96a74d122c83bc2015b333bc1"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0630774b0977804fba4b6bbea6852ab56c14965a2b0c7fc7282c5f7d90a1ae72"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d625eddf7efeba2abfd9c014a22c0f6b3796e0ffb48f5d5ab106568ef01ff5a"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ada603db10bb865bbe591939de854faf2c60f43c9b763e90f653224138f910d9"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c41411e192f8d3ea39ea70e0fae48762cd11a2244e03751a98bd3c0ca9a4e936"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win32.whl", hash = "sha256:d299797d75cd747e7797b1b41817111406b8b10a4f88b6e8fe5b5e59598b43b0"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win_amd64.whl", hash = "sha256:0375a141e1c0878103eb3d719eb6d5aa444b490c96f3fedab8471c7f6ffe70ee"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ccae5de2a0140d8be6838c331604f91d6fafd0735dbdcee1ac78fc8fbaba76b4"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2a275a806f73e849e1c309ac11108ea1a14cd7058577aba962cd7190e27c9e3c"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:732e026240cdd1c1b2e3ac515c7a23820430ed94292ce33806a95869c46bd139"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890da8cd1941fa3dab28c5bac3b9da8502e7e366f895b3b8e500896f12f94d11"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c0d8326269dbf944b9201911b0d9f3dc524d64779a07518199a58384c3d37a44"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b76d63495b0508ab9fc23f8152bac63205d2a704cd009a2b0722f4c8e0cba8e0"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win32.whl", hash = "sha256:69683e02e8a9de37f17985905a5eca18ad651bf592314b4d3d799029797d0eb3"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win_amd64.whl", hash = "sha256:aee110e4ef3c528f3abbc3c2018c121e708938adeeff9006428dd7c8555e9b3f"}, - {file = "SQLAlchemy-2.0.35-py3-none-any.whl", hash = "sha256:2ab3f0336c0387662ce6221ad30ab3a5e6499aab01b9790879b6578fd9b8faa1"}, - {file = "sqlalchemy-2.0.35.tar.gz", hash = "sha256:e11d7ea4d24f0a262bccf9a7cd6284c976c5369dac21db237cff59586045ab9f"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:59b8f3adb3971929a3e660337f5dacc5942c2cdb760afcabb2614ffbda9f9f72"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37350015056a553e442ff672c2d20e6f4b6d0b2495691fa239d8aa18bb3bc908"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8318f4776c85abc3f40ab185e388bee7a6ea99e7fa3a30686580b209eaa35c08"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c245b1fbade9c35e5bd3b64270ab49ce990369018289ecfde3f9c318411aaa07"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69f93723edbca7342624d09f6704e7126b152eaed3cdbb634cb657a54332a3c5"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f9511d8dd4a6e9271d07d150fb2f81874a3c8c95e11ff9af3a2dfc35fe42ee44"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win32.whl", hash = "sha256:c3f3631693003d8e585d4200730616b78fafd5a01ef8b698f6967da5c605b3fa"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win_amd64.whl", hash = "sha256:a86bfab2ef46d63300c0f06936bd6e6c0105faa11d509083ba8f2f9d237fb5b5"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fd3a55deef00f689ce931d4d1b23fa9f04c880a48ee97af488fd215cf24e2a6c"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4f5e9cd989b45b73bd359f693b935364f7e1f79486e29015813c338450aa5a71"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0ddd9db6e59c44875211bc4c7953a9f6638b937b0a88ae6d09eb46cced54eff"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2519f3a5d0517fc159afab1015e54bb81b4406c278749779be57a569d8d1bb0d"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59b1ee96617135f6e1d6f275bbe988f419c5178016f3d41d3c0abb0c819f75bb"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:39769a115f730d683b0eb7b694db9789267bcd027326cccc3125e862eb03bfd8"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win32.whl", hash = "sha256:66bffbad8d6271bb1cc2f9a4ea4f86f80fe5e2e3e501a5ae2a3dc6a76e604e6f"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win_amd64.whl", hash = "sha256:23623166bfefe1487d81b698c423f8678e80df8b54614c2bf4b4cfcd7c711959"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f7b64e6ec3f02c35647be6b4851008b26cff592a95ecb13b6788a54ef80bbdd4"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:46331b00096a6db1fdc052d55b101dbbfc99155a548e20a0e4a8e5e4d1362855"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdf3386a801ea5aba17c6410dd1dc8d39cf454ca2565541b5ac42a84e1e28f53"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac9dfa18ff2a67b09b372d5db8743c27966abf0e5344c555d86cc7199f7ad83a"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:90812a8933df713fdf748b355527e3af257a11e415b613dd794512461eb8a686"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1bc330d9d29c7f06f003ab10e1eaced295e87940405afe1b110f2eb93a233588"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win32.whl", hash = "sha256:79d2e78abc26d871875b419e1fd3c0bca31a1cb0043277d0d850014599626c2e"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win_amd64.whl", hash = "sha256:b544ad1935a8541d177cb402948b94e871067656b3a0b9e91dbec136b06a2ff5"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5cc79df7f4bc3d11e4b542596c03826063092611e481fcf1c9dfee3c94355ef"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3c01117dd36800f2ecaa238c65365b7b16497adc1522bf84906e5710ee9ba0e8"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bc633f4ee4b4c46e7adcb3a9b5ec083bf1d9a97c1d3854b92749d935de40b9b"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e46ed38affdfc95d2c958de328d037d87801cfcbea6d421000859e9789e61c2"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b2985c0b06e989c043f1dc09d4fe89e1616aadd35392aea2844f0458a989eacf"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a121d62ebe7d26fec9155f83f8be5189ef1405f5973ea4874a26fab9f1e262c"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win32.whl", hash = "sha256:0572f4bd6f94752167adfd7c1bed84f4b240ee6203a95e05d1e208d488d0d436"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win_amd64.whl", hash = "sha256:8c78ac40bde930c60e0f78b3cd184c580f89456dd87fc08f9e3ee3ce8765ce88"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:be9812b766cad94a25bc63bec11f88c4ad3629a0cec1cd5d4ba48dc23860486b"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aae840ebbd6cdd41af1c14590e5741665e5272d2fee999306673a1bb1fdb4d"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4557e1f11c5f653ebfdd924f3f9d5ebfc718283b0b9beebaa5dd6b77ec290971"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07b441f7d03b9a66299ce7ccf3ef2900abc81c0db434f42a5694a37bd73870f2"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:28120ef39c92c2dd60f2721af9328479516844c6b550b077ca450c7d7dc68575"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win32.whl", hash = "sha256:b81ee3d84803fd42d0b154cb6892ae57ea6b7c55d8359a02379965706c7efe6c"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win_amd64.whl", hash = "sha256:f942a799516184c855e1a32fbc7b29d7e571b52612647866d4ec1c3242578fcb"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3d6718667da04294d7df1670d70eeddd414f313738d20a6f1d1f379e3139a545"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:72c28b84b174ce8af8504ca28ae9347d317f9dba3999e5981a3cd441f3712e24"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b11d0cfdd2b095e7b0686cf5fabeb9c67fae5b06d265d8180715b8cfa86522e3"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e32092c47011d113dc01ab3e1d3ce9f006a47223b18422c5c0d150af13a00687"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6a440293d802d3011028e14e4226da1434b373cbaf4a4bbb63f845761a708346"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c54a1e53a0c308a8e8a7dffb59097bff7facda27c70c286f005327f21b2bd6b1"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win32.whl", hash = "sha256:1e0d612a17581b6616ff03c8e3d5eff7452f34655c901f75d62bd86449d9750e"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win_amd64.whl", hash = "sha256:8958b10490125124463095bbdadda5aa22ec799f91958e410438ad6c97a7b793"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc022184d3e5cacc9579e41805a681187650e170eb2fd70e28b86192a479dcaa"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b817d41d692bf286abc181f8af476c4fbef3fd05e798777492618378448ee689"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4e46a888b54be23d03a89be510f24a7652fe6ff660787b96cd0e57a4ebcb46d"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4ae3005ed83f5967f961fd091f2f8c5329161f69ce8480aa8168b2d7fe37f06"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:03e08af7a5f9386a43919eda9de33ffda16b44eb11f3b313e6822243770e9763"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3dbb986bad3ed5ceaf090200eba750b5245150bd97d3e67343a3cfed06feecf7"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win32.whl", hash = "sha256:9fe53b404f24789b5ea9003fc25b9a3988feddebd7e7b369c8fac27ad6f52f28"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win_amd64.whl", hash = "sha256:af148a33ff0349f53512a049c6406923e4e02bf2f26c5fb285f143faf4f0e46a"}, + {file = "SQLAlchemy-2.0.36-py3-none-any.whl", hash = "sha256:fddbe92b4760c6f5d48162aef14824add991aeda8ddadb3c31d56eb15ca69f8e"}, + {file = "sqlalchemy-2.0.36.tar.gz", hash = "sha256:7f2767680b6d2398aea7082e45a774b2b0767b5c8d8ffb9c8b683088ea9b29c5"}, ] [package.dependencies] @@ -1116,7 +1124,7 @@ aioodbc = ["aioodbc", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5,!=1.1.10)"] mssql = ["pyodbc"] mssql-pymssql = ["pymssql"] mssql-pyodbc = ["pyodbc"] diff --git a/airbyte-integrations/connectors/destination-databend/pyproject.toml b/airbyte-integrations/connectors/destination-databend/pyproject.toml index ffef0ed9cf81..585d8bf439b4 100644 --- a/airbyte-integrations/connectors/destination-databend/pyproject.toml +++ b/airbyte-integrations/connectors/destination-databend/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.26" +version = "0.1.27" name = "destination-databend" description = "Destination implementation for Databend." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/databend.md b/docs/integrations/destinations/databend.md index b23e0d769469..3879baf392dd 100644 --- a/docs/integrations/destinations/databend.md +++ b/docs/integrations/destinations/databend.md @@ -72,6 +72,7 @@ And the [Databend Cloud](https://app.databend.com/) will only support databend v | Version | Date | Pull Request | Subject | | :------------------------------------------------------- | :--------------------------------------- | :-------------------------------------------------------- | :------------------------------------------------------- | ----------- | +| 0.1.27 | 2024-10-28 | [47069](https://github.com/airbytehq/airbyte/pull/47069) | Update dependencies | | 0.1.26 | 2024-10-12 | [46811](https://github.com/airbytehq/airbyte/pull/46811) | Update dependencies | | 0.1.25 | 2024-10-05 | [46418](https://github.com/airbytehq/airbyte/pull/46418) | Update dependencies | | 0.1.24 | 2024-09-28 | [46197](https://github.com/airbytehq/airbyte/pull/46197) | Update dependencies | From dd1457db9a0ffb6cd7af3238512ad3fe0aed483e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:13:59 +0200 Subject: [PATCH 184/808] =?UTF-8?q?=F0=9F=90=99=20source-zendesk-sunshine:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47066)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-zendesk-sunshine/metadata.yaml | 2 +- .../source-zendesk-sunshine/poetry.lock | 130 +++++++++--------- .../source-zendesk-sunshine/pyproject.toml | 2 +- docs/integrations/sources/zendesk-sunshine.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml index 1ff670c416db..d361d73ebb6b 100644 --- a/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 325e0640-e7b3-4e24-b823-3361008f603f - dockerImageTag: 0.2.24 + dockerImageTag: 0.2.25 dockerRepository: airbyte/source-zendesk-sunshine documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-sunshine githubIssueLabel: source-zendesk-sunshine diff --git a/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock b/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock index 81849d95e363..a200e9d74ec8 100644 --- a/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock +++ b/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,13 +884,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml b/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml index edef19e4ed55..dcb4b961f795 100644 --- a/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml +++ b/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.24" +version = "0.2.25" name = "source-zendesk-sunshine" description = "Source implementation for Zendesk Sunshine." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zendesk-sunshine.md b/docs/integrations/sources/zendesk-sunshine.md index def6bec47817..87b00d2e0c1c 100644 --- a/docs/integrations/sources/zendesk-sunshine.md +++ b/docs/integrations/sources/zendesk-sunshine.md @@ -68,6 +68,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.25 | 2024-10-28 | [47066](https://github.com/airbytehq/airbyte/pull/47066) | Update dependencies | | 0.2.24 | 2024-10-12 | [46784](https://github.com/airbytehq/airbyte/pull/46784) | Update dependencies | | 0.2.23 | 2024-10-05 | [46486](https://github.com/airbytehq/airbyte/pull/46486) | Update dependencies | | 0.2.22 | 2024-09-28 | [46102](https://github.com/airbytehq/airbyte/pull/46102) | Update dependencies | From 310821ee03cbf7057d8d5035a8dec66f477f65d6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:14:08 +0200 Subject: [PATCH 185/808] =?UTF-8?q?=F0=9F=90=99=20source-partnerstack:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47045)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-partnerstack/metadata.yaml | 2 +- .../source-partnerstack/poetry.lock | 261 +++++++++--------- .../source-partnerstack/pyproject.toml | 2 +- docs/integrations/sources/partnerstack.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-partnerstack/metadata.yaml b/airbyte-integrations/connectors/source-partnerstack/metadata.yaml index b291a62cae5e..8322e41af738 100644 --- a/airbyte-integrations/connectors/source-partnerstack/metadata.yaml +++ b/airbyte-integrations/connectors/source-partnerstack/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d30fb809-6456-484d-8e2c-ee12e0f6888d - dockerImageTag: 0.1.22 + dockerImageTag: 0.1.23 dockerRepository: airbyte/source-partnerstack githubIssueLabel: source-partnerstack icon: partnerstack.svg diff --git a/airbyte-integrations/connectors/source-partnerstack/poetry.lock b/airbyte-integrations/connectors/source-partnerstack/poetry.lock index 2d9b72370c15..4c0d837c973f 100644 --- a/airbyte-integrations/connectors/source-partnerstack/poetry.lock +++ b/airbyte-integrations/connectors/source-partnerstack/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -697,138 +697,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1284,13 +1285,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-partnerstack/pyproject.toml b/airbyte-integrations/connectors/source-partnerstack/pyproject.toml index c8439358788b..bcc8443fc980 100644 --- a/airbyte-integrations/connectors/source-partnerstack/pyproject.toml +++ b/airbyte-integrations/connectors/source-partnerstack/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.22" +version = "0.1.23" name = "source-partnerstack" description = "Source implementation for Partnerstack." authors = [ "Elliot Trabac ",] diff --git a/docs/integrations/sources/partnerstack.md b/docs/integrations/sources/partnerstack.md index 9062e7abae8b..de7a2fe52320 100644 --- a/docs/integrations/sources/partnerstack.md +++ b/docs/integrations/sources/partnerstack.md @@ -41,6 +41,7 @@ The Partnerstack connector should not run into Partnerstack API limitations unde | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------| +| 0.1.23 | 2024-10-28 | [47045](https://github.com/airbytehq/airbyte/pull/47045) | Update dependencies | | 0.1.22 | 2024-10-12 | [46808](https://github.com/airbytehq/airbyte/pull/46808) | Update dependencies | | 0.1.21 | 2024-10-05 | [46452](https://github.com/airbytehq/airbyte/pull/46452) | Update dependencies | | 0.1.20 | 2024-09-28 | [46111](https://github.com/airbytehq/airbyte/pull/46111) | Update dependencies | From aaf701f8bdc6e7d11db7418e9343a4b0410bad21 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:14:11 +0200 Subject: [PATCH 186/808] =?UTF-8?q?=F0=9F=90=99=20source-shopify:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47044)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-shopify/metadata.yaml | 2 +- .../connectors/source-shopify/poetry.lock | 280 +++++++++--------- .../connectors/source-shopify/pyproject.toml | 2 +- docs/integrations/sources/shopify.md | 1 + 4 files changed, 144 insertions(+), 141 deletions(-) diff --git a/airbyte-integrations/connectors/source-shopify/metadata.yaml b/airbyte-integrations/connectors/source-shopify/metadata.yaml index 31a52298a974..4fc0b8a8b222 100644 --- a/airbyte-integrations/connectors/source-shopify/metadata.yaml +++ b/airbyte-integrations/connectors/source-shopify/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9da77001-af33-4bcd-be46-6252bf9342b9 - dockerImageTag: 2.5.7 + dockerImageTag: 2.5.8 dockerRepository: airbyte/source-shopify documentationUrl: https://docs.airbyte.com/integrations/sources/shopify erdUrl: https://dbdocs.io/airbyteio/source-shopify?view=relationships diff --git a/airbyte-integrations/connectors/source-shopify/poetry.lock b/airbyte-integrations/connectors/source-shopify/poetry.lock index 706993982e7c..636817554b28 100644 --- a/airbyte-integrations/connectors/source-shopify/poetry.lock +++ b/airbyte-integrations/connectors/source-shopify/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "5.13.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.13.0-py3-none-any.whl", hash = "sha256:b26c99631e797c0bdb8373a6a05c81bf62b7d7397ca41b6ee05702d1013bd389"}, - {file = "airbyte_cdk-5.13.0.tar.gz", hash = "sha256:ab5799a238366dff61a8cded347b02deb63818513af4e61e2d1a51608a2280df"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -43,6 +43,7 @@ xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -69,13 +70,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +87,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -529,13 +530,13 @@ files = [ [[package]] name = "graphql-core" -version = "3.2.4" +version = "3.2.5" description = "GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL." optional = false python-versions = "<4,>=3.6" files = [ - {file = "graphql-core-3.2.4.tar.gz", hash = "sha256:acbe2e800980d0e39b4685dd058c2f4042660b89ebca38af83020fd872ff1264"}, - {file = "graphql_core-3.2.4-py3-none-any.whl", hash = "sha256:1604f2042edc5f3114f49cac9d77e25863be51b23a54a61a23245cf32f6476f0"}, + {file = "graphql_core-3.2.5-py3-none-any.whl", hash = "sha256:2f150d5096448aa4f8ab26268567bbfeef823769893b39c1a2e1409590939c8a"}, + {file = "graphql_core-3.2.5.tar.gz", hash = "sha256:e671b90ed653c808715645e3998b7ab67d382d55467b7e2978549111bbabf8d5"}, ] [[package]] @@ -763,13 +764,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -781,72 +782,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -938,68 +939,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1733,13 +1735,13 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1819,13 +1821,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-shopify/pyproject.toml b/airbyte-integrations/connectors/source-shopify/pyproject.toml index fc079f364ce4..303c40dbf436 100644 --- a/airbyte-integrations/connectors/source-shopify/pyproject.toml +++ b/airbyte-integrations/connectors/source-shopify/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.5.7" +version = "2.5.8" name = "source-shopify" description = "Source CDK implementation for Shopify." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/shopify.md b/docs/integrations/sources/shopify.md index e226d26bf9fd..973f116edeb0 100644 --- a/docs/integrations/sources/shopify.md +++ b/docs/integrations/sources/shopify.md @@ -247,6 +247,7 @@ For all `Shopify GraphQL BULK` api requests these limitations are applied: https | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 2.5.8 | 2024-10-28 | [47044](https://github.com/airbytehq/airbyte/pull/47044) | Update dependencies | | 2.5.7 | 2024-10-14 | [46552](https://github.com/airbytehq/airbyte/pull/46552) | Add `parent state` tracking for BULK sub-streams | | 2.5.6 | 2024-10-12 | [46844](https://github.com/airbytehq/airbyte/pull/46844) | Update dependencies | | 2.5.5 | 2024-10-05 | [46578](https://github.com/airbytehq/airbyte/pull/46578) | Raise exception on missing stream | From acf96d69c6363690e95a080fe1468a1a179103e3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:14:18 +0200 Subject: [PATCH 187/808] =?UTF-8?q?=F0=9F=90=99=20source-recharge:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47037)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recharge/metadata.yaml | 2 +- .../connectors/source-recharge/poetry.lock | 267 +++++++++--------- .../connectors/source-recharge/pyproject.toml | 2 +- docs/integrations/sources/recharge.md | 1 + 4 files changed, 137 insertions(+), 135 deletions(-) diff --git a/airbyte-integrations/connectors/source-recharge/metadata.yaml b/airbyte-integrations/connectors/source-recharge/metadata.yaml index 70a30a786beb..c579f420a31d 100644 --- a/airbyte-integrations/connectors/source-recharge/metadata.yaml +++ b/airbyte-integrations/connectors/source-recharge/metadata.yaml @@ -7,7 +7,7 @@ data: connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 definitionId: 45d2e135-2ede-49e1-939f-3e3ec357a65e - dockerImageTag: 2.4.12 + dockerImageTag: 2.4.13 dockerRepository: airbyte/source-recharge githubIssueLabel: source-recharge icon: recharge.svg diff --git a/airbyte-integrations/connectors/source-recharge/poetry.lock b/airbyte-integrations/connectors/source-recharge/poetry.lock index 2ded00db309d..5e9551420881 100644 --- a/airbyte-integrations/connectors/source-recharge/poetry.lock +++ b/airbyte-integrations/connectors/source-recharge/poetry.lock @@ -69,13 +69,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +86,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -731,13 +731,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -749,72 +749,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -844,68 +844,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1526,13 +1527,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1594,13 +1595,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-recharge/pyproject.toml b/airbyte-integrations/connectors/source-recharge/pyproject.toml index f3510762c717..eea1cd828a10 100644 --- a/airbyte-integrations/connectors/source-recharge/pyproject.toml +++ b/airbyte-integrations/connectors/source-recharge/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.4.12" +version = "2.4.13" name = "source-recharge" description = "Source implementation for Recharge." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/recharge.md b/docs/integrations/sources/recharge.md index d33ea5f2907b..4fc57d201260 100644 --- a/docs/integrations/sources/recharge.md +++ b/docs/integrations/sources/recharge.md @@ -79,6 +79,7 @@ The Recharge connector should gracefully handle Recharge API limitations under n | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:-------------------------------------------------------------------------------------------------------------------------------| +| 2.4.13 | 2024-10-28 | [47037](https://github.com/airbytehq/airbyte/pull/47037) | Update dependencies | | 2.4.12 | 2024-10-12 | [46797](https://github.com/airbytehq/airbyte/pull/46797) | Update dependencies | | 2.4.11 | 2024-10-05 | [46510](https://github.com/airbytehq/airbyte/pull/46510) | Update dependencies | | 2.4.10 | 2024-09-28 | [46110](https://github.com/airbytehq/airbyte/pull/46110) | Update dependencies | From 69d5a76e288aabe75759a10c6e5ada0d9d203566 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:14:23 +0200 Subject: [PATCH 188/808] =?UTF-8?q?=F0=9F=90=99=20source-posthog:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47033)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-posthog/metadata.yaml | 2 +- .../connectors/source-posthog/poetry.lock | 130 +++++++++--------- .../connectors/source-posthog/pyproject.toml | 2 +- docs/integrations/sources/posthog.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-posthog/metadata.yaml b/airbyte-integrations/connectors/source-posthog/metadata.yaml index 076d451159b5..99d2eab06937 100644 --- a/airbyte-integrations/connectors/source-posthog/metadata.yaml +++ b/airbyte-integrations/connectors/source-posthog/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: api connectorType: source definitionId: af6d50ee-dddf-4126-a8ee-7faee990774f - dockerImageTag: 1.1.15 + dockerImageTag: 1.1.16 dockerRepository: airbyte/source-posthog documentationUrl: https://docs.airbyte.com/integrations/sources/posthog githubIssueLabel: source-posthog diff --git a/airbyte-integrations/connectors/source-posthog/poetry.lock b/airbyte-integrations/connectors/source-posthog/poetry.lock index 2250425f0f0d..6c2c4e32eaf9 100644 --- a/airbyte-integrations/connectors/source-posthog/poetry.lock +++ b/airbyte-integrations/connectors/source-posthog/poetry.lock @@ -417,72 +417,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -885,13 +885,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-posthog/pyproject.toml b/airbyte-integrations/connectors/source-posthog/pyproject.toml index 7b9fed998dd5..e0ea4a63b8f2 100644 --- a/airbyte-integrations/connectors/source-posthog/pyproject.toml +++ b/airbyte-integrations/connectors/source-posthog/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.15" +version = "1.1.16" name = "source-posthog" description = "Source implementation for Posthog." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/posthog.md b/docs/integrations/sources/posthog.md index f92eff9e4b33..1518e35a181c 100644 --- a/docs/integrations/sources/posthog.md +++ b/docs/integrations/sources/posthog.md @@ -71,6 +71,7 @@ Want to use the PostHog API beyond these limits? Email Posthog at `customers@pos | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------- | +| 1.1.16 | 2024-10-28 | [47033](https://github.com/airbytehq/airbyte/pull/47033) | Update dependencies | | 1.1.15 | 2024-10-12 | [46769](https://github.com/airbytehq/airbyte/pull/46769) | Update dependencies | | 1.1.14 | 2024-10-05 | [46421](https://github.com/airbytehq/airbyte/pull/46421) | Update dependencies | | 1.1.13 | 2024-09-28 | [46108](https://github.com/airbytehq/airbyte/pull/46108) | Update dependencies | From bf6a868c04e554a30de7014788d5d60a329fc0d5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:14:29 +0200 Subject: [PATCH 189/808] =?UTF-8?q?=F0=9F=90=99=20source-instatus:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47027)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-instatus/metadata.yaml | 2 +- .../connectors/source-instatus/poetry.lock | 261 +++++++++--------- .../connectors/source-instatus/pyproject.toml | 2 +- docs/integrations/sources/instatus.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-instatus/metadata.yaml b/airbyte-integrations/connectors/source-instatus/metadata.yaml index b20a0d9612e2..59608bdc8b43 100644 --- a/airbyte-integrations/connectors/source-instatus/metadata.yaml +++ b/airbyte-integrations/connectors/source-instatus/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1901024c-0249-45d0-bcac-31a954652927 - dockerImageTag: 0.1.22 + dockerImageTag: 0.1.23 dockerRepository: airbyte/source-instatus githubIssueLabel: source-instatus icon: instatus.svg diff --git a/airbyte-integrations/connectors/source-instatus/poetry.lock b/airbyte-integrations/connectors/source-instatus/poetry.lock index 06658fe3a758..711efc8fb7ce 100644 --- a/airbyte-integrations/connectors/source-instatus/poetry.lock +++ b/airbyte-integrations/connectors/source-instatus/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -697,138 +697,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1284,13 +1285,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-instatus/pyproject.toml b/airbyte-integrations/connectors/source-instatus/pyproject.toml index 8cd752bbd5b9..a9411d6f8839 100644 --- a/airbyte-integrations/connectors/source-instatus/pyproject.toml +++ b/airbyte-integrations/connectors/source-instatus/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.22" +version = "0.1.23" name = "source-instatus" description = "Source implementation for Instatus." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/instatus.md b/docs/integrations/sources/instatus.md index 42a58f7f0c50..7c682d072aca 100644 --- a/docs/integrations/sources/instatus.md +++ b/docs/integrations/sources/instatus.md @@ -67,6 +67,7 @@ The Instatus source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------- | +| 0.1.23 | 2024-10-28 | [47027](https://github.com/airbytehq/airbyte/pull/47027) | Update dependencies | | 0.1.22 | 2024-10-12 | [46843](https://github.com/airbytehq/airbyte/pull/46843) | Update dependencies | | 0.1.21 | 2024-10-05 | [46484](https://github.com/airbytehq/airbyte/pull/46484) | Update dependencies | | 0.1.20 | 2024-09-28 | [46115](https://github.com/airbytehq/airbyte/pull/46115) | Update dependencies | From 9622eed44f6e52c8e9b0a60deef933a01d340ac0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:14:37 +0200 Subject: [PATCH 190/808] =?UTF-8?q?=F0=9F=90=99=20source-commcare:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#46795)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-commcare/metadata.yaml | 2 +- .../connectors/source-commcare/poetry.lock | 487 +++++++++--------- .../connectors/source-commcare/pyproject.toml | 2 +- docs/integrations/sources/commcare.md | 1 + 4 files changed, 255 insertions(+), 237 deletions(-) diff --git a/airbyte-integrations/connectors/source-commcare/metadata.yaml b/airbyte-integrations/connectors/source-commcare/metadata.yaml index 28d22ad8c7ea..15c904293524 100644 --- a/airbyte-integrations/connectors/source-commcare/metadata.yaml +++ b/airbyte-integrations/connectors/source-commcare/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: f39208dc-7e1c-48b8-919b-5006360cc27f - dockerImageTag: 0.1.20 + dockerImageTag: 0.1.21 dockerRepository: airbyte/source-commcare githubIssueLabel: source-commcare icon: commcare.svg diff --git a/airbyte-integrations/connectors/source-commcare/poetry.lock b/airbyte-integrations/connectors/source-commcare/poetry.lock index 97eb7d357d6a..98c206a0fc03 100644 --- a/airbyte-integrations/connectors/source-commcare/poetry.lock +++ b/airbyte-integrations/connectors/source-commcare/poetry.lock @@ -161,101 +161,116 @@ files = [ [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] @@ -366,13 +381,13 @@ files = [ [[package]] name = "google-api-core" -version = "2.20.0" +version = "2.21.0" description = "Google API client core library" optional = false python-versions = ">=3.7" files = [ - {file = "google_api_core-2.20.0-py3-none-any.whl", hash = "sha256:ef0591ef03c30bb83f79b3d0575c3f31219001fc9c5cf37024d08310aeffed8a"}, - {file = "google_api_core-2.20.0.tar.gz", hash = "sha256:f74dff1889ba291a4b76c5079df0711810e2d9da81abfdc99957bc961c1eb28f"}, + {file = "google_api_core-2.21.0-py3-none-any.whl", hash = "sha256:6869eacb2a37720380ba5898312af79a4d30b8bca1548fb4093e0697dc4bdf5d"}, + {file = "google_api_core-2.21.0.tar.gz", hash = "sha256:4a152fd11a9f774ea606388d423b68aa7e6d6a0ffe4c8266f74979613ec09f81"}, ] [package.dependencies] @@ -391,6 +406,7 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4 requests = ">=2.18.0,<3.0.0.dev0" [package.extras] +async-rest = ["google-auth[aiohttp] (>=2.35.0,<3.0.dev0)"] grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] @@ -543,85 +559,85 @@ grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] [[package]] name = "grpcio" -version = "1.66.2" +version = "1.67.0" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.66.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:fe96281713168a3270878255983d2cb1a97e034325c8c2c25169a69289d3ecfa"}, - {file = "grpcio-1.66.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:73fc8f8b9b5c4a03e802b3cd0c18b2b06b410d3c1dcbef989fdeb943bd44aff7"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:03b0b307ba26fae695e067b94cbb014e27390f8bc5ac7a3a39b7723fed085604"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d69ce1f324dc2d71e40c9261d3fdbe7d4c9d60f332069ff9b2a4d8a257c7b2b"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05bc2ceadc2529ab0b227b1310d249d95d9001cd106aa4d31e8871ad3c428d73"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ac475e8da31484efa25abb774674d837b343afb78bb3bcdef10f81a93e3d6bf"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0be4e0490c28da5377283861bed2941d1d20ec017ca397a5df4394d1c31a9b50"}, - {file = "grpcio-1.66.2-cp310-cp310-win32.whl", hash = "sha256:4e504572433f4e72b12394977679161d495c4c9581ba34a88d843eaf0f2fbd39"}, - {file = "grpcio-1.66.2-cp310-cp310-win_amd64.whl", hash = "sha256:2018b053aa15782db2541ca01a7edb56a0bf18c77efed975392583725974b249"}, - {file = "grpcio-1.66.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:2335c58560a9e92ac58ff2bc5649952f9b37d0735608242973c7a8b94a6437d8"}, - {file = "grpcio-1.66.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45a3d462826f4868b442a6b8fdbe8b87b45eb4f5b5308168c156b21eca43f61c"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:a9539f01cb04950fd4b5ab458e64a15f84c2acc273670072abe49a3f29bbad54"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce89f5876662f146d4c1f695dda29d4433a5d01c8681fbd2539afff535da14d4"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d25a14af966438cddf498b2e338f88d1c9706f3493b1d73b93f695c99c5f0e2a"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6001e575b8bbd89eee11960bb640b6da6ae110cf08113a075f1e2051cc596cae"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ea1d062c9230278793820146c95d038dc0f468cbdd172eec3363e42ff1c7d01"}, - {file = "grpcio-1.66.2-cp311-cp311-win32.whl", hash = "sha256:38b68498ff579a3b1ee8f93a05eb48dc2595795f2f62716e797dc24774c1aaa8"}, - {file = "grpcio-1.66.2-cp311-cp311-win_amd64.whl", hash = "sha256:6851de821249340bdb100df5eacfecfc4e6075fa85c6df7ee0eb213170ec8e5d"}, - {file = "grpcio-1.66.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:802d84fd3d50614170649853d121baaaa305de7b65b3e01759247e768d691ddf"}, - {file = "grpcio-1.66.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:80fd702ba7e432994df208f27514280b4b5c6843e12a48759c9255679ad38db8"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:12fda97ffae55e6526825daf25ad0fa37483685952b5d0f910d6405c87e3adb6"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:950da58d7d80abd0ea68757769c9db0a95b31163e53e5bb60438d263f4bed7b7"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e636ce23273683b00410f1971d209bf3689238cf5538d960adc3cdfe80dd0dbd"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a917d26e0fe980b0ac7bfcc1a3c4ad6a9a4612c911d33efb55ed7833c749b0ee"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49f0ca7ae850f59f828a723a9064cadbed90f1ece179d375966546499b8a2c9c"}, - {file = "grpcio-1.66.2-cp312-cp312-win32.whl", hash = "sha256:31fd163105464797a72d901a06472860845ac157389e10f12631025b3e4d0453"}, - {file = "grpcio-1.66.2-cp312-cp312-win_amd64.whl", hash = "sha256:ff1f7882e56c40b0d33c4922c15dfa30612f05fb785074a012f7cda74d1c3679"}, - {file = "grpcio-1.66.2-cp313-cp313-linux_armv7l.whl", hash = "sha256:3b00efc473b20d8bf83e0e1ae661b98951ca56111feb9b9611df8efc4fe5d55d"}, - {file = "grpcio-1.66.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1caa38fb22a8578ab8393da99d4b8641e3a80abc8fd52646f1ecc92bcb8dee34"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c408f5ef75cfffa113cacd8b0c0e3611cbfd47701ca3cdc090594109b9fcbaed"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c806852deaedee9ce8280fe98955c9103f62912a5b2d5ee7e3eaa284a6d8d8e7"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f145cc21836c332c67baa6fc81099d1d27e266401565bf481948010d6ea32d46"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:73e3b425c1e155730273f73e419de3074aa5c5e936771ee0e4af0814631fb30a"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9c509a4f78114cbc5f0740eb3d7a74985fd2eff022971bc9bc31f8bc93e66a3b"}, - {file = "grpcio-1.66.2-cp313-cp313-win32.whl", hash = "sha256:20657d6b8cfed7db5e11b62ff7dfe2e12064ea78e93f1434d61888834bc86d75"}, - {file = "grpcio-1.66.2-cp313-cp313-win_amd64.whl", hash = "sha256:fb70487c95786e345af5e854ffec8cb8cc781bcc5df7930c4fbb7feaa72e1cdf"}, - {file = "grpcio-1.66.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:a18e20d8321c6400185b4263e27982488cb5cdd62da69147087a76a24ef4e7e3"}, - {file = "grpcio-1.66.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:02697eb4a5cbe5a9639f57323b4c37bcb3ab2d48cec5da3dc2f13334d72790dd"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:99a641995a6bc4287a6315989ee591ff58507aa1cbe4c2e70d88411c4dcc0839"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ed71e81782966ffead60268bbda31ea3f725ebf8aa73634d5dda44f2cf3fb9c"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbd27c24a4cc5e195a7f56cfd9312e366d5d61b86e36d46bbe538457ea6eb8dd"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d9a9724a156c8ec6a379869b23ba3323b7ea3600851c91489b871e375f710bc8"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d8d4732cc5052e92cea2f78b233c2e2a52998ac40cd651f40e398893ad0d06ec"}, - {file = "grpcio-1.66.2-cp38-cp38-win32.whl", hash = "sha256:7b2c86457145ce14c38e5bf6bdc19ef88e66c5fee2c3d83285c5aef026ba93b3"}, - {file = "grpcio-1.66.2-cp38-cp38-win_amd64.whl", hash = "sha256:e88264caad6d8d00e7913996030bac8ad5f26b7411495848cc218bd3a9040b6c"}, - {file = "grpcio-1.66.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:c400ba5675b67025c8a9f48aa846f12a39cf0c44df5cd060e23fda5b30e9359d"}, - {file = "grpcio-1.66.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:66a0cd8ba6512b401d7ed46bb03f4ee455839957f28b8d61e7708056a806ba6a"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:06de8ec0bd71be123eec15b0e0d457474931c2c407869b6c349bd9bed4adbac3"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb57870449dfcfac428afbb5a877829fcb0d6db9d9baa1148705739e9083880e"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b672abf90a964bfde2d0ecbce30f2329a47498ba75ce6f4da35a2f4532b7acbc"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad2efdbe90c73b0434cbe64ed372e12414ad03c06262279b104a029d1889d13e"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9c3a99c519f4638e700e9e3f83952e27e2ea10873eecd7935823dab0c1c9250e"}, - {file = "grpcio-1.66.2-cp39-cp39-win32.whl", hash = "sha256:78fa51ebc2d9242c0fc5db0feecc57a9943303b46664ad89921f5079e2e4ada7"}, - {file = "grpcio-1.66.2-cp39-cp39-win_amd64.whl", hash = "sha256:728bdf36a186e7f51da73be7f8d09457a03061be848718d0edf000e709418987"}, - {file = "grpcio-1.66.2.tar.gz", hash = "sha256:563588c587b75c34b928bc428548e5b00ea38c46972181a4d8b75ba7e3f24231"}, + {file = "grpcio-1.67.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:bd79929b3bb96b54df1296cd3bf4d2b770bd1df6c2bdf549b49bab286b925cdc"}, + {file = "grpcio-1.67.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:16724ffc956ea42967f5758c2f043faef43cb7e48a51948ab593570570d1e68b"}, + {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:2b7183c80b602b0ad816315d66f2fb7887614ead950416d60913a9a71c12560d"}, + {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efe32b45dd6d118f5ea2e5deaed417d8a14976325c93812dd831908522b402c9"}, + {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe89295219b9c9e47780a0f1c75ca44211e706d1c598242249fe717af3385ec8"}, + {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa8d025fae1595a207b4e47c2e087cb88d47008494db258ac561c00877d4c8f8"}, + {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f95e15db43e75a534420e04822df91f645664bf4ad21dfaad7d51773c80e6bb4"}, + {file = "grpcio-1.67.0-cp310-cp310-win32.whl", hash = "sha256:a6b9a5c18863fd4b6624a42e2712103fb0f57799a3b29651c0e5b8119a519d65"}, + {file = "grpcio-1.67.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6eb68493a05d38b426604e1dc93bfc0137c4157f7ab4fac5771fd9a104bbaa6"}, + {file = "grpcio-1.67.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:e91d154689639932305b6ea6f45c6e46bb51ecc8ea77c10ef25aa77f75443ad4"}, + {file = "grpcio-1.67.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cb204a742997277da678611a809a8409657b1398aaeebf73b3d9563b7d154c13"}, + {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:ae6de510f670137e755eb2a74b04d1041e7210af2444103c8c95f193340d17ee"}, + {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74b900566bdf68241118f2918d312d3bf554b2ce0b12b90178091ea7d0a17b3d"}, + {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4e95e43447a02aa603abcc6b5e727d093d161a869c83b073f50b9390ecf0fa8"}, + {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0bb94e66cd8f0baf29bd3184b6aa09aeb1a660f9ec3d85da615c5003154bc2bf"}, + {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:82e5bd4b67b17c8c597273663794a6a46a45e44165b960517fe6d8a2f7f16d23"}, + {file = "grpcio-1.67.0-cp311-cp311-win32.whl", hash = "sha256:7fc1d2b9fd549264ae585026b266ac2db53735510a207381be509c315b4af4e8"}, + {file = "grpcio-1.67.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac11ecb34a86b831239cc38245403a8de25037b448464f95c3315819e7519772"}, + {file = "grpcio-1.67.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:227316b5631260e0bef8a3ce04fa7db4cc81756fea1258b007950b6efc90c05d"}, + {file = "grpcio-1.67.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d90cfdafcf4b45a7a076e3e2a58e7bc3d59c698c4f6470b0bb13a4d869cf2273"}, + {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:77196216d5dd6f99af1c51e235af2dd339159f657280e65ce7e12c1a8feffd1d"}, + {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15c05a26a0f7047f720da41dc49406b395c1470eef44ff7e2c506a47ac2c0591"}, + {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3840994689cc8cbb73d60485c594424ad8adb56c71a30d8948d6453083624b52"}, + {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:5a1e03c3102b6451028d5dc9f8591131d6ab3c8a0e023d94c28cb930ed4b5f81"}, + {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:682968427a63d898759474e3b3178d42546e878fdce034fd7474ef75143b64e3"}, + {file = "grpcio-1.67.0-cp312-cp312-win32.whl", hash = "sha256:d01793653248f49cf47e5695e0a79805b1d9d4eacef85b310118ba1dfcd1b955"}, + {file = "grpcio-1.67.0-cp312-cp312-win_amd64.whl", hash = "sha256:985b2686f786f3e20326c4367eebdaed3e7aa65848260ff0c6644f817042cb15"}, + {file = "grpcio-1.67.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:8c9a35b8bc50db35ab8e3e02a4f2a35cfba46c8705c3911c34ce343bd777813a"}, + {file = "grpcio-1.67.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:42199e704095b62688998c2d84c89e59a26a7d5d32eed86d43dc90e7a3bd04aa"}, + {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c4c425f440fb81f8d0237c07b9322fc0fb6ee2b29fbef5f62a322ff8fcce240d"}, + {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:323741b6699cd2b04a71cb38f502db98f90532e8a40cb675393d248126a268af"}, + {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:662c8e105c5e5cee0317d500eb186ed7a93229586e431c1bf0c9236c2407352c"}, + {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f6bd2ab135c64a4d1e9e44679a616c9bc944547357c830fafea5c3caa3de5153"}, + {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:2f55c1e0e2ae9bdd23b3c63459ee4c06d223b68aeb1961d83c48fb63dc29bc03"}, + {file = "grpcio-1.67.0-cp313-cp313-win32.whl", hash = "sha256:fd6bc27861e460fe28e94226e3673d46e294ca4673d46b224428d197c5935e69"}, + {file = "grpcio-1.67.0-cp313-cp313-win_amd64.whl", hash = "sha256:cf51d28063338608cd8d3cd64677e922134837902b70ce00dad7f116e3998210"}, + {file = "grpcio-1.67.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:7f200aca719c1c5dc72ab68be3479b9dafccdf03df530d137632c534bb6f1ee3"}, + {file = "grpcio-1.67.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0892dd200ece4822d72dd0952f7112c542a487fc48fe77568deaaa399c1e717d"}, + {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:f4d613fbf868b2e2444f490d18af472ccb47660ea3df52f068c9c8801e1f3e85"}, + {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c69bf11894cad9da00047f46584d5758d6ebc9b5950c0dc96fec7e0bce5cde9"}, + {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9bca3ca0c5e74dea44bf57d27e15a3a3996ce7e5780d61b7c72386356d231db"}, + {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:014dfc020e28a0d9be7e93a91f85ff9f4a87158b7df9952fe23cc42d29d31e1e"}, + {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d4ea4509d42c6797539e9ec7496c15473177ce9abc89bc5c71e7abe50fc25737"}, + {file = "grpcio-1.67.0-cp38-cp38-win32.whl", hash = "sha256:9d75641a2fca9ae1ae86454fd25d4c298ea8cc195dbc962852234d54a07060ad"}, + {file = "grpcio-1.67.0-cp38-cp38-win_amd64.whl", hash = "sha256:cff8e54d6a463883cda2fab94d2062aad2f5edd7f06ae3ed030f2a74756db365"}, + {file = "grpcio-1.67.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:62492bd534979e6d7127b8a6b29093161a742dee3875873e01964049d5250a74"}, + {file = "grpcio-1.67.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eef1dce9d1a46119fd09f9a992cf6ab9d9178b696382439446ca5f399d7b96fe"}, + {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:f623c57a5321461c84498a99dddf9d13dac0e40ee056d884d6ec4ebcab647a78"}, + {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54d16383044e681f8beb50f905249e4e7261dd169d4aaf6e52eab67b01cbbbe2"}, + {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2a44e572fb762c668e4812156b81835f7aba8a721b027e2d4bb29fb50ff4d33"}, + {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:391df8b0faac84d42f5b8dfc65f5152c48ed914e13c522fd05f2aca211f8bfad"}, + {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cfd9306511fdfc623a1ba1dc3bc07fbd24e6cfbe3c28b4d1e05177baa2f99617"}, + {file = "grpcio-1.67.0-cp39-cp39-win32.whl", hash = "sha256:30d47dbacfd20cbd0c8be9bfa52fdb833b395d4ec32fe5cff7220afc05d08571"}, + {file = "grpcio-1.67.0-cp39-cp39-win_amd64.whl", hash = "sha256:f55f077685f61f0fbd06ea355142b71e47e4a26d2d678b3ba27248abfe67163a"}, + {file = "grpcio-1.67.0.tar.gz", hash = "sha256:e090b2553e0da1c875449c8e75073dd4415dd71c9bde6a406240fdf4c0ee467c"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.66.2)"] +protobuf = ["grpcio-tools (>=1.67.0)"] [[package]] name = "grpcio-status" -version = "1.66.2" +version = "1.67.0" description = "Status proto mapping for gRPC" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio_status-1.66.2-py3-none-any.whl", hash = "sha256:e5fe189f6897d12aa9cd74408a17ca41e44fad30871cf84f5cbd17bd713d2455"}, - {file = "grpcio_status-1.66.2.tar.gz", hash = "sha256:fb55cbb5c2e67062f7a4d5c99e489d074fb57e98678d5c3c6692a2d74d89e9ae"}, + {file = "grpcio_status-1.67.0-py3-none-any.whl", hash = "sha256:0e79e2e01ba41a6ca6ed9d7a825323c511fe1653a646f8014c7e3c8132527acc"}, + {file = "grpcio_status-1.67.0.tar.gz", hash = "sha256:c3e5a86fa007e9e263cd5f988a8a907484da4caab582874ea2a4a6092734046b"}, ] [package.dependencies] googleapis-common-protos = ">=1.5.5" -grpcio = ">=1.66.2" +grpcio = ">=1.67.0" protobuf = ">=5.26.1,<6.0dev" [[package]] @@ -714,71 +730,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -859,13 +876,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "proto-plus" -version = "1.24.0" +version = "1.25.0" description = "Beautiful, Pythonic protocol buffers." optional = false python-versions = ">=3.7" files = [ - {file = "proto-plus-1.24.0.tar.gz", hash = "sha256:30b72a5ecafe4406b0d339db35b56c4059064e69227b8c3bda7462397f966445"}, - {file = "proto_plus-1.24.0-py3-none-any.whl", hash = "sha256:402576830425e5f6ce4c2a6702400ac79897dab0b4343821aa5188b0fab81a12"}, + {file = "proto_plus-1.25.0-py3-none-any.whl", hash = "sha256:c91fc4a65074ade8e458e95ef8bac34d4008daa7cce4a12d6707066fca648961"}, + {file = "proto_plus-1.25.0.tar.gz", hash = "sha256:fbb17f57f7bd05a68b7707e745e26528b0b3c34e378db91eef93912c54982d91"}, ] [package.dependencies] @@ -876,22 +893,22 @@ testing = ["google-api-core (>=1.31.5)"] [[package]] name = "protobuf" -version = "5.28.2" +version = "5.28.3" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-5.28.2-cp310-abi3-win32.whl", hash = "sha256:eeea10f3dc0ac7e6b4933d32db20662902b4ab81bf28df12218aa389e9c2102d"}, - {file = "protobuf-5.28.2-cp310-abi3-win_amd64.whl", hash = "sha256:2c69461a7fcc8e24be697624c09a839976d82ae75062b11a0972e41fd2cd9132"}, - {file = "protobuf-5.28.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a8b9403fc70764b08d2f593ce44f1d2920c5077bf7d311fefec999f8c40f78b7"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:35cfcb15f213449af7ff6198d6eb5f739c37d7e4f1c09b5d0641babf2cc0c68f"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:5e8a95246d581eef20471b5d5ba010d55f66740942b95ba9b872d918c459452f"}, - {file = "protobuf-5.28.2-cp38-cp38-win32.whl", hash = "sha256:87317e9bcda04a32f2ee82089a204d3a2f0d3c8aeed16568c7daf4756e4f1fe0"}, - {file = "protobuf-5.28.2-cp38-cp38-win_amd64.whl", hash = "sha256:c0ea0123dac3399a2eeb1a1443d82b7afc9ff40241433296769f7da42d142ec3"}, - {file = "protobuf-5.28.2-cp39-cp39-win32.whl", hash = "sha256:ca53faf29896c526863366a52a8f4d88e69cd04ec9571ed6082fa117fac3ab36"}, - {file = "protobuf-5.28.2-cp39-cp39-win_amd64.whl", hash = "sha256:8ddc60bf374785fb7cb12510b267f59067fa10087325b8e1855b898a0d81d276"}, - {file = "protobuf-5.28.2-py3-none-any.whl", hash = "sha256:52235802093bd8a2811abbe8bf0ab9c5f54cca0a751fdd3f6ac2a21438bffece"}, - {file = "protobuf-5.28.2.tar.gz", hash = "sha256:59379674ff119717404f7454647913787034f03fe7049cbef1d74a97bb4593f0"}, + {file = "protobuf-5.28.3-cp310-abi3-win32.whl", hash = "sha256:0c4eec6f987338617072592b97943fdbe30d019c56126493111cf24344c1cc24"}, + {file = "protobuf-5.28.3-cp310-abi3-win_amd64.whl", hash = "sha256:91fba8f445723fcf400fdbe9ca796b19d3b1242cd873907979b9ed71e4afe868"}, + {file = "protobuf-5.28.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a3f6857551e53ce35e60b403b8a27b0295f7d6eb63d10484f12bc6879c715687"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:3fa2de6b8b29d12c61911505d893afe7320ce7ccba4df913e2971461fa36d584"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:712319fbdddb46f21abb66cd33cb9e491a5763b2febd8f228251add221981135"}, + {file = "protobuf-5.28.3-cp38-cp38-win32.whl", hash = "sha256:3e6101d095dfd119513cde7259aa703d16c6bbdfae2554dfe5cfdbe94e32d548"}, + {file = "protobuf-5.28.3-cp38-cp38-win_amd64.whl", hash = "sha256:27b246b3723692bf1068d5734ddaf2fccc2cdd6e0c9b47fe099244d80200593b"}, + {file = "protobuf-5.28.3-cp39-cp39-win32.whl", hash = "sha256:135658402f71bbd49500322c0f736145731b16fc79dc8f367ab544a17eab4535"}, + {file = "protobuf-5.28.3-cp39-cp39-win_amd64.whl", hash = "sha256:70585a70fc2dd4818c51287ceef5bdba6387f88a578c86d47bb34669b5552c36"}, + {file = "protobuf-5.28.3-py3-none-any.whl", hash = "sha256:cee1757663fa32a1ee673434fcf3bf24dd54763c79690201208bafec62f19eed"}, + {file = "protobuf-5.28.3.tar.gz", hash = "sha256:64badbc49180a5e401f373f9ce7ab1d18b63f7dd4a9cdc43c92b9f0b481cef7b"}, ] [[package]] @@ -1257,13 +1274,13 @@ pyasn1 = ">=0.1.3" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-commcare/pyproject.toml b/airbyte-integrations/connectors/source-commcare/pyproject.toml index ef2fc5a003ba..1c6de1f3ba91 100644 --- a/airbyte-integrations/connectors/source-commcare/pyproject.toml +++ b/airbyte-integrations/connectors/source-commcare/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.20" +version = "0.1.21" name = "source-commcare" description = "Source implementation for Commcare." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/commcare.md b/docs/integrations/sources/commcare.md index 54bc0c727fc9..f40d2e290b55 100644 --- a/docs/integrations/sources/commcare.md +++ b/docs/integrations/sources/commcare.md @@ -40,6 +40,7 @@ The Commcare source connector supports the following streams: | Version | Date | Pull Request | Subject | | ------- | ---------- | -------------------------------------------------------- | ------------------------- | +| 0.1.21 | 2024-10-28 | [46795](https://github.com/airbytehq/airbyte/pull/46795) | Update dependencies | | 0.1.20 | 2024-10-05 | [46413](https://github.com/airbytehq/airbyte/pull/46413) | Update dependencies | | 0.1.19 | 2024-09-28 | [46163](https://github.com/airbytehq/airbyte/pull/46163) | Update dependencies | | 0.1.18 | 2024-09-21 | [45758](https://github.com/airbytehq/airbyte/pull/45758) | Update dependencies | From fda6670c25418a04cc624fff91b23e459c1633d3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:14:40 +0200 Subject: [PATCH 191/808] =?UTF-8?q?=F0=9F=90=99=20source-datadog:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#46502)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-datadog/metadata.yaml | 4 ++-- docs/integrations/sources/datadog.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-datadog/metadata.yaml b/airbyte-integrations/connectors/source-datadog/metadata.yaml index 568a9066e774..bb4c02099324 100644 --- a/airbyte-integrations/connectors/source-datadog/metadata.yaml +++ b/airbyte-integrations/connectors/source-datadog/metadata.yaml @@ -23,7 +23,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1cfc30c7-82db-43f4-9fd7-ac1b42312cda - dockerImageTag: 1.1.0 + dockerImageTag: 1.1.1 dockerRepository: airbyte/source-datadog githubIssueLabel: source-datadog icon: datadog.svg @@ -52,5 +52,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.7.5@sha256:4832cc13b262b4cae4ba72b07da544e6ee2f5d216b7147483480d5ebc5d0d7ca + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/datadog.md b/docs/integrations/sources/datadog.md index fe08e1112865..aecf466199d6 100644 --- a/docs/integrations/sources/datadog.md +++ b/docs/integrations/sources/datadog.md @@ -76,6 +76,7 @@ The Datadog source connector supports the following [sync modes](https://docs.ai | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------| +| 1.1.1 | 2024-10-28 | [46502](https://github.com/airbytehq/airbyte/pull/46502) | Update dependencies | | 1.1.0 | 2023-10-04 | [46387](https://github.com/airbytehq/airbyte/pull/46387) | Migrate to manifest only | | 1.0.6 | 2024-09-28 | [46190](https://github.com/airbytehq/airbyte/pull/46190) | Update dependencies | | 1.0.5 | 2024-09-21 | [45771](https://github.com/airbytehq/airbyte/pull/45771) | Update dependencies | From a6a0ef8837fa9259a1bc915c8b6927de4bc718ce Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 20:15:13 +0200 Subject: [PATCH 192/808] =?UTF-8?q?=F0=9F=90=99=20source-facebook-marketin?= =?UTF-8?q?g:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#43787)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-facebook-marketing/metadata.yaml | 2 +- .../source-facebook-marketing/poetry.lock | 1126 ++++++++++------- .../source-facebook-marketing/pyproject.toml | 2 +- .../sources/facebook-marketing.md | 79 +- 4 files changed, 676 insertions(+), 533 deletions(-) diff --git a/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml b/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml index 8115981aa4d7..c632392d090e 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: e7778cfc-e97c-4458-9ecb-b4f2bba8946c - dockerImageTag: 3.3.16 + dockerImageTag: 3.3.17 dockerRepository: airbyte/source-facebook-marketing documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-marketing githubIssueLabel: source-facebook-marketing diff --git a/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock b/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock index 6902c2c6c67f..5a4f1d39b6c2 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock +++ b/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "aiohappyeyeballs" @@ -13,102 +13,102 @@ files = [ [[package]] name = "aiohttp" -version = "3.10.9" +version = "3.10.10" description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.8" files = [ - {file = "aiohttp-3.10.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8b3fb28a9ac8f2558760d8e637dbf27aef1e8b7f1d221e8669a1074d1a266bb2"}, - {file = "aiohttp-3.10.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:91aa966858593f64c8a65cdefa3d6dc8fe3c2768b159da84c1ddbbb2c01ab4ef"}, - {file = "aiohttp-3.10.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:63649309da83277f06a15bbdc2a54fbe75efb92caa2c25bb57ca37762789c746"}, - {file = "aiohttp-3.10.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3e7fabedb3fe06933f47f1538df7b3a8d78e13d7167195f51ca47ee12690373"}, - {file = "aiohttp-3.10.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c070430fda1a550a1c3a4c2d7281d3b8cfc0c6715f616e40e3332201a253067"}, - {file = "aiohttp-3.10.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:51d0a4901b27272ae54e42067bc4b9a90e619a690b4dc43ea5950eb3070afc32"}, - {file = "aiohttp-3.10.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fec5fac7aea6c060f317f07494961236434928e6f4374e170ef50b3001e14581"}, - {file = "aiohttp-3.10.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:172ad884bb61ad31ed7beed8be776eb17e7fb423f1c1be836d5cb357a096bf12"}, - {file = "aiohttp-3.10.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d646fdd74c25bbdd4a055414f0fe32896c400f38ffbdfc78c68e62812a9e0257"}, - {file = "aiohttp-3.10.9-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e86260b76786c28acf0b5fe31c8dca4c2add95098c709b11e8c35b424ebd4f5b"}, - {file = "aiohttp-3.10.9-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c7d7cafc11d70fdd8801abfc2ff276744ae4cb39d8060b6b542c7e44e5f2cfc2"}, - {file = "aiohttp-3.10.9-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:fc262c3df78c8ff6020c782d9ce02e4bcffe4900ad71c0ecdad59943cba54442"}, - {file = "aiohttp-3.10.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:482c85cf3d429844396d939b22bc2a03849cb9ad33344689ad1c85697bcba33a"}, - {file = "aiohttp-3.10.9-cp310-cp310-win32.whl", hash = "sha256:aeebd3061f6f1747c011e1d0b0b5f04f9f54ad1a2ca183e687e7277bef2e0da2"}, - {file = "aiohttp-3.10.9-cp310-cp310-win_amd64.whl", hash = "sha256:fa430b871220dc62572cef9c69b41e0d70fcb9d486a4a207a5de4c1f25d82593"}, - {file = "aiohttp-3.10.9-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:16e6a51d8bc96b77f04a6764b4ad03eeef43baa32014fce71e882bd71302c7e4"}, - {file = "aiohttp-3.10.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8bd9125dd0cc8ebd84bff2be64b10fdba7dc6fd7be431b5eaf67723557de3a31"}, - {file = "aiohttp-3.10.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dcf354661f54e6a49193d0b5653a1b011ba856e0b7a76bda2c33e4c6892f34ea"}, - {file = "aiohttp-3.10.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42775de0ca04f90c10c5c46291535ec08e9bcc4756f1b48f02a0657febe89b10"}, - {file = "aiohttp-3.10.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:87d1e4185c5d7187684d41ebb50c9aeaaaa06ca1875f4c57593071b0409d2444"}, - {file = "aiohttp-3.10.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2695c61cf53a5d4345a43d689f37fc0f6d3a2dc520660aec27ec0f06288d1f9"}, - {file = "aiohttp-3.10.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a3f063b41cc06e8d0b3fcbbfc9c05b7420f41287e0cd4f75ce0a1f3d80729e6"}, - {file = "aiohttp-3.10.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2d37f4718002863b82c6f391c8efd4d3a817da37030a29e2682a94d2716209de"}, - {file = "aiohttp-3.10.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2746d8994ebca1bdc55a1e998feff4e94222da709623bb18f6e5cfec8ec01baf"}, - {file = "aiohttp-3.10.9-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6f3c6648aa123bcd73d6f26607d59967b607b0da8ffcc27d418a4b59f4c98c7c"}, - {file = "aiohttp-3.10.9-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:558b3d223fd631ad134d89adea876e7fdb4c93c849ef195049c063ada82b7d08"}, - {file = "aiohttp-3.10.9-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4e6cb75f8ddd9c2132d00bc03c9716add57f4beff1263463724f6398b813e7eb"}, - {file = "aiohttp-3.10.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:608cecd8d58d285bfd52dbca5b6251ca8d6ea567022c8a0eaae03c2589cd9af9"}, - {file = "aiohttp-3.10.9-cp311-cp311-win32.whl", hash = "sha256:36d4fba838be5f083f5490ddd281813b44d69685db910907636bc5dca6322316"}, - {file = "aiohttp-3.10.9-cp311-cp311-win_amd64.whl", hash = "sha256:8be1a65487bdfc285bd5e9baf3208c2132ca92a9b4020e9f27df1b16fab998a9"}, - {file = "aiohttp-3.10.9-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4fd16b30567c5b8e167923be6e027eeae0f20cf2b8a26b98a25115f28ad48ee0"}, - {file = "aiohttp-3.10.9-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:40ff5b7660f903dc587ed36ef08a88d46840182d9d4b5694e7607877ced698a1"}, - {file = "aiohttp-3.10.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4edc3fd701e2b9a0d605a7b23d3de4ad23137d23fc0dbab726aa71d92f11aaaf"}, - {file = "aiohttp-3.10.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e525b69ee8a92c146ae5b4da9ecd15e518df4d40003b01b454ad694a27f498b5"}, - {file = "aiohttp-3.10.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5002a02c17fcfd796d20bac719981d2fca9c006aac0797eb8f430a58e9d12431"}, - {file = "aiohttp-3.10.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fd4ceeae2fb8cabdd1b71c82bfdd39662473d3433ec95b962200e9e752fb70d0"}, - {file = "aiohttp-3.10.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6e395c3d1f773cf0651cd3559e25182eb0c03a2777b53b4575d8adc1149c6e9"}, - {file = "aiohttp-3.10.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbdb8def5268f3f9cd753a265756f49228a20ed14a480d151df727808b4531dd"}, - {file = "aiohttp-3.10.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f82ace0ec57c94aaf5b0e118d4366cff5889097412c75aa14b4fd5fc0c44ee3e"}, - {file = "aiohttp-3.10.9-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:6ebdc3b3714afe1b134b3bbeb5f745eed3ecbcff92ab25d80e4ef299e83a5465"}, - {file = "aiohttp-3.10.9-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f9ca09414003c0e96a735daa1f071f7d7ed06962ef4fa29ceb6c80d06696d900"}, - {file = "aiohttp-3.10.9-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1298b854fd31d0567cbb916091be9d3278168064fca88e70b8468875ef9ff7e7"}, - {file = "aiohttp-3.10.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:60ad5b8a7452c0f5645c73d4dad7490afd6119d453d302cd5b72b678a85d6044"}, - {file = "aiohttp-3.10.9-cp312-cp312-win32.whl", hash = "sha256:1a0ee6c0d590c917f1b9629371fce5f3d3f22c317aa96fbdcce3260754d7ea21"}, - {file = "aiohttp-3.10.9-cp312-cp312-win_amd64.whl", hash = "sha256:c46131c6112b534b178d4e002abe450a0a29840b61413ac25243f1291613806a"}, - {file = "aiohttp-3.10.9-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2bd9f3eac515c16c4360a6a00c38119333901b8590fe93c3257a9b536026594d"}, - {file = "aiohttp-3.10.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8cc0d13b4e3b1362d424ce3f4e8c79e1f7247a00d792823ffd640878abf28e56"}, - {file = "aiohttp-3.10.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ba1a599255ad6a41022e261e31bc2f6f9355a419575b391f9655c4d9e5df5ff5"}, - {file = "aiohttp-3.10.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:776e9f3c9b377fcf097c4a04b241b15691e6662d850168642ff976780609303c"}, - {file = "aiohttp-3.10.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8debb45545ad95b58cc16c3c1cc19ad82cffcb106db12b437885dbee265f0ab5"}, - {file = "aiohttp-3.10.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2555e4949c8d8782f18ef20e9d39730d2656e218a6f1a21a4c4c0b56546a02e"}, - {file = "aiohttp-3.10.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c54dc329cd44f7f7883a9f4baaefe686e8b9662e2c6c184ea15cceee587d8d69"}, - {file = "aiohttp-3.10.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e709d6ac598c5416f879bb1bae3fd751366120ac3fa235a01de763537385d036"}, - {file = "aiohttp-3.10.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:17c272cfe7b07a5bb0c6ad3f234e0c336fb53f3bf17840f66bd77b5815ab3d16"}, - {file = "aiohttp-3.10.9-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:0c21c82df33b264216abffff9f8370f303dab65d8eee3767efbbd2734363f677"}, - {file = "aiohttp-3.10.9-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:9331dd34145ff105177855017920dde140b447049cd62bb589de320fd6ddd582"}, - {file = "aiohttp-3.10.9-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ac3196952c673822ebed8871cf8802e17254fff2a2ed4835d9c045d9b88c5ec7"}, - {file = "aiohttp-3.10.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2c33fa6e10bb7ed262e3ff03cc69d52869514f16558db0626a7c5c61dde3c29f"}, - {file = "aiohttp-3.10.9-cp313-cp313-win32.whl", hash = "sha256:a14e4b672c257a6b94fe934ee62666bacbc8e45b7876f9dd9502d0f0fe69db16"}, - {file = "aiohttp-3.10.9-cp313-cp313-win_amd64.whl", hash = "sha256:a35ed3d03910785f7d9d6f5381f0c24002b2b888b298e6f941b2fc94c5055fcd"}, - {file = "aiohttp-3.10.9-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5f392ef50e22c31fa49b5a46af7f983fa3f118f3eccb8522063bee8bfa6755f8"}, - {file = "aiohttp-3.10.9-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d1f5c9169e26db6a61276008582d945405b8316aae2bb198220466e68114a0f5"}, - {file = "aiohttp-3.10.9-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8d9d10d10ec27c0d46ddaecc3c5598c4db9ce4e6398ca872cdde0525765caa2f"}, - {file = "aiohttp-3.10.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d97273a52d7f89a75b11ec386f786d3da7723d7efae3034b4dda79f6f093edc1"}, - {file = "aiohttp-3.10.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d271f770b52e32236d945911b2082f9318e90ff835d45224fa9e28374303f729"}, - {file = "aiohttp-3.10.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7003f33f5f7da1eb02f0446b0f8d2ccf57d253ca6c2e7a5732d25889da82b517"}, - {file = "aiohttp-3.10.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6e00c8a92e7663ed2be6fcc08a2997ff06ce73c8080cd0df10cc0321a3168d7"}, - {file = "aiohttp-3.10.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a61df62966ce6507aafab24e124e0c3a1cfbe23c59732987fc0fd0d71daa0b88"}, - {file = "aiohttp-3.10.9-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:60555211a006d26e1a389222e3fab8cd379f28e0fbf7472ee55b16c6c529e3a6"}, - {file = "aiohttp-3.10.9-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:d15a29424e96fad56dc2f3abed10a89c50c099f97d2416520c7a543e8fddf066"}, - {file = "aiohttp-3.10.9-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:a19caae0d670771ea7854ca30df76f676eb47e0fd9b2ee4392d44708f272122d"}, - {file = "aiohttp-3.10.9-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:99f9678bf0e2b1b695e8028fedac24ab6770937932eda695815d5a6618c37e04"}, - {file = "aiohttp-3.10.9-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:2914caa46054f3b5ff910468d686742ff8cff54b8a67319d75f5d5945fd0a13d"}, - {file = "aiohttp-3.10.9-cp38-cp38-win32.whl", hash = "sha256:0bc059ecbce835630e635879f5f480a742e130d9821fbe3d2f76610a6698ee25"}, - {file = "aiohttp-3.10.9-cp38-cp38-win_amd64.whl", hash = "sha256:e883b61b75ca6efc2541fcd52a5c8ccfe288b24d97e20ac08fdf343b8ac672ea"}, - {file = "aiohttp-3.10.9-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fcd546782d03181b0b1d20b43d612429a90a68779659ba8045114b867971ab71"}, - {file = "aiohttp-3.10.9-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:85711eec2d875cd88c7eb40e734c4ca6d9ae477d6f26bd2b5bb4f7f60e41b156"}, - {file = "aiohttp-3.10.9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:02d1d6610588bcd743fae827bd6f2e47e0d09b346f230824b4c6fb85c6065f9c"}, - {file = "aiohttp-3.10.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3668d0c2a4d23fb136a753eba42caa2c0abbd3d9c5c87ee150a716a16c6deec1"}, - {file = "aiohttp-3.10.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d7c071235a47d407b0e93aa6262b49422dbe48d7d8566e1158fecc91043dd948"}, - {file = "aiohttp-3.10.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ac74e794e3aee92ae8f571bfeaa103a141e409863a100ab63a253b1c53b707eb"}, - {file = "aiohttp-3.10.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bbf94d4a0447705b7775417ca8bb8086cc5482023a6e17cdc8f96d0b1b5aba6"}, - {file = "aiohttp-3.10.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cb0b2d5d51f96b6cc19e6ab46a7b684be23240426ae951dcdac9639ab111b45e"}, - {file = "aiohttp-3.10.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e83dfefb4f7d285c2d6a07a22268344a97d61579b3e0dce482a5be0251d672ab"}, - {file = "aiohttp-3.10.9-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f0a44bb40b6aaa4fb9a5c1ee07880570ecda2065433a96ccff409c9c20c1624a"}, - {file = "aiohttp-3.10.9-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c2b627d3c8982691b06d89d31093cee158c30629fdfebe705a91814d49b554f8"}, - {file = "aiohttp-3.10.9-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:03690541e4cc866eef79626cfa1ef4dd729c5c1408600c8cb9e12e1137eed6ab"}, - {file = "aiohttp-3.10.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ad3675c126f2a95bde637d162f8231cff6bc0bc9fbe31bd78075f9ff7921e322"}, - {file = "aiohttp-3.10.9-cp39-cp39-win32.whl", hash = "sha256:1321658f12b6caffafdc35cfba6c882cb014af86bef4e78c125e7e794dfb927b"}, - {file = "aiohttp-3.10.9-cp39-cp39-win_amd64.whl", hash = "sha256:9fdf5c839bf95fc67be5794c780419edb0dbef776edcfc6c2e5e2ffd5ee755fa"}, - {file = "aiohttp-3.10.9.tar.gz", hash = "sha256:143b0026a9dab07a05ad2dd9e46aa859bffdd6348ddc5967b42161168c24f857"}, + {file = "aiohttp-3.10.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:be7443669ae9c016b71f402e43208e13ddf00912f47f623ee5994e12fc7d4b3f"}, + {file = "aiohttp-3.10.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7b06b7843929e41a94ea09eb1ce3927865387e3e23ebe108e0d0d09b08d25be9"}, + {file = "aiohttp-3.10.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:333cf6cf8e65f6a1e06e9eb3e643a0c515bb850d470902274239fea02033e9a8"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:274cfa632350225ce3fdeb318c23b4a10ec25c0e2c880eff951a3842cf358ac1"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9e5e4a85bdb56d224f412d9c98ae4cbd032cc4f3161818f692cd81766eee65a"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b606353da03edcc71130b52388d25f9a30a126e04caef1fd637e31683033abd"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab5a5a0c7a7991d90446a198689c0535be89bbd6b410a1f9a66688f0880ec026"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:578a4b875af3e0daaf1ac6fa983d93e0bbfec3ead753b6d6f33d467100cdc67b"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8105fd8a890df77b76dd3054cddf01a879fc13e8af576805d667e0fa0224c35d"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3bcd391d083f636c06a68715e69467963d1f9600f85ef556ea82e9ef25f043f7"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fbc6264158392bad9df19537e872d476f7c57adf718944cc1e4495cbabf38e2a"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e48d5021a84d341bcaf95c8460b152cfbad770d28e5fe14a768988c461b821bc"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2609e9ab08474702cc67b7702dbb8a80e392c54613ebe80db7e8dbdb79837c68"}, + {file = "aiohttp-3.10.10-cp310-cp310-win32.whl", hash = "sha256:84afcdea18eda514c25bc68b9af2a2b1adea7c08899175a51fe7c4fb6d551257"}, + {file = "aiohttp-3.10.10-cp310-cp310-win_amd64.whl", hash = "sha256:9c72109213eb9d3874f7ac8c0c5fa90e072d678e117d9061c06e30c85b4cf0e6"}, + {file = "aiohttp-3.10.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c30a0eafc89d28e7f959281b58198a9fa5e99405f716c0289b7892ca345fe45f"}, + {file = "aiohttp-3.10.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:258c5dd01afc10015866114e210fb7365f0d02d9d059c3c3415382ab633fcbcb"}, + {file = "aiohttp-3.10.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:15ecd889a709b0080f02721255b3f80bb261c2293d3c748151274dfea93ac871"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3935f82f6f4a3820270842e90456ebad3af15810cf65932bd24da4463bc0a4c"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:413251f6fcf552a33c981c4709a6bba37b12710982fec8e558ae944bfb2abd38"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1720b4f14c78a3089562b8875b53e36b51c97c51adc53325a69b79b4b48ebcb"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:679abe5d3858b33c2cf74faec299fda60ea9de62916e8b67e625d65bf069a3b7"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:79019094f87c9fb44f8d769e41dbb664d6e8fcfd62f665ccce36762deaa0e911"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fe2fb38c2ed905a2582948e2de560675e9dfbee94c6d5ccdb1301c6d0a5bf092"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a3f00003de6eba42d6e94fabb4125600d6e484846dbf90ea8e48a800430cc142"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1bbb122c557a16fafc10354b9d99ebf2f2808a660d78202f10ba9d50786384b9"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30ca7c3b94708a9d7ae76ff281b2f47d8eaf2579cd05971b5dc681db8caac6e1"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:df9270660711670e68803107d55c2b5949c2e0f2e4896da176e1ecfc068b974a"}, + {file = "aiohttp-3.10.10-cp311-cp311-win32.whl", hash = "sha256:aafc8ee9b742ce75044ae9a4d3e60e3d918d15a4c2e08a6c3c3e38fa59b92d94"}, + {file = "aiohttp-3.10.10-cp311-cp311-win_amd64.whl", hash = "sha256:362f641f9071e5f3ee6f8e7d37d5ed0d95aae656adf4ef578313ee585b585959"}, + {file = "aiohttp-3.10.10-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:9294bbb581f92770e6ed5c19559e1e99255e4ca604a22c5c6397b2f9dd3ee42c"}, + {file = "aiohttp-3.10.10-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a8fa23fe62c436ccf23ff930149c047f060c7126eae3ccea005f0483f27b2e28"}, + {file = "aiohttp-3.10.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5c6a5b8c7926ba5d8545c7dd22961a107526562da31a7a32fa2456baf040939f"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:007ec22fbc573e5eb2fb7dec4198ef8f6bf2fe4ce20020798b2eb5d0abda6138"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9627cc1a10c8c409b5822a92d57a77f383b554463d1884008e051c32ab1b3742"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:50edbcad60d8f0e3eccc68da67f37268b5144ecc34d59f27a02f9611c1d4eec7"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a45d85cf20b5e0d0aa5a8dca27cce8eddef3292bc29d72dcad1641f4ed50aa16"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b00807e2605f16e1e198f33a53ce3c4523114059b0c09c337209ae55e3823a8"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f2d4324a98062be0525d16f768a03e0bbb3b9fe301ceee99611dc9a7953124e6"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:438cd072f75bb6612f2aca29f8bd7cdf6e35e8f160bc312e49fbecab77c99e3a"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:baa42524a82f75303f714108fea528ccacf0386af429b69fff141ffef1c534f9"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a7d8d14fe962153fc681f6366bdec33d4356f98a3e3567782aac1b6e0e40109a"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c1277cd707c465cd09572a774559a3cc7c7a28802eb3a2a9472588f062097205"}, + {file = "aiohttp-3.10.10-cp312-cp312-win32.whl", hash = "sha256:59bb3c54aa420521dc4ce3cc2c3fe2ad82adf7b09403fa1f48ae45c0cbde6628"}, + {file = "aiohttp-3.10.10-cp312-cp312-win_amd64.whl", hash = "sha256:0e1b370d8007c4ae31ee6db7f9a2fe801a42b146cec80a86766e7ad5c4a259cf"}, + {file = "aiohttp-3.10.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ad7593bb24b2ab09e65e8a1d385606f0f47c65b5a2ae6c551db67d6653e78c28"}, + {file = "aiohttp-3.10.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1eb89d3d29adaf533588f209768a9c02e44e4baf832b08118749c5fad191781d"}, + {file = "aiohttp-3.10.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3fe407bf93533a6fa82dece0e74dbcaaf5d684e5a51862887f9eaebe6372cd79"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aed5155f819873d23520919e16703fc8925e509abbb1a1491b0087d1cd969e"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f05e9727ce409358baa615dbeb9b969db94324a79b5a5cea45d39bdb01d82e6"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3dffb610a30d643983aeb185ce134f97f290f8935f0abccdd32c77bed9388b42"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa6658732517ddabe22c9036479eabce6036655ba87a0224c612e1ae6af2087e"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:741a46d58677d8c733175d7e5aa618d277cd9d880301a380fd296975a9cdd7bc"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e00e3505cd80440f6c98c6d69269dcc2a119f86ad0a9fd70bccc59504bebd68a"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ffe595f10566f8276b76dc3a11ae4bb7eba1aac8ddd75811736a15b0d5311414"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bdfcf6443637c148c4e1a20c48c566aa694fa5e288d34b20fcdc58507882fed3"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d183cf9c797a5291e8301790ed6d053480ed94070637bfaad914dd38b0981f67"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:77abf6665ae54000b98b3c742bc6ea1d1fb31c394bcabf8b5d2c1ac3ebfe7f3b"}, + {file = "aiohttp-3.10.10-cp313-cp313-win32.whl", hash = "sha256:4470c73c12cd9109db8277287d11f9dd98f77fc54155fc71a7738a83ffcc8ea8"}, + {file = "aiohttp-3.10.10-cp313-cp313-win_amd64.whl", hash = "sha256:486f7aabfa292719a2753c016cc3a8f8172965cabb3ea2e7f7436c7f5a22a151"}, + {file = "aiohttp-3.10.10-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:1b66ccafef7336a1e1f0e389901f60c1d920102315a56df85e49552308fc0486"}, + {file = "aiohttp-3.10.10-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:acd48d5b80ee80f9432a165c0ac8cbf9253eaddb6113269a5e18699b33958dbb"}, + {file = "aiohttp-3.10.10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3455522392fb15ff549d92fbf4b73b559d5e43dc522588f7eb3e54c3f38beee7"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45c3b868724137f713a38376fef8120c166d1eadd50da1855c112fe97954aed8"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:da1dee8948d2137bb51fbb8a53cce6b1bcc86003c6b42565f008438b806cccd8"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5ce2ce7c997e1971b7184ee37deb6ea9922ef5163c6ee5aa3c274b05f9e12fa"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28529e08fde6f12eba8677f5a8608500ed33c086f974de68cc65ab218713a59d"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f7db54c7914cc99d901d93a34704833568d86c20925b2762f9fa779f9cd2e70f"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:03a42ac7895406220124c88911ebee31ba8b2d24c98507f4a8bf826b2937c7f2"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:7e338c0523d024fad378b376a79faff37fafb3c001872a618cde1d322400a572"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:038f514fe39e235e9fef6717fbf944057bfa24f9b3db9ee551a7ecf584b5b480"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:64f6c17757251e2b8d885d728b6433d9d970573586a78b78ba8929b0f41d045a"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:93429602396f3383a797a2a70e5f1de5df8e35535d7806c9f91df06f297e109b"}, + {file = "aiohttp-3.10.10-cp38-cp38-win32.whl", hash = "sha256:c823bc3971c44ab93e611ab1a46b1eafeae474c0c844aff4b7474287b75fe49c"}, + {file = "aiohttp-3.10.10-cp38-cp38-win_amd64.whl", hash = "sha256:54ca74df1be3c7ca1cf7f4c971c79c2daf48d9aa65dea1a662ae18926f5bc8ce"}, + {file = "aiohttp-3.10.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:01948b1d570f83ee7bbf5a60ea2375a89dfb09fd419170e7f5af029510033d24"}, + {file = "aiohttp-3.10.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9fc1500fd2a952c5c8e3b29aaf7e3cc6e27e9cfc0a8819b3bce48cc1b849e4cc"}, + {file = "aiohttp-3.10.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f614ab0c76397661b90b6851a030004dac502e48260ea10f2441abd2207fbcc7"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00819de9e45d42584bed046314c40ea7e9aea95411b38971082cad449392b08c"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05646ebe6b94cc93407b3bf34b9eb26c20722384d068eb7339de802154d61bc5"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:998f3bd3cfc95e9424a6acd7840cbdd39e45bc09ef87533c006f94ac47296090"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9010c31cd6fa59438da4e58a7f19e4753f7f264300cd152e7f90d4602449762"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ea7ffc6d6d6f8a11e6f40091a1040995cdff02cfc9ba4c2f30a516cb2633554"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ef9c33cc5cbca35808f6c74be11eb7f5f6b14d2311be84a15b594bd3e58b5527"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ce0cdc074d540265bfeb31336e678b4e37316849d13b308607efa527e981f5c2"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:597a079284b7ee65ee102bc3a6ea226a37d2b96d0418cc9047490f231dc09fe8"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:7789050d9e5d0c309c706953e5e8876e38662d57d45f936902e176d19f1c58ab"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e7f8b04d83483577fd9200461b057c9f14ced334dcb053090cea1da9c8321a91"}, + {file = "aiohttp-3.10.10-cp39-cp39-win32.whl", hash = "sha256:c02a30b904282777d872266b87b20ed8cc0d1501855e27f831320f471d54d983"}, + {file = "aiohttp-3.10.10-cp39-cp39-win_amd64.whl", hash = "sha256:edfe3341033a6b53a5c522c802deb2079eee5cbfbb0af032a55064bd65c73a23"}, + {file = "aiohttp-3.10.10.tar.gz", hash = "sha256:0631dd7c9f0822cc61c88586ca76d5b5ada26538097d0f1df510b082bad3411a"}, ] [package.dependencies] @@ -139,13 +139,13 @@ frozenlist = ">=1.1.0" [[package]] name = "airbyte-cdk" -version = "5.11.1" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.11.1-py3-none-any.whl", hash = "sha256:efddee85179128cb7d65b11a9a4aba353ea5b01daaa56fc3069d12ce156d2857"}, - {file = "airbyte_cdk-5.11.1.tar.gz", hash = "sha256:0cc1cdc1d50909bbb2791a9c389c0f3db32474502addf65eb745d87af7d36fd9"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -175,10 +175,12 @@ requests = "*" requests_cache = "*" serpyco-rs = ">=1.10.2,<2.0.0" wcmatch = "8.4" +xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -205,13 +207,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -222,7 +224,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -428,101 +430,116 @@ pycparser = "*" [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] @@ -706,88 +723,103 @@ python-dateutil = ">=2.7" [[package]] name = "frozenlist" -version = "1.4.1" +version = "1.5.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = false python-versions = ">=3.8" files = [ - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, - {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, - {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, - {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, - {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, - {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, - {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, - {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, - {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, - {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, - {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, - {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, - {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, ] [[package]] @@ -1005,13 +1037,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.132" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.132-py3-none-any.whl", hash = "sha256:2320894203675c1c292b818cbecf68b69e47a9f7814d4e950237d1faaafd5dee"}, - {file = "langsmith-0.1.132.tar.gz", hash = "sha256:007b8fac469138abdba89db931900a26c5d316640e27ff4660d28c92a766aae1"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -1023,72 +1055,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.0" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:380faf314c3c84c1682ca672e6280c6c59e92d0bc13dc71758ffa2de3cd4e252"}, - {file = "MarkupSafe-3.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1ee9790be6f62121c4c58bbced387b0965ab7bffeecb4e17cc42ef290784e363"}, - {file = "MarkupSafe-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ddf5cb8e9c00d9bf8b0c75949fb3ff9ea2096ba531693e2e87336d197fdb908"}, - {file = "MarkupSafe-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b36473a2d3e882d1873ea906ce54408b9588dc2c65989664e6e7f5a2de353d7"}, - {file = "MarkupSafe-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dba0f83119b9514bc37272ad012f0cc03f0805cc6a2bea7244e19250ac8ff29f"}, - {file = "MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:409535e0521c4630d5b5a1bf284e9d3c76d2fc2f153ebb12cf3827797798cc99"}, - {file = "MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64a7c7856c3a409011139b17d137c2924df4318dab91ee0530800819617c4381"}, - {file = "MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4deea1d9169578917d1f35cdb581bc7bab56a7e8c5be2633bd1b9549c3c22a01"}, - {file = "MarkupSafe-3.0.0-cp310-cp310-win32.whl", hash = "sha256:3cd0bba31d484fe9b9d77698ddb67c978704603dc10cdc905512af308cfcca6b"}, - {file = "MarkupSafe-3.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:4ca04c60006867610a06575b46941ae616b19da0adc85b9f8f3d9cbd7a3da385"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e64b390a306f9e849ee809f92af6a52cda41741c914358e0e9f8499d03741526"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7c524203207f5b569df06c96dafdc337228921ee8c3cc5f6e891d024c6595352"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c409691696bec2b5e5c9efd9593c99025bf2f317380bf0d993ee0213516d908a"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64f7d04410be600aa5ec0626d73d43e68a51c86500ce12917e10fd013e258df5"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:105ada43a61af22acb8774514c51900dc820c481cc5ba53f17c09d294d9c07ca"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a5fd5500d4e4f7cc88d8c0f2e45126c4307ed31e08f8ec521474f2fd99d35ac3"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:25396abd52b16900932e05b7104bcdc640a4d96c914f39c3b984e5a17b01fba0"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3efde9a8c56c3b6e5f3fa4baea828f8184970c7c78480fedb620d804b1c31e5c"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-win32.whl", hash = "sha256:12ddac720b8965332d36196f6f83477c6351ba6a25d4aff91e30708c729350d7"}, - {file = "MarkupSafe-3.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:658fdf6022740896c403d45148bf0c36978c6b48c9ef8b1f8d0c7a11b6cdea86"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d261ec38b8a99a39b62e0119ed47fe3b62f7691c500bc1e815265adc016438c1"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e363440c8534bf2f2ef1b8fdc02037eb5fff8fce2a558519b22d6a3a38b3ec5e"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7835de4c56066e096407a1852e5561f6033786dd987fa90dc384e45b9bd21295"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6cc46a27d904c9be5732029769acf4b0af69345172ed1ef6d4db0c023ff603b"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f0411641d31aa6f7f0cc13f0f18b63b8dc08da5f3a7505972a42ab059f479ba3"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b2a7afd24d408b907672015555bc10be2382e6c5f62a488e2d452da670bbd389"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c8ab7efeff1884c5da8e18f743b667215300e09043820d11723718de0b7db934"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8219e2207f6c188d15614ea043636c2b36d2d79bf853639c124a179412325a13"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-win32.whl", hash = "sha256:59420b5a9a5d3fee483a32adb56d7369ae0d630798da056001be1e9f674f3aa6"}, - {file = "MarkupSafe-3.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:7ed789d0f7f11fcf118cf0acb378743dfdd4215d7f7d18837c88171405c9a452"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:27d6a73682b99568916c54a4bfced40e7d871ba685b580ea04bbd2e405dfd4c5"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:494a64efc535e147fcc713dba58eecfce3a79f1e93ebe81995b387f5cd9bc2e1"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5243044a927e8a6bb28517838662a019cd7f73d7f106bbb37ab5e7fa8451a92"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63dae84964a9a3d2610808cee038f435d9a111620c37ccf872c2fcaeca6865b3"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dcbee57fedc9b2182c54ffc1c5eed316c3da8bbfeda8009e1b5d7220199d15da"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f846fd7c241e5bd4161e2a483663eb66e4d8e12130fcdc052f310f388f1d61c6"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:678fbceb202382aae42c1f0cd9f56b776bc20a58ae5b553ee1fe6b802983a1d6"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:bd9b8e458e2bab52f9ad3ab5dc8b689a3c84b12b2a2f64cd9a0dfe209fb6b42f"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-win32.whl", hash = "sha256:1fd02f47596e00a372f5b4af2b4c45f528bade65c66dfcbc6e1ea1bfda758e98"}, - {file = "MarkupSafe-3.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:b94bec9eda10111ec7102ef909eca4f3c2df979643924bfe58375f560713a7d1"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:509c424069dd037d078925b6815fc56b7271f3aaec471e55e6fa513b0a80d2aa"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:81be2c0084d8c69e97e3c5d73ce9e2a6e523556f2a19c4e195c09d499be2f808"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b43ac1eb9f91e0c14aac1d2ef0f76bc7b9ceea51de47536f61268191adf52ad7"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b231255770723f1e125d63c14269bcd8b8136ecfb620b9a18c0297e046d0736"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c182d45600556917f811aa019d834a89fe4b6f6255da2fd0bdcf80e970f95918"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9f91c90f8f3bf436f81c12eeb4d79f9ddd263c71125e6ad71341906832a34386"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:a7171d2b869e9be238ea318c196baf58fbf272704e9c1cd4be8c380eea963342"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:cb244adf2499aa37d5dc43431990c7f0b632d841af66a51d22bd89c437b60264"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-win32.whl", hash = "sha256:96e3ed550600185d34429477f1176cedea8293fa40e47fe37a05751bcb64c997"}, - {file = "MarkupSafe-3.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:1d151b9cf3307e259b749125a5a08c030ba15a8f1d567ca5bfb0e92f35e761f5"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:23efb2be7221105c8eb0e905433414d2439cb0a8c5d5ca081c1c72acef0f5613"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:81ee9c967956b9ea39b3a5270b7cb1740928d205b0dc72629164ce621b4debf9"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5509a8373fed30b978557890a226c3d30569746c565b9daba69df80c160365a5"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1c13c6c908811f867a8e9e66efb2d6c03d1cdd83e92788fe97f693c457dc44f"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d7e63d1977d3806ce0a1a3e0099b089f61abdede5238ca6a3f3bf8877b46d095"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d2c099be5274847d606574234e494f23a359e829ba337ea9037c3a72b0851942"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e042ccf8fe5bf8b6a4b38b3f7d618eb10ea20402b0c9f4add9293408de447974"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:98fb3a2bf525ad66db96745707b93ba0f78928b7a1cb2f1cb4b143bc7e2ba3b3"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-win32.whl", hash = "sha256:a80c6740e1bfbe50cea7cbf74f48823bb57bd59d914ee22ff8a81963b08e62d2"}, - {file = "MarkupSafe-3.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:5d207ff5cceef77796f8aacd44263266248cf1fbc601441524d7835613f8abec"}, - {file = "markupsafe-3.0.0.tar.gz", hash = "sha256:03ff62dea2fef3eadf2f1853bc6332bcb0458d9608b11dfb1cd5aeda1c178ea6"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -1284,68 +1316,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1496,6 +1529,113 @@ files = [ dev = ["pre-commit", "tox"] testing = ["pytest", "pytest-benchmark"] +[[package]] +name = "propcache" +version = "0.2.0" +description = "Accelerated property cache" +optional = false +python-versions = ">=3.8" +files = [ + {file = "propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c5869b8fd70b81835a6f187c5fdbe67917a04d7e52b6e7cc4e5fe39d55c39d58"}, + {file = "propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:952e0d9d07609d9c5be361f33b0d6d650cd2bae393aabb11d9b719364521984b"}, + {file = "propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:33ac8f098df0585c0b53009f039dfd913b38c1d2edafed0cedcc0c32a05aa110"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97e48e8875e6c13909c800fa344cd54cc4b2b0db1d5f911f840458a500fde2c2"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:388f3217649d6d59292b722d940d4d2e1e6a7003259eb835724092a1cca0203a"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f571aea50ba5623c308aa146eb650eebf7dbe0fd8c5d946e28343cb3b5aad577"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3dfafb44f7bb35c0c06eda6b2ab4bfd58f02729e7c4045e179f9a861b07c9850"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3ebe9a75be7ab0b7da2464a77bb27febcb4fab46a34f9288f39d74833db7f61"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d2f0d0f976985f85dfb5f3d685697ef769faa6b71993b46b295cdbbd6be8cc37"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:a3dc1a4b165283bd865e8f8cb5f0c64c05001e0718ed06250d8cac9bec115b48"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9e0f07b42d2a50c7dd2d8675d50f7343d998c64008f1da5fef888396b7f84630"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e63e3e1e0271f374ed489ff5ee73d4b6e7c60710e1f76af5f0e1a6117cd26394"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:56bb5c98f058a41bb58eead194b4db8c05b088c93d94d5161728515bd52b052b"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7665f04d0c7f26ff8bb534e1c65068409bf4687aa2534faf7104d7182debb336"}, + {file = "propcache-0.2.0-cp310-cp310-win32.whl", hash = "sha256:7cf18abf9764746b9c8704774d8b06714bcb0a63641518a3a89c7f85cc02c2ad"}, + {file = "propcache-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:cfac69017ef97db2438efb854edf24f5a29fd09a536ff3a992b75990720cdc99"}, + {file = "propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:63f13bf09cc3336eb04a837490b8f332e0db41da66995c9fd1ba04552e516354"}, + {file = "propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608cce1da6f2672a56b24a015b42db4ac612ee709f3d29f27a00c943d9e851de"}, + {file = "propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:466c219deee4536fbc83c08d09115249db301550625c7fef1c5563a584c9bc87"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc2db02409338bf36590aa985a461b2c96fce91f8e7e0f14c50c5fcc4f229016"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a6ed8db0a556343d566a5c124ee483ae113acc9a557a807d439bcecc44e7dfbb"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:91997d9cb4a325b60d4e3f20967f8eb08dfcb32b22554d5ef78e6fd1dda743a2"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c7dde9e533c0a49d802b4f3f218fa9ad0a1ce21f2c2eb80d5216565202acab4"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffcad6c564fe6b9b8916c1aefbb37a362deebf9394bd2974e9d84232e3e08504"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97a58a28bcf63284e8b4d7b460cbee1edaab24634e82059c7b8c09e65284f178"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:945db8ee295d3af9dbdbb698cce9bbc5c59b5c3fe328bbc4387f59a8a35f998d"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:39e104da444a34830751715f45ef9fc537475ba21b7f1f5b0f4d71a3b60d7fe2"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c5ecca8f9bab618340c8e848d340baf68bcd8ad90a8ecd7a4524a81c1764b3db"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:c436130cc779806bdf5d5fae0d848713105472b8566b75ff70048c47d3961c5b"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:191db28dc6dcd29d1a3e063c3be0b40688ed76434622c53a284e5427565bbd9b"}, + {file = "propcache-0.2.0-cp311-cp311-win32.whl", hash = "sha256:5f2564ec89058ee7c7989a7b719115bdfe2a2fb8e7a4543b8d1c0cc4cf6478c1"}, + {file = "propcache-0.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:6e2e54267980349b723cff366d1e29b138b9a60fa376664a157a342689553f71"}, + {file = "propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:2ee7606193fb267be4b2e3b32714f2d58cad27217638db98a60f9efb5efeccc2"}, + {file = "propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:91ee8fc02ca52e24bcb77b234f22afc03288e1dafbb1f88fe24db308910c4ac7"}, + {file = "propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2e900bad2a8456d00a113cad8c13343f3b1f327534e3589acc2219729237a2e8"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f52a68c21363c45297aca15561812d542f8fc683c85201df0bebe209e349f793"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e41d67757ff4fbc8ef2af99b338bfb955010444b92929e9e55a6d4dcc3c4f09"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a64e32f8bd94c105cc27f42d3b658902b5bcc947ece3c8fe7bc1b05982f60e89"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:55346705687dbd7ef0d77883ab4f6fabc48232f587925bdaf95219bae072491e"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00181262b17e517df2cd85656fcd6b4e70946fe62cd625b9d74ac9977b64d8d9"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6994984550eaf25dd7fc7bd1b700ff45c894149341725bb4edc67f0ffa94efa4"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:56295eb1e5f3aecd516d91b00cfd8bf3a13991de5a479df9e27dd569ea23959c"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:439e76255daa0f8151d3cb325f6dd4a3e93043e6403e6491813bcaaaa8733887"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f6475a1b2ecb310c98c28d271a30df74f9dd436ee46d09236a6b750a7599ce57"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3444cdba6628accf384e349014084b1cacd866fbb88433cd9d279d90a54e0b23"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4a9d9b4d0a9b38d1c391bb4ad24aa65f306c6f01b512e10a8a34a2dc5675d348"}, + {file = "propcache-0.2.0-cp312-cp312-win32.whl", hash = "sha256:69d3a98eebae99a420d4b28756c8ce6ea5a29291baf2dc9ff9414b42676f61d5"}, + {file = "propcache-0.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:ad9c9b99b05f163109466638bd30ada1722abb01bbb85c739c50b6dc11f92dc3"}, + {file = "propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ecddc221a077a8132cf7c747d5352a15ed763b674c0448d811f408bf803d9ad7"}, + {file = "propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0e53cb83fdd61cbd67202735e6a6687a7b491c8742dfc39c9e01e80354956763"}, + {file = "propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92fe151145a990c22cbccf9ae15cae8ae9eddabfc949a219c9f667877e40853d"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6a21ef516d36909931a2967621eecb256018aeb11fc48656e3257e73e2e247a"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f88a4095e913f98988f5b338c1d4d5d07dbb0b6bad19892fd447484e483ba6b"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a5b3bb545ead161be780ee85a2b54fdf7092815995661947812dde94a40f6fb"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67aeb72e0f482709991aa91345a831d0b707d16b0257e8ef88a2ad246a7280bf"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c997f8c44ec9b9b0bcbf2d422cc00a1d9b9c681f56efa6ca149a941e5560da2"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:2a66df3d4992bc1d725b9aa803e8c5a66c010c65c741ad901e260ece77f58d2f"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:3ebbcf2a07621f29638799828b8d8668c421bfb94c6cb04269130d8de4fb7136"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1235c01ddaa80da8235741e80815ce381c5267f96cc49b1477fdcf8c047ef325"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3947483a381259c06921612550867b37d22e1df6d6d7e8361264b6d037595f44"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d5bed7f9805cc29c780f3aee05de3262ee7ce1f47083cfe9f77471e9d6777e83"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e4a91d44379f45f5e540971d41e4626dacd7f01004826a18cb048e7da7e96544"}, + {file = "propcache-0.2.0-cp313-cp313-win32.whl", hash = "sha256:f902804113e032e2cdf8c71015651c97af6418363bea8d78dc0911d56c335032"}, + {file = "propcache-0.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:8f188cfcc64fb1266f4684206c9de0e80f54622c3f22a910cbd200478aeae61e"}, + {file = "propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:53d1bd3f979ed529f0805dd35ddaca330f80a9a6d90bc0121d2ff398f8ed8861"}, + {file = "propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:83928404adf8fb3d26793665633ea79b7361efa0287dfbd372a7e74311d51ee6"}, + {file = "propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:77a86c261679ea5f3896ec060be9dc8e365788248cc1e049632a1be682442063"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:218db2a3c297a3768c11a34812e63b3ac1c3234c3a086def9c0fee50d35add1f"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7735e82e3498c27bcb2d17cb65d62c14f1100b71723b68362872bca7d0913d90"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:20a617c776f520c3875cf4511e0d1db847a076d720714ae35ffe0df3e440be68"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67b69535c870670c9f9b14a75d28baa32221d06f6b6fa6f77a0a13c5a7b0a5b9"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4569158070180c3855e9c0791c56be3ceeb192defa2cdf6a3f39e54319e56b89"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:db47514ffdbd91ccdc7e6f8407aac4ee94cc871b15b577c1c324236b013ddd04"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:2a60ad3e2553a74168d275a0ef35e8c0a965448ffbc3b300ab3a5bb9956c2162"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:662dd62358bdeaca0aee5761de8727cfd6861432e3bb828dc2a693aa0471a563"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:25a1f88b471b3bc911d18b935ecb7115dff3a192b6fef46f0bfaf71ff4f12418"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:f60f0ac7005b9f5a6091009b09a419ace1610e163fa5deaba5ce3484341840e7"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:74acd6e291f885678631b7ebc85d2d4aec458dd849b8c841b57ef04047833bed"}, + {file = "propcache-0.2.0-cp38-cp38-win32.whl", hash = "sha256:d9b6ddac6408194e934002a69bcaadbc88c10b5f38fb9307779d1c629181815d"}, + {file = "propcache-0.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:676135dcf3262c9c5081cc8f19ad55c8a64e3f7282a21266d05544450bffc3a5"}, + {file = "propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:25c8d773a62ce0451b020c7b29a35cfbc05de8b291163a7a0f3b7904f27253e6"}, + {file = "propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:375a12d7556d462dc64d70475a9ee5982465fbb3d2b364f16b86ba9135793638"}, + {file = "propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1ec43d76b9677637a89d6ab86e1fef70d739217fefa208c65352ecf0282be957"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f45eec587dafd4b2d41ac189c2156461ebd0c1082d2fe7013571598abb8505d1"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc092ba439d91df90aea38168e11f75c655880c12782facf5cf9c00f3d42b562"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa1076244f54bb76e65e22cb6910365779d5c3d71d1f18b275f1dfc7b0d71b4d"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:682a7c79a2fbf40f5dbb1eb6bfe2cd865376deeac65acf9beb607505dced9e12"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e40876731f99b6f3c897b66b803c9e1c07a989b366c6b5b475fafd1f7ba3fb8"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:363ea8cd3c5cb6679f1c2f5f1f9669587361c062e4899fce56758efa928728f8"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:140fbf08ab3588b3468932974a9331aff43c0ab8a2ec2c608b6d7d1756dbb6cb"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e70fac33e8b4ac63dfc4c956fd7d85a0b1139adcfc0d964ce288b7c527537fea"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b33d7a286c0dc1a15f5fc864cc48ae92a846df287ceac2dd499926c3801054a6"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:f6d5749fdd33d90e34c2efb174c7e236829147a2713334d708746e94c4bde40d"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22aa8f2272d81d9317ff5756bb108021a056805ce63dd3630e27d042c8092798"}, + {file = "propcache-0.2.0-cp39-cp39-win32.whl", hash = "sha256:73e4b40ea0eda421b115248d7e79b59214411109a5bc47d0d48e4c73e3b8fcf9"}, + {file = "propcache-0.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:9517d5e9e0731957468c29dbfd0f976736a0e55afaea843726e887f36fe017df"}, + {file = "propcache-0.2.0-py3-none-any.whl", hash = "sha256:2ccc28197af5313706511fab3a8b66dcd6da067a1331372c82ea1cb74285e036"}, + {file = "propcache-0.2.0.tar.gz", hash = "sha256:df81779732feb9d01e5d513fad0122efb3d53bbc75f61b2a4f29a020bc985e70"}, +] + [[package]] name = "pycountry" version = "24.6.1" @@ -2090,13 +2230,13 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -2158,13 +2298,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] @@ -2322,110 +2462,112 @@ files = [ {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, ] +[[package]] +name = "xmltodict" +version = "0.13.0" +description = "Makes working with XML feel like you are working with JSON" +optional = false +python-versions = ">=3.4" +files = [ + {file = "xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852"}, + {file = "xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56"}, +] + [[package]] name = "yarl" -version = "1.13.1" +version = "1.16.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.13.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:82e692fb325013a18a5b73a4fed5a1edaa7c58144dc67ad9ef3d604eccd451ad"}, - {file = "yarl-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df4e82e68f43a07735ae70a2d84c0353e58e20add20ec0af611f32cd5ba43fb4"}, - {file = "yarl-1.13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec9dd328016d8d25702a24ee274932aebf6be9787ed1c28d021945d264235b3c"}, - {file = "yarl-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5820bd4178e6a639b3ef1db8b18500a82ceab6d8b89309e121a6859f56585b05"}, - {file = "yarl-1.13.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86c438ce920e089c8c2388c7dcc8ab30dfe13c09b8af3d306bcabb46a053d6f7"}, - {file = "yarl-1.13.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3de86547c820e4f4da4606d1c8ab5765dd633189791f15247706a2eeabc783ae"}, - {file = "yarl-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca53632007c69ddcdefe1e8cbc3920dd88825e618153795b57e6ebcc92e752a"}, - {file = "yarl-1.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4ee1d240b84e2f213565f0ec08caef27a0e657d4c42859809155cf3a29d1735"}, - {file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c49f3e379177f4477f929097f7ed4b0622a586b0aa40c07ac8c0f8e40659a1ac"}, - {file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5c5e32fef09ce101fe14acd0f498232b5710effe13abac14cd95de9c274e689e"}, - {file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ab9524e45ee809a083338a749af3b53cc7efec458c3ad084361c1dbf7aaf82a2"}, - {file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:b1481c048fe787f65e34cb06f7d6824376d5d99f1231eae4778bbe5c3831076d"}, - {file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:31497aefd68036d8e31bfbacef915826ca2e741dbb97a8d6c7eac66deda3b606"}, - {file = "yarl-1.13.1-cp310-cp310-win32.whl", hash = "sha256:1fa56f34b2236f5192cb5fceba7bbb09620e5337e0b6dfe2ea0ddbd19dd5b154"}, - {file = "yarl-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:1bbb418f46c7f7355084833051701b2301092e4611d9e392360c3ba2e3e69f88"}, - {file = "yarl-1.13.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:216a6785f296169ed52cd7dcdc2612f82c20f8c9634bf7446327f50398732a51"}, - {file = "yarl-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:40c6e73c03a6befb85b72da213638b8aaa80fe4136ec8691560cf98b11b8ae6e"}, - {file = "yarl-1.13.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2430cf996113abe5aee387d39ee19529327205cda975d2b82c0e7e96e5fdabdc"}, - {file = "yarl-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fb4134cc6e005b99fa29dbc86f1ea0a298440ab6b07c6b3ee09232a3b48f495"}, - {file = "yarl-1.13.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:309c104ecf67626c033845b860d31594a41343766a46fa58c3309c538a1e22b2"}, - {file = "yarl-1.13.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f90575e9fe3aae2c1e686393a9689c724cd00045275407f71771ae5d690ccf38"}, - {file = "yarl-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d2e1626be8712333a9f71270366f4a132f476ffbe83b689dd6dc0d114796c74"}, - {file = "yarl-1.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b66c87da3c6da8f8e8b648878903ca54589038a0b1e08dde2c86d9cd92d4ac9"}, - {file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cf1ad338620249f8dd6d4b6a91a69d1f265387df3697ad5dc996305cf6c26fb2"}, - {file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:9915300fe5a0aa663c01363db37e4ae8e7c15996ebe2c6cce995e7033ff6457f"}, - {file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:703b0f584fcf157ef87816a3c0ff868e8c9f3c370009a8b23b56255885528f10"}, - {file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:1d8e3ca29f643dd121f264a7c89f329f0fcb2e4461833f02de6e39fef80f89da"}, - {file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7055bbade838d68af73aea13f8c86588e4bcc00c2235b4b6d6edb0dbd174e246"}, - {file = "yarl-1.13.1-cp311-cp311-win32.whl", hash = "sha256:a3442c31c11088e462d44a644a454d48110f0588de830921fd201060ff19612a"}, - {file = "yarl-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:81bad32c8f8b5897c909bf3468bf601f1b855d12f53b6af0271963ee67fff0d2"}, - {file = "yarl-1.13.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f452cc1436151387d3d50533523291d5f77c6bc7913c116eb985304abdbd9ec9"}, - {file = "yarl-1.13.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9cec42a20eae8bebf81e9ce23fb0d0c729fc54cf00643eb251ce7c0215ad49fe"}, - {file = "yarl-1.13.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d959fe96e5c2712c1876d69af0507d98f0b0e8d81bee14cfb3f6737470205419"}, - {file = "yarl-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8c837ab90c455f3ea8e68bee143472ee87828bff19ba19776e16ff961425b57"}, - {file = "yarl-1.13.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94a993f976cdcb2dc1b855d8b89b792893220db8862d1a619efa7451817c836b"}, - {file = "yarl-1.13.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b2442a415a5f4c55ced0fade7b72123210d579f7d950e0b5527fc598866e62c"}, - {file = "yarl-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3fdbf0418489525231723cdb6c79e7738b3cbacbaed2b750cb033e4ea208f220"}, - {file = "yarl-1.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b7f6e699304717fdc265a7e1922561b02a93ceffdaefdc877acaf9b9f3080b8"}, - {file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bcd5bf4132e6a8d3eb54b8d56885f3d3a38ecd7ecae8426ecf7d9673b270de43"}, - {file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:2a93a4557f7fc74a38ca5a404abb443a242217b91cd0c4840b1ebedaad8919d4"}, - {file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:22b739f99c7e4787922903f27a892744189482125cc7b95b747f04dd5c83aa9f"}, - {file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:2db874dd1d22d4c2c657807562411ffdfabec38ce4c5ce48b4c654be552759dc"}, - {file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4feaaa4742517eaceafcbe74595ed335a494c84634d33961214b278126ec1485"}, - {file = "yarl-1.13.1-cp312-cp312-win32.whl", hash = "sha256:bbf9c2a589be7414ac4a534d54e4517d03f1cbb142c0041191b729c2fa23f320"}, - {file = "yarl-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:d07b52c8c450f9366c34aa205754355e933922c79135125541daae6cbf31c799"}, - {file = "yarl-1.13.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:95c6737f28069153c399d875317f226bbdea939fd48a6349a3b03da6829fb550"}, - {file = "yarl-1.13.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:cd66152561632ed4b2a9192e7f8e5a1d41e28f58120b4761622e0355f0fe034c"}, - {file = "yarl-1.13.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6a2acde25be0cf9be23a8f6cbd31734536a264723fca860af3ae5e89d771cd71"}, - {file = "yarl-1.13.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a18595e6a2ee0826bf7dfdee823b6ab55c9b70e8f80f8b77c37e694288f5de1"}, - {file = "yarl-1.13.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a31d21089894942f7d9a8df166b495101b7258ff11ae0abec58e32daf8088813"}, - {file = "yarl-1.13.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45f209fb4bbfe8630e3d2e2052535ca5b53d4ce2d2026bed4d0637b0416830da"}, - {file = "yarl-1.13.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f722f30366474a99745533cc4015b1781ee54b08de73260b2bbe13316079851"}, - {file = "yarl-1.13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3bf60444269345d712838bb11cc4eadaf51ff1a364ae39ce87a5ca8ad3bb2c8"}, - {file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:942c80a832a79c3707cca46bd12ab8aa58fddb34b1626d42b05aa8f0bcefc206"}, - {file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:44b07e1690f010c3c01d353b5790ec73b2f59b4eae5b0000593199766b3f7a5c"}, - {file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:396e59b8de7e4d59ff5507fb4322d2329865b909f29a7ed7ca37e63ade7f835c"}, - {file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3bb83a0f12701c0b91112a11148b5217617982e1e466069d0555be9b372f2734"}, - {file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c92b89bffc660f1274779cb6fbb290ec1f90d6dfe14492523a0667f10170de26"}, - {file = "yarl-1.13.1-cp313-cp313-win32.whl", hash = "sha256:269c201bbc01d2cbba5b86997a1e0f73ba5e2f471cfa6e226bcaa7fd664b598d"}, - {file = "yarl-1.13.1-cp313-cp313-win_amd64.whl", hash = "sha256:1d0828e17fa701b557c6eaed5edbd9098eb62d8838344486248489ff233998b8"}, - {file = "yarl-1.13.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:8be8cdfe20787e6a5fcbd010f8066227e2bb9058331a4eccddec6c0db2bb85b2"}, - {file = "yarl-1.13.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:08d7148ff11cb8e886d86dadbfd2e466a76d5dd38c7ea8ebd9b0e07946e76e4b"}, - {file = "yarl-1.13.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4afdf84610ca44dcffe8b6c22c68f309aff96be55f5ea2fa31c0c225d6b83e23"}, - {file = "yarl-1.13.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0d12fe78dcf60efa205e9a63f395b5d343e801cf31e5e1dda0d2c1fb618073d"}, - {file = "yarl-1.13.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:298c1eecfd3257aa16c0cb0bdffb54411e3e831351cd69e6b0739be16b1bdaa8"}, - {file = "yarl-1.13.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c14c16831b565707149c742d87a6203eb5597f4329278446d5c0ae7a1a43928e"}, - {file = "yarl-1.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a9bacedbb99685a75ad033fd4de37129449e69808e50e08034034c0bf063f99"}, - {file = "yarl-1.13.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:658e8449b84b92a4373f99305de042b6bd0d19bf2080c093881e0516557474a5"}, - {file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:373f16f38721c680316a6a00ae21cc178e3a8ef43c0227f88356a24c5193abd6"}, - {file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:45d23c4668d4925688e2ea251b53f36a498e9ea860913ce43b52d9605d3d8177"}, - {file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f7917697bcaa3bc3e83db91aa3a0e448bf5cde43c84b7fc1ae2427d2417c0224"}, - {file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:5989a38ba1281e43e4663931a53fbf356f78a0325251fd6af09dd03b1d676a09"}, - {file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:11b3ca8b42a024513adce810385fcabdd682772411d95bbbda3b9ed1a4257644"}, - {file = "yarl-1.13.1-cp38-cp38-win32.whl", hash = "sha256:dcaef817e13eafa547cdfdc5284fe77970b891f731266545aae08d6cce52161e"}, - {file = "yarl-1.13.1-cp38-cp38-win_amd64.whl", hash = "sha256:7addd26594e588503bdef03908fc207206adac5bd90b6d4bc3e3cf33a829f57d"}, - {file = "yarl-1.13.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a0ae6637b173d0c40b9c1462e12a7a2000a71a3258fa88756a34c7d38926911c"}, - {file = "yarl-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:576365c9f7469e1f6124d67b001639b77113cfd05e85ce0310f5f318fd02fe85"}, - {file = "yarl-1.13.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:78f271722423b2d4851cf1f4fa1a1c4833a128d020062721ba35e1a87154a049"}, - {file = "yarl-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d74f3c335cfe9c21ea78988e67f18eb9822f5d31f88b41aec3a1ec5ecd32da5"}, - {file = "yarl-1.13.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1891d69a6ba16e89473909665cd355d783a8a31bc84720902c5911dbb6373465"}, - {file = "yarl-1.13.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fb382fd7b4377363cc9f13ba7c819c3c78ed97c36a82f16f3f92f108c787cbbf"}, - {file = "yarl-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c8854b9f80693d20cec797d8e48a848c2fb273eb6f2587b57763ccba3f3bd4b"}, - {file = "yarl-1.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbf2c3f04ff50f16404ce70f822cdc59760e5e2d7965905f0e700270feb2bbfc"}, - {file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fb9f59f3848edf186a76446eb8bcf4c900fe147cb756fbbd730ef43b2e67c6a7"}, - {file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ef9b85fa1bc91c4db24407e7c4da93a5822a73dd4513d67b454ca7064e8dc6a3"}, - {file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:098b870c18f1341786f290b4d699504e18f1cd050ed179af8123fd8232513424"}, - {file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:8c723c91c94a3bc8033dd2696a0f53e5d5f8496186013167bddc3fb5d9df46a3"}, - {file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:44a4c40a6f84e4d5955b63462a0e2a988f8982fba245cf885ce3be7618f6aa7d"}, - {file = "yarl-1.13.1-cp39-cp39-win32.whl", hash = "sha256:84bbcdcf393139f0abc9f642bf03f00cac31010f3034faa03224a9ef0bb74323"}, - {file = "yarl-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:fc2931ac9ce9c61c9968989ec831d3a5e6fcaaff9474e7cfa8de80b7aff5a093"}, - {file = "yarl-1.13.1-py3-none-any.whl", hash = "sha256:6a5185ad722ab4dd52d5fb1f30dcc73282eb1ed494906a92d1a228d3f89607b0"}, - {file = "yarl-1.13.1.tar.gz", hash = "sha256:ec8cfe2295f3e5e44c51f57272afbd69414ae629ec7c6b27f5a410efc78b70a0"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32468f41242d72b87ab793a86d92f885355bcf35b3355aa650bfa846a5c60058"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:234f3a3032b505b90e65b5bc6652c2329ea7ea8855d8de61e1642b74b4ee65d2"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a0296040e5cddf074c7f5af4a60f3fc42c0237440df7bcf5183be5f6c802ed5"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de6c14dd7c7c0badba48157474ea1f03ebee991530ba742d381b28d4f314d6f3"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b140e532fe0266003c936d017c1ac301e72ee4a3fd51784574c05f53718a55d8"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:019f5d58093402aa8f6661e60fd82a28746ad6d156f6c5336a70a39bd7b162b9"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c42998fd1cbeb53cd985bff0e4bc25fbe55fd6eb3a545a724c1012d69d5ec84"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7c30fb38c300fe8140df30a046a01769105e4cf4282567a29b5cdb635b66c4"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e49e0fd86c295e743fd5be69b8b0712f70a686bc79a16e5268386c2defacaade"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:b9ca7b9147eb1365c8bab03c003baa1300599575effad765e0b07dd3501ea9af"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:27e11db3f1e6a51081a981509f75617b09810529de508a181319193d320bc5c7"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8994c42f4ca25df5380ddf59f315c518c81df6a68fed5bb0c159c6cb6b92f120"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:542fa8e09a581bcdcbb30607c7224beff3fdfb598c798ccd28a8184ffc18b7eb"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2bd6a51010c7284d191b79d3b56e51a87d8e1c03b0902362945f15c3d50ed46b"}, + {file = "yarl-1.16.0-cp310-cp310-win32.whl", hash = "sha256:178ccb856e265174a79f59721031060f885aca428983e75c06f78aa24b91d929"}, + {file = "yarl-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe8bba2545427418efc1929c5c42852bdb4143eb8d0a46b09de88d1fe99258e7"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d8643975a0080f361639787415a038bfc32d29208a4bf6b783ab3075a20b1ef3"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:676d96bafc8c2d0039cea0cd3fd44cee7aa88b8185551a2bb93354668e8315c2"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9525f03269e64310416dbe6c68d3b23e5d34aaa8f47193a1c45ac568cecbc49"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b37d5ec034e668b22cf0ce1074d6c21fd2a08b90d11b1b73139b750a8b0dd97"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f32c4cb7386b41936894685f6e093c8dfaf0960124d91fe0ec29fe439e201d0"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b8e265a0545637492a7e12fd7038370d66c9375a61d88c5567d0e044ded9202"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:789a3423f28a5fff46fbd04e339863c169ece97c827b44de16e1a7a42bc915d2"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1d1f45e3e8d37c804dca99ab3cf4ab3ed2e7a62cd82542924b14c0a4f46d243"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:621280719c4c5dad4c1391160a9b88925bb8b0ff6a7d5af3224643024871675f"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed097b26f18a1f5ff05f661dc36528c5f6735ba4ce8c9645e83b064665131349"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2f1fe2b2e3ee418862f5ebc0c0083c97f6f6625781382f828f6d4e9b614eba9b"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:87dd10bc0618991c66cee0cc65fa74a45f4ecb13bceec3c62d78ad2e42b27a16"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4199db024b58a8abb2cfcedac7b1292c3ad421684571aeb622a02f242280e8d6"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:99a9dcd4b71dd5f5f949737ab3f356cfc058c709b4f49833aeffedc2652dac56"}, + {file = "yarl-1.16.0-cp311-cp311-win32.whl", hash = "sha256:a9394c65ae0ed95679717d391c862dece9afacd8fa311683fc8b4362ce8a410c"}, + {file = "yarl-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b9101f528ae0f8f65ac9d64dda2bb0627de8a50344b2f582779f32fda747c1d"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4ffb7c129707dd76ced0a4a4128ff452cecf0b0e929f2668ea05a371d9e5c104"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1a5e9d8ce1185723419c487758d81ac2bde693711947032cce600ca7c9cda7d6"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d743e3118b2640cef7768ea955378c3536482d95550222f908f392167fe62059"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26768342f256e6e3c37533bf9433f5f15f3e59e3c14b2409098291b3efaceacb"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1b0796168b953bca6600c5f97f5ed407479889a36ad7d17183366260f29a6b9"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858728086914f3a407aa7979cab743bbda1fe2bdf39ffcd991469a370dd7414d"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5570e6d47bcb03215baf4c9ad7bf7c013e56285d9d35013541f9ac2b372593e7"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66ea8311422a7ba1fc79b4c42c2baa10566469fe5a78500d4e7754d6e6db8724"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:649bddcedee692ee8a9b7b6e38582cb4062dc4253de9711568e5620d8707c2a3"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a91654adb7643cb21b46f04244c5a315a440dcad63213033826549fa2435f71"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b439cae82034ade094526a8f692b9a2b5ee936452de5e4c5f0f6c48df23f8604"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:571f781ae8ac463ce30bacebfaef2c6581543776d5970b2372fbe31d7bf31a07"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:aa7943f04f36d6cafc0cf53ea89824ac2c37acbdb4b316a654176ab8ffd0f968"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1a5cf32539373ff39d97723e39a9283a7277cbf1224f7aef0c56c9598b6486c3"}, + {file = "yarl-1.16.0-cp312-cp312-win32.whl", hash = "sha256:a5b6c09b9b4253d6a208b0f4a2f9206e511ec68dce9198e0fbec4f160137aa67"}, + {file = "yarl-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:1208ca14eed2fda324042adf8d6c0adf4a31522fa95e0929027cd487875f0240"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5ace0177520bd4caa99295a9b6fb831d0e9a57d8e0501a22ffaa61b4c024283"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7118bdb5e3ed81acaa2095cba7ec02a0fe74b52a16ab9f9ac8e28e53ee299732"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38fec8a2a94c58bd47c9a50a45d321ab2285ad133adefbbadf3012c054b7e656"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8791d66d81ee45866a7bb15a517b01a2bcf583a18ebf5d72a84e6064c417e64b"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cf936ba67bc6c734f3aa1c01391da74ab7fc046a9f8bbfa230b8393b90cf472"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1aab176dd55b59f77a63b27cffaca67d29987d91a5b615cbead41331e6b7428"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d0759004c08abd5d1b81300a91d18c8577c6389300bed1c7c11675105a44d"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bc22e00edeb068f71967ab99081e9406cd56dbed864fc3a8259442999d71552"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:35b4f7842154176523e0a63c9b871168c69b98065d05a4f637fce342a6a2693a"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7ace71c4b7a0c41f317ae24be62bb61e9d80838d38acb20e70697c625e71f120"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8f639e3f5795a6568aa4f7d2ac6057c757dcd187593679f035adbf12b892bb00"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e8be3aff14f0120ad049121322b107f8a759be76a6a62138322d4c8a337a9e2c"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:122d8e7986043d0549e9eb23c7fd23be078be4b70c9eb42a20052b3d3149c6f2"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0fd9c227990f609c165f56b46107d0bc34553fe0387818c42c02f77974402c36"}, + {file = "yarl-1.16.0-cp313-cp313-win32.whl", hash = "sha256:595ca5e943baed31d56b33b34736461a371c6ea0038d3baec399949dd628560b"}, + {file = "yarl-1.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:921b81b8d78f0e60242fb3db615ea3f368827a76af095d5a69f1c3366db3f596"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab2b2ac232110a1fdb0d3ffcd087783edd3d4a6ced432a1bf75caf7b7be70916"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f8713717a09acbfee7c47bfc5777e685539fefdd34fa72faf504c8be2f3df4e"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdcffe1dbcb4477d2b4202f63cd972d5baa155ff5a3d9e35801c46a415b7f71a"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a91217208306d82357c67daeef5162a41a28c8352dab7e16daa82e3718852a7"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ab3ed42c78275477ea8e917491365e9a9b69bb615cb46169020bd0aa5e2d6d3"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:707ae579ccb3262dfaef093e202b4c3fb23c3810e8df544b1111bd2401fd7b09"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7a852d1cd0b8d8b37fc9d7f8581152add917a98cfe2ea6e241878795f917ae"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3f1cc3d3d4dc574bebc9b387f6875e228ace5748a7c24f49d8f01ac1bc6c31b"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5ff96da263740779b0893d02b718293cc03400c3a208fc8d8cd79d9b0993e532"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:3d375a19ba2bfe320b6d873f3fb165313b002cef8b7cc0a368ad8b8a57453837"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:62c7da0ad93a07da048b500514ca47b759459ec41924143e2ddb5d7e20fd3db5"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:147b0fcd0ee33b4b5f6edfea80452d80e419e51b9a3f7a96ce98eaee145c1581"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:504e1fe1cc4f170195320eb033d2b0ccf5c6114ce5bf2f617535c01699479bca"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bdcf667a5dec12a48f669e485d70c54189f0639c2157b538a4cffd24a853624f"}, + {file = "yarl-1.16.0-cp39-cp39-win32.whl", hash = "sha256:e9951afe6557c75a71045148890052cb942689ee4c9ec29f5436240e1fcc73b7"}, + {file = "yarl-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d7aaa8ff95d0840e289423e7dc35696c2b058d635f945bf05b5cd633146b027"}, + {file = "yarl-1.16.0-py3-none-any.whl", hash = "sha256:e6980a558d8461230c457218bd6c92dfc1d10205548215c2c21d79dc8d0a96f3"}, + {file = "yarl-1.16.0.tar.gz", hash = "sha256:b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4"}, ] [package.dependencies] idna = ">=2.0" multidict = ">=4.0" +propcache = ">=0.2.0" [metadata] lock-version = "2.0" diff --git a/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml b/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml index 09bd949227db..d219207639c9 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml +++ b/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.3.16" +version = "3.3.17" name = "source-facebook-marketing" description = "Source implementation for Facebook Marketing." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/facebook-marketing.md b/docs/integrations/sources/facebook-marketing.md index 505b4a419081..b43a5be053d7 100644 --- a/docs/integrations/sources/facebook-marketing.md +++ b/docs/integrations/sources/facebook-marketing.md @@ -269,45 +269,46 @@ This response indicates that the Facebook Graph API requires you to reduce the f | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 3.3.16 | 2024-07-15 | [46546](https://github.com/airbytehq/airbyte/pull/46546) | Raise exception on missing stream | -| 3.3.15 | 2024-07-15 | [42562](https://github.com/airbytehq/airbyte/pull/42562) | Add friendly messages for "reduce fields" and "start date" errors | -| 3.3.14 | 2024-07-15 | [41958](https://github.com/airbytehq/airbyte/pull/41958) | Update cdk to filter invalid fields from configured catalog | -| 3.3.13 | 2024-07-13 | [41732](https://github.com/airbytehq/airbyte/pull/41732) | Update dependencies | -| 3.3.12 | 2024-07-11 | [41644](https://github.com/airbytehq/airbyte/pull/41644) | Remove discriminator with missing schemas | -| 3.3.11 | 2024-07-10 | [41039](https://github.com/airbytehq/airbyte/pull/41039) | Pick request fields from configured json schema properties if present | -| 3.3.10 | 2024-07-10 | [41458](https://github.com/airbytehq/airbyte/pull/41458) | Update dependencies | -| 3.3.9 | 2024-07-09 | [41106](https://github.com/airbytehq/airbyte/pull/41106) | Update dependencies | -| 3.3.8 | 2024-07-06 | [40934](https://github.com/airbytehq/airbyte/pull/40934) | Update dependencies | -| 3.3.7 | 2024-07-01 | [40645](https://github.com/airbytehq/airbyte/pull/40645) | Use latest `CDK` version possible | -| 3.3.6 | 2024-06-24 | [40241](https://github.com/airbytehq/airbyte/pull/40241) | Update AdsInsights fields - removed `adset_start` | -| 3.3.5 | 2024-06-26 | [40545](https://github.com/airbytehq/airbyte/pull/40545) | Fixed issue when the `STATE` is literal `None` (RFR) | -| 3.3.4 | 2024-06-25 | [40485](https://github.com/airbytehq/airbyte/pull/40485) | Update dependencies | -| 3.3.3 | 2024-06-22 | [40191](https://github.com/airbytehq/airbyte/pull/40191) | Update dependencies | -| 3.3.2 | 2024-06-06 | [39174](https://github.com/airbytehq/airbyte/pull/39174) | [autopull] Upgrade base image to v1.2.2 | -| 3.3.1 | 2024-06-15 | [39511](https://github.com/airbytehq/airbyte/pull/39511) | Fix validation of the spec `custom_insights.time_increment` field | -| 3.3.0 | 2024-06-30 | [33648](https://github.com/airbytehq/airbyte/pull/33648) | Add support to field `source_instagram_media_id` to `ad_creatives` report | -| 3.2.0 | 2024-06-05 | [37625](https://github.com/airbytehq/airbyte/pull/37625) | Source Facebook-Marketing: Add Selectable Auth | -| 3.1.0 | 2024-06-01 | [38845](https://github.com/airbytehq/airbyte/pull/38845) | Update AdsInsights fields - removed `cost_per_conversion_lead` and `conversion_lead_rate` | -| 3.0.0 | 2024-04-30 | [36608](https://github.com/airbytehq/airbyte/pull/36608) | Update `body_asset, call_to_action_asset, description_asset, image_asset, link_url_asset, title_asset, video_asset` breakdowns schema. | -| 2.1.9 | 2024-05-17 | [38301](https://github.com/airbytehq/airbyte/pull/38301) | Fix data inaccuracies when `wish_bid` is requested | -| 2.1.8 | 2024-05-07 | [37771](https://github.com/airbytehq/airbyte/pull/37771) | Handle errors without API error codes/messages | -| 2.1.7 | 2024-04-24 | [36634](https://github.com/airbytehq/airbyte/pull/36634) | Update to CDK 0.80.0 | -| 2.1.6 | 2024-04-24 | [36634](https://github.com/airbytehq/airbyte/pull/36634) | Schema descriptions | -| 2.1.5 | 2024-04-17 | [37341](https://github.com/airbytehq/airbyte/pull/37341) | Move rate limit errors to transient errors. | -| 2.1.4 | 2024-04-16 | [37367](https://github.com/airbytehq/airbyte/pull/37367) | Skip config migration when the legacy account_id field does not exist | -| 2.1.3 | 2024-04-16 | [37320](https://github.com/airbytehq/airbyte/pull/37320) | Add retry for transient error | -| 2.1.2 | 2024-03-29 | [36689](https://github.com/airbytehq/airbyte/pull/36689) | Fix key error `account_id` for custom reports. | -| 2.1.1 | 2024-03-18 | [36025](https://github.com/airbytehq/airbyte/pull/36025) | Fix start_date selection behaviour | -| 2.1.0 | 2024-03-12 | [35978](https://github.com/airbytehq/airbyte/pull/35978) | Upgrade CDK to start emitting record counts with state and full refresh state | -| 2.0.1 | 2024-03-08 | [35913](https://github.com/airbytehq/airbyte/pull/35913) | Fix lookback window | -| 2.0.0 | 2024-03-01 | [35746](https://github.com/airbytehq/airbyte/pull/35746) | Update API to `v19.0` | -| 1.4.2 | 2024-02-22 | [35539](https://github.com/airbytehq/airbyte/pull/35539) | Add missing config migration from `include_deleted` field | -| 1.4.1 | 2024-02-21 | [35467](https://github.com/airbytehq/airbyte/pull/35467) | Fix error with incorrect state transforming in the 1.4.0 version | -| 1.4.0 | 2024-02-20 | [32449](https://github.com/airbytehq/airbyte/pull/32449) | Replace "Include Deleted Campaigns, Ads, and AdSets" option in configuration with specific statuses selection per stream | -| 1.3.3 | 2024-02-15 | [35061](https://github.com/airbytehq/airbyte/pull/35061) | Add integration tests | -| 1.3.2 | 2024-02-12 | [35178](https://github.com/airbytehq/airbyte/pull/35178) | Manage dependencies with Poetry | -| 1.3.1 | 2024-02-05 | [34845](https://github.com/airbytehq/airbyte/pull/34845) | Add missing fields to schemas | -| 1.3.0 | 2024-01-09 | [33538](https://github.com/airbytehq/airbyte/pull/33538) | Updated the `Ad Account ID(s)` property to support multiple IDs | +| 3.3.17 | 2024-10-28 | [43787](https://github.com/airbytehq/airbyte/pull/43787) | Update dependencies | +| 3.3.16 | 2024-07-15 | [46546](https://github.com/airbytehq/airbyte/pull/46546) | Raise exception on missing stream | +| 3.3.15 | 2024-07-15 | [42562](https://github.com/airbytehq/airbyte/pull/42562) | Add friendly messages for "reduce fields" and "start date" errors | +| 3.3.14 | 2024-07-15 | [41958](https://github.com/airbytehq/airbyte/pull/41958) | Update cdk to filter invalid fields from configured catalog | +| 3.3.13 | 2024-07-13 | [41732](https://github.com/airbytehq/airbyte/pull/41732) | Update dependencies | +| 3.3.12 | 2024-07-11 | [41644](https://github.com/airbytehq/airbyte/pull/41644) | Remove discriminator with missing schemas | +| 3.3.11 | 2024-07-10 | [41039](https://github.com/airbytehq/airbyte/pull/41039) | Pick request fields from configured json schema properties if present | +| 3.3.10 | 2024-07-10 | [41458](https://github.com/airbytehq/airbyte/pull/41458) | Update dependencies | +| 3.3.9 | 2024-07-09 | [41106](https://github.com/airbytehq/airbyte/pull/41106) | Update dependencies | +| 3.3.8 | 2024-07-06 | [40934](https://github.com/airbytehq/airbyte/pull/40934) | Update dependencies | +| 3.3.7 | 2024-07-01 | [40645](https://github.com/airbytehq/airbyte/pull/40645) | Use latest `CDK` version possible | +| 3.3.6 | 2024-06-24 | [40241](https://github.com/airbytehq/airbyte/pull/40241) | Update AdsInsights fields - removed `adset_start` | +| 3.3.5 | 2024-06-26 | [40545](https://github.com/airbytehq/airbyte/pull/40545) | Fixed issue when the `STATE` is literal `None` (RFR) | +| 3.3.4 | 2024-06-25 | [40485](https://github.com/airbytehq/airbyte/pull/40485) | Update dependencies | +| 3.3.3 | 2024-06-22 | [40191](https://github.com/airbytehq/airbyte/pull/40191) | Update dependencies | +| 3.3.2 | 2024-06-06 | [39174](https://github.com/airbytehq/airbyte/pull/39174) | [autopull] Upgrade base image to v1.2.2 | +| 3.3.1 | 2024-06-15 | [39511](https://github.com/airbytehq/airbyte/pull/39511) | Fix validation of the spec `custom_insights.time_increment` field | +| 3.3.0 | 2024-06-30 | [33648](https://github.com/airbytehq/airbyte/pull/33648) | Add support to field `source_instagram_media_id` to `ad_creatives` report | +| 3.2.0 | 2024-06-05 | [37625](https://github.com/airbytehq/airbyte/pull/37625) | Source Facebook-Marketing: Add Selectable Auth | +| 3.1.0 | 2024-06-01 | [38845](https://github.com/airbytehq/airbyte/pull/38845) | Update AdsInsights fields - removed `cost_per_conversion_lead` and `conversion_lead_rate` | +| 3.0.0 | 2024-04-30 | [36608](https://github.com/airbytehq/airbyte/pull/36608) | Update `body_asset, call_to_action_asset, description_asset, image_asset, link_url_asset, title_asset, video_asset` breakdowns schema. | +| 2.1.9 | 2024-05-17 | [38301](https://github.com/airbytehq/airbyte/pull/38301) | Fix data inaccuracies when `wish_bid` is requested | +| 2.1.8 | 2024-05-07 | [37771](https://github.com/airbytehq/airbyte/pull/37771) | Handle errors without API error codes/messages | +| 2.1.7 | 2024-04-24 | [36634](https://github.com/airbytehq/airbyte/pull/36634) | Update to CDK 0.80.0 | +| 2.1.6 | 2024-04-24 | [36634](https://github.com/airbytehq/airbyte/pull/36634) | Schema descriptions | +| 2.1.5 | 2024-04-17 | [37341](https://github.com/airbytehq/airbyte/pull/37341) | Move rate limit errors to transient errors. | +| 2.1.4 | 2024-04-16 | [37367](https://github.com/airbytehq/airbyte/pull/37367) | Skip config migration when the legacy account_id field does not exist | +| 2.1.3 | 2024-04-16 | [37320](https://github.com/airbytehq/airbyte/pull/37320) | Add retry for transient error | +| 2.1.2 | 2024-03-29 | [36689](https://github.com/airbytehq/airbyte/pull/36689) | Fix key error `account_id` for custom reports. | +| 2.1.1 | 2024-03-18 | [36025](https://github.com/airbytehq/airbyte/pull/36025) | Fix start_date selection behaviour | +| 2.1.0 | 2024-03-12 | [35978](https://github.com/airbytehq/airbyte/pull/35978) | Upgrade CDK to start emitting record counts with state and full refresh state | +| 2.0.1 | 2024-03-08 | [35913](https://github.com/airbytehq/airbyte/pull/35913) | Fix lookback window | +| 2.0.0 | 2024-03-01 | [35746](https://github.com/airbytehq/airbyte/pull/35746) | Update API to `v19.0` | +| 1.4.2 | 2024-02-22 | [35539](https://github.com/airbytehq/airbyte/pull/35539) | Add missing config migration from `include_deleted` field | +| 1.4.1 | 2024-02-21 | [35467](https://github.com/airbytehq/airbyte/pull/35467) | Fix error with incorrect state transforming in the 1.4.0 version | +| 1.4.0 | 2024-02-20 | [32449](https://github.com/airbytehq/airbyte/pull/32449) | Replace "Include Deleted Campaigns, Ads, and AdSets" option in configuration with specific statuses selection per stream | +| 1.3.3 | 2024-02-15 | [35061](https://github.com/airbytehq/airbyte/pull/35061) | Add integration tests | +| 1.3.2 | 2024-02-12 | [35178](https://github.com/airbytehq/airbyte/pull/35178) | Manage dependencies with Poetry | +| 1.3.1 | 2024-02-05 | [34845](https://github.com/airbytehq/airbyte/pull/34845) | Add missing fields to schemas | +| 1.3.0 | 2024-01-09 | [33538](https://github.com/airbytehq/airbyte/pull/33538) | Updated the `Ad Account ID(s)` property to support multiple IDs | | 1.2.3 | 2024-01-04 | [33934](https://github.com/airbytehq/airbyte/pull/33828) | Make ready for airbyte-lib | | 1.2.2 | 2024-01-02 | [33828](https://github.com/airbytehq/airbyte/pull/33828) | Add insights job timeout to be an option, so a user can specify their own value | | 1.2.1 | 2023-11-22 | [32731](https://github.com/airbytehq/airbyte/pull/32731) | Removed validation that blocked personal ad accounts during `check` | From ae241be9c5d217c591ad360b7267fe03b4d7ebe4 Mon Sep 17 00:00:00 2001 From: Marius Posta Date: Mon, 28 Oct 2024 12:28:41 -0700 Subject: [PATCH 193/808] bulk-cdk: correct handling of `MetaField`s (#46975) --- .../kotlin/io/airbyte/cdk/discover/Field.kt | 7 +- .../cdk/discover/MetaFieldDecorator.kt | 58 ++++ .../airbyte/cdk/discover/MetadataQuerier.kt | 2 - .../main/kotlin/io/airbyte/cdk/read/Feed.kt | 5 +- .../io/airbyte/cdk/read/FeedBootstrap.kt | 254 ++++++++++++++++++ .../kotlin/io/airbyte/cdk/read/FeedReader.kt | 5 +- .../kotlin/io/airbyte/cdk/read/Partitions.kt | 19 +- .../io/airbyte/cdk/read/ReadOperation.kt | 3 + .../kotlin/io/airbyte/cdk/read/RootReader.kt | 2 + .../airbyte/cdk/read/StateManagerFactory.kt | 50 ++-- .../io/airbyte/cdk/read/FeedBootstrapTest.kt | 181 +++++++++++++ .../cdk/read/RootReaderIntegrationTest.kt | 35 ++- .../cdk/read/StateManagerGlobalStatesTest.kt | 5 +- .../cdk/read/StreamStatusManagerTest.kt | 4 +- .../ResourceDrivenMetadataQuerierFactory.kt | 6 - .../cdk/discover/TestAirbyteStreamFactory.kt | 13 +- .../cdk/discover/TestMetaFieldDecorator.kt | 52 ++++ .../cdk/read/cdc/CdcPartitionReader.kt | 28 +- .../cdk/read/cdc/CdcPartitionsCreator.kt | 43 ++- .../read/cdc/CdcPartitionsCreatorFactory.kt | 17 +- .../cdk/read/cdc/DebeziumOperations.kt | 19 +- .../cdk/read/cdc/CdcPartitionReaderTest.kt | 48 +++- .../cdk/read/cdc/CdcPartitionsCreatorTest.kt | 86 +++--- .../read/cdc/DebeziumPropertiesBuilderTest.kt | 5 +- .../cdk/discover/JdbcAirbyteStreamFactory.kt | 20 +- .../cdk/discover/JdbcMetadataQuerier.kt | 7 - .../cdk/read/DefaultJdbcPartitionFactory.kt | 20 +- .../cdk/read/DefaultJdbcSharedState.kt | 2 - .../cdk/read/DefaultJdbcStreamState.kt | 2 +- .../airbyte/cdk/read/JdbcPartitionFactory.kt | 10 +- .../airbyte/cdk/read/JdbcPartitionReader.kt | 26 +- .../airbyte/cdk/read/JdbcPartitionsCreator.kt | 2 - .../cdk/read/JdbcPartitionsCreatorFactory.kt | 21 +- .../io/airbyte/cdk/read/JdbcSharedState.kt | 4 - .../io/airbyte/cdk/read/JdbcStreamState.kt | 8 + .../cdk/h2source/H2SourceIntegrationTest.kt | 14 + .../read/DefaultJdbcPartitionFactoryTest.kt | 30 ++- .../cdk/read/JdbcPartitionReaderTest.kt | 14 +- .../cdk/read/JdbcPartitionsCreatorTest.kt | 44 +-- .../io/airbyte/cdk/read/TestFixtures.kt | 30 ++- .../h2source/expected-fake-cdc-catalog.json | 85 ++++++ .../cdk/h2source/H2SourceOperations.kt | 37 ++- .../connectors/source-mysql-v2/metadata.yaml | 2 +- .../source/mysql/MysqlCdcMetaFields.kt | 22 ++ .../source/mysql/MysqlJdbcPartitionFactory.kt | 23 +- .../source/mysql/MysqlJdbcStreamFactory.kt | 56 ---- .../mysql/MysqlSourceMetadataQuerier.kt | 9 - .../source/mysql/MysqlSourceOperations.kt | 59 +++- .../mysql/cdc/MySqlDebeziumOperations.kt | 132 +++++---- .../source/mysql/cdc/MySqlPosition.kt | 32 ++- .../source/mysql/MysqlCdcIntegrationTest.kt | 7 +- .../mysql/MysqlCursorBasedIntegrationTest.kt | 3 +- .../mysql/MysqlJdbcPartitionFactoryTest.kt | 57 +++- 53 files changed, 1270 insertions(+), 455 deletions(-) create mode 100644 airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/MetaFieldDecorator.kt create mode 100644 airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/FeedBootstrap.kt create mode 100644 airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/FeedBootstrapTest.kt create mode 100644 airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/TestMetaFieldDecorator.kt create mode 100644 airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/resources/h2source/expected-fake-cdc-catalog.json create mode 100644 airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcMetaFields.kt delete mode 100644 airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcStreamFactory.kt diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/Field.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/Field.kt index 5eec0d556a5b..3e9ecd7e4cbe 100644 --- a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/Field.kt +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/Field.kt @@ -2,11 +2,11 @@ package io.airbyte.cdk.discover import io.airbyte.cdk.data.AirbyteSchemaType -import io.airbyte.cdk.data.IntCodec import io.airbyte.cdk.data.JsonDecoder import io.airbyte.cdk.data.JsonEncoder import io.airbyte.cdk.data.JsonStringCodec import io.airbyte.cdk.data.LeafAirbyteSchemaType +import io.airbyte.cdk.data.LongCodec import io.airbyte.cdk.data.OffsetDateTimeCodec import java.time.OffsetDateTime @@ -63,7 +63,6 @@ interface MetaField : FieldOrMetaField { enum class CommonMetaField( override val type: FieldType, ) : MetaField { - CDC_LSN(CdcStringMetaFieldType), CDC_UPDATED_AT(CdcOffsetDateTimeMetaFieldType), CDC_DELETED_AT(CdcOffsetDateTimeMetaFieldType), ; @@ -80,8 +79,8 @@ data object CdcStringMetaFieldType : LosslessFieldType { data object CdcIntegerMetaFieldType : LosslessFieldType { override val airbyteSchemaType: AirbyteSchemaType = LeafAirbyteSchemaType.INTEGER - override val jsonEncoder: JsonEncoder = IntCodec - override val jsonDecoder: JsonDecoder = IntCodec + override val jsonEncoder: JsonEncoder = LongCodec + override val jsonDecoder: JsonDecoder = LongCodec } data object CdcOffsetDateTimeMetaFieldType : LosslessFieldType { diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/MetaFieldDecorator.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/MetaFieldDecorator.kt new file mode 100644 index 000000000000..ca7ab028687a --- /dev/null +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/MetaFieldDecorator.kt @@ -0,0 +1,58 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.discover + +import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.command.OpaqueStateValue +import io.airbyte.cdk.read.Stream +import io.airbyte.protocol.models.v0.AirbyteStream +import java.time.OffsetDateTime + +/** [MetaField] schema definition and utilities, to be implemented by each source connector. */ +interface MetaFieldDecorator { + + /** [MetaField] to use as a global cursor, if applicable. */ + val globalCursor: MetaField? + + /** + * All [MetaField]s to be found in [Global] stream records. + * + * This must include at least [globalCursor] if not null. + * + * Empty set when not applicable. + */ + val globalMetaFields: Set + + /** Convenience function for [AirbyteStreamFactory]. */ + fun decorateAirbyteStream(airbyteStream: AirbyteStream) { + (airbyteStream.jsonSchema["properties"] as ObjectNode).apply { + for (metaField in globalMetaFields) { + set(metaField.id, metaField.type.airbyteSchemaType.asJsonSchema()) + } + } + val globalCursorIdentifier: String = globalCursor?.id ?: return + airbyteStream.defaultCursorField = listOf(globalCursorIdentifier) + airbyteStream.sourceDefinedCursor = true + } + + /** + * Modifies [recordData] by setting all [MetaField] values in global [Stream] feeds. + * + * This is required by the fact that records of a given stream may be emitted by both a [Stream] + * and a [Global] feed and the schemas must be the same. This implies that the records emitted + * by [Stream] must have [MetaField]s set to suitable values, even though that [Feed] has no + * awareness of the [Global] state. + * + * This method is called at most once per [Stream]. + */ + fun decorateRecordData( + /** Same value as emitted_at */ + timestamp: OffsetDateTime, + /** Current state of the [Global] feed, if applicable. */ + globalStateValue: OpaqueStateValue?, + stream: Stream, + recordData: ObjectNode + ) +} diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/MetadataQuerier.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/MetadataQuerier.kt index aaa4af167dde..875ea5b28a6a 100644 --- a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/MetadataQuerier.kt +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/discover/MetadataQuerier.kt @@ -27,6 +27,4 @@ interface MetadataQuerier : AutoCloseable { /** An implementation might open a connection to build a [MetadataQuerier] instance. */ fun session(config: T): MetadataQuerier } - - fun commonCursorOrNull(cursorColumnID: String): FieldOrMetaField? } diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/Feed.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/Feed.kt index 64c9b66e4473..5c7a922dedec 100644 --- a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/Feed.kt +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/Feed.kt @@ -30,7 +30,7 @@ data class Global( */ data class Stream( val id: StreamIdentifier, - val fields: List, + val schema: Set, val configuredSyncMode: ConfiguredSyncMode, val configuredPrimaryKey: List?, val configuredCursor: FieldOrMetaField?, @@ -43,6 +43,9 @@ data class Stream( override val label: String get() = id.toString() + + val fields: List + get() = schema.filterIsInstance() } /** List of [Stream]s this [Feed] emits records for. */ diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/FeedBootstrap.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/FeedBootstrap.kt new file mode 100644 index 000000000000..5b0151196d26 --- /dev/null +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/FeedBootstrap.kt @@ -0,0 +1,254 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.read + +import com.fasterxml.jackson.databind.JsonNode +import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.StreamIdentifier +import io.airbyte.cdk.command.OpaqueStateValue +import io.airbyte.cdk.discover.Field +import io.airbyte.cdk.discover.MetaFieldDecorator +import io.airbyte.cdk.output.OutputConsumer +import io.airbyte.cdk.util.Jsons +import io.airbyte.protocol.models.v0.AirbyteMessage +import io.airbyte.protocol.models.v0.AirbyteRecordMessage +import io.airbyte.protocol.models.v0.AirbyteRecordMessageMeta +import io.airbyte.protocol.models.v0.AirbyteRecordMessageMetaChange +import java.time.ZoneOffset + +/** + * [FeedBootstrap] is the input to a [PartitionsCreatorFactory]. + * + * This object conveniently packages the [StateQuerier] singleton with the [feed] for which the + * [PartitionsCreatorFactory] is to operate on, eventually causing the emission of Airbyte RECORD + * messages for the [Stream]s in the [feed]. For this purpose, [FeedBootstrap] provides + * [StreamRecordConsumer] instances which essentially provide a layer of caching over + * [OutputConsumer], leveraging the fact that all records for a given stream share the same schema. + */ +sealed class FeedBootstrap( + /** The [OutputConsumer] instance to which [StreamRecordConsumer] will delegate to. */ + val outputConsumer: OutputConsumer, + /** + * The [MetaFieldDecorator] instance which [StreamRecordConsumer] will use to decorate records. + */ + val metaFieldDecorator: MetaFieldDecorator, + /** [StateQuerier] singleton for use by [PartitionsCreatorFactory]. */ + val stateQuerier: StateQuerier, + /** [Feed] to emit records for. */ + val feed: T +) { + + /** Convenience getter for the current state value for the [feed]. */ + val currentState: OpaqueStateValue? + get() = stateQuerier.current(feed) + + /** A map of all [StreamRecordConsumer] for this [feed]. */ + fun streamRecordConsumers(): Map = + feed.streams.associate { stream: Stream -> + stream.id to EfficientStreamRecordConsumer(stream) + } + + /** + * Efficient implementation of [StreamRecordConsumer]. + * + * It's efficient because it re-uses the same Airbyte protocol message instance from one record + * to the next. Not doing this generates a lot of garbage and the increased GC activity has a + * measurable impact on performance. + */ + private inner class EfficientStreamRecordConsumer(val stream: Stream) : StreamRecordConsumer { + + override fun accept(recordData: ObjectNode, changes: Map?) { + if (changes.isNullOrEmpty()) { + acceptWithoutChanges(recordData) + } else { + val protocolChanges: List = + changes.map { (field: Field, fieldValueChange: FieldValueChange) -> + AirbyteRecordMessageMetaChange() + .withField(field.id) + .withChange(fieldValueChange.protocolChange()) + .withReason(fieldValueChange.protocolReason()) + } + acceptWithChanges(recordData, protocolChanges) + } + } + + private fun acceptWithoutChanges(recordData: ObjectNode) { + synchronized(this) { + for ((fieldName, defaultValue) in defaultRecordData.fields()) { + reusedRecordData.set(fieldName, recordData[fieldName] ?: defaultValue) + } + outputConsumer.accept(reusedMessageWithoutChanges) + } + } + + private fun acceptWithChanges( + recordData: ObjectNode, + changes: List + ) { + synchronized(this) { + for ((fieldName, defaultValue) in defaultRecordData.fields()) { + reusedRecordData.set(fieldName, recordData[fieldName] ?: defaultValue) + } + reusedRecordMeta.changes = changes + outputConsumer.accept(reusedMessageWithChanges) + } + } + + private val precedingGlobalFeed: Global? = + stateQuerier.feeds + .filterIsInstance() + .filter { it.streams.contains(stream) } + .firstOrNull() + + private val defaultRecordData: ObjectNode = + Jsons.objectNode().also { recordData: ObjectNode -> + stream.schema.forEach { recordData.putNull(it.id) } + if (feed is Stream && precedingGlobalFeed != null) { + metaFieldDecorator.decorateRecordData( + timestamp = outputConsumer.emittedAt.atOffset(ZoneOffset.UTC), + globalStateValue = stateQuerier.current(precedingGlobalFeed), + stream, + recordData, + ) + } + } + + private val reusedRecordData: ObjectNode = defaultRecordData.deepCopy() + + private val reusedMessageWithoutChanges: AirbyteMessage = + AirbyteMessage() + .withType(AirbyteMessage.Type.RECORD) + .withRecord( + AirbyteRecordMessage() + .withStream(stream.name) + .withNamespace(stream.namespace) + .withEmittedAt(outputConsumer.emittedAt.toEpochMilli()) + .withData(reusedRecordData) + ) + + private val reusedRecordMeta = AirbyteRecordMessageMeta() + + private val reusedMessageWithChanges: AirbyteMessage = + AirbyteMessage() + .withType(AirbyteMessage.Type.RECORD) + .withRecord( + AirbyteRecordMessage() + .withStream(stream.name) + .withNamespace(stream.namespace) + .withEmittedAt(outputConsumer.emittedAt.toEpochMilli()) + .withData(reusedRecordData) + .withMeta(reusedRecordMeta) + ) + } + + companion object { + + @JvmStatic + private fun FieldValueChange.protocolChange(): AirbyteRecordMessageMetaChange.Change = + when (this) { + FieldValueChange.RECORD_SIZE_LIMITATION_ERASURE -> + AirbyteRecordMessageMetaChange.Change.NULLED + FieldValueChange.RECORD_SIZE_LIMITATION_TRUNCATION -> + AirbyteRecordMessageMetaChange.Change.TRUNCATED + FieldValueChange.FIELD_SIZE_LIMITATION_ERASURE -> + AirbyteRecordMessageMetaChange.Change.NULLED + FieldValueChange.FIELD_SIZE_LIMITATION_TRUNCATION -> + AirbyteRecordMessageMetaChange.Change.TRUNCATED + FieldValueChange.DESERIALIZATION_FAILURE_TOTAL -> + AirbyteRecordMessageMetaChange.Change.NULLED + FieldValueChange.DESERIALIZATION_FAILURE_PARTIAL -> + AirbyteRecordMessageMetaChange.Change.TRUNCATED + FieldValueChange.RETRIEVAL_FAILURE_TOTAL -> + AirbyteRecordMessageMetaChange.Change.NULLED + FieldValueChange.RETRIEVAL_FAILURE_PARTIAL -> + AirbyteRecordMessageMetaChange.Change.TRUNCATED + } + + @JvmStatic + private fun FieldValueChange.protocolReason(): AirbyteRecordMessageMetaChange.Reason = + when (this) { + FieldValueChange.RECORD_SIZE_LIMITATION_ERASURE -> + AirbyteRecordMessageMetaChange.Reason.SOURCE_RECORD_SIZE_LIMITATION + FieldValueChange.RECORD_SIZE_LIMITATION_TRUNCATION -> + AirbyteRecordMessageMetaChange.Reason.SOURCE_RECORD_SIZE_LIMITATION + FieldValueChange.FIELD_SIZE_LIMITATION_ERASURE -> + AirbyteRecordMessageMetaChange.Reason.SOURCE_FIELD_SIZE_LIMITATION + FieldValueChange.FIELD_SIZE_LIMITATION_TRUNCATION -> + AirbyteRecordMessageMetaChange.Reason.SOURCE_FIELD_SIZE_LIMITATION + FieldValueChange.DESERIALIZATION_FAILURE_TOTAL -> + AirbyteRecordMessageMetaChange.Reason.SOURCE_SERIALIZATION_ERROR + FieldValueChange.DESERIALIZATION_FAILURE_PARTIAL -> + AirbyteRecordMessageMetaChange.Reason.SOURCE_SERIALIZATION_ERROR + FieldValueChange.RETRIEVAL_FAILURE_TOTAL -> + AirbyteRecordMessageMetaChange.Reason.SOURCE_RETRIEVAL_ERROR + FieldValueChange.RETRIEVAL_FAILURE_PARTIAL -> + AirbyteRecordMessageMetaChange.Reason.SOURCE_RETRIEVAL_ERROR + } + + /** [FeedBootstrap] factory method. */ + fun create( + outputConsumer: OutputConsumer, + metaFieldDecorator: MetaFieldDecorator, + stateQuerier: StateQuerier, + feed: Feed, + ): FeedBootstrap<*> = + when (feed) { + is Global -> + GlobalFeedBootstrap(outputConsumer, metaFieldDecorator, stateQuerier, feed) + is Stream -> + StreamFeedBootstrap(outputConsumer, metaFieldDecorator, stateQuerier, feed) + } + } +} + +/** + * Emits an Airbyte RECORD message for the [Stream] associated with this instance. + * + * The purpose of this interface is twofold: + * 1. to encapsulate a performance-minded implementation behind a simple abstraction; + * 2. to decorate the RECORD messages with + * ``` + * a) meta-fields in the record data, and + * b) field value changes and the motivating reason for these in the record metadata. + * ``` + */ +fun interface StreamRecordConsumer { + fun accept(recordData: ObjectNode, changes: Map?) +} + +/** + * This enum maps to [AirbyteRecordMessageMetaChange.Change] and + * [AirbyteRecordMessageMetaChange.Reason] enum value pairs. + */ +enum class FieldValueChange { + RECORD_SIZE_LIMITATION_ERASURE, + RECORD_SIZE_LIMITATION_TRUNCATION, + FIELD_SIZE_LIMITATION_ERASURE, + FIELD_SIZE_LIMITATION_TRUNCATION, + DESERIALIZATION_FAILURE_TOTAL, + DESERIALIZATION_FAILURE_PARTIAL, + RETRIEVAL_FAILURE_TOTAL, + RETRIEVAL_FAILURE_PARTIAL, +} + +/** [FeedBootstrap] implementation for [Global] feeds. */ +class GlobalFeedBootstrap( + outputConsumer: OutputConsumer, + metaFieldDecorator: MetaFieldDecorator, + stateQuerier: StateQuerier, + global: Global, +) : FeedBootstrap(outputConsumer, metaFieldDecorator, stateQuerier, global) + +/** [FeedBootstrap] implementation for [Stream] feeds. */ +class StreamFeedBootstrap( + outputConsumer: OutputConsumer, + metaFieldDecorator: MetaFieldDecorator, + stateQuerier: StateQuerier, + stream: Stream, +) : FeedBootstrap(outputConsumer, metaFieldDecorator, stateQuerier, stream) { + + /** A [StreamRecordConsumer] instance for this [Stream]. */ + fun streamRecordConsumer(): StreamRecordConsumer = streamRecordConsumers()[feed.id]!! +} diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/FeedReader.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/FeedReader.kt index 380fc4852909..5acc18ce9d83 100644 --- a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/FeedReader.kt +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/FeedReader.kt @@ -31,6 +31,9 @@ class FeedReader( ) { private val log = KotlinLogging.logger {} + private val feedBootstrap: FeedBootstrap<*> = + FeedBootstrap.create(root.outputConsumer, root.metaFieldDecorator, root.stateManager, feed) + /** Reads records from this [feed]. */ suspend fun read() { var partitionsCreatorID = 1L @@ -73,7 +76,7 @@ class FeedReader( val partitionsCreator: PartitionsCreator = run { for (factory in root.partitionsCreatorFactories) { log.info { "Attempting bootstrap using ${factory::class}." } - return@run factory.make(root.stateManager, feed) ?: continue + return@run factory.make(feedBootstrap) ?: continue } throw SystemErrorException( "Unable to bootstrap for feed $feed with ${root.partitionsCreatorFactories}" diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/Partitions.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/Partitions.kt index 381d2c99fa00..b4f604cf36b8 100644 --- a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/Partitions.kt +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/Partitions.kt @@ -9,22 +9,19 @@ import io.airbyte.cdk.read.PartitionsCreator.TryAcquireResourcesStatus * entrypoint to how READ operations are executed for that connector, via the [PartitionsCreator] * and [PartitionReader] instances which are ultimately created by it. */ -fun interface PartitionsCreatorFactory { +interface PartitionsCreatorFactory { /** - * Returns a [PartitionsCreator] which will cause the READ to advance for this particular [feed] - * when possible. A [StateQuerier] is provided to obtain the current [OpaqueStateValue] for this - * [feed] but may also be used to peek at the state of other [Feed]s. This may be useful for - * synchronizing the READ for this [feed] by waiting for other [Feed]s to reach a desired state - * before proceeding; the waiting may be triggered by [PartitionsCreator.tryAcquireResources] or - * [PartitionReader.tryAcquireResources]. + * Returns a [PartitionsCreator] which will cause the READ to advance for the [Feed] for which + * the [FeedBootstrap] argument is associated to. The latter exposes a [StateQuerier] to obtain + * the current [OpaqueStateValue] for this [feed] but may also be used to peek at the state of + * other [Feed]s. This may be useful for synchronizing the READ for this [feed] by waiting for + * other [Feed]s to reach a desired state before proceeding; the waiting may be triggered by + * [PartitionsCreator.tryAcquireResources] or [PartitionReader.tryAcquireResources]. * * Returns null when the factory is unable to generate a [PartitionsCreator]. This causes * another factory to be used instead. */ - fun make( - stateQuerier: StateQuerier, - feed: Feed, - ): PartitionsCreator? + fun make(feedBootstrap: FeedBootstrap<*>): PartitionsCreator? } /** diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/ReadOperation.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/ReadOperation.kt index 50181f653117..746165650eb3 100644 --- a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/ReadOperation.kt +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/ReadOperation.kt @@ -8,6 +8,7 @@ import hu.webarticum.treeprinter.printer.listing.ListingTreePrinter import io.airbyte.cdk.Operation import io.airbyte.cdk.command.InputState import io.airbyte.cdk.command.SourceConfiguration +import io.airbyte.cdk.discover.MetaFieldDecorator import io.airbyte.cdk.output.OutputConsumer import io.airbyte.cdk.util.ThreadRenamingCoroutineName import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog @@ -32,6 +33,7 @@ class ReadOperation( val inputState: InputState, val stateManagerFactory: StateManagerFactory, val outputConsumer: OutputConsumer, + val metaFieldDecorator: MetaFieldDecorator, val partitionsCreatorFactories: List, ) : Operation { private val log = KotlinLogging.logger {} @@ -45,6 +47,7 @@ class ReadOperation( config.resourceAcquisitionHeartbeat, config.checkpointTargetInterval, outputConsumer, + metaFieldDecorator, partitionsCreatorFactories, ) runBlocking(ThreadRenamingCoroutineName("read") + Dispatchers.Default) { diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/RootReader.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/RootReader.kt index 93ee1095efc8..3ef9140a70fd 100644 --- a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/RootReader.kt +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/RootReader.kt @@ -2,6 +2,7 @@ package io.airbyte.cdk.read import io.airbyte.cdk.ConfigErrorException +import io.airbyte.cdk.discover.MetaFieldDecorator import io.airbyte.cdk.output.OutputConsumer import io.airbyte.cdk.util.ThreadRenamingCoroutineName import io.github.oshai.kotlinlogging.KotlinLogging @@ -32,6 +33,7 @@ class RootReader( val resourceAcquisitionHeartbeat: Duration, val timeout: Duration, val outputConsumer: OutputConsumer, + val metaFieldDecorator: MetaFieldDecorator, val partitionsCreatorFactories: List, ) { private val log = KotlinLogging.logger {} diff --git a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/StateManagerFactory.kt b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/StateManagerFactory.kt index ba6c8e8651df..8fe13a9ddba4 100644 --- a/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/StateManagerFactory.kt +++ b/airbyte-cdk/bulk/core/extract/src/main/kotlin/io/airbyte/cdk/read/StateManagerFactory.kt @@ -8,6 +8,7 @@ import io.airbyte.cdk.asProtocolStreamDescriptor import io.airbyte.cdk.command.EmptyInputState import io.airbyte.cdk.command.GlobalInputState import io.airbyte.cdk.command.InputState +import io.airbyte.cdk.command.OpaqueStateValue import io.airbyte.cdk.command.SourceConfiguration import io.airbyte.cdk.command.StreamInputState import io.airbyte.cdk.data.AirbyteSchemaType @@ -16,6 +17,7 @@ import io.airbyte.cdk.data.LeafAirbyteSchemaType import io.airbyte.cdk.discover.Field import io.airbyte.cdk.discover.FieldOrMetaField import io.airbyte.cdk.discover.MetaField +import io.airbyte.cdk.discover.MetaFieldDecorator import io.airbyte.cdk.discover.MetadataQuerier import io.airbyte.cdk.output.CatalogValidationFailureHandler import io.airbyte.cdk.output.FieldNotFound @@ -40,6 +42,7 @@ import jakarta.inject.Singleton @Singleton class StateManagerFactory( val metadataQuerierFactory: MetadataQuerier.Factory, + val metaFieldDecorator: MetaFieldDecorator, val outputConsumer: OutputConsumer, val handler: CatalogValidationFailureHandler, ) { @@ -71,22 +74,32 @@ class StateManagerFactory( } private fun forGlobal( - streams: List, + undecoratedStreams: List, inputState: GlobalInputState? = null, - ) = - StateManager( - global = - Global(streams.filter { it.configuredSyncMode == ConfiguredSyncMode.INCREMENTAL }), + ): StateManager { + val decoratedStreams: List = + undecoratedStreams.map { stream: Stream -> + when (stream.configuredSyncMode) { + ConfiguredSyncMode.INCREMENTAL -> + stream.copy(schema = stream.schema + metaFieldDecorator.globalMetaFields) + ConfiguredSyncMode.FULL_REFRESH -> stream + } + } + val globalStreams: List = + decoratedStreams.filter { it.configuredSyncMode == ConfiguredSyncMode.INCREMENTAL } + val initialStreamStates: Map = + decoratedStreams.associateWith { stream: Stream -> + when (stream.configuredSyncMode) { + ConfiguredSyncMode.INCREMENTAL -> inputState?.globalStreams?.get(stream.id) + ConfiguredSyncMode.FULL_REFRESH -> inputState?.nonGlobalStreams?.get(stream.id) + } + } + return StateManager( + global = Global(globalStreams), initialGlobalState = inputState?.global, - initialStreamStates = - streams.associateWith { stream: Stream -> - when (stream.configuredSyncMode) { - ConfiguredSyncMode.INCREMENTAL -> inputState?.globalStreams?.get(stream.id) - ConfiguredSyncMode.FULL_REFRESH -> - inputState?.nonGlobalStreams?.get(stream.id) - } - }, + initialStreamStates = initialStreamStates, ) + } private fun forStream( streams: List, @@ -197,13 +210,12 @@ class StateManagerFactory( if (cursorColumnIDComponents.isEmpty()) { return null } - val cursorColumnID: String = cursorColumnIDComponents.joinToString(separator = ".") - val maybeCursorField: FieldOrMetaField? = - metadataQuerier.commonCursorOrNull(cursorColumnID) - return maybeCursorField ?: dataColumnOrNull(cursorColumnID) + if (cursorColumnID == metaFieldDecorator.globalCursor?.id) { + return metaFieldDecorator.globalCursor + } + return dataColumnOrNull(cursorColumnID) } - val configuredPrimaryKey: List? = configuredStream.primaryKey?.asSequence()?.let { pkOrNull(it.toList()) } val configuredCursor: FieldOrMetaField? = @@ -221,7 +233,7 @@ class StateManagerFactory( } return Stream( streamID, - streamFields, + streamFields.toSet(), configuredSyncMode, configuredPrimaryKey, configuredCursor, diff --git a/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/FeedBootstrapTest.kt b/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/FeedBootstrapTest.kt new file mode 100644 index 000000000000..ae42c7953736 --- /dev/null +++ b/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/FeedBootstrapTest.kt @@ -0,0 +1,181 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.read + +import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.StreamIdentifier +import io.airbyte.cdk.command.OpaqueStateValue +import io.airbyte.cdk.discover.CommonMetaField +import io.airbyte.cdk.discover.Field +import io.airbyte.cdk.discover.IntFieldType +import io.airbyte.cdk.discover.StringFieldType +import io.airbyte.cdk.discover.TestMetaFieldDecorator +import io.airbyte.cdk.discover.TestMetaFieldDecorator.GlobalCursor +import io.airbyte.cdk.output.BufferingOutputConsumer +import io.airbyte.cdk.util.Jsons +import io.airbyte.protocol.models.v0.StreamDescriptor +import io.micronaut.test.extensions.junit5.annotation.MicronautTest +import jakarta.inject.Inject +import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Test + +@MicronautTest(rebuildContext = true) +class FeedBootstrapTest { + + @Inject lateinit var outputConsumer: BufferingOutputConsumer + + @Inject lateinit var metaFieldDecorator: TestMetaFieldDecorator + + val k = Field("k", IntFieldType) + val v = Field("v", StringFieldType) + val stream: Stream = + Stream( + id = StreamIdentifier.from(StreamDescriptor().withName("tbl").withNamespace("ns")), + schema = + setOf( + k, + v, + GlobalCursor, + CommonMetaField.CDC_UPDATED_AT, + CommonMetaField.CDC_DELETED_AT + ), + configuredSyncMode = ConfiguredSyncMode.INCREMENTAL, + configuredPrimaryKey = listOf(k), + configuredCursor = GlobalCursor, + ) + + val global = Global(listOf(stream)) + + fun stateQuerier( + globalStateValue: OpaqueStateValue? = null, + streamStateValue: OpaqueStateValue? = null + ): StateQuerier = + object : StateQuerier { + override val feeds: List = listOf(global, stream) + + override fun current(feed: Feed): OpaqueStateValue? = + when (feed) { + is Global -> globalStateValue + is Stream -> streamStateValue + } + } + + fun Feed.bootstrap(stateQuerier: StateQuerier): FeedBootstrap<*> = + FeedBootstrap.create(outputConsumer, metaFieldDecorator, stateQuerier, this) + + fun expected(vararg data: String): List { + val ts = outputConsumer.emittedAt.toEpochMilli() + return data.map { """{"namespace":"ns","stream":"tbl","data":$it,"emitted_at":$ts}""" } + } + + @Test + fun testGlobalColdStart() { + val globalBootstrap: FeedBootstrap<*> = global.bootstrap(stateQuerier()) + Assertions.assertNull(globalBootstrap.currentState) + Assertions.assertEquals(1, globalBootstrap.streamRecordConsumers().size) + val (actualStreamID, consumer) = globalBootstrap.streamRecordConsumers().toList().first() + Assertions.assertEquals(stream.id, actualStreamID) + consumer.accept(Jsons.readTree(GLOBAL_RECORD_DATA) as ObjectNode, changes = null) + Assertions.assertEquals( + expected(GLOBAL_RECORD_DATA), + outputConsumer.records().map(Jsons::writeValueAsString) + ) + } + + @Test + fun testGlobalWarmStart() { + val globalBootstrap: FeedBootstrap<*> = + global.bootstrap(stateQuerier(globalStateValue = Jsons.objectNode())) + Assertions.assertEquals(Jsons.objectNode(), globalBootstrap.currentState) + Assertions.assertEquals(1, globalBootstrap.streamRecordConsumers().size) + val (actualStreamID, consumer) = globalBootstrap.streamRecordConsumers().toList().first() + Assertions.assertEquals(stream.id, actualStreamID) + consumer.accept(Jsons.readTree(GLOBAL_RECORD_DATA) as ObjectNode, changes = null) + Assertions.assertEquals( + expected(GLOBAL_RECORD_DATA), + outputConsumer.records().map(Jsons::writeValueAsString) + ) + } + + @Test + fun testStreamColdStart() { + val streamBootstrap: FeedBootstrap<*> = + stream.bootstrap(stateQuerier(globalStateValue = Jsons.objectNode())) + Assertions.assertNull(streamBootstrap.currentState) + Assertions.assertEquals(1, streamBootstrap.streamRecordConsumers().size) + val (actualStreamID, consumer) = streamBootstrap.streamRecordConsumers().toList().first() + Assertions.assertEquals(stream.id, actualStreamID) + consumer.accept(Jsons.readTree(STREAM_RECORD_INPUT_DATA) as ObjectNode, changes = null) + Assertions.assertEquals( + expected(STREAM_RECORD_OUTPUT_DATA), + outputConsumer.records().map(Jsons::writeValueAsString) + ) + } + + @Test + fun testStreamWarmStart() { + val streamBootstrap: FeedBootstrap<*> = + stream.bootstrap( + stateQuerier( + globalStateValue = Jsons.objectNode(), + streamStateValue = Jsons.arrayNode(), + ) + ) + Assertions.assertEquals(Jsons.arrayNode(), streamBootstrap.currentState) + Assertions.assertEquals(1, streamBootstrap.streamRecordConsumers().size) + val (actualStreamID, consumer) = streamBootstrap.streamRecordConsumers().toList().first() + Assertions.assertEquals(stream.id, actualStreamID) + consumer.accept(Jsons.readTree(STREAM_RECORD_INPUT_DATA) as ObjectNode, changes = null) + Assertions.assertEquals( + expected(STREAM_RECORD_OUTPUT_DATA), + outputConsumer.records().map(Jsons::writeValueAsString) + ) + } + + @Test + fun testChanges() { + val stateQuerier = + object : StateQuerier { + override val feeds: List = listOf(stream) + override fun current(feed: Feed): OpaqueStateValue? = null + } + val streamBootstrap = stream.bootstrap(stateQuerier) as StreamFeedBootstrap + val consumer: StreamRecordConsumer = streamBootstrap.streamRecordConsumer() + val changes = + mapOf( + k to FieldValueChange.RECORD_SIZE_LIMITATION_TRUNCATION, + v to FieldValueChange.RETRIEVAL_FAILURE_TOTAL, + ) + consumer.accept(Jsons.readTree("""{"k":1}""") as ObjectNode, changes) + Assertions.assertEquals( + listOf( + Jsons.writeValueAsString( + Jsons.readTree( + """{ + |"namespace":"ns", + |"stream":"tbl", + |"data":{ + |"k":1,"v":null, + |"_ab_cdc_lsn":null,"_ab_cdc_updated_at":null,"_ab_cdc_deleted_at":null}, + |"emitted_at":3133641600000, + |"meta":{"changes":[ + |{"field":"k","change":"TRUNCATED","reason":"SOURCE_RECORD_SIZE_LIMITATION"}, + |{"field":"v","change":"NULLED","reason":"SOURCE_RETRIEVAL_ERROR"} + |]}}""".trimMargin() + ) + ) + ), + outputConsumer.records().map(Jsons::writeValueAsString) + ) + } + + companion object { + const val GLOBAL_RECORD_DATA = + """{"k":1,"v":"foo","_ab_cdc_lsn":123,"_ab_cdc_updated_at":"2024-03-01T01:02:03.456789","_ab_cdc_deleted_at":null}""" + const val STREAM_RECORD_INPUT_DATA = """{"k":2,"v":"bar"}""" + const val STREAM_RECORD_OUTPUT_DATA = + """{"k":2,"v":"bar","_ab_cdc_lsn":{},"_ab_cdc_updated_at":"2069-04-20T00:00:00.000000Z","_ab_cdc_deleted_at":null}""" + } +} diff --git a/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/RootReaderIntegrationTest.kt b/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/RootReaderIntegrationTest.kt index 1932910e8dfa..b67f938c1dfe 100644 --- a/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/RootReaderIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/RootReaderIntegrationTest.kt @@ -3,10 +3,13 @@ package io.airbyte.cdk.read import com.fasterxml.jackson.databind.JsonNode import com.fasterxml.jackson.databind.node.ArrayNode +import com.fasterxml.jackson.databind.node.ObjectNode import io.airbyte.cdk.ClockFactory import io.airbyte.cdk.ConfigErrorException import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.OpaqueStateValue +import io.airbyte.cdk.discover.MetaField +import io.airbyte.cdk.discover.MetaFieldDecorator import io.airbyte.cdk.output.BufferingOutputConsumer import io.airbyte.cdk.util.Jsons import io.airbyte.protocol.models.v0.AirbyteMessage @@ -17,6 +20,7 @@ import io.airbyte.protocol.models.v0.StreamDescriptor import io.github.oshai.kotlinlogging.KotlinLogging import java.lang.RuntimeException import java.time.Duration +import java.time.OffsetDateTime import kotlin.random.Random import kotlin.time.toKotlinDuration import kotlinx.coroutines.Dispatchers @@ -118,6 +122,7 @@ class RootReaderIntegrationTest { slowHeartbeat, excessiveTimeout, testOutputConsumer, + NoOpMetaFieldDecorator, listOf( TestPartitionsCreatorFactory(Semaphore(CONSTRAINED), *testCases.toTypedArray()) ), @@ -163,6 +168,7 @@ class RootReaderIntegrationTest { slowHeartbeat, excessiveTimeout, testOutputConsumer, + NoOpMetaFieldDecorator, listOf( TestPartitionsCreatorFactory(Semaphore(CONSTRAINED), *testCases.toTypedArray()) ), @@ -210,6 +216,7 @@ class RootReaderIntegrationTest { slowHeartbeat, excessiveTimeout, testOutputConsumer, + NoOpMetaFieldDecorator, listOf( ConfigErrorThrowingGlobalPartitionsCreatorFactory( Semaphore(CONSTRAINED), @@ -259,7 +266,7 @@ data class TestCase( val stream: Stream = Stream( id = StreamIdentifier.from(StreamDescriptor().withName(name).withNamespace("test")), - fields = listOf(), + schema = emptySet(), configuredSyncMode = ConfiguredSyncMode.FULL_REFRESH, configuredPrimaryKey = null, configuredCursor = null, @@ -273,6 +280,7 @@ data class TestCase( slowHeartbeat, excessiveTimeout, testOutputConsumer, + NoOpMetaFieldDecorator, listOf(TestPartitionsCreatorFactory(Semaphore(resource), this)), ) try { @@ -623,18 +631,15 @@ open class TestPartitionsCreatorFactory( ) : PartitionsCreatorFactory { private val log = KotlinLogging.logger {} - override fun make( - stateQuerier: StateQuerier, - feed: Feed, - ): PartitionsCreator { - if (feed is Global) { + override fun make(feedBootstrap: FeedBootstrap<*>): PartitionsCreator { + if (feedBootstrap !is StreamFeedBootstrap) { return makeGlobalPartitionsCreator() } // For a stream feed, pick the CreatorCase in the corresponding TestCase // which is the successor of the one whose corresponding state is in the StateQuerier. - val testCase: TestCase = testCases.find { it.name == (feed as Stream).name }!! + val testCase: TestCase = testCases.find { it.name == feedBootstrap.feed.name }!! val checkpointedPartitionCreatorID: Long = - when (val opaqueStateValue: OpaqueStateValue? = stateQuerier.current(feed)) { + when (val opaqueStateValue: OpaqueStateValue? = feedBootstrap.currentState) { null -> 0L is ArrayNode -> opaqueStateValue.get(0).asLong() else -> TODO("unreachable code") @@ -684,6 +689,20 @@ class ConfigErrorThrowingGlobalPartitionsCreatorFactory( } } +data object NoOpMetaFieldDecorator : MetaFieldDecorator { + + override val globalCursor: MetaField? = null + + override val globalMetaFields: Set = emptySet() + + override fun decorateRecordData( + timestamp: OffsetDateTime, + globalStateValue: OpaqueStateValue?, + stream: Stream, + recordData: ObjectNode + ) {} +} + /** Tests should succeed and not timeout. */ val excessiveTimeout: Duration = Duration.ofSeconds(TEST_TIMEOUT_SECONDS * 2) diff --git a/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/StateManagerGlobalStatesTest.kt b/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/StateManagerGlobalStatesTest.kt index 15e6e5f30b4c..6f21a1d532c4 100644 --- a/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/StateManagerGlobalStatesTest.kt +++ b/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/StateManagerGlobalStatesTest.kt @@ -266,7 +266,10 @@ class StateManagerGlobalStatesTest { Assertions.assertEquals(1, global.streams.size) val kv: Stream = global.streams.first() Assertions.assertEquals("KV", kv.name) - Assertions.assertEquals(listOf("V", "K"), kv.fields.map { it.id }) + Assertions.assertEquals( + listOf("V", "K", "_ab_cdc_lsn", "_ab_cdc_updated_at", "_ab_cdc_deleted_at"), + kv.schema.map { it.id }, + ) Assertions.assertEquals(listOf("K"), kv.configuredPrimaryKey?.map { it.id }) Assertions.assertEquals(ConfiguredSyncMode.INCREMENTAL, kv.configuredSyncMode) val events: Stream = streams.filter { it.id != kv.id }.first() diff --git a/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/StreamStatusManagerTest.kt b/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/StreamStatusManagerTest.kt index 0eced8069717..eb2b32be2d44 100644 --- a/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/StreamStatusManagerTest.kt +++ b/airbyte-cdk/bulk/core/extract/src/test/kotlin/io/airbyte/cdk/read/StreamStatusManagerTest.kt @@ -17,7 +17,7 @@ class StreamStatusManagerTest { val streamIncremental = Stream( id = StreamIdentifier.from(StreamDescriptor().withName("streamIncremental")), - fields = listOf(Field("v", IntFieldType)), + schema = setOf(Field("v", IntFieldType)), configuredSyncMode = ConfiguredSyncMode.INCREMENTAL, configuredPrimaryKey = null, configuredCursor = null, @@ -25,7 +25,7 @@ class StreamStatusManagerTest { val streamFullRefresh = Stream( id = StreamIdentifier.from(StreamDescriptor().withName("streamFullRefresh")), - fields = listOf(Field("v", IntFieldType)), + schema = setOf(Field("v", IntFieldType)), configuredSyncMode = ConfiguredSyncMode.FULL_REFRESH, configuredPrimaryKey = null, configuredCursor = null, diff --git a/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/ResourceDrivenMetadataQuerierFactory.kt b/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/ResourceDrivenMetadataQuerierFactory.kt index 403801695090..3c7074a9b479 100644 --- a/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/ResourceDrivenMetadataQuerierFactory.kt +++ b/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/ResourceDrivenMetadataQuerierFactory.kt @@ -73,12 +73,6 @@ class ResourceDrivenMetadataQuerierFactory( } override fun extraChecks() {} - override fun commonCursorOrNull(cursorColumnID: String): FieldOrMetaField? { - return when (cursorColumnID) { - CommonMetaField.CDC_LSN.id -> CommonMetaField.CDC_LSN - else -> null - } - } override fun close() { isClosed = true diff --git a/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/TestAirbyteStreamFactory.kt b/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/TestAirbyteStreamFactory.kt index c7d9c566460a..271a4585c4e2 100644 --- a/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/TestAirbyteStreamFactory.kt +++ b/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/TestAirbyteStreamFactory.kt @@ -4,7 +4,6 @@ package io.airbyte.cdk.discover -import com.fasterxml.jackson.databind.node.ObjectNode import io.airbyte.protocol.models.v0.AirbyteStream import io.airbyte.protocol.models.v0.SyncMode import io.micronaut.context.annotation.Requires @@ -14,18 +13,14 @@ import jakarta.inject.Singleton @Singleton @Requires(env = [Environment.TEST]) @Requires(notEnv = [Environment.CLI]) -class TestAirbyteStreamFactory : AirbyteStreamFactory { +class TestAirbyteStreamFactory( + val metaFieldDecorator: TestMetaFieldDecorator, +) : AirbyteStreamFactory { override fun createGlobal(discoveredStream: DiscoveredStream): AirbyteStream = AirbyteStreamFactory.createAirbyteStream(discoveredStream).apply { supportedSyncModes = listOf(SyncMode.FULL_REFRESH, SyncMode.INCREMENTAL) - (jsonSchema["properties"] as ObjectNode).apply { - for (metaField in CommonMetaField.entries) { - set(metaField.id, metaField.type.airbyteSchemaType.asJsonSchema()) - } - } - defaultCursorField = listOf(CommonMetaField.CDC_LSN.id) - sourceDefinedCursor = true + metaFieldDecorator.decorateAirbyteStream(this) if (discoveredStream.primaryKeyColumnIDs.isNotEmpty()) { sourceDefinedPrimaryKey = discoveredStream.primaryKeyColumnIDs isResumable = true diff --git a/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/TestMetaFieldDecorator.kt b/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/TestMetaFieldDecorator.kt new file mode 100644 index 000000000000..a28069a6f5e1 --- /dev/null +++ b/airbyte-cdk/bulk/core/extract/src/testFixtures/kotlin/io/airbyte/cdk/discover/TestMetaFieldDecorator.kt @@ -0,0 +1,52 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.discover + +import com.fasterxml.jackson.databind.JsonNode +import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.command.OpaqueStateValue +import io.airbyte.cdk.read.Stream +import io.airbyte.cdk.util.Jsons +import io.micronaut.context.annotation.Requires +import io.micronaut.context.env.Environment +import jakarta.inject.Singleton +import java.time.OffsetDateTime + +@Singleton +@Requires(env = [Environment.TEST]) +@Requires(notEnv = [Environment.CLI]) +class TestMetaFieldDecorator : MetaFieldDecorator { + + data object GlobalCursor : MetaField { + override val id: String = MetaField.META_PREFIX + "cdc_lsn" + override val type: FieldType = CdcStringMetaFieldType + } + + override val globalCursor: MetaField = GlobalCursor + + override val globalMetaFields: Set = + setOf(GlobalCursor, CommonMetaField.CDC_UPDATED_AT, CommonMetaField.CDC_DELETED_AT) + + override fun decorateRecordData( + timestamp: OffsetDateTime, + globalStateValue: OpaqueStateValue?, + stream: Stream, + recordData: ObjectNode + ) { + recordData.putNull(CommonMetaField.CDC_DELETED_AT.id) + recordData.set( + CommonMetaField.CDC_UPDATED_AT.id, + CdcOffsetDateTimeMetaFieldType.jsonEncoder.encode(timestamp) + ) + recordData.set( + GlobalCursor.id, + if (globalStateValue == null) { + Jsons.nullNode() + } else { + CdcStringMetaFieldType.jsonEncoder.encode(globalStateValue.toString()) + } + ) + } +} diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReader.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReader.kt index 20ce48d75b15..a2896a4bf7af 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReader.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReader.kt @@ -4,12 +4,12 @@ package io.airbyte.cdk.read.cdc -import io.airbyte.cdk.output.OutputConsumer +import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.read.ConcurrencyResource import io.airbyte.cdk.read.PartitionReadCheckpoint import io.airbyte.cdk.read.PartitionReader +import io.airbyte.cdk.read.StreamRecordConsumer import io.airbyte.cdk.util.Jsons -import io.airbyte.protocol.models.v0.AirbyteRecordMessage import io.debezium.embedded.EmbeddedEngineChangeEvent import io.debezium.engine.ChangeEvent import io.debezium.engine.DebeziumEngine @@ -29,7 +29,7 @@ import org.apache.kafka.connect.source.SourceRecord /** [PartitionReader] implementation for CDC with Debezium. */ class CdcPartitionReader>( val concurrencyResource: ConcurrencyResource, - val outputConsumer: OutputConsumer, + val streamRecordConsumers: Map, val readerOps: CdcPartitionReaderDebeziumOperations, val upperBound: T, val input: DebeziumInput, @@ -44,7 +44,8 @@ class CdcPartitionReader>( internal val numEvents = AtomicLong() internal val numTombstones = AtomicLong() internal val numHeartbeats = AtomicLong() - internal val numRecords = AtomicLong() + internal val numDiscardedRecords = AtomicLong() + internal val numEmittedRecords = AtomicLong() internal val numEventsWithoutSourceRecord = AtomicLong() internal val numSourceRecordsWithoutPosition = AtomicLong() internal val numEventValuesWithoutPosition = AtomicLong() @@ -92,7 +93,8 @@ class CdcPartitionReader>( val summary: Map = mapOf( "debezium-version" to debeziumVersion, - "records" to numRecords.get(), + "records-emitted" to numEmittedRecords.get(), + "records-discarded" to numDiscardedRecords.get(), "heartbeats" to numHeartbeats.get(), "tombstones" to numTombstones.get(), "events" to numEvents.get(), @@ -116,7 +118,7 @@ class CdcPartitionReader>( null } val output = DebeziumState(offset, schemaHistory) - return PartitionReadCheckpoint(readerOps.serialize(output), numRecords.get()) + return PartitionReadCheckpoint(readerOps.serialize(output), numEmittedRecords.get()) } inner class EventConsumer( @@ -146,10 +148,16 @@ class CdcPartitionReader>( } else { isRecord = true val debeziumRecordKey = DebeziumRecordKey(Jsons.readTree(event.key())) - val airbyteRecord: AirbyteRecordMessage = - readerOps.toAirbyteRecordMessage(debeziumRecordKey, debeziumRecordValue) - outputConsumer.accept(airbyteRecord) - numRecords.incrementAndGet() + val deserializedRecord: DeserializedRecord = + readerOps.deserialize(debeziumRecordKey, debeziumRecordValue) + val streamRecordConsumer: StreamRecordConsumer? = + streamRecordConsumers[deserializedRecord.streamID] + if (streamRecordConsumer == null) { + numDiscardedRecords.incrementAndGet() + } else { + streamRecordConsumer.accept(deserializedRecord.data, deserializedRecord.changes) + numEmittedRecords.incrementAndGet() + } } // Look for reasons to close down the engine. val closeReason: CloseReason? = run { diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreator.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreator.kt index 9a56066b1589..4ec20217d07b 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreator.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreator.kt @@ -5,13 +5,10 @@ package io.airbyte.cdk.read.cdc import io.airbyte.cdk.ConfigErrorException -import io.airbyte.cdk.command.OpaqueStateValue -import io.airbyte.cdk.output.OutputConsumer import io.airbyte.cdk.read.ConcurrencyResource -import io.airbyte.cdk.read.ConfiguredSyncMode +import io.airbyte.cdk.read.GlobalFeedBootstrap import io.airbyte.cdk.read.PartitionReader import io.airbyte.cdk.read.PartitionsCreator -import io.airbyte.cdk.read.StateQuerier import io.airbyte.cdk.read.Stream import io.github.oshai.kotlinlogging.KotlinLogging import java.util.concurrent.atomic.AtomicReference @@ -20,12 +17,10 @@ import java.util.concurrent.atomic.AtomicReference class CdcPartitionsCreator>( val concurrencyResource: ConcurrencyResource, val globalLockResource: CdcGlobalLockResource, - val stateQuerier: StateQuerier, - val outputConsumer: OutputConsumer, + val feedBootstrap: GlobalFeedBootstrap, val creatorOps: CdcPartitionsCreatorDebeziumOperations, val readerOps: CdcPartitionReaderDebeziumOperations, val upperBoundReference: AtomicReference, - val incumbentOpaqueStateValue: OpaqueStateValue?, ) : PartitionsCreator { private val log = KotlinLogging.logger {} private val acquiredThread = AtomicReference() @@ -44,10 +39,7 @@ class CdcPartitionsCreator>( override suspend fun run(): List { val activeStreams: List by lazy { - stateQuerier.feeds - .filterIsInstance() - .filter { it.configuredSyncMode == ConfiguredSyncMode.INCREMENTAL } - .filter { stateQuerier.current(it) != null } + feedBootstrap.feed.streams.filter { feedBootstrap.stateQuerier.current(it) != null } } val syntheticInput: DebeziumInput by lazy { creatorOps.synthesize() } // Ensure that the WAL position upper bound has been computed for this sync. @@ -57,22 +49,29 @@ class CdcPartitionsCreator>( } // Deserialize the incumbent state value, if it exists. val input: DebeziumInput = - if (incumbentOpaqueStateValue == null) { - syntheticInput - } else { - // validate if existing state is still valid on DB. - try { - creatorOps.deserialize(incumbentOpaqueStateValue, activeStreams) - } catch (ex: ConfigErrorException) { - log.error(ex) { "Existing state is invalid." } - globalLockResource.markCdcAsComplete() - throw ex + when (val incumbentOpaqueStateValue = feedBootstrap.currentState) { + null -> syntheticInput + else -> { + // validate if existing state is still valid on DB. + try { + creatorOps.deserialize(incumbentOpaqueStateValue, activeStreams) + } catch (ex: ConfigErrorException) { + log.error(ex) { "Existing state is invalid." } + globalLockResource.markCdcAsComplete() + throw ex + } } } // Build and return PartitionReader instance, if applicable. val partitionReader = - CdcPartitionReader(concurrencyResource, outputConsumer, readerOps, upperBound, input) + CdcPartitionReader( + concurrencyResource, + feedBootstrap.streamRecordConsumers(), + readerOps, + upperBound, + input + ) if (input.isSynthetic) { // Handle synthetic offset edge-case, which always needs to run. // Debezium needs to run to generate the full state, which might include schema history. diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorFactory.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorFactory.kt index dfbb73d2e56a..c7aa758be6bf 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorFactory.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorFactory.kt @@ -4,14 +4,11 @@ package io.airbyte.cdk.read.cdc -import io.airbyte.cdk.command.OpaqueStateValue -import io.airbyte.cdk.output.OutputConsumer import io.airbyte.cdk.read.ConcurrencyResource -import io.airbyte.cdk.read.Feed -import io.airbyte.cdk.read.Global +import io.airbyte.cdk.read.FeedBootstrap +import io.airbyte.cdk.read.GlobalFeedBootstrap import io.airbyte.cdk.read.PartitionsCreator import io.airbyte.cdk.read.PartitionsCreatorFactory -import io.airbyte.cdk.read.StateQuerier import io.micronaut.core.annotation.Order import jakarta.inject.Singleton import java.util.concurrent.atomic.AtomicReference @@ -22,7 +19,6 @@ import java.util.concurrent.atomic.AtomicReference class CdcPartitionsCreatorFactory>( val concurrencyResource: ConcurrencyResource, val globalLockResource: CdcGlobalLockResource, - val outputConsumer: OutputConsumer, val debeziumOps: DebeziumOperations, ) : PartitionsCreatorFactory { @@ -32,21 +28,18 @@ class CdcPartitionsCreatorFactory>( */ private val upperBoundReference = AtomicReference() - override fun make(stateQuerier: StateQuerier, feed: Feed): PartitionsCreator? { - if (feed !is Global) { + override fun make(feedBootstrap: FeedBootstrap<*>): PartitionsCreator? { + if (feedBootstrap !is GlobalFeedBootstrap) { // Fall through on non-Global streams. return null } - val opaqueStateValue: OpaqueStateValue? = stateQuerier.current(feed) return CdcPartitionsCreator( concurrencyResource, globalLockResource, - stateQuerier, - outputConsumer, + feedBootstrap, debeziumOps, debeziumOps, upperBoundReference, - opaqueStateValue, ) } } diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/DebeziumOperations.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/DebeziumOperations.kt index f152fc9c656b..990924bcfcdb 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/DebeziumOperations.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/DebeziumOperations.kt @@ -4,9 +4,12 @@ package io.airbyte.cdk.read.cdc +import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.OpaqueStateValue +import io.airbyte.cdk.discover.Field +import io.airbyte.cdk.read.FieldValueChange import io.airbyte.cdk.read.Stream -import io.airbyte.protocol.models.v0.AirbyteRecordMessage import org.apache.kafka.connect.source.SourceRecord /** Stateless connector-specific Debezium operations. */ @@ -27,11 +30,8 @@ interface CdcPartitionsCreatorDebeziumOperations> { interface CdcPartitionReaderDebeziumOperations> { - /** Transforms a [DebeziumRecordValue] into an [AirbyteRecordMessage]. */ - fun toAirbyteRecordMessage( - key: DebeziumRecordKey, - value: DebeziumRecordValue - ): AirbyteRecordMessage + /** Transforms a [DebeziumRecordValue] into a [DeserializedRecord]. */ + fun deserialize(key: DebeziumRecordKey, value: DebeziumRecordValue): DeserializedRecord /** Maps a [DebeziumState] to an [OpaqueStateValue]. */ fun serialize(debeziumState: DebeziumState): OpaqueStateValue @@ -42,3 +42,10 @@ interface CdcPartitionReaderDebeziumOperations> { /** Tries to extract the WAL position from a [SourceRecord]. */ fun position(sourceRecord: SourceRecord): T? } + +/** [DeserializedRecord]s are used to generate Airbyte RECORD messages. */ +data class DeserializedRecord( + val streamID: StreamIdentifier, + val data: ObjectNode, + val changes: Map, +) diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReaderTest.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReaderTest.kt index a0fa0aaa1779..6f9d1da1b6e8 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReaderTest.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReaderTest.kt @@ -21,6 +21,7 @@ import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.OpaqueStateValue import io.airbyte.cdk.discover.Field import io.airbyte.cdk.discover.IntFieldType +import io.airbyte.cdk.discover.TestMetaFieldDecorator import io.airbyte.cdk.output.BufferingOutputConsumer import io.airbyte.cdk.read.ConcurrencyResource import io.airbyte.cdk.read.ConfiguredSyncMode @@ -28,6 +29,7 @@ import io.airbyte.cdk.read.Global import io.airbyte.cdk.read.PartitionReadCheckpoint import io.airbyte.cdk.read.PartitionReader import io.airbyte.cdk.read.Stream +import io.airbyte.cdk.read.StreamRecordConsumer import io.airbyte.cdk.testcontainers.TestContainerFactory import io.airbyte.cdk.util.Jsons import io.airbyte.protocol.models.v0.AirbyteRecordMessage @@ -77,10 +79,10 @@ sealed class CdcPartitionReaderTest, C : AutoCloseable>( val stream = Stream( id = StreamIdentifier.from(StreamDescriptor().withName("tbl").withNamespace(namespace)), - fields = listOf(Field("v", IntFieldType)), + schema = setOf(Field("v", IntFieldType), TestMetaFieldDecorator.GlobalCursor), configuredSyncMode = ConfiguredSyncMode.INCREMENTAL, configuredPrimaryKey = null, - configuredCursor = null, + configuredCursor = TestMetaFieldDecorator.GlobalCursor, ) val global: Global @@ -164,10 +166,22 @@ sealed class CdcPartitionReaderTest, C : AutoCloseable>( upperBound: T, ): ReadResult { val outputConsumer = BufferingOutputConsumer(ClockFactory().fixed()) + val streamRecordConsumers: Map = + mapOf( + stream.id to + StreamRecordConsumer { recordData: ObjectNode, _ -> + outputConsumer.accept( + AirbyteRecordMessage() + .withStream(stream.name) + .withNamespace(stream.namespace) + .withData(recordData) + ) + } + ) val reader = CdcPartitionReader( ConcurrencyResource(1), - outputConsumer, + streamRecordConsumers, this, upperBound, input, @@ -190,11 +204,15 @@ sealed class CdcPartitionReaderTest, C : AutoCloseable>( // Sanity checks. If any of these fail, particularly after a debezium version change, // it's important to understand why. Assertions.assertEquals(checkpoint.numRecords.toInt(), outputConsumer.records().size) - Assertions.assertEquals(checkpoint.numRecords, reader.numRecords.get()) + Assertions.assertEquals(checkpoint.numRecords, reader.numEmittedRecords.get()) Assertions.assertEquals( reader.numEvents.get(), - reader.numRecords.get() + reader.numHeartbeats.get() + reader.numTombstones.get() + reader.numEmittedRecords.get() + + reader.numDiscardedRecords.get() + + reader.numHeartbeats.get() + + reader.numTombstones.get() ) + Assertions.assertEquals(0, reader.numDiscardedRecords.get()) Assertions.assertEquals(0, reader.numEventsWithoutSourceRecord.get()) Assertions.assertEquals(0, reader.numSourceRecordsWithoutPosition.get()) Assertions.assertEquals(0, reader.numEventValuesWithoutPosition.get()) @@ -224,10 +242,10 @@ sealed class CdcPartitionReaderTest, C : AutoCloseable>( data class Update(override val id: Int, val v: Int) : Record data class Delete(override val id: Int) : Record - override fun toAirbyteRecordMessage( + override fun deserialize( key: DebeziumRecordKey, value: DebeziumRecordValue, - ): AirbyteRecordMessage { + ): DeserializedRecord { val id: Int = key.element("id").asInt() val after: Int? = value.after["v"]?.asInt() val record: Record = @@ -238,7 +256,11 @@ sealed class CdcPartitionReaderTest, C : AutoCloseable>( } else { Update(id, after) } - return AirbyteRecordMessage().withData(Jsons.valueToTree(record)) + return DeserializedRecord( + streamID = stream.id, + data = Jsons.valueToTree(record) as ObjectNode, + changes = emptyMap(), + ) } override fun serialize(debeziumState: DebeziumState): OpaqueStateValue = @@ -642,10 +664,10 @@ class CdcPartitionReaderMongoTest : .withOffset() .buildMap() - override fun toAirbyteRecordMessage( + override fun deserialize( key: DebeziumRecordKey, value: DebeziumRecordValue - ): AirbyteRecordMessage { + ): DeserializedRecord { val id: Int = key.element("id").asInt() val record: Record = if (value.operation == "d") { @@ -668,6 +690,10 @@ class CdcPartitionReaderMongoTest : Insert(id, v) } } - return AirbyteRecordMessage().withData(Jsons.valueToTree(record)) + return DeserializedRecord( + streamID = stream.id, + data = Jsons.valueToTree(record), + changes = emptyMap(), + ) } } diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorTest.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorTest.kt index 1835a07038d0..e339e92d84d7 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorTest.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorTest.kt @@ -6,13 +6,13 @@ package io.airbyte.cdk.read.cdc import io.airbyte.cdk.ConfigErrorException import io.airbyte.cdk.StreamIdentifier -import io.airbyte.cdk.command.OpaqueStateValue import io.airbyte.cdk.discover.Field import io.airbyte.cdk.discover.StringFieldType -import io.airbyte.cdk.output.OutputConsumer +import io.airbyte.cdk.discover.TestMetaFieldDecorator import io.airbyte.cdk.read.ConcurrencyResource import io.airbyte.cdk.read.ConfiguredSyncMode import io.airbyte.cdk.read.Global +import io.airbyte.cdk.read.GlobalFeedBootstrap import io.airbyte.cdk.read.PartitionReader import io.airbyte.cdk.read.StateQuerier import io.airbyte.cdk.read.Stream @@ -25,6 +25,7 @@ import java.util.concurrent.atomic.AtomicReference import kotlinx.coroutines.runBlocking import org.junit.Assert.assertThrows import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.ExtendWith @@ -38,21 +39,21 @@ class CdcPartitionsCreatorTest { @MockK(relaxUnitFun = true) lateinit var globalLockResource: CdcGlobalLockResource - @MockK lateinit var outputConsumer: OutputConsumer - @MockK lateinit var creatorOps: CdcPartitionsCreatorDebeziumOperations @MockK lateinit var readerOps: CdcPartitionReaderDebeziumOperations @MockK lateinit var stateQuerier: StateQuerier + @MockK lateinit var globalFeedBootstrap: GlobalFeedBootstrap + val stream = Stream( id = StreamIdentifier.from(StreamDescriptor().withName("test")), - fields = listOf(Field("test", StringFieldType)), + schema = setOf(Field("test", StringFieldType), TestMetaFieldDecorator.GlobalCursor), configuredSyncMode = ConfiguredSyncMode.INCREMENTAL, configuredPrimaryKey = null, - configuredCursor = null, + configuredCursor = TestMetaFieldDecorator.GlobalCursor, ) val global = Global(listOf(stream)) @@ -64,21 +65,36 @@ class CdcPartitionsCreatorTest { CdcPartitionsCreator( concurrencyResource, globalLockResource, - stateQuerier, - outputConsumer, + globalFeedBootstrap, creatorOps, readerOps, upperBoundReference, - stateQuerier.current(global), ) + val syntheticOffset = DebeziumOffset(mapOf(Jsons.objectNode() to Jsons.objectNode())) + val incumbentOffset = DebeziumOffset(mapOf(Jsons.objectNode() to Jsons.objectNode())) + val syntheticInput = + DebeziumInput( + properties = emptyMap(), + state = DebeziumState(offset = syntheticOffset, schemaHistory = null), + isSynthetic = true, + ) + + @BeforeEach + fun setup() { + every { globalFeedBootstrap.feed } returns global + every { globalFeedBootstrap.stateQuerier } returns stateQuerier + every { globalFeedBootstrap.streamRecordConsumers() } returns emptyMap() + every { stateQuerier.feeds } returns listOf(global, stream) + every { creatorOps.position(syntheticOffset) } returns 123L + every { creatorOps.position(incumbentOffset) } returns 123L + every { creatorOps.synthesize() } returns syntheticInput + } + @Test fun testCreateWithSyntheticOffset() { - every { stateQuerier.feeds } returns listOf(global, stream) - val incumbentGlobalStateValue: OpaqueStateValue? = null - every { stateQuerier.current(global) } returns incumbentGlobalStateValue - val incumbentStreamStateValue: OpaqueStateValue? = null - every { stateQuerier.current(stream) } returns incumbentStreamStateValue + every { globalFeedBootstrap.currentState } returns null + every { stateQuerier.current(stream) } returns null val syntheticOffset = DebeziumOffset(mapOf(Jsons.nullNode() to Jsons.nullNode())) every { creatorOps.position(syntheticOffset) } returns 123L val syntheticInput = @@ -98,20 +114,15 @@ class CdcPartitionsCreatorTest { @Test fun testCreateWithDeserializedOffset() { - every { stateQuerier.feeds } returns listOf(global, stream) - val incumbentGlobalStateValue: OpaqueStateValue = Jsons.nullNode() - every { stateQuerier.current(global) } returns incumbentGlobalStateValue - val incumbentStreamStateValue: OpaqueStateValue = Jsons.nullNode() - every { stateQuerier.current(stream) } returns incumbentStreamStateValue - val incumbentOffset = DebeziumOffset(mapOf(Jsons.nullNode() to Jsons.nullNode())) - every { creatorOps.position(incumbentOffset) } returns 123L + every { globalFeedBootstrap.currentState } returns Jsons.objectNode() + every { stateQuerier.current(stream) } returns Jsons.objectNode() val deserializedInput = DebeziumInput( properties = emptyMap(), state = DebeziumState(offset = incumbentOffset, schemaHistory = null), isSynthetic = false, ) - every { creatorOps.deserialize(incumbentGlobalStateValue, listOf(stream)) } returns + every { creatorOps.deserialize(Jsons.objectNode(), listOf(stream)) } returns deserializedInput upperBoundReference.set(1_000_000L) val readers: List = runBlocking { creator.run() } @@ -123,20 +134,15 @@ class CdcPartitionsCreatorTest { @Test fun testCreateNothing() { - every { stateQuerier.feeds } returns listOf(global, stream) - val incumbentGlobalStateValue: OpaqueStateValue = Jsons.nullNode() - every { stateQuerier.current(global) } returns incumbentGlobalStateValue - val incumbentStreamStateValue: OpaqueStateValue = Jsons.nullNode() - every { stateQuerier.current(stream) } returns incumbentStreamStateValue - val incumbentOffset = DebeziumOffset(mapOf(Jsons.nullNode() to Jsons.nullNode())) - every { creatorOps.position(incumbentOffset) } returns 123L + every { globalFeedBootstrap.currentState } returns Jsons.objectNode() + every { stateQuerier.current(stream) } returns Jsons.objectNode() val deserializedInput = DebeziumInput( properties = emptyMap(), state = DebeziumState(offset = incumbentOffset, schemaHistory = null), isSynthetic = false, ) - every { creatorOps.deserialize(incumbentGlobalStateValue, listOf(stream)) } returns + every { creatorOps.deserialize(Jsons.objectNode(), listOf(stream)) } returns deserializedInput upperBoundReference.set(1L) val readers: List = runBlocking { creator.run() } @@ -145,24 +151,10 @@ class CdcPartitionsCreatorTest { @Test fun testCreateWithFailedValidation() { - every { stateQuerier.feeds } returns listOf(global, stream) - val incumbentGlobalStateValue: OpaqueStateValue = Jsons.nullNode() - every { stateQuerier.current(global) } returns incumbentGlobalStateValue - val incumbentStreamStateValue: OpaqueStateValue = Jsons.nullNode() - every { stateQuerier.current(stream) } returns incumbentStreamStateValue - val incumbentOffset = DebeziumOffset(mapOf(Jsons.nullNode() to Jsons.nullNode())) - every { creatorOps.position(incumbentOffset) } returns 123L - val syntheticOffset = DebeziumOffset(mapOf(Jsons.nullNode() to Jsons.nullNode())) - val syntheticInput = - DebeziumInput( - properties = emptyMap(), - state = DebeziumState(offset = syntheticOffset, schemaHistory = null), - isSynthetic = true, - ) - every { creatorOps.synthesize() } returns syntheticInput - every { creatorOps.deserialize(incumbentGlobalStateValue, listOf(stream)) } throws + every { globalFeedBootstrap.currentState } returns Jsons.objectNode() + every { stateQuerier.current(stream) } returns Jsons.objectNode() + every { creatorOps.deserialize(Jsons.objectNode(), listOf(stream)) } throws ConfigErrorException("invalid state value") - assertThrows(ConfigErrorException::class.java) { runBlocking { creator.run() } } } } diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/DebeziumPropertiesBuilderTest.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/DebeziumPropertiesBuilderTest.kt index 56aa4fa4a12d..c8afebf26c9a 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/DebeziumPropertiesBuilderTest.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/DebeziumPropertiesBuilderTest.kt @@ -9,6 +9,7 @@ import io.airbyte.cdk.discover.Field import io.airbyte.cdk.discover.IntFieldType import io.airbyte.cdk.discover.OffsetDateTimeFieldType import io.airbyte.cdk.discover.StringFieldType +import io.airbyte.cdk.discover.TestMetaFieldDecorator import io.airbyte.cdk.read.ConfiguredSyncMode import io.airbyte.cdk.read.Stream import io.airbyte.protocol.models.v0.StreamDescriptor @@ -46,10 +47,10 @@ class DebeziumPropertiesBuilderTest { StreamIdentifier.from( StreamDescriptor().withName(name).withNamespace(namespace) ), - fields = fields.toList(), + schema = fields.toSet() + setOf(TestMetaFieldDecorator.GlobalCursor), configuredSyncMode = ConfiguredSyncMode.INCREMENTAL, configuredPrimaryKey = null, - configuredCursor = null, + configuredCursor = TestMetaFieldDecorator.GlobalCursor, ) val streams: List = listOf( diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/discover/JdbcAirbyteStreamFactory.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/discover/JdbcAirbyteStreamFactory.kt index 5a19f8aac9c5..6c52a13b2fe9 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/discover/JdbcAirbyteStreamFactory.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/discover/JdbcAirbyteStreamFactory.kt @@ -1,7 +1,6 @@ /* Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ package io.airbyte.cdk.discover -import com.fasterxml.jackson.databind.node.ObjectNode import io.airbyte.cdk.jdbc.BinaryStreamFieldType import io.airbyte.cdk.jdbc.BooleanFieldType import io.airbyte.cdk.jdbc.CharacterStreamFieldType @@ -10,24 +9,21 @@ import io.airbyte.cdk.jdbc.JsonStringFieldType import io.airbyte.cdk.jdbc.NCharacterStreamFieldType import io.airbyte.cdk.jdbc.NClobFieldType import io.airbyte.protocol.models.v0.SyncMode -import jakarta.inject.Singleton -@Singleton -class JdbcAirbyteStreamFactory : AirbyteStreamFactory { +/** [JdbcAirbyteStreamFactory] implements [createGlobal] and [createNonGlobal] for JDBC sourcesx. */ +interface JdbcAirbyteStreamFactory : AirbyteStreamFactory, MetaFieldDecorator { override fun createGlobal(discoveredStream: DiscoveredStream) = AirbyteStreamFactory.createAirbyteStream(discoveredStream).apply { - supportedSyncModes = listOf(SyncMode.FULL_REFRESH, SyncMode.INCREMENTAL) - (jsonSchema["properties"] as ObjectNode).apply { - for (metaField in CommonMetaField.entries) { - set(metaField.id, metaField.type.airbyteSchemaType.asJsonSchema()) - } - } - defaultCursorField = listOf(CommonMetaField.CDC_LSN.id) - sourceDefinedCursor = true if (hasValidPrimaryKey(discoveredStream)) { + decorateAirbyteStream(this) + supportedSyncModes = listOf(SyncMode.FULL_REFRESH, SyncMode.INCREMENTAL) sourceDefinedPrimaryKey = discoveredStream.primaryKeyColumnIDs isResumable = true + } else { + supportedSyncModes = listOf(SyncMode.FULL_REFRESH) + sourceDefinedCursor = false + isResumable = false } } diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/discover/JdbcMetadataQuerier.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/discover/JdbcMetadataQuerier.kt index 920a3baf39fe..9340c86e31f2 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/discover/JdbcMetadataQuerier.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/discover/JdbcMetadataQuerier.kt @@ -325,13 +325,6 @@ class JdbcMetadataQuerier( checkQueries.executeAll(conn) } - override fun commonCursorOrNull(cursorColumnID: String): FieldOrMetaField? { - return when (cursorColumnID) { - CommonMetaField.CDC_LSN.id -> CommonMetaField.CDC_LSN - else -> null - } - } - override fun close() { log.info { "Closing JDBC connection." } conn.close() diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcPartitionFactory.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcPartitionFactory.kt index c2883b507078..bb9c463c2322 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcPartitionFactory.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcPartitionFactory.kt @@ -6,6 +6,7 @@ package io.airbyte.cdk.read import com.fasterxml.jackson.databind.JsonNode import io.airbyte.cdk.ConfigErrorException +import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.JdbcSourceConfiguration import io.airbyte.cdk.command.OpaqueStateValue import io.airbyte.cdk.discover.Field @@ -31,16 +32,17 @@ class DefaultJdbcPartitionFactory( DefaultJdbcPartition, > { - private val streamStates = ConcurrentHashMap() + private val streamStates = ConcurrentHashMap() - override fun streamState(stream: Stream): DefaultJdbcStreamState = - streamStates.getOrPut(stream.label) { DefaultJdbcStreamState(sharedState, stream) } + override fun streamState(streamFeedBootstrap: StreamFeedBootstrap): DefaultJdbcStreamState = + streamStates.getOrPut(streamFeedBootstrap.feed.id) { + DefaultJdbcStreamState(sharedState, streamFeedBootstrap) + } - override fun create( - stream: Stream, - opaqueStateValue: OpaqueStateValue?, - ): DefaultJdbcPartition? { - val streamState: DefaultJdbcStreamState = streamState(stream) + override fun create(streamFeedBootstrap: StreamFeedBootstrap): DefaultJdbcPartition? { + val stream: Stream = streamFeedBootstrap.feed + val streamState: DefaultJdbcStreamState = streamState(streamFeedBootstrap) + val opaqueStateValue: OpaqueStateValue? = streamFeedBootstrap.currentState if (opaqueStateValue == null) { return coldStart(streamState) } @@ -142,7 +144,7 @@ class DefaultJdbcPartitionFactory( return null } val cursorLabel: String = cursors.keys.first() - val cursor: FieldOrMetaField? = stream.fields.find { it.id == cursorLabel } + val cursor: FieldOrMetaField? = stream.schema.find { it.id == cursorLabel } if (cursor !is Field) { handler.accept( InvalidCursor(stream.id, cursorLabel), diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcSharedState.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcSharedState.kt index 3ce39e694f5d..e9db8dde1358 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcSharedState.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcSharedState.kt @@ -6,7 +6,6 @@ package io.airbyte.cdk.read import io.airbyte.cdk.command.JdbcSourceConfiguration import io.airbyte.cdk.jdbc.DefaultJdbcConstants -import io.airbyte.cdk.output.OutputConsumer import jakarta.inject.Singleton import java.time.Instant @@ -14,7 +13,6 @@ import java.time.Instant @Singleton class DefaultJdbcSharedState( override val configuration: JdbcSourceConfiguration, - override val outputConsumer: OutputConsumer, override val selectQuerier: SelectQuerier, val constants: DefaultJdbcConstants, internal val concurrencyResource: ConcurrencyResource, diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcStreamState.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcStreamState.kt index f4c16b87a722..10533a9f5138 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcStreamState.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/DefaultJdbcStreamState.kt @@ -10,7 +10,7 @@ import java.util.concurrent.atomic.AtomicReference /** Default implementation of [JdbcStreamState]. */ class DefaultJdbcStreamState( override val sharedState: DefaultJdbcSharedState, - override val stream: Stream, + override val streamFeedBootstrap: StreamFeedBootstrap, ) : JdbcStreamState { override var cursorUpperBound: JsonNode? diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionFactory.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionFactory.kt index 6d885654b8c3..e0da0d5c1bb0 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionFactory.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionFactory.kt @@ -18,14 +18,14 @@ interface JdbcPartitionFactory< /** The state shared by all partitions. Includes global resources. */ val sharedState: A - /** Get or create the [JdbcStreamState] for a [stream]. */ - fun streamState(stream: Stream): S + /** Get or create the [JdbcStreamState] for a [Stream]. */ + fun streamState(streamFeedBootstrap: StreamFeedBootstrap): S /** - * Deserializes [opaqueStateValue] and creates a [JdbcPartition] instance corresponding to all - * remaining unread data in the [stream], if any; null otherwise. + * Deserializes the current [OpaqueStateValue] and creates a [JdbcPartition] instance + * corresponding to all remaining unread data in the [Stream], if any; null otherwise. */ - fun create(stream: Stream, opaqueStateValue: OpaqueStateValue?): P? + fun create(streamFeedBootstrap: StreamFeedBootstrap): P? /** Subdivides the [unsplitPartition] by splitting at the [opaqueStateValues], if possible. */ fun split(unsplitPartition: P, opaqueStateValues: List): List

diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionReader.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionReader.kt index a06788ae646c..e5e05a1e2569 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionReader.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionReader.kt @@ -1,13 +1,9 @@ /* Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ package io.airbyte.cdk.read -import com.fasterxml.jackson.databind.JsonNode import com.fasterxml.jackson.databind.node.ObjectNode import io.airbyte.cdk.TransientErrorException import io.airbyte.cdk.command.OpaqueStateValue -import io.airbyte.cdk.output.OutputConsumer -import io.airbyte.cdk.util.Jsons -import io.airbyte.protocol.models.v0.AirbyteRecordMessage import java.time.Instant import java.util.concurrent.atomic.AtomicBoolean import java.util.concurrent.atomic.AtomicLong @@ -23,8 +19,9 @@ sealed class JdbcPartitionReader

>( val streamState: JdbcStreamState<*> = partition.streamState val stream: Stream = streamState.stream val sharedState: JdbcSharedState = streamState.sharedState - val outputConsumer: OutputConsumer = sharedState.outputConsumer val selectQuerier: SelectQuerier = sharedState.selectQuerier + val streamRecordConsumer: StreamRecordConsumer = + streamState.streamFeedBootstrap.streamRecordConsumer() private val acquiredResources = AtomicReference() @@ -40,22 +37,9 @@ sealed class JdbcPartitionReader

>( } fun out(record: ObjectNode) { - for (fieldName in streamFieldNames) { - outData.set(fieldName, record[fieldName] ?: Jsons.nullNode()) - } - outputConsumer.accept(msg) + streamRecordConsumer.accept(record, changes = null) } - private val outData: ObjectNode = Jsons.objectNode() - - private val msg = - AirbyteRecordMessage() - .withStream(stream.name) - .withNamespace(stream.namespace) - .withData(outData) - - val streamFieldNames: List = stream.fields.map { it.id } - override fun releaseResources() { acquiredResources.getAndSet(null)?.close() } @@ -71,7 +55,7 @@ sealed class JdbcPartitionReader

>( } /** JDBC implementation of [PartitionReader] which reads the [partition] in its entirety. */ -open class JdbcNonResumablePartitionReader

>( +class JdbcNonResumablePartitionReader

>( partition: P, ) : JdbcPartitionReader

(partition) { @@ -116,7 +100,7 @@ open class JdbcNonResumablePartitionReader

>( * JDBC implementation of [PartitionReader] which reads as much as possible of the [partition], in * order, before timing out. */ -open class JdbcResumablePartitionReader

>( +class JdbcResumablePartitionReader

>( partition: P, ) : JdbcPartitionReader

(partition) { diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreator.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreator.kt index 7c371d6f41b6..91d9a143d460 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreator.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreator.kt @@ -5,7 +5,6 @@ import com.fasterxml.jackson.databind.JsonNode import com.fasterxml.jackson.databind.node.ObjectNode import io.airbyte.cdk.command.JdbcSourceConfiguration import io.airbyte.cdk.command.OpaqueStateValue -import io.airbyte.cdk.output.OutputConsumer import io.airbyte.cdk.util.Jsons import io.github.oshai.kotlinlogging.KotlinLogging import java.util.concurrent.atomic.AtomicReference @@ -26,7 +25,6 @@ sealed class JdbcPartitionsCreator< val stream: Stream = streamState.stream val sharedState: A = streamState.sharedState val configuration: JdbcSourceConfiguration = sharedState.configuration - val outputConsumer: OutputConsumer = sharedState.outputConsumer val selectQuerier: SelectQuerier = sharedState.selectQuerier private val acquiredResources = AtomicReference() diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreatorFactory.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreatorFactory.kt index 61c69b0fbe6c..c4bbdf4cbe4d 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreatorFactory.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreatorFactory.kt @@ -4,7 +4,6 @@ package io.airbyte.cdk.read -import io.airbyte.cdk.command.OpaqueStateValue import io.airbyte.cdk.jdbc.JDBC_PROPERTY_PREFIX import io.micronaut.context.annotation.Requires import jakarta.inject.Singleton @@ -18,22 +17,10 @@ sealed class JdbcPartitionsCreatorFactory< val partitionFactory: JdbcPartitionFactory, ) : PartitionsCreatorFactory { - override fun make( - stateQuerier: StateQuerier, - feed: Feed, - ): PartitionsCreator? { - val opaqueStateValue: OpaqueStateValue? = stateQuerier.current(feed) - return when (feed) { - is Global -> null - is Stream -> { - val partition: P? = partitionFactory.create(feed, opaqueStateValue) - if (partition == null) { - CreateNoPartitions - } else { - partitionsCreator(partition) - } - } - } + override fun make(feedBootstrap: FeedBootstrap<*>): PartitionsCreator? { + if (feedBootstrap !is StreamFeedBootstrap) return null + val partition: P = partitionFactory.create(feedBootstrap) ?: return CreateNoPartitions + return partitionsCreator(partition) } abstract fun partitionsCreator(partition: P): JdbcPartitionsCreator diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcSharedState.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcSharedState.kt index add04e66847e..f8d3f3316d38 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcSharedState.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcSharedState.kt @@ -6,7 +6,6 @@ package io.airbyte.cdk.read import com.fasterxml.jackson.databind.node.ObjectNode import io.airbyte.cdk.command.JdbcSourceConfiguration -import io.airbyte.cdk.output.OutputConsumer import io.micronaut.context.annotation.DefaultImplementation import java.time.Instant @@ -21,9 +20,6 @@ interface JdbcSharedState { /** Configuration for the JDBC source connector. */ val configuration: JdbcSourceConfiguration - /** Where the records get dumped into. */ - val outputConsumer: OutputConsumer - /** Queries the database. */ val selectQuerier: SelectQuerier diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcStreamState.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcStreamState.kt index 872340c4877c..a74df54ca558 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcStreamState.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/main/kotlin/io/airbyte/cdk/read/JdbcStreamState.kt @@ -13,7 +13,15 @@ import com.fasterxml.jackson.databind.JsonNode */ interface JdbcStreamState { + /** + * [StreamFeedBootstrap] instance passed to the [JdbcPartitionsCreatorFactory] instance which + * created this object. + */ + val streamFeedBootstrap: StreamFeedBootstrap + + /** Convenience getter for the current [Stream]. */ val stream: Stream + get() = streamFeedBootstrap.feed /** The transient state shared by all partitions. Includes global resources. */ val sharedState: A diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/h2source/H2SourceIntegrationTest.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/h2source/H2SourceIntegrationTest.kt index d108b7c6fbce..7b1fdbda691a 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/h2source/H2SourceIntegrationTest.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/h2source/H2SourceIntegrationTest.kt @@ -99,6 +99,20 @@ class H2SourceIntegrationTest { } } + @Test + fun testDiscoverFakeCdc() { + H2TestFixture().use { h2: H2TestFixture -> + h2.createConnection().use(Companion::prelude) + val configPojo = + H2SourceConfigurationSpecification().apply { + port = h2.port + database = h2.database + setCursorMethodValue(CdcCursor) + } + SyncsTestFixture.testDiscover(configPojo, "h2source/expected-fake-cdc-catalog.json") + } + } + @Test fun testReadStreams() { H2TestFixture().use { h2: H2TestFixture -> diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/DefaultJdbcPartitionFactoryTest.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/DefaultJdbcPartitionFactoryTest.kt index 46d1f1d14a5e..d54427efd06f 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/DefaultJdbcPartitionFactoryTest.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/DefaultJdbcPartitionFactoryTest.kt @@ -13,6 +13,7 @@ import io.airbyte.cdk.output.ResetStream import io.airbyte.cdk.read.TestFixtures.assertFailures import io.airbyte.cdk.read.TestFixtures.assertJsonEquals import io.airbyte.cdk.read.TestFixtures.assertQueryEquals +import io.airbyte.cdk.read.TestFixtures.bootstrap import io.airbyte.cdk.read.TestFixtures.factory import io.airbyte.cdk.read.TestFixtures.id import io.airbyte.cdk.read.TestFixtures.msg @@ -33,7 +34,7 @@ class DefaultJdbcPartitionFactoryTest { fun testColdStartUnsplittableSnapshot() { val stream = stream(withPK = false, withCursor = false) val factory = sharedState().factory() - val result = factory.create(stream, opaqueStateValue = null) + val result = factory.create(stream.bootstrap(opaqueStateValue = null)) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcUnsplittableSnapshotPartition) val partition = result as DefaultJdbcUnsplittableSnapshotPartition @@ -64,7 +65,7 @@ class DefaultJdbcPartitionFactoryTest { fun testColdStartUnsplittableSnapshotWithCursor() { val stream = stream(withPK = false) val factory = sharedState().factory() - val result = factory.create(stream, null) + val result = factory.create(stream.bootstrap(opaqueStateValue = null)) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcUnsplittableSnapshotWithCursorPartition) val partition = result as DefaultJdbcUnsplittableSnapshotWithCursorPartition @@ -100,7 +101,7 @@ class DefaultJdbcPartitionFactoryTest { fun testColdStartSplittableSnapshot() { val stream = stream(withCursor = false) val factory = sharedState().factory() - val result = factory.create(stream, opaqueStateValue = null) + val result = factory.create(stream.bootstrap(opaqueStateValue = null)) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcSplittableSnapshotPartition) val partition = result as DefaultJdbcSplittableSnapshotPartition @@ -165,7 +166,7 @@ class DefaultJdbcPartitionFactoryTest { fun testColdStartSplittableSnapshotWithCursor() { val stream = stream() val factory = sharedState().factory() - val result = factory.create(stream, null) + val result = factory.create(stream.bootstrap(opaqueStateValue = null)) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcSplittableSnapshotWithCursorPartition) val partition = result as DefaultJdbcSplittableSnapshotWithCursorPartition @@ -239,7 +240,7 @@ class DefaultJdbcPartitionFactoryTest { fun testInvalidPrimaryKey() { val stream = stream(withPK = false, withCursor = false) val factory = sharedState().factory() - val result = factory.create(stream, opaqueStateValue(pk = 22)) + val result = factory.create(stream.bootstrap(opaqueStateValue(pk = 22))) factory.assertFailures( InvalidPrimaryKey(stream.id, listOf(id.id)), ResetStream(stream.id), @@ -254,7 +255,7 @@ class DefaultJdbcPartitionFactoryTest { fun testInvalidCursor() { val stream = stream(withCursor = false) val factory = sharedState().factory() - val result = factory.create(stream, opaqueStateValue(cursor = cursorValue)) + val result = factory.create(stream.bootstrap(opaqueStateValue(cursor = cursorValue))) factory.assertFailures( InvalidCursor(stream.id, ts.id), ResetStream(stream.id), @@ -272,7 +273,7 @@ class DefaultJdbcPartitionFactoryTest { fun testWarmStartSnapshot() { val stream = stream(withCursor = false) val factory = sharedState().factory() - val result = factory.create(stream, opaqueStateValue(pk = 22)) + val result = factory.create(stream.bootstrap(opaqueStateValue(pk = 22))) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcSplittableSnapshotPartition) val partition = result as DefaultJdbcSplittableSnapshotPartition @@ -319,7 +320,7 @@ class DefaultJdbcPartitionFactoryTest { partition.completeState.assertJsonEquals(opaqueStateValue()) partition.incompleteState(record(pk = 10)).assertJsonEquals(opaqueStateValue(pk = 10)) // Check full refresh termination criteria - val finalResult = factory.create(stream, opaqueStateValue()) + val finalResult = factory.create(stream.bootstrap(opaqueStateValue())) factory.assertFailures() Assertions.assertNull(finalResult) } @@ -328,7 +329,8 @@ class DefaultJdbcPartitionFactoryTest { fun testWarmStartSnapshotWithCursor() { val stream = stream() val factory = sharedState().factory() - val result = factory.create(stream, opaqueStateValue(pk = 22, cursor = cursorValue)) + val result = + factory.create(stream.bootstrap(opaqueStateValue(pk = 22, cursor = cursorValue))) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcSplittableSnapshotWithCursorPartition) val partition = result as DefaultJdbcSplittableSnapshotWithCursorPartition @@ -378,7 +380,7 @@ class DefaultJdbcPartitionFactoryTest { .incompleteState(record(pk = 44)) .assertJsonEquals(opaqueStateValue(pk = 44, cursor = cursorValue)) // Check snapshot termination criteria and transition to cursor-based incremental - val finalResult = factory.create(stream, opaqueStateValue(cursor = cursorValue)) + val finalResult = factory.create(stream.bootstrap(opaqueStateValue(cursor = cursorValue))) factory.assertFailures() Assertions.assertTrue(finalResult is DefaultJdbcCursorIncrementalPartition) val finalPartition = finalResult as DefaultJdbcCursorIncrementalPartition @@ -391,7 +393,7 @@ class DefaultJdbcPartitionFactoryTest { fun testCursorIncremental() { val stream = stream(withPK = false) val factory = sharedState().factory() - val result = factory.create(stream, opaqueStateValue(cursor = cursorValue)) + val result = factory.create(stream.bootstrap(opaqueStateValue(cursor = cursorValue))) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcCursorIncrementalPartition) val partition = result as DefaultJdbcCursorIncrementalPartition @@ -464,14 +466,16 @@ class DefaultJdbcPartitionFactoryTest { .incompleteState(record(cursor = cursorValue.plusDays(1))) .assertJsonEquals(opaqueStateValue(cursor = cursorValue.plusDays(1))) // Check that subsequent non-terminal partition includes the lower bound - val nextResult = factory.create(stream, opaqueStateValue(cursor = cursorValue.plusDays(1))) + val nextResult = + factory.create(stream.bootstrap(opaqueStateValue(cursor = cursorValue.plusDays(1)))) factory.assertFailures() Assertions.assertTrue(nextResult is DefaultJdbcCursorIncrementalPartition) val nextPartition = nextResult as DefaultJdbcCursorIncrementalPartition sanityCheck(stream, factory, nextPartition) Assertions.assertTrue(nextPartition.isLowerBoundIncluded) // Check termination criteria - val finalResult = factory.create(stream, opaqueStateValue(cursor = cursorUpperBound)) + val finalResult = + factory.create(stream.bootstrap(opaqueStateValue(cursor = cursorUpperBound))) factory.assertFailures() Assertions.assertNull(finalResult) // Check split output diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/JdbcPartitionReaderTest.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/JdbcPartitionReaderTest.kt index bd94ba46997a..92defb3d77bb 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/JdbcPartitionReaderTest.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/JdbcPartitionReaderTest.kt @@ -8,6 +8,7 @@ import io.airbyte.cdk.TransientErrorException import io.airbyte.cdk.data.LocalDateCodec import io.airbyte.cdk.output.BufferingOutputConsumer import io.airbyte.cdk.read.TestFixtures.assertFailures +import io.airbyte.cdk.read.TestFixtures.bootstrap import io.airbyte.cdk.read.TestFixtures.factory import io.airbyte.cdk.read.TestFixtures.id import io.airbyte.cdk.read.TestFixtures.msg @@ -60,7 +61,7 @@ class JdbcPartitionReaderTest { maxSnapshotReadTime = java.time.Duration.ofMinutes(1), ) val factory = sharedState.factory() - val result = factory.create(stream, opaqueStateValue(cursor = cursorLowerBound)) + val result = factory.create(stream.bootstrap(opaqueStateValue(cursor = cursorLowerBound))) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcCursorIncrementalPartition) val partition = result as DefaultJdbcCursorIncrementalPartition @@ -91,7 +92,7 @@ class JdbcPartitionReaderTest { // Check output Assertions.assertEquals( "hello how are you today", - (sharedState.outputConsumer as BufferingOutputConsumer) + (partition.streamState.streamFeedBootstrap.outputConsumer as BufferingOutputConsumer) .records() .map { it.data["msg"].asText() } .joinToString(separator = " ") @@ -139,7 +140,7 @@ class JdbcPartitionReaderTest { maxSnapshotReadTime = java.time.Duration.ofMinutes(1), ) val factory = sharedState.factory() - val result = factory.create(stream, opaqueStateValue(cursor = cursorLowerBound)) + val result = factory.create(stream.bootstrap(opaqueStateValue(cursor = cursorLowerBound))) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcCursorIncrementalPartition) val partition = result as DefaultJdbcCursorIncrementalPartition @@ -180,7 +181,7 @@ class JdbcPartitionReaderTest { // Check output Assertions.assertEquals( "hello how", - (sharedState.outputConsumer as BufferingOutputConsumer) + (partition.streamState.streamFeedBootstrap.outputConsumer as BufferingOutputConsumer) .records() .map { it.data["msg"].asText() } .joinToString(separator = " ") @@ -228,7 +229,7 @@ class JdbcPartitionReaderTest { maxSnapshotReadTime = java.time.Duration.ofSeconds(1), ) val factory = sharedState.factory() - val result = factory.create(stream, opaqueStateValue(cursor = cursorLowerBound)) + val result = factory.create(stream.bootstrap(opaqueStateValue(cursor = cursorLowerBound))) factory.assertFailures() Assertions.assertTrue(result is DefaultJdbcCursorIncrementalPartition) val partition = result as DefaultJdbcCursorIncrementalPartition @@ -289,7 +290,8 @@ class JdbcPartitionReaderTest { maxSnapshotReadTime = java.time.Duration.ofSeconds(1), ) val factory2 = sharedState2.factory() - val result2 = factory2.create(stream2, opaqueStateValue(cursor = cursorLowerBound)) + val result2 = + factory2.create(stream2.bootstrap(opaqueStateValue(cursor = cursorLowerBound))) factory2.assertFailures() Assertions.assertTrue(result2 is DefaultJdbcCursorIncrementalPartition) val partition2 = result2 as DefaultJdbcCursorIncrementalPartition diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreatorTest.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreatorTest.kt index ee0010315ef0..bd11caff586a 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreatorTest.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/JdbcPartitionsCreatorTest.kt @@ -8,6 +8,7 @@ import io.airbyte.cdk.data.IntCodec import io.airbyte.cdk.data.LocalDateCodec import io.airbyte.cdk.jdbc.DefaultJdbcConstants import io.airbyte.cdk.read.TestFixtures.assertFailures +import io.airbyte.cdk.read.TestFixtures.bootstrap import io.airbyte.cdk.read.TestFixtures.factory import io.airbyte.cdk.read.TestFixtures.id import io.airbyte.cdk.read.TestFixtures.msg @@ -86,11 +87,12 @@ class JdbcPartitionsCreatorTest { val expectedPartitions = 5 // adjust this as needed based on inputs val expectedFetchSize = 681 // adjust this as needed based on inputs val factory = sharedState.factory() - val initialPartition = factory.create(stream, opaqueStateValue = null).asPartition() + val initialPartition = + factory.create(stream.bootstrap(opaqueStateValue = null)).asPartition() factory.assertFailures() val readers = JdbcConcurrentPartitionsCreator(initialPartition, factory).runInTest() val partitions: List = - concurrentPartitions(stream, factory, readers) + concurrentPartitions(stream, readers) val streamState: DefaultJdbcStreamState = partitions.first().streamState Assertions.assertEquals( LocalDateCodec.encode(cursorUpperBound), @@ -161,11 +163,12 @@ class JdbcPartitionsCreatorTest { val expectedPartitions = 5 // adjust this as needed based on inputs val expectedFetchSize = 681 // adjust this as needed based on inputs val factory = sharedState.factory() - val initialPartition = factory.create(stream, opaqueStateValue(pk = 22)).asPartition() + val initialPartition = + factory.create(stream.bootstrap(opaqueStateValue(pk = 22))).asPartition() factory.assertFailures() val readers = JdbcConcurrentPartitionsCreator(initialPartition, factory).runInTest() val partitions: List = - concurrentPartitions(stream, factory, readers) + concurrentPartitions(stream, readers) val streamState: DefaultJdbcStreamState = partitions.first().streamState Assertions.assertNull(streamState.cursorUpperBound) Assertions.assertEquals(expectedFetchSize, streamState.fetchSize) @@ -184,11 +187,12 @@ class JdbcPartitionsCreatorTest { val stream = stream(withCursor = false) val sharedState = sharedState() val factory = sharedState.factory() - val initialPartition = factory.create(stream, opaqueStateValue(pk = 22)).asPartition() + val initialPartition = + factory.create(stream.bootstrap(opaqueStateValue(pk = 22))).asPartition() factory.assertFailures() val readers = JdbcConcurrentPartitionsCreator(initialPartition, factory).runInTest() val partitions: List = - concurrentPartitions(stream, factory, readers) + concurrentPartitions(stream, readers) // No sampling means no splitting. Assertions.assertEquals(1, partitions.size) Assertions.assertIterableEquals( @@ -204,11 +208,12 @@ class JdbcPartitionsCreatorTest { val stream = stream(withCursor = false) val sharedState = sharedState() val factory = sharedState.factory() - val initialPartition = factory.create(stream, opaqueStateValue(pk = 22)).asPartition() + val initialPartition = + factory.create(stream.bootstrap(opaqueStateValue(pk = 22))).asPartition() factory.assertFailures() val readers = JdbcSequentialPartitionsCreator(initialPartition, factory).runInTest() val readerPartition: DefaultJdbcSplittableSnapshotPartition = - sequentialPartition(stream, factory, readers) + sequentialPartition(stream, readers) Assertions.assertNull(readerPartition.streamState.cursorUpperBound) Assertions.assertNull(readerPartition.streamState.fetchSize) Assertions.assertIterableEquals( @@ -270,11 +275,12 @@ class JdbcPartitionsCreatorTest { ) val expectedFetchSize = 674 // adjust this as needed based on inputs val factory = sharedState.factory() - val initialPartition = factory.create(stream, opaqueStateValue(pk = 22)).asPartition() + val initialPartition = + factory.create(stream.bootstrap(opaqueStateValue(pk = 22))).asPartition() factory.assertFailures() val readers = JdbcSequentialPartitionsCreator(initialPartition, factory).runInTest() val readerPartition: DefaultJdbcSplittableSnapshotPartition = - sequentialPartition(stream, factory, readers) + sequentialPartition(stream, readers) Assertions.assertNull(readerPartition.streamState.cursorUpperBound) Assertions.assertEquals(expectedFetchSize, readerPartition.streamState.fetchSize) Assertions.assertIterableEquals(listOf(id), readerPartition.checkpointColumns) @@ -302,11 +308,13 @@ class JdbcPartitionsCreatorTest { ) val factory = sharedState.factory() val initialPartition = - factory.create(stream, opaqueStateValue(cursor = cursorCheckpoint)).asPartition() + factory + .create(stream.bootstrap(opaqueStateValue(cursor = cursorCheckpoint))) + .asPartition() factory.assertFailures() val readers = JdbcSequentialPartitionsCreator(initialPartition, factory).runInTest() val readerPartition: DefaultJdbcCursorIncrementalPartition = - sequentialPartition(stream, factory, readers) + sequentialPartition(stream, readers) Assertions.assertEquals( LocalDateCodec.encode(cursorUpperBound), readerPartition.streamState.cursorUpperBound, @@ -333,18 +341,18 @@ class JdbcPartitionsCreatorTest { mockedQueries = arrayOf() ) val factory = sharedState.factory() + val bootstrap = stream.bootstrap(opaqueStateValue(cursor = cursorCheckpoint)) run { // This warm start is particularly warm; the stream state has some transient state. - val streamState: DefaultJdbcStreamState = factory.streamState(stream) + val streamState: DefaultJdbcStreamState = factory.streamState(bootstrap) streamState.fetchSize = 1234 streamState.cursorUpperBound = LocalDateCodec.encode(cursorUpperBound) } - val initialPartition = - factory.create(stream, opaqueStateValue(cursor = cursorCheckpoint)).asPartition() + val initialPartition = factory.create(bootstrap).asPartition() factory.assertFailures() val readers = JdbcSequentialPartitionsCreator(initialPartition, factory).runInTest() val readerPartition: DefaultJdbcCursorIncrementalPartition = - sequentialPartition(stream, factory, readers) + sequentialPartition(stream, readers) Assertions.assertEquals(ts, readerPartition.cursor) Assertions.assertEquals( LocalDateCodec.encode(cursorCheckpoint), @@ -361,7 +369,6 @@ class JdbcPartitionsCreatorTest { inline fun concurrentPartitions( stream: Stream, - factory: DefaultJdbcPartitionFactory, readers: List ): List { Assertions.assertTrue(readers.isNotEmpty()) @@ -370,14 +377,12 @@ class JdbcPartitionsCreatorTest { for (reader in typedReaders) { Assertions.assertTrue(reader.partition is T) Assertions.assertEquals(stream, reader.stream) - Assertions.assertEquals(factory.streamState(stream), reader.partition.streamState) } return typedReaders.map { it.partition as T } } inline fun sequentialPartition( stream: Stream, - factory: DefaultJdbcPartitionFactory, readers: List ): T { Assertions.assertTrue(readers.firstOrNull() is JdbcResumablePartitionReader<*>) @@ -386,7 +391,6 @@ class JdbcPartitionsCreatorTest { Assertions.assertTrue(reader.partition is T) val partition = reader.partition as T Assertions.assertEquals(stream, reader.stream) - Assertions.assertEquals(factory.streamState(stream), partition.streamState) return partition } diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/TestFixtures.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/TestFixtures.kt index 668f6a2fe53b..cd29b4321743 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/TestFixtures.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/kotlin/io/airbyte/cdk/read/TestFixtures.kt @@ -11,6 +11,8 @@ import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.JdbcSourceConfiguration import io.airbyte.cdk.command.OpaqueStateValue import io.airbyte.cdk.discover.Field +import io.airbyte.cdk.discover.MetaField +import io.airbyte.cdk.discover.MetaFieldDecorator import io.airbyte.cdk.jdbc.DefaultJdbcConstants import io.airbyte.cdk.jdbc.IntFieldType import io.airbyte.cdk.jdbc.LocalDateFieldType @@ -24,6 +26,7 @@ import io.airbyte.cdk.util.Jsons import io.airbyte.protocol.models.v0.StreamDescriptor import java.time.Duration import java.time.LocalDate +import java.time.OffsetDateTime import org.junit.jupiter.api.Assertions object TestFixtures { @@ -38,7 +41,7 @@ object TestFixtures { ) = Stream( id = StreamIdentifier.from(StreamDescriptor().withNamespace("test").withName("events")), - fields = listOf(id, ts, msg), + schema = setOf(id, ts, msg), configuredSyncMode = if (withCursor) ConfiguredSyncMode.INCREMENTAL else ConfiguredSyncMode.FULL_REFRESH, configuredPrimaryKey = listOf(id).takeIf { withPK }, @@ -87,7 +90,6 @@ object TestFixtures { ) return DefaultJdbcSharedState( configuration, - BufferingOutputConsumer(ClockFactory().fixed()), MockSelectQuerier(ArrayDeque(mockedQueries.toList())), constants.copy(maxMemoryBytesForTesting = maxMemoryBytesForTesting), ConcurrencyResource(configuration), @@ -189,4 +191,28 @@ object TestFixtures { override val feeds: List = listOf() override fun current(feed: Feed): OpaqueStateValue? = null } + + object MockMetaFieldDecorator : MetaFieldDecorator { + override val globalCursor: MetaField? = null + override val globalMetaFields: Set = emptySet() + + override fun decorateRecordData( + timestamp: OffsetDateTime, + globalStateValue: OpaqueStateValue?, + stream: Stream, + recordData: ObjectNode + ) {} + } + + fun Stream.bootstrap(opaqueStateValue: OpaqueStateValue?): StreamFeedBootstrap = + StreamFeedBootstrap( + outputConsumer = BufferingOutputConsumer(ClockFactory().fixed()), + metaFieldDecorator = MockMetaFieldDecorator, + stateQuerier = + object : StateQuerier { + override val feeds: List = listOf(this@bootstrap) + override fun current(feed: Feed): OpaqueStateValue? = opaqueStateValue + }, + stream = this + ) } diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/resources/h2source/expected-fake-cdc-catalog.json b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/resources/h2source/expected-fake-cdc-catalog.json new file mode 100644 index 000000000000..14c60bd065fd --- /dev/null +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/test/resources/h2source/expected-fake-cdc-catalog.json @@ -0,0 +1,85 @@ +{ + "streams": [ + { + "name": "EVENTS", + "json_schema": { + "type": "object", + "properties": { + "MSG": { + "type": "string" + }, + "_ROWID_": { + "type": "number", + "airbyte_type": "integer" + }, + "ID": { + "type": "string", + "contentEncoding": "base64" + }, + "TS": { + "type": "string", + "format": "date-time", + "airbyte_type": "timestamp_with_timezone" + }, + "_ab_cdc_fake_cursor": { + "type": "string" + }, + "_ab_cdc_updated_at": { + "type": "string", + "format": "date-time", + "airbyte_type": "timestamp_with_timezone" + }, + "_ab_cdc_deleted_at": { + "type": "string", + "format": "date-time", + "airbyte_type": "timestamp_with_timezone" + } + } + }, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["_ab_cdc_fake_cursor"], + "source_defined_primary_key": [["ID"]], + "namespace": "PUBLIC", + "is_resumable": true + }, + { + "name": "KV", + "json_schema": { + "type": "object", + "properties": { + "_ROWID_": { + "type": "number", + "airbyte_type": "integer" + }, + "V": { + "type": "string" + }, + "K": { + "type": "number", + "airbyte_type": "integer" + }, + "_ab_cdc_fake_cursor": { + "type": "string" + }, + "_ab_cdc_updated_at": { + "type": "string", + "format": "date-time", + "airbyte_type": "timestamp_with_timezone" + }, + "_ab_cdc_deleted_at": { + "type": "string", + "format": "date-time", + "airbyte_type": "timestamp_with_timezone" + } + } + }, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["_ab_cdc_fake_cursor"], + "source_defined_primary_key": [["K"]], + "namespace": "PUBLIC", + "is_resumable": true + } + ] +} diff --git a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/testFixtures/kotlin/io/airbyte/cdk/h2source/H2SourceOperations.kt b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/testFixtures/kotlin/io/airbyte/cdk/h2source/H2SourceOperations.kt index b561dcef6ee1..9eca2a6e742e 100644 --- a/airbyte-cdk/bulk/toolkits/extract-jdbc/src/testFixtures/kotlin/io/airbyte/cdk/h2source/H2SourceOperations.kt +++ b/airbyte-cdk/bulk/toolkits/extract-jdbc/src/testFixtures/kotlin/io/airbyte/cdk/h2source/H2SourceOperations.kt @@ -1,8 +1,15 @@ /* Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ package io.airbyte.cdk.h2source +import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.command.OpaqueStateValue +import io.airbyte.cdk.discover.CdcStringMetaFieldType +import io.airbyte.cdk.discover.CommonMetaField import io.airbyte.cdk.discover.FieldType +import io.airbyte.cdk.discover.JdbcAirbyteStreamFactory import io.airbyte.cdk.discover.JdbcMetadataQuerier +import io.airbyte.cdk.discover.MetaField +import io.airbyte.cdk.discover.MetaFieldDecorator import io.airbyte.cdk.jdbc.ArrayFieldType import io.airbyte.cdk.jdbc.BigDecimalFieldType import io.airbyte.cdk.jdbc.BigIntegerFieldType @@ -52,6 +59,7 @@ import io.airbyte.cdk.read.SelectNode import io.airbyte.cdk.read.SelectQuery import io.airbyte.cdk.read.SelectQueryGenerator import io.airbyte.cdk.read.SelectQuerySpec +import io.airbyte.cdk.read.Stream import io.airbyte.cdk.read.Where import io.airbyte.cdk.read.WhereClauseLeafNode import io.airbyte.cdk.read.WhereClauseNode @@ -61,12 +69,39 @@ import io.micronaut.context.annotation.Secondary import io.micronaut.context.env.Environment import jakarta.inject.Singleton import java.sql.JDBCType +import java.time.OffsetDateTime /** Stateless connector-specific logic for [H2Source]. */ @Singleton @Requires(env = [Environment.TEST]) @Secondary -class H2SourceOperations : JdbcMetadataQuerier.FieldTypeMapper, SelectQueryGenerator { +class H2SourceOperations : + JdbcMetadataQuerier.FieldTypeMapper, + SelectQueryGenerator, + JdbcAirbyteStreamFactory, + MetaFieldDecorator { + + data object H2GlobalCursor : MetaField { + override val id: String = "_ab_cdc_fake_cursor" + override val type: FieldType = CdcStringMetaFieldType + } + + override val globalCursor: MetaField = H2GlobalCursor + + override val globalMetaFields: Set = + setOf(H2GlobalCursor, CommonMetaField.CDC_UPDATED_AT, CommonMetaField.CDC_DELETED_AT) + + override fun decorateRecordData( + timestamp: OffsetDateTime, + globalStateValue: OpaqueStateValue?, + stream: Stream, + recordData: ObjectNode + ) { + recordData.putNull(H2GlobalCursor.id) + recordData.putNull(CommonMetaField.CDC_UPDATED_AT.id) + recordData.putNull(CommonMetaField.CDC_DELETED_AT.id) + } + override fun toFieldType(c: JdbcMetadataQuerier.ColumnMetadata): FieldType = when (c.type.jdbcType) { JDBCType.BIT, diff --git a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml index ea648c7407a2..bad0e5851898 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml +++ b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: database connectorType: source definitionId: 561393ed-7e3a-4d0d-8b8b-90ded371754c - dockerImageTag: 0.0.27 + dockerImageTag: 0.0.28 dockerRepository: airbyte/source-mysql-v2 documentationUrl: https://docs.airbyte.com/integrations/sources/mysql githubIssueLabel: source-mysql-v2 diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcMetaFields.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcMetaFields.kt new file mode 100644 index 000000000000..d8f4ad6de14a --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcMetaFields.kt @@ -0,0 +1,22 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.integrations.source.mysql + +import io.airbyte.cdk.discover.CdcIntegerMetaFieldType +import io.airbyte.cdk.discover.CdcStringMetaFieldType +import io.airbyte.cdk.discover.FieldType +import io.airbyte.cdk.discover.MetaField + +enum class MysqlCdcMetaFields( + override val type: FieldType, +) : MetaField { + CDC_CURSOR(CdcIntegerMetaFieldType), + CDC_LOG_POS(CdcIntegerMetaFieldType), + CDC_LOG_FILE(CdcStringMetaFieldType), + ; + + override val id: String + get() = MetaField.META_PREFIX + name.lowercase() +} diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactory.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactory.kt index 6ece225e3756..f1217ac38acb 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactory.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactory.kt @@ -6,6 +6,7 @@ package io.airbyte.integrations.source.mysql import com.fasterxml.jackson.databind.JsonNode import io.airbyte.cdk.ConfigErrorException +import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.OpaqueStateValue import io.airbyte.cdk.data.LeafAirbyteSchemaType import io.airbyte.cdk.discover.Field @@ -14,6 +15,7 @@ import io.airbyte.cdk.read.DefaultJdbcSharedState import io.airbyte.cdk.read.DefaultJdbcStreamState import io.airbyte.cdk.read.JdbcPartitionFactory import io.airbyte.cdk.read.Stream +import io.airbyte.cdk.read.StreamFeedBootstrap import io.airbyte.cdk.util.Jsons import io.micronaut.context.annotation.Primary import java.util.concurrent.ConcurrentHashMap @@ -31,10 +33,12 @@ class MysqlJdbcPartitionFactory( MysqlJdbcPartition, > { - private val streamStates = ConcurrentHashMap() + private val streamStates = ConcurrentHashMap() - override fun streamState(stream: Stream): DefaultJdbcStreamState = - streamStates.getOrPut(stream.label) { DefaultJdbcStreamState(sharedState, stream) } + override fun streamState(streamFeedBootstrap: StreamFeedBootstrap): DefaultJdbcStreamState = + streamStates.getOrPut(streamFeedBootstrap.feed.id) { + DefaultJdbcStreamState(sharedState, streamFeedBootstrap) + } private fun coldStart(streamState: DefaultJdbcStreamState): MysqlJdbcPartition { val stream: Stream = streamState.stream @@ -103,14 +107,11 @@ class MysqlJdbcPartitionFactory( * ii. In cursor read phase, use cursor incremental. * ``` */ - override fun create( - stream: Stream, - opaqueStateValue: OpaqueStateValue?, - ): MysqlJdbcPartition? { - val streamState: DefaultJdbcStreamState = streamState(stream) - if (opaqueStateValue == null) { - return coldStart(streamState) - } + override fun create(streamFeedBootstrap: StreamFeedBootstrap): MysqlJdbcPartition? { + val stream: Stream = streamFeedBootstrap.feed + val streamState: DefaultJdbcStreamState = streamState(streamFeedBootstrap) + val opaqueStateValue: OpaqueStateValue = + streamFeedBootstrap.currentState ?: return coldStart(streamState) val isCursorBasedIncremental: Boolean = stream.configuredSyncMode == ConfiguredSyncMode.INCREMENTAL && diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcStreamFactory.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcStreamFactory.kt deleted file mode 100644 index af937f30becb..000000000000 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcStreamFactory.kt +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) 2024 Airbyte, Inc., all rights reserved. - */ - -package io.airbyte.integrations.source.mysql - -import com.fasterxml.jackson.databind.node.ObjectNode -import io.airbyte.cdk.discover.AirbyteStreamFactory -import io.airbyte.cdk.discover.CdcIntegerMetaFieldType -import io.airbyte.cdk.discover.CdcStringMetaFieldType -import io.airbyte.cdk.discover.DiscoveredStream -import io.airbyte.cdk.discover.FieldType -import io.airbyte.cdk.discover.JdbcAirbyteStreamFactory -import io.airbyte.cdk.discover.MetaField -import io.airbyte.protocol.models.v0.AirbyteStream -import io.airbyte.protocol.models.v0.SyncMode -import io.micronaut.context.annotation.Primary -import javax.inject.Singleton - -@Singleton -@Primary -class MysqlJdbcStreamFactory(val base: JdbcAirbyteStreamFactory) : AirbyteStreamFactory by base { - @Override - override fun createGlobal(discoveredStream: DiscoveredStream): AirbyteStream { - return AirbyteStreamFactory.createAirbyteStream(discoveredStream).apply { - (jsonSchema["properties"] as ObjectNode).apply { - for (metaField in MysqlCDCMetaFields.entries) { - set(metaField.id, metaField.type.airbyteSchemaType.asJsonSchema()) - } - } - if (base.hasValidPrimaryKey(discoveredStream)) { - supportedSyncModes = listOf(SyncMode.FULL_REFRESH, SyncMode.INCREMENTAL) - sourceDefinedPrimaryKey = discoveredStream.primaryKeyColumnIDs - isResumable = true - defaultCursorField = listOf(MysqlCDCMetaFields.CDC_CURSOR.id) - } else { - supportedSyncModes = listOf(SyncMode.FULL_REFRESH) - isResumable = false - } - } - } - - enum class MysqlCDCMetaFields( - override val type: FieldType, - ) : MetaField { - CDC_CURSOR(CdcIntegerMetaFieldType), - CDC_UPDATED_AT(CdcStringMetaFieldType), - CDC_DELETED_AT(CdcStringMetaFieldType), - CDC_LOG_POS(CdcIntegerMetaFieldType), - CDC_LOG_FILE(CdcStringMetaFieldType), - ; - - override val id: String - get() = MetaField.META_PREFIX + name.lowercase() - } -} diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceMetadataQuerier.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceMetadataQuerier.kt index 5eee810d2ab4..c1b4cd56374c 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceMetadataQuerier.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceMetadataQuerier.kt @@ -6,14 +6,12 @@ import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.check.JdbcCheckQueries import io.airbyte.cdk.command.SourceConfiguration import io.airbyte.cdk.discover.Field -import io.airbyte.cdk.discover.FieldOrMetaField import io.airbyte.cdk.discover.JdbcMetadataQuerier import io.airbyte.cdk.discover.MetadataQuerier import io.airbyte.cdk.discover.TableName import io.airbyte.cdk.jdbc.DefaultJdbcConstants import io.airbyte.cdk.jdbc.JdbcConnectionFactory import io.airbyte.cdk.read.SelectQueryGenerator -import io.airbyte.integrations.source.mysql.MysqlJdbcStreamFactory.MysqlCDCMetaFields import io.airbyte.protocol.models.v0.StreamDescriptor import io.github.oshai.kotlinlogging.KotlinLogging import io.micronaut.context.annotation.Primary @@ -177,13 +175,6 @@ class MysqlSourceMetadataQuerier( return memoizedPrimaryKeys[table] ?: listOf() } - override fun commonCursorOrNull(cursorColumnID: String): FieldOrMetaField? { - return when (cursorColumnID) { - MysqlCDCMetaFields.CDC_CURSOR.id -> MysqlCDCMetaFields.CDC_CURSOR - else -> null - } - } - private data class AllPrimaryKeysRow( val tableSchema: String, val tableName: String, diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceOperations.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceOperations.kt index 6be0e5297b27..22053b65d485 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceOperations.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceOperations.kt @@ -1,10 +1,19 @@ /* Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ package io.airbyte.integrations.source.mysql +import com.fasterxml.jackson.databind.JsonNode +import com.fasterxml.jackson.databind.node.ObjectNode import com.mysql.cj.MysqlType +import io.airbyte.cdk.command.OpaqueStateValue +import io.airbyte.cdk.discover.CdcIntegerMetaFieldType +import io.airbyte.cdk.discover.CdcOffsetDateTimeMetaFieldType +import io.airbyte.cdk.discover.CdcStringMetaFieldType +import io.airbyte.cdk.discover.CommonMetaField import io.airbyte.cdk.discover.Field import io.airbyte.cdk.discover.FieldType +import io.airbyte.cdk.discover.JdbcAirbyteStreamFactory import io.airbyte.cdk.discover.JdbcMetadataQuerier +import io.airbyte.cdk.discover.MetaField import io.airbyte.cdk.discover.SystemType import io.airbyte.cdk.jdbc.BigDecimalFieldType import io.airbyte.cdk.jdbc.BigIntegerFieldType @@ -49,17 +58,65 @@ import io.airbyte.cdk.read.SelectNode import io.airbyte.cdk.read.SelectQuery import io.airbyte.cdk.read.SelectQueryGenerator import io.airbyte.cdk.read.SelectQuerySpec +import io.airbyte.cdk.read.Stream import io.airbyte.cdk.read.Where import io.airbyte.cdk.read.WhereClauseLeafNode import io.airbyte.cdk.read.WhereClauseNode import io.airbyte.cdk.read.WhereNode +import io.airbyte.cdk.read.cdc.DebeziumState import io.airbyte.cdk.util.Jsons +import io.airbyte.integrations.source.mysql.cdc.MySqlDebeziumOperations +import io.airbyte.integrations.source.mysql.cdc.MySqlPosition import io.micronaut.context.annotation.Primary import jakarta.inject.Singleton +import java.time.OffsetDateTime @Singleton @Primary -class MysqlSourceOperations : JdbcMetadataQuerier.FieldTypeMapper, SelectQueryGenerator { +class MysqlSourceOperations : + JdbcMetadataQuerier.FieldTypeMapper, SelectQueryGenerator, JdbcAirbyteStreamFactory { + + override val globalCursor: MetaField = MysqlCdcMetaFields.CDC_CURSOR + + override val globalMetaFields: Set = + setOf( + MysqlCdcMetaFields.CDC_CURSOR, + CommonMetaField.CDC_UPDATED_AT, + CommonMetaField.CDC_DELETED_AT, + MysqlCdcMetaFields.CDC_LOG_FILE, + MysqlCdcMetaFields.CDC_LOG_POS + ) + + override fun decorateRecordData( + timestamp: OffsetDateTime, + globalStateValue: OpaqueStateValue?, + stream: Stream, + recordData: ObjectNode + ) { + recordData.set( + CommonMetaField.CDC_UPDATED_AT.id, + CdcOffsetDateTimeMetaFieldType.jsonEncoder.encode(timestamp), + ) + recordData.set( + MysqlCdcMetaFields.CDC_LOG_POS.id, + CdcIntegerMetaFieldType.jsonEncoder.encode(0), + ) + if (globalStateValue == null) { + return + } + val debeziumState: DebeziumState = + MySqlDebeziumOperations.deserializeDebeziumState(globalStateValue) + val position: MySqlPosition = MySqlDebeziumOperations.position(debeziumState.offset) + recordData.set( + MysqlCdcMetaFields.CDC_LOG_FILE.id, + CdcStringMetaFieldType.jsonEncoder.encode(position.fileName), + ) + recordData.set( + MysqlCdcMetaFields.CDC_LOG_POS.id, + CdcIntegerMetaFieldType.jsonEncoder.encode(position.position), + ) + } + override fun toFieldType(c: JdbcMetadataQuerier.ColumnMetadata): FieldType = when (val type = c.type) { is SystemType -> leafType(type) diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt index 080ebd04ab69..33e9bb228494 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt @@ -8,8 +8,11 @@ import com.fasterxml.jackson.databind.JsonNode import com.fasterxml.jackson.databind.node.ArrayNode import com.fasterxml.jackson.databind.node.ObjectNode import io.airbyte.cdk.ConfigErrorException +import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.OpaqueStateValue +import io.airbyte.cdk.data.LongCodec import io.airbyte.cdk.data.OffsetDateTimeCodec +import io.airbyte.cdk.data.TextCodec import io.airbyte.cdk.discover.CommonMetaField import io.airbyte.cdk.discover.Field import io.airbyte.cdk.jdbc.JdbcConnectionFactory @@ -24,14 +27,15 @@ import io.airbyte.cdk.read.cdc.DebeziumRecordKey import io.airbyte.cdk.read.cdc.DebeziumRecordValue import io.airbyte.cdk.read.cdc.DebeziumSchemaHistory import io.airbyte.cdk.read.cdc.DebeziumState +import io.airbyte.cdk.read.cdc.DeserializedRecord import io.airbyte.cdk.ssh.TunnelSession import io.airbyte.cdk.util.Jsons import io.airbyte.integrations.source.mysql.CdcIncrementalConfiguration import io.airbyte.integrations.source.mysql.InvalidCdcCursorPositionBehavior +import io.airbyte.integrations.source.mysql.MysqlCdcMetaFields import io.airbyte.integrations.source.mysql.MysqlSourceConfiguration import io.airbyte.integrations.source.mysql.cdc.converters.MySQLDateTimeConverter -import io.airbyte.protocol.models.v0.AirbyteRecordMessage -import io.airbyte.protocol.models.v0.AirbyteRecordMessageMeta +import io.airbyte.protocol.models.v0.StreamDescriptor import io.debezium.connector.mysql.MySqlConnector import io.debezium.connector.mysql.gtid.MySqlGtidSet import io.debezium.document.DocumentReader @@ -62,31 +66,45 @@ class MySqlDebeziumOperations( ) : DebeziumOperations { private val log = KotlinLogging.logger {} - override fun toAirbyteRecordMessage( + override fun deserialize( key: DebeziumRecordKey, value: DebeziumRecordValue - ): AirbyteRecordMessage { + ): DeserializedRecord { val before: JsonNode = value.before val after: JsonNode = value.after val source: JsonNode = value.source val isDelete: Boolean = after.isNull - - airbyteRecord.meta.changes.clear() - airbyteRecord.stream = source["table"].asText() - airbyteRecord.namespace = source["db"].asText() + // Identify the stream. + val streamID: StreamIdentifier = + StreamIdentifier.from( + StreamDescriptor() + .withName(source["table"].asText()) + .withNamespace(source["db"].asText()) + ) + // Use either `before` or `after` as the record data, depending on the nature of the change. + val data: ObjectNode = (if (isDelete) before else after) as ObjectNode + // Set _ab_cdc_updated_at and _ab_cdc_deleted_at meta-field values. val transactionMillis: Long = source["ts_ms"].asLong() val transactionOffsetDateTime: OffsetDateTime = OffsetDateTime.ofInstant(Instant.ofEpochMilli(transactionMillis), ZoneOffset.UTC) val transactionTimestampJsonNode: JsonNode = OffsetDateTimeCodec.encode(transactionOffsetDateTime) - - val data: ObjectNode = (if (isDelete) before else after) as ObjectNode - data.set(CommonMetaField.CDC_UPDATED_AT.id, transactionTimestampJsonNode) + data.set( + CommonMetaField.CDC_UPDATED_AT.id, + transactionTimestampJsonNode, + ) data.set( CommonMetaField.CDC_DELETED_AT.id, if (isDelete) transactionTimestampJsonNode else Jsons.nullNode(), ) - return airbyteRecord.withData(data) + // Set _ab_cdc_log_file and _ab_cdc_log_pos meta-field values. + val position = MySqlPosition(source["file"].asText(), source["pos"].asLong()) + data.set(MysqlCdcMetaFields.CDC_LOG_FILE.id, TextCodec.encode(position.fileName)) + data.set(MysqlCdcMetaFields.CDC_LOG_POS.id, LongCodec.encode(position.position)) + // Set the _ab_cdc_cursor meta-field value. + data.set(MysqlCdcMetaFields.CDC_CURSOR.id, LongCodec.encode(position.cursorValue)) + // Return a DeserializedRecord instance. + return DeserializedRecord(streamID, data, changes = emptyMap()) } /** @@ -163,15 +181,7 @@ class MySqlDebeziumOperations( INVALID_RESET } - private val airbyteRecord = AirbyteRecordMessage().withMeta(AirbyteRecordMessageMeta()) - - override fun position(offset: DebeziumOffset): MySqlPosition { - if (offset.wrapped.size != 1) { - throw ConfigErrorException("Expected exactly 1 key in $offset") - } - val offsetValue: ObjectNode = offset.wrapped.values.first() as ObjectNode - return MySqlPosition(offsetValue["file"].asText(), offsetValue["pos"].asLong()) - } + override fun position(offset: DebeziumOffset): MySqlPosition = Companion.position(offset) override fun position(recordValue: DebeziumRecordValue): MySqlPosition? { val file: JsonNode = recordValue.source["file"]?.takeIf { it.isTextual } ?: return null @@ -295,42 +305,6 @@ class MySqlDebeziumOperations( return DebeziumInput(properties, debeziumState, isSynthetic = false) } - private fun deserializeDebeziumState(opaqueStateValue: OpaqueStateValue): DebeziumState { - val stateNode: ObjectNode = opaqueStateValue[STATE] as ObjectNode - // Deserialize offset. - val offsetNode: ObjectNode = stateNode[MYSQL_CDC_OFFSET] as ObjectNode - val offsetMap: Map = - offsetNode - .fields() - .asSequence() - .map { (k, v) -> Jsons.readTree(k) to Jsons.readTree(v.textValue()) } - .toMap() - if (offsetMap.size != 1) { - throw RuntimeException("Offset object should have 1 key in $opaqueStateValue") - } - val offset = DebeziumOffset(offsetMap) - // Deserialize schema history. - val schemaNode: JsonNode = - stateNode[MYSQL_DB_HISTORY] ?: return DebeziumState(offset, schemaHistory = null) - val isCompressed: Boolean = stateNode[IS_COMPRESSED]?.asBoolean() ?: false - val uncompressedString: String = - if (isCompressed) { - val compressedBytes: ByteArray = - Jsons.readValue(schemaNode.textValue(), ByteArray::class.java) - GZIPInputStream(ByteArrayInputStream(compressedBytes)) - .reader(Charsets.UTF_8) - .readText() - } else { - schemaNode.textValue() - } - val schemaHistoryList: List = - uncompressedString - .lines() - .filter { it.isNotBlank() } - .map { HistoryRecord(DocumentReader.defaultReader().read(it)) } - return DebeziumState(offset, DebeziumSchemaHistory(schemaHistoryList)) - } - override fun serialize(debeziumState: DebeziumState): OpaqueStateValue { val stateNode: ObjectNode = Jsons.objectNode() // Serialize offset. @@ -437,5 +411,49 @@ class MySqlDebeziumOperations( /** Configuration for offset state key/value converters. */ val INTERNAL_CONVERTER_CONFIG: Map = java.util.Map.of(JsonConverterConfig.SCHEMAS_ENABLE_CONFIG, false.toString()) + + internal fun deserializeDebeziumState(opaqueStateValue: OpaqueStateValue): DebeziumState { + val stateNode: ObjectNode = opaqueStateValue[STATE] as ObjectNode + // Deserialize offset. + val offsetNode: ObjectNode = stateNode[MYSQL_CDC_OFFSET] as ObjectNode + val offsetMap: Map = + offsetNode + .fields() + .asSequence() + .map { (k, v) -> Jsons.readTree(k) to Jsons.readTree(v.textValue()) } + .toMap() + if (offsetMap.size != 1) { + throw RuntimeException("Offset object should have 1 key in $opaqueStateValue") + } + val offset = DebeziumOffset(offsetMap) + // Deserialize schema history. + val schemaNode: JsonNode = + stateNode[MYSQL_DB_HISTORY] ?: return DebeziumState(offset, schemaHistory = null) + val isCompressed: Boolean = stateNode[IS_COMPRESSED]?.asBoolean() ?: false + val uncompressedString: String = + if (isCompressed) { + val compressedBytes: ByteArray = + Jsons.readValue(schemaNode.textValue(), ByteArray::class.java) + GZIPInputStream(ByteArrayInputStream(compressedBytes)) + .reader(Charsets.UTF_8) + .readText() + } else { + schemaNode.textValue() + } + val schemaHistoryList: List = + uncompressedString + .lines() + .filter { it.isNotBlank() } + .map { HistoryRecord(DocumentReader.defaultReader().read(it)) } + return DebeziumState(offset, DebeziumSchemaHistory(schemaHistoryList)) + } + + internal fun position(offset: DebeziumOffset): MySqlPosition { + if (offset.wrapped.size != 1) { + throw ConfigErrorException("Expected exactly 1 key in $offset") + } + val offsetValue: ObjectNode = offset.wrapped.values.first() as ObjectNode + return MySqlPosition(offsetValue["file"].asText(), offsetValue["pos"].asLong()) + } } } diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlPosition.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlPosition.kt index f14b301a8b17..bcb7abefbcfd 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlPosition.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlPosition.kt @@ -4,14 +4,32 @@ package io.airbyte.integrations.source.mysql.cdc +import kotlin.io.path.Path +import kotlin.io.path.extension + /** WAL position datum for MySQL. */ data class MySqlPosition(val fileName: String, val position: Long) : Comparable { - override fun compareTo(other: MySqlPosition): Int { - val fileNameDelta: Int = fileName.compareTo(other.fileName) - if (fileNameDelta != 0) { - return fileNameDelta - } - return position.compareTo(other.position) - } + /** + * Numerical value encoded in the extension of the binlog file name. + * + * These files are typically named `binlog.000002` or something like that. These file's sizes + * are, according to the documentation, capped at 1 GB. + */ + val fileExtension: Int + get() = Path(fileName).extension.toInt() + + /** + * Numerical value obtained by ORing [fileExtension] in the high bits of [position]. This + * unsigned long integer can be used as a cursor value for the purposes of deduping records in + * incremental syncs; its value is meaningless in and of itself, all that matters is that it is + * monotonically increasing from one record to the next within the same sync. + * + * Specifically, deduplication will group all records by (_ab_cdc_updated_at, emitted_at) and + * will pick the record with the latest cursor value and discard the rest. + */ + val cursorValue: Long + get() = (fileExtension.toLong() shl Int.SIZE_BITS) or position + + override fun compareTo(other: MySqlPosition): Int = cursorValue.compareTo(other.cursorValue) } diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcIntegrationTest.kt b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcIntegrationTest.kt index 036cb1d49792..99b1b10d8d3b 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcIntegrationTest.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcIntegrationTest.kt @@ -8,7 +8,6 @@ import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.CliRunner import io.airbyte.cdk.discover.DiscoveredStream import io.airbyte.cdk.discover.Field -import io.airbyte.cdk.discover.JdbcAirbyteStreamFactory import io.airbyte.cdk.jdbc.IntFieldType import io.airbyte.cdk.jdbc.JdbcConnectionFactory import io.airbyte.cdk.jdbc.StringFieldType @@ -108,14 +107,12 @@ class MysqlCdcIntegrationTest { columns = listOf(Field("k", IntFieldType), Field("v", StringFieldType)), primaryKeyColumnIDs = listOf(listOf("k")), ) - val stream: AirbyteStream = JdbcAirbyteStreamFactory().createGlobal(discoveredStream) + val stream: AirbyteStream = MysqlSourceOperations().createGlobal(discoveredStream) val configuredStream: ConfiguredAirbyteStream = CatalogHelpers.toDefaultConfiguredStream(stream) .withSyncMode(SyncMode.INCREMENTAL) .withPrimaryKey(discoveredStream.primaryKeyColumnIDs) - .withCursorField( - listOf(MysqlJdbcStreamFactory.MysqlCDCMetaFields.CDC_CURSOR.id) - ) + .withCursorField(listOf(MysqlCdcMetaFields.CDC_CURSOR.id)) ConfiguredAirbyteCatalog().withStreams(listOf(configuredStream)) } diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCursorBasedIntegrationTest.kt b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCursorBasedIntegrationTest.kt index 9fbf196e18c8..2e8c2f32b2cc 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCursorBasedIntegrationTest.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCursorBasedIntegrationTest.kt @@ -8,7 +8,6 @@ import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.CliRunner import io.airbyte.cdk.discover.DiscoveredStream import io.airbyte.cdk.discover.Field -import io.airbyte.cdk.discover.JdbcAirbyteStreamFactory import io.airbyte.cdk.jdbc.IntFieldType import io.airbyte.cdk.jdbc.JdbcConnectionFactory import io.airbyte.cdk.jdbc.StringFieldType @@ -93,7 +92,7 @@ class MysqlCursorBasedIntegrationTest { columns = listOf(Field("k", IntFieldType), Field("v", StringFieldType)), primaryKeyColumnIDs = listOf(listOf("k")), ) - val stream: AirbyteStream = JdbcAirbyteStreamFactory().createGlobal(discoveredStream) + val stream: AirbyteStream = MysqlSourceOperations().createGlobal(discoveredStream) val configuredStream: ConfiguredAirbyteStream = CatalogHelpers.toDefaultConfiguredStream(stream) .withSyncMode(SyncMode.INCREMENTAL) diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactoryTest.kt b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactoryTest.kt index 534e5ecb9210..4d8166a7b476 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactoryTest.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactoryTest.kt @@ -4,22 +4,29 @@ package io.airbyte.integrations.source.mysql +import com.fasterxml.jackson.databind.node.ObjectNode import io.airbyte.cdk.ClockFactory import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.OpaqueStateValue import io.airbyte.cdk.discover.Field +import io.airbyte.cdk.discover.MetaField +import io.airbyte.cdk.discover.MetaFieldDecorator import io.airbyte.cdk.jdbc.DefaultJdbcConstants import io.airbyte.cdk.jdbc.IntFieldType import io.airbyte.cdk.output.BufferingOutputConsumer import io.airbyte.cdk.read.ConcurrencyResource import io.airbyte.cdk.read.ConfiguredSyncMode import io.airbyte.cdk.read.DefaultJdbcSharedState +import io.airbyte.cdk.read.Feed import io.airbyte.cdk.read.NoOpGlobalLockResource import io.airbyte.cdk.read.SelectQuerier +import io.airbyte.cdk.read.StateQuerier import io.airbyte.cdk.read.Stream +import io.airbyte.cdk.read.StreamFeedBootstrap import io.airbyte.cdk.util.Jsons import io.airbyte.protocol.models.v0.StreamDescriptor import io.mockk.mockk +import java.time.OffsetDateTime import kotlin.test.assertNull import org.junit.jupiter.api.Assertions.assertTrue import org.junit.jupiter.api.Test @@ -41,7 +48,7 @@ class MysqlJdbcPartitionFactoryTest { StreamIdentifier.from( StreamDescriptor().withNamespace("test").withName("stream1") ), - fields = listOf(fieldId), + schema = setOf(fieldId), configuredSyncMode = ConfiguredSyncMode.INCREMENTAL, configuredPrimaryKey = listOf(fieldId), configuredCursor = fieldId, @@ -71,24 +78,50 @@ class MysqlJdbcPartitionFactoryTest { return DefaultJdbcSharedState( configuration, - BufferingOutputConsumer(ClockFactory().fixed()), mockSelectQuerier, DefaultJdbcConstants(), ConcurrencyResource(configuration), NoOpGlobalLockResource() ) } + + private fun streamFeedBootstrap( + stream: Stream, + incumbentStateValue: OpaqueStateValue? = null + ) = + StreamFeedBootstrap( + outputConsumer = BufferingOutputConsumer(ClockFactory().fixed()), + metaFieldDecorator = + object : MetaFieldDecorator { + override val globalCursor: MetaField? = null + override val globalMetaFields: Set = emptySet() + + override fun decorateRecordData( + timestamp: OffsetDateTime, + globalStateValue: OpaqueStateValue?, + stream: Stream, + recordData: ObjectNode + ) {} + }, + stateQuerier = + object : StateQuerier { + override val feeds: List = listOf(stream) + override fun current(feed: Feed): OpaqueStateValue? = + if (feed == stream) incumbentStateValue else null + }, + stream, + ) } @Test fun testColdStartWithPkCursorBased() { - val jdbcPartition = mysqlJdbcPartitionFactory.create(stream, null) + val jdbcPartition = mysqlJdbcPartitionFactory.create(streamFeedBootstrap(stream)) assertTrue(jdbcPartition is MysqlJdbcSnapshotWithCursorPartition) } @Test fun testColdStartWithPkCdc() { - val jdbcPartition = mysqlCdcJdbcPartitionFactory.create(stream, null) + val jdbcPartition = mysqlCdcJdbcPartitionFactory.create(streamFeedBootstrap(stream)) assertTrue(jdbcPartition is MysqlJdbcCdcSnapshotPartition) } @@ -100,12 +133,12 @@ class MysqlJdbcPartitionFactoryTest { StreamIdentifier.from( StreamDescriptor().withNamespace("test").withName("stream2") ), - fields = listOf(fieldId), + schema = setOf(fieldId), configuredSyncMode = ConfiguredSyncMode.INCREMENTAL, configuredPrimaryKey = listOf(), configuredCursor = fieldId, ) - val jdbcPartition = mysqlJdbcPartitionFactory.create(streamWithoutPk, null) + val jdbcPartition = mysqlJdbcPartitionFactory.create(streamFeedBootstrap(streamWithoutPk)) assertTrue(jdbcPartition is MysqlJdbcNonResumableSnapshotWithCursorPartition) } @@ -128,7 +161,8 @@ class MysqlJdbcPartitionFactoryTest { """.trimIndent() ) - val jdbcPartition = mysqlJdbcPartitionFactory.create(stream, incomingStateValue) + val jdbcPartition = + mysqlJdbcPartitionFactory.create(streamFeedBootstrap(stream, incomingStateValue)) assertTrue(jdbcPartition is MysqlJdbcCursorIncrementalPartition) } @@ -147,7 +181,8 @@ class MysqlJdbcPartitionFactoryTest { """.trimIndent() ) - val jdbcPartition = mysqlJdbcPartitionFactory.create(stream, incomingStateValue) + val jdbcPartition = + mysqlJdbcPartitionFactory.create(streamFeedBootstrap(stream, incomingStateValue)) assertTrue(jdbcPartition is MysqlJdbcSnapshotWithCursorPartition) } @@ -167,7 +202,8 @@ class MysqlJdbcPartitionFactoryTest { """.trimIndent() ) - val jdbcPartition = mysqlCdcJdbcPartitionFactory.create(stream, incomingStateValue) + val jdbcPartition = + mysqlCdcJdbcPartitionFactory.create(streamFeedBootstrap(stream, incomingStateValue)) assertTrue(jdbcPartition is MysqlJdbcCdcSnapshotPartition) } @@ -184,7 +220,8 @@ class MysqlJdbcPartitionFactoryTest { """.trimIndent() ) - val jdbcPartition = mysqlCdcJdbcPartitionFactory.create(stream, incomingStateValue) + val jdbcPartition = + mysqlCdcJdbcPartitionFactory.create(streamFeedBootstrap(stream, incomingStateValue)) assertNull(jdbcPartition) } } From 213868a532e9dd53717cb6976ad5540d78d9d18f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:08:00 +0200 Subject: [PATCH 194/808] =?UTF-8?q?=F0=9F=90=99=20source-luma:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47669)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-luma/metadata.yaml | 4 ++-- docs/integrations/sources/luma.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-luma/metadata.yaml b/airbyte-integrations/connectors/source-luma/metadata.yaml index 034204fce08a..a656c71e2197 100644 --- a/airbyte-integrations/connectors/source-luma/metadata.yaml +++ b/airbyte-integrations/connectors/source-luma/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-luma connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 8ac29756-9a9d-4472-a20b-df29ac29764a - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-luma githubIssueLabel: source-luma icon: icon.svg diff --git a/docs/integrations/sources/luma.md b/docs/integrations/sources/luma.md index 92cab3b28233..fc186b2094eb 100644 --- a/docs/integrations/sources/luma.md +++ b/docs/integrations/sources/luma.md @@ -20,6 +20,7 @@ | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47669](https://github.com/airbytehq/airbyte/pull/47669) | Update dependencies | | 0.0.1 | 2024-08-28 | | Initial release by [@natikgadzhi](https://github.com/natikgadzhi) via Connector Builder | - \ No newline at end of file + From 4208a008a2df21061565f9ca0ac985d611b8dcc3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:03 +0200 Subject: [PATCH 195/808] =?UTF-8?q?=F0=9F=90=99=20source-wrike:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47668)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-wrike/metadata.yaml | 4 ++-- docs/integrations/sources/wrike.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-wrike/metadata.yaml b/airbyte-integrations/connectors/source-wrike/metadata.yaml index 9d86bc9da28b..b46e363ec2ca 100644 --- a/airbyte-integrations/connectors/source-wrike/metadata.yaml +++ b/airbyte-integrations/connectors/source-wrike/metadata.yaml @@ -5,7 +5,7 @@ data: - app-eu*.wrike.com - www.wrike.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 remoteRegistries: pypi: enabled: false @@ -18,7 +18,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9c13f986-a13b-4988-b808-4705badf71c2 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-wrike githubIssueLabel: source-wrike icon: wrike.svg diff --git a/docs/integrations/sources/wrike.md b/docs/integrations/sources/wrike.md index 40a40b6ea712..5ae6044b94b5 100644 --- a/docs/integrations/sources/wrike.md +++ b/docs/integrations/sources/wrike.md @@ -50,6 +50,7 @@ The Wrike connector should not run into Wrike API limitations under normal usage | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:-----------------------------------------------------------------------| +| 0.3.3 | 2024-10-28 | [47668](https://github.com/airbytehq/airbyte/pull/47668) | Update dependencies | | 0.3.2 | 2024-10-22 | [47234](https://github.com/airbytehq/airbyte/pull/47234) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-09 | [43449](https://github.com/airbytehq/airbyte/pull/43449) | Refactor connector to manifest-only format | From 8565cb0c3187a071b8d56389bccb0f6c6c7046fe Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:07 +0200 Subject: [PATCH 196/808] =?UTF-8?q?=F0=9F=90=99=20source-serpstat:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47666)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-serpstat/metadata.yaml | 4 ++-- docs/integrations/sources/serpstat.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-serpstat/metadata.yaml b/airbyte-integrations/connectors/source-serpstat/metadata.yaml index 8114f98362b7..6e914d49484d 100644 --- a/airbyte-integrations/connectors/source-serpstat/metadata.yaml +++ b/airbyte-integrations/connectors/source-serpstat/metadata.yaml @@ -13,11 +13,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 3b2e8fb2-9137-41ff-a1e1-83ecb39e26c8 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-serpstat githubIssueLabel: source-serpstat icon: serpstat.svg diff --git a/docs/integrations/sources/serpstat.md b/docs/integrations/sources/serpstat.md index 552fd13719f9..99d63a8d052e 100644 --- a/docs/integrations/sources/serpstat.md +++ b/docs/integrations/sources/serpstat.md @@ -52,7 +52,8 @@ The maximum sync speed is limited by the number of requests per second per API k | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47666](https://github.com/airbytehq/airbyte/pull/47666) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44067](https://github.com/airbytehq/airbyte/pull/44067) | Refactor connector to manifest-only format | | 0.1.11 | 2024-08-12 | [43920](https://github.com/airbytehq/airbyte/pull/43920) | Update dependencies | | 0.1.10 | 2024-08-10 | [43510](https://github.com/airbytehq/airbyte/pull/43510) | Update dependencies | From 3b370de20db76465d83c9b8e23d546247d61036a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:10 +0200 Subject: [PATCH 197/808] =?UTF-8?q?=F0=9F=90=99=20source-guru:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47665)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-guru/metadata.yaml | 4 ++-- docs/integrations/sources/guru.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-guru/metadata.yaml b/airbyte-integrations/connectors/source-guru/metadata.yaml index 239960b29b73..a569bec496e7 100644 --- a/airbyte-integrations/connectors/source-guru/metadata.yaml +++ b/airbyte-integrations/connectors/source-guru/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-guru connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 30e2d5f2-63c1-4993-8079-c8abf24e747d - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-guru githubIssueLabel: source-guru icon: icon.svg diff --git a/docs/integrations/sources/guru.md b/docs/integrations/sources/guru.md index a89b6358d953..0e4ca65fd7d4 100644 --- a/docs/integrations/sources/guru.md +++ b/docs/integrations/sources/guru.md @@ -50,6 +50,7 @@ To set up the Guru source connector, you'll need the [Guru Auth keys](https://de | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47665](https://github.com/airbytehq/airbyte/pull/47665) | Update dependencies | | 0.0.1 | 2024-08-31 | [45066](https://github.com/airbytehq/airbyte/pull/45066) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From cb07706b810df981550bbf87d168e5bbeabcbe77 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:13 +0200 Subject: [PATCH 198/808] =?UTF-8?q?=F0=9F=90=99=20source-dockerhub:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47664)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-dockerhub/metadata.yaml | 4 ++-- docs/integrations/sources/dockerhub.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-dockerhub/metadata.yaml b/airbyte-integrations/connectors/source-dockerhub/metadata.yaml index 428b2b4294af..ab0603e0c6b5 100644 --- a/airbyte-integrations/connectors/source-dockerhub/metadata.yaml +++ b/airbyte-integrations/connectors/source-dockerhub/metadata.yaml @@ -7,11 +7,11 @@ data: - hub.docker.com - auth.docker.io connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 72d405a3-56d8-499f-a571-667c03406e43 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-dockerhub documentationUrl: https://docs.airbyte.com/integrations/sources/dockerhub githubIssueLabel: source-dockerhub diff --git a/docs/integrations/sources/dockerhub.md b/docs/integrations/sources/dockerhub.md index b63698923d65..8bded853f91e 100644 --- a/docs/integrations/sources/dockerhub.md +++ b/docs/integrations/sources/dockerhub.md @@ -39,7 +39,8 @@ This connector has been tested for the Airbyte organization, which has 266 repos | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-28 | [47664](https://github.com/airbytehq/airbyte/pull/47664) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44155](https://github.com/airbytehq/airbyte/pull/44155) | Refactor connector to manifest-only format | | 0.2.15 | 2024-08-10 | [43670](https://github.com/airbytehq/airbyte/pull/43670) | Update dependencies | | 0.2.14 | 2024-08-03 | [43145](https://github.com/airbytehq/airbyte/pull/43145) | Update dependencies | From 07035b51a3582dbfcf1326b6a4ffe77a29d257bb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:16 +0200 Subject: [PATCH 199/808] =?UTF-8?q?=F0=9F=90=99=20source-zendesk-support:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47663)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-zendesk-support/metadata.yaml | 2 +- .../source-zendesk-support/poetry.lock | 138 +++++++++--------- .../source-zendesk-support/pyproject.toml | 2 +- docs/integrations/sources/zendesk-support.md | 1 + 4 files changed, 73 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-zendesk-support/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-support/metadata.yaml index f589a39c8592..9bf90724d24a 100644 --- a/airbyte-integrations/connectors/source-zendesk-support/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-support/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 79c1aa37-dae3-42ae-b333-d1c105477715 - dockerImageTag: 4.3.2 + dockerImageTag: 4.3.3 dockerRepository: airbyte/source-zendesk-support documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-support githubIssueLabel: source-zendesk-support diff --git a/airbyte-integrations/connectors/source-zendesk-support/poetry.lock b/airbyte-integrations/connectors/source-zendesk-support/poetry.lock index 68a658a62aeb..16b3c58e5dea 100644 --- a/airbyte-integrations/connectors/source-zendesk-support/poetry.lock +++ b/airbyte-integrations/connectors/source-zendesk-support/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "5.14.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.14.0-py3-none-any.whl", hash = "sha256:2791b684ffdb4ea7a877bcde5b0a461dbfa4ac6b0e619d5a973bd63dd09c0aa1"}, - {file = "airbyte_cdk-5.14.0.tar.gz", hash = "sha256:d6953dc5a69293d3d9cf36443522ad07c7d351c942a859047a7bdb0807eeaa58"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -43,6 +43,7 @@ xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -742,13 +743,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.136" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.136-py3-none-any.whl", hash = "sha256:cad2215eb7a754ee259878e19c558f4f8d3795aa1b699f087d4500e640f80d0a"}, - {file = "langsmith-0.1.136.tar.gz", hash = "sha256:5c0de01a313db70dd9a85845c0f416a69b5b653b3e98ba413d7d41e8851315b1"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -917,68 +918,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.9" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.9-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a377186a11b48c55969e34f0aa414c2826a234f212d6f2b312ba512e3cdb2c6f"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bf37bf0ca538065c34efe1803378b2dadd7e05b06610a086c2857f15ee59e12"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7d9d83a91168aa48309acba804e393b7d9216b66f15e38f339b9fbb00db8986d"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e0014038a17a1fe273da0a5489787677ef5a64566ab383ad6d929e44ed5683f4"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d6ae1b1733e4528e45675ed09a732b6ac37d716bce2facaf467f84ce774adecd"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe91c2259c4a859356b6db1c6e649b40577492f66d483da8b8af6da0f87c00e3"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a04f912c32463386ba117591c99a3d9e40b3b69bed9c5123d89dff06f0f5a4b0"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae82ca347829ca47431767b079f96bb977f592189250ccdede676339a80c8982"}, - {file = "orjson-3.10.9-cp310-none-win32.whl", hash = "sha256:fd5083906825d7f5d23089425ce5424d783d6294020bcabb8518a3e1f97833e5"}, - {file = "orjson-3.10.9-cp310-none-win_amd64.whl", hash = "sha256:e9ff9521b5be0340c8e686bcfe2619777fd7583f71e7b494601cc91ad3919d2e"}, - {file = "orjson-3.10.9-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f3bd9df47385b8fabb3b2ee1e83f9960b8accc1905be971a1c257f16c32b491e"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4948961b6bce1e2086b2cf0b56cc454cdab589d40c7f85be71fb5a5556c51d3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a9fc7a6cf2b229ddc323e136df13b3fb4466c50d84ed600cd0898223dd2fea3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2314846e1029a2d2b899140f350eaaf3a73281df43ba84ac44d94ca861b5b269"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f52d993504827503411df2d60e60acf52885561458d6273f99ecd172f31c4352"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e29bbf08d907756c145a3a3a1f7ce2f11f15e3edbd3342842589d6030981b76f"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7ae82992c00b480c3cc7dac6739324554be8c5d8e858a90044928506a3333ef4"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6fdf8d32b6d94019dc15163542d345e9ce4c4661f56b318608aa3088a1a3a23b"}, - {file = "orjson-3.10.9-cp311-none-win32.whl", hash = "sha256:01f5fef452b4d7615f2e94153479370a4b59e0c964efb32dd902978f807a45cd"}, - {file = "orjson-3.10.9-cp311-none-win_amd64.whl", hash = "sha256:95361c4197c7ce9afdf56255de6f4e2474c39d16a277cce31d1b99a2520486d8"}, - {file = "orjson-3.10.9-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:43ad5560db54331c007dc38be5ba7706cb72974a29ae8227019d89305d750a6f"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1471c3274b1a4a9b8f4b9ed6effaea9ad885796373797515c44b365b375c256d"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:41d8cac575acd15918903d74cfaabb5dbe57b357b93341332f647d1013928dcc"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2920c8754f1aedc98bd357ec172af18ce48f5f1017a92244c85fe41d16d3c6e0"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7fa3ff6a0d9d15a0d0d2254cca16cd919156a18423654ce5574591392fe9914"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1e91b90c0c26bd79593967c1adef421bcff88c9e723d49c93bb7ad8af80bc6b"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f11949024f785ace1a516db32fa6255f6227226b2c988abf66f5aee61d43d8f7"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:060e020d85d0ec145bc1b536b1fd9c10a0519c91991ead9724d6f759ebe26b9a"}, - {file = "orjson-3.10.9-cp312-none-win32.whl", hash = "sha256:71f73439999fe662843da3607cdf6e75b1551c330f487e5801d463d969091c63"}, - {file = "orjson-3.10.9-cp312-none-win_amd64.whl", hash = "sha256:12e2efe81356b8448f1cd130f8d75d3718de583112d71f2e2f8baa81bd835bb9"}, - {file = "orjson-3.10.9-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:0ab6e3ad10e964392f0e838751bcce2ef9c8fa8be7deddffff83088e5791566d"}, - {file = "orjson-3.10.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68ef65223baab00f469c8698f771ab3e6ccf6af2a987e77de5b566b4ec651150"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6f130848205fea90a2cb9fa2b11cafff9a9f31f4efad225800bc8b9e4a702f24"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2ea7a98f3295ed8adb6730a5788cc78dafea28300d19932a1d2143457f7db802"}, - {file = "orjson-3.10.9-cp313-none-win32.whl", hash = "sha256:bdce39f96149a74fddeb2674c54f1da5e57724d32952eb6df2ac719b66d453cc"}, - {file = "orjson-3.10.9-cp313-none-win_amd64.whl", hash = "sha256:d11383701d4b58e795039b662ada46987744293d57bfa2719e7379b8d67bc796"}, - {file = "orjson-3.10.9-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1c3a1e845916a3739ab4162bb48dee66e0e727a19faf397176a7db0d9826cc3c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:063ca59d93d93d1387f0c4bb766c6d4f5b0e423fe7c366d0bd4401a56d1669d1"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:938b7fcd79cf06fe348fb24b6163fbaa2fdc9fbed8b1f06318f24467f1487e63"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cc32a9e43c7693011ccde6f8eff8cba75ca0d2a55de11092faa4a716101e67f5"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1b3069b7e2f57f3eef2282029b9c2ba21f08a55f1018e483663a3356f046af4c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4289b5d1f88fd05dcafdd7a1f3b17bb722e77712b7618f98e86bdda560e0a1a"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:74f5a7a7f282d326be71b722b0c350da7af6f5f15b9378da177e0e4a09bd91a3"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:80e0c013e50cf7198319d8137931684eb9f32daa067e8276d9dbdd4010bb4add"}, - {file = "orjson-3.10.9-cp38-none-win32.whl", hash = "sha256:9d989152df8f60a76867354e0e08d896292ab9fb96a7ef89a5b3838de174522c"}, - {file = "orjson-3.10.9-cp38-none-win_amd64.whl", hash = "sha256:485358fe9892d6bfd88e5885b66bf88496e1842c8f35f61682ff9928b12a6cf0"}, - {file = "orjson-3.10.9-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ca54e6f320e33c8a6e471c424ee16576361d905c15d69e134c2906d3fcb31795"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9a9eb03a29c9b30b6c8bb35e5fa20d96589a76e0042005be59b7c3af10a7e43"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:731e8859fc99b398c286320726906404091141e9223dd5e9e6917f7e32e1cc68"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:75b061c11f5aab979a95927a76394b4a85e3e4d63d0a2a16b56a4f7c6503afab"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b61b08f6397f004570fd6a840f4a58946b63b4c7029408cdedb45fe85c7d17f7"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c4f5e0360b7f0aba91dafe12469108109a0e8973956d4a9865ca262a6881406"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e403429e2947a059545e305d97e4b0eb90d3bb44b396d6f327d7ae2018391e13"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0e492b93e122264c2dc78700859122631a4715bda88fabf57d9226954cfe7ec5"}, - {file = "orjson-3.10.9-cp39-none-win32.whl", hash = "sha256:bfba9605e85bfd19b83a21c2c25c2bed2000d5f097f3fa3ad5b5f8a7263a3148"}, - {file = "orjson-3.10.9-cp39-none-win_amd64.whl", hash = "sha256:77d277fa138d4bf145e8b24042004891c188c52ac8492724a183f42b0031cf0c"}, - {file = "orjson-3.10.9.tar.gz", hash = "sha256:c378074e0c46035dc66e57006993233ec66bf8487d501bab41649b4b7289ed4d"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1795,13 +1797,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-zendesk-support/pyproject.toml b/airbyte-integrations/connectors/source-zendesk-support/pyproject.toml index db45de252716..386ac0c56af9 100644 --- a/airbyte-integrations/connectors/source-zendesk-support/pyproject.toml +++ b/airbyte-integrations/connectors/source-zendesk-support/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.3.2" +version = "4.3.3" name = "source-zendesk-support" description = "Source implementation for Zendesk Support." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zendesk-support.md b/docs/integrations/sources/zendesk-support.md index 6d86ca7d5b91..a58a319cbafe 100644 --- a/docs/integrations/sources/zendesk-support.md +++ b/docs/integrations/sources/zendesk-support.md @@ -184,6 +184,7 @@ The Zendesk connector ideally should not run into Zendesk API limitations under | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 4.3.3 | 2024-10-28 | [47663](https://github.com/airbytehq/airbyte/pull/47663) | Update dependencies | | 4.3.2 | 2024-10-21 | [47202](https://github.com/airbytehq/airbyte/pull/47202) | Update dependencies and expected records | | 4.3.1 | 2024-10-12 | [46794](https://github.com/airbytehq/airbyte/pull/46794) | Update dependencies | | 4.3.0 | 2024-10-09 | [46096](https://github.com/airbytehq/airbyte/pull/46096) | Updates `TicketMetrics` stream for improved reliability for long syncs, updates state cursor field to `_ab_updated_at`, automatically migrates legacy state | From 05fa3547829ad6bfd73cfcacba197cc14c5ebade Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:19 +0200 Subject: [PATCH 200/808] =?UTF-8?q?=F0=9F=90=99=20source-copper:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47660)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-copper/metadata.yaml | 4 ++-- docs/integrations/sources/copper.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-copper/metadata.yaml b/airbyte-integrations/connectors/source-copper/metadata.yaml index 38d53ae7e410..ee6f899aab3d 100644 --- a/airbyte-integrations/connectors/source-copper/metadata.yaml +++ b/airbyte-integrations/connectors/source-copper/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - https://api.copper.com/ connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 44f3002f-2df9-4f6d-b21c-02cd3b47d0dc - dockerImageTag: 0.4.1 + dockerImageTag: 0.4.2 dockerRepository: airbyte/source-copper documentationUrl: https://docs.airbyte.com/integrations/sources/copper githubIssueLabel: source-copper diff --git a/docs/integrations/sources/copper.md b/docs/integrations/sources/copper.md index 43bbe5eccf07..6d8b1cebb0c7 100644 --- a/docs/integrations/sources/copper.md +++ b/docs/integrations/sources/copper.md @@ -44,7 +44,8 @@ The Copper source connector supports the following [sync modes](https://docs.air | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.4.2 | 2024-10-28 | [47660](https://github.com/airbytehq/airbyte/pull/47660) | Update dependencies | +| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.4.0 | 2024-08-15 | [44159](https://github.com/airbytehq/airbyte/pull/44159) | Refactor connector to manifest-only format | | 0.3.16 | 2024-08-10 | [43674](https://github.com/airbytehq/airbyte/pull/43674) | Update dependencies | | 0.3.15 | 2024-08-03 | [43118](https://github.com/airbytehq/airbyte/pull/43118) | Update dependencies | From 28cda23aee7ada010c4a8b2ab3717ebda28715ea Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:24 +0200 Subject: [PATCH 201/808] =?UTF-8?q?=F0=9F=90=99=20source-vantage:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47657)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-vantage/metadata.yaml | 4 ++-- docs/integrations/sources/vantage.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-vantage/metadata.yaml b/airbyte-integrations/connectors/source-vantage/metadata.yaml index dacd06dc64fb..1bf3dcd01efe 100644 --- a/airbyte-integrations/connectors/source-vantage/metadata.yaml +++ b/airbyte-integrations/connectors/source-vantage/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 28ce1fbd-1e15-453f-aa9f-da6c4d928e92 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-vantage githubIssueLabel: source-vantage icon: vantage.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/vantage.md b/docs/integrations/sources/vantage.md index 765d0acd0a17..67aa445ec215 100644 --- a/docs/integrations/sources/vantage.md +++ b/docs/integrations/sources/vantage.md @@ -35,7 +35,8 @@ Vantage APIs are under rate limits for the number of API calls allowed per API k | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :---------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47657](https://github.com/airbytehq/airbyte/pull/47657) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44053](https://github.com/airbytehq/airbyte/pull/44053) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43784](https://github.com/airbytehq/airbyte/pull/43784) | Update dependencies | | 0.1.13 | 2024-08-10 | [43694](https://github.com/airbytehq/airbyte/pull/43694) | Update dependencies | From c9e78d53718761748b09dec8f8baffb0862473e0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:27 +0200 Subject: [PATCH 202/808] =?UTF-8?q?=F0=9F=90=99=20source-productive:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47656)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-productive/metadata.yaml | 4 ++-- docs/integrations/sources/productive.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-productive/metadata.yaml b/airbyte-integrations/connectors/source-productive/metadata.yaml index 78449ab383b5..b1460dd7e122 100644 --- a/airbyte-integrations/connectors/source-productive/metadata.yaml +++ b/airbyte-integrations/connectors/source-productive/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-productive connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 51766ab3-df25-4c8c-98a4-647440d0dfbb - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-productive githubIssueLabel: source-productive icon: icon.svg diff --git a/docs/integrations/sources/productive.md b/docs/integrations/sources/productive.md index 0bf657d69478..8aa93a29bb54 100644 --- a/docs/integrations/sources/productive.md +++ b/docs/integrations/sources/productive.md @@ -83,6 +83,7 @@ Visit `https://app.productive.io/ORG_ID-UUID/settings/api-integrations` for gett | Version | Date | Pull Request | Subject | | ------------------ | ------------ | -- | ---------------- | +| 0.0.2 | 2024-10-28 | [47656](https://github.com/airbytehq/airbyte/pull/47656) | Update dependencies | | 0.0.1 | 2024-09-11 | [45401](https://github.com/airbytehq/airbyte/pull/45401) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From d8d2daebeacb13981bd25051087e4d8aeb076c0d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:30 +0200 Subject: [PATCH 203/808] =?UTF-8?q?=F0=9F=90=99=20source-intruder:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47655)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-intruder/metadata.yaml | 4 ++-- docs/integrations/sources/intruder.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-intruder/metadata.yaml b/airbyte-integrations/connectors/source-intruder/metadata.yaml index f7baffd494b4..e388c71b72b8 100644 --- a/airbyte-integrations/connectors/source-intruder/metadata.yaml +++ b/airbyte-integrations/connectors/source-intruder/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3d15163b-11d8-412f-b808-795c9b2c3a3a - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-intruder githubIssueLabel: source-intruder icon: intruder.svg @@ -39,5 +39,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/intruder.md b/docs/integrations/sources/intruder.md index e8d35ba4faf7..fc02a4169980 100644 --- a/docs/integrations/sources/intruder.md +++ b/docs/integrations/sources/intruder.md @@ -35,7 +35,8 @@ Intruder.io APIs are under rate limits for the number of API calls allowed per A | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47655](https://github.com/airbytehq/airbyte/pull/47655) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44139](https://github.com/airbytehq/airbyte/pull/44139) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43792](https://github.com/airbytehq/airbyte/pull/43792) | Update dependencies | | 0.1.13 | 2024-08-10 | [43665](https://github.com/airbytehq/airbyte/pull/43665) | Update dependencies | From a9ad6db9b4e8986bb2f541acff82669ee9b4624f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:34 +0200 Subject: [PATCH 204/808] =?UTF-8?q?=F0=9F=90=99=20source-opsgenie:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47653)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-opsgenie/metadata.yaml | 4 ++-- docs/integrations/sources/opsgenie.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-opsgenie/metadata.yaml b/airbyte-integrations/connectors/source-opsgenie/metadata.yaml index e623ecc66193..bf8e2bb9ef63 100644 --- a/airbyte-integrations/connectors/source-opsgenie/metadata.yaml +++ b/airbyte-integrations/connectors/source-opsgenie/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 06bdb480-2598-40b8-8b0f-fc2e2d2abdda - dockerImageTag: 0.4.1 + dockerImageTag: 0.4.2 dockerRepository: airbyte/source-opsgenie documentationUrl: https://docs.airbyte.com/integrations/sources/opsgenie githubIssueLabel: source-opsgenie diff --git a/docs/integrations/sources/opsgenie.md b/docs/integrations/sources/opsgenie.md index c909fd4b729b..be1a33395c91 100644 --- a/docs/integrations/sources/opsgenie.md +++ b/docs/integrations/sources/opsgenie.md @@ -54,7 +54,8 @@ The Opsgenie connector uses the most recent API version for each source of data. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.4.2 | 2024-10-28 | [47653](https://github.com/airbytehq/airbyte/pull/47653) | Update dependencies | +| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.4.0 | 2024-08-15 | [44105](https://github.com/airbytehq/airbyte/pull/44105) | Refactor connector to manifest-only format | | 0.3.16 | 2024-08-10 | [43579](https://github.com/airbytehq/airbyte/pull/43579) | Update dependencies | | 0.3.15 | 2024-08-03 | [43248](https://github.com/airbytehq/airbyte/pull/43248) | Update dependencies | From 6605f4de9e039c12d3c0247b832c24011a86f49e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:38 +0200 Subject: [PATCH 205/808] =?UTF-8?q?=F0=9F=90=99=20source-lemlist:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47652)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-lemlist/metadata.yaml | 4 ++-- docs/integrations/sources/lemlist.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-lemlist/metadata.yaml b/airbyte-integrations/connectors/source-lemlist/metadata.yaml index d91a0af39f5e..fa67a3648f4e 100644 --- a/airbyte-integrations/connectors/source-lemlist/metadata.yaml +++ b/airbyte-integrations/connectors/source-lemlist/metadata.yaml @@ -14,9 +14,9 @@ data: connectorSubtype: api connectorType: source connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 definitionId: 789f8e7a-2d28-11ec-8d3d-0242ac130003 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-lemlist githubIssueLabel: source-lemlist icon: lemlist.svg diff --git a/docs/integrations/sources/lemlist.md b/docs/integrations/sources/lemlist.md index a45c7d5ebe95..a74b5d7a700d 100644 --- a/docs/integrations/sources/lemlist.md +++ b/docs/integrations/sources/lemlist.md @@ -40,6 +40,7 @@ The Lemlist connector should not run into Lemlist API limitations under normal u | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------- | +| 0.3.1 | 2024-10-28 | [47652](https://github.com/airbytehq/airbyte/pull/47652) | Update dependencies | | 0.3.0 | 2024-08-19 | [44413](https://github.com/airbytehq/airbyte/pull/44413) | Refactor connector to manifest-only format | | 0.2.14 | 2024-08-17 | [43880](https://github.com/airbytehq/airbyte/pull/43880) | Update dependencies | | 0.2.13 | 2024-08-10 | [43586](https://github.com/airbytehq/airbyte/pull/43586) | Update dependencies | From 521e7d2701909be59a7962f2725b9d12b101865f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:42 +0200 Subject: [PATCH 206/808] =?UTF-8?q?=F0=9F=90=99=20source-kissmetrics:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47650)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-kissmetrics/metadata.yaml | 4 ++-- docs/integrations/sources/kissmetrics.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml b/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml index 504113dfcba9..cb57f53254f3 100644 --- a/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml +++ b/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-kissmetrics connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: ea2607ce-b94d-4218-83f8-724010403c9e - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-kissmetrics githubIssueLabel: source-kissmetrics icon: icon.svg diff --git a/docs/integrations/sources/kissmetrics.md b/docs/integrations/sources/kissmetrics.md index 2594b53d7b01..286bc7723121 100644 --- a/docs/integrations/sources/kissmetrics.md +++ b/docs/integrations/sources/kissmetrics.md @@ -30,6 +30,7 @@ Refer `https://support.kissmetrics.io/reference/authorization` for more details. | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47650](https://github.com/airbytehq/airbyte/pull/47650) | Update dependencies | | 0.0.1 | 2024-09-21 | [45839](https://github.com/airbytehq/airbyte/pull/45839) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 0ad1e5902e6b4edf0a39bfc0461206aaf8572fcc Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:45 +0200 Subject: [PATCH 207/808] =?UTF-8?q?=F0=9F=90=99=20source-nylas:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47649)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-nylas/metadata.yaml | 4 ++-- docs/integrations/sources/nylas.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-nylas/metadata.yaml b/airbyte-integrations/connectors/source-nylas/metadata.yaml index c499e447bb22..e560a527ff81 100644 --- a/airbyte-integrations/connectors/source-nylas/metadata.yaml +++ b/airbyte-integrations/connectors/source-nylas/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-nylas connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 136a1ee6-5b95-4e09-9f3f-5c8df35df690 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-nylas githubIssueLabel: source-nylas icon: icon.svg diff --git a/docs/integrations/sources/nylas.md b/docs/integrations/sources/nylas.md index a4870410b76e..004767772113 100644 --- a/docs/integrations/sources/nylas.md +++ b/docs/integrations/sources/nylas.md @@ -33,6 +33,7 @@ The Nylas platform provides an integration layer that makes it easy to connect a | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-28 | [47649](https://github.com/airbytehq/airbyte/pull/47649) | Update dependencies | | 0.0.1 | 2024-09-03 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | - \ No newline at end of file + From d850cccb79567f1d03e61b905245f0a045725c90 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:49 +0200 Subject: [PATCH 208/808] =?UTF-8?q?=F0=9F=90=99=20source-trustpilot:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47647)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-trustpilot/metadata.yaml | 4 ++-- docs/integrations/sources/trustpilot.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-trustpilot/metadata.yaml b/airbyte-integrations/connectors/source-trustpilot/metadata.yaml index 573a10aa1f6c..8de2fecf7131 100644 --- a/airbyte-integrations/connectors/source-trustpilot/metadata.yaml +++ b/airbyte-integrations/connectors/source-trustpilot/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d7e23ea6-d741-4314-9209-a33c91a2e945 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-trustpilot githubIssueLabel: source-trustpilot icon: trustpilot.svg @@ -40,5 +40,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/trustpilot.md b/docs/integrations/sources/trustpilot.md index a0f75d4a8962..ff7c48f1f368 100644 --- a/docs/integrations/sources/trustpilot.md +++ b/docs/integrations/sources/trustpilot.md @@ -61,7 +61,8 @@ The Trustpilot connector should not run into any limits under normal usage. Plea | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------- | -| 0.3.0 | 2024-10-06 | [46529](https://github.com/airbytehq/airbyte/pull/46529) | Migrate to Manifest-only | +| 0.3.1 | 2024-10-28 | [47647](https://github.com/airbytehq/airbyte/pull/47647) | Update dependencies | +| 0.3.0 | 2024-10-06 | [46529](https://github.com/airbytehq/airbyte/pull/46529) | Migrate to Manifest-only | | 0.2.13 | 2024-10-05 | [46507](https://github.com/airbytehq/airbyte/pull/46507) | Update dependencies | | 0.2.12 | 2024-09-28 | [46134](https://github.com/airbytehq/airbyte/pull/46134) | Update dependencies | | 0.2.11 | 2024-09-21 | [45789](https://github.com/airbytehq/airbyte/pull/45789) | Update dependencies | From fc5193d03fd191c785afec27d30e2e13711c8ca8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:52 +0200 Subject: [PATCH 209/808] =?UTF-8?q?=F0=9F=90=99=20destination-meilisearch:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47646)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-meilisearch/metadata.yaml | 4 +- .../destination-meilisearch/poetry.lock | 1112 ++++++++++------- .../destination-meilisearch/pyproject.toml | 2 +- docs/integrations/destinations/meilisearch.md | 1 + 4 files changed, 638 insertions(+), 481 deletions(-) diff --git a/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml b/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml index a4fb9270c9b2..9fc4a4162fdc 100644 --- a/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml +++ b/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: destination definitionId: af7c921e-5892-4ff2-b6c1-4a5ab258fb7e - dockerImageTag: 1.0.3 + dockerImageTag: 1.0.4 dockerRepository: airbyte/destination-meilisearch githubIssueLabel: destination-meilisearch icon: meilisearch.svg @@ -23,7 +23,7 @@ data: ql: 100 supportLevel: archived connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.2@sha256:57703de3b4c4204bd68a7b13c9300f8e03c0189bffddaffc796f1da25d2dbea0 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorTestSuitesOptions: - suite: unitTests - suite: integrationTests diff --git a/airbyte-integrations/connectors/destination-meilisearch/poetry.lock b/airbyte-integrations/connectors/destination-meilisearch/poetry.lock index f4dcccc60bf7..31e0fc86a2d6 100644 --- a/airbyte-integrations/connectors/destination-meilisearch/poetry.lock +++ b/airbyte-integrations/connectors/destination-meilisearch/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "2.3.0" +version = "2.4.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.9" files = [ - {file = "airbyte_cdk-2.3.0-py3-none-any.whl", hash = "sha256:e25e7958f15b7003cff35cb50a864bd98f328f2920f228224999a73c05a2cc3c"}, - {file = "airbyte_cdk-2.3.0.tar.gz", hash = "sha256:f4694900c5a52d0a2465c45a9700fe4f2a1d95262b29eb8a41d8c62308f22f97"}, + {file = "airbyte_cdk-2.4.0-py3-none-any.whl", hash = "sha256:39470b2fe97f28959fcecb839d3080a8aba4a64a29dddf54a39f11f93f9f9ef7"}, + {file = "airbyte_cdk-2.4.0.tar.gz", hash = "sha256:f973d2e17a6dd0416c4395139e2761a10b38aafa61e097eaacffebbe6164ef45"}, ] [package.dependencies] @@ -65,24 +65,46 @@ files = [ {file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"}, ] +[[package]] +name = "anyio" +version = "4.6.2.post1" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +optional = false +python-versions = ">=3.9" +files = [ + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, +] + +[package.dependencies] +exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} +idna = ">=2.8" +sniffio = ">=1.1" +typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} + +[package.extras] +doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] +trio = ["trio (>=0.26.1)"] + [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "backoff" @@ -97,52 +119,52 @@ files = [ [[package]] name = "bracex" -version = "2.4" +version = "2.5.post1" description = "Bash style brace expander." optional = false python-versions = ">=3.8" files = [ - {file = "bracex-2.4-py3-none-any.whl", hash = "sha256:efdc71eff95eaff5e0f8cfebe7d01adf2c8637c8c92edaf63ef348c241a82418"}, - {file = "bracex-2.4.tar.gz", hash = "sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb"}, + {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, + {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, ] [[package]] name = "cachetools" -version = "5.3.3" +version = "5.5.0" description = "Extensible memoizing collections and decorators" optional = false python-versions = ">=3.7" files = [ - {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, - {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, + {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, + {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, ] [[package]] name = "camel-converter" -version = "3.1.2" +version = "4.0.1" description = "Converts a string from snake case to camel case or camel case to snake case" optional = false -python-versions = "<4.0,>=3.8" +python-versions = ">=3.9" files = [ - {file = "camel_converter-3.1.2-py3-none-any.whl", hash = "sha256:eb390d299f810f22346bd261f936790e201ec7a1219c8d7b275184361fd6f214"}, - {file = "camel_converter-3.1.2.tar.gz", hash = "sha256:7d067f4738889e0537fe1a9b228786bacdccafd2c0328682bc21f88a3f4a7156"}, + {file = "camel_converter-4.0.1-py3-none-any.whl", hash = "sha256:0cba7ca1354a29ca2191983deecc9dcf28889f606c28d6ed18ac7d4586b163ac"}, + {file = "camel_converter-4.0.1.tar.gz", hash = "sha256:401414549ae4ac4073e38cdc4aa6d464dc534fc40aa06ff787bf0960b0c86535"}, ] [package.dependencies] -pydantic = {version = ">=1.8.2", optional = true, markers = "extra == \"pydantic\""} +pydantic = {version = ">=2.0.0", optional = true, markers = "extra == \"pydantic\""} [package.extras] -pydantic = ["pydantic (>=1.8.2)"] +pydantic = ["pydantic (>=2.0.0)"] [[package]] name = "cattrs" -version = "23.2.3" +version = "24.1.2" description = "Composable complex class support for attrs and dataclasses." optional = false python-versions = ">=3.8" files = [ - {file = "cattrs-23.2.3-py3-none-any.whl", hash = "sha256:0341994d94971052e9ee70662542699a3162ea1e0c62f7ce1b4a57f563685108"}, - {file = "cattrs-23.2.3.tar.gz", hash = "sha256:a934090d95abaa9e911dac357e3a8699e0b4b14f8529bcc7d2b1ad9d51672b9f"}, + {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, + {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, ] [package.dependencies] @@ -154,6 +176,7 @@ typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_ver bson = ["pymongo (>=4.4.0)"] cbor2 = ["cbor2 (>=5.4.6)"] msgpack = ["msgpack (>=1.0.5)"] +msgspec = ["msgspec (>=0.18.5)"] orjson = ["orjson (>=3.9.2)"] pyyaml = ["pyyaml (>=6.0)"] tomlkit = ["tomlkit (>=0.11.8)"] @@ -161,74 +184,89 @@ ujson = ["ujson (>=5.7.0)"] [[package]] name = "certifi" -version = "2024.7.4" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90"}, - {file = "certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] name = "cffi" -version = "1.16.0" +version = "1.17.1" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" files = [ - {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, - {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, - {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, - {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, - {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, - {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, - {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, - {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, - {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, - {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, - {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, - {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, - {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, - {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, - {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, ] [package.dependencies] @@ -236,101 +274,116 @@ pycparser = "*" [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] @@ -428,13 +481,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -450,17 +503,77 @@ files = [ {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, ] +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "httpcore" +version = "1.0.6" +description = "A minimal low-level HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, + {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, +] + +[package.dependencies] +certifi = "*" +h11 = ">=0.13,<0.15" + +[package.extras] +asyncio = ["anyio (>=4.0,<5.0)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +trio = ["trio (>=0.22.0,<1.0)"] + +[[package]] +name = "httpx" +version = "0.27.2" +description = "The next generation HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, + {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, +] + +[package.dependencies] +anyio = "*" +certifi = "*" +httpcore = "==1.*" +idna = "*" +sniffio = "*" + +[package.extras] +brotli = ["brotli", "brotlicffi"] +cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +zstd = ["zstandard (>=0.18.0)"] + [[package]] name = "idna" -version = "3.7" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, - {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + [[package]] name = "iniconfig" version = "2.0.0" @@ -584,98 +697,101 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.83" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.83-py3-none-any.whl", hash = "sha256:f54d8cd8479b648b6339f3f735d19292c3516d080f680933ecdca3eab4b67ed3"}, - {file = "langsmith-0.1.83.tar.gz", hash = "sha256:5cdd947212c8ad19adb992c06471c860185a777daa6859bb47150f90daf64bf3"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] +httpx = ">=0.23.0,<1" orjson = ">=3.9.14,<4.0.0" pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} requests = ">=2,<3" +requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "meilisearch" -version = "0.31.3" +version = "0.31.6" description = "The python client for Meilisearch API." optional = false python-versions = ">=3.8" files = [ - {file = "meilisearch-0.31.3-py3-none-any.whl", hash = "sha256:dadd50a0f08002f92bfcb3cca18c337203c616ac4dd5a9678aa05f5382b4bf55"}, - {file = "meilisearch-0.31.3.tar.gz", hash = "sha256:4e5a63c61cbd4bd8af2c30882075854dc6ed3a13816b4d3070e62070698f25ca"}, + {file = "meilisearch-0.31.6-py3-none-any.whl", hash = "sha256:ee353949868a8454b45233c9e01c6f609d0bf6096be88e07217cfba92ca59907"}, + {file = "meilisearch-0.31.6.tar.gz", hash = "sha256:cb0359da955c7e615534ddb48720027529fc176bf64d864e5d632779d531744e"}, ] [package.dependencies] @@ -684,62 +800,69 @@ requests = "*" [[package]] name = "orjson" -version = "3.10.6" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.6-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:fb0ee33124db6eaa517d00890fc1a55c3bfe1cf78ba4a8899d71a06f2d6ff5c7"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c1c4b53b24a4c06547ce43e5fee6ec4e0d8fe2d597f4647fc033fd205707365"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eadc8fd310edb4bdbd333374f2c8fec6794bbbae99b592f448d8214a5e4050c0"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:61272a5aec2b2661f4fa2b37c907ce9701e821b2c1285d5c3ab0207ebd358d38"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57985ee7e91d6214c837936dc1608f40f330a6b88bb13f5a57ce5257807da143"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:633a3b31d9d7c9f02d49c4ab4d0a86065c4a6f6adc297d63d272e043472acab5"}, - {file = "orjson-3.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1c680b269d33ec444afe2bdc647c9eb73166fa47a16d9a75ee56a374f4a45f43"}, - {file = "orjson-3.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f759503a97a6ace19e55461395ab0d618b5a117e8d0fbb20e70cfd68a47327f2"}, - {file = "orjson-3.10.6-cp310-none-win32.whl", hash = "sha256:95a0cce17f969fb5391762e5719575217bd10ac5a189d1979442ee54456393f3"}, - {file = "orjson-3.10.6-cp310-none-win_amd64.whl", hash = "sha256:df25d9271270ba2133cc88ee83c318372bdc0f2cd6f32e7a450809a111efc45c"}, - {file = "orjson-3.10.6-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b1ec490e10d2a77c345def52599311849fc063ae0e67cf4f84528073152bb2ba"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55d43d3feb8f19d07e9f01e5b9be4f28801cf7c60d0fa0d279951b18fae1932b"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac3045267e98fe749408eee1593a142e02357c5c99be0802185ef2170086a863"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c27bc6a28ae95923350ab382c57113abd38f3928af3c80be6f2ba7eb8d8db0b0"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d27456491ca79532d11e507cadca37fb8c9324a3976294f68fb1eff2dc6ced5a"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05ac3d3916023745aa3b3b388e91b9166be1ca02b7c7e41045da6d12985685f0"}, - {file = "orjson-3.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1335d4ef59ab85cab66fe73fd7a4e881c298ee7f63ede918b7faa1b27cbe5212"}, - {file = "orjson-3.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4bbc6d0af24c1575edc79994c20e1b29e6fb3c6a570371306db0993ecf144dc5"}, - {file = "orjson-3.10.6-cp311-none-win32.whl", hash = "sha256:450e39ab1f7694465060a0550b3f6d328d20297bf2e06aa947b97c21e5241fbd"}, - {file = "orjson-3.10.6-cp311-none-win_amd64.whl", hash = "sha256:227df19441372610b20e05bdb906e1742ec2ad7a66ac8350dcfd29a63014a83b"}, - {file = "orjson-3.10.6-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ea2977b21f8d5d9b758bb3f344a75e55ca78e3ff85595d248eee813ae23ecdfb"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b6f3d167d13a16ed263b52dbfedff52c962bfd3d270b46b7518365bcc2121eed"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f710f346e4c44a4e8bdf23daa974faede58f83334289df80bc9cd12fe82573c7"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7275664f84e027dcb1ad5200b8b18373e9c669b2a9ec33d410c40f5ccf4b257e"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0943e4c701196b23c240b3d10ed8ecd674f03089198cf503105b474a4f77f21f"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:446dee5a491b5bc7d8f825d80d9637e7af43f86a331207b9c9610e2f93fee22a"}, - {file = "orjson-3.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:64c81456d2a050d380786413786b057983892db105516639cb5d3ee3c7fd5148"}, - {file = "orjson-3.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:960db0e31c4e52fa0fc3ecbaea5b2d3b58f379e32a95ae6b0ebeaa25b93dfd34"}, - {file = "orjson-3.10.6-cp312-none-win32.whl", hash = "sha256:a6ea7afb5b30b2317e0bee03c8d34c8181bc5a36f2afd4d0952f378972c4efd5"}, - {file = "orjson-3.10.6-cp312-none-win_amd64.whl", hash = "sha256:874ce88264b7e655dde4aeaacdc8fd772a7962faadfb41abe63e2a4861abc3dc"}, - {file = "orjson-3.10.6-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:66680eae4c4e7fc193d91cfc1353ad6d01b4801ae9b5314f17e11ba55e934183"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:caff75b425db5ef8e8f23af93c80f072f97b4fb3afd4af44482905c9f588da28"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3722fddb821b6036fd2a3c814f6bd9b57a89dc6337b9924ecd614ebce3271394"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c2c116072a8533f2fec435fde4d134610f806bdac20188c7bd2081f3e9e0133f"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6eeb13218c8cf34c61912e9df2de2853f1d009de0e46ea09ccdf3d757896af0a"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:965a916373382674e323c957d560b953d81d7a8603fbeee26f7b8248638bd48b"}, - {file = "orjson-3.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:03c95484d53ed8e479cade8628c9cea00fd9d67f5554764a1110e0d5aa2de96e"}, - {file = "orjson-3.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e060748a04cccf1e0a6f2358dffea9c080b849a4a68c28b1b907f272b5127e9b"}, - {file = "orjson-3.10.6-cp38-none-win32.whl", hash = "sha256:738dbe3ef909c4b019d69afc19caf6b5ed0e2f1c786b5d6215fbb7539246e4c6"}, - {file = "orjson-3.10.6-cp38-none-win_amd64.whl", hash = "sha256:d40f839dddf6a7d77114fe6b8a70218556408c71d4d6e29413bb5f150a692ff7"}, - {file = "orjson-3.10.6-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:697a35a083c4f834807a6232b3e62c8b280f7a44ad0b759fd4dce748951e70db"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd502f96bf5ea9a61cbc0b2b5900d0dd68aa0da197179042bdd2be67e51a1e4b"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f215789fb1667cdc874c1b8af6a84dc939fd802bf293a8334fce185c79cd359b"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2debd8ddce948a8c0938c8c93ade191d2f4ba4649a54302a7da905a81f00b56"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5410111d7b6681d4b0d65e0f58a13be588d01b473822483f77f513c7f93bd3b2"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb1f28a137337fdc18384079fa5726810681055b32b92253fa15ae5656e1dddb"}, - {file = "orjson-3.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bf2fbbce5fe7cd1aa177ea3eab2b8e6a6bc6e8592e4279ed3db2d62e57c0e1b2"}, - {file = "orjson-3.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:79b9b9e33bd4c517445a62b90ca0cc279b0f1f3970655c3df9e608bc3f91741a"}, - {file = "orjson-3.10.6-cp39-none-win32.whl", hash = "sha256:30b0a09a2014e621b1adf66a4f705f0809358350a757508ee80209b2d8dae219"}, - {file = "orjson-3.10.6-cp39-none-win_amd64.whl", hash = "sha256:49e3bc615652617d463069f91b867a4458114c5b104e13b7ae6872e5f79d0844"}, - {file = "orjson-3.10.6.tar.gz", hash = "sha256:e54b63d0a7c6c54a5f5f726bc93a2078111ef060fec4ecbf34c5db800ca3b3a7"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -789,19 +912,19 @@ pytzdata = ">=2020.1" [[package]] name = "platformdirs" -version = "4.2.2" +version = "4.3.6" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, - {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] -type = ["mypy (>=1.8)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "pluggy" @@ -831,119 +954,120 @@ files = [ [[package]] name = "pydantic" -version = "2.8.2" +version = "2.9.2" description = "Data validation using Python type hints" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8"}, - {file = "pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a"}, + {file = "pydantic-2.9.2-py3-none-any.whl", hash = "sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12"}, + {file = "pydantic-2.9.2.tar.gz", hash = "sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f"}, ] [package.dependencies] -annotated-types = ">=0.4.0" -pydantic-core = "2.20.1" +annotated-types = ">=0.6.0" +pydantic-core = "2.23.4" typing-extensions = {version = ">=4.6.1", markers = "python_version < \"3.13\""} [package.extras] email = ["email-validator (>=2.0.0)"] +timezone = ["tzdata"] [[package]] name = "pydantic-core" -version = "2.20.1" +version = "2.23.4" description = "Core functionality for Pydantic validation and serialization" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3"}, - {file = "pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a"}, - {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a"}, - {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840"}, - {file = "pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250"}, - {file = "pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c"}, - {file = "pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312"}, - {file = "pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b"}, - {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27"}, - {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b"}, - {file = "pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a"}, - {file = "pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2"}, - {file = "pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231"}, - {file = "pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24"}, - {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1"}, - {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd"}, - {file = "pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688"}, - {file = "pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d"}, - {file = "pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686"}, - {file = "pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83"}, - {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203"}, - {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0"}, - {file = "pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e"}, - {file = "pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20"}, - {file = "pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:4745f4ac52cc6686390c40eaa01d48b18997cb130833154801a442323cc78f91"}, - {file = "pydantic_core-2.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a8ad4c766d3f33ba8fd692f9aa297c9058970530a32c728a2c4bfd2616d3358b"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41e81317dd6a0127cabce83c0c9c3fbecceae981c8391e6f1dec88a77c8a569a"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04024d270cf63f586ad41fff13fde4311c4fc13ea74676962c876d9577bcc78f"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eaad4ff2de1c3823fddf82f41121bdf453d922e9a238642b1dedb33c4e4f98ad"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:26ab812fa0c845df815e506be30337e2df27e88399b985d0bb4e3ecfe72df31c"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c5ebac750d9d5f2706654c638c041635c385596caf68f81342011ddfa1e5598"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2aafc5a503855ea5885559eae883978c9b6d8c8993d67766ee73d82e841300dd"}, - {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4868f6bd7c9d98904b748a2653031fc9c2f85b6237009d475b1008bfaeb0a5aa"}, - {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa2f457b4af386254372dfa78a2eda2563680d982422641a85f271c859df1987"}, - {file = "pydantic_core-2.20.1-cp38-none-win32.whl", hash = "sha256:225b67a1f6d602de0ce7f6c1c3ae89a4aa25d3de9be857999e9124f15dab486a"}, - {file = "pydantic_core-2.20.1-cp38-none-win_amd64.whl", hash = "sha256:6b507132dcfc0dea440cce23ee2182c0ce7aba7054576efc65634f080dbe9434"}, - {file = "pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c"}, - {file = "pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1"}, - {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09"}, - {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab"}, - {file = "pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2"}, - {file = "pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7"}, - {file = "pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:b10bd51f823d891193d4717448fab065733958bdb6a6b351967bd349d48d5c9b"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4fc714bdbfb534f94034efaa6eadd74e5b93c8fa6315565a222f7b6f42ca1166"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63e46b3169866bd62849936de036f901a9356e36376079b05efa83caeaa02ceb"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed1a53de42fbe34853ba90513cea21673481cd81ed1be739f7f2efb931b24916"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cfdd16ab5e59fc31b5e906d1a3f666571abc367598e3e02c83403acabc092e07"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255a8ef062cbf6674450e668482456abac99a5583bbafb73f9ad469540a3a232"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a7cd62e831afe623fbb7aabbb4fe583212115b3ef38a9f6b71869ba644624a2"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f09e2ff1f17c2b51f2bc76d1cc33da96298f0a036a137f5440ab3ec5360b624f"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e38e63e6f3d1cec5a27e0afe90a085af8b6806ee208b33030e65b6516353f1a3"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0dbd8dbed2085ed23b5c04afa29d8fd2771674223135dc9bc937f3c09284d071"}, + {file = "pydantic_core-2.23.4-cp310-none-win32.whl", hash = "sha256:6531b7ca5f951d663c339002e91aaebda765ec7d61b7d1e3991051906ddde119"}, + {file = "pydantic_core-2.23.4-cp310-none-win_amd64.whl", hash = "sha256:7c9129eb40958b3d4500fa2467e6a83356b3b61bfff1b414c7361d9220f9ae8f"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64"}, + {file = "pydantic_core-2.23.4-cp311-none-win32.whl", hash = "sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f"}, + {file = "pydantic_core-2.23.4-cp311-none-win_amd64.whl", hash = "sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24"}, + {file = "pydantic_core-2.23.4-cp312-none-win32.whl", hash = "sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84"}, + {file = "pydantic_core-2.23.4-cp312-none-win_amd64.whl", hash = "sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f"}, + {file = "pydantic_core-2.23.4-cp313-none-win32.whl", hash = "sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769"}, + {file = "pydantic_core-2.23.4-cp313-none-win_amd64.whl", hash = "sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d4488a93b071c04dc20f5cecc3631fc78b9789dd72483ba15d423b5b3689b555"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:81965a16b675b35e1d09dd14df53f190f9129c0202356ed44ab2728b1c905658"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ffa2ebd4c8530079140dd2d7f794a9d9a73cbb8e9d59ffe24c63436efa8f271"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61817945f2fe7d166e75fbfb28004034b48e44878177fc54d81688e7b85a3665"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d2c342c4bc01b88402d60189f3df065fb0dda3654744d5a165a5288a657368"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e11661ce0fd30a6790e8bcdf263b9ec5988e95e63cf901972107efc49218b13"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d18368b137c6295db49ce7218b1a9ba15c5bc254c96d7c9f9e924a9bc7825ad"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ec4e55f79b1c4ffb2eecd8a0cfba9955a2588497d96851f4c8f99aa4a1d39b12"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:374a5e5049eda9e0a44c696c7ade3ff355f06b1fe0bb945ea3cac2bc336478a2"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5c364564d17da23db1106787675fc7af45f2f7b58b4173bfdd105564e132e6fb"}, + {file = "pydantic_core-2.23.4-cp38-none-win32.whl", hash = "sha256:d7a80d21d613eec45e3d41eb22f8f94ddc758a6c4720842dc74c0581f54993d6"}, + {file = "pydantic_core-2.23.4-cp38-none-win_amd64.whl", hash = "sha256:5f5ff8d839f4566a474a969508fe1c5e59c31c80d9e140566f9a37bba7b8d556"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a4fa4fc04dff799089689f4fd502ce7d59de529fc2f40a2c8836886c03e0175a"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7df63886be5e270da67e0966cf4afbae86069501d35c8c1b3b6c168f42cb36"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcedcd19a557e182628afa1d553c3895a9f825b936415d0dbd3cd0bbcfd29b4b"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f54b118ce5de9ac21c363d9b3caa6c800341e8c47a508787e5868c6b79c9323"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86d2f57d3e1379a9525c5ab067b27dbb8a0642fb5d454e17a9ac434f9ce523e3"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de6d1d1b9e5101508cb37ab0d972357cac5235f5c6533d1071964c47139257df"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1278e0d324f6908e872730c9102b0112477a7f7cf88b308e4fc36ce1bdb6d58c"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a6b5099eeec78827553827f4c6b8615978bb4b6a88e5d9b93eddf8bb6790f55"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e55541f756f9b3ee346b840103f32779c695a19826a4c442b7954550a0972040"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a5c7ba8ffb6d6f8f2ab08743be203654bb1aaa8c9dcb09f82ddd34eadb695605"}, + {file = "pydantic_core-2.23.4-cp39-none-win32.whl", hash = "sha256:37b0fe330e4a58d3c58b24d91d1eb102aeec675a3db4c292ec3928ecd892a9a6"}, + {file = "pydantic_core-2.23.4-cp39-none-win_amd64.whl", hash = "sha256:1498bec4c05c9c787bde9125cfdcc63a41004ff167f495063191b863399b1a29"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f455ee30a9d61d3e1a15abd5068827773d6e4dc513e795f380cdd59932c782d5"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1e90d2e3bd2c3863d48525d297cd143fe541be8bbf6f579504b9712cb6b643ec"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e203fdf807ac7e12ab59ca2bfcabb38c7cf0b33c41efeb00f8e5da1d86af480"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e08277a400de01bc72436a0ccd02bdf596631411f592ad985dcee21445bd0068"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f220b0eea5965dec25480b6333c788fb72ce5f9129e8759ef876a1d805d00801"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d06b0c8da4f16d1d1e352134427cb194a0a6e19ad5db9161bf32b2113409e728"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ba1a0996f6c2773bd83e63f18914c1de3c9dd26d55f4ac302a7efe93fb8e7433"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:9a5bce9d23aac8f0cf0836ecfc033896aa8443b501c58d0602dbfd5bd5b37753"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:78ddaaa81421a29574a682b3179d4cf9e6d405a09b99d93ddcf7e5239c742e21"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:883a91b5dd7d26492ff2f04f40fbb652de40fcc0afe07e8129e8ae779c2110eb"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88ad334a15b32a791ea935af224b9de1bf99bcd62fabf745d5f3442199d86d59"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:233710f069d251feb12a56da21e14cca67994eab08362207785cf8c598e74577"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:19442362866a753485ba5e4be408964644dd6a09123d9416c54cd49171f50744"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:624e278a7d29b6445e4e813af92af37820fafb6dcc55c012c834f9e26f9aaaef"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f5ef8f42bec47f21d07668a043f077d507e5bf4e668d5c6dfe6aaba89de1a5b8"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:aea443fffa9fbe3af1a9ba721a87f926fe548d32cab71d188a6ede77d0ff244e"}, + {file = "pydantic_core-2.23.4.tar.gz", hash = "sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863"}, ] [package.dependencies] @@ -951,19 +1075,19 @@ typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" [[package]] name = "pyjwt" -version = "2.8.0" +version = "2.9.0" description = "JSON Web Token implementation in Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, - {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, + {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, + {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, ] [package.extras] crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] @@ -1024,13 +1148,13 @@ files = [ [[package]] name = "pytest" -version = "8.2.2" +version = "8.3.3" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.2.2-py3-none-any.whl", hash = "sha256:c434598117762e2bd304e526244f67bf66bbd7b5d6cf22138be51ff661980343"}, - {file = "pytest-8.2.2.tar.gz", hash = "sha256:de4bb8104e201939ccdc688b27a89a7be2079b22e2bd2b07f806b6ba71117977"}, + {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, + {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, ] [package.dependencies] @@ -1038,7 +1162,7 @@ colorama = {version = "*", markers = "sys_platform == \"win32\""} exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" -pluggy = ">=1.5,<2.0" +pluggy = ">=1.5,<2" tomli = {version = ">=1", markers = "python_version < \"3.11\""} [package.extras] @@ -1082,62 +1206,64 @@ files = [ [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0.2" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] @@ -1191,20 +1317,39 @@ redis = ["redis (>=3)"] security = ["itsdangerous (>=2.0)"] yaml = ["pyyaml (>=6.0.1)"] +[[package]] +name = "requests-toolbelt" +version = "1.0.0" +description = "A utility belt for advanced users of python-requests" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, + {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, +] + +[package.dependencies] +requests = ">=2.0.1,<3.0.0" + [[package]] name = "setuptools" -version = "70.2.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-70.2.0-py3-none-any.whl", hash = "sha256:b8b8060bb426838fbe942479c90296ce976249451118ef566a5a0b7d8b78fb05"}, - {file = "setuptools-70.2.0.tar.gz", hash = "sha256:bd63e505105011b25c3c11f753f7e3b8465ea739efddaccef8f0efac2137bac1"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.10.0)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] [[package]] name = "six" @@ -1217,6 +1362,17 @@ files = [ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] +[[package]] +name = "sniffio" +version = "1.3.1" +description = "Sniff out which async library your code is running under" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, +] + [[package]] name = "tenacity" version = "8.5.0" @@ -1234,13 +1390,13 @@ test = ["pytest", "tornado (>=4.5)", "typeguard"] [[package]] name = "tomli" -version = "2.0.1" +version = "2.0.2" description = "A lil' TOML parser" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, - {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, + {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, + {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, ] [[package]] @@ -1270,13 +1426,13 @@ six = "*" [[package]] name = "urllib3" -version = "2.2.2" +version = "2.2.3" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.8" files = [ - {file = "urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472"}, - {file = "urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168"}, + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml b/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml index cd65c985ab51..ca2dbd2f4f14 100644 --- a/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml +++ b/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-meilisearch" -version = "1.0.3" +version = "1.0.4" description = "Airbyte destination implementation for Meilisearch." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/meilisearch.md b/docs/integrations/destinations/meilisearch.md index 1c140aa636b9..84d01f365be4 100644 --- a/docs/integrations/destinations/meilisearch.md +++ b/docs/integrations/destinations/meilisearch.md @@ -48,6 +48,7 @@ the MeiliSearch docs. | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------- | +| 1.0.4 | 2024-10-28 | [47646](https://github.com/airbytehq/airbyte/pull/47646) | Update dependencies | | 1.0.3 | 2024-07-08 | [#TODO](https://github.com/airbytehq/airbyte/pull/TODO) | Switching to Poetry and base image | | 1.0.2 | 2024-03-05 | [#35838](https://github.com/airbytehq/airbyte/pull/35838) | Un-archive connector | | 1.0.1 | 2023-12-19 | [27692](https://github.com/airbytehq/airbyte/pull/27692) | Fix incomplete data indexing | From 86ae32141e625fff1f85d901a9c57d9990713055 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:56 +0200 Subject: [PATCH 210/808] =?UTF-8?q?=F0=9F=90=99=20source-buzzsprout:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47645)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-buzzsprout/metadata.yaml | 4 ++-- docs/integrations/sources/buzzsprout.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml b/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml index b772857f6798..7876b783c9a4 100644 --- a/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml +++ b/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-buzzsprout connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 6ad23bfc-cb11-4faa-a243-f9ccdb0145cc - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-buzzsprout githubIssueLabel: source-buzzsprout icon: icon.svg diff --git a/docs/integrations/sources/buzzsprout.md b/docs/integrations/sources/buzzsprout.md index df5130aab3b3..a07e7175a684 100644 --- a/docs/integrations/sources/buzzsprout.md +++ b/docs/integrations/sources/buzzsprout.md @@ -30,6 +30,7 @@ Visit `https://github.com/buzzsprout/buzzsprout-api/tree/master?tab=readme-ov-fi | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47645](https://github.com/airbytehq/airbyte/pull/47645) | Update dependencies | | 0.0.1 | 2024-09-16 | [45608](https://github.com/airbytehq/airbyte/pull/45608) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 48e472953b71a5d8f4ab57a2029f4a787a5bbb15 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:09:58 +0200 Subject: [PATCH 211/808] =?UTF-8?q?=F0=9F=90=99=20source-castor-edc:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47644)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-castor-edc/metadata.yaml | 4 ++-- docs/integrations/sources/castor-edc.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-castor-edc/metadata.yaml b/airbyte-integrations/connectors/source-castor-edc/metadata.yaml index 3d199cce6027..5e4f39afdf37 100644 --- a/airbyte-integrations/connectors/source-castor-edc/metadata.yaml +++ b/airbyte-integrations/connectors/source-castor-edc/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-castor-edc connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 2cb45514-7c10-439c-a198-aeb1ddab02cb - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-castor-edc githubIssueLabel: source-castor-edc icon: icon.svg diff --git a/docs/integrations/sources/castor-edc.md b/docs/integrations/sources/castor-edc.md index f9980616b421..f62f32d85740 100644 --- a/docs/integrations/sources/castor-edc.md +++ b/docs/integrations/sources/castor-edc.md @@ -43,6 +43,7 @@ Visit `https://YOUR_REGION.castoredc.com/account/settings` for getting your clie | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47644](https://github.com/airbytehq/airbyte/pull/47644) | Update dependencies | | 0.0.1 | 2024-10-12 | [46759](https://github.com/airbytehq/airbyte/pull/46759) | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | From 58ad2d6ced2bc287553596ddbdf3696e19458f35 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:02 +0200 Subject: [PATCH 212/808] =?UTF-8?q?=F0=9F=90=99=20source-campaign-monitor:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47643)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-campaign-monitor/metadata.yaml | 4 ++-- docs/integrations/sources/campaign-monitor.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-campaign-monitor/metadata.yaml b/airbyte-integrations/connectors/source-campaign-monitor/metadata.yaml index 274c11c36fce..94ba17d4a0db 100644 --- a/airbyte-integrations/connectors/source-campaign-monitor/metadata.yaml +++ b/airbyte-integrations/connectors/source-campaign-monitor/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-campaign-monitor connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 9d350ec7-2860-4106-a331-7d9403dd9a02 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-campaign-monitor githubIssueLabel: source-campaign-monitor icon: icon.svg diff --git a/docs/integrations/sources/campaign-monitor.md b/docs/integrations/sources/campaign-monitor.md index 293adc223749..1a7ca0e9ae3a 100644 --- a/docs/integrations/sources/campaign-monitor.md +++ b/docs/integrations/sources/campaign-monitor.md @@ -59,6 +59,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47643](https://github.com/airbytehq/airbyte/pull/47643) | Update dependencies | | 0.0.1 | 2024-10-05 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From e7f375a1149cd377f12b5ed6aee04cc3b0cc8f8b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:06 +0200 Subject: [PATCH 213/808] =?UTF-8?q?=F0=9F=90=99=20source-aha:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-28]=20(#47641)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-aha/metadata.yaml | 4 ++-- docs/integrations/sources/aha.md | 15 ++++++++------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/airbyte-integrations/connectors/source-aha/metadata.yaml b/airbyte-integrations/connectors/source-aha/metadata.yaml index d244d43b398e..b42448860b4e 100644 --- a/airbyte-integrations/connectors/source-aha/metadata.yaml +++ b/airbyte-integrations/connectors/source-aha/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 81ca39dc-4534-4dd2-b848-b0cfd2c11fce - dockerImageTag: 0.4.1 + dockerImageTag: 0.4.2 dockerRepository: airbyte/source-aha documentationUrl: https://docs.airbyte.com/integrations/sources/aha githubIssueLabel: source-aha diff --git a/docs/integrations/sources/aha.md b/docs/integrations/sources/aha.md index 10ba1dc6f0c9..a44e50f49f7f 100644 --- a/docs/integrations/sources/aha.md +++ b/docs/integrations/sources/aha.md @@ -42,13 +42,14 @@ Rate Limiting information is updated [here](https://www.aha.io/api#rate-limiting | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:------------------------------------------------------------------------| -| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | -| 0.4.0 | 2024-08-14 | [44042](https://github.com/airbytehq/airbyte/pull/44042) | Refactor connector to manifest-only format | -| 0.3.14 | 2024-08-12 | [43748](https://github.com/airbytehq/airbyte/pull/43748) | Update dependencies | -| 0.3.13 | 2024-08-10 | [43556](https://github.com/airbytehq/airbyte/pull/43556) | Update dependencies | -| 0.3.12 | 2024-08-03 | [43186](https://github.com/airbytehq/airbyte/pull/43186) | Update dependencies | -| 0.3.11 | 2024-07-27 | [42737](https://github.com/airbytehq/airbyte/pull/42737) | Update dependencies | -| 0.3.10 | 2024-07-20 | [42306](https://github.com/airbytehq/airbyte/pull/42306) | Update dependencies | +| 0.4.2 | 2024-10-28 | [47641](https://github.com/airbytehq/airbyte/pull/47641) | Update dependencies | +| 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.4.0 | 2024-08-14 | [44042](https://github.com/airbytehq/airbyte/pull/44042) | Refactor connector to manifest-only format | +| 0.3.14 | 2024-08-12 | [43748](https://github.com/airbytehq/airbyte/pull/43748) | Update dependencies | +| 0.3.13 | 2024-08-10 | [43556](https://github.com/airbytehq/airbyte/pull/43556) | Update dependencies | +| 0.3.12 | 2024-08-03 | [43186](https://github.com/airbytehq/airbyte/pull/43186) | Update dependencies | +| 0.3.11 | 2024-07-27 | [42737](https://github.com/airbytehq/airbyte/pull/42737) | Update dependencies | +| 0.3.10 | 2024-07-20 | [42306](https://github.com/airbytehq/airbyte/pull/42306) | Update dependencies | | 0.3.9 | 2024-07-13 | [41914](https://github.com/airbytehq/airbyte/pull/41914) | Update dependencies | | 0.3.8 | 2024-07-10 | [41568](https://github.com/airbytehq/airbyte/pull/41568) | Update dependencies | | 0.3.7 | 2024-07-09 | [41170](https://github.com/airbytehq/airbyte/pull/41170) | Update dependencies | From ffb06bceada0a845764382fff3bfe7b841e09a42 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:09 +0200 Subject: [PATCH 214/808] =?UTF-8?q?=F0=9F=90=99=20source-rocket-chat:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47639)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rocket-chat/metadata.yaml | 4 ++-- docs/integrations/sources/rocket-chat.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml b/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml index 16e8c3e2829a..aa2285ba25eb 100644 --- a/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml +++ b/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 921d9608-3915-450b-8078-0af18801ea1b - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-rocket-chat githubIssueLabel: source-rocket-chat icon: rocket-chat.svg @@ -38,5 +38,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/rocket-chat.md b/docs/integrations/sources/rocket-chat.md index e4d56c918dcb..e311fac2dcd2 100644 --- a/docs/integrations/sources/rocket-chat.md +++ b/docs/integrations/sources/rocket-chat.md @@ -41,7 +41,8 @@ You need to setup a personal access token within the Rocket.chat workspace, see | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-28 | [47639](https://github.com/airbytehq/airbyte/pull/47639) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44076](https://github.com/airbytehq/airbyte/pull/44076) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-12 | [43884](https://github.com/airbytehq/airbyte/pull/43884) | Update dependencies | | 0.1.12 | 2024-08-10 | [43649](https://github.com/airbytehq/airbyte/pull/43649) | Update dependencies | From c19f4a1599aca88d3645da7eb3ef27084605fc68 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:13 +0200 Subject: [PATCH 215/808] =?UTF-8?q?=F0=9F=90=99=20source-chartmogul:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47637)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chartmogul/metadata.yaml | 4 ++-- docs/integrations/sources/chartmogul.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-chartmogul/metadata.yaml b/airbyte-integrations/connectors/source-chartmogul/metadata.yaml index a154a83528b2..1d9cbb219c17 100644 --- a/airbyte-integrations/connectors/source-chartmogul/metadata.yaml +++ b/airbyte-integrations/connectors/source-chartmogul/metadata.yaml @@ -18,11 +18,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: b6604cbd-1b12-4c08-8767-e140d0fb0877 - dockerImageTag: 1.1.0 + dockerImageTag: 1.1.1 dockerRepository: airbyte/source-chartmogul githubIssueLabel: source-chartmogul icon: chartmogul.svg diff --git a/docs/integrations/sources/chartmogul.md b/docs/integrations/sources/chartmogul.md index 96e4d4bfb3b5..214daa4f010b 100644 --- a/docs/integrations/sources/chartmogul.md +++ b/docs/integrations/sources/chartmogul.md @@ -65,6 +65,7 @@ The Chartmogul connector should not run into Chartmogul API limitations under no | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:---------------------------------------------------------------------------------------------------------------------------------| +| 1.1.1 | 2024-10-28 | [47637](https://github.com/airbytehq/airbyte/pull/47637) | Update dependencies | | 1.1.0 | 2024-08-19 | [44418](https://github.com/airbytehq/airbyte/pull/44418) | Refactor connector to manifest-only format | | 1.0.13 | 2024-08-17 | [44342](https://github.com/airbytehq/airbyte/pull/44342) | Update dependencies | | 1.0.12 | 2024-08-12 | [43847](https://github.com/airbytehq/airbyte/pull/43847) | Update dependencies | From baf4633ab8b51a55276115ea083837d8632fe217 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:16 +0200 Subject: [PATCH 216/808] =?UTF-8?q?=F0=9F=90=99=20source-clickup-api:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47636)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-clickup-api/metadata.yaml | 4 ++-- docs/integrations/sources/clickup-api.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-clickup-api/metadata.yaml b/airbyte-integrations/connectors/source-clickup-api/metadata.yaml index 3595221a40fc..8b6e94625f4e 100644 --- a/airbyte-integrations/connectors/source-clickup-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-clickup-api/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: 311a7a27-3fb5-4f7e-8265-5e4afe258b66 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-clickup-api githubIssueLabel: source-clickup-api icon: clickup.svg @@ -43,5 +43,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.2@sha256:efe8a454f740dc6a07252c4a457777e7c81d95f0d2ea8e9d68114d3610e9a602 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/clickup-api.md b/docs/integrations/sources/clickup-api.md index 3b157269b024..3e15147395ae 100644 --- a/docs/integrations/sources/clickup-api.md +++ b/docs/integrations/sources/clickup-api.md @@ -57,6 +57,7 @@ Here are some optional fields: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------- | +| 0.3.1 | 2024-10-28 | [47636](https://github.com/airbytehq/airbyte/pull/47636) | Update dependencies | | 0.3.0 | 2024-08-19 | [44430](https://github.com/airbytehq/airbyte/pull/44430) | Refactor connector to manifest-only format | | 0.2.0 | 2024-08-19 | [44180](https://github.com/airbytehq/airbyte/pull/44180) | Add `time_tracking`, `time_tracking_tags`, `team_goals`, `space_tags`, `team_custom_fields`, `list_custom_fields`, `list_comments`, Parent ids passed from responses, Add error handlers | | 0.1.13 | 2024-08-17 | [44237](https://github.com/airbytehq/airbyte/pull/44237) | Update dependencies | From e27bc048a50e16fefcf63cb7d875dfd0749dca59 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:19 +0200 Subject: [PATCH 217/808] =?UTF-8?q?=F0=9F=90=99=20source-nytimes:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47634)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-nytimes/metadata.yaml | 4 ++-- docs/integrations/sources/nytimes.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-nytimes/metadata.yaml b/airbyte-integrations/connectors/source-nytimes/metadata.yaml index e51f8d90e31a..d2538e556f8b 100644 --- a/airbyte-integrations/connectors/source-nytimes/metadata.yaml +++ b/airbyte-integrations/connectors/source-nytimes/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.3@sha256:c313c25af0617f5879361e684c956ac25ac1122beaf311c967e5b7a9b45ded79 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 0fae6a9a-04eb-44d4-96e1-e02d3dbc1d83 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-nytimes documentationUrl: https://docs.airbyte.com/integrations/sources/nytimes githubIssueLabel: source-nytimes diff --git a/docs/integrations/sources/nytimes.md b/docs/integrations/sources/nytimes.md index 7bd8e25cc61d..ac9705471042 100644 --- a/docs/integrations/sources/nytimes.md +++ b/docs/integrations/sources/nytimes.md @@ -45,6 +45,7 @@ The New York Times connector should not run into limitations under normal usage. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.1 | 2024-10-28 | [47634](https://github.com/airbytehq/airbyte/pull/47634) | Update dependencies | | 0.2.0 | 2024-08-22 | [44555](https://github.com/airbytehq/airbyte/pull/44555) | Refactor connector to manifest-only format | | 0.1.18 | 2024-08-17 | [44349](https://github.com/airbytehq/airbyte/pull/44349) | Update dependencies | | 0.1.17 | 2024-08-10 | [43577](https://github.com/airbytehq/airbyte/pull/43577) | Update dependencies | From 8bba657601e89aec9b5c8003b28dc73634ce1f9e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:23 +0200 Subject: [PATCH 218/808] =?UTF-8?q?=F0=9F=90=99=20source-dremio:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47633)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-dremio/metadata.yaml | 4 ++-- docs/integrations/sources/dremio.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-dremio/metadata.yaml b/airbyte-integrations/connectors/source-dremio/metadata.yaml index 259ecd9f4df5..190bb8bc6d65 100644 --- a/airbyte-integrations/connectors/source-dremio/metadata.yaml +++ b/airbyte-integrations/connectors/source-dremio/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d99e9ace-8621-46c2-9144-76ae4751d64b - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-dremio githubIssueLabel: source-dremio icon: dremio.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/dremio.md b/docs/integrations/sources/dremio.md index 8c908dba746e..991a2645aaa9 100644 --- a/docs/integrations/sources/dremio.md +++ b/docs/integrations/sources/dremio.md @@ -41,6 +41,7 @@ Please read [How to get your APIs credentials](https://docs.dremio.com/software/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------- | +| 0.2.1 | 2024-10-28 | [47633](https://github.com/airbytehq/airbyte/pull/47633) | Update dependencies | | 0.2.0 | 2024-08-19 | [44415](https://github.com/airbytehq/airbyte/pull/44415) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-17 | [44311](https://github.com/airbytehq/airbyte/pull/44311) | Update dependencies | | 0.1.14 | 2024-08-12 | [43785](https://github.com/airbytehq/airbyte/pull/43785) | Update dependencies | From 41b6e513d76f650c7c61cdd5e1bbdd10769cedd2 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:26 +0200 Subject: [PATCH 219/808] =?UTF-8?q?=F0=9F=90=99=20source-employment-hero:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47632)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-employment-hero/metadata.yaml | 4 ++-- docs/integrations/sources/employment-hero.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-employment-hero/metadata.yaml b/airbyte-integrations/connectors/source-employment-hero/metadata.yaml index a928739b645f..12e11ead7d47 100644 --- a/airbyte-integrations/connectors/source-employment-hero/metadata.yaml +++ b/airbyte-integrations/connectors/source-employment-hero/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-employment-hero connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: e2db518e-ef68-40bb-a2b6-b9f9aabbadb3 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-employment-hero githubIssueLabel: source-employment-hero icon: icon.svg diff --git a/docs/integrations/sources/employment-hero.md b/docs/integrations/sources/employment-hero.md index baaa80ddb3bb..6a5ce498864c 100644 --- a/docs/integrations/sources/employment-hero.md +++ b/docs/integrations/sources/employment-hero.md @@ -58,6 +58,7 @@ Hit Get new Access token and approve via browser, Postman will collect a new `ac | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47632](https://github.com/airbytehq/airbyte/pull/47632) | Update dependencies | | 0.0.1 | 2024-09-25 | [45888](https://github.com/airbytehq/airbyte/pull/45888) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From ac5d8331c4b0f6b7df05b0a125e6291c74d0cac2 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:29 +0200 Subject: [PATCH 220/808] =?UTF-8?q?=F0=9F=90=99=20source-babelforce:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47631)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-babelforce/metadata.yaml | 4 +-- docs/integrations/sources/babelforce.md | 33 ++++++++++--------- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/airbyte-integrations/connectors/source-babelforce/metadata.yaml b/airbyte-integrations/connectors/source-babelforce/metadata.yaml index 8c659df47018..092c69a4e8fb 100644 --- a/airbyte-integrations/connectors/source-babelforce/metadata.yaml +++ b/airbyte-integrations/connectors/source-babelforce/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 971c3e1e-78a5-411e-ad56-c4052b50876b - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-babelforce githubIssueLabel: source-babelforce icon: babelforce.svg @@ -31,5 +31,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/babelforce.md b/docs/integrations/sources/babelforce.md index 05815754e749..5e42c861a7df 100644 --- a/docs/integrations/sources/babelforce.md +++ b/docs/integrations/sources/babelforce.md @@ -49,21 +49,22 @@ Generate a API access key ID and token using the [Babelforce documentation](http | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------- | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | -| 0.3.0 | 2024-08-09 | [43439](https://github.com/airbytehq/airbyte/pull/43439) | Refactor connector to manifest-only format | -| 0.2.12 | 2024-08-03 | [43191](https://github.com/airbytehq/airbyte/pull/43191) | Update dependencies | -| 0.2.11 | 2024-07-27 | [42633](https://github.com/airbytehq/airbyte/pull/42633) | Update dependencies | -| 0.2.10 | 2024-07-20 | [42239](https://github.com/airbytehq/airbyte/pull/42239) | Update dependencies | -| 0.2.9 | 2024-07-13 | [41728](https://github.com/airbytehq/airbyte/pull/41728) | Update dependencies | -| 0.2.8 | 2024-07-10 | [41508](https://github.com/airbytehq/airbyte/pull/41508) | Update dependencies | -| 0.2.7 | 2024-07-09 | [41260](https://github.com/airbytehq/airbyte/pull/41260) | Update dependencies | -| 0.2.6 | 2024-07-06 | [40911](https://github.com/airbytehq/airbyte/pull/40911) | Update dependencies | -| 0.2.5 | 2024-06-25 | [40386](https://github.com/airbytehq/airbyte/pull/40386) | Update dependencies | -| 0.2.4 | 2024-06-22 | [39963](https://github.com/airbytehq/airbyte/pull/39963) | Update dependencies | -| 0.2.3 | 2024-06-12 | [38776](https://github.com/airbytehq/airbyte/pull/38776) | Make connector compatible with Builder | -| 0.2.2 | 2024-06-06 | [39163](https://github.com/airbytehq/airbyte/pull/39163) | [autopull] Upgrade base image to v1.2.2 | -| 0.2.1 | 2024-05-21 | [38523](https://github.com/airbytehq/airbyte/pull/38523) | [autopull] base image + poetry + up_to_date | -| 0.2.0 | 2023-08-24 | [29314](https://github.com/airbytehq/airbyte/pull/29314) | Migrate to Low Code | -| 0.1.0 | 2022-05-09 | [12700](https://github.com/airbytehq/airbyte/pull/12700) | Introduce Babelforce source | +| 0.3.2 | 2024-10-28 | [47631](https://github.com/airbytehq/airbyte/pull/47631) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.0 | 2024-08-09 | [43439](https://github.com/airbytehq/airbyte/pull/43439) | Refactor connector to manifest-only format | +| 0.2.12 | 2024-08-03 | [43191](https://github.com/airbytehq/airbyte/pull/43191) | Update dependencies | +| 0.2.11 | 2024-07-27 | [42633](https://github.com/airbytehq/airbyte/pull/42633) | Update dependencies | +| 0.2.10 | 2024-07-20 | [42239](https://github.com/airbytehq/airbyte/pull/42239) | Update dependencies | +| 0.2.9 | 2024-07-13 | [41728](https://github.com/airbytehq/airbyte/pull/41728) | Update dependencies | +| 0.2.8 | 2024-07-10 | [41508](https://github.com/airbytehq/airbyte/pull/41508) | Update dependencies | +| 0.2.7 | 2024-07-09 | [41260](https://github.com/airbytehq/airbyte/pull/41260) | Update dependencies | +| 0.2.6 | 2024-07-06 | [40911](https://github.com/airbytehq/airbyte/pull/40911) | Update dependencies | +| 0.2.5 | 2024-06-25 | [40386](https://github.com/airbytehq/airbyte/pull/40386) | Update dependencies | +| 0.2.4 | 2024-06-22 | [39963](https://github.com/airbytehq/airbyte/pull/39963) | Update dependencies | +| 0.2.3 | 2024-06-12 | [38776](https://github.com/airbytehq/airbyte/pull/38776) | Make connector compatible with Builder | +| 0.2.2 | 2024-06-06 | [39163](https://github.com/airbytehq/airbyte/pull/39163) | [autopull] Upgrade base image to v1.2.2 | +| 0.2.1 | 2024-05-21 | [38523](https://github.com/airbytehq/airbyte/pull/38523) | [autopull] base image + poetry + up_to_date | +| 0.2.0 | 2023-08-24 | [29314](https://github.com/airbytehq/airbyte/pull/29314) | Migrate to Low Code | +| 0.1.0 | 2022-05-09 | [12700](https://github.com/airbytehq/airbyte/pull/12700) | Introduce Babelforce source | From f1a37437433f3ab076c3f02a2921f1a16f560a4b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:32 +0200 Subject: [PATCH 221/808] =?UTF-8?q?=F0=9F=90=99=20source-testrail:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47630)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-testrail/metadata.yaml | 4 ++-- docs/integrations/sources/testrail.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-testrail/metadata.yaml b/airbyte-integrations/connectors/source-testrail/metadata.yaml index 8b7c1a308356..ccaaa5ecbf53 100644 --- a/airbyte-integrations/connectors/source-testrail/metadata.yaml +++ b/airbyte-integrations/connectors/source-testrail/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-testrail connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.7.5@sha256:4832cc13b262b4cae4ba72b07da544e6ee2f5d216b7147483480d5ebc5d0d7ca + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: ab49ae02-a22d-4c9a-b0be-f260e61a4011 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-testrail githubIssueLabel: source-testrail icon: icon.svg diff --git a/docs/integrations/sources/testrail.md b/docs/integrations/sources/testrail.md index e8baa99b4103..cb1eb69397d7 100644 --- a/docs/integrations/sources/testrail.md +++ b/docs/integrations/sources/testrail.md @@ -45,6 +45,7 @@ Visit `https://support.testrail.com/hc/en-us/articles/7077196481428-Attachments` | Version | Date | Pull Request | Subject | | ------------------ | ------------ | -- | ---------------- | +| 0.0.2 | 2024-10-28 | [47630](https://github.com/airbytehq/airbyte/pull/47630) | Update dependencies | | 0.0.1 | 2024-09-29 | [46250](https://github.com/airbytehq/airbyte/pull/46250) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 8c5b9713adf5fd0e3f8e29b19432704ef64feefd Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:35 +0200 Subject: [PATCH 222/808] =?UTF-8?q?=F0=9F=90=99=20source-lokalise:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47629)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-lokalise/metadata.yaml | 4 ++-- docs/integrations/sources/lokalise.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-lokalise/metadata.yaml b/airbyte-integrations/connectors/source-lokalise/metadata.yaml index e845177d6464..0ec22ac07f05 100644 --- a/airbyte-integrations/connectors/source-lokalise/metadata.yaml +++ b/airbyte-integrations/connectors/source-lokalise/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 45e0b135-615c-40ac-b38e-e65b0944197f - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-lokalise githubIssueLabel: source-lokalise icon: lokalise.svg @@ -41,5 +41,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/lokalise.md b/docs/integrations/sources/lokalise.md index 16bf87431db5..2ff507fdd7da 100644 --- a/docs/integrations/sources/lokalise.md +++ b/docs/integrations/sources/lokalise.md @@ -64,6 +64,7 @@ The Lokalise source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------- | +| 0.2.1 | 2024-10-28 | [47629](https://github.com/airbytehq/airbyte/pull/47629) | Update dependencies | | 0.2.0 | 2024-08-26 | [44765](https://github.com/airbytehq/airbyte/pull/44765) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-24 | [44696](https://github.com/airbytehq/airbyte/pull/44696) | Update dependencies | | 0.1.14 | 2024-08-17 | [44203](https://github.com/airbytehq/airbyte/pull/44203) | Update dependencies | From da31b7b7b0d708c4b2267a337fd65e2d57432d5f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:40 +0200 Subject: [PATCH 223/808] =?UTF-8?q?=F0=9F=90=99=20source-katana:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-28]=20(#47628)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-katana/metadata.yaml | 4 ++-- docs/integrations/sources/katana.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-katana/metadata.yaml b/airbyte-integrations/connectors/source-katana/metadata.yaml index b734d0398549..56e4ae9959d7 100644 --- a/airbyte-integrations/connectors/source-katana/metadata.yaml +++ b/airbyte-integrations/connectors/source-katana/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-katana connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 7408d324-0442-488c-95e3-9d3ec1d3cf59 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-katana githubIssueLabel: source-katana icon: icon.svg diff --git a/docs/integrations/sources/katana.md b/docs/integrations/sources/katana.md index 88e00f8cd2bf..e1a40481c33a 100644 --- a/docs/integrations/sources/katana.md +++ b/docs/integrations/sources/katana.md @@ -45,6 +45,7 @@ To generate a live API key: log in to your Katana account. Go to Settings > | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-28 | [47628](https://github.com/airbytehq/airbyte/pull/47628) | Update dependencies | | 0.0.1 | 2024-10-12 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 36fbeca4d2f219a9d58c5dec60266e8d50e431f7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:43 +0200 Subject: [PATCH 224/808] =?UTF-8?q?=F0=9F=90=99=20source-lob:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-28]=20(#47627)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-lob/metadata.yaml | 4 ++-- docs/integrations/sources/lob.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-lob/metadata.yaml b/airbyte-integrations/connectors/source-lob/metadata.yaml index 7664f4b6e645..af7829d136d8 100644 --- a/airbyte-integrations/connectors/source-lob/metadata.yaml +++ b/airbyte-integrations/connectors/source-lob/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-lob connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: c6d14c44-cd3e-4f94-8924-201c5615f3a7 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-lob githubIssueLabel: source-lob icon: icon.svg diff --git a/docs/integrations/sources/lob.md b/docs/integrations/sources/lob.md index aedfa6f00ed2..5f3feda82ba6 100644 --- a/docs/integrations/sources/lob.md +++ b/docs/integrations/sources/lob.md @@ -34,6 +34,7 @@ Visit `https://docs.lob.com/` for API documentation | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-28 | [47627](https://github.com/airbytehq/airbyte/pull/47627) | Update dependencies | | 0.0.1 | 2024-09-22 | [45843](https://github.com/airbytehq/airbyte/pull/45843) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 6f2e7a90a0841fac376d77962ffaebd08adaeea6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:47 +0200 Subject: [PATCH 225/808] =?UTF-8?q?=F0=9F=90=99=20source-gainsight-px:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47626)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gainsight-px/metadata.yaml | 4 ++-- docs/integrations/sources/gainsight-px.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml b/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml index 03f13925b823..3845875e4b08 100644 --- a/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml +++ b/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml @@ -3,7 +3,7 @@ data: hosts: - api.aptrinsic.com/v1 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 remoteRegistries: pypi: enabled: false @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 0da3b186-8879-4e94-8738-55b48762f1e8 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-gainsight-px githubIssueLabel: source-gainsight-px icon: gainsight-px.svg diff --git a/docs/integrations/sources/gainsight-px.md b/docs/integrations/sources/gainsight-px.md index 4e44d260ae62..14486f19c17f 100644 --- a/docs/integrations/sources/gainsight-px.md +++ b/docs/integrations/sources/gainsight-px.md @@ -74,6 +74,7 @@ Gainsight-PX-API's [API reference](https://gainsightpx.docs.apiary.io/) has v1 a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:----------------------------------------| +| 0.2.1 | 2024-10-28 | [47626](https://github.com/airbytehq/airbyte/pull/47626) | Update dependencies | | 0.2.0 | 2024-08-19 | [44414](https://github.com/airbytehq/airbyte/pull/44414) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-17 | [44248](https://github.com/airbytehq/airbyte/pull/44248) | Update dependencies | | 0.1.13 | 2024-08-12 | [43902](https://github.com/airbytehq/airbyte/pull/43902) | Update dependencies | From a984cc879d18ad0cf45ffad4f29b9caec17c50db Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:50 +0200 Subject: [PATCH 226/808] =?UTF-8?q?=F0=9F=90=99=20source-planhat:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47625)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-planhat/metadata.yaml | 4 ++-- docs/integrations/sources/planhat.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-planhat/metadata.yaml b/airbyte-integrations/connectors/source-planhat/metadata.yaml index 45f456e9cfd6..58b8091004cf 100644 --- a/airbyte-integrations/connectors/source-planhat/metadata.yaml +++ b/airbyte-integrations/connectors/source-planhat/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-planhat connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 03fdd212-bd09-4e7b-b472-5b8f1b73969b - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-planhat githubIssueLabel: source-planhat icon: icon.svg diff --git a/docs/integrations/sources/planhat.md b/docs/integrations/sources/planhat.md index 2b305b0452df..6c65fb12c34f 100644 --- a/docs/integrations/sources/planhat.md +++ b/docs/integrations/sources/planhat.md @@ -54,6 +54,7 @@ This Source is capable of syncing the following core Streams: | Version | Date | Pull Request | Subject | | ------- | ---------- | ------------ | ---------------------------------------------------- | +| 0.0.3 | 2024-10-28 | [47625](https://github.com/airbytehq/airbyte/pull/47625) | Update dependencies | | 0.0.2 | 2024-09-30 | [46271](https://github.com/airbytehq/airbyte/pull/46271) | Documentation update | | 0.0.1 | 2024-08-22 | | Initial release by natikgadzhi via Connector Builder | From 2b5174cada4ba32c932c5ea4c13b62caa8b27523 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:10:54 +0200 Subject: [PATCH 227/808] =?UTF-8?q?=F0=9F=90=99=20source-auth0:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47624)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-auth0/metadata.yaml | 4 ++-- docs/integrations/sources/auth0.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-auth0/metadata.yaml b/airbyte-integrations/connectors/source-auth0/metadata.yaml index fce34ada9046..ca378df6c4e9 100644 --- a/airbyte-integrations/connectors/source-auth0/metadata.yaml +++ b/airbyte-integrations/connectors/source-auth0/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - "*.auth0.com" connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 6c504e48-14aa-4221-9a72-19cf5ff1ae78 - dockerImageTag: 0.6.0 + dockerImageTag: 0.6.1 dockerRepository: airbyte/source-auth0 documentationUrl: https://docs.airbyte.com/integrations/sources/auth0 githubIssueLabel: source-auth0 diff --git a/docs/integrations/sources/auth0.md b/docs/integrations/sources/auth0.md index 81b257913d13..c53455c87286 100644 --- a/docs/integrations/sources/auth0.md +++ b/docs/integrations/sources/auth0.md @@ -60,6 +60,7 @@ The connector is restricted by Auth0 [rate limits](https://auth0.com/docs/troubl | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------------------- | +| 0.6.1 | 2024-10-28 | [47624](https://github.com/airbytehq/airbyte/pull/47624) | Update dependencies | | 0.6.0 | 2024-08-23 | [44590](https://github.com/airbytehq/airbyte/pull/44590) | Refactor connector to manifest-only format | | 0.5.16 | 2024-08-17 | [44211](https://github.com/airbytehq/airbyte/pull/44211) | Update dependencies | | 0.5.15 | 2024-08-12 | [43746](https://github.com/airbytehq/airbyte/pull/43746) | Update dependencies | From 76c858f8d29a2000eb742344b7e5d4c7f79cc0c3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:11:23 +0200 Subject: [PATCH 228/808] =?UTF-8?q?=F0=9F=90=99=20source-railz:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47114)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-railz/metadata.yaml | 2 +- .../connectors/source-railz/poetry.lock | 261 +++++++++--------- .../connectors/source-railz/pyproject.toml | 2 +- docs/integrations/sources/railz.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-railz/metadata.yaml b/airbyte-integrations/connectors/source-railz/metadata.yaml index 58449af2fb3f..541ec796ad88 100644 --- a/airbyte-integrations/connectors/source-railz/metadata.yaml +++ b/airbyte-integrations/connectors/source-railz/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9b6cc0c0-da81-4103-bbfd-5279e18a849a - dockerImageTag: 0.1.17 + dockerImageTag: 0.1.18 dockerRepository: airbyte/source-railz githubIssueLabel: source-railz icon: railz.svg diff --git a/airbyte-integrations/connectors/source-railz/poetry.lock b/airbyte-integrations/connectors/source-railz/poetry.lock index 4a0374b1dfb2..07bd7c9e6d5f 100644 --- a/airbyte-integrations/connectors/source-railz/poetry.lock +++ b/airbyte-integrations/connectors/source-railz/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -693,13 +693,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -711,138 +711,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1298,13 +1299,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-railz/pyproject.toml b/airbyte-integrations/connectors/source-railz/pyproject.toml index 380435d587d5..cc0554cbf1aa 100644 --- a/airbyte-integrations/connectors/source-railz/pyproject.toml +++ b/airbyte-integrations/connectors/source-railz/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.17" +version = "0.1.18" name = "source-railz" description = "Source implementation for Railz." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/railz.md b/docs/integrations/sources/railz.md index cb23dad294f2..5f4b7b4be53e 100644 --- a/docs/integrations/sources/railz.md +++ b/docs/integrations/sources/railz.md @@ -95,6 +95,7 @@ The Railz connector should gracefully handle Railz API limitations under normal | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------- | +| 0.1.18 | 2024-10-28 | [47114](https://github.com/airbytehq/airbyte/pull/47114) | Update dependencies | | 0.1.17 | 2024-10-12 | [46786](https://github.com/airbytehq/airbyte/pull/46786) | Update dependencies | | 0.1.16 | 2024-10-05 | [46462](https://github.com/airbytehq/airbyte/pull/46462) | Update dependencies | | 0.1.15 | 2024-09-28 | [46182](https://github.com/airbytehq/airbyte/pull/46182) | Update dependencies | From 546f765e3b6d29f11c9951823beb7d84fa431381 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:11:27 +0200 Subject: [PATCH 229/808] =?UTF-8?q?=F0=9F=90=99=20source-commercetools:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-28]=20(#47112)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-commercetools/metadata.yaml | 2 +- .../source-commercetools/poetry.lock | 261 +++++++++--------- .../source-commercetools/pyproject.toml | 2 +- docs/integrations/sources/commercetools.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-commercetools/metadata.yaml b/airbyte-integrations/connectors/source-commercetools/metadata.yaml index d3035a04132f..f2fb4129ef74 100644 --- a/airbyte-integrations/connectors/source-commercetools/metadata.yaml +++ b/airbyte-integrations/connectors/source-commercetools/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: 008b2e26-11a3-11ec-82a8-0242ac130003 - dockerImageTag: 0.2.20 + dockerImageTag: 0.2.21 dockerRepository: airbyte/source-commercetools githubIssueLabel: source-commercetools icon: commercetools.svg diff --git a/airbyte-integrations/connectors/source-commercetools/poetry.lock b/airbyte-integrations/connectors/source-commercetools/poetry.lock index 06658fe3a758..711efc8fb7ce 100644 --- a/airbyte-integrations/connectors/source-commercetools/poetry.lock +++ b/airbyte-integrations/connectors/source-commercetools/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -697,138 +697,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1284,13 +1285,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-commercetools/pyproject.toml b/airbyte-integrations/connectors/source-commercetools/pyproject.toml index 00c06e763721..87cc076ca7da 100644 --- a/airbyte-integrations/connectors/source-commercetools/pyproject.toml +++ b/airbyte-integrations/connectors/source-commercetools/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.20" +version = "0.2.21" name = "source-commercetools" description = "Source implementation for Commercetools." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/commercetools.md b/docs/integrations/sources/commercetools.md index 16257d05a37b..be2db479232f 100644 --- a/docs/integrations/sources/commercetools.md +++ b/docs/integrations/sources/commercetools.md @@ -52,6 +52,7 @@ Commercetools has some [rate limit restrictions](https://docs.commercetools.com/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------ | +| 0.2.21 | 2024-10-28 | [47112](https://github.com/airbytehq/airbyte/pull/47112) | Update dependencies | | 0.2.20 | 2024-10-12 | [46779](https://github.com/airbytehq/airbyte/pull/46779) | Update dependencies | | 0.2.19 | 2024-10-05 | [46497](https://github.com/airbytehq/airbyte/pull/46497) | Update dependencies | | 0.2.18 | 2024-09-28 | [46103](https://github.com/airbytehq/airbyte/pull/46103) | Update dependencies | From e66f5167f303e4cc52854bb901030666b715bdaa Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:11:33 +0200 Subject: [PATCH 230/808] =?UTF-8?q?=F0=9F=90=99=20source-webflow:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47102)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-webflow/metadata.yaml | 2 +- .../connectors/source-webflow/poetry.lock | 130 +++++++++--------- .../connectors/source-webflow/pyproject.toml | 2 +- docs/integrations/sources/webflow.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-webflow/metadata.yaml b/airbyte-integrations/connectors/source-webflow/metadata.yaml index aa6522dc2aec..126d94aa8452 100644 --- a/airbyte-integrations/connectors/source-webflow/metadata.yaml +++ b/airbyte-integrations/connectors/source-webflow/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ef580275-d9a9-48bb-af5e-db0f5855be04 - dockerImageTag: 0.1.24 + dockerImageTag: 0.1.25 dockerRepository: airbyte/source-webflow githubIssueLabel: source-webflow icon: webflow.svg diff --git a/airbyte-integrations/connectors/source-webflow/poetry.lock b/airbyte-integrations/connectors/source-webflow/poetry.lock index 1d52a6b48880..daa4d036e32d 100644 --- a/airbyte-integrations/connectors/source-webflow/poetry.lock +++ b/airbyte-integrations/connectors/source-webflow/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,13 +884,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-webflow/pyproject.toml b/airbyte-integrations/connectors/source-webflow/pyproject.toml index c53cbf1519a4..95fc3ec4eb1b 100644 --- a/airbyte-integrations/connectors/source-webflow/pyproject.toml +++ b/airbyte-integrations/connectors/source-webflow/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.24" +version = "0.1.25" name = "source-webflow" description = "Source implementation for Webflow." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/webflow.md b/docs/integrations/sources/webflow.md index 6a8205514b80..9c1d4f7852e5 100644 --- a/docs/integrations/sources/webflow.md +++ b/docs/integrations/sources/webflow.md @@ -41,6 +41,7 @@ If you are interested in learning more about the Webflow API and implementation | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------- | +| 0.1.25 | 2024-10-28 | [47102](https://github.com/airbytehq/airbyte/pull/47102) | Update dependencies | | 0.1.24 | 2024-10-12 | [46854](https://github.com/airbytehq/airbyte/pull/46854) | Update dependencies | | 0.1.23 | 2024-10-05 | [46410](https://github.com/airbytehq/airbyte/pull/46410) | Update dependencies | | 0.1.22 | 2024-09-28 | [46194](https://github.com/airbytehq/airbyte/pull/46194) | Update dependencies | From aa5b8b82225bb1ab4a2f22c679b958dcc8e1b592 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:11:37 +0200 Subject: [PATCH 231/808] =?UTF-8?q?=F0=9F=90=99=20source-my-hours:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47095)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-my-hours/metadata.yaml | 4 ++-- docs/integrations/sources/my-hours.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-my-hours/metadata.yaml b/airbyte-integrations/connectors/source-my-hours/metadata.yaml index 70573d62ee7a..2de07626c955 100644 --- a/airbyte-integrations/connectors/source-my-hours/metadata.yaml +++ b/airbyte-integrations/connectors/source-my-hours/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 722ba4bf-06ec-45a4-8dd5-72e4a5cf3903 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-my-hours githubIssueLabel: source-my-hours icon: my-hours.svg diff --git a/docs/integrations/sources/my-hours.md b/docs/integrations/sources/my-hours.md index 31b18c4d46c3..3b8febede677 100644 --- a/docs/integrations/sources/my-hours.md +++ b/docs/integrations/sources/my-hours.md @@ -36,6 +36,7 @@ Depending on the amount of team members and time logs the source provides a prop | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------- | +| 0.3.1 | 2024-10-28 | [47095](https://github.com/airbytehq/airbyte/pull/47095) | Update dependencies | | 0.3.0 | 2024-10-19 | [47012](https://github.com/airbytehq/airbyte/pull/47012) | Migrate to manifest only format | | 0.2.20 | 2024-10-12 | [46852](https://github.com/airbytehq/airbyte/pull/46852) | Update dependencies | | 0.2.19 | 2024-10-05 | [46469](https://github.com/airbytehq/airbyte/pull/46469) | Update dependencies | From 7fb8ff47741d6e45cad43a418781696496ada921 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:11:48 +0200 Subject: [PATCH 232/808] =?UTF-8?q?=F0=9F=90=99=20source-surveymonkey:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47073)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-surveymonkey/metadata.yaml | 2 +- .../source-surveymonkey/poetry.lock | 445 +++++++++--------- .../source-surveymonkey/pyproject.toml | 2 +- docs/integrations/sources/surveymonkey.md | 1 + 4 files changed, 218 insertions(+), 232 deletions(-) diff --git a/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml b/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml index 4a3152ae82de..47740f15dc1e 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml +++ b/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: badc5925-0485-42be-8caa-b34096cb71b5 - dockerImageTag: 0.3.26 + dockerImageTag: 0.3.27 dockerRepository: airbyte/source-surveymonkey documentationUrl: https://docs.airbyte.com/integrations/sources/surveymonkey githubIssueLabel: source-surveymonkey diff --git a/airbyte-integrations/connectors/source-surveymonkey/poetry.lock b/airbyte-integrations/connectors/source-surveymonkey/poetry.lock index 73829792cdde..455e3671efc8 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/poetry.lock +++ b/airbyte-integrations/connectors/source-surveymonkey/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -669,13 +669,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -687,72 +687,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -861,68 +861,69 @@ typing-extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1472,13 +1473,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1691,109 +1692,93 @@ files = [ [[package]] name = "yarl" -version = "1.15.0" +version = "1.16.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19"}, - {file = "yarl-1.15.0-cp310-cp310-win32.whl", hash = "sha256:4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9"}, - {file = "yarl-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1"}, - {file = "yarl-1.15.0-cp311-cp311-win32.whl", hash = "sha256:a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb"}, - {file = "yarl-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d"}, - {file = "yarl-1.15.0-cp312-cp312-win32.whl", hash = "sha256:e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4"}, - {file = "yarl-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e"}, - {file = "yarl-1.15.0-cp313-cp313-win32.whl", hash = "sha256:eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53"}, - {file = "yarl-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738"}, - {file = "yarl-1.15.0-cp38-cp38-win32.whl", hash = "sha256:d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95"}, - {file = "yarl-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9"}, - {file = "yarl-1.15.0-cp39-cp39-win32.whl", hash = "sha256:a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb"}, - {file = "yarl-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0"}, - {file = "yarl-1.15.0-py3-none-any.whl", hash = "sha256:1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5"}, - {file = "yarl-1.15.0.tar.gz", hash = "sha256:efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32468f41242d72b87ab793a86d92f885355bcf35b3355aa650bfa846a5c60058"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:234f3a3032b505b90e65b5bc6652c2329ea7ea8855d8de61e1642b74b4ee65d2"}, + {file = "yarl-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a0296040e5cddf074c7f5af4a60f3fc42c0237440df7bcf5183be5f6c802ed5"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de6c14dd7c7c0badba48157474ea1f03ebee991530ba742d381b28d4f314d6f3"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b140e532fe0266003c936d017c1ac301e72ee4a3fd51784574c05f53718a55d8"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:019f5d58093402aa8f6661e60fd82a28746ad6d156f6c5336a70a39bd7b162b9"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c42998fd1cbeb53cd985bff0e4bc25fbe55fd6eb3a545a724c1012d69d5ec84"}, + {file = "yarl-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7c30fb38c300fe8140df30a046a01769105e4cf4282567a29b5cdb635b66c4"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e49e0fd86c295e743fd5be69b8b0712f70a686bc79a16e5268386c2defacaade"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:b9ca7b9147eb1365c8bab03c003baa1300599575effad765e0b07dd3501ea9af"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:27e11db3f1e6a51081a981509f75617b09810529de508a181319193d320bc5c7"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8994c42f4ca25df5380ddf59f315c518c81df6a68fed5bb0c159c6cb6b92f120"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:542fa8e09a581bcdcbb30607c7224beff3fdfb598c798ccd28a8184ffc18b7eb"}, + {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2bd6a51010c7284d191b79d3b56e51a87d8e1c03b0902362945f15c3d50ed46b"}, + {file = "yarl-1.16.0-cp310-cp310-win32.whl", hash = "sha256:178ccb856e265174a79f59721031060f885aca428983e75c06f78aa24b91d929"}, + {file = "yarl-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe8bba2545427418efc1929c5c42852bdb4143eb8d0a46b09de88d1fe99258e7"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d8643975a0080f361639787415a038bfc32d29208a4bf6b783ab3075a20b1ef3"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:676d96bafc8c2d0039cea0cd3fd44cee7aa88b8185551a2bb93354668e8315c2"}, + {file = "yarl-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9525f03269e64310416dbe6c68d3b23e5d34aaa8f47193a1c45ac568cecbc49"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b37d5ec034e668b22cf0ce1074d6c21fd2a08b90d11b1b73139b750a8b0dd97"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f32c4cb7386b41936894685f6e093c8dfaf0960124d91fe0ec29fe439e201d0"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b8e265a0545637492a7e12fd7038370d66c9375a61d88c5567d0e044ded9202"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:789a3423f28a5fff46fbd04e339863c169ece97c827b44de16e1a7a42bc915d2"}, + {file = "yarl-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1d1f45e3e8d37c804dca99ab3cf4ab3ed2e7a62cd82542924b14c0a4f46d243"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:621280719c4c5dad4c1391160a9b88925bb8b0ff6a7d5af3224643024871675f"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed097b26f18a1f5ff05f661dc36528c5f6735ba4ce8c9645e83b064665131349"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2f1fe2b2e3ee418862f5ebc0c0083c97f6f6625781382f828f6d4e9b614eba9b"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:87dd10bc0618991c66cee0cc65fa74a45f4ecb13bceec3c62d78ad2e42b27a16"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4199db024b58a8abb2cfcedac7b1292c3ad421684571aeb622a02f242280e8d6"}, + {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:99a9dcd4b71dd5f5f949737ab3f356cfc058c709b4f49833aeffedc2652dac56"}, + {file = "yarl-1.16.0-cp311-cp311-win32.whl", hash = "sha256:a9394c65ae0ed95679717d391c862dece9afacd8fa311683fc8b4362ce8a410c"}, + {file = "yarl-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b9101f528ae0f8f65ac9d64dda2bb0627de8a50344b2f582779f32fda747c1d"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4ffb7c129707dd76ced0a4a4128ff452cecf0b0e929f2668ea05a371d9e5c104"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1a5e9d8ce1185723419c487758d81ac2bde693711947032cce600ca7c9cda7d6"}, + {file = "yarl-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d743e3118b2640cef7768ea955378c3536482d95550222f908f392167fe62059"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26768342f256e6e3c37533bf9433f5f15f3e59e3c14b2409098291b3efaceacb"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1b0796168b953bca6600c5f97f5ed407479889a36ad7d17183366260f29a6b9"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858728086914f3a407aa7979cab743bbda1fe2bdf39ffcd991469a370dd7414d"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5570e6d47bcb03215baf4c9ad7bf7c013e56285d9d35013541f9ac2b372593e7"}, + {file = "yarl-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66ea8311422a7ba1fc79b4c42c2baa10566469fe5a78500d4e7754d6e6db8724"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:649bddcedee692ee8a9b7b6e38582cb4062dc4253de9711568e5620d8707c2a3"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a91654adb7643cb21b46f04244c5a315a440dcad63213033826549fa2435f71"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b439cae82034ade094526a8f692b9a2b5ee936452de5e4c5f0f6c48df23f8604"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:571f781ae8ac463ce30bacebfaef2c6581543776d5970b2372fbe31d7bf31a07"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:aa7943f04f36d6cafc0cf53ea89824ac2c37acbdb4b316a654176ab8ffd0f968"}, + {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1a5cf32539373ff39d97723e39a9283a7277cbf1224f7aef0c56c9598b6486c3"}, + {file = "yarl-1.16.0-cp312-cp312-win32.whl", hash = "sha256:a5b6c09b9b4253d6a208b0f4a2f9206e511ec68dce9198e0fbec4f160137aa67"}, + {file = "yarl-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:1208ca14eed2fda324042adf8d6c0adf4a31522fa95e0929027cd487875f0240"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5ace0177520bd4caa99295a9b6fb831d0e9a57d8e0501a22ffaa61b4c024283"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7118bdb5e3ed81acaa2095cba7ec02a0fe74b52a16ab9f9ac8e28e53ee299732"}, + {file = "yarl-1.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38fec8a2a94c58bd47c9a50a45d321ab2285ad133adefbbadf3012c054b7e656"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8791d66d81ee45866a7bb15a517b01a2bcf583a18ebf5d72a84e6064c417e64b"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cf936ba67bc6c734f3aa1c01391da74ab7fc046a9f8bbfa230b8393b90cf472"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1aab176dd55b59f77a63b27cffaca67d29987d91a5b615cbead41331e6b7428"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d0759004c08abd5d1b81300a91d18c8577c6389300bed1c7c11675105a44d"}, + {file = "yarl-1.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bc22e00edeb068f71967ab99081e9406cd56dbed864fc3a8259442999d71552"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:35b4f7842154176523e0a63c9b871168c69b98065d05a4f637fce342a6a2693a"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7ace71c4b7a0c41f317ae24be62bb61e9d80838d38acb20e70697c625e71f120"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8f639e3f5795a6568aa4f7d2ac6057c757dcd187593679f035adbf12b892bb00"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e8be3aff14f0120ad049121322b107f8a759be76a6a62138322d4c8a337a9e2c"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:122d8e7986043d0549e9eb23c7fd23be078be4b70c9eb42a20052b3d3149c6f2"}, + {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0fd9c227990f609c165f56b46107d0bc34553fe0387818c42c02f77974402c36"}, + {file = "yarl-1.16.0-cp313-cp313-win32.whl", hash = "sha256:595ca5e943baed31d56b33b34736461a371c6ea0038d3baec399949dd628560b"}, + {file = "yarl-1.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:921b81b8d78f0e60242fb3db615ea3f368827a76af095d5a69f1c3366db3f596"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab2b2ac232110a1fdb0d3ffcd087783edd3d4a6ced432a1bf75caf7b7be70916"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f8713717a09acbfee7c47bfc5777e685539fefdd34fa72faf504c8be2f3df4e"}, + {file = "yarl-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdcffe1dbcb4477d2b4202f63cd972d5baa155ff5a3d9e35801c46a415b7f71a"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a91217208306d82357c67daeef5162a41a28c8352dab7e16daa82e3718852a7"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ab3ed42c78275477ea8e917491365e9a9b69bb615cb46169020bd0aa5e2d6d3"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:707ae579ccb3262dfaef093e202b4c3fb23c3810e8df544b1111bd2401fd7b09"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7a852d1cd0b8d8b37fc9d7f8581152add917a98cfe2ea6e241878795f917ae"}, + {file = "yarl-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3f1cc3d3d4dc574bebc9b387f6875e228ace5748a7c24f49d8f01ac1bc6c31b"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5ff96da263740779b0893d02b718293cc03400c3a208fc8d8cd79d9b0993e532"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:3d375a19ba2bfe320b6d873f3fb165313b002cef8b7cc0a368ad8b8a57453837"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:62c7da0ad93a07da048b500514ca47b759459ec41924143e2ddb5d7e20fd3db5"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:147b0fcd0ee33b4b5f6edfea80452d80e419e51b9a3f7a96ce98eaee145c1581"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:504e1fe1cc4f170195320eb033d2b0ccf5c6114ce5bf2f617535c01699479bca"}, + {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bdcf667a5dec12a48f669e485d70c54189f0639c2157b538a4cffd24a853624f"}, + {file = "yarl-1.16.0-cp39-cp39-win32.whl", hash = "sha256:e9951afe6557c75a71045148890052cb942689ee4c9ec29f5436240e1fcc73b7"}, + {file = "yarl-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d7aaa8ff95d0840e289423e7dc35696c2b058d635f945bf05b5cd633146b027"}, + {file = "yarl-1.16.0-py3-none-any.whl", hash = "sha256:e6980a558d8461230c457218bd6c92dfc1d10205548215c2c21d79dc8d0a96f3"}, + {file = "yarl-1.16.0.tar.gz", hash = "sha256:b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml b/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml index ddbbb5d2e518..4a284424e7e2 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml +++ b/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.26" +version = "0.3.27" name = "source-surveymonkey" description = "Source implementation for Surveymonkey." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/surveymonkey.md b/docs/integrations/sources/surveymonkey.md index 4895f1d5504c..b4f7e8868bb8 100644 --- a/docs/integrations/sources/surveymonkey.md +++ b/docs/integrations/sources/surveymonkey.md @@ -75,6 +75,7 @@ To cover more data from this source we use caching. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------- | +| 0.3.27 | 2024-10-28 | [47073](https://github.com/airbytehq/airbyte/pull/47073) | Update dependencies | | 0.3.26 | 2024-10-12 | [46801](https://github.com/airbytehq/airbyte/pull/46801) | Update dependencies | | 0.3.25 | 2024-10-05 | [46448](https://github.com/airbytehq/airbyte/pull/46448) | Update dependencies | | 0.3.24 | 2024-09-28 | [46129](https://github.com/airbytehq/airbyte/pull/46129) | Update dependencies | From 56663a74676a02926ac4f66cf9ca2c200f679ca5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:11:50 +0200 Subject: [PATCH 233/808] =?UTF-8?q?=F0=9F=90=99=20destination-duckdb:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47070)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-duckdb/metadata.yaml | 2 +- .../connectors/destination-duckdb/poetry.lock | 68 ++++++++++--------- .../destination-duckdb/pyproject.toml | 2 +- docs/integrations/destinations/duckdb.md | 1 + 4 files changed, 40 insertions(+), 33 deletions(-) diff --git a/airbyte-integrations/connectors/destination-duckdb/metadata.yaml b/airbyte-integrations/connectors/destination-duckdb/metadata.yaml index 9257cd56730a..9674eed9d20b 100644 --- a/airbyte-integrations/connectors/destination-duckdb/metadata.yaml +++ b/airbyte-integrations/connectors/destination-duckdb/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 94bd199c-2ff0-4aa2-b98e-17f0acb72610 - dockerImageTag: 0.4.24 + dockerImageTag: 0.4.25 dockerRepository: airbyte/destination-duckdb githubIssueLabel: destination-duckdb icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-duckdb/poetry.lock b/airbyte-integrations/connectors/destination-duckdb/poetry.lock index 4cec56e01d2d..e33c542743f9 100644 --- a/airbyte-integrations/connectors/destination-duckdb/poetry.lock +++ b/airbyte-integrations/connectors/destination-duckdb/poetry.lock @@ -740,38 +740,43 @@ files = [ [[package]] name = "mypy" -version = "1.11.2" +version = "1.13.0" description = "Optional static typing for Python" optional = false python-versions = ">=3.8" files = [ - {file = "mypy-1.11.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d42a6dd818ffce7be66cce644f1dff482f1d97c53ca70908dff0b9ddc120b77a"}, - {file = "mypy-1.11.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:801780c56d1cdb896eacd5619a83e427ce436d86a3bdf9112527f24a66618fef"}, - {file = "mypy-1.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41ea707d036a5307ac674ea172875f40c9d55c5394f888b168033177fce47383"}, - {file = "mypy-1.11.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6e658bd2d20565ea86da7d91331b0eed6d2eee22dc031579e6297f3e12c758c8"}, - {file = "mypy-1.11.2-cp310-cp310-win_amd64.whl", hash = "sha256:478db5f5036817fe45adb7332d927daa62417159d49783041338921dcf646fc7"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75746e06d5fa1e91bfd5432448d00d34593b52e7e91a187d981d08d1f33d4385"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a976775ab2256aadc6add633d44f100a2517d2388906ec4f13231fafbb0eccca"}, - {file = "mypy-1.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cd953f221ac1379050a8a646585a29574488974f79d8082cedef62744f0a0104"}, - {file = "mypy-1.11.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:57555a7715c0a34421013144a33d280e73c08df70f3a18a552938587ce9274f4"}, - {file = "mypy-1.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:36383a4fcbad95f2657642a07ba22ff797de26277158f1cc7bd234821468b1b6"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e8960dbbbf36906c5c0b7f4fbf2f0c7ffb20f4898e6a879fcf56a41a08b0d318"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06d26c277962f3fb50e13044674aa10553981ae514288cb7d0a738f495550b36"}, - {file = "mypy-1.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6e7184632d89d677973a14d00ae4d03214c8bc301ceefcdaf5c474866814c987"}, - {file = "mypy-1.11.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3a66169b92452f72117e2da3a576087025449018afc2d8e9bfe5ffab865709ca"}, - {file = "mypy-1.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:969ea3ef09617aff826885a22ece0ddef69d95852cdad2f60c8bb06bf1f71f70"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:37c7fa6121c1cdfcaac97ce3d3b5588e847aa79b580c1e922bb5d5d2902df19b"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a8a53bc3ffbd161b5b2a4fff2f0f1e23a33b0168f1c0778ec70e1a3d66deb86"}, - {file = "mypy-1.11.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2ff93107f01968ed834f4256bc1fc4475e2fecf6c661260066a985b52741ddce"}, - {file = "mypy-1.11.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:edb91dded4df17eae4537668b23f0ff6baf3707683734b6a818d5b9d0c0c31a1"}, - {file = "mypy-1.11.2-cp38-cp38-win_amd64.whl", hash = "sha256:ee23de8530d99b6db0573c4ef4bd8f39a2a6f9b60655bf7a1357e585a3486f2b"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:801ca29f43d5acce85f8e999b1e431fb479cb02d0e11deb7d2abb56bdaf24fd6"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af8d155170fcf87a2afb55b35dc1a0ac21df4431e7d96717621962e4b9192e70"}, - {file = "mypy-1.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7821776e5c4286b6a13138cc935e2e9b6fde05e081bdebf5cdb2bb97c9df81d"}, - {file = "mypy-1.11.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:539c570477a96a4e6fb718b8d5c3e0c0eba1f485df13f86d2970c91f0673148d"}, - {file = "mypy-1.11.2-cp39-cp39-win_amd64.whl", hash = "sha256:3f14cd3d386ac4d05c5a39a51b84387403dadbd936e17cb35882134d4f8f0d24"}, - {file = "mypy-1.11.2-py3-none-any.whl", hash = "sha256:b499bc07dbdcd3de92b0a8b29fdf592c111276f6a12fe29c30f6c417dd546d12"}, - {file = "mypy-1.11.2.tar.gz", hash = "sha256:7f9993ad3e0ffdc95c2a14b66dee63729f021968bff8ad911867579c65d13a79"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, ] [package.dependencies] @@ -781,6 +786,7 @@ typing-extensions = ">=4.6.0" [package.extras] dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] install-types = ["pip"] mypyc = ["setuptools (>=50)"] reports = ["lxml"] @@ -1312,13 +1318,13 @@ files = [ [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-duckdb/pyproject.toml b/airbyte-integrations/connectors/destination-duckdb/pyproject.toml index aea081495c00..ffc83ccee8b2 100644 --- a/airbyte-integrations/connectors/destination-duckdb/pyproject.toml +++ b/airbyte-integrations/connectors/destination-duckdb/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-duckdb" -version = "0.4.24" +version = "0.4.25" description = "Destination implementation for Duckdb." authors = ["Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/duckdb.md b/docs/integrations/destinations/duckdb.md index bafd5aec1359..311d2f8f78b1 100644 --- a/docs/integrations/destinations/duckdb.md +++ b/docs/integrations/destinations/duckdb.md @@ -116,6 +116,7 @@ This error may indicate that you are connecting with a `0.10.x` DuckDB client (a | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.4.25 | 2024-10-28 | [47070](https://github.com/airbytehq/airbyte/pull/47070) | Update dependencies | | 0.4.24 | 2024-10-12 | [46845](https://github.com/airbytehq/airbyte/pull/46845) | Update dependencies | | 0.4.23 | 2024-10-05 | [46463](https://github.com/airbytehq/airbyte/pull/46463) | Update dependencies | | 0.4.22 | 2024-09-28 | [46145](https://github.com/airbytehq/airbyte/pull/46145) | Update dependencies | From e643f1a5bc1b921d70e2aa3d0f759ca63dd38e55 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:11:54 +0200 Subject: [PATCH 234/808] =?UTF-8?q?=F0=9F=90=99=20source-outreach:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47055)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-outreach/metadata.yaml | 2 +- .../connectors/source-outreach/poetry.lock | 261 +++++++++--------- .../connectors/source-outreach/pyproject.toml | 2 +- docs/integrations/sources/outreach.md | 1 + 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/airbyte-integrations/connectors/source-outreach/metadata.yaml b/airbyte-integrations/connectors/source-outreach/metadata.yaml index 8b3f0b8cc752..ffda57f7c0ed 100644 --- a/airbyte-integrations/connectors/source-outreach/metadata.yaml +++ b/airbyte-integrations/connectors/source-outreach/metadata.yaml @@ -26,7 +26,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3490c201-5d95-4783-b600-eaf07a4c7787 - dockerImageTag: 1.0.21 + dockerImageTag: 1.0.22 dockerRepository: airbyte/source-outreach githubIssueLabel: source-outreach icon: outreach.svg diff --git a/airbyte-integrations/connectors/source-outreach/poetry.lock b/airbyte-integrations/connectors/source-outreach/poetry.lock index 85f215e48eeb..95df18bc0255 100644 --- a/airbyte-integrations/connectors/source-outreach/poetry.lock +++ b/airbyte-integrations/connectors/source-outreach/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -669,13 +669,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -687,138 +687,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1261,13 +1262,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-outreach/pyproject.toml b/airbyte-integrations/connectors/source-outreach/pyproject.toml index 7d2fe1cb32f5..d35b68deae30 100644 --- a/airbyte-integrations/connectors/source-outreach/pyproject.toml +++ b/airbyte-integrations/connectors/source-outreach/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.21" +version = "1.0.22" name = "source-outreach" description = "Source implementation for outreach." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/outreach.md b/docs/integrations/sources/outreach.md index c1fdcdd79396..6998848f93dc 100644 --- a/docs/integrations/sources/outreach.md +++ b/docs/integrations/sources/outreach.md @@ -56,6 +56,7 @@ List of available streams: | Version | Date | Pull Request | Subject | | :------ |:-----------| :----- | :------ | +| 1.0.22 | 2024-10-28 | [47055](https://github.com/airbytehq/airbyte/pull/47055) | Update dependencies | | 1.0.21 | 2024-10-12 | [46764](https://github.com/airbytehq/airbyte/pull/46764) | Update dependencies | | 1.0.20 | 2024-10-05 | [46405](https://github.com/airbytehq/airbyte/pull/46405) | Update dependencies | | 1.0.19 | 2024-09-28 | [46118](https://github.com/airbytehq/airbyte/pull/46118) | Update dependencies | From d848d6d2c4dbfbfb4474c3f75657681d7a9f9984 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:11:57 +0200 Subject: [PATCH 235/808] =?UTF-8?q?=F0=9F=90=99=20source-hardcoded-records?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47052)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-hardcoded-records/metadata.yaml | 2 +- .../source-hardcoded-records/poetry.lock | 274 +++++++++--------- .../source-hardcoded-records/pyproject.toml | 2 +- .../integrations/sources/hardcoded-records.md | 1 + 4 files changed, 141 insertions(+), 138 deletions(-) diff --git a/airbyte-integrations/connectors/source-hardcoded-records/metadata.yaml b/airbyte-integrations/connectors/source-hardcoded-records/metadata.yaml index 82da266c3ff6..0e1b796fb7a9 100644 --- a/airbyte-integrations/connectors/source-hardcoded-records/metadata.yaml +++ b/airbyte-integrations/connectors/source-hardcoded-records/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: api connectorType: source definitionId: 084124ab-22db-4019-b36d-630418541bf7 - dockerImageTag: 0.0.16 + dockerImageTag: 0.0.17 dockerRepository: airbyte/source-hardcoded-records documentationUrl: https://docs.airbyte.com/integrations/sources/hardcoded-records githubIssueLabel: source-hardcoded-records diff --git a/airbyte-integrations/connectors/source-hardcoded-records/poetry.lock b/airbyte-integrations/connectors/source-hardcoded-records/poetry.lock index 040d7973ca94..70a534060ec7 100644 --- a/airbyte-integrations/connectors/source-hardcoded-records/poetry.lock +++ b/airbyte-integrations/connectors/source-hardcoded-records/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "5.13.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.13.0-py3-none-any.whl", hash = "sha256:b26c99631e797c0bdb8373a6a05c81bf62b7d7397ca41b6ee05702d1013bd389"}, - {file = "airbyte_cdk-5.13.0.tar.gz", hash = "sha256:ab5799a238366dff61a8cded347b02deb63818513af4e61e2d1a51608a2280df"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -43,6 +43,7 @@ xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -69,13 +70,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +87,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -728,13 +729,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -749,72 +750,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -906,68 +907,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1701,13 +1703,13 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1769,13 +1771,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-hardcoded-records/pyproject.toml b/airbyte-integrations/connectors/source-hardcoded-records/pyproject.toml index 14bc3d8bf979..ad50fb034a6f 100644 --- a/airbyte-integrations/connectors/source-hardcoded-records/pyproject.toml +++ b/airbyte-integrations/connectors/source-hardcoded-records/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.0.16" +version = "0.0.17" name = "source-hardcoded-records" description = "Source implementation for hardcoded recprds." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/hardcoded-records.md b/docs/integrations/sources/hardcoded-records.md index 54e3ac873107..d21903019251 100644 --- a/docs/integrations/sources/hardcoded-records.md +++ b/docs/integrations/sources/hardcoded-records.md @@ -149,6 +149,7 @@ None! | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------| +| 0.0.17 | 2024-10-28 | [47052](https://github.com/airbytehq/airbyte/pull/47052) | Update dependencies | | 0.0.16 | 2024-10-12 | [46773](https://github.com/airbytehq/airbyte/pull/46773) | Update dependencies | | 0.0.15 | 2024-10-05 | [46492](https://github.com/airbytehq/airbyte/pull/46492) | Update dependencies | | 0.0.14 | 2024-09-28 | [46200](https://github.com/airbytehq/airbyte/pull/46200) | Update dependencies | From a912e7167f19090af3ec524807fb4009ea7b79ab Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:12:03 +0200 Subject: [PATCH 236/808] =?UTF-8?q?=F0=9F=90=99=20source-klaviyo:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47043)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-klaviyo/metadata.yaml | 2 +- .../connectors/source-klaviyo/poetry.lock | 267 +++++++++--------- .../connectors/source-klaviyo/pyproject.toml | 2 +- docs/integrations/sources/klaviyo.md | 1 + 4 files changed, 137 insertions(+), 135 deletions(-) diff --git a/airbyte-integrations/connectors/source-klaviyo/metadata.yaml b/airbyte-integrations/connectors/source-klaviyo/metadata.yaml index b3d15a1e7b48..55550e9059a2 100644 --- a/airbyte-integrations/connectors/source-klaviyo/metadata.yaml +++ b/airbyte-integrations/connectors/source-klaviyo/metadata.yaml @@ -8,7 +8,7 @@ data: definitionId: 95e8cffd-b8c4-4039-968e-d32fb4a69bde connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 - dockerImageTag: 2.10.10 + dockerImageTag: 2.10.11 dockerRepository: airbyte/source-klaviyo githubIssueLabel: source-klaviyo icon: klaviyo.svg diff --git a/airbyte-integrations/connectors/source-klaviyo/poetry.lock b/airbyte-integrations/connectors/source-klaviyo/poetry.lock index 48ef7c17efc0..0c896ff2d655 100644 --- a/airbyte-integrations/connectors/source-klaviyo/poetry.lock +++ b/airbyte-integrations/connectors/source-klaviyo/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" @@ -69,13 +69,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.1" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.1-py3-none-any.whl", hash = "sha256:0632863c9044798a494a05cab0b159dfad6a3f064094863a45878320eb4e8ed2"}, - {file = "anyio-4.6.1.tar.gz", hash = "sha256:936e6613a08e8f71a300cfffca1c1c0806335607247696ac45f9b32c63bfb9aa"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -731,13 +731,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -749,72 +749,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -844,68 +844,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1526,13 +1527,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1594,13 +1595,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-klaviyo/pyproject.toml b/airbyte-integrations/connectors/source-klaviyo/pyproject.toml index 86d50b96e9e3..5041890ac929 100644 --- a/airbyte-integrations/connectors/source-klaviyo/pyproject.toml +++ b/airbyte-integrations/connectors/source-klaviyo/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.10.10" +version = "2.10.11" name = "source-klaviyo" description = "Source implementation for Klaviyo." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/klaviyo.md b/docs/integrations/sources/klaviyo.md index a445b571707c..25f4474d3376 100644 --- a/docs/integrations/sources/klaviyo.md +++ b/docs/integrations/sources/klaviyo.md @@ -95,6 +95,7 @@ contain the `predictive_analytics` field and workflows depending on this field w | Version | Date | Pull Request | Subject | |:--------|:-----------|:-----------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------| +| 2.10.11 | 2024-10-28 | [47043](https://github.com/airbytehq/airbyte/pull/47043) | Update dependencies | | 2.10.10 | 2024-10-14 | [46741](https://github.com/airbytehq/airbyte/pull/46741) | Add checkpointing to events stream to improve large syncs after clear data | | 2.10.9 | 2024-10-12 | [46787](https://github.com/airbytehq/airbyte/pull/46787) | Update dependencies | | 2.10.8 | 2024-10-05 | [46503](https://github.com/airbytehq/airbyte/pull/46503) | Update dependencies | From 55df9d86f74df53f0cfa68dc144205bddc528a25 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 28 Oct 2024 22:12:10 +0200 Subject: [PATCH 237/808] =?UTF-8?q?=F0=9F=90=99=20source-tplcentral:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-28]=20(#47030)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-tplcentral/metadata.yaml | 2 +- .../connectors/source-tplcentral/poetry.lock | 130 +++++++++--------- .../source-tplcentral/pyproject.toml | 2 +- docs/integrations/sources/tplcentral.md | 1 + 4 files changed, 68 insertions(+), 67 deletions(-) diff --git a/airbyte-integrations/connectors/source-tplcentral/metadata.yaml b/airbyte-integrations/connectors/source-tplcentral/metadata.yaml index 2e83443eb262..78b7bc32602b 100644 --- a/airbyte-integrations/connectors/source-tplcentral/metadata.yaml +++ b/airbyte-integrations/connectors/source-tplcentral/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: f9b6c538-ee12-42fe-8d4b-0c10f5955417 - dockerImageTag: 0.1.24 + dockerImageTag: 0.1.25 dockerRepository: airbyte/source-tplcentral githubIssueLabel: source-tplcentral icon: tplcentral.svg diff --git a/airbyte-integrations/connectors/source-tplcentral/poetry.lock b/airbyte-integrations/connectors/source-tplcentral/poetry.lock index 1c99d9246bcf..8d0245990452 100644 --- a/airbyte-integrations/connectors/source-tplcentral/poetry.lock +++ b/airbyte-integrations/connectors/source-tplcentral/poetry.lock @@ -430,72 +430,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -898,13 +898,13 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-tplcentral/pyproject.toml b/airbyte-integrations/connectors/source-tplcentral/pyproject.toml index 1352c16dbdc4..556fd2b225a8 100644 --- a/airbyte-integrations/connectors/source-tplcentral/pyproject.toml +++ b/airbyte-integrations/connectors/source-tplcentral/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.24" +version = "0.1.25" name = "source-tplcentral" description = "Source implementation for Tplcentral." authors = [ "Labanoras Tech ",] diff --git a/docs/integrations/sources/tplcentral.md b/docs/integrations/sources/tplcentral.md index 9c7c5afc3571..d5190e4779c6 100644 --- a/docs/integrations/sources/tplcentral.md +++ b/docs/integrations/sources/tplcentral.md @@ -49,6 +49,7 @@ Please read [How to get your APIs credentials](https://help.3plcentral.com/hc/en | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------- | +| 0.1.25 | 2024-10-28 | [47030](https://github.com/airbytehq/airbyte/pull/47030) | Update dependencies | | 0.1.24 | 2024-10-12 | [46809](https://github.com/airbytehq/airbyte/pull/46809) | Update dependencies | | 0.1.23 | 2024-10-05 | [46508](https://github.com/airbytehq/airbyte/pull/46508) | Update dependencies | | 0.1.22 | 2024-09-28 | [46188](https://github.com/airbytehq/airbyte/pull/46188) | Update dependencies | From 0a8481c8b2c2f2789402ace5f4d09af14f889723 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Tue, 29 Oct 2024 01:56:09 +0530 Subject: [PATCH 238/808] source-pandadoc contribution from parthiv11 (#47178) Co-authored-by: Marcos Marx --- .../connectors/source-pandadoc/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-pandadoc/icon.svg | 2 + .../connectors/source-pandadoc/manifest.yaml | 1271 +++++++++++++++++ .../connectors/source-pandadoc/metadata.yaml | 35 + docs/integrations/sources/pandadoc.md | 38 + 6 files changed, 1396 insertions(+) create mode 100644 airbyte-integrations/connectors/source-pandadoc/README.md create mode 100644 airbyte-integrations/connectors/source-pandadoc/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-pandadoc/icon.svg create mode 100644 airbyte-integrations/connectors/source-pandadoc/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-pandadoc/metadata.yaml create mode 100644 docs/integrations/sources/pandadoc.md diff --git a/airbyte-integrations/connectors/source-pandadoc/README.md b/airbyte-integrations/connectors/source-pandadoc/README.md new file mode 100644 index 000000000000..07d8112211ff --- /dev/null +++ b/airbyte-integrations/connectors/source-pandadoc/README.md @@ -0,0 +1,33 @@ +# PandaDoc +This directory contains the manifest-only connector for `source-pandadoc`. + +Airbyte connector for PandaDoc allows users to extract data from PandaDoc and integrate it into various data warehouses or databases. This connector functions as a source, pulling data such as documents, templates, and related metadata from PandaDoc. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-pandadoc:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-pandadoc build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-pandadoc test +``` + diff --git a/airbyte-integrations/connectors/source-pandadoc/acceptance-test-config.yml b/airbyte-integrations/connectors/source-pandadoc/acceptance-test-config.yml new file mode 100644 index 000000000000..dc7f448cc24e --- /dev/null +++ b/airbyte-integrations/connectors/source-pandadoc/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-pandadoc:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-pandadoc/icon.svg b/airbyte-integrations/connectors/source-pandadoc/icon.svg new file mode 100644 index 000000000000..0292e7e48d7d --- /dev/null +++ b/airbyte-integrations/connectors/source-pandadoc/icon.svg @@ -0,0 +1,2 @@ + + diff --git a/airbyte-integrations/connectors/source-pandadoc/manifest.yaml b/airbyte-integrations/connectors/source-pandadoc/manifest.yaml new file mode 100644 index 000000000000..4938d7bcc82f --- /dev/null +++ b/airbyte-integrations/connectors/source-pandadoc/manifest.yaml @@ -0,0 +1,1271 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + Airbyte connector for PandaDoc allows users to extract data from PandaDoc and + integrate it into various data warehouses or databases. This connector + functions as a source, pulling data such as documents, templates, and related + metadata from PandaDoc. + +check: + type: CheckStream + stream_names: + - documents + +definitions: + streams: + documents: + type: DeclarativeStream + name: documents + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /documents + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: count + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date_modified + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: modified_from + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: modified_to + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/documents" + document_attachment: + type: DeclarativeStream + name: document_attachment + primary_key: + - uuid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /documents/{{ stream_partition.document_id }}/attachments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: document_id + stream: + $ref: "#/definitions/streams/documents" + incremental_dependency: true + transformations: + - type: AddFields + fields: + - path: + - document_id + value: "{{ stream_slice.document_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/document_attachment" + document_field: + type: DeclarativeStream + name: document_field + primary_key: + - uuid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /documents/{{ stream_partition.document_id }}/fields + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - fields + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: document_id + stream: + $ref: "#/definitions/streams/documents" + transformations: + - type: AddFields + fields: + - path: + - document_id + value: "{{ stream_slice.document_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/document_field" + document_section: + type: DeclarativeStream + name: document_section + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /documents/{{ stream_partition.document_id }}/sections + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: document_id + stream: + $ref: "#/definitions/streams/documents" + incremental_dependency: true + transformations: + - type: AddFields + fields: + - path: + - document_id + value: "{{ stream_slice.document_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/document_section" + templates: + type: DeclarativeStream + name: templates + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /templates + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: count + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/templates" + forms: + type: DeclarativeStream + name: forms + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /forms + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: count + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date_modified + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: modified_from + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: modified_to + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/forms" + contacts: + type: DeclarativeStream + name: contacts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: contacts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/contacts" + members: + type: DeclarativeStream + name: members + primary_key: + - user_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /members + http_method: GET + request_parameters: + oder_by: date_modified + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date_modified + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: modified_from + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: modified_to + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/members" + api_logs: + type: DeclarativeStream + name: api_logs + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /logs + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: count + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/api_logs" + document_folders: + type: DeclarativeStream + name: document_folders + primary_key: + - uuid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /documents/folders + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: count + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/document_folders" + template_folders: + type: DeclarativeStream + name: template_folders + primary_key: + - uuid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /templates/folders + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: count + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/template_folders" + workspaces: + type: DeclarativeStream + name: workspaces + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /workspaces + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: count + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/workspaces" + webhook_subscriptions: + type: DeclarativeStream + name: webhook_subscriptions + primary_key: + - uuid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /webhook-subscriptions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/webhook_subscriptions" + webhook_events: + type: DeclarativeStream + name: webhook_events + primary_key: + - uuid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /webhook-events + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: count + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/webhook_events" + base_requester: + type: HttpRequester + url_base: https://api.pandadoc.com/public/v1 + authenticator: + type: ApiKeyAuthenticator + api_token: API-Key {{ config['api_key'] }} + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + +streams: + - $ref: "#/definitions/streams/documents" + - $ref: "#/definitions/streams/document_attachment" + - $ref: "#/definitions/streams/document_field" + - $ref: "#/definitions/streams/document_section" + - $ref: "#/definitions/streams/templates" + - $ref: "#/definitions/streams/forms" + - $ref: "#/definitions/streams/contacts" + - $ref: "#/definitions/streams/members" + - $ref: "#/definitions/streams/api_logs" + - $ref: "#/definitions/streams/document_folders" + - $ref: "#/definitions/streams/template_folders" + - $ref: "#/definitions/streams/workspaces" + - $ref: "#/definitions/streams/webhook_subscriptions" + - $ref: "#/definitions/streams/webhook_events" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - start_date + properties: + api_key: + type: string + description: >- + API key to use. Find it at + https://app.pandadoc.com/a/#/settings/api-dashboard/configuration + name: api_key + order: 0 + title: API Key + airbyte_secret: true + start_date: + type: string + order: 1 + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + additionalProperties: true + +metadata: + autoImportSchema: + documents: true + document_attachment: false + document_field: false + document_section: false + templates: true + forms: true + contacts: true + members: true + api_logs: true + document_folders: false + template_folders: true + workspaces: false + webhook_subscriptions: false + webhook_events: false + yamlComponents: + global: + - authenticator + testedStreams: + documents: + streamHash: 1a6041417917f1ebcb2604bdf2011efd9bca412e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + document_attachment: + streamHash: e43a487e6e39cf23ef7107c7ec22f9df632e91c9 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + document_field: + streamHash: 73214c0dc270dbda451fd5796c6190c50eca9312 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + document_section: + streamHash: 46d9470b256f5055337e5d6032148dbece443af9 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + templates: + streamHash: c63e47697e776c3c95b59698d583c111d985fc33 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + forms: + streamHash: b04ce78904ac990a22db90c4ae6ace38ea8dc1df + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + contacts: + streamHash: 75385df6b646922ef585cbeba10ecc179e90f2dc + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + members: + streamHash: 413131922d82461eb976dbace1be4ab64f27e2df + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + api_logs: + streamHash: f0a34704d1bf1216557619aa57fb322de9653ed4 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + document_folders: + streamHash: 59b07684ce095993433680c9dcb256274a3ee880 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + template_folders: + streamHash: dc9df07c76e469225fc2787e1285034ea6a840fd + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + workspaces: + streamHash: 5c5a8fa1b9d41a42cafb16115894c02a656fadc2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + webhook_subscriptions: + streamHash: 90b2f50b03d6c24fc76981df02582765d0e5b14c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + webhook_events: + hasRecords: true + streamHash: 23a51c293549a08cb7ed24c92182fdc49168fa03 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://developers.pandadoc.com/reference/about + +schemas: + documents: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - string + - "null" + date_completed: + type: + - string + - "null" + date_created: + type: + - string + - "null" + date_modified: + type: string + expiration_date: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + - date_modified + document_attachment: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + id: + type: + - string + - "null" + last_name: + type: + - string + - "null" + date_created: + type: + - string + - "null" + name: + type: + - string + - "null" + uuid: + type: string + required: + - uuid + document_field: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + assigned_to: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + delivery_methods: + type: + - object + - "null" + properties: + email: + type: + - boolean + - "null" + sms: + type: + - boolean + - "null" + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + has_completed: + type: + - boolean + - "null" + id: + type: + - string + - "null" + last_name: + type: + - string + - "null" + phone: + type: + - string + - "null" + recipient_type: + type: + - string + - "null" + redirect: + type: + - object + - "null" + properties: + is_enabled: + type: + - boolean + - "null" + role: + type: + - string + - "null" + roles: + type: + - array + - "null" + items: + type: + - string + - "null" + field_id: + type: + - string + - "null" + layout: + type: + - object + - "null" + properties: + page: + type: + - number + - "null" + position: + type: + - object + - "null" + properties: + anchor_point: + type: + - string + - "null" + offset_x: + type: + - string + - "null" + offset_y: + type: + - string + - "null" + style: + type: + - object + - "null" + properties: + height: + type: + - number + - "null" + width: + type: + - number + - "null" + merge_field: + type: + - string + - "null" + name: + type: + - string + - "null" + section_uuid: + type: + - string + - "null" + settings: + type: + - object + - "null" + properties: + autofilled: + type: + - boolean + - "null" + date_format: + type: + - string + - "null" + masked: + type: + - boolean + - "null" + multiline: + type: + - boolean + - "null" + placeholder: + type: + - string + - "null" + required: + type: + - boolean + - "null" + title: + type: + - string + - "null" + uuid: + type: string + value: + type: + - object + - string + - "null" + required: + - uuid + document_section: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + name: + type: + - string + - "null" + uuid: + type: string + required: + - uuid + templates: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - string + - "null" + date_created: + type: + - string + - "null" + date_modified: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + forms: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date_created: + type: + - string + - "null" + date_modified: + type: string + id: + type: string + name: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + - date_modified + contacts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + company: + type: + - string + - "null" + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + id: + type: string + last_name: + type: + - string + - "null" + phone: + type: + - string + - "null" + required: + - id + members: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date_created: + type: + - string + - "null" + date_modified: + type: string + email: + type: + - string + - "null" + email_verified: + type: + - boolean + - "null" + first_name: + type: + - string + - "null" + is_active: + type: + - boolean + - "null" + last_name: + type: + - string + - "null" + membership_id: + type: + - string + - "null" + role: + type: + - string + - "null" + user_id: + type: string + user_license: + type: + - string + - "null" + workspace: + type: + - string + - "null" + workspace_name: + type: + - string + - "null" + required: + - user_id + - date_modified + api_logs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: string + method: + type: + - string + - "null" + request_time: + type: + - string + - "null" + response_time: + type: + - string + - "null" + status: + type: + - number + - "null" + url: + type: + - string + - "null" + required: + - id + document_folders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date_created: + type: + - string + - "null" + has_folders: + type: + - boolean + - "null" + has_items: + type: + - boolean + - "null" + name: + type: + - string + - "null" + uuid: + type: string + required: + - uuid + template_folders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date_created: + type: + - string + - "null" + has_folders: + type: + - boolean + - "null" + has_items: + type: + - boolean + - "null" + name: + type: + - string + - "null" + uuid: + type: string + required: + - uuid + workspaces: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} + webhook_subscriptions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - boolean + - "null" + name: + type: + - string + - "null" + payload: + type: + - array + - "null" + items: + type: + - string + - "null" + shared_key: + type: + - string + - "null" + status: + type: + - string + - "null" + triggers: + type: + - array + - "null" + items: + type: + - string + - "null" + url: + type: + - string + - "null" + uuid: + type: string + workspace_id: + type: + - string + - "null" + required: + - uuid + webhook_events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + delivery_time: + type: + - string + - "null" + http_status_code: + type: + - number + - "null" + name: + type: + - string + - "null" + uuid: + type: string + required: + - uuid diff --git a/airbyte-integrations/connectors/source-pandadoc/metadata.yaml b/airbyte-integrations/connectors/source-pandadoc/metadata.yaml new file mode 100644 index 000000000000..e4f1cbeed314 --- /dev/null +++ b/airbyte-integrations/connectors/source-pandadoc/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.pandadoc.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-pandadoc + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: c5719626-6fc3-48e6-8f1d-ca5d4ecd2b5c + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-pandadoc + githubIssueLabel: source-pandadoc + icon: icon.svg + license: MIT + name: PandaDoc + releaseDate: 2024-10-21 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/pandadoc + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/pandadoc.md b/docs/integrations/sources/pandadoc.md new file mode 100644 index 000000000000..2647b8972afe --- /dev/null +++ b/docs/integrations/sources/pandadoc.md @@ -0,0 +1,38 @@ +# PandaDoc +Airbyte connector for PandaDoc allows users to extract data from PandaDoc and integrate it into various data warehouses or databases. This connector functions as a source, pulling data such as documents, templates, and related metadata from PandaDoc. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. API key to use. Find it at https://app.pandadoc.com/a/#/settings/api-dashboard/configuration | | +| `start_date` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| documents | id | DefaultPaginator | ✅ | ✅ | +| document_attachment | uuid | No pagination | ✅ | ❌ | +| document_field | uuid | No pagination | ✅ | ❌ | +| document_section | uuid | No pagination | ✅ | ❌ | +| templates | | DefaultPaginator | ✅ | ❌ | +| forms | id | No pagination | ✅ | ✅ | +| contacts | id | No pagination | ✅ | ❌ | +| members | user_id | No pagination | ✅ | ✅ | +| api_logs | id | DefaultPaginator | ✅ | ❌ | +| document_folders | uuid | DefaultPaginator | ✅ | ❌ | +| template_folders | uuid | No pagination | ✅ | ❌ | +| workspaces | id | DefaultPaginator | ✅ | ❌ | +| webhook_subscriptions | uuid | No pagination | ✅ | ❌ | +| webhook_events | uuid | DefaultPaginator | ✅ | ❌ | + +## Changelog + +

+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From 6efa602bca244a4b81f94e41c5e2104ea589fd00 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Tue, 29 Oct 2024 02:00:25 +0530 Subject: [PATCH 239/808] source-justcall contribution from bishalbera (#47177) Co-authored-by: Marcos Marx --- .../connectors/source-justcall/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-justcall/icon.svg | 75 ++ .../connectors/source-justcall/manifest.yaml | 847 ++++++++++++++++++ .../connectors/source-justcall/metadata.yaml | 35 + docs/integrations/sources/justcall.md | 30 + 6 files changed, 1037 insertions(+) create mode 100644 airbyte-integrations/connectors/source-justcall/README.md create mode 100644 airbyte-integrations/connectors/source-justcall/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-justcall/icon.svg create mode 100644 airbyte-integrations/connectors/source-justcall/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-justcall/metadata.yaml create mode 100644 docs/integrations/sources/justcall.md diff --git a/airbyte-integrations/connectors/source-justcall/README.md b/airbyte-integrations/connectors/source-justcall/README.md new file mode 100644 index 000000000000..b27461d4d56d --- /dev/null +++ b/airbyte-integrations/connectors/source-justcall/README.md @@ -0,0 +1,33 @@ +# JustCall +This directory contains the manifest-only connector for `source-justcall`. + +JustCall connector enables seamless data integration by syncing call logs, contacts, and analytics from JustCall to various data destinations. This connector ensures businesses can centralize communication data for better reporting and analysis + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-justcall:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-justcall build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-justcall test +``` + diff --git a/airbyte-integrations/connectors/source-justcall/acceptance-test-config.yml b/airbyte-integrations/connectors/source-justcall/acceptance-test-config.yml new file mode 100644 index 000000000000..8ba0529d0cde --- /dev/null +++ b/airbyte-integrations/connectors/source-justcall/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-justcall:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-justcall/icon.svg b/airbyte-integrations/connectors/source-justcall/icon.svg new file mode 100644 index 000000000000..8251cc62087b --- /dev/null +++ b/airbyte-integrations/connectors/source-justcall/icon.svg @@ -0,0 +1,75 @@ + + + + + + + diff --git a/airbyte-integrations/connectors/source-justcall/manifest.yaml b/airbyte-integrations/connectors/source-justcall/manifest.yaml new file mode 100644 index 000000000000..caabb55bcc80 --- /dev/null +++ b/airbyte-integrations/connectors/source-justcall/manifest.yaml @@ -0,0 +1,847 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + JustCall connector enables seamless data integration by syncing call logs, + contacts, and analytics from JustCall to various data destinations. This + connector ensures businesses can centralize communication data for better + reporting and analysis + +check: + type: CheckStream + stream_names: + - users + +definitions: + streams: + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2.1/users + http_method: GET + request_parameters: + order: asc + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + start_from_page: 0 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + calls: + type: DeclarativeStream + name: calls + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2.1/calls + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + start_from_page: 0 + page_size: 100 + inject_on_first_request: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: call_date + cursor_datetime_formats: + - "%Y-%m-%d" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: from_datetime + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: to_datetime + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/calls" + sms: + type: DeclarativeStream + name: sms + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2.1/texts + http_method: GET + request_parameters: + order: asc + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + start_from_page: 0 + page_size: 100 + inject_on_first_request: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: sms_date + cursor_datetime_formats: + - "%Y-%m-%d" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: from_datetime + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: to_datetime + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sms" + contacts: + type: DeclarativeStream + name: contacts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v1/contacts/list + http_method: POST + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + start_from_page: 0 + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/contacts" + phone_numbers: + type: DeclarativeStream + name: phone_numbers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v1/numbers/list + http_method: POST + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/phone_numbers" + agent_analytics: + type: DeclarativeStream + name: agent_analytics + primary_key: + - agent_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2.1/sales_dialer/analytics + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/agent_analytics" + base_requester: + type: HttpRequester + url_base: https://api.justcall.io + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_key_2\"] }}" + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + +streams: + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/calls" + - $ref: "#/definitions/streams/sms" + - $ref: "#/definitions/streams/contacts" + - $ref: "#/definitions/streams/phone_numbers" + - $ref: "#/definitions/streams/agent_analytics" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key_2 + - start_date + properties: + api_key_2: + type: string + order: 0 + title: API Key + airbyte_secret: true + start_date: + type: string + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + order: 1 + additionalProperties: true + +metadata: + autoImportSchema: + users: true + calls: true + sms: true + contacts: true + phone_numbers: true + agent_analytics: true + testedStreams: + users: + streamHash: ac7b29baae274f10dc3dfef5c43b45597ebd8fb4 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + calls: + streamHash: 74823c398fdbc2b5c3d185ae3b14d6cf5e374a7a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + sms: + streamHash: e4aabf593737d644f8939714707326ef65edcb5f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + contacts: + streamHash: c3f166add6b295a9f7413b2f494b6ba1565cf17f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + phone_numbers: + streamHash: f0af01d236bb80a251d12b6985515ab1eaa85ffe + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + agent_analytics: + streamHash: 3addd325eabbe919cbbcdff9967b3b46d0927f45 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://developer.justcall.io/reference/call_list_v21 + +schemas: + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + available: + type: + - string + - "null" + created_at: + type: + - string + - "null" + email: + type: + - string + - "null" + extension: + type: + - number + - "null" + groups: + type: + - array + - "null" + id: + type: number + last_login_timestamp: + type: + - string + - "null" + name: + type: + - string + - "null" + on_call: + type: + - string + - "null" + owned_numbers: + type: + - array + - "null" + items: + type: + - string + - "null" + role: + type: + - string + - "null" + shared_numbers: + type: + - array + - "null" + timezone: + type: + - string + - "null" + unavailability_reason: + type: + - string + - "null" + working_hours_type: + type: + - string + - "null" + required: + - id + calls: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + agent_active: + type: + - string + - "null" + agent_email: + type: + - string + - "null" + agent_id: + type: + - number + - "null" + agent_name: + type: + - string + - "null" + call_date: + type: string + call_duration: + type: + - object + - "null" + properties: + conversation_time: + type: + - number + - "null" + friendly_duration: + type: + - string + - "null" + handle_time: + type: + - number + - "null" + hold_time: + type: + - number + - "null" + queue_wait_time: + type: + - number + - "null" + ring_time: + type: + - number + - "null" + total_duration: + type: + - number + - "null" + wrap_up_time: + type: + - number + - "null" + call_info: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + call_traits: + type: + - array + - "null" + direction: + type: + - string + - "null" + disposition: + type: + - string + - "null" + missed_call_reason: + type: + - string + - "null" + notes: + type: + - string + - "null" + rating: + type: + - string + - "null" + recording: + type: + - string + - "null" + recording_child: + type: + - string + - "null" + status: + type: + - string + - "null" + voicemail_transcription: + type: + - string + - "null" + call_sid: + type: + - string + - "null" + call_time: + type: + - string + - "null" + call_user_date: + type: + - string + - "null" + call_user_time: + type: + - string + - "null" + contact_email: + type: + - string + - "null" + contact_name: + type: + - string + - "null" + contact_number: + type: + - string + - "null" + cost_incurred: + type: + - number + - "null" + id: + type: number + ivr_info: + type: + - object + - "null" + properties: + content: + type: + - string + - "null" + digit_pressed: + type: + - string + - "null" + justcall_ai: + type: + - object + - "null" + justcall_line_name: + type: + - string + - "null" + justcall_number: + type: + - string + - "null" + queue: + type: + - object + - "null" + queue_callback: + type: + - object + - "null" + required: + - id + - call_date + sms: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + agent_email: + type: + - string + - "null" + agent_id: + type: + - number + - "null" + agent_name: + type: + - string + - "null" + contact_email: + type: + - string + - "null" + contact_name: + type: + - string + - "null" + contact_number: + type: + - string + - "null" + cost_incurred: + type: + - number + - "null" + delivery_status: + type: + - string + - "null" + direction: + type: + - string + - "null" + id: + type: number + is_deleted: + type: + - boolean + - "null" + justcall_line_name: + type: + - string + - "null" + justcall_number: + type: + - string + - "null" + medium: + type: + - string + - "null" + sms_date: + type: string + sms_info: + type: + - object + - "null" + properties: + body: + type: + - string + - "null" + is_mms: + type: + - string + - "null" + mms: + type: + - array + - "null" + sms_time: + type: + - string + - "null" + sms_user_date: + type: + - string + - "null" + sms_user_time: + type: + - string + - "null" + required: + - id + - sms_date + contacts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + company: + type: + - string + - "null" + email: + type: + - string + - "null" + firstname: + type: + - string + - "null" + id: + type: number + lastname: + type: + - string + - "null" + notes: + type: + - string + - "null" + other_phones: + type: + - array + - "null" + phone: + type: + - string + - "null" + required: + - id + phone_numbers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + agent_id: + type: + - number + - "null" + capabilities: + type: + - object + - "null" + properties: + fax: + type: + - string + - "null" + mms: + type: + - string + - "null" + sms: + type: + - string + - "null" + voice: + type: + - string + - "null" + custom_name: + type: + - string + - "null" + friendly_name: + type: + - string + - "null" + id: + type: number + phone: + type: + - string + - "null" + required: + - id + agent_analytics: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + abandoned_calls: + type: + - number + - "null" + agent_email: + type: + - string + - "null" + agent_id: + type: number + agent_name: + type: + - string + - "null" + agent_success_rate: + type: + - number + - "null" + answered_calls: + type: + - number + - "null" + available_time_in_campaign: + type: + - string + - "null" + average_call_duration: + type: + - string + - "null" + campaigns_run: + type: + - number + - "null" + connection_rate: + type: + - number + - "null" + dialed_calls: + type: + - number + - "null" + max_call_duration: + type: + - string + - "null" + pause_time: + type: + - string + - "null" + total_after_call_work: + type: + - string + - "null" + total_call_duration: + type: + - string + - "null" + total_cost_incurred: + type: + - number + - "null" + total_unanswered_calls: + type: + - number + - "null" + total_voicemails_drops: + type: + - number + - "null" + required: + - agent_id diff --git a/airbyte-integrations/connectors/source-justcall/metadata.yaml b/airbyte-integrations/connectors/source-justcall/metadata.yaml new file mode 100644 index 000000000000..f54df2b583ff --- /dev/null +++ b/airbyte-integrations/connectors/source-justcall/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.justcall.io" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-justcall + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 488cdc64-36cd-451d-bcfa-c6478b461e94 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-justcall + githubIssueLabel: source-justcall + icon: icon.svg + license: MIT + name: JustCall + releaseDate: 2024-10-21 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/justcall + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/justcall.md b/docs/integrations/sources/justcall.md new file mode 100644 index 000000000000..aef62947623b --- /dev/null +++ b/docs/integrations/sources/justcall.md @@ -0,0 +1,30 @@ +# JustCall +JustCall connector enables seamless data integration by syncing call logs, contacts, and analytics from JustCall to various data destinations. This connector ensures businesses can centralize communication data for better reporting and analysis + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key_2` | `string` | API Key. | | +| `start_date` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| users | id | DefaultPaginator | ✅ | ❌ | +| calls | id | DefaultPaginator | ✅ | ✅ | +| sms | id | DefaultPaginator | ✅ | ✅ | +| contacts | id | No pagination | ✅ | ❌ | +| phone_numbers | id | No pagination | ✅ | ❌ | +| agent_analytics | agent_id | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-21 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From 90f906f0eeddc9634d4f2e263604928338f58633 Mon Sep 17 00:00:00 2001 From: Tope Folorunso <66448986+topefolorunso@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:31:25 +0100 Subject: [PATCH 240/808] =?UTF-8?q?=E2=9C=A8=20Source=20Bamboo=20HR=20:=20?= =?UTF-8?q?Migrate=20to=20Manifest-only=20(#47262)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-bamboo-hr/README.md | 93 +- .../connectors/source-bamboo-hr/__init__.py | 3 - .../acceptance-test-config.yml | 2 +- .../connectors/source-bamboo-hr/components.py | 147 ++ .../connectors/source-bamboo-hr/main.py | 8 - .../{source_bamboo_hr => }/manifest.yaml | 187 ++- .../connectors/source-bamboo-hr/metadata.yaml | 8 +- .../connectors/source-bamboo-hr/poetry.lock | 1469 ----------------- .../source-bamboo-hr/pyproject.toml | 27 - .../source_bamboo_hr/__init__.py | 26 - .../source_bamboo_hr/components.py | 59 - .../source-bamboo-hr/source_bamboo_hr/run.py | 15 - .../schemas/custom_reports_stream.json | 326 ---- .../source_bamboo_hr/source.py | 18 - docs/integrations/sources/bamboo-hr.md | 1 + 15 files changed, 292 insertions(+), 2097 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/__init__.py create mode 100644 airbyte-integrations/connectors/source-bamboo-hr/components.py delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/main.py rename airbyte-integrations/connectors/source-bamboo-hr/{source_bamboo_hr => }/manifest.yaml (70%) delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/__init__.py delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/components.py delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/run.py delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py diff --git a/airbyte-integrations/connectors/source-bamboo-hr/README.md b/airbyte-integrations/connectors/source-bamboo-hr/README.md index 3d9840f759b5..ed633fcd2a8b 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/README.md +++ b/airbyte-integrations/connectors/source-bamboo-hr/README.md @@ -1,53 +1,22 @@ -# Bamboo Hr Source +# Bamboo HR source connector -This is the repository for the Bamboo HR source connector. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/bamboo-hr). +This directory contains the manifest-only connector for `source-bamboo-hr`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development - -### Prerequisites - -* Python (`^3.9`) -* Poetry (`^1.7`) - installation instructions [here](https://python-poetry.org/docs/#installation) - - -- Python (~=3.9) -- Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) - -### Installing the connector - -From this connector directory, run: - -```bash -poetry install --with dev -``` +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/bamboo-hr). -### Create credentials - -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/bamboo-hr) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `src/source_bamboo_hr/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `sample_files/sample_config.json` for a sample config file. - -### Locally running the connector - -``` -poetry run source-bamboo-hr spec -poetry run source-bamboo-hr check --config secrets/config.json -poetry run source-bamboo-hr discover --config secrets/config.json -poetry run source-bamboo-hr read --config secrets/config.json --catalog sample_files/configured_catalog.json -``` +## Local development -### Running tests +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -To run tests locally, from the connector directory run: - -``` -poetry run pytest tests -``` +If you prefer to develop locally, you can follow the instructions below. ### Building the docker image +You can build any manifest-only connector with `airbyte-ci`: + 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: @@ -57,18 +26,24 @@ airbyte-ci connectors --name=source-bamboo-hr build An image will be available on your host with the tag `airbyte/source-bamboo-hr:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/bamboo-hr) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. + ### Running as a docker container -Then run any of the connector commands as follows: +Then run any of the standard source connector commands: -``` +```bash docker run --rm airbyte/source-bamboo-hr:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-bamboo-hr:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-bamboo-hr:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-bamboo-hr:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): @@ -76,31 +51,13 @@ You can run our full test suite locally using [`airbyte-ci`](https://github.com/ airbyte-ci connectors --name=source-bamboo-hr test ``` -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -### Dependency Management - -All of your dependencies should be managed via Poetry. -To add a new dependency, run: - -```bash -poetry add -``` - -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? - -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-bamboo-hr test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - - bump the `dockerImageTag` value in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. +If you want to contribute changes to `source-bamboo-hr`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-bamboo-hr test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + - bump the `dockerImageTag` value in in `metadata.yaml` 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/bamboo-hr.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. diff --git a/airbyte-integrations/connectors/source-bamboo-hr/__init__.py b/airbyte-integrations/connectors/source-bamboo-hr/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-bamboo-hr/acceptance-test-config.yml b/airbyte-integrations/connectors/source-bamboo-hr/acceptance-test-config.yml index 039d62b5b7c8..9e2c04dd518c 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-bamboo-hr/acceptance-test-config.yml @@ -4,7 +4,7 @@ connector_image: airbyte/source-bamboo-hr:dev acceptance_tests: spec: tests: - - spec_path: "source_bamboo_hr/spec.yaml" + - spec_path: "manifest.yaml" connection: tests: - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-bamboo-hr/components.py b/airbyte-integrations/connectors/source-bamboo-hr/components.py new file mode 100644 index 000000000000..8035c61dc25d --- /dev/null +++ b/airbyte-integrations/connectors/source-bamboo-hr/components.py @@ -0,0 +1,147 @@ +# +# Copyright (c) 2023 Airbyte, Inc., all rights reserved. +# + +from dataclasses import InitVar, dataclass +from typing import Any, Mapping + +from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString +from airbyte_cdk.sources.declarative.schema.json_file_schema_loader import JsonFileSchemaLoader, _default_file_path + + +@dataclass +class CustomReportsSchemaLoader(JsonFileSchemaLoader): + + config: Mapping[str, Any] + parameters: InitVar[Mapping[str, Any]] = {"name": "custom_reports_stream"} + + def __post_init__(self, parameters: Mapping[str, Any]): + if not self.file_path: + self.file_path = _default_file_path() + self.file_path = InterpolatedString.create(self.file_path, parameters=self.parameters) + + def get_json_schema(self) -> Mapping[str, Any]: + """ + Returns the JSON schema. + + The final schema is constructed by first generating a schema for the fields + in the config and, if default fields should be included, adding these to the + schema. + """ + schema = self._get_json_schema_from_config() + if self.config.get("custom_reports_include_default_fields"): + default_schema = CUSTOM_REPORTS_BASE_SCHEMA + schema = self._union_schemas(default_schema, schema) + return schema + + def _get_json_schema_from_config(self): + if self.config.get("custom_reports_fields"): + properties = { + field.strip(): {"type": ["null", "string"]} + for field in self.convert_custom_reports_fields_to_list(self.config.get("custom_reports_fields", "")) + } + else: + properties = {} + return { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": properties, + } + + def convert_custom_reports_fields_to_list(self, custom_reports_fields: str) -> list: + return custom_reports_fields.split(",") if custom_reports_fields else [] + + def _union_schemas(self, schema1, schema2): + schema1["properties"] = {**schema1["properties"], **schema2["properties"]} + return schema1 + + +CUSTOM_REPORTS_BASE_SCHEMA = { + "type": ["null", "object"], + "required": [], + "properties": { + "acaStatus": {"description": "The Affordable Care Act status of the employee.", "type": ["null", "string"]}, + "acaStatusCategory": {"description": "The category of the Affordable Care Act status of the employee.", "type": ["null", "string"]}, + "address1": {"description": "First line of the employee's address.", "type": ["null", "string"]}, + "address2": {"description": "Second line of the employee's address.", "type": ["null", "string"]}, + "age": {"description": "The age of the employee.", "type": ["null", "string"]}, + "bestEmail": {"description": "The primary email address of the employee.", "type": ["null", "string"]}, + "birthday": {"description": "The birthday of the employee.", "type": ["null", "string"]}, + "bonusAmount": {"description": "The amount of bonus received by the employee.", "type": ["null", "string"]}, + "bonusComment": {"description": "Comment related to the bonus received by the employee.", "type": ["null", "string"]}, + "bonusDate": {"description": "Date on which the bonus was received by the employee.", "type": ["null", "string"]}, + "bonusReason": {"description": "Reason for granting the bonus to the employee.", "type": ["null", "string"]}, + "city": {"description": "City where the employee is located.", "type": ["null", "string"]}, + "commissionAmount": {"description": "The amount of commission received by the employee.", "type": ["null", "string"]}, + "commissionComment": {"description": "Comment related to the commission received by the employee.", "type": ["null", "string"]}, + "commissionDate": {"description": "Date on which the commission was received by the employee.", "type": ["null", "string"]}, + "commisionDate": {"description": "Date of commission for the employee.", "type": ["null", "string"]}, + "country": {"description": "Country where the employee is located.", "type": ["null", "string"]}, + "createdByUserId": {"description": "ID of the user who created the employee record.", "type": ["null", "string"]}, + "dateOfBirth": {"description": "Date of birth of the employee.", "type": ["null", "string"]}, + "department": {"description": "Department in which the employee works.", "type": ["null", "string"]}, + "division": {"description": "Division to which the employee belongs.", "type": ["null", "string"]}, + "eeo": {"description": "Equal Employment Opportunity (EEO) information of the employee.", "type": ["null", "string"]}, + "employeeNumber": {"description": "Unique employee identification number.", "type": ["null", "string"]}, + "employmentHistoryStatus": {"description": "Status of the employee's employment history.", "type": ["null", "string"]}, + "ethnicity": {"description": "Ethnicity information of the employee.", "type": ["null", "string"]}, + "exempt": {"description": "Exempt status of the employee for employment regulations.", "type": ["null", "string"]}, + "firstName": {"description": "First name of the employee.", "type": ["null", "string"]}, + "flsaCode": {"description": "Fair Labor Standards Act (FLSA) code classification of the employee.", "type": ["null", "string"]}, + "fullName1": {"description": "First version of the employee's full name.", "type": ["null", "string"]}, + "fullName2": {"description": "Second version of the employee's full name.", "type": ["null", "string"]}, + "fullName3": {"description": "Third version of the employee's full name.", "type": ["null", "string"]}, + "fullName4": {"description": "Fourth version of the employee's full name.", "type": ["null", "string"]}, + "fullName5": {"description": "Fifth version of the employee's full name.", "type": ["null", "string"]}, + "displayName": {"description": "Display name of the employee.", "type": ["null", "string"]}, + "gender": {"description": "Gender of the employee.", "type": ["null", "string"]}, + "hireDate": {"description": "Date on which the employee was hired.", "type": ["null", "string"]}, + "originalHireDate": {"description": "Original hire date of the employee.", "type": ["null", "string"]}, + "homeEmail": {"description": "Home email address of the employee.", "type": ["null", "string"]}, + "homePhone": {"description": "Home phone number of the employee.", "type": ["null", "string"]}, + "id": {"description": "Unique identifier of the employee.", "type": ["null", "string"]}, + "isPhotoUploaded": {"description": "Indicator if the employee's photo is uploaded in the system.", "type": ["null", "string"]}, + "jobTitle": {"description": "Title of the employee's job position.", "type": ["null", "string"]}, + "lastChanged": {"description": "Date of the last change made to the employee's record.", "type": ["null", "string"]}, + "lastName": {"description": "Last name of the employee.", "type": ["null", "string"]}, + "location": {"description": "Physical location where the employee works.", "type": ["null", "string"]}, + "maritalStatus": {"description": "Marital status of the employee.", "type": ["null", "string"]}, + "middleName": {"description": "Middle name of the employee.", "type": ["null", "string"]}, + "mobilePhone": {"description": "Mobile phone number of the employee.", "type": ["null", "string"]}, + "nationalId": {"description": "National identification number of the employee.", "type": ["null", "string"]}, + "nationality": {"description": "Nationality information of the employee.", "type": ["null", "string"]}, + "nin": {"description": "National Insurance Number (NIN) of the employee.", "type": ["null", "string"]}, + "payChangeReason": {"description": "Reason for a change in payment for the employee.", "type": ["null", "string"]}, + "payGroup": {"description": "Group to which the employee's payment belongs.", "type": ["null", "string"]}, + "payGroupId": {"description": "ID of the payment group for the employee.", "type": ["null", "string"]}, + "payRate": {"description": "Rate of pay for the employee.", "type": ["null", "string"]}, + "payRateEffectiveDate": {"description": "Date from which the pay rate is effective for the employee.", "type": ["null", "string"]}, + "payType": {"description": "Type of payment for the employee.", "type": ["null", "string"]}, + "paidPer": {"description": "Frequency at which the employee is paid.", "type": ["null", "string"]}, + "paySchedule": {"description": "Schedule according to which the employee is paid.", "type": ["null", "string"]}, + "payScheduleId": {"description": "ID of the payment schedule for the employee.", "type": ["null", "string"]}, + "payFrequency": {"description": "Frequency of payment for the employee.", "type": ["null", "string"]}, + "includeInPayroll": {"description": "Indicator if the employee is included in the payroll system.", "type": ["null", "string"]}, + "timeTrackingEnabled": {"description": "Indicator if time tracking is enabled for the employee.", "type": ["null", "string"]}, + "preferredName": {"description": "Preferred name of the employee.", "type": ["null", "string"]}, + "ssn": {"description": "Social Security Number (SSN) of the employee.", "type": ["null", "string"]}, + "sin": {"description": "Social Insurance Number (SIN) of the employee.", "type": ["null", "string"]}, + "standardHoursPerWeek": {"description": "Standard number of hours worked by the employee per week.", "type": ["null", "string"]}, + "state": {"description": "State where the employee is located.", "type": ["null", "string"]}, + "stateCode": {"description": "Code representing the state where the employee is located.", "type": ["null", "string"]}, + "status": {"description": "Employment status of the employee.", "type": ["null", "string"]}, + "supervisor": {"description": "Name of the employee's supervisor.", "type": ["null", "string"]}, + "supervisorId": {"description": "ID of the employee's supervisor.", "type": ["null", "string"]}, + "supervisorEId": {"description": "Employee ID of the employee's supervisor.", "type": ["null", "string"]}, + "supervisorEmail": {"description": "Email address of the employee's supervisor.", "type": ["null", "string"]}, + "terminationDate": {"description": "Date on which the employee was terminated.", "type": ["null", "string"]}, + "workEmail": {"description": "Work email address of the employee.", "type": ["null", "string"]}, + "workPhone": {"description": "Work phone number of the employee.", "type": ["null", "string"]}, + "workPhonePlusExtension": { + "description": "Full work phone number including extension for the employee.", + "type": ["null", "string"], + }, + "workPhoneExtension": {"description": "Extension number for the employee's work phone.", "type": ["null", "string"]}, + "zipcode": {"description": "Zip code of the employee's location.", "type": ["null", "string"]}, + }, +} diff --git a/airbyte-integrations/connectors/source-bamboo-hr/main.py b/airbyte-integrations/connectors/source-bamboo-hr/main.py deleted file mode 100644 index 0118185a67fc..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_bamboo_hr.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/manifest.yaml b/airbyte-integrations/connectors/source-bamboo-hr/manifest.yaml similarity index 70% rename from airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/manifest.yaml rename to airbyte-integrations/connectors/source-bamboo-hr/manifest.yaml index d0e1d8e5ca9f..5a18db3be7ea 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/manifest.yaml +++ b/airbyte-integrations/connectors/source-bamboo-hr/manifest.yaml @@ -1,8 +1,8 @@ -version: 0.83.0 +version: 5.14.0 type: DeclarativeSource -check: #TODO implement custom check for https://github.com/airbytehq/airbyte/blob/cc388fc6d0e8d6223bd2942e9f6466b17895dbf9/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py#L145-L165 +check: type: CheckStream stream_names: - meta_fields_stream @@ -22,7 +22,7 @@ definitions: Accept: application/json request_body_json: title: Airbyte - fields: list(self.schema["properties"].keys()) # TODO how to get the schema properties keys as list here + fields: list(self.schema["properties"].keys()) record_selector: type: RecordSelector extractor: @@ -31,7 +31,7 @@ definitions: - employees schema_loader: type: CustomSchemaLoader - class_name: source_bamboo_hr.components.BambooHRSchemaLoader + class_name: source_declarative_manifest.components.CustomReportsSchemaLoader employees_directory_stream: type: DeclarativeStream name: employees_directory_stream @@ -78,10 +78,6 @@ definitions: time_off_requests_stream: type: DeclarativeStream name: time_off_requests_stream - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/time_off_requests_stream" retriever: type: SimpleRetriever requester: @@ -104,7 +100,9 @@ definitions: datetime_format: "%Y-%m-%d" start_datetime: type: MinMaxDatetime - datetime: "{{ config.start_date or (now_utc() - duration('P30DT23H')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime: >- + {{ config.start_date or (now_utc() - + duration('P30DT23H')).strftime('%Y-%m-%dT%H:%M:%SZ') }} datetime_format: "%Y-%m-%dT%H:%M:%SZ" start_time_option: type: RequestOption @@ -116,18 +114,23 @@ definitions: inject_into: request_parameter end_datetime: type: MinMaxDatetime - datetime: "{{ config.start_date or (now_utc() - duration('P30DT23H')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime: >- + {{ config.start_date or (now_utc() - + duration('P30DT23H')).strftime('%Y-%m-%dT%H:%M:%SZ') }} datetime_format: "%Y-%m-%dT%H:%M:%SZ" step: P1D cursor_granularity: P1D - + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/time_off_requests_stream" base_requester: type: HttpRequester url_base: https://api.bamboohr.com/api/gateway.php/{{ config['subdomain'] }}/v1/ authenticator: type: BasicHttpAuthenticator - password: "x" - username: '{{ config["api_key"] }}' + password: x + username: "{{ config[\"api_key\"] }}" streams: - $ref: "#/definitions/streams/custom_reports_stream" @@ -137,39 +140,36 @@ streams: spec: type: Spec - documentation_url: https://docs.airbyte.com/integrations/sources/bamboo-hr connection_specification: - $schema: http://json-schema.org/draft-07/schema# - title: "Bamboo HR Spec" type: object - additionalProperties: true + $schema: http://json-schema.org/draft-07/schema# required: - api_key - subdomain properties: api_key: type: string + description: Api key of bamboo hr order: 0 title: api_key - description: Api key of bamboo hr airbyte_secret: true subdomain: type: string + description: Sub Domain of bamboo hr order: 1 title: subdomain - description: Sub Domain of bamboo hr custom_reports_fields: type: string + description: Comma-separated list of fields to include in custom reports. order: 2 title: custom_reports_fields - description: Comma-separated list of fields to include in custom reports. custom_reports_include_default_fields: - title: custom_reports_include_default_fields + type: boolean description: >- If true, the custom reports endpoint will include the default fields defined here: https://documentation.bamboohr.com/docs/list-of-field-names. - type: boolean + title: custom_reports_include_default_fields default: true order: 3 start_date: @@ -178,6 +178,7 @@ spec: title: Start date format: date-time pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + additionalProperties: true metadata: autoImportSchema: @@ -185,6 +186,11 @@ metadata: employees_directory_stream: false meta_fields_stream: false time_off_requests_stream: false + yamlComponents: + global: + - authenticator + testedStreams: {} + assist: {} schemas: employees_directory_stream: @@ -192,64 +198,99 @@ schemas: $schema: http://json-schema.org/draft-07/schema# additionalProperties: true properties: - { - "id": { "type": ["null", "string"] }, - "type": { "type": ["null", "string"] }, - "name": { "type": ["null", "string"] }, - } + type: + type: + - "null" + - string + id: + type: + - "null" + - string + name: + type: + - "null" + - string meta_fields_stream: type: object $schema: http://json-schema.org/draft-07/schema# additionalProperties: true properties: - { - "id": { "type": ["null", "string"] }, - "name": { "type": ["null", "string"] }, - "type": { "type": ["null", "string"] }, - "alias": { "type": ["null", "string"] }, - } - + type: + type: + - "null" + - string + alias: + type: + - "null" + - string + id: + type: + - "null" + - string + name: + type: + - "null" + - string time_off_requests_stream: type: object $schema: http://json-schema.org/draft-07/schema# additionalProperties: true properties: - { - "id": { "type": ["null", "string"] }, - "employeeId": { "type": ["null", "string"] }, - "name": { "type": ["null", "string"] }, - "start": { "type": ["null", "string"] }, - "end": { "type": ["null", "string"] }, - "created": { "type": ["null", "string"] }, - "status": - { - "type": ["null", "object"], - "additionalProperties": true, - "properties": {}, - }, - "dates": { "type": ["null", "string"] }, - "type": - { - "type": ["null", "object"], - "additionalProperties": true, - "properties": {}, - }, - "amount": - { - "type": ["null", "object"], - "additionalProperties": true, - "properties": {}, - }, - "actions": - { - "type": ["null", "object"], - "additionalProperties": true, - "properties": {}, - }, - "notes": - { - "type": ["null", "object"], - "additionalProperties": true, - "properties": {}, - }, - } + type: + type: + - "null" + - object + additionalProperties: true + properties: {} + actions: + type: + - "null" + - object + additionalProperties: true + properties: {} + amount: + type: + - "null" + - object + additionalProperties: true + properties: {} + created: + type: + - "null" + - string + dates: + type: + - "null" + - string + employeeId: + type: + - "null" + - string + end: + type: + - "null" + - string + id: + type: + - "null" + - string + name: + type: + - "null" + - string + notes: + type: + - "null" + - object + additionalProperties: true + properties: {} + start: + type: + - "null" + - string + status: + type: + - "null" + - object + additionalProperties: true + properties: {} diff --git a/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml b/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml index da1e92b79ef3..d5fbfa1814ed 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml +++ b/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml @@ -6,11 +6,11 @@ data: ql: 200 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a connectorSubtype: api connectorType: source definitionId: 90916976-a132-4ce9-8bce-82a03dd58788 - dockerImageTag: 0.4.14 + dockerImageTag: 0.5.0 dockerRepository: airbyte/source-bamboo-hr documentationUrl: https://docs.airbyte.com/integrations/sources/bamboo-hr githubIssueLabel: source-bamboo-hr @@ -26,11 +26,11 @@ data: releaseStage: alpha remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-bamboo-hr supportLevel: community tags: - - language:python + - language:manifest-only - cdk:low-code connectorTestSuitesOptions: - suite: liveTests diff --git a/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock b/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock deleted file mode 100644 index 02302faf1ed9..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock +++ /dev/null @@ -1,1469 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "1.8.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-1.8.0-py3-none-any.whl", hash = "sha256:ca23d7877005fe87ffc4a3a3de29ee55eed625d874eb59b49664b156f9ae9ee2"}, - {file = "airbyte_cdk-1.8.0.tar.gz", hash = "sha256:ac82fbfd6b650b7ed015900748e30fdd2a4c574caa54d1bcc03cb584a17f1533"}, -] - -[package.dependencies] -airbyte-protocol-models = ">=0.9.0,<1.0" -backoff = "*" -cachetools = "*" -cryptography = ">=42.0.5,<43.0.0" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.1.6,<3.0.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -langchain_core = "0.1.42" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyjwt = ">=2.8.0,<3.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -pytz = "2024.1" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.13.0" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.13.0-py3-none-any.whl", hash = "sha256:fa8b7e1a85f9ae171c50b30d23b317da1740d051994fd3ed648f9dfba00250e2"}, - {file = "airbyte_protocol_models-0.13.0.tar.gz", hash = "sha256:09d8900ba8674a9315fa1799d17026f6b38d2187c08160449540ee93331ed2e7"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "anyio" -version = "4.6.2.post1" -description = "High level compatibility layer for multiple asynchronous event loop implementations" -optional = false -python-versions = ">=3.9" -files = [ - {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, - {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, -] - -[package.dependencies] -exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} -idna = ">=2.8" -sniffio = ">=1.1" -typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} - -[package.extras] -doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] -trio = ["trio (>=0.26.1)"] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "cffi" -version = "1.17.1" -description = "Foreign Function Interface for Python calling C code." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, - {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, - {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, - {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, - {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, - {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, - {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, - {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, - {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, - {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, - {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, - {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, - {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, - {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, - {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, - {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, -] - -[package.dependencies] -pycparser = "*" - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "cryptography" -version = "42.0.8" -description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -optional = false -python-versions = ">=3.7" -files = [ - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e"}, - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7"}, - {file = "cryptography-42.0.8-cp37-abi3-win32.whl", hash = "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2"}, - {file = "cryptography-42.0.8-cp37-abi3-win_amd64.whl", hash = "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba"}, - {file = "cryptography-42.0.8-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14"}, - {file = "cryptography-42.0.8-cp39-abi3-win32.whl", hash = "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c"}, - {file = "cryptography-42.0.8-cp39-abi3-win_amd64.whl", hash = "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad"}, - {file = "cryptography-42.0.8.tar.gz", hash = "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2"}, -] - -[package.dependencies] -cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} - -[package.extras] -docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] -docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] -nox = ["nox"] -pep8test = ["check-sdist", "click", "mypy", "ruff"] -sdist = ["build"] -ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] -test-randomorder = ["pytest-randomly"] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.2.0" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.2.0-py3-none-any.whl", hash = "sha256:b330a375ded0a0d2ed404440f6c6a715deae5313af40bbb01c8a41d891900576"}, - {file = "dpath-2.2.0.tar.gz", hash = "sha256:34f7e630dc55ea3f219e555726f5da4b4b25f2200319c8e6902c394258dd6a3e"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "h11" -version = "0.14.0" -description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -optional = false -python-versions = ">=3.7" -files = [ - {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, - {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, -] - -[[package]] -name = "httpcore" -version = "1.0.6" -description = "A minimal low-level HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, - {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, -] - -[package.dependencies] -certifi = "*" -h11 = ">=0.13,<0.15" - -[package.extras] -asyncio = ["anyio (>=4.0,<5.0)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<1.0)"] - -[[package]] -name = "httpx" -version = "0.27.2" -description = "The next generation HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, - {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, -] - -[package.dependencies] -anyio = "*" -certifi = "*" -httpcore = "==1.*" -idna = "*" -sniffio = "*" - -[package.extras] -brotli = ["brotli", "brotlicffi"] -cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonpatch" -version = "1.33" -description = "Apply JSON-Patches (RFC 6902)" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" -files = [ - {file = "jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade"}, - {file = "jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c"}, -] - -[package.dependencies] -jsonpointer = ">=1.9" - -[[package]] -name = "jsonpointer" -version = "3.0.0" -description = "Identify specific nodes in a JSON document (RFC 6901)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, - {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, -] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "langchain-core" -version = "0.1.42" -description = "Building applications with LLMs through composability" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_core-0.1.42-py3-none-any.whl", hash = "sha256:c5653ffa08a44f740295c157a24c0def4a753333f6a2c41f76bf431cd00be8b5"}, - {file = "langchain_core-0.1.42.tar.gz", hash = "sha256:40751bf60ea5d8e2b2efe65290db434717ee3834870c002e40e2811f09d814e6"}, -] - -[package.dependencies] -jsonpatch = ">=1.33,<2.0" -langsmith = ">=0.1.0,<0.2.0" -packaging = ">=23.2,<24.0" -pydantic = ">=1,<3" -PyYAML = ">=5.3" -tenacity = ">=8.1.0,<9.0.0" - -[package.extras] -extended-testing = ["jinja2 (>=3,<4)"] - -[[package]] -name = "langsmith" -version = "0.1.137" -description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, -] - -[package.dependencies] -httpx = ">=0.23.0,<1" -orjson = ">=3.9.14,<4.0.0" -pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} -requests = ">=2,<3" -requests-toolbelt = ">=1.0.0,<2.0.0" - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "orjson" -version = "3.10.10" -description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -optional = false -python-versions = ">=3.8" -files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, -] - -[[package]] -name = "packaging" -version = "23.2" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "pycparser" -version = "2.22" -description = "C parser in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, - {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyjwt" -version = "2.9.0" -description = "JSON Web Token implementation in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, - {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, -] - -[package.extras] -crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] -tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "8.3.3" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, - {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, -] - -[package.dependencies] -colorama = {version = "*", markers = "sys_platform == \"win32\""} -exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=1.5,<2" -tomli = {version = ">=1", markers = "python_version < \"3.11\""} - -[package.extras] -dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytz" -version = "2024.1" -description = "World timezone definitions, modern and historical" -optional = false -python-versions = "*" -files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, -] - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "requests-toolbelt" -version = "1.0.0" -description = "A utility belt for advanced users of python-requests" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, - {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, -] - -[package.dependencies] -requests = ">=2.0.1,<3.0.0" - -[[package]] -name = "setuptools" -version = "75.2.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "sniffio" -version = "1.3.1" -description = "Sniff out which async library your code is running under" -optional = false -python-versions = ">=3.7" -files = [ - {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, - {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, -] - -[[package]] -name = "tenacity" -version = "8.5.0" -description = "Retry code until it succeeds" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, - {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, -] - -[package.extras] -doc = ["reno", "sphinx"] -test = ["pytest", "tornado (>=4.5)", "typeguard"] - -[[package]] -name = "tomli" -version = "2.0.2" -description = "A lil' TOML parser" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, - {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "5b0cd125a4941563e47d35d2a1603eb16db2c74dd30a0ea65043dfabe1a82cd9" diff --git a/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml b/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml deleted file mode 100644 index 33b73ee519f0..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml +++ /dev/null @@ -1,27 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "0.4.14" -name = "source-bamboo-hr" -description = "Source implementation for Bamboo Hr." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/bamboo-hr" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -packages = [ { include = "source_bamboo_hr" }, {include = "main.py" } ] - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "^1" - -[tool.poetry.scripts] -source-bamboo-hr = "source_bamboo_hr.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "*" -pytest-mock = "*" -pytest = "*" diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/__init__.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/__init__.py deleted file mode 100644 index 2a4a80b5083e..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/__init__.py +++ /dev/null @@ -1,26 +0,0 @@ -# MIT License -# -# Copyright (c) 2020 Airbyte -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in all -# copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. - - -from .source import SourceBambooHr - -__all__ = ["SourceBambooHr"] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/components.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/components.py deleted file mode 100644 index 4cc87c9a4019..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/components.py +++ /dev/null @@ -1,59 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from dataclasses import InitVar, dataclass -from typing import Any, Mapping - -from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString -from airbyte_cdk.sources.declarative.schema.json_file_schema_loader import JsonFileSchemaLoader, _default_file_path - - -@dataclass -class BambooHRSchemaLoader(JsonFileSchemaLoader): - - config: Mapping[str, Any] - parameters: InitVar[Mapping[str, Any]] = {"name": "custom_reports_stream"} - - def __post_init__(self, parameters: Mapping[str, Any]): - if not self.file_path: - self.file_path = _default_file_path() - self.file_path = InterpolatedString.create(self.file_path, parameters=self.parameters) - - def get_json_schema(self) -> Mapping[str, Any]: - """ - Returns the JSON schema. - - The final schema is constructed by first generating a schema for the fields - in the config and, if default fields should be included, adding these to the - schema. - """ - schema = self._get_json_schema_from_config() - if self.config.get("custom_reports_include_default_fields"): - default_schema = self._get_json_schema_from_file() - schema = self._union_schemas(default_schema, schema) - return schema - - def _get_json_schema_from_config(self): - if self.config.get("custom_reports_fields"): - properties = { - field.strip(): {"type": ["null", "string"]} - for field in self.convert_custom_reports_fields_to_list(self.config.get("custom_reports_fields", "")) - } - else: - properties = {} - return { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": properties, - } - - def convert_custom_reports_fields_to_list(self, custom_reports_fields: str) -> list: - return custom_reports_fields.split(",") if custom_reports_fields else [] - - def _get_json_schema_from_file(self): - return super().get_json_schema() - - def _union_schemas(self, schema1, schema2): - schema1["properties"] = {**schema1["properties"], **schema2["properties"]} - return schema1 diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/run.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/run.py deleted file mode 100644 index 9e590c98b2f0..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/run.py +++ /dev/null @@ -1,15 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch - -from .source import SourceBambooHr - - -def run(): - source = SourceBambooHr() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json deleted file mode 100644 index a3956a97a8f8..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json +++ /dev/null @@ -1,326 +0,0 @@ -{ - "type": ["null", "object"], - "required": [], - "properties": { - "acaStatus": { - "description": "The Affordable Care Act status of the employee.", - "type": ["null", "string"] - }, - "acaStatusCategory": { - "description": "The category of the Affordable Care Act status of the employee.", - "type": ["null", "string"] - }, - "address1": { - "description": "First line of the employee's address.", - "type": ["null", "string"] - }, - "address2": { - "description": "Second line of the employee's address.", - "type": ["null", "string"] - }, - "age": { - "description": "The age of the employee.", - "type": ["null", "string"] - }, - "bestEmail": { - "description": "The primary email address of the employee.", - "type": ["null", "string"] - }, - "birthday": { - "description": "The birthday of the employee.", - "type": ["null", "string"] - }, - "bonusAmount": { - "description": "The amount of bonus received by the employee.", - "type": ["null", "string"] - }, - "bonusComment": { - "description": "Comment related to the bonus received by the employee.", - "type": ["null", "string"] - }, - "bonusDate": { - "description": "Date on which the bonus was received by the employee.", - "type": ["null", "string"] - }, - "bonusReason": { - "description": "Reason for granting the bonus to the employee.", - "type": ["null", "string"] - }, - "city": { - "description": "City where the employee is located.", - "type": ["null", "string"] - }, - "commissionAmount": { - "description": "The amount of commission received by the employee.", - "type": ["null", "string"] - }, - "commissionComment": { - "description": "Comment related to the commission received by the employee.", - "type": ["null", "string"] - }, - "commissionDate": { - "description": "Date on which the commission was received by the employee.", - "type": ["null", "string"] - }, - "commisionDate": { - "description": "Date of commission for the employee.", - "type": ["null", "string"] - }, - "country": { - "description": "Country where the employee is located.", - "type": ["null", "string"] - }, - "createdByUserId": { - "description": "ID of the user who created the employee record.", - "type": ["null", "string"] - }, - "dateOfBirth": { - "description": "Date of birth of the employee.", - "type": ["null", "string"] - }, - "department": { - "description": "Department in which the employee works.", - "type": ["null", "string"] - }, - "division": { - "description": "Division to which the employee belongs.", - "type": ["null", "string"] - }, - "eeo": { - "description": "Equal Employment Opportunity (EEO) information of the employee.", - "type": ["null", "string"] - }, - "employeeNumber": { - "description": "Unique employee identification number.", - "type": ["null", "string"] - }, - "employmentHistoryStatus": { - "description": "Status of the employee's employment history.", - "type": ["null", "string"] - }, - "ethnicity": { - "description": "Ethnicity information of the employee.", - "type": ["null", "string"] - }, - "exempt": { - "description": "Exempt status of the employee for employment regulations.", - "type": ["null", "string"] - }, - "firstName": { - "description": "First name of the employee.", - "type": ["null", "string"] - }, - "flsaCode": { - "description": "Fair Labor Standards Act (FLSA) code classification of the employee.", - "type": ["null", "string"] - }, - "fullName1": { - "description": "First version of the employee's full name.", - "type": ["null", "string"] - }, - "fullName2": { - "description": "Second version of the employee's full name.", - "type": ["null", "string"] - }, - "fullName3": { - "description": "Third version of the employee's full name.", - "type": ["null", "string"] - }, - "fullName4": { - "description": "Fourth version of the employee's full name.", - "type": ["null", "string"] - }, - "fullName5": { - "description": "Fifth version of the employee's full name.", - "type": ["null", "string"] - }, - "displayName": { - "description": "Display name of the employee.", - "type": ["null", "string"] - }, - "gender": { - "description": "Gender of the employee.", - "type": ["null", "string"] - }, - "hireDate": { - "description": "Date on which the employee was hired.", - "type": ["null", "string"] - }, - "originalHireDate": { - "description": "Original hire date of the employee.", - "type": ["null", "string"] - }, - "homeEmail": { - "description": "Home email address of the employee.", - "type": ["null", "string"] - }, - "homePhone": { - "description": "Home phone number of the employee.", - "type": ["null", "string"] - }, - "id": { - "description": "Unique identifier of the employee.", - "type": ["null", "string"] - }, - "isPhotoUploaded": { - "description": "Indicator if the employee's photo is uploaded in the system.", - "type": ["null", "string"] - }, - "jobTitle": { - "description": "Title of the employee's job position.", - "type": ["null", "string"] - }, - "lastChanged": { - "description": "Date of the last change made to the employee's record.", - "type": ["null", "string"] - }, - "lastName": { - "description": "Last name of the employee.", - "type": ["null", "string"] - }, - "location": { - "description": "Physical location where the employee works.", - "type": ["null", "string"] - }, - "maritalStatus": { - "description": "Marital status of the employee.", - "type": ["null", "string"] - }, - "middleName": { - "description": "Middle name of the employee.", - "type": ["null", "string"] - }, - "mobilePhone": { - "description": "Mobile phone number of the employee.", - "type": ["null", "string"] - }, - "nationalId": { - "description": "National identification number of the employee.", - "type": ["null", "string"] - }, - "nationality": { - "description": "Nationality information of the employee.", - "type": ["null", "string"] - }, - "nin": { - "description": "National Insurance Number (NIN) of the employee.", - "type": ["null", "string"] - }, - "payChangeReason": { - "description": "Reason for a change in payment for the employee.", - "type": ["null", "string"] - }, - "payGroup": { - "description": "Group to which the employee's payment belongs.", - "type": ["null", "string"] - }, - "payGroupId": { - "description": "ID of the payment group for the employee.", - "type": ["null", "string"] - }, - "payRate": { - "description": "Rate of pay for the employee.", - "type": ["null", "string"] - }, - "payRateEffectiveDate": { - "description": "Date from which the pay rate is effective for the employee.", - "type": ["null", "string"] - }, - "payType": { - "description": "Type of payment for the employee.", - "type": ["null", "string"] - }, - "paidPer": { - "description": "Frequency at which the employee is paid.", - "type": ["null", "string"] - }, - "paySchedule": { - "description": "Schedule according to which the employee is paid.", - "type": ["null", "string"] - }, - "payScheduleId": { - "description": "ID of the payment schedule for the employee.", - "type": ["null", "string"] - }, - "payFrequency": { - "description": "Frequency of payment for the employee.", - "type": ["null", "string"] - }, - "includeInPayroll": { - "description": "Indicator if the employee is included in the payroll system.", - "type": ["null", "string"] - }, - "timeTrackingEnabled": { - "description": "Indicator if time tracking is enabled for the employee.", - "type": ["null", "string"] - }, - "preferredName": { - "description": "Preferred name of the employee.", - "type": ["null", "string"] - }, - "ssn": { - "description": "Social Security Number (SSN) of the employee.", - "type": ["null", "string"] - }, - "sin": { - "description": "Social Insurance Number (SIN) of the employee.", - "type": ["null", "string"] - }, - "standardHoursPerWeek": { - "description": "Standard number of hours worked by the employee per week.", - "type": ["null", "string"] - }, - "state": { - "description": "State where the employee is located.", - "type": ["null", "string"] - }, - "stateCode": { - "description": "Code representing the state where the employee is located.", - "type": ["null", "string"] - }, - "status": { - "description": "Employment status of the employee.", - "type": ["null", "string"] - }, - "supervisor": { - "description": "Name of the employee's supervisor.", - "type": ["null", "string"] - }, - "supervisorId": { - "description": "ID of the employee's supervisor.", - "type": ["null", "string"] - }, - "supervisorEId": { - "description": "Employee ID of the employee's supervisor.", - "type": ["null", "string"] - }, - "supervisorEmail": { - "description": "Email address of the employee's supervisor.", - "type": ["null", "string"] - }, - "terminationDate": { - "description": "Date on which the employee was terminated.", - "type": ["null", "string"] - }, - "workEmail": { - "description": "Work email address of the employee.", - "type": ["null", "string"] - }, - "workPhone": { - "description": "Work phone number of the employee.", - "type": ["null", "string"] - }, - "workPhonePlusExtension": { - "description": "Full work phone number including extension for the employee.", - "type": ["null", "string"] - }, - "workPhoneExtension": { - "description": "Extension number for the employee's work phone.", - "type": ["null", "string"] - }, - "zipcode": { - "description": "Zip code of the employee's location.", - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py deleted file mode 100644 index 1441fe735953..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceBambooHr(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/docs/integrations/sources/bamboo-hr.md b/docs/integrations/sources/bamboo-hr.md index 14e2a2481457..b04b47dab056 100644 --- a/docs/integrations/sources/bamboo-hr.md +++ b/docs/integrations/sources/bamboo-hr.md @@ -91,6 +91,7 @@ Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.5.0 | 2024-10-28 | [47262](https://github.com/airbytehq/airbyte/pull/47262) | Migrate to Manifest-only | | 0.4.14 | 2024-10-28 | [47072](https://github.com/airbytehq/airbyte/pull/47072) | Update dependencies | | 0.4.13 | 2024-10-12 | [46842](https://github.com/airbytehq/airbyte/pull/46842) | Update dependencies | | 0.4.12 | 2024-10-05 | [46500](https://github.com/airbytehq/airbyte/pull/46500) | Update dependencies | From 569876e12c9ffced1740edad6499182776f42bb2 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Tue, 29 Oct 2024 02:24:51 +0530 Subject: [PATCH 241/808] source-miro contribution from parthiv11 (#47008) Co-authored-by: Marcos Marx --- .../connectors/source-miro/README.md | 33 + .../source-miro/acceptance-test-config.yml | 17 + .../connectors/source-miro/icon.svg | 22 + .../connectors/source-miro/manifest.yaml | 1025 +++++++++++++++++ .../connectors/source-miro/metadata.yaml | 35 + docs/integrations/sources/miro.md | 30 + 6 files changed, 1162 insertions(+) create mode 100644 airbyte-integrations/connectors/source-miro/README.md create mode 100644 airbyte-integrations/connectors/source-miro/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-miro/icon.svg create mode 100644 airbyte-integrations/connectors/source-miro/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-miro/metadata.yaml create mode 100644 docs/integrations/sources/miro.md diff --git a/airbyte-integrations/connectors/source-miro/README.md b/airbyte-integrations/connectors/source-miro/README.md new file mode 100644 index 000000000000..07eeb8470f89 --- /dev/null +++ b/airbyte-integrations/connectors/source-miro/README.md @@ -0,0 +1,33 @@ +# Miro +This directory contains the manifest-only connector for `source-miro`. + +Airbyte connector, Miro's API could be used to extract data related to board content, user activities, and collaboration metrics, enabling integration with data warehouses and further analysis of team interactions and productivity. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-miro:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-miro build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-miro test +``` + diff --git a/airbyte-integrations/connectors/source-miro/acceptance-test-config.yml b/airbyte-integrations/connectors/source-miro/acceptance-test-config.yml new file mode 100644 index 000000000000..950b75d1e3d5 --- /dev/null +++ b/airbyte-integrations/connectors/source-miro/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-miro:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-miro/icon.svg b/airbyte-integrations/connectors/source-miro/icon.svg new file mode 100644 index 000000000000..79a6341d506a --- /dev/null +++ b/airbyte-integrations/connectors/source-miro/icon.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-miro/manifest.yaml b/airbyte-integrations/connectors/source-miro/manifest.yaml new file mode 100644 index 000000000000..cf9e83ed4adc --- /dev/null +++ b/airbyte-integrations/connectors/source-miro/manifest.yaml @@ -0,0 +1,1025 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + Airbyte connector, Miro's API could be used to extract data related to board + content, user activities, and collaboration metrics, enabling integration with + data warehouses and further analysis of team interactions and productivity. + +check: + type: CheckStream + stream_names: + - boards + +definitions: + streams: + boards: + type: DeclarativeStream + name: boards + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/boards + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/boards" + board_users: + type: DeclarativeStream + name: board_users + primary_key: + - id + - board_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/boards/{{ stream_partition.board_id }}/members + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: board_id + stream: + $ref: "#/definitions/streams/boards" + transformations: + - type: AddFields + fields: + - path: + - board_id + value: "{{ stream_slice.board_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/board_users" + board_items: + type: DeclarativeStream + name: board_items + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/boards/{{ stream_partition.board_id }}/items + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: board_id + stream: + $ref: "#/definitions/streams/boards" + transformations: + - type: AddFields + fields: + - path: + - board_id + value: "{{ stream_slice.board_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/board_items" + board_tags: + type: DeclarativeStream + name: board_tags + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/boards/{{ stream_partition.board_id }}/tags + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 50 + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: board_id + stream: + $ref: "#/definitions/streams/boards" + transformations: + - type: AddFields + fields: + - path: + - board_id + value: "{{ stream_slice.board_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/board_tags" + board_groups: + type: DeclarativeStream + name: board_groups + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/boards/{{ stream_partition.board_id }}/groups + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: board_id + stream: + $ref: "#/definitions/streams/boards" + transformations: + - type: AddFields + fields: + - path: + - board_id + value: "{{ stream_slice.board_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/board_groups" + board_connectors: + type: DeclarativeStream + name: board_connectors + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/boards/{{ stream_partition.board_id }}/connectors + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: board_id + stream: + $ref: "#/definitions/streams/boards" + transformations: + - type: AddFields + fields: + - path: + - board_id + value: "{{ stream_slice.board_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/board_connectors" + base_requester: + type: HttpRequester + url_base: https://api.miro.com + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/boards" + - $ref: "#/definitions/streams/board_users" + - $ref: "#/definitions/streams/board_items" + - $ref: "#/definitions/streams/board_tags" + - $ref: "#/definitions/streams/board_groups" + - $ref: "#/definitions/streams/board_connectors" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + properties: + api_key: + type: string + order: 0 + title: API Key + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + boards: true + board_users: false + board_items: false + board_tags: false + board_groups: false + board_connectors: false + testedStreams: + boards: + streamHash: 26137569ff693a052abc2ee607eca4c9449947a5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + board_users: + streamHash: a01ce17994b85e3537874f5131c7412be618a3ce + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + board_items: + streamHash: 02ae9521b2179346315a503f8a96d9ddd6ed3b26 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + board_tags: + streamHash: 4e20dcdc125625593cac6ac4c1e14d4a2804d9b2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + board_groups: + streamHash: 87ccbd3c50b3c4d9b9b9f1559cfbec411eb69e29 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + board_connectors: + streamHash: 80fcd3cb25ec98960d401b89c3d5b8e163ebc151 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://developers.miro.com/reference + +schemas: + boards: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + createdAt: + type: + - string + - "null" + createdBy: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + currentUserMembership: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + role: + type: + - string + - "null" + id: + type: string + lastOpenedAt: + type: + - string + - "null" + lastOpenedBy: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + related: + type: + - string + - "null" + self: + type: + - string + - "null" + modifiedAt: + type: + - string + - "null" + modifiedBy: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + name: + type: + - string + - "null" + owner: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + permissionsPolicy: + type: + - object + - "null" + properties: + collaborationToolsStartAccess: + type: + - string + - "null" + copyAccess: + type: + - string + - "null" + copyAccessLevel: + type: + - string + - "null" + sharingAccess: + type: + - string + - "null" + picture: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - number + - "null" + imageURL: + type: + - string + - "null" + policy: + type: + - object + - "null" + properties: + permissionsPolicy: + type: + - object + - "null" + properties: + collaborationToolsStartAccess: + type: + - string + - "null" + copyAccess: + type: + - string + - "null" + copyAccessLevel: + type: + - string + - "null" + sharingAccess: + type: + - string + - "null" + sharingPolicy: + type: + - object + - "null" + properties: + access: + type: + - string + - "null" + inviteToAccountAndBoardLinkAccess: + type: + - string + - "null" + organizationAccess: + type: + - string + - "null" + teamAccess: + type: + - string + - "null" + sharingPolicy: + type: + - object + - "null" + properties: + access: + type: + - string + - "null" + inviteToAccountAndBoardLinkAccess: + type: + - string + - "null" + organizationAccess: + type: + - string + - "null" + teamAccess: + type: + - string + - "null" + team: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + viewLink: + type: + - string + - "null" + required: + - id + board_users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + name: + type: + - string + - "null" + role: + type: + - string + - "null" + board_items: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + createdAt: + type: + - string + - "null" + createdBy: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + content: + type: + - string + - "null" + format: + type: + - string + - "null" + imageUrl: + type: + - string + - "null" + shape: + type: + - string + - "null" + showContent: + type: + - boolean + - "null" + title: + type: + - string + - "null" + geometry: + type: + - object + - "null" + properties: + height: + type: + - number + - "null" + width: + type: + - number + - "null" + id: + type: + - string + - "null" + isSupported: + type: + - boolean + - "null" + links: + type: + - object + - "null" + properties: + related: + type: + - string + - "null" + self: + type: + - string + - "null" + modifiedAt: + type: + - string + - "null" + modifiedBy: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + parent: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + position: + type: + - object + - "null" + properties: + origin: + type: + - string + - "null" + relativeTo: + type: + - string + - "null" + x: + type: + - number + - "null" + "y": + type: + - number + - "null" + style: + type: + - object + - "null" + properties: + cardTheme: + type: + - string + - "null" + color: + type: + - string + - "null" + fillColor: + type: + - string + - "null" + fillOpacity: + type: + - string + - "null" + fontFamily: + type: + - string + - "null" + fontSize: + type: + - string + - "null" + textAlign: + type: + - string + - "null" + textAlignVertical: + type: + - string + - "null" + board_tags: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + fillColor: + type: + - string + - "null" + id: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + title: + type: + - string + - "null" + board_groups: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + items: + type: + - array + - "null" + items: + type: + - number + - "null" + id: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + board_connectors: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + createdAt: + type: + - string + - "null" + createdBy: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + endItem: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + id: + type: string + links: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + modifiedAt: + type: + - string + - "null" + modifiedBy: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + shape: + type: + - string + - "null" + startItem: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + style: + type: + - object + - "null" + properties: + endStrokeCap: + type: + - string + - "null" + startStrokeCap: + type: + - string + - "null" + strokeColor: + type: + - string + - "null" + strokeStyle: + type: + - string + - "null" + strokeWidth: + type: + - string + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-miro/metadata.yaml b/airbyte-integrations/connectors/source-miro/metadata.yaml new file mode 100644 index 000000000000..8ae570689d9e --- /dev/null +++ b/airbyte-integrations/connectors/source-miro/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.miro.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-miro + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: f8276ae8-4ada-4ae5-819c-b1836aa78135 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-miro + githubIssueLabel: source-miro + icon: icon.svg + license: MIT + name: Miro + releaseDate: 2024-10-18 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/miro + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/miro.md b/docs/integrations/sources/miro.md new file mode 100644 index 000000000000..0348cea8bdc0 --- /dev/null +++ b/docs/integrations/sources/miro.md @@ -0,0 +1,30 @@ +# Miro + +Airbyte connector for Miro can be used to extract data related to board content, user activities, and collaboration metrics, enabling integration with data warehouses and further analysis of team interactions and productivity. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| boards | id | DefaultPaginator | ✅ | ❌ | +| board_users | | DefaultPaginator | ✅ | ❌ | +| board_items | | DefaultPaginator | ✅ | ❌ | +| board_tags | | DefaultPaginator | ✅ | ❌ | +| board_groups | | No pagination | ✅ | ❌ | +| board_connectors | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-18 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From 5dfc9c6e19c6ad2855ee52056b53f5faf1e6166e Mon Sep 17 00:00:00 2001 From: Dainius Salkauskas Date: Mon, 28 Oct 2024 23:43:23 +0200 Subject: [PATCH 242/808] source-wasabi-stats-api contribution from dainiussa (#47364) Co-authored-by: Marcos Marx --- .../source-wasabi-stats-api/README.md | 33 ++ .../acceptance-test-config.yml | 17 + .../source-wasabi-stats-api/icon.svg | 47 ++ .../source-wasabi-stats-api/manifest.yaml | 489 ++++++++++++++++++ .../source-wasabi-stats-api/metadata.yaml | 35 ++ docs/integrations/sources/wasabi-stats-api.md | 32 ++ 6 files changed, 653 insertions(+) create mode 100644 airbyte-integrations/connectors/source-wasabi-stats-api/README.md create mode 100644 airbyte-integrations/connectors/source-wasabi-stats-api/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-wasabi-stats-api/icon.svg create mode 100644 airbyte-integrations/connectors/source-wasabi-stats-api/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-wasabi-stats-api/metadata.yaml create mode 100644 docs/integrations/sources/wasabi-stats-api.md diff --git a/airbyte-integrations/connectors/source-wasabi-stats-api/README.md b/airbyte-integrations/connectors/source-wasabi-stats-api/README.md new file mode 100644 index 000000000000..3c232fa28c98 --- /dev/null +++ b/airbyte-integrations/connectors/source-wasabi-stats-api/README.md @@ -0,0 +1,33 @@ +# Wasabi +This directory contains the manifest-only connector for `source-wasabi-stats-api`. + +Connector for https://www.wasabi.com stats API. API docs: https://docs.wasabi.com/docs/wasabi-stats-api + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-wasabi-stats-api:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-wasabi-stats-api build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-wasabi-stats-api test +``` + diff --git a/airbyte-integrations/connectors/source-wasabi-stats-api/acceptance-test-config.yml b/airbyte-integrations/connectors/source-wasabi-stats-api/acceptance-test-config.yml new file mode 100644 index 000000000000..6cd6c144c5d3 --- /dev/null +++ b/airbyte-integrations/connectors/source-wasabi-stats-api/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-wasabi-stats-api:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-wasabi-stats-api/icon.svg b/airbyte-integrations/connectors/source-wasabi-stats-api/icon.svg new file mode 100644 index 000000000000..54c82bd05ed5 --- /dev/null +++ b/airbyte-integrations/connectors/source-wasabi-stats-api/icon.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-wasabi-stats-api/manifest.yaml b/airbyte-integrations/connectors/source-wasabi-stats-api/manifest.yaml new file mode 100644 index 000000000000..15d686e93fe5 --- /dev/null +++ b/airbyte-integrations/connectors/source-wasabi-stats-api/manifest.yaml @@ -0,0 +1,489 @@ +version: 5.7.5 + +type: DeclarativeSource + +description: >- + Connector for https://www.wasabi.com stats API. API docs: + https://docs.wasabi.com/docs/wasabi-stats-api + +check: + type: CheckStream + stream_names: + - Standalone Utilizations + +definitions: + streams: + Standalone Utilizations: + type: DeclarativeStream + name: Standalone Utilizations + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: pageSize + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: pageNum + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 0 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /v1/standalone/utilizations + http_method: GET + request_parameters: + includeRegionalUtilizations: "true" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - Records + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Standalone Utilizations" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: StartTime + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%d" + end_time_option: + type: RequestOption + field_name: to + inject_into: request_parameter + start_time_option: + type: RequestOption + field_name: from + inject_into: request_parameter + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + Standalone Bucket Utilizations: + type: DeclarativeStream + name: Standalone Bucket Utilizations + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + field_name: pageSize + inject_into: request_parameter + page_token_option: + type: RequestOption + field_name: pageNum + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 0 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /v1/standalone/utilizations/bucket + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - Records + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Standalone Bucket Utilizations" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: StartTime + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%d" + end_time_option: + type: RequestOption + field_name: to + inject_into: request_parameter + start_time_option: + type: RequestOption + field_name: from + inject_into: request_parameter + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + base_requester: + type: HttpRequester + url_base: https://stats.wasabisys.com + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_key\"] }}" + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + +streams: + - $ref: "#/definitions/streams/Standalone Utilizations" + - $ref: "#/definitions/streams/Standalone Bucket Utilizations" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - start_date + - api_key + properties: + api_key: + type: string + description: The API key format is `AccessKey:SecretKey` + order: 1 + title: API Key + airbyte_secret: true + start_date: + type: string + order: 0 + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + additionalProperties: true + +metadata: + assist: {} + testedStreams: + Standalone Utilizations: + hasRecords: true + streamHash: a6e7efce5a1718c456382498fdd08ad27b845f78 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + Standalone Bucket Utilizations: + hasRecords: true + streamHash: 35507d86920146614af160f9b6ebc95e40974c1a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + autoImportSchema: + Standalone Utilizations: true + Standalone Bucket Utilizations: true + +schemas: + Standalone Utilizations: + type: object + $schema: http://json-schema.org/schema# + required: + - StartTime + properties: + AcctNum: + type: + - number + - "null" + EndTime: + type: + - string + - "null" + StartTime: + type: string + CreateTime: + type: + - string + - "null" + AcctPlanNum: + type: + - number + - "null" + DeleteBytes: + type: + - number + - "null" + NumAPICalls: + type: + - number + - "null" + NumGETCalls: + type: + - number + - "null" + NumPUTCalls: + type: + - number + - "null" + UploadBytes: + type: + - number + - "null" + NumHEADCalls: + type: + - number + - "null" + NumLISTCalls: + type: + - number + - "null" + DownloadBytes: + type: + - number + - "null" + NumDELETECalls: + type: + - number + - "null" + UtilizationNum: + type: + - number + - "null" + StorageReadBytes: + type: + - number + - "null" + StorageWroteBytes: + type: + - number + - "null" + NumBillableObjects: + type: + - number + - "null" + RawStorageSizeBytes: + type: + - number + - "null" + RegionalUtilizations: + type: + - object + - "null" + properties: + eu-central-1: + type: + - object + - "null" + properties: + DeleteBytes: + type: + - number + - "null" + NumAPICalls: + type: + - number + - "null" + NumGETCalls: + type: + - number + - "null" + NumPUTCalls: + type: + - number + - "null" + UploadBytes: + type: + - number + - "null" + NumHEADCalls: + type: + - number + - "null" + NumLISTCalls: + type: + - number + - "null" + DownloadBytes: + type: + - number + - "null" + NumDELETECalls: + type: + - number + - "null" + StorageReadBytes: + type: + - number + - "null" + StorageWroteBytes: + type: + - number + - "null" + NumBillableObjects: + type: + - number + - "null" + RawStorageSizeBytes: + type: + - number + - "null" + PaddedStorageSizeBytes: + type: + - number + - "null" + DeletedStorageSizeBytes: + type: + - number + - "null" + MetadataStorageSizeBytes: + type: + - number + - "null" + OrphanedStorageSizeBytes: + type: + - number + - "null" + NumBillableDeletedObjects: + type: + - number + - "null" + MinStorageChargeBytes: + type: + - number + - "null" + PaddedStorageSizeBytes: + type: + - number + - "null" + DeletedStorageSizeBytes: + type: + - number + - "null" + MetadataStorageSizeBytes: + type: + - number + - "null" + OrphanedStorageSizeBytes: + type: + - number + - "null" + NumBillableDeletedObjects: + type: + - number + - "null" + additionalProperties: true + Standalone Bucket Utilizations: + type: object + $schema: http://json-schema.org/schema# + required: + - StartTime + properties: + Bucket: + type: + - string + - "null" + Region: + type: + - string + - "null" + AcctNum: + type: + - number + - "null" + EndTime: + type: + - string + - "null" + BucketNum: + type: + - number + - "null" + StartTime: + type: string + CreateTime: + type: + - string + - "null" + AcctPlanNum: + type: + - number + - "null" + DeleteBytes: + type: + - number + - "null" + NumAPICalls: + type: + - number + - "null" + NumGETCalls: + type: + - number + - "null" + NumPUTCalls: + type: + - number + - "null" + UploadBytes: + type: + - number + - "null" + NumHEADCalls: + type: + - number + - "null" + NumLISTCalls: + type: + - number + - "null" + DownloadBytes: + type: + - number + - "null" + NumDELETECalls: + type: + - number + - "null" + StorageReadBytes: + type: + - number + - "null" + StorageWroteBytes: + type: + - number + - "null" + NumBillableObjects: + type: + - number + - "null" + RawStorageSizeBytes: + type: + - number + - "null" + BucketUtilizationNum: + type: + - number + - "null" + PaddedStorageSizeBytes: + type: + - number + - "null" + DeletedStorageSizeBytes: + type: + - number + - "null" + MetadataStorageSizeBytes: + type: + - number + - "null" + OrphanedStorageSizeBytes: + type: + - number + - "null" + NumBillableDeletedObjects: + type: + - number + - "null" + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-wasabi-stats-api/metadata.yaml b/airbyte-integrations/connectors/source-wasabi-stats-api/metadata.yaml new file mode 100644 index 000000000000..bc26b584a958 --- /dev/null +++ b/airbyte-integrations/connectors/source-wasabi-stats-api/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "*" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-wasabi-stats-api + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 6b0d43cb-8d31-4f9f-9832-6e577aa80db4 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-wasabi-stats-api + githubIssueLabel: source-wasabi-stats-api + icon: icon.svg + license: MIT + name: Wasabi + releaseDate: 2024-10-25 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/wasabi-stats-api + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/wasabi-stats-api.md b/docs/integrations/sources/wasabi-stats-api.md new file mode 100644 index 000000000000..2b9d888732c0 --- /dev/null +++ b/docs/integrations/sources/wasabi-stats-api.md @@ -0,0 +1,32 @@ +# Wasabi +Connector for https://www.wasabi.com stats API. +API docs: https://docs.wasabi.com/docs/wasabi-stats-api + +:::info +This connector ingest stats information from Wasabi server. +It **does not** ingest content from files stored in Wasabi. +::: + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. The API key format is `AccessKey:SecretKey` | | +| `start_date` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| Standalone Utilizations | | DefaultPaginator | ✅ | ✅ | +| Standalone Bucket Utilizations | | DefaultPaginator | ✅ | ✅ | + +## Changelog + +
+ Expand to review + +| Version | Date | Subject | +|------------------|------------|----------------| +| 0.0.1 | 2024-10-25 | Initial release by [@dainiussa](https://github.com/dainiussa) via Connector Builder| + +
From e3a389451d5514e662b22ff634d86dbce72436ec Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Mon, 28 Oct 2024 14:44:27 -0700 Subject: [PATCH 243/808] Bulk Load CDK: Time String types to Logical Integrals (#47320) --- .../cdk/load/command/DestinationStream.kt | 4 +- .../cdk/load/data/AirbyteSchemaMapper.kt | 47 ------ .../io/airbyte/cdk/load/data/AirbyteValue.kt | 5 + .../load/data/AirbyteValueIdentityMapper.kt | 2 +- .../cdk/load/data/AirbyteValueMapper.kt | 73 --------- .../cdk/load/data/TimeStringToInteger.kt | 100 ++++++++++++ .../{ => json}/AirbyteTypeToJsonSchema.kt | 5 +- .../data/{ => json}/AirbyteValueToJson.kt | 4 +- .../{ => json}/JsonSchemaToAirbyteType.kt | 3 +- .../data/{ => json}/JsonToAirbyteValue.kt | 3 +- .../cdk/load/message/DestinationMessage.kt | 4 +- .../load/{command => data}/MergeUnionsTest.kt | 8 +- .../cdk/load/data/TimeStringToIntegerTest.kt | 151 ++++++++++++++++++ .../AirbyteSchemaTypeToJsonSchemaTest.kt | 2 +- .../data/{ => json}/AirbyteValueToJsonTest.kt | 26 ++- .../JsonSchemaToAirbyteSchemaTypeTest.kt | 19 ++- .../data/{ => json}/JsonToAirbyteValueTest.kt | 27 +++- .../load/data/avro/AirbyteTypeToAvroSchema.kt | 39 +++-- .../data/avro/AirbyteValueToAvroRecord.kt | 4 +- .../cdk/load/data/csv/AirbyteValueToCsvRow.kt | 2 +- .../cdk/load/data/csv/CsvRowToAirbyteValue.kt | 2 +- .../cdk/load/ObjectStorageDataDumper.kt | 2 +- .../destination-s3-v2/metadata.yaml | 2 +- .../src/main/kotlin/S3V2Writer.kt | 2 +- 24 files changed, 372 insertions(+), 164 deletions(-) delete mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaMapper.kt delete mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueMapper.kt create mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/TimeStringToInteger.kt rename airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/{ => json}/AirbyteTypeToJsonSchema.kt (95%) rename airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/{ => json}/AirbyteValueToJson.kt (90%) rename airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/{ => json}/JsonSchemaToAirbyteType.kt (98%) rename airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/{ => json}/JsonToAirbyteValue.kt (99%) rename airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/{command => data}/MergeUnionsTest.kt (91%) create mode 100644 airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/TimeStringToIntegerTest.kt rename airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/{ => json}/AirbyteSchemaTypeToJsonSchemaTest.kt (99%) rename airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/{ => json}/AirbyteValueToJsonTest.kt (78%) rename airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/{ => json}/JsonSchemaToAirbyteSchemaTypeTest.kt (92%) rename airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/{ => json}/JsonToAirbyteValueTest.kt (85%) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/command/DestinationStream.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/command/DestinationStream.kt index 2a1d5a5097eb..bd14ada6491e 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/command/DestinationStream.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/command/DestinationStream.kt @@ -5,13 +5,13 @@ package io.airbyte.cdk.load.command import io.airbyte.cdk.load.data.AirbyteType -import io.airbyte.cdk.load.data.AirbyteTypeToJsonSchema import io.airbyte.cdk.load.data.ArrayType import io.airbyte.cdk.load.data.FieldType import io.airbyte.cdk.load.data.IntegerType -import io.airbyte.cdk.load.data.JsonSchemaToAirbyteType import io.airbyte.cdk.load.data.ObjectType import io.airbyte.cdk.load.data.StringType +import io.airbyte.cdk.load.data.json.AirbyteTypeToJsonSchema +import io.airbyte.cdk.load.data.json.JsonSchemaToAirbyteType import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.protocol.models.v0.AirbyteStream import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaMapper.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaMapper.kt deleted file mode 100644 index 5252389d02d0..000000000000 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaMapper.kt +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) 2024 Airbyte, Inc., all rights reserved. - */ - -package io.airbyte.cdk.load.data - -interface AirbyteSchemaMapper { - fun map(schema: AirbyteType): AirbyteType = - when (schema) { - is NullType -> mapNull(schema) - is StringType -> mapString(schema) - is BooleanType -> mapBoolean(schema) - is IntegerType -> mapInteger(schema) - is NumberType -> mapNumber(schema) - is ArrayType -> mapArray(schema) - is ArrayTypeWithoutSchema -> mapArrayWithoutSchema(schema) - is ObjectType -> mapObject(schema) - is ObjectTypeWithoutSchema -> mapObjectWithoutSchema(schema) - is ObjectTypeWithEmptySchema -> mapObjectWithEmptySchema(schema) - is UnionType -> mapUnion(schema) - is DateType -> mapDate(schema) - is TimeTypeWithTimezone -> mapTimeTypeWithTimezone(schema) - is TimeTypeWithoutTimezone -> mapTimeTypeWithoutTimezone(schema) - is TimestampTypeWithTimezone -> mapTimestampTypeWithTimezone(schema) - is TimestampTypeWithoutTimezone -> mapTimestampTypeWithoutTimezone(schema) - is UnknownType -> mapUnknown(schema) - } - - fun mapField(field: FieldType): FieldType - fun mapNull(schema: NullType): AirbyteType - fun mapString(schema: StringType): AirbyteType - fun mapBoolean(schema: BooleanType): AirbyteType - fun mapInteger(schema: IntegerType): AirbyteType - fun mapNumber(schema: NumberType): AirbyteType - fun mapArray(schema: ArrayType): AirbyteType - fun mapArrayWithoutSchema(schema: ArrayTypeWithoutSchema): AirbyteType - fun mapObject(schema: ObjectType): AirbyteType - fun mapObjectWithoutSchema(schema: ObjectTypeWithoutSchema): AirbyteType - fun mapObjectWithEmptySchema(schema: ObjectTypeWithEmptySchema): AirbyteType - fun mapUnion(schema: UnionType): AirbyteType - fun mapDate(schema: DateType): AirbyteType - fun mapTimeTypeWithTimezone(schema: TimeTypeWithTimezone): AirbyteType - fun mapTimeTypeWithoutTimezone(schema: TimeTypeWithoutTimezone): AirbyteType - fun mapTimestampTypeWithTimezone(schema: TimestampTypeWithTimezone): AirbyteType - fun mapTimestampTypeWithoutTimezone(schema: TimestampTypeWithoutTimezone): AirbyteType - fun mapUnknown(schema: UnknownType): AirbyteType -} diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt index fe8215ddb09f..0e9e2cbd123d 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt @@ -62,6 +62,11 @@ value class IntegerValue(val value: Long) : AirbyteValue, Comparable { + override fun compareTo(other: IntValue): Int = value.compareTo(other.value) +} + @JvmInline value class NumberValue(val value: BigDecimal) : AirbyteValue, Comparable { override fun compareTo(other: NumberValue): Int = value.compareTo(other.value) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt index f3b0e0781207..ecea54bcc7f7 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt @@ -9,7 +9,7 @@ import io.airbyte.protocol.models.v0.AirbyteRecordMessageMetaChange.Change import io.airbyte.protocol.models.v0.AirbyteRecordMessageMetaChange.Reason open class AirbyteValueIdentityMapper( - open val meta: DestinationRecord.Meta, + val meta: DestinationRecord.Meta, ) { private fun collectFailure( path: List, diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueMapper.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueMapper.kt deleted file mode 100644 index 87da12bf0428..000000000000 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueMapper.kt +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) 2024 Airbyte, Inc., all rights reserved. - */ - -package io.airbyte.cdk.load.data - -interface AirbyteValueMapper { - fun collectFailure(path: List) - fun map( - value: AirbyteValue, - schema: AirbyteType, - path: List = emptyList() - ): AirbyteValue = - try { - when (schema) { - is ObjectType -> mapObject(value as ObjectValue, schema, path) - is ObjectTypeWithoutSchema -> - mapObjectWithoutSchema(value as ObjectValue, schema, path) - is ObjectTypeWithEmptySchema -> - mapObjectWithEmptySchema(value as ObjectValue, schema, path) - is ArrayType -> mapArray(value as ArrayValue, schema, path) - is ArrayTypeWithoutSchema -> - mapArrayWithoutSchema(value as ArrayValue, schema, path) - is UnionType -> mapUnion(value, schema, path) - is BooleanType -> mapBoolean(value as BooleanValue, path) - is NumberType -> mapNumber(value as NumberValue, path) - is StringType -> mapString(value as StringValue, path) - is IntegerType -> mapInteger(value as IntegerValue, path) - is DateType -> mapDate(value as DateValue, path) - is TimeTypeWithTimezone -> mapTimeWithTimezone(value as TimeValue, path) - is TimeTypeWithoutTimezone -> mapTimeWithoutTimezone(value as TimeValue, path) - is TimestampTypeWithTimezone -> - mapTimestampWithTimezone(value as TimestampValue, path) - is TimestampTypeWithoutTimezone -> - mapTimestampWithoutTimezone(value as TimestampValue, path) - is NullType -> mapNull(path) - is UnknownType -> mapUnknown(value as UnknownValue, path) - } - } catch (e: Exception) { - collectFailure(path) - mapNull(path) - } - - fun mapObject(value: ObjectValue, schema: ObjectType, path: List): AirbyteValue - fun mapObjectWithoutSchema( - value: ObjectValue, - schema: ObjectTypeWithoutSchema, - path: List - ): AirbyteValue - fun mapObjectWithEmptySchema( - value: ObjectValue, - schema: ObjectTypeWithEmptySchema, - path: List - ): AirbyteValue - fun mapArray(value: ArrayValue, schema: ArrayType, path: List): AirbyteValue - fun mapArrayWithoutSchema( - value: ArrayValue, - schema: ArrayTypeWithoutSchema, - path: List - ): AirbyteValue - fun mapUnion(value: AirbyteValue, schema: UnionType, path: List): AirbyteValue - fun mapBoolean(value: BooleanValue, path: List): AirbyteValue - fun mapNumber(value: NumberValue, path: List): AirbyteValue - fun mapString(value: StringValue, path: List): AirbyteValue - fun mapInteger(value: IntegerValue, path: List): AirbyteValue - fun mapDate(value: DateValue, path: List): AirbyteValue - fun mapTimeWithTimezone(value: TimeValue, path: List): AirbyteValue - fun mapTimeWithoutTimezone(value: TimeValue, path: List): AirbyteValue - fun mapTimestampWithTimezone(value: TimestampValue, path: List): AirbyteValue - fun mapTimestampWithoutTimezone(value: TimestampValue, path: List): AirbyteValue - fun mapNull(path: List): AirbyteValue - fun mapUnknown(value: UnknownValue, path: List): AirbyteValue -} diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/TimeStringToInteger.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/TimeStringToInteger.kt new file mode 100644 index 000000000000..0bfe95911288 --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/TimeStringToInteger.kt @@ -0,0 +1,100 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.message.DestinationRecord +import java.time.LocalDate +import java.time.LocalDateTime +import java.time.LocalTime +import java.time.OffsetTime +import java.time.ZoneOffset +import java.time.ZonedDateTime +import java.time.format.DateTimeFormatter +import java.time.temporal.ChronoUnit + +class TimeStringTypeToIntegerType : AirbyteSchemaIdentityMapper { + override fun mapDate(schema: DateType): AirbyteType = IntegerType + override fun mapTimeTypeWithTimezone(schema: TimeTypeWithTimezone): AirbyteType = IntegerType + override fun mapTimeTypeWithoutTimezone(schema: TimeTypeWithoutTimezone): AirbyteType = + IntegerType + override fun mapTimestampTypeWithTimezone(schema: TimestampTypeWithTimezone): AirbyteType = + IntegerType + override fun mapTimestampTypeWithoutTimezone( + schema: TimestampTypeWithoutTimezone + ): AirbyteType = IntegerType +} + +/** + * NOTE: To keep parity with the old avro/parquet code, we will always first try to parse the value + * as with timezone, then fall back to without. But in theory we should be more strict. + */ +class TimeStringToInteger(meta: DestinationRecord.Meta) : AirbyteValueIdentityMapper(meta) { + companion object { + private val DATE_TIME_FORMATTER: DateTimeFormatter = + DateTimeFormatter.ofPattern( + "[yyyy][yy]['-']['/']['.'][' '][MMM][MM][M]['-']['/']['.'][' '][dd][d][[' '][G]][[' ']['T']HH:mm[':'ss[.][SSSSSS][SSSSS][SSSS][SSS][' '][z][zzz][Z][O][x][XXX][XX][X][[' '][G]]]]" + ) + private val TIME_FORMATTER: DateTimeFormatter = + DateTimeFormatter.ofPattern( + "HH:mm[':'ss[.][SSSSSS][SSSSS][SSSS][SSS][' '][z][zzz][Z][O][x][XXX][XX][X]]" + ) + } + + override fun mapDate(value: DateValue, path: List): AirbyteValue { + val epochDay = LocalDate.parse(value.value, DATE_TIME_FORMATTER).toEpochDay() + return IntValue(epochDay.toInt()) + } + + private fun toMicrosOfDayWithTimezone(timeString: String): Long { + val time = OffsetTime.parse(timeString, TIME_FORMATTER) + return time.withOffsetSameInstant(ZoneOffset.UTC).toLocalTime().toNanoOfDay() / 1_000 + } + + private fun toMicrosOfDayWithoutTimezone(timeString: String): Long { + val time = LocalTime.parse(timeString, TIME_FORMATTER) + return time.toNanoOfDay() / 1_000 + } + + private fun toMicrosOfDay(timeString: String): Long { + return try { + toMicrosOfDayWithTimezone(timeString) + } catch (e: Exception) { + toMicrosOfDayWithoutTimezone(timeString) + } + } + + override fun mapTimeWithTimezone(value: TimeValue, path: List): AirbyteValue = + IntegerValue(toMicrosOfDay(value.value)) + + override fun mapTimeWithoutTimezone(value: TimeValue, path: List): AirbyteValue = + IntegerValue(toMicrosOfDay(value.value)) + + private fun toEpochMicrosWithTimezone(timestampString: String): Long { + val zdt = ZonedDateTime.parse(timestampString, DATE_TIME_FORMATTER) + return zdt.toInstant().truncatedTo(ChronoUnit.MICROS).toEpochMilli() * 1_000 + + zdt.toInstant().nano / 1_000 % 1_000 + } + + private fun toEpochMicrosWithoutTimezone(timestampString: String): Long { + val dt = LocalDateTime.parse(timestampString, DATE_TIME_FORMATTER) + val instant = dt.toInstant(ZoneOffset.UTC) + return instant.epochSecond * 1_000_000 + instant.nano / 1_000 + } + + private fun toEpochMicros(timestampString: String): Long { + return try { + toEpochMicrosWithTimezone(timestampString) + } catch (e: Exception) { + toEpochMicrosWithoutTimezone(timestampString) + } + } + + override fun mapTimestampWithTimezone(value: TimestampValue, path: List): AirbyteValue = + IntegerValue(toEpochMicros(value.value)) + override fun mapTimestampWithoutTimezone( + value: TimestampValue, + path: List + ): AirbyteValue = IntegerValue(toEpochMicros(value.value)) +} diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteTypeToJsonSchema.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt similarity index 95% rename from airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteTypeToJsonSchema.kt rename to airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt index a13be8556b66..101f9344ba41 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteTypeToJsonSchema.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt @@ -2,11 +2,12 @@ * Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ -package io.airbyte.cdk.load.data +package io.airbyte.cdk.load.data.json import com.fasterxml.jackson.databind.JsonNode import com.fasterxml.jackson.databind.node.JsonNodeFactory import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.load.data.* class AirbyteTypeToJsonSchema { private fun ofType(typeName: String): ObjectNode { @@ -63,7 +64,7 @@ class AirbyteTypeToJsonSchema { val timestampNode = ofType("string").put("format", "date-time") timestampNode.put("airbyte_type", "timestamp_without_timezone") } - else -> throw IllegalArgumentException("Unknown type: $airbyteType") + is UnknownType -> throw IllegalArgumentException("Unknown type: $airbyteType") } } diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueToJson.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJson.kt similarity index 90% rename from airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueToJson.kt rename to airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJson.kt index 75b128cf1340..ac68a0082bf5 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueToJson.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJson.kt @@ -2,10 +2,11 @@ * Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ -package io.airbyte.cdk.load.data +package io.airbyte.cdk.load.data.json import com.fasterxml.jackson.databind.JsonNode import com.fasterxml.jackson.databind.node.JsonNodeFactory +import io.airbyte.cdk.load.data.* class AirbyteValueToJson { fun convert(value: AirbyteValue): JsonNode { @@ -15,6 +16,7 @@ class AirbyteValueToJson { is BooleanValue -> JsonNodeFactory.instance.booleanNode(value.value) is DateValue -> JsonNodeFactory.instance.textNode(value.value) is IntegerValue -> JsonNodeFactory.instance.numberNode(value.value) + is IntValue -> JsonNodeFactory.instance.numberNode(value.value) is NullValue -> JsonNodeFactory.instance.nullNode() is NumberValue -> JsonNodeFactory.instance.numberNode(value.value) is ObjectValue -> { diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonSchemaToAirbyteType.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteType.kt similarity index 98% rename from airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonSchemaToAirbyteType.kt rename to airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteType.kt index 2814fc9ffada..7653c70e467c 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonSchemaToAirbyteType.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteType.kt @@ -2,11 +2,12 @@ * Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ -package io.airbyte.cdk.load.data +package io.airbyte.cdk.load.data.json import com.fasterxml.jackson.databind.JsonNode import com.fasterxml.jackson.databind.node.JsonNodeFactory import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.load.data.* class JsonSchemaToAirbyteType { fun convert(schema: JsonNode): AirbyteType { diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValue.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt similarity index 99% rename from airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValue.kt rename to airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt index 0d95b18fe11f..db84e70dd5e0 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValue.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt @@ -2,9 +2,10 @@ * Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ -package io.airbyte.cdk.load.data +package io.airbyte.cdk.load.data.json import com.fasterxml.jackson.databind.JsonNode +import io.airbyte.cdk.load.data.* import java.math.BigDecimal /** diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/message/DestinationMessage.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/message/DestinationMessage.kt index f92e03be06fc..a6a76520c519 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/message/DestinationMessage.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/message/DestinationMessage.kt @@ -8,9 +8,9 @@ import com.fasterxml.jackson.databind.JsonNode import io.airbyte.cdk.load.command.DestinationCatalog import io.airbyte.cdk.load.command.DestinationStream import io.airbyte.cdk.load.data.AirbyteValue -import io.airbyte.cdk.load.data.AirbyteValueToJson -import io.airbyte.cdk.load.data.JsonToAirbyteValue import io.airbyte.cdk.load.data.ObjectTypeWithoutSchema +import io.airbyte.cdk.load.data.json.AirbyteValueToJson +import io.airbyte.cdk.load.data.json.JsonToAirbyteValue import io.airbyte.cdk.load.message.CheckpointMessage.Checkpoint import io.airbyte.cdk.load.message.CheckpointMessage.Stats import io.airbyte.protocol.models.Jsons diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/command/MergeUnionsTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/MergeUnionsTest.kt similarity index 91% rename from airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/command/MergeUnionsTest.kt rename to airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/MergeUnionsTest.kt index 671c4a52a187..ea4aa91a3f44 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/command/MergeUnionsTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/MergeUnionsTest.kt @@ -2,14 +2,8 @@ * Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ -package io.airbyte.cdk.load.command +package io.airbyte.cdk.load.data -import io.airbyte.cdk.load.data.FieldType -import io.airbyte.cdk.load.data.IntegerType -import io.airbyte.cdk.load.data.MergeUnions -import io.airbyte.cdk.load.data.ObjectType -import io.airbyte.cdk.load.data.StringType -import io.airbyte.cdk.load.data.UnionType import io.airbyte.cdk.load.test.util.Root import io.airbyte.cdk.load.test.util.SchemaRecordBuilder import org.junit.jupiter.api.Assertions diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/TimeStringToIntegerTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/TimeStringToIntegerTest.kt new file mode 100644 index 000000000000..6cfc18a622fd --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/TimeStringToIntegerTest.kt @@ -0,0 +1,151 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.message.DestinationRecord +import io.airbyte.cdk.load.test.util.Root +import io.airbyte.cdk.load.test.util.SchemaRecordBuilder +import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Test + +class TimeStringToIntegerTest { + + @Test + fun testMapDate() { + val mapper = TimeStringToInteger(DestinationRecord.Meta()) + listOf( + "2021-1-1" to 18628, + "2021-01-01" to 18628, + "2021/01/02" to 18629, + "2021.01.03" to 18630, + "2021 Jan 04" to 18631, + "2021-1-1 BC" to -1457318 + ) + .forEach { + Assertions.assertEquals( + IntValue(it.second), + mapper.mapDate(DateValue(it.first), emptyList()), + "Failed for ${it.first} to ${it.second}" + ) + } + } + + private val timestampPairs = + listOf( + "2018-09-15 12:00:00" to 1537012800000000, + "2018-09-15 12:00:00.006542" to 1537012800006542, + "2018/09/15 12:00:00" to 1537012800000000, + "2018.09.15 12:00:00" to 1537012800000000, + "2018 Jul 15 12:00:00" to 1531656000000000, + "2018 Jul 15 12:00:00 GMT+08:00" to 1531627200000000, + "2018 Jul 15 12:00:00GMT+07" to 1531630800000000, + "2021-1-1 01:01:01" to 1609462861000000, + "2021.1.1 01:01:01" to 1609462861000000, + "2021/1/1 01:01:01" to 1609462861000000, + "2021-1-1 01:01:01 +01" to 1609459261000000, + "2021-01-01T01:01:01+01:00" to 1609459261000000, + "2021-01-01T01:01:01.546+01:00" to 1609459261546000, + "2021-01-01 01:01:01" to 1609462861000000, + "2021-01-01 01:01:01 +0000" to 1609462861000000, + "2021/01/01 01:01:01 +0000" to 1609462861000000, + "2021-01-01T01:01:01Z" to 1609462861000000, + "2021-01-01T01:01:01-01:00" to 1609466461000000, + "2021-01-01T01:01:01+01:00" to 1609459261000000, + "2021-01-01 01:01:01 UTC" to 1609462861000000, + "2021-01-01T01:01:01 PST" to 1609491661000000, + "2021-01-01T01:01:01 +0000" to 1609462861000000, + "2021-01-01T01:01:01+0000" to 1609462861000000, + "2021-01-01T01:01:01UTC" to 1609462861000000, + "2021-01-01T01:01:01+01" to 1609459261000000, + "2022-01-23T01:23:45.678-11:30 BC" to -125941863974322000, + "2022-01-23T01:23:45.678-11:30" to 1642942425678000 + ) + + @Test + fun testMapTimestampWithTimezone() { + val mapper = TimeStringToInteger(DestinationRecord.Meta()) + timestampPairs.forEach { + Assertions.assertEquals( + IntegerValue(it.second), + mapper.mapTimestampWithTimezone(TimestampValue(it.first), emptyList()), + "Failed for ${it.first} to ${it.second}" + ) + } + } + + @Test + fun testMapTimestampWithoutTimezone() { + val mapper = TimeStringToInteger(DestinationRecord.Meta()) + timestampPairs.forEach { + Assertions.assertEquals( + IntegerValue(it.second), + mapper.mapTimestampWithoutTimezone(TimestampValue(it.first), emptyList()), + "Failed for ${it.first} to ${it.second}" + ) + } + } + + private val timePairs = + listOf( + "01:01:01" to 3661000000, + "01:01" to 3660000000, + "12:23:01.541" to 44581541000, + "12:23:01.541214" to 44581541214, + "12:00:00.000000+01:00" to 39600000000, + "10:00:00.000000-01:00" to 39600000000, + "03:30:00.000000+04:00" to 84600000000 + ) + + @Test + fun testTimeWithTimezone() { + val mapper = TimeStringToInteger(DestinationRecord.Meta()) + timePairs.forEach { + Assertions.assertEquals( + IntegerValue(it.second), + mapper.mapTimeWithTimezone(TimeValue(it.first), emptyList()), + "Failed for ${it.first} to ${it.second}" + ) + } + } + + @Test + fun testTimeWithoutTimezone() { + val mapper = TimeStringToInteger(DestinationRecord.Meta()) + timePairs.forEach { + Assertions.assertEquals( + IntegerValue(it.second), + mapper.mapTimeWithoutTimezone(TimeValue(it.first), emptyList()), + "Failed for ${it.first} to ${it.second}" + ) + } + } + + @Test + fun testBasicSchemaBehavior() { + val (inputSchema, expectedOutput) = + SchemaRecordBuilder() + .with(DateType, IntegerType) + .withRecord() + .with(TimestampTypeWithTimezone, IntegerType) + .endRecord() + .with(TimestampTypeWithoutTimezone, IntegerType) + .withRecord() + .with(TimeTypeWithTimezone, IntegerType) + .withRecord() + .with(TimeTypeWithoutTimezone, IntegerType) + .endRecord() + .endRecord() + .withUnion( + expectedInstead = + FieldType(UnionType(listOf(IntegerType, IntegerType)), nullable = false) + ) + .with(DateType) + .with(TimeTypeWithTimezone) + .endUnion() + .build() + val output = TimeStringTypeToIntegerType().map(inputSchema) + Assertions.assertEquals(expectedOutput, output) + } +} diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaTypeToJsonSchemaTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteSchemaTypeToJsonSchemaTest.kt similarity index 99% rename from airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaTypeToJsonSchemaTest.kt rename to airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteSchemaTypeToJsonSchemaTest.kt index 52011496f2ba..b4139df4af5e 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaTypeToJsonSchemaTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteSchemaTypeToJsonSchemaTest.kt @@ -2,7 +2,7 @@ * Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ -package io.airbyte.cdk.load.data +package io.airbyte.cdk.load.data.json import com.fasterxml.jackson.databind.JsonNode import com.fasterxml.jackson.databind.node.JsonNodeFactory diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueToJsonTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJsonTest.kt similarity index 78% rename from airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueToJsonTest.kt rename to airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJsonTest.kt index a35942a55da6..4d2bede2c25a 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueToJsonTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJsonTest.kt @@ -2,8 +2,32 @@ * Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ -package io.airbyte.cdk.load.data +package io.airbyte.cdk.load.data.json +import io.airbyte.cdk.load.data.ArrayType +import io.airbyte.cdk.load.data.ArrayValue +import io.airbyte.cdk.load.data.BooleanType +import io.airbyte.cdk.load.data.BooleanValue +import io.airbyte.cdk.load.data.DateType +import io.airbyte.cdk.load.data.DateValue +import io.airbyte.cdk.load.data.FieldType +import io.airbyte.cdk.load.data.IntegerType +import io.airbyte.cdk.load.data.IntegerValue +import io.airbyte.cdk.load.data.NullType +import io.airbyte.cdk.load.data.NullValue +import io.airbyte.cdk.load.data.NumberType +import io.airbyte.cdk.load.data.NumberValue +import io.airbyte.cdk.load.data.ObjectType +import io.airbyte.cdk.load.data.ObjectValue +import io.airbyte.cdk.load.data.StringType +import io.airbyte.cdk.load.data.StringValue +import io.airbyte.cdk.load.data.TimeTypeWithTimezone +import io.airbyte.cdk.load.data.TimeTypeWithoutTimezone +import io.airbyte.cdk.load.data.TimeValue +import io.airbyte.cdk.load.data.TimestampTypeWithTimezone +import io.airbyte.cdk.load.data.TimestampTypeWithoutTimezone +import io.airbyte.cdk.load.data.TimestampValue +import io.airbyte.cdk.load.data.UnionType import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonSchemaToAirbyteSchemaTypeTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteSchemaTypeTest.kt similarity index 92% rename from airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonSchemaToAirbyteSchemaTypeTest.kt rename to airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteSchemaTypeTest.kt index 749463ddbd48..6264dea2dca4 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonSchemaToAirbyteSchemaTypeTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteSchemaTypeTest.kt @@ -2,10 +2,27 @@ * Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ -package io.airbyte.cdk.load.data +package io.airbyte.cdk.load.data.json import com.fasterxml.jackson.databind.node.JsonNodeFactory import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.load.data.ArrayType +import io.airbyte.cdk.load.data.ArrayTypeWithoutSchema +import io.airbyte.cdk.load.data.BooleanType +import io.airbyte.cdk.load.data.DateType +import io.airbyte.cdk.load.data.FieldType +import io.airbyte.cdk.load.data.IntegerType +import io.airbyte.cdk.load.data.NullType +import io.airbyte.cdk.load.data.NumberType +import io.airbyte.cdk.load.data.ObjectType +import io.airbyte.cdk.load.data.ObjectTypeWithEmptySchema +import io.airbyte.cdk.load.data.ObjectTypeWithoutSchema +import io.airbyte.cdk.load.data.StringType +import io.airbyte.cdk.load.data.TimeTypeWithTimezone +import io.airbyte.cdk.load.data.TimeTypeWithoutTimezone +import io.airbyte.cdk.load.data.TimestampTypeWithTimezone +import io.airbyte.cdk.load.data.TimestampTypeWithoutTimezone +import io.airbyte.cdk.load.data.UnionType import io.airbyte.cdk.util.Jsons import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValueTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValueTest.kt similarity index 85% rename from airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValueTest.kt rename to airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValueTest.kt index 9b5fa2cc35a1..515099026352 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/JsonToAirbyteValueTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValueTest.kt @@ -2,9 +2,34 @@ * Copyright (c) 2024 Airbyte, Inc., all rights reserved. */ -package io.airbyte.cdk.load.data +package io.airbyte.cdk.load.data.json import com.fasterxml.jackson.databind.node.JsonNodeFactory +import io.airbyte.cdk.load.data.ArrayType +import io.airbyte.cdk.load.data.ArrayTypeWithoutSchema +import io.airbyte.cdk.load.data.ArrayValue +import io.airbyte.cdk.load.data.BooleanType +import io.airbyte.cdk.load.data.BooleanValue +import io.airbyte.cdk.load.data.DateType +import io.airbyte.cdk.load.data.DateValue +import io.airbyte.cdk.load.data.FieldType +import io.airbyte.cdk.load.data.IntegerType +import io.airbyte.cdk.load.data.IntegerValue +import io.airbyte.cdk.load.data.NullType +import io.airbyte.cdk.load.data.NullValue +import io.airbyte.cdk.load.data.NumberType +import io.airbyte.cdk.load.data.NumberValue +import io.airbyte.cdk.load.data.ObjectType +import io.airbyte.cdk.load.data.ObjectTypeWithEmptySchema +import io.airbyte.cdk.load.data.ObjectTypeWithoutSchema +import io.airbyte.cdk.load.data.ObjectValue +import io.airbyte.cdk.load.data.StringType +import io.airbyte.cdk.load.data.StringValue +import io.airbyte.cdk.load.data.TimeTypeWithTimezone +import io.airbyte.cdk.load.data.TimeValue +import io.airbyte.cdk.load.data.TimestampTypeWithTimezone +import io.airbyte.cdk.load.data.TimestampValue +import io.airbyte.cdk.load.data.UnionType import io.airbyte.cdk.util.Jsons import java.math.BigDecimal import org.junit.jupiter.api.Assertions diff --git a/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteTypeToAvroSchema.kt b/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteTypeToAvroSchema.kt index 6f1e733a6297..a4c8797db572 100644 --- a/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteTypeToAvroSchema.kt +++ b/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteTypeToAvroSchema.kt @@ -23,17 +23,18 @@ import io.airbyte.cdk.load.data.TimestampTypeWithTimezone import io.airbyte.cdk.load.data.TimestampTypeWithoutTimezone import io.airbyte.cdk.load.data.UnionType import io.airbyte.cdk.load.data.UnknownType +import org.apache.avro.LogicalTypes import org.apache.avro.Schema import org.apache.avro.SchemaBuilder class AirbyteTypeToAvroSchema { fun convert(airbyteSchema: AirbyteType, path: List): Schema { - when (airbyteSchema) { + return when (airbyteSchema) { is ObjectType -> { val name = path.last() val namespace = path.take(path.size - 1).reversed().joinToString(".") val builder = SchemaBuilder.record(name).namespace(namespace).fields() - return airbyteSchema.properties.entries + airbyteSchema.properties.entries .fold(builder) { acc, (name, field) -> // NOTE: We will not support nullable at this stage. // All nullables should have been converted to union[this, null] upstream @@ -43,30 +44,34 @@ class AirbyteTypeToAvroSchema { .endRecord() } is ArrayType -> { - return SchemaBuilder.array() - .items(convert(airbyteSchema.items.type, path + "items")) + SchemaBuilder.array().items(convert(airbyteSchema.items.type, path + "items")) } is ArrayTypeWithoutSchema -> throw IllegalArgumentException("Array type without schema is not supported") - is BooleanType -> return SchemaBuilder.builder().booleanType() - is DateType -> - throw IllegalArgumentException("String-based date types are not supported") - is IntegerType -> return SchemaBuilder.builder().longType() - is NullType -> return SchemaBuilder.builder().nullType() - is NumberType -> return SchemaBuilder.builder().doubleType() + is BooleanType -> SchemaBuilder.builder().booleanType() + is DateType -> { + val schema = SchemaBuilder.builder().intType() + LogicalTypes.date().addToSchema(schema) + } + is IntegerType -> SchemaBuilder.builder().longType() + is NullType -> SchemaBuilder.builder().nullType() + is NumberType -> SchemaBuilder.builder().doubleType() is ObjectTypeWithEmptySchema -> throw IllegalArgumentException("Object type with empty schema is not supported") is ObjectTypeWithoutSchema -> throw IllegalArgumentException("Object type without schema is not supported") - is StringType -> return SchemaBuilder.builder().stringType() + is StringType -> SchemaBuilder.builder().stringType() is TimeTypeWithTimezone, - is TimeTypeWithoutTimezone -> - throw IllegalArgumentException("String-based time types are not supported") + is TimeTypeWithoutTimezone -> { + val schema = SchemaBuilder.builder().longType() + LogicalTypes.timeMicros().addToSchema(schema) + } is TimestampTypeWithTimezone, - is TimestampTypeWithoutTimezone -> - throw IllegalArgumentException("String-based timestamp types are not supported") - is UnionType -> - return Schema.createUnion(airbyteSchema.options.map { convert(it, path) }) + is TimestampTypeWithoutTimezone -> { + val schema = SchemaBuilder.builder().longType() + LogicalTypes.timestampMicros().addToSchema(schema) + } + is UnionType -> Schema.createUnion(airbyteSchema.options.map { convert(it, path) }) is UnknownType -> throw IllegalArgumentException("Unknown type: ${airbyteSchema.what}") } } diff --git a/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteValueToAvroRecord.kt b/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteValueToAvroRecord.kt index d1aac913a4e2..cb01f592f90a 100644 --- a/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteValueToAvroRecord.kt +++ b/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteValueToAvroRecord.kt @@ -8,6 +8,7 @@ import io.airbyte.cdk.load.data.AirbyteValue import io.airbyte.cdk.load.data.ArrayValue import io.airbyte.cdk.load.data.BooleanValue import io.airbyte.cdk.load.data.DateValue +import io.airbyte.cdk.load.data.IntValue import io.airbyte.cdk.load.data.IntegerValue import io.airbyte.cdk.load.data.NullValue import io.airbyte.cdk.load.data.NumberValue @@ -41,7 +42,8 @@ class AirbyteValueToAvroRecord { is DateValue -> throw IllegalArgumentException("String-based date types are not supported") is IntegerValue -> return airbyteValue.value - NullValue -> return null + is IntValue -> return airbyteValue.value + is NullValue -> return null is NumberValue -> return airbyteValue.value.toDouble() is StringValue -> return airbyteValue.value is TimeValue -> diff --git a/airbyte-cdk/bulk/toolkits/load-csv/src/main/kotlin/io/airbyte/cdk/load/data/csv/AirbyteValueToCsvRow.kt b/airbyte-cdk/bulk/toolkits/load-csv/src/main/kotlin/io/airbyte/cdk/load/data/csv/AirbyteValueToCsvRow.kt index bdd9c388404b..1f55dfa5ff21 100644 --- a/airbyte-cdk/bulk/toolkits/load-csv/src/main/kotlin/io/airbyte/cdk/load/data/csv/AirbyteValueToCsvRow.kt +++ b/airbyte-cdk/bulk/toolkits/load-csv/src/main/kotlin/io/airbyte/cdk/load/data/csv/AirbyteValueToCsvRow.kt @@ -10,7 +10,7 @@ import io.airbyte.cdk.load.data.IntegerValue import io.airbyte.cdk.load.data.NumberValue import io.airbyte.cdk.load.data.ObjectValue import io.airbyte.cdk.load.data.StringValue -import io.airbyte.cdk.load.data.toJson +import io.airbyte.cdk.load.data.json.toJson import io.airbyte.cdk.load.util.serializeToString class AirbyteValueToCsvRow { diff --git a/airbyte-cdk/bulk/toolkits/load-csv/src/testFixtures/kotlin/io/airbyte/cdk/load/data/csv/CsvRowToAirbyteValue.kt b/airbyte-cdk/bulk/toolkits/load-csv/src/testFixtures/kotlin/io/airbyte/cdk/load/data/csv/CsvRowToAirbyteValue.kt index 5ff5d3c591d0..50c5922a4888 100644 --- a/airbyte-cdk/bulk/toolkits/load-csv/src/testFixtures/kotlin/io/airbyte/cdk/load/data/csv/CsvRowToAirbyteValue.kt +++ b/airbyte-cdk/bulk/toolkits/load-csv/src/testFixtures/kotlin/io/airbyte/cdk/load/data/csv/CsvRowToAirbyteValue.kt @@ -19,7 +19,7 @@ import io.airbyte.cdk.load.data.ObjectTypeWithoutSchema import io.airbyte.cdk.load.data.ObjectValue import io.airbyte.cdk.load.data.StringType import io.airbyte.cdk.load.data.StringValue -import io.airbyte.cdk.load.data.toAirbyteValue +import io.airbyte.cdk.load.data.json.toAirbyteValue import io.airbyte.cdk.load.util.deserializeToNode import org.apache.commons.csv.CSVRecord diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/ObjectStorageDataDumper.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/ObjectStorageDataDumper.kt index 833bcafcb7b7..00210b252097 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/ObjectStorageDataDumper.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/ObjectStorageDataDumper.kt @@ -14,7 +14,7 @@ import io.airbyte.cdk.load.command.object_storage.ParquetFormatConfiguration import io.airbyte.cdk.load.data.avro.toAirbyteValue import io.airbyte.cdk.load.data.avro.toAvroSchema import io.airbyte.cdk.load.data.csv.toAirbyteValue -import io.airbyte.cdk.load.data.toAirbyteValue +import io.airbyte.cdk.load.data.json.toAirbyteValue import io.airbyte.cdk.load.file.GZIPProcessor import io.airbyte.cdk.load.file.NoopProcessor import io.airbyte.cdk.load.file.avro.toAvroReader diff --git a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml index 7abd78cd65b1..2b7b01267a9c 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml +++ b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: file connectorType: destination definitionId: d6116991-e809-4c7c-ae09-c64712df5b66 - dockerImageTag: 0.1.11 + dockerImageTag: 0.1.12 dockerRepository: airbyte/destination-s3-v2 githubIssueLabel: destination-s3-v2 icon: s3.svg diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt index 9711c90c0bb7..4c7caa97577e 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt @@ -15,7 +15,7 @@ import io.airbyte.cdk.load.data.DestinationRecordToAirbyteValueWithMeta import io.airbyte.cdk.load.data.avro.toAvroRecord import io.airbyte.cdk.load.data.avro.toAvroSchema import io.airbyte.cdk.load.data.csv.toCsvRecord -import io.airbyte.cdk.load.data.toJson +import io.airbyte.cdk.load.data.json.toJson import io.airbyte.cdk.load.file.avro.toAvroWriter import io.airbyte.cdk.load.file.csv.toCsvPrinterWithHeader import io.airbyte.cdk.load.file.object_storage.ObjectStoragePathFactory From 8f6a54879567c7a1433aacdaed6f7c1be047f577 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Mon, 28 Oct 2024 14:48:41 -0700 Subject: [PATCH 244/808] Destination-MotherDuck: Use new table naming methodology, use explicit column names, and add debug info for column matching (#47688) Co-authored-by: Guen Prawiroatmodjo --- .../python/airbyte_cdk/sql/_processors/duckdb.py | 10 +++++++--- .../destination_motherduck/destination.py | 2 +- .../connectors/destination-motherduck/metadata.yaml | 2 +- .../connectors/destination-motherduck/pyproject.toml | 2 +- docs/integrations/destinations/motherduck.md | 1 + 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/airbyte-cdk/python/airbyte_cdk/sql/_processors/duckdb.py b/airbyte-cdk/python/airbyte_cdk/sql/_processors/duckdb.py index a689a2e2fc98..3287d55c81db 100644 --- a/airbyte-cdk/python/airbyte_cdk/sql/_processors/duckdb.py +++ b/airbyte-cdk/python/airbyte_cdk/sql/_processors/duckdb.py @@ -177,11 +177,15 @@ def _write_with_executemany(self, buffer: Dict[str, Dict[str, List[Any]]], strea parameters = [[entries_to_write[column_name][n] for column_name in column_names_list] for n in range(num_entries)] self._executemany(sql, parameters) - def _write_from_pa_table(self, table_name: str, pa_table: pa.Table) -> None: + def _write_from_pa_table(self, table_name: str, stream_name: str, pa_table: pa.Table) -> None: full_table_name = self._fully_qualified(table_name) + columns = list(self._get_sql_column_definitions(stream_name).keys()) + if len(columns) != len(pa_table.column_names): + warnings.warn(f"Schema has colums: {columns}, buffer has columns: {pa_table.column_names}") + column_names = ", ".join(pa_table.column_names) sql = f""" -- Write from PyArrow table - INSERT INTO {full_table_name} SELECT * FROM pa_table + INSERT INTO {full_table_name} ({column_names}) SELECT {column_names} FROM pa_table """ self._execute_sql(sql) @@ -277,7 +281,7 @@ def write_stream_data_from_buffer( else: # DuckDB will automatically find and SELECT from the `pa_table` # local variable defined above. - self._write_from_pa_table(temp_table_name, pa_table) + self._write_from_pa_table(temp_table_name, stream_name, pa_table) temp_table_name_dedup = self._drop_duplicates(temp_table_name, stream_name) diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py index 24b7ab505fc0..95083231c3a8 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py @@ -138,7 +138,7 @@ def write( ) processor._ensure_schema_exists() - table_name = f"_airbyte_raw_{stream_name}" + table_name = processor.normalizer.normalize(stream_name) if configured_stream.destination_sync_mode == DestinationSyncMode.overwrite: # delete the tables logger.info(f"Dropping tables for overwrite: {table_name}") diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index 362e2f625954..c6bdcc4019df 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.3 + dockerImageTag: 0.1.4 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index e5ffb5034e99..74279e57d994 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-motherduck" -version = "0.1.3" +version = "0.1.4" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index b9d89c100c7d..42b20835aa5c 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.4 | 2024-10-28 | [47688](https://github.com/airbytehq/airbyte/pull/47688) | Use new destination table name format, explicitly insert PyArrow table columns by name and add debug info for column mismatches. | | 0.1.3 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Fix bug causing MotherDuck API key to not be correctly passed to the engine. | | 0.1.2 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Use `saas_only` mode during connection check to reduce ram usage. | | 0.1.1 | 2024-10-23 | [47312](https://github.com/airbytehq/airbyte/pull/47312) | Fix: generate new unique destination ID | From a5549566a6b510dbb825969a1f5147959c486d4a Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Mon, 28 Oct 2024 15:02:28 -0700 Subject: [PATCH 245/808] Bulk Load CDK: Schemaless Types to Json Strings (#47353) --- .../load/data/SchemalessTypesToJsonString.kt | 35 +++++ .../data/SchemalessTypesToJsonStringTest.kt | 127 ++++++++++++++++++ 2 files changed, 162 insertions(+) create mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonString.kt create mode 100644 airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonStringTest.kt diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonString.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonString.kt new file mode 100644 index 000000000000..7946bdc22b9b --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonString.kt @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.data.json.toJson +import io.airbyte.cdk.load.message.DestinationRecord +import io.airbyte.cdk.load.util.serializeToString + +class SchemalessTypesToJsonString : AirbyteSchemaIdentityMapper { + override fun mapObjectWithoutSchema(schema: ObjectTypeWithoutSchema): AirbyteType = StringType + override fun mapObjectWithEmptySchema(schema: ObjectTypeWithEmptySchema): AirbyteType = + StringType + override fun mapArrayWithoutSchema(schema: ArrayTypeWithoutSchema): AirbyteType = StringType +} + +class SchemalessValuesToJsonString(meta: DestinationRecord.Meta) : + AirbyteValueIdentityMapper(meta) { + override fun mapObjectWithoutSchema( + value: ObjectValue, + schema: ObjectTypeWithoutSchema, + path: List + ): AirbyteValue = value.toJson().serializeToString().let(::StringValue) + override fun mapObjectWithEmptySchema( + value: ObjectValue, + schema: ObjectTypeWithEmptySchema, + path: List + ): AirbyteValue = value.toJson().serializeToString().let(::StringValue) + override fun mapArrayWithoutSchema( + value: ArrayValue, + schema: ArrayTypeWithoutSchema, + path: List + ): AirbyteValue = value.toJson().serializeToString().let(::StringValue) +} diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonStringTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonStringTest.kt new file mode 100644 index 000000000000..27d5d9cf9042 --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonStringTest.kt @@ -0,0 +1,127 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.data.json.toAirbyteValue +import io.airbyte.cdk.load.message.DestinationRecord +import io.airbyte.cdk.load.test.util.Root +import io.airbyte.cdk.load.test.util.SchemaRecordBuilder +import io.airbyte.cdk.load.test.util.ValueTestBuilder +import io.airbyte.cdk.load.util.deserializeToNode +import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Test + +class SchemalessTypesToJsonStringTest { + @Test + fun testBasicTypeBehavior() { + val (inputSchema, expectedOutput) = + SchemaRecordBuilder() + .withRecord() + .with(StringType) + .with(IntegerType) + .endRecord() + .with(ObjectTypeWithoutSchema, StringType) + .with(ObjectTypeWithEmptySchema, StringType) + .with(ArrayTypeWithoutSchema, StringType) + .with(ArrayType(FieldType(StringType, nullable = false))) + .build() + val mapper = SchemalessTypesToJsonString() + val output = mapper.map(inputSchema) + Assertions.assertEquals(expectedOutput, output) + } + + @Test + fun testNestedTypes() { + val (inputSchema, expectedOutput) = + SchemaRecordBuilder() + .withRecord() + .with(StringType) + .with(ObjectTypeWithEmptySchema, StringType) + .withRecord() + .with(IntegerType) + .with(ObjectTypeWithoutSchema, StringType) + .endRecord() + .with( + ArrayType(FieldType(ArrayTypeWithoutSchema, nullable = false)), + ArrayType(FieldType(StringType, nullable = false)) + ) + .endRecord() + .build() + val mapper = SchemalessTypesToJsonString() + val output = mapper.map(inputSchema) + Assertions.assertEquals(expectedOutput, output) + } + + private val addressJson = + """{"address":{"street":"123 Main St","city":"San Francisco","state":"CA"}}""" + + @Test + fun testBasicValueBehavior() { + val (inputValues, inputSchema, expectedOutput) = + ValueTestBuilder() + .withRecord() + .with(StringValue("hello"), StringType) + .with(IntegerValue(42), IntegerType) + .endRecord() + .with( + ObjectValue(linkedMapOf("foo" to StringValue("bar"))), + ObjectTypeWithoutSchema, + StringValue("""{"foo":"bar"}""") + ) + .with( + addressJson.deserializeToNode().toAirbyteValue(ObjectTypeWithoutSchema), + ObjectTypeWithEmptySchema, + StringValue(addressJson) + ) + .with( + ArrayValue(listOf(StringValue("hello"), StringValue("world"))), + ArrayTypeWithoutSchema, + StringValue("""["hello","world"]""") + ) + .with( + ArrayValue(listOf(StringValue("hello"), StringValue("world"))), + ArrayType(FieldType(StringType, nullable = false)) + ) + .build() + val mapper = SchemalessValuesToJsonString(DestinationRecord.Meta()) + val output = mapper.map(inputValues, inputSchema) + Assertions.assertEquals(expectedOutput, output) + } + + @Test + fun testNestedBehavior() { + val (inputValues, inputSchema, expectedOutput) = + ValueTestBuilder() + .withRecord() + .with(StringValue("hello"), StringType) + .with( + ObjectValue(linkedMapOf("foo" to StringValue("bar"))), + ObjectTypeWithEmptySchema, + StringValue("""{"foo":"bar"}""") + ) + .withRecord() + .with(IntegerValue(42), IntegerType) + .with( + ObjectValue(linkedMapOf("foo" to StringValue("bar"))), + ObjectTypeWithoutSchema, + StringValue("""{"foo":"bar"}""") + ) + .endRecord() + .with( + ArrayValue(listOf(StringValue("hello"), StringValue("world"))), + ArrayTypeWithoutSchema, + StringValue("""["hello","world"]""") + ) + .endRecord() + .with( + ArrayValue(listOf(StringValue("hello"), StringValue("world"))), + ArrayType(FieldType(StringType, nullable = false)) + ) + .build() + val mapper = SchemalessValuesToJsonString(DestinationRecord.Meta()) + val output = mapper.map(inputValues, inputSchema) + Assertions.assertEquals(expectedOutput, output) + } +} From 7bcb7f7ff114062ef95295501b2925779517b00b Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Mon, 28 Oct 2024 15:03:47 -0700 Subject: [PATCH 246/808] Bulk Load CDK: Unions to Disjoint Records (#47354) --- .../cdk/load/data/SchemalessTypesToJson.kt | 34 +++++ .../load/data/UnionTypeToDisjointRecord.kt | 99 ++++++++++++++ .../load/data/SchemalessTypesToJsonTest.kt | 127 ++++++++++++++++++ .../data/UnionTypeToDisjointRecordTest.kt | 50 +++++++ 4 files changed, 310 insertions(+) create mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJson.kt create mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt create mode 100644 airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonTest.kt create mode 100644 airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecordTest.kt diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJson.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJson.kt new file mode 100644 index 000000000000..5ac72691d6d3 --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJson.kt @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.data.json.toJson +import io.airbyte.cdk.load.message.DestinationRecord +import io.airbyte.cdk.load.util.serializeToString + +class SchemalessTypesToJson : AirbyteSchemaIdentityMapper { + override fun mapObjectWithoutSchema(schema: ObjectTypeWithoutSchema): AirbyteType = StringType + override fun mapObjectWithEmptySchema(schema: ObjectTypeWithEmptySchema): AirbyteType = + StringType + override fun mapArrayWithoutSchema(schema: ArrayTypeWithoutSchema): AirbyteType = StringType +} + +class SchemalessValuesToJson(meta: DestinationRecord.Meta) : AirbyteValueIdentityMapper(meta) { + override fun mapObjectWithoutSchema( + value: ObjectValue, + schema: ObjectTypeWithoutSchema, + path: List + ): AirbyteValue = value.toJson().serializeToString().let(::StringValue) + override fun mapObjectWithEmptySchema( + value: ObjectValue, + schema: ObjectTypeWithEmptySchema, + path: List + ): AirbyteValue = value.toJson().serializeToString().let(::StringValue) + override fun mapArrayWithoutSchema( + value: ArrayValue, + schema: ArrayTypeWithoutSchema, + path: List + ): AirbyteValue = value.toJson().serializeToString().let(::StringValue) +} diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt new file mode 100644 index 000000000000..7217f8f32097 --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt @@ -0,0 +1,99 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.message.DestinationRecord + +class UnionTypeToDisjointRecord : AirbyteSchemaIdentityMapper { + override fun mapUnion(schema: UnionType): AirbyteType { + val (nullOptions, nonNullOptions) = schema.options.partition { it is NullType } + if (nonNullOptions.size < 2) { + return schema + } + /* Create a schema of { "type": "string", "": , etc... } */ + val properties = linkedMapOf("type" to FieldType(StringType, nullable = false)) + nonNullOptions.forEach { + val name = typeName(it) + if (name in properties) { + throw IllegalArgumentException("Union of types with same name: $name") + } + properties[typeName(it)] = FieldType(it, nullable = true) + } + val obj = ObjectType(properties) + if (nullOptions.isEmpty()) { + return obj + } + return UnionType(nullOptions + obj) + } + + companion object { + fun typeName(type: AirbyteType): String = + when (type) { + is NullType -> "null" + is StringType -> "string" + is BooleanType -> "boolean" + is IntegerType -> "integer" + is NumberType -> "number" + is DateType -> "date" + is TimestampTypeWithTimezone -> "timestamp_with_timezone" + is TimestampTypeWithoutTimezone -> "timestamp_without_timezone" + is TimeTypeWithTimezone -> "time_with_timezone" + is TimeTypeWithoutTimezone -> "time_without_timezone" + is ArrayType, + is ArrayTypeWithoutSchema -> "array" + is ObjectType, + is ObjectTypeWithoutSchema, + is ObjectTypeWithEmptySchema -> "object" + is UnionType -> "union" + is UnknownType -> "unknown" + } + } +} + +class UnionValueToDisjointRecord(meta: DestinationRecord.Meta) : AirbyteValueIdentityMapper(meta) { + override fun mapUnion( + value: AirbyteValue, + schema: UnionType, + path: List + ): AirbyteValue { + val nNonNullOptions = schema.options.filter { it !is NullType }.size + if (nNonNullOptions < 2) { + return value + } + + val type = + schema.options.find { matches(it, value) } + ?: throw IllegalArgumentException("No matching union option in $schema for $value") + return ObjectValue( + values = + linkedMapOf( + "type" to StringValue(UnionTypeToDisjointRecord.typeName(type)), + UnionTypeToDisjointRecord.typeName(type) to map(value, type, path) + ) + ) + } + + private fun matches(schema: AirbyteType, value: AirbyteValue): Boolean { + return when (schema) { + is ArrayType, + is ArrayTypeWithoutSchema -> value is ArrayValue + is BooleanType -> value is BooleanValue + is DateType -> value is DateValue + is IntegerType -> value is IntegerValue + is NullType -> value is NullValue + is NumberType -> value is NumberValue + is ObjectType, + is ObjectTypeWithoutSchema, + is ObjectTypeWithEmptySchema -> value is ObjectValue + is StringType -> value is StringValue + is TimeTypeWithTimezone, + is TimeTypeWithoutTimezone, + is TimestampTypeWithTimezone, + is TimestampTypeWithoutTimezone -> value is TimeValue + is UnionType -> schema.options.any { matches(it, value) } + is UnknownType -> false + } + } +} diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonTest.kt new file mode 100644 index 000000000000..7dab6e3d4b1a --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonTest.kt @@ -0,0 +1,127 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.data.json.toAirbyteValue +import io.airbyte.cdk.load.message.DestinationRecord +import io.airbyte.cdk.load.test.util.Root +import io.airbyte.cdk.load.test.util.SchemaRecordBuilder +import io.airbyte.cdk.load.test.util.ValueTestBuilder +import io.airbyte.cdk.load.util.deserializeToNode +import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Test + +class SchemalessTypesToJsonTest { + @Test + fun testBasicTypeBehavior() { + val (inputSchema, expectedOutput) = + SchemaRecordBuilder() + .withRecord() + .with(StringType) + .with(IntegerType) + .endRecord() + .with(ObjectTypeWithoutSchema, StringType) + .with(ObjectTypeWithEmptySchema, StringType) + .with(ArrayTypeWithoutSchema, StringType) + .with(ArrayType(FieldType(StringType, nullable = false))) + .build() + val mapper = SchemalessTypesToJson() + val output = mapper.map(inputSchema) + Assertions.assertEquals(expectedOutput, output) + } + + @Test + fun testNestedTypes() { + val (inputSchema, expectedOutput) = + SchemaRecordBuilder() + .withRecord() + .with(StringType) + .with(ObjectTypeWithEmptySchema, StringType) + .withRecord() + .with(IntegerType) + .with(ObjectTypeWithoutSchema, StringType) + .endRecord() + .with( + ArrayType(FieldType(ArrayTypeWithoutSchema, nullable = false)), + ArrayType(FieldType(StringType, nullable = false)) + ) + .endRecord() + .build() + val mapper = SchemalessTypesToJson() + val output = mapper.map(inputSchema) + Assertions.assertEquals(expectedOutput, output) + } + + private val addressJson = + """{"address":{"street":"123 Main St","city":"San Francisco","state":"CA"}}""" + + @Test + fun testBasicValueBehavior() { + val (inputValues, inputSchema, expectedOutput) = + ValueTestBuilder() + .withRecord() + .with(StringValue("hello"), StringType) + .with(IntegerValue(42), IntegerType) + .endRecord() + .with( + ObjectValue(linkedMapOf("foo" to StringValue("bar"))), + ObjectTypeWithoutSchema, + StringValue("""{"foo":"bar"}""") + ) + .with( + addressJson.deserializeToNode().toAirbyteValue(ObjectTypeWithoutSchema), + ObjectTypeWithEmptySchema, + StringValue(addressJson) + ) + .with( + ArrayValue(listOf(StringValue("hello"), StringValue("world"))), + ArrayTypeWithoutSchema, + StringValue("""["hello","world"]""") + ) + .with( + ArrayValue(listOf(StringValue("hello"), StringValue("world"))), + ArrayType(FieldType(StringType, nullable = false)) + ) + .build() + val mapper = SchemalessValuesToJson(DestinationRecord.Meta()) + val output = mapper.map(inputValues, inputSchema) + Assertions.assertEquals(expectedOutput, output) + } + + @Test + fun testNestedBehavior() { + val (inputValues, inputSchema, expectedOutput) = + ValueTestBuilder() + .withRecord() + .with(StringValue("hello"), StringType) + .with( + ObjectValue(linkedMapOf("foo" to StringValue("bar"))), + ObjectTypeWithEmptySchema, + StringValue("""{"foo":"bar"}""") + ) + .withRecord() + .with(IntegerValue(42), IntegerType) + .with( + ObjectValue(linkedMapOf("foo" to StringValue("bar"))), + ObjectTypeWithoutSchema, + StringValue("""{"foo":"bar"}""") + ) + .endRecord() + .with( + ArrayValue(listOf(StringValue("hello"), StringValue("world"))), + ArrayTypeWithoutSchema, + StringValue("""["hello","world"]""") + ) + .endRecord() + .with( + ArrayValue(listOf(StringValue("hello"), StringValue("world"))), + ArrayType(FieldType(StringType, nullable = false)) + ) + .build() + val mapper = SchemalessValuesToJson(DestinationRecord.Meta()) + val output = mapper.map(inputValues, inputSchema) + Assertions.assertEquals(expectedOutput, output) + } +} diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecordTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecordTest.kt new file mode 100644 index 000000000000..dee9cc9e95a8 --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecordTest.kt @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.test.util.Root +import io.airbyte.cdk.load.test.util.SchemaRecordBuilder +import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Test + +class UnionTypeToDisjointRecordTest { + @Test + fun testBasicSchemaBehavior() { + val disjoinRecord = + ObjectType( + linkedMapOf( + "type" to FieldType(StringType, nullable = false), + "string" to FieldType(StringType, nullable = true), + "integer" to FieldType(IntegerType, nullable = true) + ) + ) + val (inputSchema, expectedOutput) = + SchemaRecordBuilder() + .with(UnionType(listOf(StringType))) // union of 1 => ignore + .with(UnionType(listOf(StringType, NullType))) // union of 1 w/ null => ignore + .with( + UnionType(listOf(StringType, IntegerType)), + expected = disjoinRecord + ) // union of 2 => disjoint + .with( + UnionType(listOf(StringType, IntegerType, NullType)), + expected = UnionType(listOf(NullType, disjoinRecord)) + ) // union of 2 w/ null => disjoint + .build() + val output = UnionTypeToDisjointRecord().map(inputSchema) + Assertions.assertEquals(expectedOutput, output) + } + + @Test + fun testUnionOfTypesWithSameNameThrows() { + val (inputSchema, _) = + SchemaRecordBuilder() + .with(UnionType(listOf(ObjectType(linkedMapOf()), ObjectTypeWithoutSchema))) + .build() + Assertions.assertThrows(IllegalArgumentException::class.java) { + UnionTypeToDisjointRecord().map(inputSchema) + } + } +} From 6a2708d8c8c9d836ad127c8c89f21bdd8b72f59c Mon Sep 17 00:00:00 2001 From: Tope Folorunso <66448986+topefolorunso@users.noreply.github.com> Date: Mon, 28 Oct 2024 23:05:07 +0100 Subject: [PATCH 247/808] =?UTF-8?q?=E2=9C=A8=20Source=20Trello=20:=20Migra?= =?UTF-8?q?te=20to=20Manifest-only=20(#47257)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Octavia Squidington III --- .../connectors/source-trello/README.md | 82 +- .../connectors/source-trello/__init__.py | 3 - .../source-trello/acceptance-test-config.yml | 2 +- .../{source_trello => }/components.py | 0 .../connectors/source-trello/main.py | 8 - .../connectors/source-trello/manifest.yaml | 11677 ++++++++++++++++ .../connectors/source-trello/metadata.yaml | 8 +- .../connectors/source-trello/poetry.lock | 1409 -- .../connectors/source-trello/pyproject.toml | 28 - .../source-trello/source_trello/__init__.py | 8 - .../source-trello/source_trello/manifest.yaml | 270 - .../source-trello/source_trello/run.py | 14 - .../source_trello/schemas/actions.json | 314 - .../source_trello/schemas/boards.json | 256 - .../source_trello/schemas/cards.json | 259 - .../source_trello/schemas/checklists.json | 568 - .../source_trello/schemas/lists.json | 26 - .../source_trello/schemas/organizations.json | 204 - .../source_trello/schemas/users.json | 17 - .../source-trello/source_trello/source.py | 18 - .../source-trello/unit_tests/__init__.py | 23 - docs/integrations/sources/trello.md | 1 + 22 files changed, 11713 insertions(+), 3482 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-trello/__init__.py rename airbyte-integrations/connectors/source-trello/{source_trello => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-trello/main.py create mode 100644 airbyte-integrations/connectors/source-trello/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-trello/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-trello/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/__init__.py delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/run.py delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/schemas/actions.json delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/schemas/boards.json delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/schemas/cards.json delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/schemas/checklists.json delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/schemas/lists.json delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/schemas/organizations.json delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/schemas/users.json delete mode 100644 airbyte-integrations/connectors/source-trello/source_trello/source.py delete mode 100644 airbyte-integrations/connectors/source-trello/unit_tests/__init__.py diff --git a/airbyte-integrations/connectors/source-trello/README.md b/airbyte-integrations/connectors/source-trello/README.md index 9c2b581fb946..7e3d78383988 100644 --- a/airbyte-integrations/connectors/source-trello/README.md +++ b/airbyte-integrations/connectors/source-trello/README.md @@ -1,59 +1,49 @@ -# Trello Source +# Trello source connector -This is the repository for the Trello configuration based source connector. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/trello). +This directory contains the manifest-only connector for `source-trello`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development - -#### Create credentials - -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/trello) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_trello/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `integration_tests/sample_config.json` for a sample config file. +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/trello). -**If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `source trello test creds` -and place them into `secrets/config.json`. +## Local development -### Locally running the connector +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -``` -poetry run source-trello spec -poetry run source-trello check --config secrets/config.json -poetry run source-trello discover --config secrets/config.json -poetry run source-trello read --config secrets/config.json --catalog integration_tests/configured_catalog.json -``` +If you prefer to develop locally, you can follow the instructions below. -### Locally running the connector docker image +### Building the docker image -#### Build +You can build any manifest-only connector with `airbyte-ci`: -**Via [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) (recommended):** +1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) +2. Run the following command to build the docker image: ```bash airbyte-ci connectors --name=source-trello build ``` -An image will be built with the tag `airbyte/source-trello:dev`. +An image will be available on your host with the tag `airbyte/source-trello:dev`. -**Via `docker build`:** +### Creating credentials -```bash -docker build -t airbyte/source-trello:dev . -``` +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/trello) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -#### Run +### Running as a docker container -Then run any of the connector commands as follows: +Then run any of the standard source connector commands: -``` +```bash docker run --rm airbyte/source-trello:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-trello:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-trello:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-trello:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -## Testing +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): @@ -61,27 +51,15 @@ You can run our full test suite locally using [`airbyte-ci`](https://github.com/ airbyte-ci connectors --name=source-trello test ``` -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -## Dependency Management - -All of your dependencies should go in `setup.py`, NOT `requirements.txt`. The requirements file is only used to connect internal Airbyte dependencies in the monorepo for local development. -We split dependencies between two groups, dependencies that are: - -- required for your connector to work need to go to `MAIN_REQUIREMENTS` list. -- required for the testing need to go to `TEST_REQUIREMENTS` list - -### Publishing a new version of the connector - -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? +## Publishing a new version of the connector -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-trello test` -2. Bump the connector version in `metadata.yaml`: increment the `dockerImageTag` value. Please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors). -3. Make sure the `metadata.yaml` content is up to date. -4. Make the connector documentation and its changelog is up to date (`docs/integrations/sources/trello.md`). +If you want to contribute changes to `source-trello`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-trello test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + - bump the `dockerImageTag` value in in `metadata.yaml` +4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/trello.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. +8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-trello/__init__.py b/airbyte-integrations/connectors/source-trello/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-trello/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-trello/acceptance-test-config.yml b/airbyte-integrations/connectors/source-trello/acceptance-test-config.yml index 11c1c49b7f68..329c29e2ae32 100644 --- a/airbyte-integrations/connectors/source-trello/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-trello/acceptance-test-config.yml @@ -5,7 +5,7 @@ test_strictness_level: "high" acceptance_tests: spec: tests: - - spec_path: "source_trello/spec.yaml" + - spec_path: "manifest.yaml" backward_compatibility_tests_config: disable_for_version: 0.2.0 connection: diff --git a/airbyte-integrations/connectors/source-trello/source_trello/components.py b/airbyte-integrations/connectors/source-trello/components.py similarity index 100% rename from airbyte-integrations/connectors/source-trello/source_trello/components.py rename to airbyte-integrations/connectors/source-trello/components.py diff --git a/airbyte-integrations/connectors/source-trello/main.py b/airbyte-integrations/connectors/source-trello/main.py deleted file mode 100644 index 7b0b502fdb1e..000000000000 --- a/airbyte-integrations/connectors/source-trello/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_trello.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-trello/manifest.yaml b/airbyte-integrations/connectors/source-trello/manifest.yaml new file mode 100644 index 000000000000..820a241f8764 --- /dev/null +++ b/airbyte-integrations/connectors/source-trello/manifest.yaml @@ -0,0 +1,11677 @@ +version: 4.3.2 +type: DeclarativeSource +check: + type: CheckStream + stream_names: + - boards +definitions: + selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + boards_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids }}" + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: before + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 500 + cursor_value: "{{ last_record['id'] }}" + stop_condition: "{{ last_page_size == 0 }}" + board_id_partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + boards_stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids }}" + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + organizations_stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + actions_stream: + type: DeclarativeStream + name: actions + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/actions + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: before + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 500 + cursor_value: "{{ last_record['id'] }}" + stop_condition: "{{ last_page_size == 0 }}" + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: since + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + data: + type: + - 'null' + - object + properties: + card: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + shortLink: + type: + - 'null' + - string + pos: + type: + - 'null' + - number + desc: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idList: + type: + - 'null' + - string + idMembers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + list: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + pos: + type: + - 'null' + - number + closed: + type: + - 'null' + - boolean + board: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + shortLink: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + background: + type: + - 'null' + - string + old: + type: + - 'null' + - object + properties: + pos: + type: + - 'null' + - number + desc: + type: + - 'null' + - string + name: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idList: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + background: + type: + - 'null' + - string + idMembers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + listBefore: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + listAfter: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + idMemberAdded: + type: + - 'null' + - string + cardSource: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + shortLink: + type: + - 'null' + - string + idMemberInviter: + type: + - 'null' + - string + method: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + member: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + deactivated: + type: + - 'null' + - boolean + text: + type: + - 'null' + - string + organization: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + type: + type: + - 'null' + - string + date: + type: + - 'null' + - string + memberCreator: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + username: + type: + - 'null' + - string + activityBlocked: + type: + - 'null' + - boolean + avatarHash: + type: + - 'null' + - string + avatarUrl: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string + idMemberReferrer: + type: + - 'null' + - string + initials: + type: + - 'null' + - string + nonPublicAvailable: + type: + - 'null' + - boolean + member: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + username: + type: + - 'null' + - string + activityBlocked: + type: + - 'null' + - boolean + avatarHash: + type: + - 'null' + - string + avatarUrl: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string + idMemberReferrer: + type: + - 'null' + - string + initials: + type: + - 'null' + - string + nonPublicAvailable: + type: + - 'null' + - boolean + limits: + type: + - 'null' + - object + properties: + reactions: + type: + - 'null' + - object + properties: + perAction: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + uniquePerAction: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + cards_stream: + type: DeclarativeStream + name: cards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/cards/all + request_parameters: + list: "true" + sort: "-id" + since: "{{ config['start_date'] }}" + members: "true" + pluginData: "true" + actions_display: "true" + customFieldItems: "true" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: before + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 500 + cursor_value: "{{ last_record['id'] }}" + stop_condition: "{{ last_page_size == 0 }}" + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + start: + type: + - 'null' + - string + customFieldItems: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idValue: + type: + - 'null' + - string + idCustomField: + type: + - 'null' + - string + idModel: + type: + - 'null' + - string + modelType: + type: + - 'null' + - string + value: + type: + - 'null' + - object + properties: + checked: + type: + - 'null' + - string + date: + type: + - 'null' + - string + number: + type: + - 'null' + - string + text: + type: + - 'null' + - string + option: + type: + - 'null' + - string + idMembersVoted: + type: + - 'null' + - array + items: + type: + - 'null' + - string + checkItemStates: + type: + - 'null' + - array + items: {} + closed: + type: + - 'null' + - boolean + dateLastActivity: + type: + - 'null' + - string + format: date-time + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - object + properties: + emoji: + type: + - 'null' + - object + properties: {} + dueReminder: + type: + - 'null' + - string + idBoard: + type: + - 'null' + - string + idList: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + idAttachmentCover: + type: + - 'null' + - string + manualCoverAttachment: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + pos: + type: + - 'null' + - number + shortLink: + type: + - 'null' + - string + isTemplate: + type: + - 'null' + - boolean + badges: + type: + - 'null' + - object + properties: + attachmentsByType: + type: + - 'null' + - object + properties: + trello: + type: + - 'null' + - object + properties: + board: + type: + - 'null' + - integer + card: + type: + - 'null' + - integer + location: + type: + - 'null' + - boolean + votes: + type: + - 'null' + - integer + viewingMemberVoted: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + fogbugz: + type: + - 'null' + - string + checkItems: + type: + - 'null' + - integer + checkItemsChecked: + type: + - 'null' + - integer + checkItemsEarliestDue: + type: + - 'null' + - string + format: date-time + comments: + type: + - 'null' + - integer + attachments: + type: + - 'null' + - integer + description: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + format: date-time + dueComplete: + type: + - 'null' + - boolean + dueComplete: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + subscribed: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + cover: + type: + - 'null' + - object + additionalProperties: true + properties: + idAttachment: + type: + - 'null' + - string + color: + type: + - 'null' + - string + idUploadedBackground: + type: + - 'null' + - string + size: + type: + - 'null' + - string + brightness: + type: + - 'null' + - string + edgeColor: + type: + - 'null' + - string + sharedSourceUrl: + type: + - 'null' + - string + idPlugin: + type: + - 'null' + - string + idChecklists: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idMembers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idLabels: + type: array + items: + type: + - 'null' + - string + labels: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idBoard: + type: + - 'null' + - string + name: + type: + - 'null' + - string + color: + type: + - 'null' + - string + checklists_stream: + type: DeclarativeStream + name: checklists + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/checklists + request_parameters: + since: "{{ config['start_date'] }}" + fields: all + checkItem_fields: all + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + data: + type: + - 'null' + - object + properties: + old: + type: + - 'null' + - object + properties: + closed: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + selfJoin: + type: + - 'null' + - boolean + permissionLevel: + type: + - 'null' + - string + dueComplete: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + card: + type: + - 'null' + - object + properties: + closed: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + shortLink: + type: + - 'null' + - string + dueComplete: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + board: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + shortLink: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + selfJoin: + type: + - 'null' + - boolean + permissionLevel: + type: + - 'null' + - string + list: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + checklist: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + organization: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + creationMethod: + type: + - 'null' + - string + type: + type: + - 'null' + - string + date: + type: + - 'null' + - string + memberCreator: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + username: + type: + - 'null' + - string + activityBlocked: + type: + - 'null' + - boolean + avatarHash: + type: + - 'null' + - string + avatarUrl: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string + idMemberReferrer: + type: + - 'null' + - string + initials: + type: + - 'null' + - string + nonPublicAvailable: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + checkItems: + type: + - 'null' + - object + properties: + perChecklist: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - string + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + datePluginDisable: + type: + - 'null' + - string + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundColor: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + checkItemStates: + type: + - 'null' + - string + dueReminder: + type: + - 'null' + - string + idBoard: + type: + - 'null' + - string + idList: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + idAttachmentCover: + type: + - 'null' + - string + manualCoverAttachment: + type: + - 'null' + - boolean + pos: + type: + - 'null' + - number + isTemplate: + type: + - 'null' + - boolean + badges: + type: + - 'null' + - object + properties: + attachmentsByType: + type: + - 'null' + - object + properties: + trello: + type: + - 'null' + - object + properties: + board: + type: + - 'null' + - integer + card: + type: + - 'null' + - integer + location: + type: + - 'null' + - boolean + votes: + type: + - 'null' + - integer + viewingMemberVoted: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + fogbugz: + type: + - 'null' + - string + checkItems: + type: + - 'null' + - integer + checkItemsChecked: + type: + - 'null' + - integer + checkItemsEarliestDue: + type: + - 'null' + - string + comments: + type: + - 'null' + - integer + attachments: + type: + - 'null' + - integer + description: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + dueComplete: + type: + - 'null' + - boolean + dueComplete: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + idChecklists: + type: + - 'null' + - array + items: + type: + - 'null' + - string + cover: + type: + - 'null' + - object + properties: + idAttachment: + type: + - 'null' + - string + color: + type: + - 'null' + - string + idUploadedBackground: + type: + - 'null' + - string + size: + type: + - 'null' + - string + brightness: + type: + - 'null' + - string + username: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string + softLimit: + type: + - 'null' + - string + idCard: + type: + - 'null' + - string + checkItems: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + idChecklist: + type: + - 'null' + - string + state: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + nameData: + type: + - 'null' + - string + type: + type: + - 'null' + - string + pos: + type: + - 'null' + - number + creationMethod: + type: + - 'null' + - string + due: + type: + - 'null' + - string + lists_stream: + type: DeclarativeStream + name: lists + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/lists + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + pos: + type: + - 'null' + - number + softLimit: + type: + - 'null' + - integer + idBoard: + type: + - 'null' + - string + subscribed: + type: + - 'null' + - boolean + users_stream: + type: DeclarativeStream + name: users + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/members + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - string + boardId: + type: + - string + username: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string +streams: +- type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids }}" + type: RecordFilter + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean +- type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string +- type: DeclarativeStream + name: actions + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/actions + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: before + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 500 + cursor_value: "{{ last_record['id'] }}" + stop_condition: "{{ last_page_size == 0 }}" + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + type: RecordFilter + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: since + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + data: + type: + - 'null' + - object + properties: + card: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + shortLink: + type: + - 'null' + - string + pos: + type: + - 'null' + - number + desc: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idList: + type: + - 'null' + - string + idMembers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + list: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + pos: + type: + - 'null' + - number + closed: + type: + - 'null' + - boolean + board: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + shortLink: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + background: + type: + - 'null' + - string + old: + type: + - 'null' + - object + properties: + pos: + type: + - 'null' + - number + desc: + type: + - 'null' + - string + name: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idList: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + background: + type: + - 'null' + - string + idMembers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + listBefore: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + listAfter: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + idMemberAdded: + type: + - 'null' + - string + cardSource: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + shortLink: + type: + - 'null' + - string + idMemberInviter: + type: + - 'null' + - string + method: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + member: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + deactivated: + type: + - 'null' + - boolean + text: + type: + - 'null' + - string + organization: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + type: + type: + - 'null' + - string + date: + type: + - 'null' + - string + memberCreator: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + username: + type: + - 'null' + - string + activityBlocked: + type: + - 'null' + - boolean + avatarHash: + type: + - 'null' + - string + avatarUrl: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string + idMemberReferrer: + type: + - 'null' + - string + initials: + type: + - 'null' + - string + nonPublicAvailable: + type: + - 'null' + - boolean + member: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + username: + type: + - 'null' + - string + activityBlocked: + type: + - 'null' + - boolean + avatarHash: + type: + - 'null' + - string + avatarUrl: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string + idMemberReferrer: + type: + - 'null' + - string + initials: + type: + - 'null' + - string + nonPublicAvailable: + type: + - 'null' + - boolean + limits: + type: + - 'null' + - object + properties: + reactions: + type: + - 'null' + - object + properties: + perAction: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + uniquePerAction: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer +- type: DeclarativeStream + name: cards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/cards/all + request_parameters: + list: "true" + sort: "-id" + since: "{{ config['start_date'] }}" + members: "true" + pluginData: "true" + actions_display: "true" + customFieldItems: "true" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: before + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 500 + cursor_value: "{{ last_record['id'] }}" + stop_condition: "{{ last_page_size == 0 }}" + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + type: RecordFilter + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + start: + type: + - 'null' + - string + customFieldItems: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idValue: + type: + - 'null' + - string + idCustomField: + type: + - 'null' + - string + idModel: + type: + - 'null' + - string + modelType: + type: + - 'null' + - string + value: + type: + - 'null' + - object + properties: + checked: + type: + - 'null' + - string + date: + type: + - 'null' + - string + number: + type: + - 'null' + - string + text: + type: + - 'null' + - string + option: + type: + - 'null' + - string + idMembersVoted: + type: + - 'null' + - array + items: + type: + - 'null' + - string + checkItemStates: + type: + - 'null' + - array + items: {} + closed: + type: + - 'null' + - boolean + dateLastActivity: + type: + - 'null' + - string + format: date-time + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - object + properties: + emoji: + type: + - 'null' + - object + properties: {} + dueReminder: + type: + - 'null' + - string + idBoard: + type: + - 'null' + - string + idList: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + idAttachmentCover: + type: + - 'null' + - string + manualCoverAttachment: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + pos: + type: + - 'null' + - number + shortLink: + type: + - 'null' + - string + isTemplate: + type: + - 'null' + - boolean + badges: + type: + - 'null' + - object + properties: + attachmentsByType: + type: + - 'null' + - object + properties: + trello: + type: + - 'null' + - object + properties: + board: + type: + - 'null' + - integer + card: + type: + - 'null' + - integer + location: + type: + - 'null' + - boolean + votes: + type: + - 'null' + - integer + viewingMemberVoted: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + fogbugz: + type: + - 'null' + - string + checkItems: + type: + - 'null' + - integer + checkItemsChecked: + type: + - 'null' + - integer + checkItemsEarliestDue: + type: + - 'null' + - string + format: date-time + comments: + type: + - 'null' + - integer + attachments: + type: + - 'null' + - integer + description: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + format: date-time + dueComplete: + type: + - 'null' + - boolean + dueComplete: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + subscribed: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + cover: + type: + - 'null' + - object + additionalProperties: true + properties: + idAttachment: + type: + - 'null' + - string + color: + type: + - 'null' + - string + idUploadedBackground: + type: + - 'null' + - string + size: + type: + - 'null' + - string + brightness: + type: + - 'null' + - string + edgeColor: + type: + - 'null' + - string + sharedSourceUrl: + type: + - 'null' + - string + idPlugin: + type: + - 'null' + - string + idChecklists: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idMembers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idLabels: + type: array + items: + type: + - 'null' + - string + labels: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idBoard: + type: + - 'null' + - string + name: + type: + - 'null' + - string + color: + type: + - 'null' + - string +- type: DeclarativeStream + name: checklists + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/checklists + request_parameters: + since: "{{ config['start_date'] }}" + fields: all + checkItem_fields: all + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + type: RecordFilter + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + data: + type: + - 'null' + - object + properties: + old: + type: + - 'null' + - object + properties: + closed: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + selfJoin: + type: + - 'null' + - boolean + permissionLevel: + type: + - 'null' + - string + dueComplete: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + card: + type: + - 'null' + - object + properties: + closed: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + shortLink: + type: + - 'null' + - string + dueComplete: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + board: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + shortLink: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + selfJoin: + type: + - 'null' + - boolean + permissionLevel: + type: + - 'null' + - string + list: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + checklist: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + organization: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + creationMethod: + type: + - 'null' + - string + type: + type: + - 'null' + - string + date: + type: + - 'null' + - string + memberCreator: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + username: + type: + - 'null' + - string + activityBlocked: + type: + - 'null' + - boolean + avatarHash: + type: + - 'null' + - string + avatarUrl: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string + idMemberReferrer: + type: + - 'null' + - string + initials: + type: + - 'null' + - string + nonPublicAvailable: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + checkItems: + type: + - 'null' + - object + properties: + perChecklist: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - string + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + datePluginDisable: + type: + - 'null' + - string + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundColor: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + checkItemStates: + type: + - 'null' + - string + dueReminder: + type: + - 'null' + - string + idBoard: + type: + - 'null' + - string + idList: + type: + - 'null' + - string + idShort: + type: + - 'null' + - integer + idAttachmentCover: + type: + - 'null' + - string + manualCoverAttachment: + type: + - 'null' + - boolean + pos: + type: + - 'null' + - number + isTemplate: + type: + - 'null' + - boolean + badges: + type: + - 'null' + - object + properties: + attachmentsByType: + type: + - 'null' + - object + properties: + trello: + type: + - 'null' + - object + properties: + board: + type: + - 'null' + - integer + card: + type: + - 'null' + - integer + location: + type: + - 'null' + - boolean + votes: + type: + - 'null' + - integer + viewingMemberVoted: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + fogbugz: + type: + - 'null' + - string + checkItems: + type: + - 'null' + - integer + checkItemsChecked: + type: + - 'null' + - integer + checkItemsEarliestDue: + type: + - 'null' + - string + comments: + type: + - 'null' + - integer + attachments: + type: + - 'null' + - integer + description: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + dueComplete: + type: + - 'null' + - boolean + dueComplete: + type: + - 'null' + - boolean + due: + type: + - 'null' + - string + idChecklists: + type: + - 'null' + - array + items: + type: + - 'null' + - string + cover: + type: + - 'null' + - object + properties: + idAttachment: + type: + - 'null' + - string + color: + type: + - 'null' + - string + idUploadedBackground: + type: + - 'null' + - string + size: + type: + - 'null' + - string + brightness: + type: + - 'null' + - string + username: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string + softLimit: + type: + - 'null' + - string + idCard: + type: + - 'null' + - string + checkItems: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + idChecklist: + type: + - 'null' + - string + state: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + nameData: + type: + - 'null' + - string + type: + type: + - 'null' + - string + pos: + type: + - 'null' + - number + creationMethod: + type: + - 'null' + - string + due: + type: + - 'null' + - string +- type: DeclarativeStream + name: lists + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/lists + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + type: RecordFilter + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + pos: + type: + - 'null' + - number + softLimit: + type: + - 'null' + - integer + idBoard: + type: + - 'null' + - string + subscribed: + type: + - 'null' + - boolean +- type: DeclarativeStream + name: users + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: boards/{{ stream_partition.id }}/members + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.OrderIdsPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + type: DeclarativeStream + name: boards + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/boards + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + condition: "{{ record.id in config.board_ids or not config.board_ids + }}" + type: RecordFilter + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: + - 'null' + - string + closed: + type: + - 'null' + - boolean + idOrganization: + type: + - 'null' + - string + idEnterprise: + type: + - 'null' + - string + limits: + type: + - 'null' + - object + properties: + attachments: + type: + - 'null' + - object + properties: + perBoard: + type: + - 'null' + - object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + pinned: + type: + - 'null' + - boolean + shortLink: + type: + - 'null' + - string + dateLastActivity: + type: + - 'null' + - string + format: date-time + datePluginDisable: + type: + - 'null' + - string + format: date-time + creationMethod: + type: + - 'null' + - string + ixUpdate: + type: + - 'null' + - string + enterpriseOwned: + type: + - 'null' + - boolean + idBoardSource: + type: + - 'null' + - string + id: + type: string + starred: + type: + - 'null' + - boolean + url: + type: + - 'null' + - string + powerUps: + type: + - 'null' + - array + items: + type: + - 'null' + - string + premiumFeatures: + type: + - 'null' + - array + items: + type: + - 'null' + - string + idTags: + type: + - 'null' + - array + items: + type: + - 'null' + - string + prefs: + type: + - 'null' + - object + properties: + permissionLevel: + type: + - 'null' + - string + hideVotes: + type: + - 'null' + - boolean + voting: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + invitations: + type: + - 'null' + - string + selfJoin: + type: + - 'null' + - boolean + cardCovers: + type: + - 'null' + - boolean + isTemplate: + type: + - 'null' + - boolean + cardAging: + type: + - 'null' + - string + calendarFeedEnabled: + type: + - 'null' + - boolean + background: + type: + - 'null' + - string + backgroundImage: + type: + - 'null' + - string + backgroundImageScaled: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + width: + type: + - 'null' + - integer + height: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + backgroundTile: + type: + - 'null' + - boolean + backgroundBrightness: + type: + - 'null' + - string + backgroundBottomColor: + type: + - 'null' + - string + backgroundTopColor: + type: + - 'null' + - string + canBePublic: + type: + - 'null' + - boolean + canBeEnterprise: + type: + - 'null' + - boolean + canBeOrg: + type: + - 'null' + - boolean + canBePrivate: + type: + - 'null' + - boolean + canInvite: + type: + - 'null' + - boolean + subscribed: + type: + - 'null' + - boolean + labelNames: + type: + - 'null' + - object + properties: + green: + type: + - 'null' + - string + yellow: + type: + - 'null' + - string + orange: + type: + - 'null' + - string + red: + type: + - 'null' + - string + purple: + type: + - 'null' + - string + blue: + type: + - 'null' + - string + sky: + type: + - 'null' + - string + lime: + type: + - 'null' + - string + pink: + type: + - 'null' + - string + black: + type: + - 'null' + - string + dateLastView: + type: + - 'null' + - string + format: date-time + shortUrl: + type: + - 'null' + - string + templateGallery: + type: + - 'null' + - string + memberships: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + id: + type: + - 'null' + - string + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + - type: ParentStreamConfig + parent_key: idBoards + partition_field: id + stream: + type: DeclarativeStream + name: organizations + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.trello.com/1/ + http_method: GET + request_headers: {} + authenticator: + type: ApiKeyAuthenticator + api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ + config[''token''] }}"' + inject_into: + type: RequestOption + field_name: Authorization + inject_into: header + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + request_body_json: {} + path: members/me/organizations + request_parameters: + since: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $schema: https://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + name: + type: + - 'null' + - string + credits: + type: array + displayName: + type: + - 'null' + - string + desc: + type: + - 'null' + - string + descData: + type: object + properties: + emoji: + type: object + domainName: + type: + - 'null' + - string + idBoards: + type: array + items: + type: + - 'null' + - string + idMemberCreator: + type: + - 'null' + - string + invited: + type: + - 'null' + - boolean + invitations: + type: array + limits: + type: object + properties: + orgs: + type: object + properties: + totalMembersPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + freeBoardsPerOrg: + type: object + properties: + status: + type: + - 'null' + - string + disableAt: + type: + - 'null' + - integer + warnAt: + type: + - 'null' + - integer + memberships: + type: array + items: + type: object + properties: + idMember: + type: + - 'null' + - string + memberType: + type: + - 'null' + - string + unconfirmed: + type: + - 'null' + - boolean + deactivated: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + membersCount: + type: + - 'null' + - integer + prefs: + type: object + properties: + permissionLevel: + type: + - 'null' + - string + orgInviteRestrict: + type: array + boardInviteRestrict: + type: + - 'null' + - string + externalMembersDisabled: + type: + - 'null' + - boolean + googleAppsVersion: + type: + - 'null' + - integer + boardVisibilityRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + boardDeleteRestrict: + type: object + properties: + private: + type: + - 'null' + - string + org: + type: + - 'null' + - string + enterprise: + type: + - 'null' + - string + public: + type: + - 'null' + - string + powerUps: + type: array + products: + type: array + billableMemberCount: + type: + - 'null' + - integer + activeBillableMemberCount: + type: + - 'null' + - integer + billableCollaboratorCount: + type: + - 'null' + - integer + url: + type: + - 'null' + - string + premiumFeatures: + type: array + items: + type: + - 'null' + - string + promotions: + type: array + enterpriseJoinRequest: + type: object + ixUpdate: + type: + - 'null' + - string + newLicenseInviteRestrict: + type: + - 'null' + - string + newLicenseInviteRestrictUrl: + type: + - 'null' + - string + schema_loader: + type: InlineSchemaLoader + schema: + type: + - 'null' + - object + properties: + id: + type: + - string + boardId: + type: + - string + username: + type: + - 'null' + - string + fullName: + type: + - 'null' + - string +spec: + type: Spec + documentation_url: https://docs.airbyte.com/integrations/sources/trello + connection_specification: + $schema: http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + required: + - key + - token + - start_date + properties: + key: + type: string + title: API key + description: Trello API key. See the
docs + for instructions on how to generate it. + airbyte_secret: true + order: 0 + token: + type: string + title: API token + description: Trello API token. See the docs + for instructions on how to generate it. + airbyte_secret: true + order: 1 + start_date: + type: string + title: Start Date + pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$" + description: UTC date and time in the format 2017-01-25T00:00:00Z. Any data + before this date will not be replicated. + examples: + - "2021-03-01T00:00:00Z" + format: date-time + order: 2 + board_ids: + type: array + items: + type: string + pattern: "^[0-9a-fA-F]{24}$" + title: Trello Board IDs + description: IDs of the boards to replicate data from. If left empty, data + from all boards to which you have access will be replicated. Please note + that this is not the 8-character ID in the board's shortLink (URL of the + board). Rather, what is required here is the 24-character ID usually returned + by the API + order: 3 + advanced_auth: + auth_flow_type: oauth2.0 + oauth_config_specification: + complete_oauth_output_specification: + type: object + additionalProperties: false + properties: + token: + type: string + path_in_connector_config: + - token + key: + type: string + path_in_connector_config: + - key + complete_oauth_server_input_specification: + type: object + additionalProperties: false + properties: + client_id: + type: string + client_secret: + type: string diff --git a/airbyte-integrations/connectors/source-trello/metadata.yaml b/airbyte-integrations/connectors/source-trello/metadata.yaml index 76c88a329ba3..f4da7b0d338d 100644 --- a/airbyte-integrations/connectors/source-trello/metadata.yaml +++ b/airbyte-integrations/connectors/source-trello/metadata.yaml @@ -6,10 +6,10 @@ data: hosts: - api.trello.com connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-trello registryOverrides: oss: @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8da67652-004c-11ec-9a03-0242ac130003 - dockerImageTag: 1.1.0 + dockerImageTag: 1.2.0 dockerRepository: airbyte/source-trello documentationUrl: https://docs.airbyte.com/integrations/sources/trello githubIssueLabel: source-trello @@ -35,7 +35,7 @@ data: releaseStage: beta supportLevel: community tags: - - language:python + - language:manifest-only - cdk:low-code connectorTestSuitesOptions: - suite: liveTests diff --git a/airbyte-integrations/connectors/source-trello/poetry.lock b/airbyte-integrations/connectors/source-trello/poetry.lock deleted file mode 100644 index 7f521d1978e0..000000000000 --- a/airbyte-integrations/connectors/source-trello/poetry.lock +++ /dev/null @@ -1,1409 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "3.6.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-3.6.0-py3-none-any.whl", hash = "sha256:b265567e381a8b236f1a7711a9c19afd76748b477acc52a5daffdd4ac0a95a78"}, - {file = "airbyte_cdk-3.6.0.tar.gz", hash = "sha256:1f7974eed91a7531ab8d64f1ac48d076b8369224cf66075541aab93d1f2059ee"}, -] - -[package.dependencies] -airbyte-protocol-models-pdv2 = ">=0.12.2,<0.13.0" -backoff = "*" -cachetools = "*" -cryptography = ">=42.0.5,<43.0.0" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.1.6,<3.0.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -langchain_core = "0.1.42" -pendulum = "<3.0.0" -pydantic = ">=2.7,<3.0" -pyjwt = ">=2.8.0,<3.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -pytz = "2024.1" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models-pdv2" -version = "0.12.2" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models_pdv2-0.12.2-py3-none-any.whl", hash = "sha256:8b3f9d0388928547cdf2e9134c0d589e4bcaa6f63bf71a21299f6824bfb7ad0e"}, - {file = "airbyte_protocol_models_pdv2-0.12.2.tar.gz", hash = "sha256:130c9ab289f3f53749ce63ff1abbfb67a44b7e5bd2794865315a2976138b672b"}, -] - -[package.dependencies] -pydantic = ">=2.7.2,<3.0.0" - -[[package]] -name = "annotated-types" -version = "0.7.0" -description = "Reusable constraint types to use with typing.Annotated" -optional = false -python-versions = ">=3.8" -files = [ - {file = "annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53"}, - {file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"}, -] - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "23.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, -] - -[package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.4" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.4-py3-none-any.whl", hash = "sha256:efdc71eff95eaff5e0f8cfebe7d01adf2c8637c8c92edaf63ef348c241a82418"}, - {file = "bracex-2.4.tar.gz", hash = "sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb"}, -] - -[[package]] -name = "cachetools" -version = "5.3.3" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, - {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, -] - -[[package]] -name = "cattrs" -version = "23.2.3" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-23.2.3-py3-none-any.whl", hash = "sha256:0341994d94971052e9ee70662542699a3162ea1e0c62f7ce1b4a57f563685108"}, - {file = "cattrs-23.2.3.tar.gz", hash = "sha256:a934090d95abaa9e911dac357e3a8699e0b4b14f8529bcc7d2b1ad9d51672b9f"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.7.4" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90"}, - {file = "certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b"}, -] - -[[package]] -name = "cffi" -version = "1.16.0" -description = "Foreign Function Interface for Python calling C code." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, - {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, - {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, - {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, - {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, - {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, - {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, - {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, - {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, - {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, - {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, - {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, - {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, - {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, - {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, -] - -[package.dependencies] -pycparser = "*" - -[[package]] -name = "charset-normalizer" -version = "3.3.2" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "cryptography" -version = "42.0.8" -description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -optional = false -python-versions = ">=3.7" -files = [ - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e"}, - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7"}, - {file = "cryptography-42.0.8-cp37-abi3-win32.whl", hash = "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2"}, - {file = "cryptography-42.0.8-cp37-abi3-win_amd64.whl", hash = "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba"}, - {file = "cryptography-42.0.8-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14"}, - {file = "cryptography-42.0.8-cp39-abi3-win32.whl", hash = "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c"}, - {file = "cryptography-42.0.8-cp39-abi3-win_amd64.whl", hash = "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad"}, - {file = "cryptography-42.0.8.tar.gz", hash = "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2"}, -] - -[package.dependencies] -cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} - -[package.extras] -docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] -docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] -nox = ["nox"] -pep8test = ["check-sdist", "click", "mypy", "ruff"] -sdist = ["build"] -ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] -test-randomorder = ["pytest-randomly"] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.2.0" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.2.0-py3-none-any.whl", hash = "sha256:b330a375ded0a0d2ed404440f6c6a715deae5313af40bbb01c8a41d891900576"}, - {file = "dpath-2.2.0.tar.gz", hash = "sha256:34f7e630dc55ea3f219e555726f5da4b4b25f2200319c8e6902c394258dd6a3e"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "idna" -version = "3.7" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.5" -files = [ - {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, - {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, -] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonpatch" -version = "1.33" -description = "Apply JSON-Patches (RFC 6902)" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" -files = [ - {file = "jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade"}, - {file = "jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c"}, -] - -[package.dependencies] -jsonpointer = ">=1.9" - -[[package]] -name = "jsonpointer" -version = "3.0.0" -description = "Identify specific nodes in a JSON document (RFC 6901)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, - {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, -] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "langchain-core" -version = "0.1.42" -description = "Building applications with LLMs through composability" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_core-0.1.42-py3-none-any.whl", hash = "sha256:c5653ffa08a44f740295c157a24c0def4a753333f6a2c41f76bf431cd00be8b5"}, - {file = "langchain_core-0.1.42.tar.gz", hash = "sha256:40751bf60ea5d8e2b2efe65290db434717ee3834870c002e40e2811f09d814e6"}, -] - -[package.dependencies] -jsonpatch = ">=1.33,<2.0" -langsmith = ">=0.1.0,<0.2.0" -packaging = ">=23.2,<24.0" -pydantic = ">=1,<3" -PyYAML = ">=5.3" -tenacity = ">=8.1.0,<9.0.0" - -[package.extras] -extended-testing = ["jinja2 (>=3,<4)"] - -[[package]] -name = "langsmith" -version = "0.1.85" -description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, - {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, -] - -[package.dependencies] -orjson = ">=3.9.14,<4.0.0" -pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} -requests = ">=2,<3" - -[[package]] -name = "markupsafe" -version = "2.1.5" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.7" -files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, -] - -[[package]] -name = "orjson" -version = "3.10.6" -description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -optional = false -python-versions = ">=3.8" -files = [ - {file = "orjson-3.10.6-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:fb0ee33124db6eaa517d00890fc1a55c3bfe1cf78ba4a8899d71a06f2d6ff5c7"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c1c4b53b24a4c06547ce43e5fee6ec4e0d8fe2d597f4647fc033fd205707365"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eadc8fd310edb4bdbd333374f2c8fec6794bbbae99b592f448d8214a5e4050c0"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:61272a5aec2b2661f4fa2b37c907ce9701e821b2c1285d5c3ab0207ebd358d38"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57985ee7e91d6214c837936dc1608f40f330a6b88bb13f5a57ce5257807da143"}, - {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:633a3b31d9d7c9f02d49c4ab4d0a86065c4a6f6adc297d63d272e043472acab5"}, - {file = "orjson-3.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1c680b269d33ec444afe2bdc647c9eb73166fa47a16d9a75ee56a374f4a45f43"}, - {file = "orjson-3.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f759503a97a6ace19e55461395ab0d618b5a117e8d0fbb20e70cfd68a47327f2"}, - {file = "orjson-3.10.6-cp310-none-win32.whl", hash = "sha256:95a0cce17f969fb5391762e5719575217bd10ac5a189d1979442ee54456393f3"}, - {file = "orjson-3.10.6-cp310-none-win_amd64.whl", hash = "sha256:df25d9271270ba2133cc88ee83c318372bdc0f2cd6f32e7a450809a111efc45c"}, - {file = "orjson-3.10.6-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b1ec490e10d2a77c345def52599311849fc063ae0e67cf4f84528073152bb2ba"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55d43d3feb8f19d07e9f01e5b9be4f28801cf7c60d0fa0d279951b18fae1932b"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac3045267e98fe749408eee1593a142e02357c5c99be0802185ef2170086a863"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c27bc6a28ae95923350ab382c57113abd38f3928af3c80be6f2ba7eb8d8db0b0"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d27456491ca79532d11e507cadca37fb8c9324a3976294f68fb1eff2dc6ced5a"}, - {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05ac3d3916023745aa3b3b388e91b9166be1ca02b7c7e41045da6d12985685f0"}, - {file = "orjson-3.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1335d4ef59ab85cab66fe73fd7a4e881c298ee7f63ede918b7faa1b27cbe5212"}, - {file = "orjson-3.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4bbc6d0af24c1575edc79994c20e1b29e6fb3c6a570371306db0993ecf144dc5"}, - {file = "orjson-3.10.6-cp311-none-win32.whl", hash = "sha256:450e39ab1f7694465060a0550b3f6d328d20297bf2e06aa947b97c21e5241fbd"}, - {file = "orjson-3.10.6-cp311-none-win_amd64.whl", hash = "sha256:227df19441372610b20e05bdb906e1742ec2ad7a66ac8350dcfd29a63014a83b"}, - {file = "orjson-3.10.6-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ea2977b21f8d5d9b758bb3f344a75e55ca78e3ff85595d248eee813ae23ecdfb"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b6f3d167d13a16ed263b52dbfedff52c962bfd3d270b46b7518365bcc2121eed"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f710f346e4c44a4e8bdf23daa974faede58f83334289df80bc9cd12fe82573c7"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7275664f84e027dcb1ad5200b8b18373e9c669b2a9ec33d410c40f5ccf4b257e"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0943e4c701196b23c240b3d10ed8ecd674f03089198cf503105b474a4f77f21f"}, - {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:446dee5a491b5bc7d8f825d80d9637e7af43f86a331207b9c9610e2f93fee22a"}, - {file = "orjson-3.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:64c81456d2a050d380786413786b057983892db105516639cb5d3ee3c7fd5148"}, - {file = "orjson-3.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:960db0e31c4e52fa0fc3ecbaea5b2d3b58f379e32a95ae6b0ebeaa25b93dfd34"}, - {file = "orjson-3.10.6-cp312-none-win32.whl", hash = "sha256:a6ea7afb5b30b2317e0bee03c8d34c8181bc5a36f2afd4d0952f378972c4efd5"}, - {file = "orjson-3.10.6-cp312-none-win_amd64.whl", hash = "sha256:874ce88264b7e655dde4aeaacdc8fd772a7962faadfb41abe63e2a4861abc3dc"}, - {file = "orjson-3.10.6-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:66680eae4c4e7fc193d91cfc1353ad6d01b4801ae9b5314f17e11ba55e934183"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:caff75b425db5ef8e8f23af93c80f072f97b4fb3afd4af44482905c9f588da28"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3722fddb821b6036fd2a3c814f6bd9b57a89dc6337b9924ecd614ebce3271394"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c2c116072a8533f2fec435fde4d134610f806bdac20188c7bd2081f3e9e0133f"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6eeb13218c8cf34c61912e9df2de2853f1d009de0e46ea09ccdf3d757896af0a"}, - {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:965a916373382674e323c957d560b953d81d7a8603fbeee26f7b8248638bd48b"}, - {file = "orjson-3.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:03c95484d53ed8e479cade8628c9cea00fd9d67f5554764a1110e0d5aa2de96e"}, - {file = "orjson-3.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e060748a04cccf1e0a6f2358dffea9c080b849a4a68c28b1b907f272b5127e9b"}, - {file = "orjson-3.10.6-cp38-none-win32.whl", hash = "sha256:738dbe3ef909c4b019d69afc19caf6b5ed0e2f1c786b5d6215fbb7539246e4c6"}, - {file = "orjson-3.10.6-cp38-none-win_amd64.whl", hash = "sha256:d40f839dddf6a7d77114fe6b8a70218556408c71d4d6e29413bb5f150a692ff7"}, - {file = "orjson-3.10.6-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:697a35a083c4f834807a6232b3e62c8b280f7a44ad0b759fd4dce748951e70db"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd502f96bf5ea9a61cbc0b2b5900d0dd68aa0da197179042bdd2be67e51a1e4b"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f215789fb1667cdc874c1b8af6a84dc939fd802bf293a8334fce185c79cd359b"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2debd8ddce948a8c0938c8c93ade191d2f4ba4649a54302a7da905a81f00b56"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5410111d7b6681d4b0d65e0f58a13be588d01b473822483f77f513c7f93bd3b2"}, - {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb1f28a137337fdc18384079fa5726810681055b32b92253fa15ae5656e1dddb"}, - {file = "orjson-3.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bf2fbbce5fe7cd1aa177ea3eab2b8e6a6bc6e8592e4279ed3db2d62e57c0e1b2"}, - {file = "orjson-3.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:79b9b9e33bd4c517445a62b90ca0cc279b0f1f3970655c3df9e608bc3f91741a"}, - {file = "orjson-3.10.6-cp39-none-win32.whl", hash = "sha256:30b0a09a2014e621b1adf66a4f705f0809358350a757508ee80209b2d8dae219"}, - {file = "orjson-3.10.6-cp39-none-win_amd64.whl", hash = "sha256:49e3bc615652617d463069f91b867a4458114c5b104e13b7ae6872e5f79d0844"}, - {file = "orjson-3.10.6.tar.gz", hash = "sha256:e54b63d0a7c6c54a5f5f726bc93a2078111ef060fec4ecbf34c5db800ca3b3a7"}, -] - -[[package]] -name = "packaging" -version = "23.2" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.2.2" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, - {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, -] - -[package.extras] -docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] -type = ["mypy (>=1.8)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pycparser" -version = "2.22" -description = "C parser in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, - {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, -] - -[[package]] -name = "pydantic" -version = "2.8.2" -description = "Data validation using Python type hints" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8"}, - {file = "pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a"}, -] - -[package.dependencies] -annotated-types = ">=0.4.0" -pydantic-core = "2.20.1" -typing-extensions = {version = ">=4.6.1", markers = "python_version < \"3.13\""} - -[package.extras] -email = ["email-validator (>=2.0.0)"] - -[[package]] -name = "pydantic-core" -version = "2.20.1" -description = "Core functionality for Pydantic validation and serialization" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3"}, - {file = "pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a"}, - {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a"}, - {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840"}, - {file = "pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250"}, - {file = "pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c"}, - {file = "pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312"}, - {file = "pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b"}, - {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27"}, - {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b"}, - {file = "pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a"}, - {file = "pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2"}, - {file = "pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231"}, - {file = "pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24"}, - {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1"}, - {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd"}, - {file = "pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688"}, - {file = "pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d"}, - {file = "pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686"}, - {file = "pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83"}, - {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203"}, - {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0"}, - {file = "pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e"}, - {file = "pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20"}, - {file = "pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:4745f4ac52cc6686390c40eaa01d48b18997cb130833154801a442323cc78f91"}, - {file = "pydantic_core-2.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a8ad4c766d3f33ba8fd692f9aa297c9058970530a32c728a2c4bfd2616d3358b"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41e81317dd6a0127cabce83c0c9c3fbecceae981c8391e6f1dec88a77c8a569a"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04024d270cf63f586ad41fff13fde4311c4fc13ea74676962c876d9577bcc78f"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eaad4ff2de1c3823fddf82f41121bdf453d922e9a238642b1dedb33c4e4f98ad"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:26ab812fa0c845df815e506be30337e2df27e88399b985d0bb4e3ecfe72df31c"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c5ebac750d9d5f2706654c638c041635c385596caf68f81342011ddfa1e5598"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2aafc5a503855ea5885559eae883978c9b6d8c8993d67766ee73d82e841300dd"}, - {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4868f6bd7c9d98904b748a2653031fc9c2f85b6237009d475b1008bfaeb0a5aa"}, - {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa2f457b4af386254372dfa78a2eda2563680d982422641a85f271c859df1987"}, - {file = "pydantic_core-2.20.1-cp38-none-win32.whl", hash = "sha256:225b67a1f6d602de0ce7f6c1c3ae89a4aa25d3de9be857999e9124f15dab486a"}, - {file = "pydantic_core-2.20.1-cp38-none-win_amd64.whl", hash = "sha256:6b507132dcfc0dea440cce23ee2182c0ce7aba7054576efc65634f080dbe9434"}, - {file = "pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c"}, - {file = "pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1"}, - {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09"}, - {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab"}, - {file = "pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2"}, - {file = "pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7"}, - {file = "pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4"}, -] - -[package.dependencies] -typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" - -[[package]] -name = "pyjwt" -version = "2.8.0" -description = "JSON Web Token implementation in Python" -optional = false -python-versions = ">=3.7" -files = [ - {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, - {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, -] - -[package.extras] -crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] -tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytz" -version = "2024.1" -description = "World timezone definitions, modern and historical" -optional = false -python-versions = "*" -files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, -] - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.1" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "setuptools" -version = "70.3.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-70.3.0-py3-none-any.whl", hash = "sha256:fe384da74336c398e0d956d1cae0669bc02eed936cdb1d49b57de1990dc11ffc"}, - {file = "setuptools-70.3.0.tar.gz", hash = "sha256:f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5"}, -] - -[package.extras] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.10.0)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "tenacity" -version = "8.5.0" -description = "Retry code until it succeeds" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, - {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, -] - -[package.extras] -doc = ["reno", "sphinx"] -test = ["pytest", "tornado (>=4.5)", "typeguard"] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.2" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472"}, - {file = "urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "1b32e0f1823648c911a1f80fc4d59c504fce998a0024561dfe45e45f00648a40" diff --git a/airbyte-integrations/connectors/source-trello/pyproject.toml b/airbyte-integrations/connectors/source-trello/pyproject.toml deleted file mode 100644 index 51723acc28aa..000000000000 --- a/airbyte-integrations/connectors/source-trello/pyproject.toml +++ /dev/null @@ -1,28 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "1.1.0" -name = "source-trello" -description = "Source implementation for Trello." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/trello" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_trello" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "^3" - -[tool.poetry.scripts] -source-trello = "source_trello.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "^1.9.3" -pytest-mock = "^3.6" -pytest = "^6.1" diff --git a/airbyte-integrations/connectors/source-trello/source_trello/__init__.py b/airbyte-integrations/connectors/source-trello/source_trello/__init__.py deleted file mode 100644 index b0f5075e713e..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceTrello - -__all__ = ["SourceTrello"] diff --git a/airbyte-integrations/connectors/source-trello/source_trello/manifest.yaml b/airbyte-integrations/connectors/source-trello/source_trello/manifest.yaml deleted file mode 100644 index a69afd674641..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/manifest.yaml +++ /dev/null @@ -1,270 +0,0 @@ -version: 2.0.0 -type: DeclarativeSource - -check: - type: CheckStream - stream_names: - - boards - -definitions: - selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: [] - boards_selector: - $ref: "#/definitions/selector" - record_filter: - condition: "{{ record.id in config.board_ids or not config.board_ids }}" - requester: - type: HttpRequester - url_base: https://api.trello.com/1/ - http_method: GET - request_headers: {} - authenticator: - type: ApiKeyAuthenticator - api_token: 'OAuth oauth_consumer_key="{{ config[''key''] }}", oauth_token="{{ config[''token''] }}"' - inject_into: - type: RequestOption - field_name: Authorization - inject_into: header - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - backoff_strategies: - - type: ConstantBackoffStrategy - backoff_time_in_seconds: 10 - request_body_json: {} - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: before - page_size_option: - type: RequestOption - field_name: limit - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 500 - cursor_value: "{{ last_record['id'] }}" - stop_condition: "{{ last_page_size == 0 }}" - board_id_partition_router: - - type: CustomPartitionRouter - class_name: source_trello.components.OrderIdsPartitionRouter - parent_stream_configs: - - type: ParentStreamConfig - parent_key: id - partition_field: id - stream: - $ref: "#/definitions/boards_stream" - - type: ParentStreamConfig - parent_key: idBoards - partition_field: id - stream: - $ref: "#/definitions/organizations_stream" - boards_stream: - type: DeclarativeStream - name: boards - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: members/me/boards - request_parameters: - since: "{{ config['start_date'] }}" - record_selector: - $ref: "#/definitions/boards_selector" - organizations_stream: - type: DeclarativeStream - name: organizations - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: members/me/organizations - request_parameters: - since: "{{ config['start_date'] }}" - record_selector: - $ref: "#/definitions/selector" - actions_stream: - type: DeclarativeStream - name: actions - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: boards/{{ stream_partition.id }}/actions - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - partition_router: - $ref: "#/definitions/board_id_partition_router" - incremental_sync: - type: DatetimeBasedCursor - cursor_field: date - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%fZ" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - start_time_option: - type: RequestOption - field_name: since - inject_into: request_parameter - end_datetime: - type: MinMaxDatetime - datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - cards_stream: - type: DeclarativeStream - name: cards - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: boards/{{ stream_partition.id }}/cards/all - request_parameters: - list: "true" - sort: "-id" - since: "{{ config['start_date'] }}" - members: "true" - pluginData: "true" - actions_display: "true" - customFieldItems: "true" - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - partition_router: - $ref: "#/definitions/board_id_partition_router" - checklists_stream: - type: DeclarativeStream - name: checklists - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: boards/{{ stream_partition.id }}/checklists - request_parameters: - since: "{{ config['start_date'] }}" - fields: all - checkItem_fields: all - record_selector: - $ref: "#/definitions/selector" - partition_router: - $ref: "#/definitions/board_id_partition_router" - lists_stream: - type: DeclarativeStream - name: lists - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: boards/{{ stream_partition.id }}/lists - request_parameters: - since: "{{ config['start_date'] }}" - record_selector: - $ref: "#/definitions/selector" - partition_router: - $ref: "#/definitions/board_id_partition_router" - users_stream: - type: DeclarativeStream - name: users - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: boards/{{ stream_partition.id }}/members - request_parameters: - since: "{{ config['start_date'] }}" - record_selector: - $ref: "#/definitions/selector" - partition_router: - $ref: "#/definitions/board_id_partition_router" - -streams: - - "#/definitions/boards_stream" - - "#/definitions/organizations_stream" - - "#/definitions/actions_stream" - - "#/definitions/cards_stream" - - "#/definitions/checklists_stream" - - "#/definitions/lists_stream" - - "#/definitions/users_stream" - -spec: - type: Spec - documentation_url: https://docs.airbyte.com/integrations/sources/trello - connection_specification: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - required: - - key - - token - - start_date - properties: - key: - type: string - title: API key - description: Trello API key. See the docs for instructions on how to generate it. - airbyte_secret: true - order: 0 - token: - type: string - title: API token - description: Trello API token. See the docs for instructions on how to generate it. - airbyte_secret: true - order: 1 - start_date: - type: string - title: Start Date - pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$" - description: UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. - examples: - - "2021-03-01T00:00:00Z" - format: date-time - order: 2 - board_ids: - type: array - items: - type: string - pattern: "^[0-9a-fA-F]{24}$" - title: Trello Board IDs - description: IDs of the boards to replicate data from. If left empty, data from all boards to which you have access will be replicated. Please note that this is not the 8-character ID in the board's shortLink (URL of the board). Rather, what is required here is the 24-character ID usually returned by the API - order: 3 - advanced_auth: - auth_flow_type: oauth2.0 - oauth_config_specification: - complete_oauth_output_specification: - type: object - additionalProperties: false - properties: - token: - type: string - path_in_connector_config: - - token - key: - type: string - path_in_connector_config: - - key - complete_oauth_server_input_specification: - type: object - additionalProperties: false - properties: - client_id: - type: string - client_secret: - type: string diff --git a/airbyte-integrations/connectors/source-trello/source_trello/run.py b/airbyte-integrations/connectors/source-trello/source_trello/run.py deleted file mode 100644 index 628d22faf0db..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/run.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch -from source_trello import SourceTrello - - -def run(): - source = SourceTrello() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-trello/source_trello/schemas/actions.json b/airbyte-integrations/connectors/source-trello/source_trello/schemas/actions.json deleted file mode 100644 index 0c70c0102654..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/schemas/actions.json +++ /dev/null @@ -1,314 +0,0 @@ -{ - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "idMemberCreator": { - "type": ["null", "string"] - }, - "data": { - "type": ["null", "object"], - "properties": { - "card": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "idShort": { - "type": ["null", "integer"] - }, - "shortLink": { - "type": ["null", "string"] - }, - "pos": { - "type": ["null", "number"] - }, - "desc": { - "type": ["null", "string"] - }, - "closed": { - "type": ["null", "boolean"] - }, - "idList": { - "type": ["null", "string"] - }, - "idMembers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - } - } - }, - "list": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "pos": { - "type": ["null", "number"] - }, - "closed": { - "type": ["null", "boolean"] - } - } - }, - "board": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "shortLink": { - "type": ["null", "string"] - }, - "prefs": { - "type": ["null", "object"], - "properties": { - "background": { - "type": ["null", "string"] - } - } - } - } - }, - "old": { - "type": ["null", "object"], - "properties": { - "pos": { - "type": ["null", "number"] - }, - "desc": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "closed": { - "type": ["null", "boolean"] - }, - "idList": { - "type": ["null", "string"] - }, - "prefs": { - "type": ["null", "object"], - "properties": { - "background": { - "type": ["null", "string"] - } - } - }, - "idMembers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - } - } - }, - "listBefore": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - } - } - }, - "listAfter": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - } - } - }, - "memberType": { - "type": ["null", "string"] - }, - "idMemberAdded": { - "type": ["null", "string"] - }, - "cardSource": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "idShort": { - "type": ["null", "integer"] - }, - "shortLink": { - "type": ["null", "string"] - } - } - }, - "idMemberInviter": { - "type": ["null", "string"] - }, - "method": { - "type": ["null", "string"] - }, - "idMember": { - "type": ["null", "string"] - }, - "member": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - } - } - }, - "deactivated": { - "type": ["null", "boolean"] - }, - "text": { - "type": ["null", "string"] - }, - "organization": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - } - } - } - } - }, - "type": { - "type": ["null", "string"] - }, - "date": { - "type": ["null", "string"] - }, - "memberCreator": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "username": { - "type": ["null", "string"] - }, - "activityBlocked": { - "type": ["null", "boolean"] - }, - "avatarHash": { - "type": ["null", "string"] - }, - "avatarUrl": { - "type": ["null", "string"] - }, - "fullName": { - "type": ["null", "string"] - }, - "idMemberReferrer": { - "type": ["null", "string"] - }, - "initials": { - "type": ["null", "string"] - }, - "nonPublicAvailable": { - "type": ["null", "boolean"] - } - } - }, - "member": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "username": { - "type": ["null", "string"] - }, - "activityBlocked": { - "type": ["null", "boolean"] - }, - "avatarHash": { - "type": ["null", "string"] - }, - "avatarUrl": { - "type": ["null", "string"] - }, - "fullName": { - "type": ["null", "string"] - }, - "idMemberReferrer": { - "type": ["null", "string"] - }, - "initials": { - "type": ["null", "string"] - }, - "nonPublicAvailable": { - "type": ["null", "boolean"] - } - } - }, - "limits": { - "type": ["null", "object"], - "properties": { - "reactions": { - "type": ["null", "object"], - "properties": { - "perAction": { - "type": ["null", "object"], - "properties": { - "status": { - "type": ["null", "string"] - }, - "disableAt": { - "type": ["null", "integer"] - }, - "warnAt": { - "type": ["null", "integer"] - } - } - }, - "uniquePerAction": { - "type": ["null", "object"], - "properties": { - "status": { - "type": ["null", "string"] - }, - "disableAt": { - "type": ["null", "integer"] - }, - "warnAt": { - "type": ["null", "integer"] - } - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-trello/source_trello/schemas/boards.json b/airbyte-integrations/connectors/source-trello/source_trello/schemas/boards.json deleted file mode 100644 index 928267500c7b..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/schemas/boards.json +++ /dev/null @@ -1,256 +0,0 @@ -{ - "type": ["null", "object"], - "properties": { - "name": { - "type": ["null", "string"] - }, - "desc": { - "type": ["null", "string"] - }, - "descData": { - "type": ["null", "string"] - }, - "closed": { - "type": ["null", "boolean"] - }, - "idOrganization": { - "type": ["null", "string"] - }, - "idEnterprise": { - "type": ["null", "string"] - }, - "limits": { - "type": ["null", "object"], - "properties": { - "attachments": { - "type": ["null", "object"], - "properties": { - "perBoard": { - "type": ["null", "object"], - "properties": { - "status": { - "type": ["null", "string"] - }, - "disableAt": { - "type": ["null", "integer"] - }, - "warnAt": { - "type": ["null", "integer"] - } - } - } - } - } - } - }, - "pinned": { - "type": ["null", "boolean"] - }, - "shortLink": { - "type": ["null", "string"] - }, - "dateLastActivity": { - "type": ["null", "string"], - "format": "date-time" - }, - "datePluginDisable": { - "type": ["null", "string"], - "format": "date-time" - }, - "creationMethod": { - "type": ["null", "string"] - }, - "ixUpdate": { - "type": ["null", "string"] - }, - "enterpriseOwned": { - "type": ["null", "boolean"] - }, - "idBoardSource": { - "type": ["null", "string"] - }, - "id": { - "type": "string" - }, - "starred": { - "type": ["null", "boolean"] - }, - "url": { - "type": ["null", "string"] - }, - "powerUps": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "premiumFeatures": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "idTags": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "prefs": { - "type": ["null", "object"], - "properties": { - "permissionLevel": { - "type": ["null", "string"] - }, - "hideVotes": { - "type": ["null", "boolean"] - }, - "voting": { - "type": ["null", "string"] - }, - "comments": { - "type": ["null", "string"] - }, - "invitations": { - "type": ["null", "string"] - }, - "selfJoin": { - "type": ["null", "boolean"] - }, - "cardCovers": { - "type": ["null", "boolean"] - }, - "isTemplate": { - "type": ["null", "boolean"] - }, - "cardAging": { - "type": ["null", "string"] - }, - "calendarFeedEnabled": { - "type": ["null", "boolean"] - }, - "background": { - "type": ["null", "string"] - }, - "backgroundImage": { - "type": ["null", "string"] - }, - "backgroundImageScaled": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "width": { - "type": ["null", "integer"] - }, - "height": { - "type": ["null", "integer"] - }, - "url": { - "type": ["null", "string"] - } - } - } - }, - "backgroundTile": { - "type": ["null", "boolean"] - }, - "backgroundBrightness": { - "type": ["null", "string"] - }, - "backgroundBottomColor": { - "type": ["null", "string"] - }, - "backgroundTopColor": { - "type": ["null", "string"] - }, - "canBePublic": { - "type": ["null", "boolean"] - }, - "canBeEnterprise": { - "type": ["null", "boolean"] - }, - "canBeOrg": { - "type": ["null", "boolean"] - }, - "canBePrivate": { - "type": ["null", "boolean"] - }, - "canInvite": { - "type": ["null", "boolean"] - } - } - }, - "subscribed": { - "type": ["null", "boolean"] - }, - "labelNames": { - "type": ["null", "object"], - "properties": { - "green": { - "type": ["null", "string"] - }, - "yellow": { - "type": ["null", "string"] - }, - "orange": { - "type": ["null", "string"] - }, - "red": { - "type": ["null", "string"] - }, - "purple": { - "type": ["null", "string"] - }, - "blue": { - "type": ["null", "string"] - }, - "sky": { - "type": ["null", "string"] - }, - "lime": { - "type": ["null", "string"] - }, - "pink": { - "type": ["null", "string"] - }, - "black": { - "type": ["null", "string"] - } - } - }, - "dateLastView": { - "type": ["null", "string"], - "format": "date-time" - }, - "shortUrl": { - "type": ["null", "string"] - }, - "templateGallery": { - "type": ["null", "string"] - }, - "memberships": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "idMember": { - "type": ["null", "string"] - }, - "memberType": { - "type": ["null", "string"] - }, - "unconfirmed": { - "type": ["null", "boolean"] - }, - "deactivated": { - "type": ["null", "boolean"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-trello/source_trello/schemas/cards.json b/airbyte-integrations/connectors/source-trello/source_trello/schemas/cards.json deleted file mode 100644 index 83d139c78bb4..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/schemas/cards.json +++ /dev/null @@ -1,259 +0,0 @@ -{ - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "start": { - "type": ["null", "string"] - }, - "customFieldItems": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "idValue": { - "type": ["null", "string"] - }, - "idCustomField": { - "type": ["null", "string"] - }, - "idModel": { - "type": ["null", "string"] - }, - "modelType": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "object"], - "properties": { - "checked": { - "type": ["null", "string"] - }, - "date": { - "type": ["null", "string"] - }, - "number": { - "type": ["null", "string"] - }, - "text": { - "type": ["null", "string"] - }, - "option": { - "type": ["null", "string"] - } - } - } - } - } - }, - "idMembersVoted": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "checkItemStates": { - "type": ["null", "array"], - "items": {} - }, - "closed": { - "type": ["null", "boolean"] - }, - "dateLastActivity": { - "type": ["null", "string"], - "format": "date-time" - }, - "desc": { - "type": ["null", "string"] - }, - "descData": { - "type": ["null", "object"], - "properties": { - "emoji": { - "type": ["null", "object"], - "properties": {} - } - } - }, - "dueReminder": { - "type": ["null", "string"] - }, - "idBoard": { - "type": ["null", "string"] - }, - "idList": { - "type": ["null", "string"] - }, - "idShort": { - "type": ["null", "integer"] - }, - "idAttachmentCover": { - "type": ["null", "string"] - }, - "manualCoverAttachment": { - "type": ["null", "boolean"] - }, - "name": { - "type": ["null", "string"] - }, - "pos": { - "type": ["null", "number"] - }, - "shortLink": { - "type": ["null", "string"] - }, - "isTemplate": { - "type": ["null", "boolean"] - }, - "badges": { - "type": ["null", "object"], - "properties": { - "attachmentsByType": { - "type": ["null", "object"], - "properties": { - "trello": { - "type": ["null", "object"], - "properties": { - "board": { - "type": ["null", "integer"] - }, - "card": { - "type": ["null", "integer"] - } - } - } - } - }, - "location": { - "type": ["null", "boolean"] - }, - "votes": { - "type": ["null", "integer"] - }, - "viewingMemberVoted": { - "type": ["null", "boolean"] - }, - "subscribed": { - "type": ["null", "boolean"] - }, - "fogbugz": { - "type": ["null", "string"] - }, - "checkItems": { - "type": ["null", "integer"] - }, - "checkItemsChecked": { - "type": ["null", "integer"] - }, - "checkItemsEarliestDue": { - "type": ["null", "string"], - "format": "date-time" - }, - "comments": { - "type": ["null", "integer"] - }, - "attachments": { - "type": ["null", "integer"] - }, - "description": { - "type": ["null", "boolean"] - }, - "due": { - "type": ["null", "string"], - "format": "date-time" - }, - "dueComplete": { - "type": ["null", "boolean"] - } - } - }, - "dueComplete": { - "type": ["null", "boolean"] - }, - "due": { - "type": ["null", "string"], - "format": "date-time" - }, - "shortUrl": { - "type": ["null", "string"] - }, - "subscribed": { - "type": ["null", "boolean"] - }, - "url": { - "type": ["null", "string"] - }, - "cover": { - "type": ["null", "object"], - "additionalProperties": true, - "properties": { - "idAttachment": { - "type": ["null", "string"] - }, - "color": { - "type": ["null", "string"] - }, - "idUploadedBackground": { - "type": ["null", "string"] - }, - "size": { - "type": ["null", "string"] - }, - "brightness": { - "type": ["null", "string"] - }, - "edgeColor": { - "type": ["null", "string"] - }, - "sharedSourceUrl": { - "type": ["null", "string"] - }, - "idPlugin": { - "type": ["null", "string"] - } - } - }, - "idChecklists": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "idMembers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "idLabels": { - "type": "array", - "items": { - "type": ["null", "string"] - } - }, - "labels": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "idBoard": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "color": { - "type": ["null", "string"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-trello/source_trello/schemas/checklists.json b/airbyte-integrations/connectors/source-trello/source_trello/schemas/checklists.json deleted file mode 100644 index 5bdb8f79dd11..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/schemas/checklists.json +++ /dev/null @@ -1,568 +0,0 @@ -{ - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "idMemberCreator": { - "type": ["null", "string"] - }, - "data": { - "type": ["null", "object"], - "properties": { - "old": { - "type": ["null", "object"], - "properties": { - "closed": { - "type": ["null", "boolean"] - }, - "name": { - "type": ["null", "string"] - }, - "prefs": { - "type": ["null", "object"], - "properties": { - "selfJoin": { - "type": ["null", "boolean"] - }, - "permissionLevel": { - "type": ["null", "string"] - } - } - }, - "dueComplete": { - "type": ["null", "boolean"] - }, - "due": { - "type": ["null", "string"] - } - } - }, - "card": { - "type": ["null", "object"], - "properties": { - "closed": { - "type": ["null", "boolean"] - }, - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "idShort": { - "type": ["null", "integer"] - }, - "shortLink": { - "type": ["null", "string"] - }, - "dueComplete": { - "type": ["null", "boolean"] - }, - "due": { - "type": ["null", "string"] - } - } - }, - "board": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "shortLink": { - "type": ["null", "string"] - }, - "prefs": { - "type": ["null", "object"], - "properties": { - "selfJoin": { - "type": ["null", "boolean"] - }, - "permissionLevel": { - "type": ["null", "string"] - } - } - } - } - }, - "list": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - } - } - }, - "checklist": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - } - } - }, - "organization": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - } - } - }, - "creationMethod": { - "type": ["null", "string"] - } - } - }, - "type": { - "type": ["null", "string"] - }, - "date": { - "type": ["null", "string"] - }, - "memberCreator": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "username": { - "type": ["null", "string"] - }, - "activityBlocked": { - "type": ["null", "boolean"] - }, - "avatarHash": { - "type": ["null", "string"] - }, - "avatarUrl": { - "type": ["null", "string"] - }, - "fullName": { - "type": ["null", "string"] - }, - "idMemberReferrer": { - "type": ["null", "string"] - }, - "initials": { - "type": ["null", "string"] - }, - "nonPublicAvailable": { - "type": ["null", "boolean"] - } - } - }, - "name": { - "type": ["null", "string"] - }, - "desc": { - "type": ["null", "string"] - }, - "descData": { - "type": ["null", "string"] - }, - "closed": { - "type": ["null", "boolean"] - }, - "idOrganization": { - "type": ["null", "string"] - }, - "idEnterprise": { - "type": ["null", "string"] - }, - "limits": { - "type": ["null", "object"], - "properties": { - "checkItems": { - "type": ["null", "object"], - "properties": { - "perChecklist": { - "type": ["null", "object"], - "properties": { - "status": { - "type": ["null", "string"] - }, - "disableAt": { - "type": ["null", "integer"] - }, - "warnAt": { - "type": ["null", "integer"] - } - } - } - } - } - } - }, - "pinned": { - "type": ["null", "string"] - }, - "shortLink": { - "type": ["null", "string"] - }, - "dateLastActivity": { - "type": ["null", "string"] - }, - "datePluginDisable": { - "type": ["null", "string"] - }, - "creationMethod": { - "type": ["null", "string"] - }, - "ixUpdate": { - "type": ["null", "string"] - }, - "enterpriseOwned": { - "type": ["null", "boolean"] - }, - "idBoardSource": { - "type": ["null", "string"] - }, - "starred": { - "type": ["null", "boolean"] - }, - "url": { - "type": ["null", "string"] - }, - "prefs": { - "type": ["null", "object"], - "properties": { - "permissionLevel": { - "type": ["null", "string"] - }, - "hideVotes": { - "type": ["null", "boolean"] - }, - "voting": { - "type": ["null", "string"] - }, - "comments": { - "type": ["null", "string"] - }, - "invitations": { - "type": ["null", "string"] - }, - "selfJoin": { - "type": ["null", "boolean"] - }, - "cardCovers": { - "type": ["null", "boolean"] - }, - "isTemplate": { - "type": ["null", "boolean"] - }, - "cardAging": { - "type": ["null", "string"] - }, - "calendarFeedEnabled": { - "type": ["null", "boolean"] - }, - "background": { - "type": ["null", "string"] - }, - "backgroundImage": { - "type": ["null", "string"] - }, - "backgroundImageScaled": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "width": { - "type": ["null", "integer"] - }, - "height": { - "type": ["null", "integer"] - }, - "url": { - "type": ["null", "string"] - } - } - } - }, - "backgroundTile": { - "type": ["null", "boolean"] - }, - "backgroundBrightness": { - "type": ["null", "string"] - }, - "backgroundColor": { - "type": ["null", "string"] - }, - "backgroundBottomColor": { - "type": ["null", "string"] - }, - "backgroundTopColor": { - "type": ["null", "string"] - }, - "canBePublic": { - "type": ["null", "boolean"] - }, - "canBeEnterprise": { - "type": ["null", "boolean"] - }, - "canBeOrg": { - "type": ["null", "boolean"] - }, - "canBePrivate": { - "type": ["null", "boolean"] - }, - "canInvite": { - "type": ["null", "boolean"] - } - } - }, - "subscribed": { - "type": ["null", "boolean"] - }, - "labelNames": { - "type": ["null", "object"], - "properties": { - "green": { - "type": ["null", "string"] - }, - "yellow": { - "type": ["null", "string"] - }, - "orange": { - "type": ["null", "string"] - }, - "red": { - "type": ["null", "string"] - }, - "purple": { - "type": ["null", "string"] - }, - "blue": { - "type": ["null", "string"] - }, - "sky": { - "type": ["null", "string"] - }, - "lime": { - "type": ["null", "string"] - }, - "pink": { - "type": ["null", "string"] - }, - "black": { - "type": ["null", "string"] - } - } - }, - "dateLastView": { - "type": ["null", "string"] - }, - "shortUrl": { - "type": ["null", "string"] - }, - "templateGallery": { - "type": ["null", "string"] - }, - "memberships": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "idMember": { - "type": ["null", "string"] - }, - "memberType": { - "type": ["null", "string"] - }, - "unconfirmed": { - "type": ["null", "boolean"] - }, - "deactivated": { - "type": ["null", "boolean"] - } - } - } - }, - "checkItemStates": { - "type": ["null", "string"] - }, - "dueReminder": { - "type": ["null", "string"] - }, - "idBoard": { - "type": ["null", "string"] - }, - "idList": { - "type": ["null", "string"] - }, - "idShort": { - "type": ["null", "integer"] - }, - "idAttachmentCover": { - "type": ["null", "string"] - }, - "manualCoverAttachment": { - "type": ["null", "boolean"] - }, - "pos": { - "type": ["null", "number"] - }, - "isTemplate": { - "type": ["null", "boolean"] - }, - "badges": { - "type": ["null", "object"], - "properties": { - "attachmentsByType": { - "type": ["null", "object"], - "properties": { - "trello": { - "type": ["null", "object"], - "properties": { - "board": { - "type": ["null", "integer"] - }, - "card": { - "type": ["null", "integer"] - } - } - } - } - }, - "location": { - "type": ["null", "boolean"] - }, - "votes": { - "type": ["null", "integer"] - }, - "viewingMemberVoted": { - "type": ["null", "boolean"] - }, - "subscribed": { - "type": ["null", "boolean"] - }, - "fogbugz": { - "type": ["null", "string"] - }, - "checkItems": { - "type": ["null", "integer"] - }, - "checkItemsChecked": { - "type": ["null", "integer"] - }, - "checkItemsEarliestDue": { - "type": ["null", "string"] - }, - "comments": { - "type": ["null", "integer"] - }, - "attachments": { - "type": ["null", "integer"] - }, - "description": { - "type": ["null", "boolean"] - }, - "due": { - "type": ["null", "string"] - }, - "dueComplete": { - "type": ["null", "boolean"] - } - } - }, - "dueComplete": { - "type": ["null", "boolean"] - }, - "due": { - "type": ["null", "string"] - }, - "idChecklists": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "cover": { - "type": ["null", "object"], - "properties": { - "idAttachment": { - "type": ["null", "string"] - }, - "color": { - "type": ["null", "string"] - }, - "idUploadedBackground": { - "type": ["null", "string"] - }, - "size": { - "type": ["null", "string"] - }, - "brightness": { - "type": ["null", "string"] - } - } - }, - "username": { - "type": ["null", "string"] - }, - "fullName": { - "type": ["null", "string"] - }, - "softLimit": { - "type": ["null", "string"] - }, - "idCard": { - "type": ["null", "string"] - }, - "checkItems": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "idChecklist": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "idMember": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "nameData": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "string"] - }, - "pos": { - "type": ["null", "number"] - }, - "creationMethod": { - "type": ["null", "string"] - }, - "due": { - "type": ["null", "string"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-trello/source_trello/schemas/lists.json b/airbyte-integrations/connectors/source-trello/source_trello/schemas/lists.json deleted file mode 100644 index 8631032015df..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/schemas/lists.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": ["null", "object"], - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "closed": { - "type": ["null", "boolean"] - }, - "pos": { - "type": ["null", "number"] - }, - "softLimit": { - "type": ["null", "integer"] - }, - "idBoard": { - "type": ["null", "string"] - }, - "subscribed": { - "type": ["null", "boolean"] - } - } -} diff --git a/airbyte-integrations/connectors/source-trello/source_trello/schemas/organizations.json b/airbyte-integrations/connectors/source-trello/source_trello/schemas/organizations.json deleted file mode 100644 index ee290179a228..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/schemas/organizations.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "credits": { - "type": "array" - }, - "displayName": { - "type": ["null", "string"] - }, - "desc": { - "type": ["null", "string"] - }, - "descData": { - "type": "object", - "properties": { - "emoji": { - "type": "object" - } - } - }, - "domainName": { - "type": ["null", "string"] - }, - "idBoards": { - "type": "array", - "items": { - "type": ["null", "string"] - } - }, - "idMemberCreator": { - "type": ["null", "string"] - }, - "invited": { - "type": ["null", "boolean"] - }, - "invitations": { - "type": "array" - }, - "limits": { - "type": "object", - "properties": { - "orgs": { - "type": "object", - "properties": { - "totalMembersPerOrg": { - "type": "object", - "properties": { - "status": { - "type": ["null", "string"] - }, - "disableAt": { - "type": ["null", "integer"] - }, - "warnAt": { - "type": ["null", "integer"] - } - } - }, - "freeBoardsPerOrg": { - "type": "object", - "properties": { - "status": { - "type": ["null", "string"] - }, - "disableAt": { - "type": ["null", "integer"] - }, - "warnAt": { - "type": ["null", "integer"] - } - } - } - } - } - } - }, - "memberships": { - "type": "array", - "items": { - "type": "object", - "properties": { - "idMember": { - "type": ["null", "string"] - }, - "memberType": { - "type": ["null", "string"] - }, - "unconfirmed": { - "type": ["null", "boolean"] - }, - "deactivated": { - "type": ["null", "boolean"] - }, - "id": { - "type": ["null", "string"] - } - } - } - }, - "membersCount": { - "type": ["null", "integer"] - }, - "prefs": { - "type": "object", - "properties": { - "permissionLevel": { - "type": ["null", "string"] - }, - "orgInviteRestrict": { - "type": "array" - }, - "boardInviteRestrict": { - "type": ["null", "string"] - }, - "externalMembersDisabled": { - "type": ["null", "boolean"] - }, - "googleAppsVersion": { - "type": ["null", "integer"] - }, - "boardVisibilityRestrict": { - "type": "object", - "properties": { - "private": { - "type": ["null", "string"] - }, - "org": { - "type": ["null", "string"] - }, - "enterprise": { - "type": ["null", "string"] - }, - "public": { - "type": ["null", "string"] - } - } - }, - "boardDeleteRestrict": { - "type": "object", - "properties": { - "private": { - "type": ["null", "string"] - }, - "org": { - "type": ["null", "string"] - }, - "enterprise": { - "type": ["null", "string"] - }, - "public": { - "type": ["null", "string"] - } - } - } - } - }, - "powerUps": { - "type": "array" - }, - "products": { - "type": "array" - }, - "billableMemberCount": { - "type": ["null", "integer"] - }, - "activeBillableMemberCount": { - "type": ["null", "integer"] - }, - "billableCollaboratorCount": { - "type": ["null", "integer"] - }, - "url": { - "type": ["null", "string"] - }, - "premiumFeatures": { - "type": "array", - "items": { - "type": ["null", "string"] - } - }, - "promotions": { - "type": "array" - }, - "enterpriseJoinRequest": { - "type": "object" - }, - "ixUpdate": { - "type": ["null", "string"] - }, - "newLicenseInviteRestrict": { - "type": ["null", "string"] - }, - "newLicenseInviteRestrictUrl": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-trello/source_trello/schemas/users.json b/airbyte-integrations/connectors/source-trello/source_trello/schemas/users.json deleted file mode 100644 index d4ee68478dec..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/schemas/users.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": ["null", "object"], - "properties": { - "id": { - "type": ["string"] - }, - "boardId": { - "type": ["string"] - }, - "username": { - "type": ["null", "string"] - }, - "fullName": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-trello/source_trello/source.py b/airbyte-integrations/connectors/source-trello/source_trello/source.py deleted file mode 100644 index 591073e589be..000000000000 --- a/airbyte-integrations/connectors/source-trello/source_trello/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceTrello(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-trello/unit_tests/__init__.py b/airbyte-integrations/connectors/source-trello/unit_tests/__init__.py deleted file mode 100644 index 3f8e5f92f4c7..000000000000 --- a/airbyte-integrations/connectors/source-trello/unit_tests/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -# MIT License -# -# Copyright (c) 2023 Airbyte -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in all -# copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. -# diff --git a/docs/integrations/sources/trello.md b/docs/integrations/sources/trello.md index cf1470c3f872..c07c8ed325c6 100644 --- a/docs/integrations/sources/trello.md +++ b/docs/integrations/sources/trello.md @@ -83,6 +83,7 @@ The Trello connector should not run into Trello API limitations under normal usa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------- | +| 1.2.0 | 2024-10-22 | [47257](https://github.com/airbytehq/airbyte/pull/47257) | Migrate to Manifest-only | | 1.1.0 | 2024-07-17 | [42019](https://github.com/airbytehq/airbyte/pull/42019) | Migrate to CDK v3.5.3 | | 1.0.10 | 2024-07-13 | [41774](https://github.com/airbytehq/airbyte/pull/41774) | Update dependencies | | 1.0.9 | 2024-07-10 | [41601](https://github.com/airbytehq/airbyte/pull/41601) | Update dependencies | From 0058f0bfde18433a7e3ef031f4d2648e116bd7fb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 00:06:50 +0200 Subject: [PATCH 248/808] =?UTF-8?q?=F0=9F=90=99=20source-productboard:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-28]=20(#47677)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-productboard/metadata.yaml | 4 ++-- docs/integrations/sources/productboard.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/source-productboard/metadata.yaml b/airbyte-integrations/connectors/source-productboard/metadata.yaml index 348672e59881..5bd9f8994a03 100644 --- a/airbyte-integrations/connectors/source-productboard/metadata.yaml +++ b/airbyte-integrations/connectors/source-productboard/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-productboard connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 43ae66ee-e3df-4fb7-bff5-9625d25cdc14 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-productboard githubIssueLabel: source-productboard icon: icon.svg diff --git a/docs/integrations/sources/productboard.md b/docs/integrations/sources/productboard.md index ea2476d3d7ce..5104826ac9d4 100644 --- a/docs/integrations/sources/productboard.md +++ b/docs/integrations/sources/productboard.md @@ -36,6 +36,7 @@ A manifest only source for Productboard. https://www.productboard.com/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| -| 0.0.1 | 2024-09-13 | [45449](https://github.com/airbytehq/airbyte/pull/45449) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | +| 0.0.2 | 2024-10-28 | [47677](https://github.com/airbytehq/airbyte/pull/47677) | Update dependencies | +| 0.0.1 | 2024-09-13 | [45449](https://github.com/airbytehq/airbyte/pull/45449) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | - \ No newline at end of file + From 7c34641cf09dac1f8a54b0da9232d7b4313e2d3a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 00:06:54 +0200 Subject: [PATCH 249/808] =?UTF-8?q?=F0=9F=90=99=20source-tmdb:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-28]=20(#47676)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-tmdb/metadata.yaml | 4 ++-- docs/integrations/sources/tmdb.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-tmdb/metadata.yaml b/airbyte-integrations/connectors/source-tmdb/metadata.yaml index 543ab1dd0da1..f3757da7bd85 100644 --- a/airbyte-integrations/connectors/source-tmdb/metadata.yaml +++ b/airbyte-integrations/connectors/source-tmdb/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6240848f-f795-45eb-8f5e-c7542822fc03 - dockerImageTag: 1.1.1 + dockerImageTag: 1.1.2 dockerRepository: airbyte/source-tmdb githubIssueLabel: source-tmdb icon: tmdb.svg @@ -42,5 +42,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/tmdb.md b/docs/integrations/sources/tmdb.md index fde508910a7f..9213a1f29417 100644 --- a/docs/integrations/sources/tmdb.md +++ b/docs/integrations/sources/tmdb.md @@ -96,7 +96,8 @@ TMDb's [API reference](https://developers.themoviedb.org/3/getting-started/intro | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------- | -| 1.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 1.1.2 | 2024-10-28 | [47676](https://github.com/airbytehq/airbyte/pull/47676) | Update dependencies | +| 1.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.1.0 | 2024-08-14 | [44057](https://github.com/airbytehq/airbyte/pull/44057) | Refactor connector to manifest-only format | | 1.0.5 | 2024-08-12 | [43816](https://github.com/airbytehq/airbyte/pull/43816) | Update dependencies | | 1.0.4 | 2024-08-10 | [43650](https://github.com/airbytehq/airbyte/pull/43650) | Update dependencies | From 08bde0402edaccf002024863702fc0807b303a7d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 00:06:58 +0200 Subject: [PATCH 250/808] =?UTF-8?q?=F0=9F=90=99=20source-sonar-cloud:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-28]=20(#47673)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/integrations/sources/sonar-cloud.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/sources/sonar-cloud.md b/docs/integrations/sources/sonar-cloud.md index 51416b34e87f..ca82a32943a2 100644 --- a/docs/integrations/sources/sonar-cloud.md +++ b/docs/integrations/sources/sonar-cloud.md @@ -30,7 +30,7 @@ This source can sync data from the [Sonar cloud API](https://sonarcloud.io/web_a | Version | Date | Pull Request | Subject | | :------ | :-------------------------------------------------------------------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.2.2 | 2024-10-28 | [47469](https://github.com/airbytehq/airbyte/pull/47469) | Update dependencies | +| 0.2.2 | 2024-10-28 | [47673](https://github.com/airbytehq/airbyte/pull/47673) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44063](https://github.com/airbytehq/airbyte/pull/44063) | Refactor connector to manifest-only format | | 0.1.17 | 2024-08-10 | [43569](https://github.com/airbytehq/airbyte/pull/43569) | Update dependencies | From 00d2c649c13a5bd2108b6daac01c12c7cfad78b4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 00:07:02 +0200 Subject: [PATCH 251/808] =?UTF-8?q?=F0=9F=90=99=20source-hibob:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-28]=20(#47672)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-hibob/metadata.yaml | 4 ++-- docs/integrations/sources/hibob.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-hibob/metadata.yaml b/airbyte-integrations/connectors/source-hibob/metadata.yaml index 235e3cb8f696..8ebd594bcec4 100644 --- a/airbyte-integrations/connectors/source-hibob/metadata.yaml +++ b/airbyte-integrations/connectors/source-hibob/metadata.yaml @@ -16,11 +16,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.3@sha256:c313c25af0617f5879361e684c956ac25ac1122beaf311c967e5b7a9b45ded79 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 4dc991ed-3dcc-4c40-ac28-9402836709f1 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-hibob githubIssueLabel: source-hibob icon: icon.svg diff --git a/docs/integrations/sources/hibob.md b/docs/integrations/sources/hibob.md index 6b0a3d285f6f..d904bc580da2 100644 --- a/docs/integrations/sources/hibob.md +++ b/docs/integrations/sources/hibob.md @@ -80,6 +80,7 @@ Link to HiBob API documentation [here](https://apidocs.hibob.com/docs/). | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 0.2.1 | 2024-10-28 | [47672](https://github.com/airbytehq/airbyte/pull/47672) | Update dependencies | | 0.2.0 | 2024-08-21 | [44542](https://github.com/airbytehq/airbyte/pull/44542) | Refactor connector to manifest-only format | | 0.1.3 | 2024-08-17 | [44298](https://github.com/airbytehq/airbyte/pull/44298) | Update dependencies | | 0.1.2 | 2024-08-12 | [43853](https://github.com/airbytehq/airbyte/pull/43853) | Update dependencies | From fdeb5225311d75b076822e0fba7854488ab9cc7b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 00:07:05 +0200 Subject: [PATCH 252/808] =?UTF-8?q?=F0=9F=90=99=20source-care-quality-comm?= =?UTF-8?q?ission:=20run=20up-to-date=20pipeline=20[2024-10-28]=20(#47671)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-care-quality-commission/metadata.yaml | 4 ++-- docs/integrations/sources/care-quality-commission.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml b/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml index 9da1e57f984c..ee2a6c5b8aaf 100644 --- a/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml +++ b/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-care-quality-commission connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.1@sha256:4bc838b4dcc097a9f2c263db1aaa6ee71c1f434e952f5d6397208512029243b6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: 2366b7bf-b83e-471c-b4a0-1405887fdf6e - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-care-quality-commission githubIssueLabel: source-care-quality-commission icon: icon.svg diff --git a/docs/integrations/sources/care-quality-commission.md b/docs/integrations/sources/care-quality-commission.md index c601e0d56ee6..5f5248068b5b 100644 --- a/docs/integrations/sources/care-quality-commission.md +++ b/docs/integrations/sources/care-quality-commission.md @@ -25,6 +25,7 @@ https://www.cqc.org.uk/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| -| 0.0.1 | 2024-10-02 | [46315](https://github.com/airbytehq/airbyte/pull/46315) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | +| 0.0.2 | 2024-10-28 | [47671](https://github.com/airbytehq/airbyte/pull/47671) | Update dependencies | +| 0.0.1 | 2024-10-02 | [46315](https://github.com/airbytehq/airbyte/pull/46315) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | From d33d4a020177f4e3f668806781b2d30de67f6b0a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 00:07:08 +0200 Subject: [PATCH 253/808] =?UTF-8?q?=F0=9F=90=99=20source-harvest:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-28]=20(#47670)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-harvest/metadata.yaml | 4 ++-- docs/integrations/sources/harvest.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-harvest/metadata.yaml b/airbyte-integrations/connectors/source-harvest/metadata.yaml index 09bff8fa8bac..eae2c1e21d77 100644 --- a/airbyte-integrations/connectors/source-harvest/metadata.yaml +++ b/airbyte-integrations/connectors/source-harvest/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.harvestapp.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.11.1@sha256:f48a7ddc1f3acecbd8eb6a10a3146e8d0396e9a4dede77beafb76924f416df65 + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 connectorSubtype: api connectorType: source definitionId: fe2b4084-3386-4d3b-9ad6-308f61a6f1e6 - dockerImageTag: 1.1.0 + dockerImageTag: 1.1.1 dockerRepository: airbyte/source-harvest documentationUrl: https://docs.airbyte.com/integrations/sources/harvest githubIssueLabel: source-harvest diff --git a/docs/integrations/sources/harvest.md b/docs/integrations/sources/harvest.md index e59a6695e309..7b9546f483df 100644 --- a/docs/integrations/sources/harvest.md +++ b/docs/integrations/sources/harvest.md @@ -91,6 +91,7 @@ The connector is restricted by the [Harvest rate limits](https://help.getharvest | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- |:----------------------------------------------------------------------------------------------------------------------------------| +| 1.1.1 | 2024-10-28 | [47670](https://github.com/airbytehq/airbyte/pull/47670) | Update dependencies | | 1.1.0 | 2024-10-14 | [46898](https://github.com/airbytehq/airbyte/pull/46898) | Promoting release candidate 1.1.0-rc1 to a main version. | | 1.1.0-rc1 | 2024-10-09 | [46685](https://github.com/airbytehq/airbyte/pull/46685) | Migrate to Manifest-only | | 1.0.19 | 2024-10-05 | [46470](https://github.com/airbytehq/airbyte/pull/46470) | Update dependencies | From 9106d245d867f342629c398bbd921409c248bb56 Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Mon, 28 Oct 2024 15:26:56 -0700 Subject: [PATCH 254/808] Bulk Load CDK: Nop Refactor: Formatted object writes to toolkit (#47382) --- .../load/data/AirbyteSchemaIdentityMapper.kt | 1 + .../load/data/AirbyteValueIdentityMapper.kt | 7 +- .../io/airbyte/cdk/load/file/csv/CSVWriter.kt | 10 +- .../object_storage/ObjectStorageClient.kt | 8 ++ .../ObjectStorageFormattingWriter.kt | 127 ++++++++++++++++++ .../destination-s3-v2/metadata.yaml | 2 +- .../src/main/kotlin/S3V2Writer.kt | 81 +---------- 7 files changed, 152 insertions(+), 84 deletions(-) create mode 100644 airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapper.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapper.kt index c91b8afb3601..a36c286a03a5 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapper.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapper.kt @@ -50,6 +50,7 @@ interface AirbyteSchemaIdentityMapper { fun mapTimeTypeWithoutTimezone(schema: TimeTypeWithoutTimezone): AirbyteType = schema fun mapTimestampTypeWithTimezone(schema: TimestampTypeWithTimezone): AirbyteType = schema fun mapTimestampTypeWithoutTimezone(schema: TimestampTypeWithoutTimezone): AirbyteType = schema + fun mapUnknown(schema: UnknownType): AirbyteType = schema fun mapField(field: FieldType): FieldType = FieldType(map(field.type), field.nullable) } diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt index ecea54bcc7f7..eaab8330f276 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt @@ -46,7 +46,10 @@ open class AirbyteValueIdentityMapper( is TimestampTypeWithoutTimezone -> mapTimestampWithoutTimezone(value as TimestampValue, path) is NullType -> mapNull(path) - is UnknownType -> mapUnknown(value as UnknownValue, path) + is UnknownType -> { + collectFailure(path) + mapNull(path) + } } } catch (e: Exception) { collectFailure(path) @@ -111,6 +114,4 @@ open class AirbyteValueIdentityMapper( value open fun mapNull(path: List): AirbyteValue = NullValue - - open fun mapUnknown(value: UnknownValue, path: List): AirbyteValue = value } diff --git a/airbyte-cdk/bulk/toolkits/load-csv/src/main/kotlin/io/airbyte/cdk/load/file/csv/CSVWriter.kt b/airbyte-cdk/bulk/toolkits/load-csv/src/main/kotlin/io/airbyte/cdk/load/file/csv/CSVWriter.kt index 044b3f8afdf6..60d293470ad9 100644 --- a/airbyte-cdk/bulk/toolkits/load-csv/src/main/kotlin/io/airbyte/cdk/load/file/csv/CSVWriter.kt +++ b/airbyte-cdk/bulk/toolkits/load-csv/src/main/kotlin/io/airbyte/cdk/load/file/csv/CSVWriter.kt @@ -6,9 +6,13 @@ package io.airbyte.cdk.load.file.csv import io.airbyte.cdk.load.data.ObjectType import io.airbyte.cdk.load.data.csv.toCsvHeader -import java.io.Writer +import java.io.OutputStream import org.apache.commons.csv.CSVFormat import org.apache.commons.csv.CSVPrinter -fun ObjectType.toCsvPrinterWithHeader(writer: Writer): CSVPrinter = - CSVFormat.Builder.create().setHeader(*toCsvHeader()).setAutoFlush(true).build().print(writer) +fun ObjectType.toCsvPrinterWithHeader(outputStream: OutputStream): CSVPrinter = + CSVFormat.Builder.create() + .setHeader(*toCsvHeader()) + .setAutoFlush(true) + .build() + .print(outputStream.writer(charset = Charsets.UTF_8)) diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt index de5af60f96f0..099d5979a261 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt @@ -16,6 +16,14 @@ interface ObjectStorageClient> { suspend fun get(key: String, block: (InputStream) -> U): U suspend fun put(key: String, bytes: ByteArray): T suspend fun delete(remoteObject: T) + + /** + * Streaming upload should provide an [OutputStream] managed within the lifecycle of [block]. + * The stream should be closed after the block completes, however it should be safe for users of + * the stream to close early (some writers do this by default, especially those that write whole + * files). Specifically, the method should guarantee that no operations will be performed on the + * stream after [block] completes. + */ suspend fun streamingUpload(key: String, block: suspend (OutputStream) -> Unit): T = streamingUpload(key, NoopProcessor, block) suspend fun streamingUpload( diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt new file mode 100644 index 000000000000..99a97afa7e17 --- /dev/null +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt @@ -0,0 +1,127 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.file.object_storage + +import io.airbyte.cdk.load.command.DestinationStream +import io.airbyte.cdk.load.command.object_storage.AvroFormatConfiguration +import io.airbyte.cdk.load.command.object_storage.CSVFormatConfiguration +import io.airbyte.cdk.load.command.object_storage.JsonFormatConfiguration +import io.airbyte.cdk.load.command.object_storage.ObjectStorageFormatConfigurationProvider +import io.airbyte.cdk.load.command.object_storage.ParquetFormatConfiguration +import io.airbyte.cdk.load.data.DestinationRecordToAirbyteValueWithMeta +import io.airbyte.cdk.load.data.avro.toAvroRecord +import io.airbyte.cdk.load.data.avro.toAvroSchema +import io.airbyte.cdk.load.data.csv.toCsvRecord +import io.airbyte.cdk.load.data.json.toJson +import io.airbyte.cdk.load.file.avro.toAvroWriter +import io.airbyte.cdk.load.file.csv.toCsvPrinterWithHeader +import io.airbyte.cdk.load.file.parquet.toParquetWriter +import io.airbyte.cdk.load.message.DestinationRecord +import io.airbyte.cdk.load.util.serializeToString +import io.airbyte.cdk.load.util.write +import io.micronaut.context.annotation.Secondary +import jakarta.inject.Singleton +import java.io.Closeable +import java.io.OutputStream + +interface ObjectStorageFormattingWriter : Closeable { + fun accept(record: DestinationRecord) +} + +@Singleton +@Secondary +class ObjectStorageFormattingWriterFactory( + private val recordDecorator: DestinationRecordToAirbyteValueWithMeta, + private val formatConfigProvider: ObjectStorageFormatConfigurationProvider, +) { + fun create( + stream: DestinationStream, + outputStream: OutputStream + ): ObjectStorageFormattingWriter { + return when (formatConfigProvider.objectStorageFormatConfiguration) { + is JsonFormatConfiguration -> JsonFormattingWriter(outputStream, recordDecorator) + is AvroFormatConfiguration -> + AvroFormattingWriter( + stream, + outputStream, + formatConfigProvider.objectStorageFormatConfiguration + as AvroFormatConfiguration, + recordDecorator + ) + is ParquetFormatConfiguration -> + ParquetFormattingWriter( + stream, + outputStream, + formatConfigProvider.objectStorageFormatConfiguration + as ParquetFormatConfiguration, + recordDecorator + ) + is CSVFormatConfiguration -> CSVFormattingWriter(stream, outputStream, recordDecorator) + } + } +} + +class JsonFormattingWriter( + private val outputStream: OutputStream, + private val recordDecorator: DestinationRecordToAirbyteValueWithMeta +) : ObjectStorageFormattingWriter { + override fun accept(record: DestinationRecord) { + outputStream.write(recordDecorator.decorate(record).toJson().serializeToString()) + } + + override fun close() { + outputStream.close() + } +} + +class CSVFormattingWriter( + stream: DestinationStream, + outputStream: OutputStream, + private val recordDecorator: DestinationRecordToAirbyteValueWithMeta +) : ObjectStorageFormattingWriter { + private val printer = stream.schemaWithMeta.toCsvPrinterWithHeader(outputStream) + override fun accept(record: DestinationRecord) { + printer.printRecord(*recordDecorator.decorate(record).toCsvRecord()) + } + override fun close() { + printer.close() + } +} + +class AvroFormattingWriter( + stream: DestinationStream, + outputStream: OutputStream, + formatConfig: AvroFormatConfiguration, + private val recordDecorator: DestinationRecordToAirbyteValueWithMeta +) : ObjectStorageFormattingWriter { + private val avroSchema = stream.schemaWithMeta.toAvroSchema(stream.descriptor) + private val writer = + outputStream.toAvroWriter(avroSchema, formatConfig.avroCompressionConfiguration) + override fun accept(record: DestinationRecord) { + writer.write(recordDecorator.decorate(record).toAvroRecord(avroSchema)) + } + + override fun close() { + writer.close() + } +} + +class ParquetFormattingWriter( + stream: DestinationStream, + outputStream: OutputStream, + formatConfig: ParquetFormatConfiguration, + private val recordDecorator: DestinationRecordToAirbyteValueWithMeta +) : ObjectStorageFormattingWriter { + private val avroSchema = stream.schemaWithMeta.toAvroSchema(stream.descriptor) + private val writer = + outputStream.toParquetWriter(avroSchema, formatConfig.parquetWriterConfiguration) + override fun accept(record: DestinationRecord) { + writer.write(recordDecorator.decorate(record).toAvroRecord(avroSchema)) + } + + override fun close() { + writer.close() + } +} diff --git a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml index 2b7b01267a9c..8726a1097f18 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml +++ b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: file connectorType: destination definitionId: d6116991-e809-4c7c-ae09-c64712df5b66 - dockerImageTag: 0.1.12 + dockerImageTag: 0.1.13 dockerRepository: airbyte/destination-s3-v2 githubIssueLabel: destination-s3-v2 icon: s3.svg diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt index 4c7caa97577e..7d028777d2d0 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt @@ -6,26 +6,12 @@ package io.airbyte.integrations.destination.s3_v2 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings import io.airbyte.cdk.load.command.DestinationStream -import io.airbyte.cdk.load.command.object_storage.AvroFormatConfiguration -import io.airbyte.cdk.load.command.object_storage.CSVFormatConfiguration -import io.airbyte.cdk.load.command.object_storage.JsonFormatConfiguration -import io.airbyte.cdk.load.command.object_storage.ObjectStorageFormatConfigurationProvider -import io.airbyte.cdk.load.command.object_storage.ParquetFormatConfiguration -import io.airbyte.cdk.load.data.DestinationRecordToAirbyteValueWithMeta -import io.airbyte.cdk.load.data.avro.toAvroRecord -import io.airbyte.cdk.load.data.avro.toAvroSchema -import io.airbyte.cdk.load.data.csv.toCsvRecord -import io.airbyte.cdk.load.data.json.toJson -import io.airbyte.cdk.load.file.avro.toAvroWriter -import io.airbyte.cdk.load.file.csv.toCsvPrinterWithHeader +import io.airbyte.cdk.load.file.object_storage.ObjectStorageFormattingWriterFactory import io.airbyte.cdk.load.file.object_storage.ObjectStoragePathFactory -import io.airbyte.cdk.load.file.parquet.toParquetWriter import io.airbyte.cdk.load.file.s3.S3Client import io.airbyte.cdk.load.file.s3.S3Object import io.airbyte.cdk.load.message.Batch import io.airbyte.cdk.load.message.DestinationRecord -import io.airbyte.cdk.load.util.serializeToString -import io.airbyte.cdk.load.util.write import io.airbyte.cdk.load.write.DestinationWriter import io.airbyte.cdk.load.write.StreamLoader import jakarta.inject.Singleton @@ -35,8 +21,7 @@ import java.util.concurrent.atomic.AtomicLong class S3V2Writer( private val s3Client: S3Client, private val pathFactory: ObjectStoragePathFactory, - private val recordDecorator: DestinationRecordToAirbyteValueWithMeta, - private val formatConfigProvider: ObjectStorageFormatConfigurationProvider + private val writerFactory: ObjectStorageFormattingWriterFactory, ) : DestinationWriter { sealed interface S3V2Batch : Batch data class StagedObject( @@ -49,8 +34,6 @@ class S3V2Writer( val s3Object: S3Object, ) : S3V2Batch - private val formatConfig = formatConfigProvider.objectStorageFormatConfiguration - override fun createStreamLoader(stream: DestinationStream): StreamLoader { return S3V2StreamLoader(stream) } @@ -58,15 +41,6 @@ class S3V2Writer( @SuppressFBWarnings("NP_NONNULL_PARAM_VIOLATION", justification = "Kotlin async continuation") inner class S3V2StreamLoader(override val stream: DestinationStream) : StreamLoader { private val partNumber = AtomicLong(0L) // TODO: Get from destination state - private val avroSchema = - if ( - formatConfig is AvroFormatConfiguration || - formatConfig is ParquetFormatConfiguration - ) { - stream.schemaWithMeta.toAvroSchema(stream.descriptor) - } else { - null - } override suspend fun processRecords( records: Iterator, @@ -76,55 +50,8 @@ class S3V2Writer( val key = pathFactory.getPathToFile(stream, partNumber, isStaging = true).toString() val s3Object = s3Client.streamingUpload(key) { outputStream -> - when (formatConfig) { - is JsonFormatConfiguration -> { - records.forEach { - val serialized = - recordDecorator.decorate(it).toJson().serializeToString() - outputStream.write(serialized) - outputStream.write("\n") - } - } - is CSVFormatConfiguration -> { - stream.schemaWithMeta - .toCsvPrinterWithHeader(outputStream.writer()) - .use { printer -> - records.forEach { - printer.printRecord( - *recordDecorator.decorate(it).toCsvRecord() - ) - } - } - } - is AvroFormatConfiguration -> { - outputStream - .toAvroWriter( - avroSchema!!, - formatConfig.avroCompressionConfiguration - ) - .use { writer -> - records.forEach { - writer.write( - recordDecorator.decorate(it).toAvroRecord(avroSchema) - ) - } - } - } - is ParquetFormatConfiguration -> { - outputStream - .toParquetWriter( - avroSchema!!, - formatConfig.parquetWriterConfiguration - ) - .use { writer -> - records.forEach { - writer.write( - recordDecorator.decorate(it).toAvroRecord(avroSchema) - ) - } - } - } - else -> throw IllegalStateException("Unsupported format") + writerFactory.create(stream, outputStream).use { writer -> + records.forEach { writer.accept(it) } } } return StagedObject(s3Object = s3Object, partNumber = partNumber) From 9dcb7e7ac25ea30ff3d6ae191e63179036be18cc Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Mon, 28 Oct 2024 15:59:35 -0700 Subject: [PATCH 255/808] Bulk load CDK: Even more tests (#47377) --- .../MockBasicFunctionalityIntegrationTest.kt | 10 +- .../MockDestinationBackend.kt | 61 ++++++ .../MockDestinationWriter.kt | 17 +- .../cdk/load/test/util/RecordDiffer.kt | 62 +++++- .../destination_process/DestinationProcess.kt | 2 - .../DockerizedDestination.kt | 18 +- .../NonDockerizedDestination.kt | 7 - .../BasicFunctionalityIntegrationTest.kt | 198 ++++++++++++++++-- ...evNullBasicFunctionalityIntegrationTest.kt | 1 + .../destination/s3_v2/S3V2WriteTest.kt | 6 + 10 files changed, 322 insertions(+), 60 deletions(-) diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt index 5093fab4cf29..361eb2156a10 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt @@ -19,6 +19,7 @@ class MockBasicFunctionalityIntegrationTest : NoopExpectedRecordMapper, NoopNameMapper, isStreamSchemaRetroactive = false, + supportsDedup = true, ) { @Test override fun testBasicWrite() { @@ -36,8 +37,8 @@ class MockBasicFunctionalityIntegrationTest : } @Test - override fun testFunkyStreamAndColumnNames() { - super.testFunkyStreamAndColumnNames() + override fun testFunkyCharacters() { + super.testFunkyCharacters() } @Test @@ -54,4 +55,9 @@ class MockBasicFunctionalityIntegrationTest : override fun testAppendSchemaEvolution() { super.testAppendSchemaEvolution() } + + @Test + override fun testDedup() { + super.testDedup() + } } diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationBackend.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationBackend.kt index 11cbd75f644a..174d55aad58b 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationBackend.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationBackend.kt @@ -6,8 +6,12 @@ package io.airbyte.cdk.load.mock_integration_test import io.airbyte.cdk.command.ConfigurationSpecification import io.airbyte.cdk.load.command.DestinationStream +import io.airbyte.cdk.load.data.AirbyteValue +import io.airbyte.cdk.load.data.NullValue +import io.airbyte.cdk.load.data.ObjectValue import io.airbyte.cdk.load.test.util.DestinationDataDumper import io.airbyte.cdk.load.test.util.OutputRecord +import io.airbyte.cdk.load.test.util.RecordDiffer import java.util.concurrent.ConcurrentHashMap object MockDestinationBackend { @@ -17,6 +21,63 @@ object MockDestinationBackend { getFile(filename).addAll(records) } + fun upsert( + filename: String, + primaryKey: List>, + cursor: List, + vararg records: OutputRecord + ) { + fun getField(path: List, record: OutputRecord): AirbyteValue? { + var currentValue: ObjectValue = record.data + // Iterate over the path, except the final element + for (pathElement in path.subList(0, (path.size - 2).coerceAtLeast(0))) { + when (val next = currentValue.values[pathElement]) { + null, + is NullValue -> return null + !is ObjectValue -> { + throw IllegalStateException( + "Attempted to traverse field list in ${record.data} but found non-object value at $pathElement: $next" + ) + } + else -> currentValue = next + } + } + return currentValue.values[path.last()] + } + fun getPk(record: OutputRecord): List = + primaryKey.map { pkField -> getField(pkField, record) } + fun getCursor(record: OutputRecord): AirbyteValue? = getField(cursor, record) + + val file = getFile(filename) + records.forEach { incomingRecord -> + val incomingPk = getPk(incomingRecord) + // Assume that in dedup mode, we don't have duplicates - so we can just find the first + // record with the same PK as the incoming record + val existingRecord = + file.firstOrNull { RecordDiffer.comparePks(incomingPk, getPk(it)) == 0 } + if (existingRecord == null) { + file.add(incomingRecord) + } else { + val incomingCursor = getCursor(incomingRecord) + val existingCursor = getCursor(existingRecord) + val compare = RecordDiffer.valueComparator.compare(incomingCursor, existingCursor) + // If the incoming record has a later cursor, + // or the same cursor but a later extractedAt, + // then upsert. (otherwise discard the incoming record.) + if ( + compare > 0 || + (compare == 0 && incomingRecord.extractedAt > existingRecord.extractedAt) + ) { + file.remove(existingRecord) + val deletion = getField(listOf("_ab_cdc_deleted_at"), incomingRecord) + if (deletion == null || deletion is NullValue) { + file.add(incomingRecord) + } + } + } + } + } + fun readFile(filename: String): List { return getFile(filename) } diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationWriter.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationWriter.kt index 35219fd4ef74..e1524187f2ba 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationWriter.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationWriter.kt @@ -4,6 +4,7 @@ package io.airbyte.cdk.load.mock_integration_test +import io.airbyte.cdk.load.command.Dedupe import io.airbyte.cdk.load.command.DestinationStream import io.airbyte.cdk.load.data.ObjectValue import io.airbyte.cdk.load.message.Batch @@ -50,8 +51,8 @@ class MockStreamLoader(override val stream: DestinationStream) : StreamLoader { return when (batch) { is LocalBatch -> { batch.records.forEach { - MockDestinationBackend.insert( - getFilename(it.stream), + val filename = getFilename(it.stream) + val record = OutputRecord( UUID.randomUUID(), Instant.ofEpochMilli(it.emittedAtMs), @@ -63,7 +64,17 @@ class MockStreamLoader(override val stream: DestinationStream) : StreamLoader { syncId = stream.syncId ), ) - ) + val importType = stream.importType + if (importType is Dedupe) { + MockDestinationBackend.upsert( + filename, + importType.primaryKey, + importType.cursor, + record + ) + } else { + MockDestinationBackend.insert(filename, record) + } } PersistedBatch(batch.records) } diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt index ce1b70262532..b5e260c8268a 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt @@ -5,9 +5,17 @@ package io.airbyte.cdk.load.test.util import io.airbyte.cdk.load.data.AirbyteValue +import io.airbyte.cdk.load.data.DateValue import io.airbyte.cdk.load.data.IntegerValue import io.airbyte.cdk.load.data.NullValue import io.airbyte.cdk.load.data.ObjectValue +import io.airbyte.cdk.load.data.TimeValue +import io.airbyte.cdk.load.data.TimestampValue +import java.time.LocalDate +import java.time.LocalDateTime +import java.time.LocalTime +import java.time.OffsetDateTime +import java.time.OffsetTime import kotlin.reflect.jvm.jvmName class RecordDiffer( @@ -62,12 +70,7 @@ class RecordDiffer( ) } - // Compare each PK field in order, until we find a field that the two records differ in. - // If all the fields are equal, then these two records have the same PK. - pk1.zip(pk2) - .map { (pk1Field, pk2Field) -> valueComparator.compare(pk1Field, pk2Field) } - .firstOrNull { it != 0 } - ?: 0 + comparePks(pk1, pk2) } /** @@ -235,7 +238,7 @@ class RecordDiffer( // with it explicitly in the condition) val expectedValue = expectedRecord.data.values[key] val actualValue = actualRecord.data.values[key] - if (expectedValue != actualValue) { + if (valueComparator.compare(expectedValue, actualValue) != 0) { diff.append("$key: Expected $expectedValue, but was $actualValue\n") } } @@ -248,6 +251,16 @@ class RecordDiffer( val valueComparator: Comparator = Comparator.nullsFirst { v1, v2 -> compare(v1!!, v2!!) } + /** + * Compare each PK field in order, until we find a field that the two records differ in. If + * all the fields are equal, then these two records have the same PK. + */ + fun comparePks(pk1: List, pk2: List) = + (pk1.zip(pk2) + .map { (pk1Field, pk2Field) -> valueComparator.compare(pk1Field, pk2Field) } + .firstOrNull { it != 0 } + ?: 0) + private fun compare(v1: AirbyteValue, v2: AirbyteValue): Int { // when comparing values of different types, just sort by their class name. // in theory, we could check for numeric types and handle them smartly... @@ -255,9 +268,38 @@ class RecordDiffer( return if (v1::class != v2::class) { v1::class.jvmName.compareTo(v2::class.jvmName) } else { - // otherwise, just be a terrible person. - // we know these are the same type, so this is safe to do. - @Suppress("UNCHECKED_CAST") (v1 as Comparable).compareTo(v2) + // Handle temporal types specifically, because they require explicit parsing + return when (v1) { + is DateValue -> + LocalDate.parse(v1.value) + .compareTo(LocalDate.parse((v2 as DateValue).value)) + is TimeValue -> { + try { + val time1 = LocalTime.parse(v1.value) + val time2 = LocalTime.parse((v2 as TimeValue).value) + time1.compareTo(time2) + } catch (e: Exception) { + val time1 = OffsetTime.parse(v1.value) + val time2 = OffsetTime.parse((v2 as TimeValue).value) + time1.compareTo(time2) + } + } + is TimestampValue -> { + try { + val ts1 = LocalDateTime.parse(v1.value) + val ts2 = LocalDateTime.parse((v2 as TimestampValue).value) + ts1.compareTo(ts2) + } catch (e: Exception) { + val ts1 = OffsetDateTime.parse(v1.value) + val ts2 = OffsetDateTime.parse((v2 as TimestampValue).value) + ts1.compareTo(ts2) + } + } + // otherwise, just be a terrible person. + // we know these are the same type, so this is safe to do. + else -> + @Suppress("UNCHECKED_CAST") (v1 as Comparable).compareTo(v2) + } } } } diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DestinationProcess.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DestinationProcess.kt index c25f37993f3a..5b9f849960d5 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DestinationProcess.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DestinationProcess.kt @@ -13,8 +13,6 @@ import io.micronaut.context.env.yaml.YamlPropertySourceLoader import java.nio.file.Files import java.nio.file.Path -const val DOCKERIZED_TEST_ENV = "DOCKERIZED_INTEGRATION_TEST" - /** * Represents a destination process, whether running in-JVM via micronaut, or as a separate Docker * container. The general lifecycle is: diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DockerizedDestination.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DockerizedDestination.kt index 3cb91a11fbd3..ac6f435269fd 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DockerizedDestination.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DockerizedDestination.kt @@ -11,8 +11,6 @@ import io.airbyte.protocol.models.v0.AirbyteLogMessage import io.airbyte.protocol.models.v0.AirbyteMessage import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog import io.github.oshai.kotlinlogging.KotlinLogging -import io.micronaut.context.annotation.Requires -import io.micronaut.context.annotation.Value import java.io.BufferedWriter import java.io.OutputStreamWriter import java.nio.file.Files @@ -20,7 +18,6 @@ import java.nio.file.Path import java.time.Clock import java.util.Locale import java.util.Scanner -import javax.inject.Singleton import kotlinx.coroutines.CompletableDeferred import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.coroutineScope @@ -238,20 +235,9 @@ class DockerizedDestination( } } -@Singleton -@Requires(env = [DOCKERIZED_TEST_ENV]) class DockerizedDestinationFactory( - // Note that this is not the same property as in MetadataYamlPropertySource. - // We get this because IntegrationTest manually sets "classpath:metadata.yaml" - // as a property source. - // MetadataYamlPropertySource has nothing to do with this property. - @Value("\${data.docker-repository}") val imageName: String, - // Most tests will just use micronaut to inject this. - // But some tests will want to manually instantiate an instance, - // e.g. to run an older version of the connector. - // So we just hardcode 'dev' here; manual callers can pass in - // whatever they want. - @Value("dev") val imageVersion: String, + private val imageName: String, + private val imageVersion: String, ) : DestinationProcessFactory() { override fun createDestinationProcess( command: String, diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/NonDockerizedDestination.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/NonDockerizedDestination.kt index 6ed0a480ac2b..f1726b5702d3 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/NonDockerizedDestination.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/NonDockerizedDestination.kt @@ -11,12 +11,10 @@ import io.airbyte.cdk.command.FeatureFlag import io.airbyte.protocol.models.Jsons import io.airbyte.protocol.models.v0.AirbyteMessage import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog -import io.micronaut.context.annotation.Requires import java.io.PipedInputStream import java.io.PipedOutputStream import java.io.PrintWriter import java.util.concurrent.Executors -import javax.inject.Singleton import kotlinx.coroutines.CompletableDeferred import kotlinx.coroutines.asCoroutineDispatcher import kotlinx.coroutines.launch @@ -93,11 +91,6 @@ class NonDockerizedDestination( } } -// Notably, not actually a Micronaut factory. We want to inject the actual -// factory into our tests, not a pre-instantiated destination, because we want -// to run multiple destination processes per test. -@Singleton -@Requires(notEnv = [DOCKERIZED_TEST_ENV]) class NonDockerizedDestinationFactory : DestinationProcessFactory() { override fun createDestinationProcess( command: String, diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt index 80e1b6751748..abcde861434b 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt @@ -7,14 +7,18 @@ package io.airbyte.cdk.load.write import io.airbyte.cdk.command.ConfigurationSpecification import io.airbyte.cdk.command.ValidatedJsonUtils import io.airbyte.cdk.load.command.Append +import io.airbyte.cdk.load.command.Dedupe import io.airbyte.cdk.load.command.DestinationCatalog import io.airbyte.cdk.load.command.DestinationStream +import io.airbyte.cdk.load.data.AirbyteValue import io.airbyte.cdk.load.data.FieldType import io.airbyte.cdk.load.data.IntegerType import io.airbyte.cdk.load.data.IntegerValue import io.airbyte.cdk.load.data.ObjectType import io.airbyte.cdk.load.data.ObjectValue import io.airbyte.cdk.load.data.StringType +import io.airbyte.cdk.load.data.StringValue +import io.airbyte.cdk.load.data.TimestampTypeWithTimezone import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.message.StreamCheckpoint import io.airbyte.cdk.load.test.util.DestinationCleaner @@ -30,6 +34,7 @@ import io.airbyte.cdk.util.Jsons import io.airbyte.protocol.models.v0.AirbyteMessage import io.airbyte.protocol.models.v0.AirbyteRecordMessageMetaChange import io.airbyte.protocol.models.v0.AirbyteStateMessage +import java.time.OffsetDateTime import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.delay import kotlinx.coroutines.launch @@ -63,6 +68,7 @@ abstract class BasicFunctionalityIntegrationTest( * retroactive schemas: writing a new file without a column has no effect on older files. */ val isStreamSchemaRetroactive: Boolean, + val supportsDedup: Boolean, ) : IntegrationTest(dataDumper, destinationCleaner, recordMangler, nameMapper) { val parsedConfig = ValidatedJsonUtils.parseOne(configSpecClass, configContents) @@ -413,7 +419,7 @@ abstract class BasicFunctionalityIntegrationTest( @Test @Disabled - open fun testFunkyStreamAndColumnNames() { + open fun testFunkyCharacters() { assumeTrue(verifyDataWriting) fun makeStream( name: String, @@ -427,7 +433,8 @@ abstract class BasicFunctionalityIntegrationTest( minimumGenerationId = 0, syncId = 42, ) - // Catalog with some weird schemas + // Catalog with some weird schemas. + // Every stream has an int `id`, and maybe some string fields. val catalog = DestinationCatalog( listOf( @@ -436,34 +443,41 @@ abstract class BasicFunctionalityIntegrationTest( makeStream("STREAM_WITH_ALL_CAPS"), makeStream("CapitalCase"), makeStream( - "stream_with_edge_case_field_names", + "stream_with_edge_case_field_names_and_values", linkedMapOf( "id" to intType, - "fieldWithCamelCase" to intType, - "field_with_underscore" to intType, - "FIELD_WITH_ALL_CAPS" to intType, - "field_with_spécial_character" to intType, + "fieldWithCamelCase" to stringType, + "field_with_underscore" to stringType, + "FIELD_WITH_ALL_CAPS" to stringType, + "field_with_spécial_character" to stringType, // "order" is a reserved word in many sql engines - "order" to intType, - "ProperCase" to intType, + "order" to stringType, + "ProperCase" to stringType, ) ), // this is apparently trying to test for reserved words? // https://github.com/airbytehq/airbyte/pull/1753 - makeStream("groups", linkedMapOf("id" to intType, "authorization" to intType)), + makeStream( + "groups", + linkedMapOf("id" to intType, "authorization" to stringType) + ), ) ) - // For each stream, generate a record containing every field in the schema + // For each stream, generate a record containing every field in the schema. + // The id field is always 42, and the string fields are always "foo\nbar". val messages = - catalog.streams.map { + catalog.streams.map { stream -> DestinationRecord( - it.descriptor, + stream.descriptor, ObjectValue( - (it.schema as ObjectType).properties.mapValuesTo(linkedMapOf()) { - IntegerValue(42) - } + (stream.schema as ObjectType) + .properties + .mapValuesTo(linkedMapOf()) { + StringValue("foo\nbar") + } + .also { it["id"] = IntegerValue(42) } ), - 1234, + emittedAtMs = 1234, meta = null, serialized = "", ) @@ -479,9 +493,10 @@ abstract class BasicFunctionalityIntegrationTest( extractedAt = 1234, generationId = 0, data = - (stream.schema as ObjectType).properties.mapValuesTo( - linkedMapOf() - ) { 42 }, + (stream.schema as ObjectType) + .properties + .mapValuesTo(linkedMapOf()) { "foo\nbar" } + .also { it["id"] = 42 }, airbyteMeta = OutputRecord.Meta(syncId = 42) ) ), @@ -684,8 +699,151 @@ abstract class BasicFunctionalityIntegrationTest( ) } + @Test + open fun testDedup() { + assumeTrue(supportsDedup) + fun makeStream(syncId: Long) = + DestinationStream( + DestinationStream.Descriptor(randomizedNamespace, "test_stream"), + importType = + Dedupe( + primaryKey = listOf(listOf("id1"), listOf("id2")), + cursor = listOf("updated_at"), + ), + schema = + ObjectType( + properties = + linkedMapOf( + "id1" to intType, + "id2" to intType, + "updated_at" to timestamptzType, + "name" to stringType, + "_ab_cdc_deleted_at" to timestamptzType, + ) + ), + generationId = 42, + minimumGenerationId = 0, + syncId = syncId, + ) + fun makeRecord(data: String, extractedAt: Long) = + DestinationRecord( + randomizedNamespace, + "test_stream", + data, + emittedAtMs = extractedAt, + ) + + val sync1Stream = makeStream(syncId = 42) + runSync( + configContents, + sync1Stream, + listOf( + // emitted_at:1000 is equal to 1970-01-01 00:00:01Z. + // This obviously makes no sense in relation to updated_at being in the year 2000, + // but that's OK because (from destinations POV) updated_at has no relation to + // extractedAt. + makeRecord( + """{"id1": 1, "id2": 200, "updated_at": "2000-01-01T00:00:00Z", "name": "Alice1", "_ab_cdc_deleted_at": null}""", + extractedAt = 1000, + ), + // Emit a second record for id=(1,200) with a different updated_at. + makeRecord( + """{"id1": 1, "id2": 200, "updated_at": "2000-01-01T00:01:00Z", "name": "Alice2", "_ab_cdc_deleted_at": null}""", + extractedAt = 1000, + ), + // Emit a record with no _ab_cdc_deleted_at field. CDC sources typically emit an + // explicit null, but we should handle both cases. + makeRecord( + """{"id1": 1, "id2": 201, "updated_at": "2000-01-01T00:02:00Z", "name": "Bob1"}""", + extractedAt = 1000, + ), + ), + ) + dumpAndDiffRecords( + parsedConfig, + listOf( + // Alice has only the newer record, and Bob also exists + OutputRecord( + extractedAt = 1000, + generationId = 42, + data = + mapOf( + "id1" to 1, + "id2" to 200, + "updated_at" to OffsetDateTime.parse("2000-01-01T00:01:00Z"), + "name" to "Alice2", + "_ab_cdc_deleted_at" to null + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + OutputRecord( + extractedAt = 1000, + generationId = 42, + data = + mapOf( + "id1" to 1, + "id2" to 201, + "updated_at" to OffsetDateTime.parse("2000-01-01T00:02:00Z"), + "name" to "Bob1" + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + ), + sync1Stream, + primaryKey = listOf(listOf("id1"), listOf("id2")), + cursor = listOf("updated_at"), + ) + + val sync2Stream = makeStream(syncId = 43) + runSync( + configContents, + sync2Stream, + listOf( + // Update both Alice and Bob + makeRecord( + """{"id1": 1, "id2": 200, "updated_at": "2000-01-02T00:00:00Z", "name": "Alice3", "_ab_cdc_deleted_at": null}""", + extractedAt = 2000, + ), + makeRecord( + """{"id1": 1, "id2": 201, "updated_at": "2000-01-02T00:00:00Z", "name": "Bob2"}""", + extractedAt = 2000, + ), + // And delete Bob. Again, T+D doesn't check the actual _value_ of deleted_at (i.e. + // the fact that it's in the past is irrelevant). It only cares whether deleted_at + // is non-null. So the destination should delete Bob. + makeRecord( + """{"id1": 1, "id2": 201, "updated_at": "2000-01-02T00:01:00Z", "_ab_cdc_deleted_at": "1970-01-01T00:00:00Z"}""", + extractedAt = 2000, + ), + ), + ) + dumpAndDiffRecords( + parsedConfig, + listOf( + // Alice still exists (and has been updated to the latest version), but Bob is gone + OutputRecord( + extractedAt = 2000, + generationId = 42, + data = + mapOf( + "id1" to 1, + "id2" to 200, + "updated_at" to OffsetDateTime.parse("2000-01-02T00:00:00Z"), + "name" to "Alice3", + "_ab_cdc_deleted_at" to null + ), + airbyteMeta = OutputRecord.Meta(syncId = 43), + ) + ), + sync2Stream, + primaryKey = listOf(listOf("id1"), listOf("id2")), + cursor = listOf("updated_at"), + ) + } + companion object { private val intType = FieldType(IntegerType, nullable = true) private val stringType = FieldType(StringType, nullable = true) + private val timestamptzType = FieldType(TimestampTypeWithTimezone, nullable = true) } } diff --git a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt index b6af7de7e6e1..f3eb7195f1bf 100644 --- a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt +++ b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt @@ -18,6 +18,7 @@ class DevNullBasicFunctionalityIntegrationTest : NoopExpectedRecordMapper, verifyDataWriting = false, isStreamSchemaRetroactive = false, + supportsDedup = false, ) { @Test override fun testBasicWrite() { diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt index 73c829fd9e8d..4a36648c9a5c 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt @@ -18,12 +18,18 @@ abstract class S3V2WriteTest(path: String) : NoopDestinationCleaner, NoopExpectedRecordMapper, isStreamSchemaRetroactive = false, + supportsDedup = false, ) { @Test override fun testBasicWrite() { super.testBasicWrite() } + @Test + override fun testFunkyCharacters() { + super.testFunkyCharacters() + } + @Disabled @Test override fun testMidSyncCheckpointingStreamState() { From 423d74529b3deb6fbe1ea768a11f412c512540bd Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Mon, 28 Oct 2024 16:27:47 -0700 Subject: [PATCH 256/808] Destination-Motherduck: Fix write failures (#47694) Co-authored-by: Guen Prawiroatmodjo --- .../airbyte_cdk/sql/_processors/duckdb.py | 3 +- .../destination_motherduck/destination.py | 4 +- .../processors/__init__.py | 0 .../processors/duckdb.py | 296 ++++++++++++++++++ .../processors/motherduck.py | 81 +++++ .../integration_tests/integration_test.py | 6 +- .../destination-motherduck/metadata.yaml | 2 +- .../destination-motherduck/pyproject.toml | 2 +- docs/integrations/destinations/motherduck.md | 1 + 9 files changed, 386 insertions(+), 9 deletions(-) create mode 100644 airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/__init__.py create mode 100644 airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py create mode 100644 airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/motherduck.py diff --git a/airbyte-cdk/python/airbyte_cdk/sql/_processors/duckdb.py b/airbyte-cdk/python/airbyte_cdk/sql/_processors/duckdb.py index 3287d55c81db..3f3f1a5ed319 100644 --- a/airbyte-cdk/python/airbyte_cdk/sql/_processors/duckdb.py +++ b/airbyte-cdk/python/airbyte_cdk/sql/_processors/duckdb.py @@ -269,7 +269,6 @@ def write_stream_data_from_buffer( stream_name: str, sync_mode: DestinationSyncMode, ) -> None: - table_name = f"_airbyte_raw_{stream_name}" temp_table_name = self._create_table_for_loading(stream_name, batch_id=None) try: pa_table = pa.Table.from_pydict(buffer[stream_name]) @@ -289,7 +288,7 @@ def write_stream_data_from_buffer( self._write_temp_table_to_target_table( stream_name=stream_name, temp_table_name=temp_table_name_dedup, - final_table_name=table_name, + final_table_name=stream_name, sync_mode=sync_mode, ) finally: diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py index 95083231c3a8..c8fff6cbe1b9 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py @@ -15,13 +15,13 @@ from airbyte_cdk import AirbyteStream, ConfiguredAirbyteStream, SyncMode from airbyte_cdk.destinations import Destination from airbyte_cdk.models import AirbyteConnectionStatus, AirbyteMessage, ConfiguredAirbyteCatalog, DestinationSyncMode, Status, Type -from airbyte_cdk.sql._processors.duckdb import DuckDBConfig, DuckDBSqlProcessor -from airbyte_cdk.sql._processors.motherduck import MotherDuckConfig, MotherDuckSqlProcessor from airbyte_cdk.sql._util.name_normalizers import LowerCaseNormalizer from airbyte_cdk.sql.constants import AB_EXTRACTED_AT_COLUMN, AB_INTERNAL_COLUMNS, AB_META_COLUMN, AB_RAW_ID_COLUMN from airbyte_cdk.sql.secrets import SecretString from airbyte_cdk.sql.shared.catalog_providers import CatalogProvider from airbyte_cdk.sql.types import SQLTypeConverter +from destination_motherduck.processors.duckdb import DuckDBConfig, DuckDBSqlProcessor +from destination_motherduck.processors.motherduck import MotherDuckConfig, MotherDuckSqlProcessor logger = getLogger("airbyte") diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/__init__.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py new file mode 100644 index 000000000000..3f3f1a5ed319 --- /dev/null +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py @@ -0,0 +1,296 @@ +# Copyright (c) 2023 Airbyte, Inc., all rights reserved. +"""A DuckDB implementation of the cache.""" + +from __future__ import annotations + +import logging +import warnings +from pathlib import Path +from typing import TYPE_CHECKING, Any, Dict, List, Literal + +import pyarrow as pa +from airbyte_cdk import DestinationSyncMode +from airbyte_cdk.sql import exceptions as exc +from airbyte_cdk.sql.constants import AB_EXTRACTED_AT_COLUMN +from airbyte_cdk.sql.secrets import SecretString +from airbyte_cdk.sql.shared.sql_processor import SqlConfig, SqlProcessorBase, SQLRuntimeError +from duckdb_engine import DuckDBEngineWarning +from overrides import overrides +from pydantic import Field +from sqlalchemy import Executable, TextClause, text +from sqlalchemy.exc import ProgrammingError, SQLAlchemyError + +if TYPE_CHECKING: + from sqlalchemy.engine import Connection, Engine + +logger = logging.getLogger(__name__) + + +# @dataclass +class DuckDBConfig(SqlConfig): + """Configuration for DuckDB.""" + + db_path: Path | str = Field() + """Normally db_path is a Path object. + + The database name will be inferred from the file name. For example, given a `db_path` of + `/path/to/my/duckdb-file`, the database name is `my_db`. + """ + + schema_name: str = Field(default="main") + """The name of the schema to write to. Defaults to "main".""" + + @overrides + def get_sql_alchemy_url(self) -> SecretString: + """Return the SQLAlchemy URL to use.""" + # Suppress warnings from DuckDB about reflection on indices. + # https://github.com/Mause/duckdb_engine/issues/905 + warnings.filterwarnings( + "ignore", + message="duckdb-engine doesn't yet support reflection on indices", + category=DuckDBEngineWarning, + ) + return SecretString(f"duckdb:///{self.db_path!s}") + + @overrides + def get_database_name(self) -> str: + """Return the name of the database.""" + if self.db_path == ":memory:": + return "memory" + + # Split the path on the appropriate separator ("/" or "\") + split_on: Literal["/", "\\"] = "\\" if "\\" in str(self.db_path) else "/" + + # Return the file name without the extension + return str(self.db_path).split(sep=split_on)[-1].split(".")[0] + + def _is_file_based_db(self) -> bool: + """Return whether the database is file-based.""" + if isinstance(self.db_path, Path): + return True + + db_path_str = str(self.db_path) + return ( + ("/" in db_path_str or "\\" in db_path_str) + and db_path_str != ":memory:" + and "md:" not in db_path_str + and "motherduck:" not in db_path_str + ) + + @overrides + def get_sql_engine(self) -> Engine: + """Return the SQL Alchemy engine. + + This method is overridden to ensure that the database parent directory is created if it + doesn't exist. + """ + if self._is_file_based_db(): + Path(self.db_path).parent.mkdir(parents=True, exist_ok=True) + + return super().get_sql_engine() + + +class DuckDBSqlProcessor(SqlProcessorBase): + """A DuckDB implementation of the cache. + + Jsonl is used for local file storage before bulk loading. + Unlike the Snowflake implementation, we can't use the COPY command to load data + so we insert as values instead. + """ + + supports_merge_insert = False + sql_config: DuckDBConfig + + @overrides + def _setup(self) -> None: + """Create the database parent folder if it doesn't yet exist.""" + if self.sql_config.db_path == ":memory:": + return + + Path(self.sql_config.db_path).parent.mkdir(parents=True, exist_ok=True) + + def _create_table_if_not_exists( + self, + table_name: str, + column_definition_str: str, + primary_keys: list[str] | None = None, + ) -> None: + if primary_keys: + pk_str = ", ".join(primary_keys) + column_definition_str += f",\n PRIMARY KEY ({pk_str})" + + cmd = f""" + CREATE TABLE IF NOT EXISTS {self._fully_qualified(table_name)} ( + {column_definition_str} + ) + """ + _ = self._execute_sql(cmd) + + def _do_checkpoint( + self, + connection: Connection | None = None, + ) -> None: + """Checkpoint the given connection. + + We override this method to ensure that the DuckDB WAL is checkpointed explicitly. + Otherwise DuckDB will lazily flush the WAL to disk, which can cause issues for users + who want to manipulate the DB files after writing them. + + For more info: + - https://duckdb.org/docs/sql/statements/checkpoint.html + """ + if connection is not None: + connection.execute(text("CHECKPOINT")) + return + + with self.get_sql_connection() as new_conn: + new_conn.execute(text("CHECKPOINT")) + + def _executemany(self, sql: str | TextClause | Executable, params: list[list[Any]]) -> None: + """Execute the given SQL statement.""" + if isinstance(sql, str): + sql = text(sql) + + with self.get_sql_connection() as conn: + try: + entries = list(params) + conn.engine.pool.connect().executemany(str(sql), entries) # type: ignore + except ( + ProgrammingError, + SQLAlchemyError, + ) as ex: + msg = f"Error when executing SQL:\n{sql}\n{type(ex).__name__}{ex!s}" + raise SQLRuntimeError(msg) from None # from ex + + def _write_with_executemany(self, buffer: Dict[str, Dict[str, List[Any]]], stream_name: str, table_name: str) -> None: + column_names_list = list(buffer[stream_name].keys()) + column_names = ", ".join(column_names_list) + params = ", ".join(["?"] * len(column_names_list)) + sql = f""" + -- Write with executemany + INSERT INTO {self._fully_qualified(table_name)} + ({column_names}) + VALUES ({params}) + """ + entries_to_write = buffer[stream_name] + num_entries = len(entries_to_write[column_names_list[0]]) + parameters = [[entries_to_write[column_name][n] for column_name in column_names_list] for n in range(num_entries)] + self._executemany(sql, parameters) + + def _write_from_pa_table(self, table_name: str, stream_name: str, pa_table: pa.Table) -> None: + full_table_name = self._fully_qualified(table_name) + columns = list(self._get_sql_column_definitions(stream_name).keys()) + if len(columns) != len(pa_table.column_names): + warnings.warn(f"Schema has colums: {columns}, buffer has columns: {pa_table.column_names}") + column_names = ", ".join(pa_table.column_names) + sql = f""" + -- Write from PyArrow table + INSERT INTO {full_table_name} ({column_names}) SELECT {column_names} FROM pa_table + """ + self._execute_sql(sql) + + def _write_temp_table_to_target_table( + self, + stream_name: str, + temp_table_name: str, + final_table_name: str, + sync_mode: DestinationSyncMode, + ) -> None: + """Write the temp table into the final table using the provided write strategy.""" + if sync_mode == DestinationSyncMode.overwrite: + # Note: No need to check for schema compatibility + # here, because we are fully replacing the table. + self._swap_temp_table_with_final_table( + stream_name=stream_name, + temp_table_name=temp_table_name, + final_table_name=final_table_name, + ) + return + + if sync_mode == DestinationSyncMode.append: + self._ensure_compatible_table_schema( + stream_name=stream_name, + table_name=final_table_name, + ) + self._append_temp_table_to_final_table( + stream_name=stream_name, + temp_table_name=temp_table_name, + final_table_name=final_table_name, + ) + return + + if sync_mode == DestinationSyncMode.append_dedup: + self._ensure_compatible_table_schema( + stream_name=stream_name, + table_name=final_table_name, + ) + if not self.supports_merge_insert: + # Fallback to emulated merge if the database does not support merge natively. + self._emulated_merge_temp_table_to_final_table( + stream_name=stream_name, + temp_table_name=temp_table_name, + final_table_name=final_table_name, + ) + return + + self._merge_temp_table_to_final_table( + stream_name=stream_name, + temp_table_name=temp_table_name, + final_table_name=final_table_name, + ) + return + + raise exc.AirbyteInternalError( + message="Sync mode is not supported.", + context={ + "sync_mode": sync_mode, + }, + ) + + def _drop_duplicates(self, table_name: str, stream_name: str) -> str: + primary_keys = self.catalog_provider.get_primary_keys(stream_name) + new_table_name = f"{table_name}_deduped" + if primary_keys: + pks = ", ".join(primary_keys) + sql = f""" + -- Drop duplicates from temp table + CREATE TABLE {self._fully_qualified(new_table_name)} AS ( + SELECT * FROM {self._fully_qualified(table_name)} + QUALIFY row_number() OVER (PARTITION BY ({pks}) ORDER BY {AB_EXTRACTED_AT_COLUMN} DESC) = 1 + ) + """ + self._execute_sql(sql) + return new_table_name + return table_name + + def write_stream_data_from_buffer( + self, + buffer: Dict[str, Dict[str, List[Any]]], + stream_name: str, + sync_mode: DestinationSyncMode, + ) -> None: + temp_table_name = self._create_table_for_loading(stream_name, batch_id=None) + try: + pa_table = pa.Table.from_pydict(buffer[stream_name]) + except Exception: + logger.exception( + "Writing with PyArrow table failed, falling back to writing with executemany. Expect some performance degradation." + ) + self._write_with_executemany(buffer, stream_name, temp_table_name) + else: + # DuckDB will automatically find and SELECT from the `pa_table` + # local variable defined above. + self._write_from_pa_table(temp_table_name, stream_name, pa_table) + + temp_table_name_dedup = self._drop_duplicates(temp_table_name, stream_name) + + try: + self._write_temp_table_to_target_table( + stream_name=stream_name, + temp_table_name=temp_table_name_dedup, + final_table_name=stream_name, + sync_mode=sync_mode, + ) + finally: + self._drop_temp_table(temp_table_name_dedup, if_exists=True) + self._drop_temp_table(temp_table_name, if_exists=True) diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/motherduck.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/motherduck.py new file mode 100644 index 000000000000..2e4316c12944 --- /dev/null +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/motherduck.py @@ -0,0 +1,81 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. +"""A MotherDuck implementation of the cache, built on DuckDB. + +## Usage Example + +```python +from airbyte as ab +from airbyte.caches import MotherDuckCache + +cache = MotherDuckCache( + database="mydatabase", + schema_name="myschema", + api_key=ab.get_secret("MOTHERDUCK_API_KEY"), +) +""" + +from __future__ import annotations + +import warnings + +from airbyte_cdk.sql.secrets import SecretString +from destination_motherduck.processors.duckdb import DuckDBConfig, DuckDBSqlProcessor +from duckdb_engine import DuckDBEngineWarning +from overrides import overrides +from pydantic import Field + +# Suppress warnings from DuckDB about reflection on indices. +# https://github.com/Mause/duckdb_engine/issues/905 +warnings.filterwarnings( + "ignore", + message="duckdb-engine doesn't yet support reflection on indices", + category=DuckDBEngineWarning, +) + + +class MotherDuckConfig(DuckDBConfig): + """Configuration for the MotherDuck cache.""" + + database: str = Field() + api_key: SecretString = Field() + db_path: str = Field(default="md:") + custom_user_agent: str = Field(default="airbyte") + + @overrides + def get_sql_alchemy_url(self) -> SecretString: + """Return the SQLAlchemy URL to use.""" + # Suppress warnings from DuckDB about reflection on indices. + # https://github.com/Mause/duckdb_engine/issues/905 + warnings.filterwarnings( + "ignore", + message="duckdb-engine doesn't yet support reflection on indices", + category=DuckDBEngineWarning, + ) + + return SecretString( + f"duckdb:///md:{self.database}?motherduck_token={self.api_key}" + f"&custom_user_agent={self.custom_user_agent}" + # Not sure why this doesn't work. We have to override later in the flow. + # f"&schema={self.schema_name}" + ) + + @overrides + def get_database_name(self) -> str: + """Return the name of the database.""" + return self.database + + +class MotherDuckSqlProcessor(DuckDBSqlProcessor): + """A cache implementation for MotherDuck.""" + + supports_merge_insert = False + + @overrides + def _setup(self) -> None: + """Do any necessary setup, if applicable. + + Note: The DuckDB parent class requires pre-creation of local directory structure. We + don't need to do that here so we override the method be a no-op. + """ + # No setup to do and no need to pre-create local file storage. + pass diff --git a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py index 47407a29ae48..41d3875996ab 100644 --- a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py +++ b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py @@ -277,7 +277,7 @@ def test_write( with con: cursor = con.execute( "SELECT key1, key2, _airbyte_raw_id, _airbyte_extracted_at, _airbyte_meta " - f"FROM {test_schema_name}._airbyte_raw_{test_table_name} ORDER BY key1" + f"FROM {test_schema_name}.{test_table_name} ORDER BY key1" ) result = cursor.fetchall() @@ -319,7 +319,7 @@ def test_write_dupe( with con: cursor = con.execute( "SELECT key1, key2, _airbyte_raw_id, _airbyte_extracted_at, _airbyte_meta " - f"FROM {test_schema_name}._airbyte_raw_{test_table_name} ORDER BY key1" + f"FROM {test_schema_name}.{test_table_name} ORDER BY key1" ) result = cursor.fetchall() @@ -458,7 +458,7 @@ def test_large_number_of_writes( with con: cursor = con.execute( "SELECT count(1) " - f"FROM {test_schema_name}._airbyte_raw_{test_large_table_name}" + f"FROM {test_schema_name}.{test_large_table_name}" ) result = cursor.fetchall() assert result[0][0] == TOTAL_RECORDS - TOTAL_RECORDS // (BATCH_WRITE_SIZE + 1) diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index c6bdcc4019df..cbdee152180a 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.4 + dockerImageTag: 0.1.5 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index 74279e57d994..02436880ef82 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-motherduck" -version = "0.1.4" +version = "0.1.5" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index 42b20835aa5c..968a101222f9 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.5 | 2024-10-28 | [47694](https://github.com/airbytehq/airbyte/pull/47694) | Resolve write failures, move processor classes into the connector. | | 0.1.4 | 2024-10-28 | [47688](https://github.com/airbytehq/airbyte/pull/47688) | Use new destination table name format, explicitly insert PyArrow table columns by name and add debug info for column mismatches. | | 0.1.3 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Fix bug causing MotherDuck API key to not be correctly passed to the engine. | | 0.1.2 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Use `saas_only` mode during connection check to reduce ram usage. | From 3a6055d64dcb97a7a3aaa2c869c3dc0ec983b10f Mon Sep 17 00:00:00 2001 From: Tope Folorunso <66448986+topefolorunso@users.noreply.github.com> Date: Tue, 29 Oct 2024 00:46:15 +0100 Subject: [PATCH 257/808] =?UTF-8?q?=E2=9C=A8=20Source=20Younium=20:=20Migr?= =?UTF-8?q?ate=20to=20Manifest-only=20(#47281)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Octavia Squidington III --- .../connectors/source-younium/README.md | 89 +- .../connectors/source-younium/__init__.py | 3 - .../source-younium/acceptance-test-config.yml | 2 +- .../{source_younium => }/components.py | 0 .../connectors/source-younium/main.py | 8 - .../connectors/source-younium/manifest.yaml | 6231 +++++++++++++++++ .../connectors/source-younium/metadata.yaml | 8 +- .../connectors/source-younium/poetry.lock | 1475 ---- .../connectors/source-younium/pyproject.toml | 28 - .../source-younium/source_younium/__init__.py | 8 - .../source_younium/manifest.yaml | 2994 -------- .../source-younium/source_younium/run.py | 14 - .../source-younium/source_younium/source.py | 18 - docs/integrations/sources/younium.md | 1 + 14 files changed, 6262 insertions(+), 4617 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-younium/__init__.py rename airbyte-integrations/connectors/source-younium/{source_younium => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-younium/main.py create mode 100644 airbyte-integrations/connectors/source-younium/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-younium/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-younium/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-younium/source_younium/__init__.py delete mode 100644 airbyte-integrations/connectors/source-younium/source_younium/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-younium/source_younium/run.py delete mode 100644 airbyte-integrations/connectors/source-younium/source_younium/source.py diff --git a/airbyte-integrations/connectors/source-younium/README.md b/airbyte-integrations/connectors/source-younium/README.md index ceafc620c9db..d2640adb8393 100644 --- a/airbyte-integrations/connectors/source-younium/README.md +++ b/airbyte-integrations/connectors/source-younium/README.md @@ -1,49 +1,22 @@ # Younium source connector -This is the repository for the Younium source connector, written in Python. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/younium). +This directory contains the manifest-only connector for `source-younium`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development - -### Prerequisites - -- Python (~=3.9) -- Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) - -### Installing the connector - -From this connector directory, run: - -```bash -poetry install --with dev -``` - -### Create credentials +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/younium). -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/younium) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_younium/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `sample_files/sample_config.json` for a sample config file. - -### Locally running the connector - -``` -poetry run source-younium spec -poetry run source-younium check --config secrets/config.json -poetry run source-younium discover --config secrets/config.json -poetry run source-younium read --config secrets/config.json --catalog sample_files/configured_catalog.json -``` +## Local development -### Running unit tests +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -To run unit tests locally, from the connector directory run: - -``` -poetry run pytest unit_tests -``` +If you prefer to develop locally, you can follow the instructions below. ### Building the docker image +You can build any manifest-only connector with `airbyte-ci`: + 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: @@ -53,18 +26,24 @@ airbyte-ci connectors --name=source-younium build An image will be available on your host with the tag `airbyte/source-younium:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/younium) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. + ### Running as a docker container -Then run any of the connector commands as follows: +Then run any of the standard source connector commands: -``` +```bash docker run --rm airbyte/source-younium:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-younium:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-younium:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-younium:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): @@ -72,33 +51,15 @@ You can run our full test suite locally using [`airbyte-ci`](https://github.com/ airbyte-ci connectors --name=source-younium test ``` -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -### Dependency Management - -All of your dependencies should be managed via Poetry. -To add a new dependency, run: - -```bash -poetry add -``` - -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? - -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-younium test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. +If you want to contribute changes to `source-younium`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-younium test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + - bump the `dockerImageTag` value in in `metadata.yaml` 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/younium.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. -8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. +8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-younium/__init__.py b/airbyte-integrations/connectors/source-younium/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-younium/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-younium/acceptance-test-config.yml b/airbyte-integrations/connectors/source-younium/acceptance-test-config.yml index 99312727f37e..045b1b0c0f25 100644 --- a/airbyte-integrations/connectors/source-younium/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-younium/acceptance-test-config.yml @@ -4,7 +4,7 @@ connector_image: airbyte/source-younium:dev acceptance_tests: spec: tests: - - spec_path: "source_younium/spec.yaml" + - spec_path: "manifest.yaml" connection: tests: - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-younium/source_younium/components.py b/airbyte-integrations/connectors/source-younium/components.py similarity index 100% rename from airbyte-integrations/connectors/source-younium/source_younium/components.py rename to airbyte-integrations/connectors/source-younium/components.py diff --git a/airbyte-integrations/connectors/source-younium/main.py b/airbyte-integrations/connectors/source-younium/main.py deleted file mode 100644 index 8fcc0a655630..000000000000 --- a/airbyte-integrations/connectors/source-younium/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_younium.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-younium/manifest.yaml b/airbyte-integrations/connectors/source-younium/manifest.yaml new file mode 100644 index 000000000000..17bf7137ed61 --- /dev/null +++ b/airbyte-integrations/connectors/source-younium/manifest.yaml @@ -0,0 +1,6231 @@ +version: "4.3.2" +definitions: + selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else 'https://api.younium.com' + }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + base_stream: + type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + account_stream: + type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + name: account + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + accountNumber: + description: The unique identifier for the account. + type: + - "null" + - string + accountType: + description: The type of the account. + type: + - "null" + - string + accountsReceivable: + description: The total accounts receivable amount. + type: + - "null" + - string + acv: + description: Annual Contract Value + additionalProperties: true + properties: + amount: + description: ACV amount. + type: + - "null" + - number + baseCurrencyAmount: + description: ACV amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for ACV. + type: + - "null" + - string + currencyCode: + description: Currency code for ACV. + type: + - "null" + - string + type: object + addresses: + description: List of addresses associated with the account. + items: + additionalProperties: true + properties: + city: + description: City of the address. + type: + - "null" + - string + country: + description: Country of the address. + type: + - "null" + - string + description: + description: Description of the address. + type: + - "null" + - string + id: + description: Unique identifier for the address. + type: + - "null" + - string + street: + description: Street of the address. + type: + - "null" + - string + zip: + description: ZIP or postal code of the address. + type: + - "null" + - string + type: object + type: array + cmrr: + description: Current Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: CMRR amount. + type: + - "null" + - number + baseCurrencyAmount: + description: CMRR amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for CMRR. + type: + - "null" + - string + currencyCode: + description: Currency code for CMRR. + type: + - "null" + - string + type: object + created: + description: Date and time when the account was created. + type: + - "null" + - string + currencyCode: + description: Currency code used for transactions. + type: + - "null" + - string + customFields: + description: Additional custom fields associated with the account. + additionalProperties: true + type: object + defaultDeliveryAddress: + description: Default delivery address for the account. + additionalProperties: true + properties: + country: + description: Country of the default delivery address. + type: + - "null" + - string + id: + description: Unique identifier for the default delivery address. + type: + - "null" + - string + type: object + defaultInvoiceAddress: + description: Default invoice address for the account. + additionalProperties: true + properties: + city: + description: City of the default invoice address. + type: + - "null" + - string + country: + description: Country of the default invoice address. + type: + - "null" + - string + description: + description: Description of the default invoice address. + type: + - "null" + - string + id: + description: Unique identifier for the default invoice address. + type: + - "null" + - string + street: + description: Street of the default invoice address. + type: + - "null" + - string + zip: + description: ZIP or postal code of the default invoice address. + type: + - "null" + - string + type: object + defaultPaymentTerm: + description: Default payment term for the account. + type: + - "null" + - string + emrr: + description: Expected Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: EMRR amount. + type: + - "null" + - number + baseCurrencyAmount: + description: EMRR amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for EMRR. + type: + - "null" + - string + currencyCode: + description: Currency code for EMRR. + type: + - "null" + - string + type: object + id: + description: Unique identifier for the account. + type: + - "null" + - string + inactive: + description: Indicates if the account is inactive. + type: + - "null" + - boolean + invoiceDeliveryMethod: + description: Preferred method of delivery for invoices. + type: + - "null" + - string + invoiceTemplateId: + description: Unique identifier for the invoice template used. + type: + - "null" + - string + modified: + description: Date and time when the account was last modified. + type: + - "null" + - string + name: + description: Name of the account. + type: + - "null" + - string + oneTimeFees: + description: One-time fees charged to the account. + additionalProperties: true + properties: + amount: + description: One-time fees amount. + type: + - "null" + - number + baseCurrencyAmount: + description: One-time fees amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for one-time fees. + type: + - "null" + - string + currencyCode: + description: Currency code for one-time fees. + type: + - "null" + - string + type: object + organizationNumber: + description: The organization number associated with the account. + type: + - "null" + - string + ourReference: + description: Our reference for the account. + type: + - "null" + - string + taxRegistrationNumber: + description: Tax registration number for the account. + type: + - "null" + - string + taxTemplate: + description: Tax template applied to the account. + type: + - "null" + - string + tcv: + description: Total Contract Value + additionalProperties: true + properties: + amount: + description: TCV amount. + type: + - "null" + - number + baseCurrencyAmount: + description: TCV amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for TCV. + type: + - "null" + - string + currencyCode: + description: Currency code for TCV. + type: + - "null" + - string + type: object + type: object + booking_stream: + type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + name: booking + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + accountCategory: + description: Category of the account + type: + - "null" + - string + acv: + description: Annual Contracted Value + additionalProperties: true + properties: + amount: + description: ACV amount + type: + - "null" + - number + amountInBaseCurrency: + description: ACV amount in base currency + type: + - "null" + - number + type: object + bookingLines: + description: List of booking line items + items: + additionalProperties: true + properties: + acv: + description: Annual Contracted Value for the booking line + additionalProperties: true + properties: + amount: + description: ACV amount + type: + - "null" + - number + baseCurrencyAmount: + description: ACV amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for ACV + type: + - "null" + - string + currencyCode: + description: Currency code for ACV + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for ACV + type: + - "null" + - string + type: object + charge: + description: Charge details + additionalProperties: true + properties: + chargeNumber: + description: Charge number + type: + - "null" + - string + description: + description: Charge description + type: + - "null" + - string + id: + description: Charge ID + type: + - "null" + - string + name: + description: Charge name + type: + - "null" + - string + type: object + cmrr: + description: Contracted Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: CMRR amount + type: + - "null" + - number + baseCurrencyAmount: + description: CMRR amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for CMRR + type: + - "null" + - string + currencyCode: + description: Currency code for CMRR + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for CMRR + type: + - "null" + - string + type: object + created: + description: Date of creation + type: + - "null" + - string + emrr: + description: Expansion Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: EMRR amount + type: + - "null" + - number + baseCurrencyAmount: + description: EMRR amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for EMRR + type: + - "null" + - string + currencyCode: + description: Currency code for EMRR + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for EMRR + type: + - "null" + - string + type: object + fmrr: + description: Forecasted Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: FMRR amount + type: + - "null" + - number + baseCurrencyAmount: + description: FMRR amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for FMRR + type: + - "null" + - string + currencyCode: + description: Currency code for FMRR + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for FMRR + type: + - "null" + - string + type: object + modified: + description: Date of modification + type: + - "null" + - string + oneTimeFees: + description: One-time fees information + additionalProperties: true + properties: + amount: + description: One-time fees amount + type: + - "null" + - number + baseCurrencyAmount: + description: One-time fees amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for one-time fees + type: + - "null" + - string + currencyCode: + description: Currency code for one-time fees + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for one-time fees + type: + - "null" + - string + type: object + tcv: + description: Total Contracted Value + additionalProperties: true + properties: + amount: + description: TCV amount + type: + - "null" + - number + baseCurrencyAmount: + description: TCV amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for TCV + type: + - "null" + - string + currencyCode: + description: Currency code for TCV + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for TCV + type: + - "null" + - string + type: object + type: object + type: array + bookingType: + description: Type of booking + type: + - "null" + - string + changeType: + description: Type of change + type: + - "null" + - string + classification: + description: Classification details + additionalProperties: true + properties: + chartColor: + description: Color for classification in a chart + type: + - "null" + - string + classificationType: + description: Type of classification + type: + - "null" + - string + description: + description: Classification description + type: + - "null" + - string + isSystemClassification: + description: Flag indicating if the classification is a system classification + type: + - "null" + - boolean + name: + description: Classification name + type: + - "null" + - string + type: object + cmrr: + description: Contracted Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: CMRR amount + type: + - "null" + - number + amountInBaseCurrency: + description: CMRR amount in base currency + type: + - "null" + - number + type: object + created: + description: Date of creation + type: + - "null" + - string + effectiveDate: + description: Effective date of the booking + type: + - "null" + - string + emrr: + description: Expansion Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: EMRR amount + type: + - "null" + - number + amountInBaseCurrency: + description: EMRR amount in base currency + type: + - "null" + - number + type: object + fmrr: + description: Forecasted Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: FMRR amount + type: + - "null" + - number + amountInBaseCurrency: + description: FMRR amount in base currency + type: + - "null" + - number + type: object + id: + description: Unique identifier for the booking + type: + - "null" + - string + modified: + description: Date of modification + type: + - "null" + - string + oneTimeFees: + description: One-time fees information + additionalProperties: true + properties: + amount: + description: One-time fees amount + type: + - "null" + - number + amountInBaseCurrency: + description: One-time fees amount in base currency + type: + - "null" + - number + type: object + order: + description: Order details + additionalProperties: true + properties: + id: + description: Order ID + type: + - "null" + - string + orderNumber: + description: Order number + type: + - "null" + - string + type: object + tcv: + description: Total Contracted Value + additionalProperties: true + properties: + amount: + description: TCV amount + type: + - "null" + - number + amountInBaseCurrency: + description: TCV amount in base currency + type: + - "null" + - number + type: object + type: object + invoice_stream: + type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + name: invoice + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the invoice + type: + - "null" + - string + invoiceNumber: + description: Unique invoice number + type: + - "null" + - string + status: + description: Current status of the invoice + type: + - "null" + - string + created: + description: Timestamp for when the invoice was created + type: + - "null" + - string + invoiceDeliveryMethod: + description: Delivery method for sending the invoice + type: + - "null" + - string + modified: + description: Timestamp for when the invoice was last modified + type: + - "null" + - string + account: + description: Information about the account related to the invoice + type: object + properties: + name: + description: Name of the account + type: + - "null" + - string + accountNumber: + description: The account number + type: + - "null" + - string + id: + description: Unique identifier for the account + type: + - "null" + - string + externalERPId: + description: External ERP ID for the account + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the account + type: + - "null" + - string + notes: + description: Additional notes or comments related to the invoice + type: + - "null" + - string + invoiceDate: + description: Date when the invoice was issued + type: + - "null" + - string + dueDate: + description: Due date for the invoice payment + type: + - "null" + - string + daysPastDue: + description: Number of days past due for the invoice payment + type: + - "null" + - number + nrOfReminders: + description: Number of reminders sent for the invoice + type: + - "null" + - number + paymentTerm: + description: Payment term details + type: object + properties: + id: + description: Unique identifier for the payment term + type: + - "null" + - string + days: + description: Number of days for the payment term + type: + - "null" + - number + name: + description: Name of the payment term + type: + - "null" + - string + currency: + description: Currency used in the invoice + type: + - "null" + - string + subtotal: + description: Subtotal amount of the invoice + type: + - "null" + - number + tax: + description: Total tax amount for the invoice + type: + - "null" + - number + totalAmount: + description: Total amount of the invoice including tax + type: + - "null" + - number + totalRoundingAmount: + description: Rounded amount in the total calculation + type: + - "null" + - number + settledAmount: + description: Amount that has been settled for the invoice + type: + - "null" + - number + balancedAmount: + description: The total balanced amount in the invoice + type: + - "null" + - number + taxIncluded: + description: Flag to indicate if tax is included in the total amount + type: + - "null" + - boolean + invoiceAddress: + description: Invoice address details + type: object + properties: + id: + description: Unique identifier for the invoice address + type: + - "null" + - string + description: + description: Additional description for the invoice address + type: + - "null" + - string + name: + description: Name associated with the invoice address + type: + - "null" + - string + street: + description: Street address in the invoice address + type: + - "null" + - string + street2: + description: Additional street details in the invoice address + type: + - "null" + - string + city: + description: City in the invoice address + type: + - "null" + - string + county: + description: County in the invoice address + type: + - "null" + - string + state: + description: State in the invoice address + type: + - "null" + - string + zip: + description: Zip code in the invoice address + type: + - "null" + - string + country: + description: Country in the invoice address + type: + - "null" + - string + deliveryAddress: + description: Delivery address for the invoice + type: object + properties: + id: + description: Unique identifier for the delivery address + type: + - "null" + - string + description: + description: Additional description for the delivery address + type: + - "null" + - string + name: + description: Name associated with the delivery address + type: + - "null" + - string + street: + description: Street address in the delivery address + type: + - "null" + - string + street2: + description: Additional street details in the delivery address + type: + - "null" + - string + city: + description: City in the delivery address + type: + - "null" + - string + county: + description: County in the delivery address + type: + - "null" + - string + state: + description: State in the delivery address + type: + - "null" + - string + zip: + description: Zip code in the delivery address + type: + - "null" + - string + country: + description: Country in the delivery address + type: + - "null" + - string + invoiceBatchId: + description: Identifier for the batch of invoices + type: + - "null" + - string + invoiceLines: + description: Details of each line item in the invoice + type: array + items: + type: object + properties: + id: + description: Unique identifier for the line item + type: + - "null" + - string + invoiceLineNumber: + description: Line number in the invoice for the item + type: + - "null" + - number + productNumber: + description: Product number for the line item + type: + - "null" + - string + productName: + description: Name of the product for the line item + type: + - "null" + - string + chargeDescription: + description: Description of the charge for the line item + type: + - "null" + - string + chargeNumber: + description: Charge number for the line item + type: + - "null" + - string + quantity: + description: Quantity of the product in the line item + type: + - "null" + - number + unitOfMeasure: + description: Unit of measure for the product in the line item + type: object + properties: + id: + description: Unique identifier for the unit of measure + type: + - "null" + - string + unitCode: + description: Code representing the unit of measure + type: + - "null" + - string + name: + description: Name of the unit of measure + type: + - "null" + - string + displayName: + description: Display name of the unit of measure + type: + - "null" + - string + price: + description: Price of the line item + type: + - "null" + - number + subtotal: + description: Subtotal amount for the line item + type: + - "null" + - number + total: + description: Total amount for the line item + type: + - "null" + - number + tax: + description: Tax amount for the line item + type: + - "null" + - number + servicePeriodStartDate: + description: Start date of the service period for the line item + type: + - "null" + - string + servicePeriodEndDate: + description: End date of the service period for the line item + type: + - "null" + - string + notes: + description: Additional notes for the line item + type: + - "null" + - string + orderChargeId: + description: Identifier for the order charge related to the line + item + type: + - "null" + - string + orderId: + description: Identifier for the order related to the line item + type: + - "null" + - string + accountId: + description: Unique identifier for the account associated with the + line item + type: + - "null" + - string + customFields: + description: Custom fields associated with the line item + type: + - "null" + - object + accountsReceivable: + description: Details about accounts receivable for the line item + type: object + properties: + id: + description: Unique identifier for the accounts receivable + type: + - "null" + - string + code: + description: Code for the accounts receivable + type: + - "null" + - string + name: + description: Name of the accounts receivable + type: + - "null" + - string + description: + description: Description of the accounts receivable + type: + - "null" + - string + externalERPId: + description: External ERP ID for the accounts receivable + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the accounts receivable + type: + - "null" + - string + deferredRevenue: + description: Details of deferred revenue for the line item + type: object + properties: + id: + description: Unique identifier for the deferred revenue + type: + - "null" + - string + code: + description: Code for the deferred revenue + type: + - "null" + - string + name: + description: Name of the deferred revenue + type: + - "null" + - string + description: + description: Description of the deferred revenue + type: + - "null" + - string + externalERPId: + description: External ERP ID for the deferred revenue + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the deferred revenue + type: + - "null" + - string + recognizedRevenue: + description: Details of recognized revenue for the line item + type: object + properties: + id: + description: Unique identifier for the recognized revenue + type: + - "null" + - string + code: + description: Code for the recognized revenue + type: + - "null" + - string + name: + description: Name of the recognized revenue + type: + - "null" + - string + description: + description: Description of the recognized revenue + type: + - "null" + - string + externalERPId: + description: External ERP ID for the recognized revenue + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the recognized revenue + type: + - "null" + - string + externalERPId: + description: External ERP ID for the line item + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the line item + type: + - "null" + - string + taxCategoryName: + description: Name of the tax category + type: + - "null" + - string + taxRate: + description: Tax rate applied to the line item + type: + - "null" + - number + yourReference: + description: Reference provided by the buyer + type: + - "null" + - string + ourReference: + description: Reference provided by the company + type: + - "null" + - string + yourOrderNumber: + description: Order number specified by the buyer + type: + - "null" + - string + buyerReference: + description: Reference information provided by the buyer + type: + - "null" + - string + invoiceType: + description: Type of the invoice + type: + - "null" + - string + sendMethod: + description: Method used for sending the invoice + type: + - "null" + - string + exchangeRate: + description: Exchange rate used in the invoice + type: + - "null" + - number + settledNotes: + description: Notes related to the settled amount + type: + - "null" + - string + invoiceTemplateId: + description: Identifier for the invoice template used + type: + - "null" + - string + disableAutomaticInvoiceReminder: + description: Flag to indicate if automatic invoice reminders are disabled + type: + - "null" + - boolean + onlinePaymentLink: + description: Link for online payment of the invoice + type: + - "null" + - string + accountsReceivable: + description: Details about accounts receivable + type: object + properties: + id: + description: Unique identifier for the accounts receivable + type: + - "null" + - string + code: + description: Code for the accounts receivable + type: + - "null" + - string + name: + description: Name of the accounts receivable + type: + - "null" + - string + description: + description: Description of the accounts receivable + type: + - "null" + - string + externalERPId: + description: External ERP ID for the accounts receivable + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the accounts receivable + type: + - "null" + - string + customFields: + description: Custom fields associated with the invoice + type: + - "null" + - object + externalERPId: + description: External ERP ID for the invoice + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the invoice + type: + - "null" + - string + product_stream: + type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + name: product + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for the product. + type: + - "null" + - string + productNumber: + description: The unique number associated with the product. + type: + - "null" + - string + name: + description: The name of the product. + type: + - "null" + - string + created: + description: The date when the product was created. + type: + - "null" + - string + modified: + description: The date when the product was last modified. + type: + - "null" + - string + productType: + description: The type of product. + type: + - "null" + - string + category: + description: The category the product belongs to. + type: + - "null" + - string + activationDate: + description: The date when the product is activated. + type: + - "null" + - string + endOfNewSalesDate: + description: The end date for new sales of the product. + type: + - "null" + - string + endOfRenewalDate: + description: The end date for product renewals. + type: + - "null" + - string + endOfLifeDate: + description: The end of life date for the product. + type: + - "null" + - string + isFrameworkProduct: + description: Indicates if the product is a framework product. + type: + - "null" + - boolean + chargePlans: + description: List of charge plans associated with the product + type: array + items: + type: object + properties: + id: + description: The unique identifier for the charge plan. + type: + - "null" + - string + chargePlanNumber: + description: The number associated with the charge plan. + type: + - "null" + - string + name: + description: The name of the charge plan. + type: + - "null" + - string + effectiveStartDate: + description: The date when the charge plan becomes effective. + type: + - "null" + - string + endOfNewSalesDate: + description: The end date for new sales of the charge plan. + type: + - "null" + - string + effectiveEndDate: + description: The date when the charge plan is no longer effective. + type: + - "null" + - string + charges: + description: List of charges related to the charge plan + type: array + items: + type: object + properties: + id: + description: The unique identifier for the charge. + type: + - "null" + - string + chargeNumber: + description: The number associated with the charge. + type: + - "null" + - string + name: + description: The name of the charge. + type: + - "null" + - string + model: + description: The model associated with the charge. + type: + - "null" + - string + chargeType: + description: The type of charge. + type: + - "null" + - string + unitCode: + description: The unit code for the charge. + type: + - "null" + - string + defaultQuantity: + description: The default quantity for the charge. + type: + - "null" + - number + pricePeriod: + description: The period for pricing. + type: + - "null" + - string + usageRating: + description: The rating for usage. + type: + - "null" + - string + createInvoiceLinesPerTier: + description: Whether to create invoice lines per tier. + type: + - "null" + - boolean + billingDay: + description: The day of the month when billing occurs. + type: + - "null" + - string + specificBillingDay: + description: A specific day for billing. + type: + - "null" + - number + billingPeriod: + description: The period for billing. + type: + - "null" + - string + periodAlignment: + description: The alignment of the billing period. + type: + - "null" + - string + billingTiming: + description: The timing of billing. + type: + - "null" + - string + taxTemplate: + description: The tax template used for the charge. + type: + - "null" + - string + taxIncluded: + description: Indicates if tax is included in the charge. + type: + - "null" + - boolean + externalERPId: + description: The ID from an external ERP system. + type: + - "null" + - string + externalCRMId: + description: The ID from an external CRM system. + type: + - "null" + - string + deferredRevenueAccount: + description: The account used for deferred revenue. + type: + - "null" + - string + recognizedRevenueAccount: + description: The account used for recognized revenue. + type: + - "null" + - string + customFields: + description: Custom fields associated with the charge. + type: + - "null" + - object + priceDetails: + description: Details of pricing related to the charge + type: array + items: + type: object + properties: + currency: + description: The currency for pricing. + type: + - "null" + - string + price: + description: The price for the quantity range. + type: + - "null" + - number + tier: + description: The tier level for pricing. + type: + - "null" + - number + description: + description: A description of the price details. + type: + - "null" + - string + fromQuantity: + description: The minimum quantity for the price tier. + type: + - "null" + - number + toQuantity: + description: The maximum quantity for the price tier. + type: + - "null" + - number + priceBase: + description: The base price for the tier. + type: + - "null" + - string + externalERPId: + description: The ID from an external ERP system. + type: + - "null" + - string + externalCRMId: + description: The ID from an external CRM system. + type: + - "null" + - string + customFields: + description: Custom fields associated with the product. + type: + - "null" + - object + subscription_stream: + type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + name: subscription + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the subscription + type: + - "null" + - string + orderNumber: + description: Order number associated with the subscription + type: + - "null" + - string + created: + description: Date of subscription creation + type: + - "null" + - string + modified: + description: Date of the last modification to the subscription + type: + - "null" + - string + orderBillingPeriod: + description: Billing period for the order + type: + - "null" + - string + setOrderBillingPeriod: + description: Setup billing period for the order + type: + - "null" + - boolean + version: + description: Version of the data + type: + - "null" + - number + isLastVersion: + description: Flag indicating if the subscription is the last version + type: + - "null" + - boolean + status: + description: Status of the subscription + type: + - "null" + - string + description: + description: Description of the subscription + type: + - "null" + - string + remarks: + description: Additional remarks or notes + type: + - "null" + - string + effectiveStartDate: + description: Effective start date of the subscription + type: + - "null" + - string + effectiveEndDate: + description: Effective end date of the subscription + type: + - "null" + - string + cancellationDate: + description: Date of subscription cancellation + type: + - "null" + - string + effectiveChangeDate: + description: Effective date of subscription change + type: + - "null" + - string + orderDate: + description: Date of the order + type: + - "null" + - string + noticePeriodDate: + description: Date when notice period starts + type: + - "null" + - string + lastRenewalDate: + description: Date of the last renewal + type: + - "null" + - string + noticePeriod: + description: Notice period for subscription cancellation + type: + - "null" + - number + term: + description: Term of the subscription + type: + - "null" + - number + renewalTerm: + description: Renewal term for the subscription + type: + - "null" + - number + isAutoRenewed: + description: Flag indicating if the subscription is set to auto-renew + type: + - "null" + - boolean + orderType: + description: Type of the order + type: + - "null" + - string + termType: + description: Type of the subscription term + type: + - "null" + - string + orderPaymentMethod: + description: Payment method used for the order + type: + - "null" + - string + invoiceSeparatly: + description: Flag indicating if the subscription is invoiced separately + type: + - "null" + - boolean + yourReference: + description: Reference provided by user + type: + - "null" + - string + ourReference: + description: Our reference for the subscription + type: + - "null" + - string + yourOrderNumber: + description: Order number specified by user + type: + - "null" + - string + invoiceAddress: + description: Address for invoicing + type: object + properties: + id: + description: Unique identifier for the address + type: + - "null" + - string + description: + description: Description of invoice address + type: + - "null" + - string + name: + description: Name of the invoice address + type: + - "null" + - string + street: + description: Street of invoice address + type: + - "null" + - string + street2: + description: Additional street information + type: + - "null" + - string + city: + description: City of invoice address + type: + - "null" + - string + county: + description: County of invoice address + type: + - "null" + - string + state: + description: State of invoice address + type: + - "null" + - string + zip: + description: Zip code of invoice address + type: + - "null" + - string + country: + description: Country of invoice address + type: + - "null" + - string + deliveryAddress: + description: Address for product deliveries + type: object + properties: + id: + description: Unique identifier for the address + type: + - "null" + - string + description: + description: Description of delivery address + type: + - "null" + - string + name: + description: Name of the delivery address + type: + - "null" + - string + street: + description: Street of delivery address + type: + - "null" + - string + street2: + description: Additional street information + type: + - "null" + - string + city: + description: City of delivery address + type: + - "null" + - string + county: + description: County of delivery address + type: + - "null" + - string + state: + description: State of delivery address + type: + - "null" + - string + zip: + description: Zip code of delivery address + type: + - "null" + - string + country: + description: Country of delivery address + type: + - "null" + - string + invoiceBatchGroup: + description: Grouping for batch invoice processing + type: object + properties: + id: + description: Unique identifier for the invoice batch group + type: + - "null" + - string + code: + description: Code of the invoice batch group + type: + - "null" + - string + description: + description: Description of the invoice batch group + type: + - "null" + - string + paymentTerm: + description: Payment term for the subscription + type: + - "null" + - string + useAccountInvoiceBatchGroup: + description: Flag indicating if account invoice batch group is used + type: + - "null" + - boolean + account: + description: Information about the account associated with the subscription + type: object + properties: + name: + description: Name of the account + type: + - "null" + - string + accountNumber: + description: Unique identifier for the account + type: + - "null" + - string + id: + description: Unique identifier for the account + type: + - "null" + - string + externalERPId: + description: External ERP system ID associated with the account + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the account + type: + - "null" + - string + invoiceAccount: + description: Account information for invoicing + type: object + properties: + name: + description: Name of the invoice account + type: + - "null" + - string + accountNumber: + description: Account number linked to the invoice + type: + - "null" + - string + id: + description: Unique identifier for the invoice account + type: + - "null" + - string + externalERPId: + description: External ERP system ID associated with the invoice account + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the invoice account + type: + - "null" + - string + products: + description: List of products included in the subscription + type: array + items: + description: Details of each product + type: object + properties: + id: + description: Unique identifier for the product + type: + - "null" + - string + productNumber: + description: Number of the product + type: + - "null" + - string + chargePlanId: + description: ID of the charge plan + type: + - "null" + - string + chargePlanName: + description: Name of the charge plan + type: + - "null" + - string + chargePlanNumber: + description: Number of the charge plan + type: + - "null" + - string + productLineNumber: + description: Line number for the product + type: + - "null" + - number + name: + description: Name of the product + type: + - "null" + - string + charges: + description: List of charges associated with the product + type: array + items: + description: Details of each charge + type: object + properties: + id: + description: Unique identifier for the charge + type: + - "null" + - string + chargeNumber: + description: Number of the charge + type: + - "null" + - string + version: + description: Version of the charge + type: + - "null" + - number + isLastVersion: + description: Flag indicating if the charge is the last version + type: + - "null" + - boolean + name: + description: Name of the charge + type: + - "null" + - string + chargeType: + description: Type of charge + type: + - "null" + - string + priceModel: + description: Pricing model for the charge + type: + - "null" + - string + effectiveStartDate: + description: Effective start date of the charge + type: + - "null" + - string + effectiveEndDate: + description: Effective end date of the charge + type: + - "null" + - string + quantity: + description: Quantity of the charge + type: + - "null" + - number + unitCode: + description: Unit code for the charge + type: + - "null" + - string + startOn: + description: Start date for the charge + type: + - "null" + - string + endOn: + description: End date for the charge + type: + - "null" + - string + chargedThroughDate: + description: Date charges are accounted for + type: + - "null" + - string + lastRenewalDate: + description: Date of the last renewal + type: + - "null" + - string + lastPriceAdjustmentDate: + description: Date of the last price adjustment + type: + - "null" + - string + pricePeriod: + description: Pricing period for the charge + type: + - "null" + - string + usageRating: + description: Usage rating for the charge + type: + - "null" + - string + revenueRecognitionRule: + description: Rule for revenue recognition + type: + - "null" + - string + billingDay: + description: Billing day for the charge + type: + - "null" + - string + specificBillingDay: + description: Specific billing day for the charge + type: + - "null" + - number + billingPeriod: + description: Billing period for the charge + type: + - "null" + - string + billingTiming: + description: Billing timing for the charge + type: + - "null" + - string + periodAlignment: + description: Period alignment for the charge + type: + - "null" + - string + taxTemplate: + description: Tax template applied to the charge + type: + - "null" + - string + taxIncluded: + description: Flag indicating if tax is included in the charge + type: + - "null" + - boolean + createInvoiceLinesPerTier: + description: Flag indicating if invoice lines are created + per tier + type: + - "null" + - boolean + estimatedUsage: + description: Estimated usage for the charge + type: + - "null" + - number + estimatedQuantity: + description: Estimated quantity for the charge + type: + - "null" + - number + remarks: + description: Remarks or notes for the charge + type: + - "null" + - string + accountsReceivableAccount: + description: Account for accounts receivable + type: + - "null" + - string + deferredRevenueAccount: + description: Account for deferred revenue + type: + - "null" + - string + recognizedRevenueAccount: + description: Account for recognized revenue + type: + - "null" + - string + changeState: + description: Change state for the charge + type: + - "null" + - string + displayPrice: + description: Price displayed for the charge + type: + - "null" + - number + customFields: + description: Custom fields associated with the charge + type: + - "null" + - object + priceDetails: + description: Details of the pricing for the charge + type: array + items: + description: Specific pricing details + type: object + properties: + tier: + description: Pricing tier of the charge + type: + - "null" + - number + price: + description: Price of the charge + type: + - "null" + - number + listPrice: + description: List price of the charge + type: + - "null" + - number + description: + description: Description of the price + type: + - "null" + - string + fromQuantity: + description: Quantity from which the price applies + type: + - "null" + - number + toQuantity: + description: Quantity up to which the price applies + type: + - "null" + - number + priceBase: + description: Base price of the charge + type: + - "null" + - string + lineDiscountPercent: + description: Percentage of line discount + type: + - "null" + - number + lineDiscountAmount: + description: Amount of line discount + type: + - "null" + - number + recurringMonthlyAmount: + description: Recurring monthly amount for the charge + type: + - "null" + - number + recurringMonthlyAmountBase: + description: Base recurring monthly amount for the charge + type: + - "null" + - number + features: + description: List of features included in the charge + type: array + items: + description: Details of each feature + type: object + properties: + code: + description: Feature code + type: + - "null" + - string + description: + description: Description of the feature + type: + - "null" + - string + orderDiscounts: + description: Discount information applied to the charge + type: array + items: + description: Details of each discount + type: object + properties: + orderDiscountId: + description: Discount ID linked to the order + type: + - "null" + - string + chargeId: + description: Charge ID linked to the order + type: + - "null" + - string + externalERPId: + description: External ERP system ID associated with the charge + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the charge + type: + - "null" + - string + cmrr: + description: Committed Monthly Recurring Revenue of the charge + type: object + properties: + amount: + description: Amount of Committed Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + acv: + description: Annual Contract Value of the charge + type: object + properties: + amount: + description: Amount of Annual Contract Value + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + tcv: + description: Total Contract Value of the charge + type: object + properties: + amount: + description: Total Contract Value amount + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + emrr: + description: Estimated Monthly Recurring Revenue of the charge + type: object + properties: + amount: + description: Amount of Estimated Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + oneTimeFees: + description: One-time fees associated with the charge + type: object + properties: + amount: + description: Total amount of one-time fees + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + orderProductId: + description: Product ID linked to the order + type: + - "null" + - string + orderId: + description: Order ID linked to the charge + type: + - "null" + - string + customFields: + description: Custom fields associated with the product + type: + - "null" + - object + externalERPId: + description: External ERP system ID associated with the product + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the product + type: + - "null" + - string + cmrr: + description: Committed Monthly Recurring Revenue of the product + type: object + properties: + amount: + description: Amount of Committed Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + acv: + description: Annual Contract Value of the product + type: object + properties: + amount: + description: Amount of Annual Contract Value + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + emrr: + description: Estimated Monthly Recurring Revenue of the product + type: object + properties: + amount: + description: Amount of Estimated Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + oneTimeFees: + description: One-time fees associated with the product + type: object + properties: + amount: + description: Total amount of one-time fees + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + tcv: + description: Total Contract Value of the product + type: object + properties: + amount: + description: Total Contract Value amount + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + milestones: + description: List of milestones associated with the subscription + type: array + items: + description: Details of each milestone + type: object + properties: + id: + description: Unique identifier for the milestone + type: + - "null" + - string + orderId: + description: Order ID linked to the milestone + type: + - "null" + - string + name: + description: Name of the milestone + type: + - "null" + - string + description: + description: Description of the milestone + type: + - "null" + - string + milestoneDate: + description: Date of the milestone + type: + - "null" + - string + plannedDate: + description: Planned date for the milestone + type: + - "null" + - string + orderDiscounts: + description: Discount information applied to the order + type: array + items: + type: object + properties: + id: + description: Unique identifier for the discount + type: + - "null" + - string + orderId: + description: Order ID linked to the discount + type: + - "null" + - string + startOn: + description: Start date for the discount + type: + - "null" + - string + endOn: + description: End date for the discount + type: + - "null" + - string + startDate: + description: Start date of the discount + type: + - "null" + - string + endDate: + description: End date of the discount + type: + - "null" + - string + percent: + description: Percentage of the discount + type: + - "null" + - number + discountType: + description: Type of discount applied to the order + type: + - "null" + - string + orderProductCharges: + description: List of charges for products in the order + type: array + items: + description: Details of each product charge + type: object + properties: + orderDiscountId: + description: Discount ID linked to the order + type: + - "null" + - string + chargeId: + description: Charge ID linked to the order + type: + - "null" + - string + onSpecificCharges: + description: Flag indicating if the discount is applied to specific + charges + type: + - "null" + - boolean + currency: + description: Currency used for the subscription + type: + - "null" + - string + externalERPId: + description: External ERP system ID associated with the subscription + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the subscription + type: + - "null" + - string + currencyCodeToUseWhenInvoice: + description: Currency code used for invoicing + type: + - "null" + - string + customFields: + description: Custom fields associated with the subscription + type: + - "null" + - object + cmrr: + description: Committed Monthly Recurring Revenue + type: object + properties: + amount: + description: Amount of Committed Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + acv: + description: Annual Contract Value + type: object + properties: + amount: + description: Amount of Annual Contract Value + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + emrr: + description: Estimated Monthly Recurring Revenue + type: object + properties: + amount: + description: Amount of Estimated Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + oneTimeFees: + description: One-time fees charged + type: object + properties: + amount: + description: Total amount of one-time fees + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + tcv: + description: Total Contract Value of the subscription + type: object + properties: + amount: + description: Total Contract Value amount + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string +streams: +- type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + type: CustomAuthenticator + path: Accounts + name: account + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + accountNumber: + description: The unique identifier for the account. + type: + - "null" + - string + accountType: + description: The type of the account. + type: + - "null" + - string + accountsReceivable: + description: The total accounts receivable amount. + type: + - "null" + - string + acv: + description: Annual Contract Value + additionalProperties: true + properties: + amount: + description: ACV amount. + type: + - "null" + - number + baseCurrencyAmount: + description: ACV amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for ACV. + type: + - "null" + - string + currencyCode: + description: Currency code for ACV. + type: + - "null" + - string + type: object + addresses: + description: List of addresses associated with the account. + items: + additionalProperties: true + properties: + city: + description: City of the address. + type: + - "null" + - string + country: + description: Country of the address. + type: + - "null" + - string + description: + description: Description of the address. + type: + - "null" + - string + id: + description: Unique identifier for the address. + type: + - "null" + - string + street: + description: Street of the address. + type: + - "null" + - string + zip: + description: ZIP or postal code of the address. + type: + - "null" + - string + type: object + type: array + cmrr: + description: Current Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: CMRR amount. + type: + - "null" + - number + baseCurrencyAmount: + description: CMRR amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for CMRR. + type: + - "null" + - string + currencyCode: + description: Currency code for CMRR. + type: + - "null" + - string + type: object + created: + description: Date and time when the account was created. + type: + - "null" + - string + currencyCode: + description: Currency code used for transactions. + type: + - "null" + - string + customFields: + description: Additional custom fields associated with the account. + additionalProperties: true + type: object + defaultDeliveryAddress: + description: Default delivery address for the account. + additionalProperties: true + properties: + country: + description: Country of the default delivery address. + type: + - "null" + - string + id: + description: Unique identifier for the default delivery address. + type: + - "null" + - string + type: object + defaultInvoiceAddress: + description: Default invoice address for the account. + additionalProperties: true + properties: + city: + description: City of the default invoice address. + type: + - "null" + - string + country: + description: Country of the default invoice address. + type: + - "null" + - string + description: + description: Description of the default invoice address. + type: + - "null" + - string + id: + description: Unique identifier for the default invoice address. + type: + - "null" + - string + street: + description: Street of the default invoice address. + type: + - "null" + - string + zip: + description: ZIP or postal code of the default invoice address. + type: + - "null" + - string + type: object + defaultPaymentTerm: + description: Default payment term for the account. + type: + - "null" + - string + emrr: + description: Expected Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: EMRR amount. + type: + - "null" + - number + baseCurrencyAmount: + description: EMRR amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for EMRR. + type: + - "null" + - string + currencyCode: + description: Currency code for EMRR. + type: + - "null" + - string + type: object + id: + description: Unique identifier for the account. + type: + - "null" + - string + inactive: + description: Indicates if the account is inactive. + type: + - "null" + - boolean + invoiceDeliveryMethod: + description: Preferred method of delivery for invoices. + type: + - "null" + - string + invoiceTemplateId: + description: Unique identifier for the invoice template used. + type: + - "null" + - string + modified: + description: Date and time when the account was last modified. + type: + - "null" + - string + name: + description: Name of the account. + type: + - "null" + - string + oneTimeFees: + description: One-time fees charged to the account. + additionalProperties: true + properties: + amount: + description: One-time fees amount. + type: + - "null" + - number + baseCurrencyAmount: + description: One-time fees amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for one-time fees. + type: + - "null" + - string + currencyCode: + description: Currency code for one-time fees. + type: + - "null" + - string + type: object + organizationNumber: + description: The organization number associated with the account. + type: + - "null" + - string + ourReference: + description: Our reference for the account. + type: + - "null" + - string + taxRegistrationNumber: + description: Tax registration number for the account. + type: + - "null" + - string + taxTemplate: + description: Tax template applied to the account. + type: + - "null" + - string + tcv: + description: Total Contract Value + additionalProperties: true + properties: + amount: + description: TCV amount. + type: + - "null" + - number + baseCurrencyAmount: + description: TCV amount in base currency. + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for TCV. + type: + - "null" + - string + currencyCode: + description: Currency code for TCV. + type: + - "null" + - string + type: object + type: object +- type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + type: CustomAuthenticator + path: Bookings + name: booking + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + accountCategory: + description: Category of the account + type: + - "null" + - string + acv: + description: Annual Contracted Value + additionalProperties: true + properties: + amount: + description: ACV amount + type: + - "null" + - number + amountInBaseCurrency: + description: ACV amount in base currency + type: + - "null" + - number + type: object + bookingLines: + description: List of booking line items + items: + additionalProperties: true + properties: + acv: + description: Annual Contracted Value for the booking line + additionalProperties: true + properties: + amount: + description: ACV amount + type: + - "null" + - number + baseCurrencyAmount: + description: ACV amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for ACV + type: + - "null" + - string + currencyCode: + description: Currency code for ACV + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for ACV + type: + - "null" + - string + type: object + charge: + description: Charge details + additionalProperties: true + properties: + chargeNumber: + description: Charge number + type: + - "null" + - string + description: + description: Charge description + type: + - "null" + - string + id: + description: Charge ID + type: + - "null" + - string + name: + description: Charge name + type: + - "null" + - string + type: object + cmrr: + description: Contracted Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: CMRR amount + type: + - "null" + - number + baseCurrencyAmount: + description: CMRR amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for CMRR + type: + - "null" + - string + currencyCode: + description: Currency code for CMRR + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for CMRR + type: + - "null" + - string + type: object + created: + description: Date of creation + type: + - "null" + - string + emrr: + description: Expansion Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: EMRR amount + type: + - "null" + - number + baseCurrencyAmount: + description: EMRR amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for EMRR + type: + - "null" + - string + currencyCode: + description: Currency code for EMRR + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for EMRR + type: + - "null" + - string + type: object + fmrr: + description: Forecasted Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: FMRR amount + type: + - "null" + - number + baseCurrencyAmount: + description: FMRR amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for FMRR + type: + - "null" + - string + currencyCode: + description: Currency code for FMRR + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for FMRR + type: + - "null" + - string + type: object + modified: + description: Date of modification + type: + - "null" + - string + oneTimeFees: + description: One-time fees information + additionalProperties: true + properties: + amount: + description: One-time fees amount + type: + - "null" + - number + baseCurrencyAmount: + description: One-time fees amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for one-time fees + type: + - "null" + - string + currencyCode: + description: Currency code for one-time fees + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for one-time fees + type: + - "null" + - string + type: object + tcv: + description: Total Contracted Value + additionalProperties: true + properties: + amount: + description: TCV amount + type: + - "null" + - number + baseCurrencyAmount: + description: TCV amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code for TCV + type: + - "null" + - string + currencyCode: + description: Currency code for TCV + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion for TCV + type: + - "null" + - string + type: object + type: object + type: array + bookingType: + description: Type of booking + type: + - "null" + - string + changeType: + description: Type of change + type: + - "null" + - string + classification: + description: Classification details + additionalProperties: true + properties: + chartColor: + description: Color for classification in a chart + type: + - "null" + - string + classificationType: + description: Type of classification + type: + - "null" + - string + description: + description: Classification description + type: + - "null" + - string + isSystemClassification: + description: Flag indicating if the classification is a system classification + type: + - "null" + - boolean + name: + description: Classification name + type: + - "null" + - string + type: object + cmrr: + description: Contracted Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: CMRR amount + type: + - "null" + - number + amountInBaseCurrency: + description: CMRR amount in base currency + type: + - "null" + - number + type: object + created: + description: Date of creation + type: + - "null" + - string + effectiveDate: + description: Effective date of the booking + type: + - "null" + - string + emrr: + description: Expansion Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: EMRR amount + type: + - "null" + - number + amountInBaseCurrency: + description: EMRR amount in base currency + type: + - "null" + - number + type: object + fmrr: + description: Forecasted Monthly Recurring Revenue + additionalProperties: true + properties: + amount: + description: FMRR amount + type: + - "null" + - number + amountInBaseCurrency: + description: FMRR amount in base currency + type: + - "null" + - number + type: object + id: + description: Unique identifier for the booking + type: + - "null" + - string + modified: + description: Date of modification + type: + - "null" + - string + oneTimeFees: + description: One-time fees information + additionalProperties: true + properties: + amount: + description: One-time fees amount + type: + - "null" + - number + amountInBaseCurrency: + description: One-time fees amount in base currency + type: + - "null" + - number + type: object + order: + description: Order details + additionalProperties: true + properties: + id: + description: Order ID + type: + - "null" + - string + orderNumber: + description: Order number + type: + - "null" + - string + type: object + tcv: + description: Total Contracted Value + additionalProperties: true + properties: + amount: + description: TCV amount + type: + - "null" + - number + amountInBaseCurrency: + description: TCV amount in base currency + type: + - "null" + - number + type: object + type: object +- type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + type: CustomAuthenticator + path: Invoices + name: invoice + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the invoice + type: + - "null" + - string + invoiceNumber: + description: Unique invoice number + type: + - "null" + - string + status: + description: Current status of the invoice + type: + - "null" + - string + created: + description: Timestamp for when the invoice was created + type: + - "null" + - string + invoiceDeliveryMethod: + description: Delivery method for sending the invoice + type: + - "null" + - string + modified: + description: Timestamp for when the invoice was last modified + type: + - "null" + - string + account: + description: Information about the account related to the invoice + type: object + properties: + name: + description: Name of the account + type: + - "null" + - string + accountNumber: + description: The account number + type: + - "null" + - string + id: + description: Unique identifier for the account + type: + - "null" + - string + externalERPId: + description: External ERP ID for the account + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the account + type: + - "null" + - string + notes: + description: Additional notes or comments related to the invoice + type: + - "null" + - string + invoiceDate: + description: Date when the invoice was issued + type: + - "null" + - string + dueDate: + description: Due date for the invoice payment + type: + - "null" + - string + daysPastDue: + description: Number of days past due for the invoice payment + type: + - "null" + - number + nrOfReminders: + description: Number of reminders sent for the invoice + type: + - "null" + - number + paymentTerm: + description: Payment term details + type: object + properties: + id: + description: Unique identifier for the payment term + type: + - "null" + - string + days: + description: Number of days for the payment term + type: + - "null" + - number + name: + description: Name of the payment term + type: + - "null" + - string + currency: + description: Currency used in the invoice + type: + - "null" + - string + subtotal: + description: Subtotal amount of the invoice + type: + - "null" + - number + tax: + description: Total tax amount for the invoice + type: + - "null" + - number + totalAmount: + description: Total amount of the invoice including tax + type: + - "null" + - number + totalRoundingAmount: + description: Rounded amount in the total calculation + type: + - "null" + - number + settledAmount: + description: Amount that has been settled for the invoice + type: + - "null" + - number + balancedAmount: + description: The total balanced amount in the invoice + type: + - "null" + - number + taxIncluded: + description: Flag to indicate if tax is included in the total amount + type: + - "null" + - boolean + invoiceAddress: + description: Invoice address details + type: object + properties: + id: + description: Unique identifier for the invoice address + type: + - "null" + - string + description: + description: Additional description for the invoice address + type: + - "null" + - string + name: + description: Name associated with the invoice address + type: + - "null" + - string + street: + description: Street address in the invoice address + type: + - "null" + - string + street2: + description: Additional street details in the invoice address + type: + - "null" + - string + city: + description: City in the invoice address + type: + - "null" + - string + county: + description: County in the invoice address + type: + - "null" + - string + state: + description: State in the invoice address + type: + - "null" + - string + zip: + description: Zip code in the invoice address + type: + - "null" + - string + country: + description: Country in the invoice address + type: + - "null" + - string + deliveryAddress: + description: Delivery address for the invoice + type: object + properties: + id: + description: Unique identifier for the delivery address + type: + - "null" + - string + description: + description: Additional description for the delivery address + type: + - "null" + - string + name: + description: Name associated with the delivery address + type: + - "null" + - string + street: + description: Street address in the delivery address + type: + - "null" + - string + street2: + description: Additional street details in the delivery address + type: + - "null" + - string + city: + description: City in the delivery address + type: + - "null" + - string + county: + description: County in the delivery address + type: + - "null" + - string + state: + description: State in the delivery address + type: + - "null" + - string + zip: + description: Zip code in the delivery address + type: + - "null" + - string + country: + description: Country in the delivery address + type: + - "null" + - string + invoiceBatchId: + description: Identifier for the batch of invoices + type: + - "null" + - string + invoiceLines: + description: Details of each line item in the invoice + type: array + items: + type: object + properties: + id: + description: Unique identifier for the line item + type: + - "null" + - string + invoiceLineNumber: + description: Line number in the invoice for the item + type: + - "null" + - number + productNumber: + description: Product number for the line item + type: + - "null" + - string + productName: + description: Name of the product for the line item + type: + - "null" + - string + chargeDescription: + description: Description of the charge for the line item + type: + - "null" + - string + chargeNumber: + description: Charge number for the line item + type: + - "null" + - string + quantity: + description: Quantity of the product in the line item + type: + - "null" + - number + unitOfMeasure: + description: Unit of measure for the product in the line item + type: object + properties: + id: + description: Unique identifier for the unit of measure + type: + - "null" + - string + unitCode: + description: Code representing the unit of measure + type: + - "null" + - string + name: + description: Name of the unit of measure + type: + - "null" + - string + displayName: + description: Display name of the unit of measure + type: + - "null" + - string + price: + description: Price of the line item + type: + - "null" + - number + subtotal: + description: Subtotal amount for the line item + type: + - "null" + - number + total: + description: Total amount for the line item + type: + - "null" + - number + tax: + description: Tax amount for the line item + type: + - "null" + - number + servicePeriodStartDate: + description: Start date of the service period for the line item + type: + - "null" + - string + servicePeriodEndDate: + description: End date of the service period for the line item + type: + - "null" + - string + notes: + description: Additional notes for the line item + type: + - "null" + - string + orderChargeId: + description: Identifier for the order charge related to the line item + type: + - "null" + - string + orderId: + description: Identifier for the order related to the line item + type: + - "null" + - string + accountId: + description: Unique identifier for the account associated with the + line item + type: + - "null" + - string + customFields: + description: Custom fields associated with the line item + type: + - "null" + - object + accountsReceivable: + description: Details about accounts receivable for the line item + type: object + properties: + id: + description: Unique identifier for the accounts receivable + type: + - "null" + - string + code: + description: Code for the accounts receivable + type: + - "null" + - string + name: + description: Name of the accounts receivable + type: + - "null" + - string + description: + description: Description of the accounts receivable + type: + - "null" + - string + externalERPId: + description: External ERP ID for the accounts receivable + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the accounts receivable + type: + - "null" + - string + deferredRevenue: + description: Details of deferred revenue for the line item + type: object + properties: + id: + description: Unique identifier for the deferred revenue + type: + - "null" + - string + code: + description: Code for the deferred revenue + type: + - "null" + - string + name: + description: Name of the deferred revenue + type: + - "null" + - string + description: + description: Description of the deferred revenue + type: + - "null" + - string + externalERPId: + description: External ERP ID for the deferred revenue + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the deferred revenue + type: + - "null" + - string + recognizedRevenue: + description: Details of recognized revenue for the line item + type: object + properties: + id: + description: Unique identifier for the recognized revenue + type: + - "null" + - string + code: + description: Code for the recognized revenue + type: + - "null" + - string + name: + description: Name of the recognized revenue + type: + - "null" + - string + description: + description: Description of the recognized revenue + type: + - "null" + - string + externalERPId: + description: External ERP ID for the recognized revenue + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the recognized revenue + type: + - "null" + - string + externalERPId: + description: External ERP ID for the line item + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the line item + type: + - "null" + - string + taxCategoryName: + description: Name of the tax category + type: + - "null" + - string + taxRate: + description: Tax rate applied to the line item + type: + - "null" + - number + yourReference: + description: Reference provided by the buyer + type: + - "null" + - string + ourReference: + description: Reference provided by the company + type: + - "null" + - string + yourOrderNumber: + description: Order number specified by the buyer + type: + - "null" + - string + buyerReference: + description: Reference information provided by the buyer + type: + - "null" + - string + invoiceType: + description: Type of the invoice + type: + - "null" + - string + sendMethod: + description: Method used for sending the invoice + type: + - "null" + - string + exchangeRate: + description: Exchange rate used in the invoice + type: + - "null" + - number + settledNotes: + description: Notes related to the settled amount + type: + - "null" + - string + invoiceTemplateId: + description: Identifier for the invoice template used + type: + - "null" + - string + disableAutomaticInvoiceReminder: + description: Flag to indicate if automatic invoice reminders are disabled + type: + - "null" + - boolean + onlinePaymentLink: + description: Link for online payment of the invoice + type: + - "null" + - string + accountsReceivable: + description: Details about accounts receivable + type: object + properties: + id: + description: Unique identifier for the accounts receivable + type: + - "null" + - string + code: + description: Code for the accounts receivable + type: + - "null" + - string + name: + description: Name of the accounts receivable + type: + - "null" + - string + description: + description: Description of the accounts receivable + type: + - "null" + - string + externalERPId: + description: External ERP ID for the accounts receivable + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the accounts receivable + type: + - "null" + - string + customFields: + description: Custom fields associated with the invoice + type: + - "null" + - object + externalERPId: + description: External ERP ID for the invoice + type: + - "null" + - string + externalCRMId: + description: External CRM ID for the invoice + type: + - "null" + - string +- type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + type: CustomAuthenticator + path: Products + name: product + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for the product. + type: + - "null" + - string + productNumber: + description: The unique number associated with the product. + type: + - "null" + - string + name: + description: The name of the product. + type: + - "null" + - string + created: + description: The date when the product was created. + type: + - "null" + - string + modified: + description: The date when the product was last modified. + type: + - "null" + - string + productType: + description: The type of product. + type: + - "null" + - string + category: + description: The category the product belongs to. + type: + - "null" + - string + activationDate: + description: The date when the product is activated. + type: + - "null" + - string + endOfNewSalesDate: + description: The end date for new sales of the product. + type: + - "null" + - string + endOfRenewalDate: + description: The end date for product renewals. + type: + - "null" + - string + endOfLifeDate: + description: The end of life date for the product. + type: + - "null" + - string + isFrameworkProduct: + description: Indicates if the product is a framework product. + type: + - "null" + - boolean + chargePlans: + description: List of charge plans associated with the product + type: array + items: + type: object + properties: + id: + description: The unique identifier for the charge plan. + type: + - "null" + - string + chargePlanNumber: + description: The number associated with the charge plan. + type: + - "null" + - string + name: + description: The name of the charge plan. + type: + - "null" + - string + effectiveStartDate: + description: The date when the charge plan becomes effective. + type: + - "null" + - string + endOfNewSalesDate: + description: The end date for new sales of the charge plan. + type: + - "null" + - string + effectiveEndDate: + description: The date when the charge plan is no longer effective. + type: + - "null" + - string + charges: + description: List of charges related to the charge plan + type: array + items: + type: object + properties: + id: + description: The unique identifier for the charge. + type: + - "null" + - string + chargeNumber: + description: The number associated with the charge. + type: + - "null" + - string + name: + description: The name of the charge. + type: + - "null" + - string + model: + description: The model associated with the charge. + type: + - "null" + - string + chargeType: + description: The type of charge. + type: + - "null" + - string + unitCode: + description: The unit code for the charge. + type: + - "null" + - string + defaultQuantity: + description: The default quantity for the charge. + type: + - "null" + - number + pricePeriod: + description: The period for pricing. + type: + - "null" + - string + usageRating: + description: The rating for usage. + type: + - "null" + - string + createInvoiceLinesPerTier: + description: Whether to create invoice lines per tier. + type: + - "null" + - boolean + billingDay: + description: The day of the month when billing occurs. + type: + - "null" + - string + specificBillingDay: + description: A specific day for billing. + type: + - "null" + - number + billingPeriod: + description: The period for billing. + type: + - "null" + - string + periodAlignment: + description: The alignment of the billing period. + type: + - "null" + - string + billingTiming: + description: The timing of billing. + type: + - "null" + - string + taxTemplate: + description: The tax template used for the charge. + type: + - "null" + - string + taxIncluded: + description: Indicates if tax is included in the charge. + type: + - "null" + - boolean + externalERPId: + description: The ID from an external ERP system. + type: + - "null" + - string + externalCRMId: + description: The ID from an external CRM system. + type: + - "null" + - string + deferredRevenueAccount: + description: The account used for deferred revenue. + type: + - "null" + - string + recognizedRevenueAccount: + description: The account used for recognized revenue. + type: + - "null" + - string + customFields: + description: Custom fields associated with the charge. + type: + - "null" + - object + priceDetails: + description: Details of pricing related to the charge + type: array + items: + type: object + properties: + currency: + description: The currency for pricing. + type: + - "null" + - string + price: + description: The price for the quantity range. + type: + - "null" + - number + tier: + description: The tier level for pricing. + type: + - "null" + - number + description: + description: A description of the price details. + type: + - "null" + - string + fromQuantity: + description: The minimum quantity for the price tier. + type: + - "null" + - number + toQuantity: + description: The maximum quantity for the price tier. + type: + - "null" + - number + priceBase: + description: The base price for the tier. + type: + - "null" + - string + externalERPId: + description: The ID from an external ERP system. + type: + - "null" + - string + externalCRMId: + description: The ID from an external CRM system. + type: + - "null" + - string + customFields: + description: Custom fields associated with the product. + type: + - "null" + - object +- type: DeclarativeStream + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: '{{ response.get("nextPage", {}) }}' + stop_condition: '{{ not response.get("nextPage", {}) }}' + page_size_option: + inject_into: request_parameter + type: RequestOption + field_name: PageSize + requester: + type: HttpRequester + url_base: "{{ 'https://apisandbox.younium.com' if config['playground'] else + 'https://api.younium.com' }}" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.CustomYouniumAuthenticator + username: "{{ config['username'] }}" + password: "{{ config['password'] }}" + legal_entity: "{{ config['legal_entity'] }}" + grant_type: password + client_id: apiclient + scope: openid youniumapi profile + type: CustomAuthenticator + path: Subscriptions + name: subscription + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the subscription + type: + - "null" + - string + orderNumber: + description: Order number associated with the subscription + type: + - "null" + - string + created: + description: Date of subscription creation + type: + - "null" + - string + modified: + description: Date of the last modification to the subscription + type: + - "null" + - string + orderBillingPeriod: + description: Billing period for the order + type: + - "null" + - string + setOrderBillingPeriod: + description: Setup billing period for the order + type: + - "null" + - boolean + version: + description: Version of the data + type: + - "null" + - number + isLastVersion: + description: Flag indicating if the subscription is the last version + type: + - "null" + - boolean + status: + description: Status of the subscription + type: + - "null" + - string + description: + description: Description of the subscription + type: + - "null" + - string + remarks: + description: Additional remarks or notes + type: + - "null" + - string + effectiveStartDate: + description: Effective start date of the subscription + type: + - "null" + - string + effectiveEndDate: + description: Effective end date of the subscription + type: + - "null" + - string + cancellationDate: + description: Date of subscription cancellation + type: + - "null" + - string + effectiveChangeDate: + description: Effective date of subscription change + type: + - "null" + - string + orderDate: + description: Date of the order + type: + - "null" + - string + noticePeriodDate: + description: Date when notice period starts + type: + - "null" + - string + lastRenewalDate: + description: Date of the last renewal + type: + - "null" + - string + noticePeriod: + description: Notice period for subscription cancellation + type: + - "null" + - number + term: + description: Term of the subscription + type: + - "null" + - number + renewalTerm: + description: Renewal term for the subscription + type: + - "null" + - number + isAutoRenewed: + description: Flag indicating if the subscription is set to auto-renew + type: + - "null" + - boolean + orderType: + description: Type of the order + type: + - "null" + - string + termType: + description: Type of the subscription term + type: + - "null" + - string + orderPaymentMethod: + description: Payment method used for the order + type: + - "null" + - string + invoiceSeparatly: + description: Flag indicating if the subscription is invoiced separately + type: + - "null" + - boolean + yourReference: + description: Reference provided by user + type: + - "null" + - string + ourReference: + description: Our reference for the subscription + type: + - "null" + - string + yourOrderNumber: + description: Order number specified by user + type: + - "null" + - string + invoiceAddress: + description: Address for invoicing + type: object + properties: + id: + description: Unique identifier for the address + type: + - "null" + - string + description: + description: Description of invoice address + type: + - "null" + - string + name: + description: Name of the invoice address + type: + - "null" + - string + street: + description: Street of invoice address + type: + - "null" + - string + street2: + description: Additional street information + type: + - "null" + - string + city: + description: City of invoice address + type: + - "null" + - string + county: + description: County of invoice address + type: + - "null" + - string + state: + description: State of invoice address + type: + - "null" + - string + zip: + description: Zip code of invoice address + type: + - "null" + - string + country: + description: Country of invoice address + type: + - "null" + - string + deliveryAddress: + description: Address for product deliveries + type: object + properties: + id: + description: Unique identifier for the address + type: + - "null" + - string + description: + description: Description of delivery address + type: + - "null" + - string + name: + description: Name of the delivery address + type: + - "null" + - string + street: + description: Street of delivery address + type: + - "null" + - string + street2: + description: Additional street information + type: + - "null" + - string + city: + description: City of delivery address + type: + - "null" + - string + county: + description: County of delivery address + type: + - "null" + - string + state: + description: State of delivery address + type: + - "null" + - string + zip: + description: Zip code of delivery address + type: + - "null" + - string + country: + description: Country of delivery address + type: + - "null" + - string + invoiceBatchGroup: + description: Grouping for batch invoice processing + type: object + properties: + id: + description: Unique identifier for the invoice batch group + type: + - "null" + - string + code: + description: Code of the invoice batch group + type: + - "null" + - string + description: + description: Description of the invoice batch group + type: + - "null" + - string + paymentTerm: + description: Payment term for the subscription + type: + - "null" + - string + useAccountInvoiceBatchGroup: + description: Flag indicating if account invoice batch group is used + type: + - "null" + - boolean + account: + description: Information about the account associated with the subscription + type: object + properties: + name: + description: Name of the account + type: + - "null" + - string + accountNumber: + description: Unique identifier for the account + type: + - "null" + - string + id: + description: Unique identifier for the account + type: + - "null" + - string + externalERPId: + description: External ERP system ID associated with the account + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the account + type: + - "null" + - string + invoiceAccount: + description: Account information for invoicing + type: object + properties: + name: + description: Name of the invoice account + type: + - "null" + - string + accountNumber: + description: Account number linked to the invoice + type: + - "null" + - string + id: + description: Unique identifier for the invoice account + type: + - "null" + - string + externalERPId: + description: External ERP system ID associated with the invoice account + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the invoice account + type: + - "null" + - string + products: + description: List of products included in the subscription + type: array + items: + description: Details of each product + type: object + properties: + id: + description: Unique identifier for the product + type: + - "null" + - string + productNumber: + description: Number of the product + type: + - "null" + - string + chargePlanId: + description: ID of the charge plan + type: + - "null" + - string + chargePlanName: + description: Name of the charge plan + type: + - "null" + - string + chargePlanNumber: + description: Number of the charge plan + type: + - "null" + - string + productLineNumber: + description: Line number for the product + type: + - "null" + - number + name: + description: Name of the product + type: + - "null" + - string + charges: + description: List of charges associated with the product + type: array + items: + description: Details of each charge + type: object + properties: + id: + description: Unique identifier for the charge + type: + - "null" + - string + chargeNumber: + description: Number of the charge + type: + - "null" + - string + version: + description: Version of the charge + type: + - "null" + - number + isLastVersion: + description: Flag indicating if the charge is the last version + type: + - "null" + - boolean + name: + description: Name of the charge + type: + - "null" + - string + chargeType: + description: Type of charge + type: + - "null" + - string + priceModel: + description: Pricing model for the charge + type: + - "null" + - string + effectiveStartDate: + description: Effective start date of the charge + type: + - "null" + - string + effectiveEndDate: + description: Effective end date of the charge + type: + - "null" + - string + quantity: + description: Quantity of the charge + type: + - "null" + - number + unitCode: + description: Unit code for the charge + type: + - "null" + - string + startOn: + description: Start date for the charge + type: + - "null" + - string + endOn: + description: End date for the charge + type: + - "null" + - string + chargedThroughDate: + description: Date charges are accounted for + type: + - "null" + - string + lastRenewalDate: + description: Date of the last renewal + type: + - "null" + - string + lastPriceAdjustmentDate: + description: Date of the last price adjustment + type: + - "null" + - string + pricePeriod: + description: Pricing period for the charge + type: + - "null" + - string + usageRating: + description: Usage rating for the charge + type: + - "null" + - string + revenueRecognitionRule: + description: Rule for revenue recognition + type: + - "null" + - string + billingDay: + description: Billing day for the charge + type: + - "null" + - string + specificBillingDay: + description: Specific billing day for the charge + type: + - "null" + - number + billingPeriod: + description: Billing period for the charge + type: + - "null" + - string + billingTiming: + description: Billing timing for the charge + type: + - "null" + - string + periodAlignment: + description: Period alignment for the charge + type: + - "null" + - string + taxTemplate: + description: Tax template applied to the charge + type: + - "null" + - string + taxIncluded: + description: Flag indicating if tax is included in the charge + type: + - "null" + - boolean + createInvoiceLinesPerTier: + description: Flag indicating if invoice lines are created per + tier + type: + - "null" + - boolean + estimatedUsage: + description: Estimated usage for the charge + type: + - "null" + - number + estimatedQuantity: + description: Estimated quantity for the charge + type: + - "null" + - number + remarks: + description: Remarks or notes for the charge + type: + - "null" + - string + accountsReceivableAccount: + description: Account for accounts receivable + type: + - "null" + - string + deferredRevenueAccount: + description: Account for deferred revenue + type: + - "null" + - string + recognizedRevenueAccount: + description: Account for recognized revenue + type: + - "null" + - string + changeState: + description: Change state for the charge + type: + - "null" + - string + displayPrice: + description: Price displayed for the charge + type: + - "null" + - number + customFields: + description: Custom fields associated with the charge + type: + - "null" + - object + priceDetails: + description: Details of the pricing for the charge + type: array + items: + description: Specific pricing details + type: object + properties: + tier: + description: Pricing tier of the charge + type: + - "null" + - number + price: + description: Price of the charge + type: + - "null" + - number + listPrice: + description: List price of the charge + type: + - "null" + - number + description: + description: Description of the price + type: + - "null" + - string + fromQuantity: + description: Quantity from which the price applies + type: + - "null" + - number + toQuantity: + description: Quantity up to which the price applies + type: + - "null" + - number + priceBase: + description: Base price of the charge + type: + - "null" + - string + lineDiscountPercent: + description: Percentage of line discount + type: + - "null" + - number + lineDiscountAmount: + description: Amount of line discount + type: + - "null" + - number + recurringMonthlyAmount: + description: Recurring monthly amount for the charge + type: + - "null" + - number + recurringMonthlyAmountBase: + description: Base recurring monthly amount for the charge + type: + - "null" + - number + features: + description: List of features included in the charge + type: array + items: + description: Details of each feature + type: object + properties: + code: + description: Feature code + type: + - "null" + - string + description: + description: Description of the feature + type: + - "null" + - string + orderDiscounts: + description: Discount information applied to the charge + type: array + items: + description: Details of each discount + type: object + properties: + orderDiscountId: + description: Discount ID linked to the order + type: + - "null" + - string + chargeId: + description: Charge ID linked to the order + type: + - "null" + - string + externalERPId: + description: External ERP system ID associated with the charge + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the charge + type: + - "null" + - string + cmrr: + description: Committed Monthly Recurring Revenue of the charge + type: object + properties: + amount: + description: Amount of Committed Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + acv: + description: Annual Contract Value of the charge + type: object + properties: + amount: + description: Amount of Annual Contract Value + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + tcv: + description: Total Contract Value of the charge + type: object + properties: + amount: + description: Total Contract Value amount + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + emrr: + description: Estimated Monthly Recurring Revenue of the charge + type: object + properties: + amount: + description: Amount of Estimated Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + oneTimeFees: + description: One-time fees associated with the charge + type: object + properties: + amount: + description: Total amount of one-time fees + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + orderProductId: + description: Product ID linked to the order + type: + - "null" + - string + orderId: + description: Order ID linked to the charge + type: + - "null" + - string + customFields: + description: Custom fields associated with the product + type: + - "null" + - object + externalERPId: + description: External ERP system ID associated with the product + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the product + type: + - "null" + - string + cmrr: + description: Committed Monthly Recurring Revenue of the product + type: object + properties: + amount: + description: Amount of Committed Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + acv: + description: Annual Contract Value of the product + type: object + properties: + amount: + description: Amount of Annual Contract Value + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + emrr: + description: Estimated Monthly Recurring Revenue of the product + type: object + properties: + amount: + description: Amount of Estimated Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + oneTimeFees: + description: One-time fees associated with the product + type: object + properties: + amount: + description: Total amount of one-time fees + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + tcv: + description: Total Contract Value of the product + type: object + properties: + amount: + description: Total Contract Value amount + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + milestones: + description: List of milestones associated with the subscription + type: array + items: + description: Details of each milestone + type: object + properties: + id: + description: Unique identifier for the milestone + type: + - "null" + - string + orderId: + description: Order ID linked to the milestone + type: + - "null" + - string + name: + description: Name of the milestone + type: + - "null" + - string + description: + description: Description of the milestone + type: + - "null" + - string + milestoneDate: + description: Date of the milestone + type: + - "null" + - string + plannedDate: + description: Planned date for the milestone + type: + - "null" + - string + orderDiscounts: + description: Discount information applied to the order + type: array + items: + type: object + properties: + id: + description: Unique identifier for the discount + type: + - "null" + - string + orderId: + description: Order ID linked to the discount + type: + - "null" + - string + startOn: + description: Start date for the discount + type: + - "null" + - string + endOn: + description: End date for the discount + type: + - "null" + - string + startDate: + description: Start date of the discount + type: + - "null" + - string + endDate: + description: End date of the discount + type: + - "null" + - string + percent: + description: Percentage of the discount + type: + - "null" + - number + discountType: + description: Type of discount applied to the order + type: + - "null" + - string + orderProductCharges: + description: List of charges for products in the order + type: array + items: + description: Details of each product charge + type: object + properties: + orderDiscountId: + description: Discount ID linked to the order + type: + - "null" + - string + chargeId: + description: Charge ID linked to the order + type: + - "null" + - string + onSpecificCharges: + description: Flag indicating if the discount is applied to specific + charges + type: + - "null" + - boolean + currency: + description: Currency used for the subscription + type: + - "null" + - string + externalERPId: + description: External ERP system ID associated with the subscription + type: + - "null" + - string + externalCRMId: + description: External CRM system ID associated with the subscription + type: + - "null" + - string + currencyCodeToUseWhenInvoice: + description: Currency code used for invoicing + type: + - "null" + - string + customFields: + description: Custom fields associated with the subscription + type: + - "null" + - object + cmrr: + description: Committed Monthly Recurring Revenue + type: object + properties: + amount: + description: Amount of Committed Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + acv: + description: Annual Contract Value + type: object + properties: + amount: + description: Amount of Annual Contract Value + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + emrr: + description: Estimated Monthly Recurring Revenue + type: object + properties: + amount: + description: Amount of Estimated Monthly Recurring Revenue + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + oneTimeFees: + description: One-time fees charged + type: object + properties: + amount: + description: Total amount of one-time fees + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string + tcv: + description: Total Contract Value of the subscription + type: object + properties: + amount: + description: Total Contract Value amount + type: + - "null" + - number + currencyCode: + description: Currency code + type: + - "null" + - string + currencyConversionDate: + description: Date of currency conversion + type: + - "null" + - string + baseCurrencyAmount: + description: Amount in base currency + type: + - "null" + - number + baseCurrencyCode: + description: Base currency code + type: + - "null" + - string +check: + type: CheckStream + stream_names: + - account + - booking + - invoice + - product + - subscription +spec: + type: Spec + documentation_url: https://docs.airbyte.com/integrations/sources/younium + connection_specification: + $schema: http://json-schema.org/draft-07/schema# + title: Younium Spec + type: object + additionalProperties: true + required: + - username + - password + - legal_entity + properties: + username: + title: Username + type: string + description: Username for Younium account + password: + title: Password + type: string + description: Account password for younium account API key + airbyte_secret: true + legal_entity: + title: Legal Entity + type: string + description: Legal Entity that data should be pulled from + playground: + title: Playground environment + type: boolean + description: Property defining if connector is used against playground or + production environment + default: false +type: DeclarativeSource diff --git a/airbyte-integrations/connectors/source-younium/metadata.yaml b/airbyte-integrations/connectors/source-younium/metadata.yaml index c5ce52274e56..ff7c34bbb57e 100644 --- a/airbyte-integrations/connectors/source-younium/metadata.yaml +++ b/airbyte-integrations/connectors/source-younium/metadata.yaml @@ -1,7 +1,7 @@ data: remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-younium registryOverrides: oss: @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: 9c74c2d7-531a-4ebf-b6d8-6181f805ecdc - dockerImageTag: 0.3.22 + dockerImageTag: 0.4.0 dockerRepository: airbyte/source-younium githubIssueLabel: source-younium icon: younium.svg @@ -27,7 +27,7 @@ data: supportLevel: community documentationUrl: https://docs.airbyte.com/integrations/sources/younium tags: - - language:python + - language:manifest-only - cdk:low-code connectorTestSuitesOptions: - suite: liveTests diff --git a/airbyte-integrations/connectors/source-younium/poetry.lock b/airbyte-integrations/connectors/source-younium/poetry.lock deleted file mode 100644 index 1aa5b5c1ab01..000000000000 --- a/airbyte-integrations/connectors/source-younium/poetry.lock +++ /dev/null @@ -1,1475 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "1.0.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-1.0.0-py3-none-any.whl", hash = "sha256:74cd8d4f9790b9a164731c42236cb015166b5ab2b0754b6a1fd730f223eb4e7f"}, - {file = "airbyte_cdk-1.0.0.tar.gz", hash = "sha256:102b75ce589460be4f75dabd3402ac7aa633c90758558c81d140fd436b76371f"}, -] - -[package.dependencies] -airbyte-protocol-models = ">=0.9.0,<1.0" -backoff = "*" -cachetools = "*" -cryptography = ">=42.0.5,<43.0.0" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -langchain_core = "0.1.42" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyjwt = ">=2.8.0,<3.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -pytz = "2024.1" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.13.0" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.13.0-py3-none-any.whl", hash = "sha256:fa8b7e1a85f9ae171c50b30d23b317da1740d051994fd3ed648f9dfba00250e2"}, - {file = "airbyte_protocol_models-0.13.0.tar.gz", hash = "sha256:09d8900ba8674a9315fa1799d17026f6b38d2187c08160449540ee93331ed2e7"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "anyio" -version = "4.6.0" -description = "High level compatibility layer for multiple asynchronous event loop implementations" -optional = false -python-versions = ">=3.9" -files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, -] - -[package.dependencies] -exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} -idna = ">=2.8" -sniffio = ">=1.1" -typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} - -[package.extras] -doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] -trio = ["trio (>=0.26.1)"] - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "cffi" -version = "1.17.1" -description = "Foreign Function Interface for Python calling C code." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, - {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, - {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, - {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, - {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, - {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, - {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, - {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, - {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, - {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, - {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, - {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, - {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, - {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, - {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, - {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, -] - -[package.dependencies] -pycparser = "*" - -[[package]] -name = "charset-normalizer" -version = "3.3.2" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "cryptography" -version = "42.0.8" -description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -optional = false -python-versions = ">=3.7" -files = [ - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e"}, - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7"}, - {file = "cryptography-42.0.8-cp37-abi3-win32.whl", hash = "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2"}, - {file = "cryptography-42.0.8-cp37-abi3-win_amd64.whl", hash = "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba"}, - {file = "cryptography-42.0.8-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14"}, - {file = "cryptography-42.0.8-cp39-abi3-win32.whl", hash = "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c"}, - {file = "cryptography-42.0.8-cp39-abi3-win_amd64.whl", hash = "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad"}, - {file = "cryptography-42.0.8.tar.gz", hash = "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2"}, -] - -[package.dependencies] -cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} - -[package.extras] -docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] -docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] -nox = ["nox"] -pep8test = ["check-sdist", "click", "mypy", "ruff"] -sdist = ["build"] -ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] -test-randomorder = ["pytest-randomly"] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "h11" -version = "0.14.0" -description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -optional = false -python-versions = ">=3.7" -files = [ - {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, - {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, -] - -[[package]] -name = "httpcore" -version = "1.0.6" -description = "A minimal low-level HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, - {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, -] - -[package.dependencies] -certifi = "*" -h11 = ">=0.13,<0.15" - -[package.extras] -asyncio = ["anyio (>=4.0,<5.0)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<1.0)"] - -[[package]] -name = "httpx" -version = "0.27.2" -description = "The next generation HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, - {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, -] - -[package.dependencies] -anyio = "*" -certifi = "*" -httpcore = "==1.*" -idna = "*" -sniffio = "*" - -[package.extras] -brotli = ["brotli", "brotlicffi"] -cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonpatch" -version = "1.33" -description = "Apply JSON-Patches (RFC 6902)" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" -files = [ - {file = "jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade"}, - {file = "jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c"}, -] - -[package.dependencies] -jsonpointer = ">=1.9" - -[[package]] -name = "jsonpointer" -version = "3.0.0" -description = "Identify specific nodes in a JSON document (RFC 6901)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, - {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, -] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "langchain-core" -version = "0.1.42" -description = "Building applications with LLMs through composability" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_core-0.1.42-py3-none-any.whl", hash = "sha256:c5653ffa08a44f740295c157a24c0def4a753333f6a2c41f76bf431cd00be8b5"}, - {file = "langchain_core-0.1.42.tar.gz", hash = "sha256:40751bf60ea5d8e2b2efe65290db434717ee3834870c002e40e2811f09d814e6"}, -] - -[package.dependencies] -jsonpatch = ">=1.33,<2.0" -langsmith = ">=0.1.0,<0.2.0" -packaging = ">=23.2,<24.0" -pydantic = ">=1,<3" -PyYAML = ">=5.3" -tenacity = ">=8.1.0,<9.0.0" - -[package.extras] -extended-testing = ["jinja2 (>=3,<4)"] - -[[package]] -name = "langsmith" -version = "0.1.131" -description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langsmith-0.1.131-py3-none-any.whl", hash = "sha256:80c106b1c42307195cc0bb3a596472c41ef91b79d15bcee9938307800336c563"}, - {file = "langsmith-0.1.131.tar.gz", hash = "sha256:626101a3bf3ca481e5110d5155ace8aa066e4e9cc2fa7d96c8290ade0fbff797"}, -] - -[package.dependencies] -httpx = ">=0.23.0,<1" -orjson = ">=3.9.14,<4.0.0" -pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} -requests = ">=2,<3" -requests-toolbelt = ">=1.0.0,<2.0.0" - -[[package]] -name = "markupsafe" -version = "2.1.5" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.7" -files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, -] - -[[package]] -name = "orjson" -version = "3.10.7" -description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -optional = false -python-versions = ">=3.8" -files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, -] - -[[package]] -name = "packaging" -version = "23.2" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pycparser" -version = "2.22" -description = "C parser in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, - {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyjwt" -version = "2.9.0" -description = "JSON Web Token implementation in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, - {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, -] - -[package.extras] -crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] -tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytz" -version = "2024.1" -description = "World timezone definitions, modern and historical" -optional = false -python-versions = "*" -files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, -] - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "requests-toolbelt" -version = "1.0.0" -description = "A utility belt for advanced users of python-requests" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, - {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, -] - -[package.dependencies] -requests = ">=2.0.1,<3.0.0" - -[[package]] -name = "setuptools" -version = "75.1.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "sniffio" -version = "1.3.1" -description = "Sniff out which async library your code is running under" -optional = false -python-versions = ">=3.7" -files = [ - {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, - {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, -] - -[[package]] -name = "tenacity" -version = "8.5.0" -description = "Retry code until it succeeds" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, - {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, -] - -[package.extras] -doc = ["reno", "sphinx"] -test = ["pytest", "tornado (>=4.5)", "typeguard"] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "7837a8e446313e068be6245532d7ddb3a63f70da7bc4c6613d26c3a1443db8e7" diff --git a/airbyte-integrations/connectors/source-younium/pyproject.toml b/airbyte-integrations/connectors/source-younium/pyproject.toml deleted file mode 100644 index 2ab2787a165d..000000000000 --- a/airbyte-integrations/connectors/source-younium/pyproject.toml +++ /dev/null @@ -1,28 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "0.3.22" -name = "source-younium" -description = "Source implementation for Younium." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/younium" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_younium" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "1.0.0" - -[tool.poetry.scripts] -source-younium = "source_younium.run:run" - -[tool.poetry.group.dev.dependencies] -pytest-mock = "^3.6.1" -requests-mock = "^1.9.3" -pytest = "^6.2" diff --git a/airbyte-integrations/connectors/source-younium/source_younium/__init__.py b/airbyte-integrations/connectors/source-younium/source_younium/__init__.py deleted file mode 100644 index 7b0e7ce0bf2e..000000000000 --- a/airbyte-integrations/connectors/source-younium/source_younium/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceYounium - -__all__ = ["SourceYounium"] diff --git a/airbyte-integrations/connectors/source-younium/source_younium/manifest.yaml b/airbyte-integrations/connectors/source-younium/source_younium/manifest.yaml deleted file mode 100644 index f6b23add47bb..000000000000 --- a/airbyte-integrations/connectors/source-younium/source_younium/manifest.yaml +++ /dev/null @@ -1,2994 +0,0 @@ -version: "0.29.0" - -definitions: - selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - requester: - type: HttpRequester - url_base: - "{{ 'https://apisandbox.younium.com' if config['playground'] else 'https://api.younium.com' - }}" - http_method: "GET" - - authenticator: - class_name: source_younium.components.CustomYouniumAuthenticator - username: "{{ config['username'] }}" - password: "{{ config['password'] }}" - legal_entity: "{{ config['legal_entity'] }}" - grant_type: password - client_id: apiclient - scope: openid youniumapi profile - - retriever: - type: SimpleRetriever - record_selector: - $ref: "#/definitions/selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: '{{ response.get("nextPage", {}) }}' - stop_condition: '{{ not response.get("nextPage", {}) }}' - page_size_option: - inject_into: request_parameter - type: RequestOption - field_name: PageSize - - requester: - $ref: "#/definitions/requester" - base_stream: - type: DeclarativeStream - retriever: - $ref: "#/definitions/retriever" - - account_stream: - $ref: "#/definitions/base_stream" - name: account - $parameters: - path: Accounts - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - additionalProperties: true - properties: - accountNumber: - description: The unique identifier for the account. - type: - - "null" - - string - accountType: - description: The type of the account. - type: - - "null" - - string - accountsReceivable: - description: The total accounts receivable amount. - type: - - "null" - - string - acv: - description: Annual Contract Value - additionalProperties: true - properties: - amount: - description: ACV amount. - type: - - "null" - - number - baseCurrencyAmount: - description: ACV amount in base currency. - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for ACV. - type: - - "null" - - string - currencyCode: - description: Currency code for ACV. - type: - - "null" - - string - type: object - addresses: - description: List of addresses associated with the account. - items: - additionalProperties: true - properties: - city: - description: City of the address. - type: - - "null" - - string - country: - description: Country of the address. - type: - - "null" - - string - description: - description: Description of the address. - type: - - "null" - - string - id: - description: Unique identifier for the address. - type: - - "null" - - string - street: - description: Street of the address. - type: - - "null" - - string - zip: - description: ZIP or postal code of the address. - type: - - "null" - - string - type: object - type: array - cmrr: - description: Current Monthly Recurring Revenue - additionalProperties: true - properties: - amount: - description: CMRR amount. - type: - - "null" - - number - baseCurrencyAmount: - description: CMRR amount in base currency. - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for CMRR. - type: - - "null" - - string - currencyCode: - description: Currency code for CMRR. - type: - - "null" - - string - type: object - created: - description: Date and time when the account was created. - type: - - "null" - - string - currencyCode: - description: Currency code used for transactions. - type: - - "null" - - string - customFields: - description: Additional custom fields associated with the account. - additionalProperties: true - type: object - defaultDeliveryAddress: - description: Default delivery address for the account. - additionalProperties: true - properties: - country: - description: Country of the default delivery address. - type: - - "null" - - string - id: - description: Unique identifier for the default delivery address. - type: - - "null" - - string - type: object - defaultInvoiceAddress: - description: Default invoice address for the account. - additionalProperties: true - properties: - city: - description: City of the default invoice address. - type: - - "null" - - string - country: - description: Country of the default invoice address. - type: - - "null" - - string - description: - description: Description of the default invoice address. - type: - - "null" - - string - id: - description: Unique identifier for the default invoice address. - type: - - "null" - - string - street: - description: Street of the default invoice address. - type: - - "null" - - string - zip: - description: ZIP or postal code of the default invoice address. - type: - - "null" - - string - type: object - defaultPaymentTerm: - description: Default payment term for the account. - type: - - "null" - - string - emrr: - description: Expected Monthly Recurring Revenue - additionalProperties: true - properties: - amount: - description: EMRR amount. - type: - - "null" - - number - baseCurrencyAmount: - description: EMRR amount in base currency. - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for EMRR. - type: - - "null" - - string - currencyCode: - description: Currency code for EMRR. - type: - - "null" - - string - type: object - id: - description: Unique identifier for the account. - type: - - "null" - - string - inactive: - description: Indicates if the account is inactive. - type: - - "null" - - boolean - invoiceDeliveryMethod: - description: Preferred method of delivery for invoices. - type: - - "null" - - string - invoiceTemplateId: - description: Unique identifier for the invoice template used. - type: - - "null" - - string - modified: - description: Date and time when the account was last modified. - type: - - "null" - - string - name: - description: Name of the account. - type: - - "null" - - string - oneTimeFees: - description: One-time fees charged to the account. - additionalProperties: true - properties: - amount: - description: One-time fees amount. - type: - - "null" - - number - baseCurrencyAmount: - description: One-time fees amount in base currency. - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for one-time fees. - type: - - "null" - - string - currencyCode: - description: Currency code for one-time fees. - type: - - "null" - - string - type: object - organizationNumber: - description: The organization number associated with the account. - type: - - "null" - - string - ourReference: - description: Our reference for the account. - type: - - "null" - - string - taxRegistrationNumber: - description: Tax registration number for the account. - type: - - "null" - - string - taxTemplate: - description: Tax template applied to the account. - type: - - "null" - - string - tcv: - description: Total Contract Value - additionalProperties: true - properties: - amount: - description: TCV amount. - type: - - "null" - - number - baseCurrencyAmount: - description: TCV amount in base currency. - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for TCV. - type: - - "null" - - string - currencyCode: - description: Currency code for TCV. - type: - - "null" - - string - type: object - type: object - booking_stream: - $ref: "#/definitions/base_stream" - name: booking - $parameters: - path: Bookings - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - additionalProperties: true - properties: - accountCategory: - description: Category of the account - type: - - "null" - - string - acv: - description: Annual Contracted Value - additionalProperties: true - properties: - amount: - description: ACV amount - type: - - "null" - - number - amountInBaseCurrency: - description: ACV amount in base currency - type: - - "null" - - number - type: object - bookingLines: - description: List of booking line items - items: - additionalProperties: true - properties: - acv: - description: Annual Contracted Value for the booking line - additionalProperties: true - properties: - amount: - description: ACV amount - type: - - "null" - - number - baseCurrencyAmount: - description: ACV amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for ACV - type: - - "null" - - string - currencyCode: - description: Currency code for ACV - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion for ACV - type: - - "null" - - string - type: object - charge: - description: Charge details - additionalProperties: true - properties: - chargeNumber: - description: Charge number - type: - - "null" - - string - description: - description: Charge description - type: - - "null" - - string - id: - description: Charge ID - type: - - "null" - - string - name: - description: Charge name - type: - - "null" - - string - type: object - cmrr: - description: Contracted Monthly Recurring Revenue - additionalProperties: true - properties: - amount: - description: CMRR amount - type: - - "null" - - number - baseCurrencyAmount: - description: CMRR amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for CMRR - type: - - "null" - - string - currencyCode: - description: Currency code for CMRR - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion for CMRR - type: - - "null" - - string - type: object - created: - description: Date of creation - type: - - "null" - - string - emrr: - description: Expansion Monthly Recurring Revenue - additionalProperties: true - properties: - amount: - description: EMRR amount - type: - - "null" - - number - baseCurrencyAmount: - description: EMRR amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for EMRR - type: - - "null" - - string - currencyCode: - description: Currency code for EMRR - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion for EMRR - type: - - "null" - - string - type: object - fmrr: - description: Forecasted Monthly Recurring Revenue - additionalProperties: true - properties: - amount: - description: FMRR amount - type: - - "null" - - number - baseCurrencyAmount: - description: FMRR amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for FMRR - type: - - "null" - - string - currencyCode: - description: Currency code for FMRR - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion for FMRR - type: - - "null" - - string - type: object - modified: - description: Date of modification - type: - - "null" - - string - oneTimeFees: - description: One-time fees information - additionalProperties: true - properties: - amount: - description: One-time fees amount - type: - - "null" - - number - baseCurrencyAmount: - description: One-time fees amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for one-time fees - type: - - "null" - - string - currencyCode: - description: Currency code for one-time fees - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion for one-time fees - type: - - "null" - - string - type: object - tcv: - description: Total Contracted Value - additionalProperties: true - properties: - amount: - description: TCV amount - type: - - "null" - - number - baseCurrencyAmount: - description: TCV amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code for TCV - type: - - "null" - - string - currencyCode: - description: Currency code for TCV - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion for TCV - type: - - "null" - - string - type: object - type: object - type: array - bookingType: - description: Type of booking - type: - - "null" - - string - changeType: - description: Type of change - type: - - "null" - - string - classification: - description: Classification details - additionalProperties: true - properties: - chartColor: - description: Color for classification in a chart - type: - - "null" - - string - classificationType: - description: Type of classification - type: - - "null" - - string - description: - description: Classification description - type: - - "null" - - string - isSystemClassification: - description: Flag indicating if the classification is a system classification - type: - - "null" - - boolean - name: - description: Classification name - type: - - "null" - - string - type: object - cmrr: - description: Contracted Monthly Recurring Revenue - additionalProperties: true - properties: - amount: - description: CMRR amount - type: - - "null" - - number - amountInBaseCurrency: - description: CMRR amount in base currency - type: - - "null" - - number - type: object - created: - description: Date of creation - type: - - "null" - - string - effectiveDate: - description: Effective date of the booking - type: - - "null" - - string - emrr: - description: Expansion Monthly Recurring Revenue - additionalProperties: true - properties: - amount: - description: EMRR amount - type: - - "null" - - number - amountInBaseCurrency: - description: EMRR amount in base currency - type: - - "null" - - number - type: object - fmrr: - description: Forecasted Monthly Recurring Revenue - additionalProperties: true - properties: - amount: - description: FMRR amount - type: - - "null" - - number - amountInBaseCurrency: - description: FMRR amount in base currency - type: - - "null" - - number - type: object - id: - description: Unique identifier for the booking - type: - - "null" - - string - modified: - description: Date of modification - type: - - "null" - - string - oneTimeFees: - description: One-time fees information - additionalProperties: true - properties: - amount: - description: One-time fees amount - type: - - "null" - - number - amountInBaseCurrency: - description: One-time fees amount in base currency - type: - - "null" - - number - type: object - order: - description: Order details - additionalProperties: true - properties: - id: - description: Order ID - type: - - "null" - - string - orderNumber: - description: Order number - type: - - "null" - - string - type: object - tcv: - description: Total Contracted Value - additionalProperties: true - properties: - amount: - description: TCV amount - type: - - "null" - - number - amountInBaseCurrency: - description: TCV amount in base currency - type: - - "null" - - number - type: object - type: object - invoice_stream: - $ref: "#/definitions/base_stream" - name: invoice - $parameters: - path: Invoices - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-04/schema# - additionalProperties: true - type: object - properties: - id: - description: Unique identifier for the invoice - type: - - "null" - - string - invoiceNumber: - description: Unique invoice number - type: - - "null" - - string - status: - description: Current status of the invoice - type: - - "null" - - string - created: - description: Timestamp for when the invoice was created - type: - - "null" - - string - invoiceDeliveryMethod: - description: Delivery method for sending the invoice - type: - - "null" - - string - modified: - description: Timestamp for when the invoice was last modified - type: - - "null" - - string - account: - description: Information about the account related to the invoice - type: object - properties: - name: - description: Name of the account - type: - - "null" - - string - accountNumber: - description: The account number - type: - - "null" - - string - id: - description: Unique identifier for the account - type: - - "null" - - string - externalERPId: - description: External ERP ID for the account - type: - - "null" - - string - externalCRMId: - description: External CRM ID for the account - type: - - "null" - - string - notes: - description: Additional notes or comments related to the invoice - type: - - "null" - - string - invoiceDate: - description: Date when the invoice was issued - type: - - "null" - - string - dueDate: - description: Due date for the invoice payment - type: - - "null" - - string - daysPastDue: - description: Number of days past due for the invoice payment - type: - - "null" - - number - nrOfReminders: - description: Number of reminders sent for the invoice - type: - - "null" - - number - paymentTerm: - description: Payment term details - type: object - properties: - id: - description: Unique identifier for the payment term - type: - - "null" - - string - days: - description: Number of days for the payment term - type: - - "null" - - number - name: - description: Name of the payment term - type: - - "null" - - string - currency: - description: Currency used in the invoice - type: - - "null" - - string - subtotal: - description: Subtotal amount of the invoice - type: - - "null" - - number - tax: - description: Total tax amount for the invoice - type: - - "null" - - number - totalAmount: - description: Total amount of the invoice including tax - type: - - "null" - - number - totalRoundingAmount: - description: Rounded amount in the total calculation - type: - - "null" - - number - settledAmount: - description: Amount that has been settled for the invoice - type: - - "null" - - number - balancedAmount: - description: The total balanced amount in the invoice - type: - - "null" - - number - taxIncluded: - description: Flag to indicate if tax is included in the total amount - type: - - "null" - - boolean - invoiceAddress: - description: Invoice address details - type: object - properties: - id: - description: Unique identifier for the invoice address - type: - - "null" - - string - description: - description: Additional description for the invoice address - type: - - "null" - - string - name: - description: Name associated with the invoice address - type: - - "null" - - string - street: - description: Street address in the invoice address - type: - - "null" - - string - street2: - description: Additional street details in the invoice address - type: - - "null" - - string - city: - description: City in the invoice address - type: - - "null" - - string - county: - description: County in the invoice address - type: - - "null" - - string - state: - description: State in the invoice address - type: - - "null" - - string - zip: - description: Zip code in the invoice address - type: - - "null" - - string - country: - description: Country in the invoice address - type: - - "null" - - string - deliveryAddress: - description: Delivery address for the invoice - type: object - properties: - id: - description: Unique identifier for the delivery address - type: - - "null" - - string - description: - description: Additional description for the delivery address - type: - - "null" - - string - name: - description: Name associated with the delivery address - type: - - "null" - - string - street: - description: Street address in the delivery address - type: - - "null" - - string - street2: - description: Additional street details in the delivery address - type: - - "null" - - string - city: - description: City in the delivery address - type: - - "null" - - string - county: - description: County in the delivery address - type: - - "null" - - string - state: - description: State in the delivery address - type: - - "null" - - string - zip: - description: Zip code in the delivery address - type: - - "null" - - string - country: - description: Country in the delivery address - type: - - "null" - - string - invoiceBatchId: - description: Identifier for the batch of invoices - type: - - "null" - - string - invoiceLines: - description: Details of each line item in the invoice - type: array - items: - type: object - properties: - id: - description: Unique identifier for the line item - type: - - "null" - - string - invoiceLineNumber: - description: Line number in the invoice for the item - type: - - "null" - - number - productNumber: - description: Product number for the line item - type: - - "null" - - string - productName: - description: Name of the product for the line item - type: - - "null" - - string - chargeDescription: - description: Description of the charge for the line item - type: - - "null" - - string - chargeNumber: - description: Charge number for the line item - type: - - "null" - - string - quantity: - description: Quantity of the product in the line item - type: - - "null" - - number - unitOfMeasure: - description: Unit of measure for the product in the line item - type: object - properties: - id: - description: Unique identifier for the unit of measure - type: - - "null" - - string - unitCode: - description: Code representing the unit of measure - type: - - "null" - - string - name: - description: Name of the unit of measure - type: - - "null" - - string - displayName: - description: Display name of the unit of measure - type: - - "null" - - string - price: - description: Price of the line item - type: - - "null" - - number - subtotal: - description: Subtotal amount for the line item - type: - - "null" - - number - total: - description: Total amount for the line item - type: - - "null" - - number - tax: - description: Tax amount for the line item - type: - - "null" - - number - servicePeriodStartDate: - description: Start date of the service period for the line item - type: - - "null" - - string - servicePeriodEndDate: - description: End date of the service period for the line item - type: - - "null" - - string - notes: - description: Additional notes for the line item - type: - - "null" - - string - orderChargeId: - description: - Identifier for the order charge related to the line - item - type: - - "null" - - string - orderId: - description: Identifier for the order related to the line item - type: - - "null" - - string - accountId: - description: - Unique identifier for the account associated with the - line item - type: - - "null" - - string - customFields: - description: Custom fields associated with the line item - type: - - "null" - - object - accountsReceivable: - description: Details about accounts receivable for the line item - type: object - properties: - id: - description: Unique identifier for the accounts receivable - type: - - "null" - - string - code: - description: Code for the accounts receivable - type: - - "null" - - string - name: - description: Name of the accounts receivable - type: - - "null" - - string - description: - description: Description of the accounts receivable - type: - - "null" - - string - externalERPId: - description: External ERP ID for the accounts receivable - type: - - "null" - - string - externalCRMId: - description: External CRM ID for the accounts receivable - type: - - "null" - - string - deferredRevenue: - description: Details of deferred revenue for the line item - type: object - properties: - id: - description: Unique identifier for the deferred revenue - type: - - "null" - - string - code: - description: Code for the deferred revenue - type: - - "null" - - string - name: - description: Name of the deferred revenue - type: - - "null" - - string - description: - description: Description of the deferred revenue - type: - - "null" - - string - externalERPId: - description: External ERP ID for the deferred revenue - type: - - "null" - - string - externalCRMId: - description: External CRM ID for the deferred revenue - type: - - "null" - - string - recognizedRevenue: - description: Details of recognized revenue for the line item - type: object - properties: - id: - description: Unique identifier for the recognized revenue - type: - - "null" - - string - code: - description: Code for the recognized revenue - type: - - "null" - - string - name: - description: Name of the recognized revenue - type: - - "null" - - string - description: - description: Description of the recognized revenue - type: - - "null" - - string - externalERPId: - description: External ERP ID for the recognized revenue - type: - - "null" - - string - externalCRMId: - description: External CRM ID for the recognized revenue - type: - - "null" - - string - externalERPId: - description: External ERP ID for the line item - type: - - "null" - - string - externalCRMId: - description: External CRM ID for the line item - type: - - "null" - - string - taxCategoryName: - description: Name of the tax category - type: - - "null" - - string - taxRate: - description: Tax rate applied to the line item - type: - - "null" - - number - yourReference: - description: Reference provided by the buyer - type: - - "null" - - string - ourReference: - description: Reference provided by the company - type: - - "null" - - string - yourOrderNumber: - description: Order number specified by the buyer - type: - - "null" - - string - buyerReference: - description: Reference information provided by the buyer - type: - - "null" - - string - invoiceType: - description: Type of the invoice - type: - - "null" - - string - sendMethod: - description: Method used for sending the invoice - type: - - "null" - - string - exchangeRate: - description: Exchange rate used in the invoice - type: - - "null" - - number - settledNotes: - description: Notes related to the settled amount - type: - - "null" - - string - invoiceTemplateId: - description: Identifier for the invoice template used - type: - - "null" - - string - disableAutomaticInvoiceReminder: - description: Flag to indicate if automatic invoice reminders are disabled - type: - - "null" - - boolean - onlinePaymentLink: - description: Link for online payment of the invoice - type: - - "null" - - string - accountsReceivable: - description: Details about accounts receivable - type: object - properties: - id: - description: Unique identifier for the accounts receivable - type: - - "null" - - string - code: - description: Code for the accounts receivable - type: - - "null" - - string - name: - description: Name of the accounts receivable - type: - - "null" - - string - description: - description: Description of the accounts receivable - type: - - "null" - - string - externalERPId: - description: External ERP ID for the accounts receivable - type: - - "null" - - string - externalCRMId: - description: External CRM ID for the accounts receivable - type: - - "null" - - string - customFields: - description: Custom fields associated with the invoice - type: - - "null" - - object - externalERPId: - description: External ERP ID for the invoice - type: - - "null" - - string - externalCRMId: - description: External CRM ID for the invoice - type: - - "null" - - string - product_stream: - $ref: "#/definitions/base_stream" - name: product - $parameters: - path: Products - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-04/schema# - additionalProperties: true - type: object - properties: - id: - description: The unique identifier for the product. - type: - - "null" - - string - productNumber: - description: The unique number associated with the product. - type: - - "null" - - string - name: - description: The name of the product. - type: - - "null" - - string - created: - description: The date when the product was created. - type: - - "null" - - string - modified: - description: The date when the product was last modified. - type: - - "null" - - string - productType: - description: The type of product. - type: - - "null" - - string - category: - description: The category the product belongs to. - type: - - "null" - - string - activationDate: - description: The date when the product is activated. - type: - - "null" - - string - endOfNewSalesDate: - description: The end date for new sales of the product. - type: - - "null" - - string - endOfRenewalDate: - description: The end date for product renewals. - type: - - "null" - - string - endOfLifeDate: - description: The end of life date for the product. - type: - - "null" - - string - isFrameworkProduct: - description: Indicates if the product is a framework product. - type: - - "null" - - boolean - chargePlans: - description: List of charge plans associated with the product - type: array - items: - type: object - properties: - id: - description: The unique identifier for the charge plan. - type: - - "null" - - string - chargePlanNumber: - description: The number associated with the charge plan. - type: - - "null" - - string - name: - description: The name of the charge plan. - type: - - "null" - - string - effectiveStartDate: - description: The date when the charge plan becomes effective. - type: - - "null" - - string - endOfNewSalesDate: - description: The end date for new sales of the charge plan. - type: - - "null" - - string - effectiveEndDate: - description: The date when the charge plan is no longer effective. - type: - - "null" - - string - charges: - description: List of charges related to the charge plan - type: array - items: - type: object - properties: - id: - description: The unique identifier for the charge. - type: - - "null" - - string - chargeNumber: - description: The number associated with the charge. - type: - - "null" - - string - name: - description: The name of the charge. - type: - - "null" - - string - model: - description: The model associated with the charge. - type: - - "null" - - string - chargeType: - description: The type of charge. - type: - - "null" - - string - unitCode: - description: The unit code for the charge. - type: - - "null" - - string - defaultQuantity: - description: The default quantity for the charge. - type: - - "null" - - number - pricePeriod: - description: The period for pricing. - type: - - "null" - - string - usageRating: - description: The rating for usage. - type: - - "null" - - string - createInvoiceLinesPerTier: - description: Whether to create invoice lines per tier. - type: - - "null" - - boolean - billingDay: - description: The day of the month when billing occurs. - type: - - "null" - - string - specificBillingDay: - description: A specific day for billing. - type: - - "null" - - number - billingPeriod: - description: The period for billing. - type: - - "null" - - string - periodAlignment: - description: The alignment of the billing period. - type: - - "null" - - string - billingTiming: - description: The timing of billing. - type: - - "null" - - string - taxTemplate: - description: The tax template used for the charge. - type: - - "null" - - string - taxIncluded: - description: Indicates if tax is included in the charge. - type: - - "null" - - boolean - externalERPId: - description: The ID from an external ERP system. - type: - - "null" - - string - externalCRMId: - description: The ID from an external CRM system. - type: - - "null" - - string - deferredRevenueAccount: - description: The account used for deferred revenue. - type: - - "null" - - string - recognizedRevenueAccount: - description: The account used for recognized revenue. - type: - - "null" - - string - customFields: - description: Custom fields associated with the charge. - type: - - "null" - - object - priceDetails: - description: Details of pricing related to the charge - type: array - items: - type: object - properties: - currency: - description: The currency for pricing. - type: - - "null" - - string - price: - description: The price for the quantity range. - type: - - "null" - - number - tier: - description: The tier level for pricing. - type: - - "null" - - number - description: - description: A description of the price details. - type: - - "null" - - string - fromQuantity: - description: The minimum quantity for the price tier. - type: - - "null" - - number - toQuantity: - description: The maximum quantity for the price tier. - type: - - "null" - - number - priceBase: - description: The base price for the tier. - type: - - "null" - - string - externalERPId: - description: The ID from an external ERP system. - type: - - "null" - - string - externalCRMId: - description: The ID from an external CRM system. - type: - - "null" - - string - customFields: - description: Custom fields associated with the product. - type: - - "null" - - object - subscription_stream: - $ref: "#/definitions/base_stream" - name: subscription - $parameters: - path: Subscriptions - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-04/schema# - additionalProperties: true - type: object - properties: - id: - description: Unique identifier for the subscription - type: - - "null" - - string - orderNumber: - description: Order number associated with the subscription - type: - - "null" - - string - created: - description: Date of subscription creation - type: - - "null" - - string - modified: - description: Date of the last modification to the subscription - type: - - "null" - - string - orderBillingPeriod: - description: Billing period for the order - type: - - "null" - - string - setOrderBillingPeriod: - description: Setup billing period for the order - type: - - "null" - - boolean - version: - description: Version of the data - type: - - "null" - - number - isLastVersion: - description: Flag indicating if the subscription is the last version - type: - - "null" - - boolean - status: - description: Status of the subscription - type: - - "null" - - string - description: - description: Description of the subscription - type: - - "null" - - string - remarks: - description: Additional remarks or notes - type: - - "null" - - string - effectiveStartDate: - description: Effective start date of the subscription - type: - - "null" - - string - effectiveEndDate: - description: Effective end date of the subscription - type: - - "null" - - string - cancellationDate: - description: Date of subscription cancellation - type: - - "null" - - string - effectiveChangeDate: - description: Effective date of subscription change - type: - - "null" - - string - orderDate: - description: Date of the order - type: - - "null" - - string - noticePeriodDate: - description: Date when notice period starts - type: - - "null" - - string - lastRenewalDate: - description: Date of the last renewal - type: - - "null" - - string - noticePeriod: - description: Notice period for subscription cancellation - type: - - "null" - - number - term: - description: Term of the subscription - type: - - "null" - - number - renewalTerm: - description: Renewal term for the subscription - type: - - "null" - - number - isAutoRenewed: - description: Flag indicating if the subscription is set to auto-renew - type: - - "null" - - boolean - orderType: - description: Type of the order - type: - - "null" - - string - termType: - description: Type of the subscription term - type: - - "null" - - string - orderPaymentMethod: - description: Payment method used for the order - type: - - "null" - - string - invoiceSeparatly: - description: Flag indicating if the subscription is invoiced separately - type: - - "null" - - boolean - yourReference: - description: Reference provided by user - type: - - "null" - - string - ourReference: - description: Our reference for the subscription - type: - - "null" - - string - yourOrderNumber: - description: Order number specified by user - type: - - "null" - - string - invoiceAddress: - description: Address for invoicing - type: object - properties: - id: - description: Unique identifier for the address - type: - - "null" - - string - description: - description: Description of invoice address - type: - - "null" - - string - name: - description: Name of the invoice address - type: - - "null" - - string - street: - description: Street of invoice address - type: - - "null" - - string - street2: - description: Additional street information - type: - - "null" - - string - city: - description: City of invoice address - type: - - "null" - - string - county: - description: County of invoice address - type: - - "null" - - string - state: - description: State of invoice address - type: - - "null" - - string - zip: - description: Zip code of invoice address - type: - - "null" - - string - country: - description: Country of invoice address - type: - - "null" - - string - deliveryAddress: - description: Address for product deliveries - type: object - properties: - id: - description: Unique identifier for the address - type: - - "null" - - string - description: - description: Description of delivery address - type: - - "null" - - string - name: - description: Name of the delivery address - type: - - "null" - - string - street: - description: Street of delivery address - type: - - "null" - - string - street2: - description: Additional street information - type: - - "null" - - string - city: - description: City of delivery address - type: - - "null" - - string - county: - description: County of delivery address - type: - - "null" - - string - state: - description: State of delivery address - type: - - "null" - - string - zip: - description: Zip code of delivery address - type: - - "null" - - string - country: - description: Country of delivery address - type: - - "null" - - string - invoiceBatchGroup: - description: Grouping for batch invoice processing - type: object - properties: - id: - description: Unique identifier for the invoice batch group - type: - - "null" - - string - code: - description: Code of the invoice batch group - type: - - "null" - - string - description: - description: Description of the invoice batch group - type: - - "null" - - string - paymentTerm: - description: Payment term for the subscription - type: - - "null" - - string - useAccountInvoiceBatchGroup: - description: Flag indicating if account invoice batch group is used - type: - - "null" - - boolean - account: - description: Information about the account associated with the subscription - type: object - properties: - name: - description: Name of the account - type: - - "null" - - string - accountNumber: - description: Unique identifier for the account - type: - - "null" - - string - id: - description: Unique identifier for the account - type: - - "null" - - string - externalERPId: - description: External ERP system ID associated with the account - type: - - "null" - - string - externalCRMId: - description: External CRM system ID associated with the account - type: - - "null" - - string - invoiceAccount: - description: Account information for invoicing - type: object - properties: - name: - description: Name of the invoice account - type: - - "null" - - string - accountNumber: - description: Account number linked to the invoice - type: - - "null" - - string - id: - description: Unique identifier for the invoice account - type: - - "null" - - string - externalERPId: - description: External ERP system ID associated with the invoice account - type: - - "null" - - string - externalCRMId: - description: External CRM system ID associated with the invoice account - type: - - "null" - - string - products: - description: List of products included in the subscription - type: array - items: - description: Details of each product - type: object - properties: - id: - description: Unique identifier for the product - type: - - "null" - - string - productNumber: - description: Number of the product - type: - - "null" - - string - chargePlanId: - description: ID of the charge plan - type: - - "null" - - string - chargePlanName: - description: Name of the charge plan - type: - - "null" - - string - chargePlanNumber: - description: Number of the charge plan - type: - - "null" - - string - productLineNumber: - description: Line number for the product - type: - - "null" - - number - name: - description: Name of the product - type: - - "null" - - string - charges: - description: List of charges associated with the product - type: array - items: - description: Details of each charge - type: object - properties: - id: - description: Unique identifier for the charge - type: - - "null" - - string - chargeNumber: - description: Number of the charge - type: - - "null" - - string - version: - description: Version of the charge - type: - - "null" - - number - isLastVersion: - description: Flag indicating if the charge is the last version - type: - - "null" - - boolean - name: - description: Name of the charge - type: - - "null" - - string - chargeType: - description: Type of charge - type: - - "null" - - string - priceModel: - description: Pricing model for the charge - type: - - "null" - - string - effectiveStartDate: - description: Effective start date of the charge - type: - - "null" - - string - effectiveEndDate: - description: Effective end date of the charge - type: - - "null" - - string - quantity: - description: Quantity of the charge - type: - - "null" - - number - unitCode: - description: Unit code for the charge - type: - - "null" - - string - startOn: - description: Start date for the charge - type: - - "null" - - string - endOn: - description: End date for the charge - type: - - "null" - - string - chargedThroughDate: - description: Date charges are accounted for - type: - - "null" - - string - lastRenewalDate: - description: Date of the last renewal - type: - - "null" - - string - lastPriceAdjustmentDate: - description: Date of the last price adjustment - type: - - "null" - - string - pricePeriod: - description: Pricing period for the charge - type: - - "null" - - string - usageRating: - description: Usage rating for the charge - type: - - "null" - - string - revenueRecognitionRule: - description: Rule for revenue recognition - type: - - "null" - - string - billingDay: - description: Billing day for the charge - type: - - "null" - - string - specificBillingDay: - description: Specific billing day for the charge - type: - - "null" - - number - billingPeriod: - description: Billing period for the charge - type: - - "null" - - string - billingTiming: - description: Billing timing for the charge - type: - - "null" - - string - periodAlignment: - description: Period alignment for the charge - type: - - "null" - - string - taxTemplate: - description: Tax template applied to the charge - type: - - "null" - - string - taxIncluded: - description: Flag indicating if tax is included in the charge - type: - - "null" - - boolean - createInvoiceLinesPerTier: - description: - Flag indicating if invoice lines are created - per tier - type: - - "null" - - boolean - estimatedUsage: - description: Estimated usage for the charge - type: - - "null" - - number - estimatedQuantity: - description: Estimated quantity for the charge - type: - - "null" - - number - remarks: - description: Remarks or notes for the charge - type: - - "null" - - string - accountsReceivableAccount: - description: Account for accounts receivable - type: - - "null" - - string - deferredRevenueAccount: - description: Account for deferred revenue - type: - - "null" - - string - recognizedRevenueAccount: - description: Account for recognized revenue - type: - - "null" - - string - changeState: - description: Change state for the charge - type: - - "null" - - string - displayPrice: - description: Price displayed for the charge - type: - - "null" - - number - customFields: - description: Custom fields associated with the charge - type: - - "null" - - object - priceDetails: - description: Details of the pricing for the charge - type: array - items: - description: Specific pricing details - type: object - properties: - tier: - description: Pricing tier of the charge - type: - - "null" - - number - price: - description: Price of the charge - type: - - "null" - - number - listPrice: - description: List price of the charge - type: - - "null" - - number - description: - description: Description of the price - type: - - "null" - - string - fromQuantity: - description: Quantity from which the price applies - type: - - "null" - - number - toQuantity: - description: Quantity up to which the price applies - type: - - "null" - - number - priceBase: - description: Base price of the charge - type: - - "null" - - string - lineDiscountPercent: - description: Percentage of line discount - type: - - "null" - - number - lineDiscountAmount: - description: Amount of line discount - type: - - "null" - - number - recurringMonthlyAmount: - description: Recurring monthly amount for the charge - type: - - "null" - - number - recurringMonthlyAmountBase: - description: Base recurring monthly amount for the charge - type: - - "null" - - number - features: - description: List of features included in the charge - type: array - items: - description: Details of each feature - type: object - properties: - code: - description: Feature code - type: - - "null" - - string - description: - description: Description of the feature - type: - - "null" - - string - orderDiscounts: - description: Discount information applied to the charge - type: array - items: - description: Details of each discount - type: object - properties: - orderDiscountId: - description: Discount ID linked to the order - type: - - "null" - - string - chargeId: - description: Charge ID linked to the order - type: - - "null" - - string - externalERPId: - description: External ERP system ID associated with the charge - type: - - "null" - - string - externalCRMId: - description: External CRM system ID associated with the charge - type: - - "null" - - string - cmrr: - description: Committed Monthly Recurring Revenue of the charge - type: object - properties: - amount: - description: Amount of Committed Monthly Recurring Revenue - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - acv: - description: Annual Contract Value of the charge - type: object - properties: - amount: - description: Amount of Annual Contract Value - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - tcv: - description: Total Contract Value of the charge - type: object - properties: - amount: - description: Total Contract Value amount - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - emrr: - description: Estimated Monthly Recurring Revenue of the charge - type: object - properties: - amount: - description: Amount of Estimated Monthly Recurring Revenue - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - oneTimeFees: - description: One-time fees associated with the charge - type: object - properties: - amount: - description: Total amount of one-time fees - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - orderProductId: - description: Product ID linked to the order - type: - - "null" - - string - orderId: - description: Order ID linked to the charge - type: - - "null" - - string - customFields: - description: Custom fields associated with the product - type: - - "null" - - object - externalERPId: - description: External ERP system ID associated with the product - type: - - "null" - - string - externalCRMId: - description: External CRM system ID associated with the product - type: - - "null" - - string - cmrr: - description: Committed Monthly Recurring Revenue of the product - type: object - properties: - amount: - description: Amount of Committed Monthly Recurring Revenue - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - acv: - description: Annual Contract Value of the product - type: object - properties: - amount: - description: Amount of Annual Contract Value - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - emrr: - description: Estimated Monthly Recurring Revenue of the product - type: object - properties: - amount: - description: Amount of Estimated Monthly Recurring Revenue - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - oneTimeFees: - description: One-time fees associated with the product - type: object - properties: - amount: - description: Total amount of one-time fees - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - tcv: - description: Total Contract Value of the product - type: object - properties: - amount: - description: Total Contract Value amount - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - milestones: - description: List of milestones associated with the subscription - type: array - items: - description: Details of each milestone - type: object - properties: - id: - description: Unique identifier for the milestone - type: - - "null" - - string - orderId: - description: Order ID linked to the milestone - type: - - "null" - - string - name: - description: Name of the milestone - type: - - "null" - - string - description: - description: Description of the milestone - type: - - "null" - - string - milestoneDate: - description: Date of the milestone - type: - - "null" - - string - plannedDate: - description: Planned date for the milestone - type: - - "null" - - string - orderDiscounts: - description: Discount information applied to the order - type: array - items: - type: object - properties: - id: - description: Unique identifier for the discount - type: - - "null" - - string - orderId: - description: Order ID linked to the discount - type: - - "null" - - string - startOn: - description: Start date for the discount - type: - - "null" - - string - endOn: - description: End date for the discount - type: - - "null" - - string - startDate: - description: Start date of the discount - type: - - "null" - - string - endDate: - description: End date of the discount - type: - - "null" - - string - percent: - description: Percentage of the discount - type: - - "null" - - number - discountType: - description: Type of discount applied to the order - type: - - "null" - - string - orderProductCharges: - description: List of charges for products in the order - type: array - items: - description: Details of each product charge - type: object - properties: - orderDiscountId: - description: Discount ID linked to the order - type: - - "null" - - string - chargeId: - description: Charge ID linked to the order - type: - - "null" - - string - onSpecificCharges: - description: - Flag indicating if the discount is applied to specific - charges - type: - - "null" - - boolean - currency: - description: Currency used for the subscription - type: - - "null" - - string - externalERPId: - description: External ERP system ID associated with the subscription - type: - - "null" - - string - externalCRMId: - description: External CRM system ID associated with the subscription - type: - - "null" - - string - currencyCodeToUseWhenInvoice: - description: Currency code used for invoicing - type: - - "null" - - string - customFields: - description: Custom fields associated with the subscription - type: - - "null" - - object - cmrr: - description: Committed Monthly Recurring Revenue - type: object - properties: - amount: - description: Amount of Committed Monthly Recurring Revenue - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - acv: - description: Annual Contract Value - type: object - properties: - amount: - description: Amount of Annual Contract Value - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - emrr: - description: Estimated Monthly Recurring Revenue - type: object - properties: - amount: - description: Amount of Estimated Monthly Recurring Revenue - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - oneTimeFees: - description: One-time fees charged - type: object - properties: - amount: - description: Total amount of one-time fees - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string - tcv: - description: Total Contract Value of the subscription - type: object - properties: - amount: - description: Total Contract Value amount - type: - - "null" - - number - currencyCode: - description: Currency code - type: - - "null" - - string - currencyConversionDate: - description: Date of currency conversion - type: - - "null" - - string - baseCurrencyAmount: - description: Amount in base currency - type: - - "null" - - number - baseCurrencyCode: - description: Base currency code - type: - - "null" - - string -streams: - - "#/definitions/account_stream" - - "#/definitions/booking_stream" - - "#/definitions/invoice_stream" - - "#/definitions/product_stream" - - "#/definitions/subscription_stream" - -check: - type: CheckStream - stream_names: - - account - - booking - - invoice - - product - - subscription -spec: - type: Spec - documentation_url: https://docs.airbyte.com/integrations/sources/younium - connection_specification: - $schema: http://json-schema.org/draft-07/schema# - title: Younium Spec - type: object - additionalProperties: true - required: - - username - - password - - legal_entity - properties: - username: - title: Username - type: string - description: Username for Younium account - password: - title: Password - type: string - description: Account password for younium account API key - airbyte_secret: true - legal_entity: - title: Legal Entity - type: string - description: Legal Entity that data should be pulled from - playground: - title: Playground environment - type: boolean - description: - Property defining if connector is used against playground or - production environment - default: false diff --git a/airbyte-integrations/connectors/source-younium/source_younium/run.py b/airbyte-integrations/connectors/source-younium/source_younium/run.py deleted file mode 100644 index 5250f8d9bd94..000000000000 --- a/airbyte-integrations/connectors/source-younium/source_younium/run.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch -from source_younium import SourceYounium - - -def run(): - source = SourceYounium() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-younium/source_younium/source.py b/airbyte-integrations/connectors/source-younium/source_younium/source.py deleted file mode 100644 index 2b8e59669dbf..000000000000 --- a/airbyte-integrations/connectors/source-younium/source_younium/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceYounium(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/docs/integrations/sources/younium.md b/docs/integrations/sources/younium.md index be61982cb63b..febda0c3c7eb 100644 --- a/docs/integrations/sources/younium.md +++ b/docs/integrations/sources/younium.md @@ -46,6 +46,7 @@ The Younium source connector supports the following [sync modes](https://docs.ai | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------- | +| 0.4.0 | 2024-10-23 | [47281](https://github.com/airbytehq/airbyte/pull/47281) | Migrate to Manifest-only | | 0.3.22 | 2024-10-05 | [46432](https://github.com/airbytehq/airbyte/pull/46432) | Update dependencies | | 0.3.21 | 2024-09-28 | [46176](https://github.com/airbytehq/airbyte/pull/46176) | Update dependencies | | 0.3.20 | 2024-09-21 | [45807](https://github.com/airbytehq/airbyte/pull/45807) | Update dependencies | From 0dc4efe7f7dccf1c83b6a1c5876173514085859f Mon Sep 17 00:00:00 2001 From: Marius Posta Date: Mon, 28 Oct 2024 16:50:57 -0700 Subject: [PATCH 258/808] bulk-cdk: gradle and github workflow improvements (#47687) --- .github/workflows/publish-bulk-cdk.yml | 11 ----------- airbyte-cdk/bulk/build.gradle | 4 ---- airbyte-cdk/bulk/core/load/build.gradle | 9 ++++++--- 3 files changed, 6 insertions(+), 18 deletions(-) diff --git a/.github/workflows/publish-bulk-cdk.yml b/.github/workflows/publish-bulk-cdk.yml index b56bb2e48a02..a1ef1e716c85 100644 --- a/.github/workflows/publish-bulk-cdk.yml +++ b/.github/workflows/publish-bulk-cdk.yml @@ -76,17 +76,6 @@ jobs: gradle-distribution-sha-256-sum-warning: false arguments: --scan :airbyte-cdk:bulk:bulkCdkBuild - - name: Integration test Bulk CDK - uses: burrunan/gradle-cache-action@v1 - env: - CI: true - with: - read-only: true - job-id: bulk-cdk-publish - concurrent: true - gradle-distribution-sha-256-sum-warning: false - arguments: --scan :airbyte-cdk:bulk:bulkCdkIntegrationTest - - name: Publish Poms and Jars to CloudRepo uses: burrunan/gradle-cache-action@v1 env: diff --git a/airbyte-cdk/bulk/build.gradle b/airbyte-cdk/bulk/build.gradle index 7e32b531c339..b8474f81a507 100644 --- a/airbyte-cdk/bulk/build.gradle +++ b/airbyte-cdk/bulk/build.gradle @@ -61,10 +61,6 @@ allprojects { } } -tasks.register('bulkCdkIntegrationTest').configure { - dependsOn allprojects.collect {it.tasks.matching { it.name == 'integrationTest' }} -} - if (buildNumberFile.exists()) { tasks.register('bulkCdkBuild').configure { dependsOn allprojects.collect {it.tasks.named('build')} diff --git a/airbyte-cdk/bulk/core/load/build.gradle b/airbyte-cdk/bulk/core/load/build.gradle index 5d0f2c3336e8..2d175563f41b 100644 --- a/airbyte-cdk/bulk/core/load/build.gradle +++ b/airbyte-cdk/bulk/core/load/build.gradle @@ -25,7 +25,7 @@ dependencies { testFixturesImplementation "uk.org.webcompere:system-stubs-jupiter:2.1.7" } -task integrationTest(type: Test) { +def integrationTestTask = tasks.register('integrationTest', Test) { description = 'Runs the integration tests.' group = 'verification' testClassesDirs = sourceSets.integrationTest.output.classesDirs @@ -37,9 +37,12 @@ task integrationTest(type: Test) { maxParallelForks = project.test.maxParallelForks maxHeapSize = project.test.maxHeapSize } +// These tests are lightweight enough to run on every PR. +tasks.named('check').configure { + dependsOn integrationTest +} + configurations { integrationTestImplementation.extendsFrom testImplementation integrationTestRuntimeOnly.extendsFrom testRuntimeOnly } -// These tests are lightweight enough to run on every PR. -rootProject.check.dependsOn(integrationTest) From 5fda600d3c60adcc98b3a3f2fc77649d70c47d7e Mon Sep 17 00:00:00 2001 From: Patrick Nilan Date: Mon, 28 Oct 2024 16:53:45 -0700 Subject: [PATCH 259/808] [source-google-analytics-data-api] - Migrate to CDK v5 (#47013) --- .../metadata.yaml | 2 +- .../poetry.lock | 446 ++++++++++++++---- .../pyproject.toml | 8 +- .../config_migrations.py | 8 +- .../source.py | 8 +- .../unit_tests/test_source.py | 3 +- .../unit_tests/test_streams.py | 8 +- .../sources/google-analytics-data-api.md | 1 + 8 files changed, 382 insertions(+), 102 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml b/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml index e2b40f320ce5..c9997b9d0259 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml @@ -12,7 +12,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3cc2eafd-84aa-4dca-93af-322d9dfeec1a - dockerImageTag: 2.5.13 + dockerImageTag: 2.6.0 dockerRepository: airbyte/source-google-analytics-data-api documentationUrl: https://docs.airbyte.com/integrations/sources/google-analytics-data-api githubIssueLabel: source-google-analytics-data-api diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock b/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock index f8df8a509295..aea8fef11a68 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock @@ -1,18 +1,18 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "3.9.6" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false -python-versions = "<4.0,>=3.9" +python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-3.9.6-py3-none-any.whl", hash = "sha256:4d4cb095926249247d87437c8b4dd762df52bb8e24c76e05f166982842f6876d"}, - {file = "airbyte_cdk-3.9.6.tar.gz", hash = "sha256:9e31eadeb32b63c1b4b9fbcb26334239ca83c314645b4a164e01c95e9a8ab1f5"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] -airbyte-protocol-models-pdv2 = ">=0.12.2,<0.13.0" +airbyte-protocol-models-dataclasses = ">=0.13,<0.14" backoff = "*" cachetools = "*" cryptography = ">=42.0.5,<43.0.0" @@ -24,6 +24,9 @@ Jinja2 = ">=3.1.2,<3.2.0" jsonref = ">=0.2,<0.3" jsonschema = ">=3.2.0,<3.3.0" langchain_core = "0.1.42" +nltk = "3.8.1" +orjson = ">=3.10.7,<4.0.0" +pandas = "2.2.2" pendulum = "<3.0.0" pydantic = ">=2.7,<3.0" pyjwt = ">=2.8.0,<3.0.0" @@ -33,27 +36,27 @@ pytz = "2024.1" PyYAML = ">=6.0.1,<7.0.0" requests = "*" requests_cache = "*" +serpyco-rs = ">=1.10.2,<2.0.0" wcmatch = "8.4" +xmltodict = ">=0.13.0,<0.14.0" [package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] +file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] -name = "airbyte-protocol-models-pdv2" -version = "0.12.2" -description = "Declares the Airbyte Protocol." +name = "airbyte-protocol-models-dataclasses" +version = "0.13.0" +description = "Declares the Airbyte Protocol using Python Dataclasses. Dataclasses in Python have less performance overhead compared to Pydantic models, making them a more efficient choice for scenarios where speed and memory usage are critical" optional = false python-versions = ">=3.8" files = [ - {file = "airbyte_protocol_models_pdv2-0.12.2-py3-none-any.whl", hash = "sha256:8b3f9d0388928547cdf2e9134c0d589e4bcaa6f63bf71a21299f6824bfb7ad0e"}, - {file = "airbyte_protocol_models_pdv2-0.12.2.tar.gz", hash = "sha256:130c9ab289f3f53749ce63ff1abbfb67a44b7e5bd2794865315a2976138b672b"}, + {file = "airbyte_protocol_models_dataclasses-0.13.0-py3-none-any.whl", hash = "sha256:0aedb99ffc4f9aab0ce91bba2c292fa17cd8fd4b42eeba196d6a16c20bbbd7a5"}, + {file = "airbyte_protocol_models_dataclasses-0.13.0.tar.gz", hash = "sha256:72e67850d661e2808406aec5839b3158ebb94d3553b798dbdae1b4a278548d2f"}, ] -[package.dependencies] -pydantic = ">=2.7.2,<3.0.0" - [[package]] name = "annotated-types" version = "0.7.0" @@ -97,6 +100,17 @@ files = [ {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, ] +[[package]] +name = "attributes-doc" +version = "0.4.0" +description = "PEP 224 implementation" +optional = false +python-versions = ">=3.8" +files = [ + {file = "attributes-doc-0.4.0.tar.gz", hash = "sha256:b1576c94a714e9fc2c65c47cf10d0c8e1a5f7c4f5ae7f69006be108d95cbfbfb"}, + {file = "attributes_doc-0.4.0-py2.py3-none-any.whl", hash = "sha256:4c3007d9e58f3a6cb4b9c614c4d4ce2d92161581f28e594ddd8241cc3a113bdd"}, +] + [[package]] name = "attrs" version = "24.2.0" @@ -379,6 +393,20 @@ files = [ {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + [[package]] name = "colorama" version = "0.4.6" @@ -623,6 +651,17 @@ MarkupSafe = ">=2.0" [package.extras] i18n = ["Babel (>=2.7)"] +[[package]] +name = "joblib" +version = "1.4.2" +description = "Lightweight pipelining with Python functions" +optional = false +python-versions = ">=3.8" +files = [ + {file = "joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6"}, + {file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"}, +] + [[package]] name = "jsonpatch" version = "1.33" @@ -790,49 +829,91 @@ files = [ {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] +[[package]] +name = "nltk" +version = "3.8.1" +description = "Natural Language Toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "nltk-3.8.1-py3-none-any.whl", hash = "sha256:fd5c9109f976fa86bcadba8f91e47f5e9293bd034474752e92a520f81c93dda5"}, + {file = "nltk-3.8.1.zip", hash = "sha256:1834da3d0682cba4f2cede2f9aad6b0fafb6461ba451db0efb6f9c39798d64d3"}, +] + +[package.dependencies] +click = "*" +joblib = "*" +regex = ">=2021.8.3" +tqdm = "*" + +[package.extras] +all = ["matplotlib", "numpy", "pyparsing", "python-crfsuite", "requests", "scikit-learn", "scipy", "twython"] +corenlp = ["requests"] +machine-learning = ["numpy", "python-crfsuite", "scikit-learn", "scipy"] +plot = ["matplotlib"] +tgrep = ["pyparsing"] +twitter = ["twython"] + [[package]] name = "numpy" -version = "1.26.4" +version = "2.1.2" description = "Fundamental package for array computing in Python" optional = false -python-versions = ">=3.9" -files = [ - {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, - {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, - {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, - {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, - {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, - {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, - {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, - {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, - {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, - {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, - {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, - {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, - {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, - {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, - {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, - {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, - {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, - {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, - {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, - {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, - {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, - {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, - {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, - {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, - {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, - {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, - {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, - {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, - {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, - {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, - {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, - {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, - {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, +python-versions = ">=3.10" +files = [ + {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, + {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, + {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, + {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, + {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, + {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, + {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, + {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, + {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, + {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, + {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, + {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, + {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, + {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, + {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, + {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, + {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, + {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, + {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, + {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, + {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, + {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, + {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, + {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, + {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, + {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, + {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, + {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, + {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, + {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, + {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, + {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, + {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, ] [[package]] @@ -915,46 +996,46 @@ files = [ [[package]] name = "pandas" -version = "2.2.0" +version = "2.2.2" description = "Powerful data structures for data analysis, time series, and statistics" optional = false python-versions = ">=3.9" files = [ - {file = "pandas-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8108ee1712bb4fa2c16981fba7e68b3f6ea330277f5ca34fa8d557e986a11670"}, - {file = "pandas-2.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:736da9ad4033aeab51d067fc3bd69a0ba36f5a60f66a527b3d72e2030e63280a"}, - {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38e0b4fc3ddceb56ec8a287313bc22abe17ab0eb184069f08fc6a9352a769b18"}, - {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20404d2adefe92aed3b38da41d0847a143a09be982a31b85bc7dd565bdba0f4e"}, - {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7ea3ee3f125032bfcade3a4cf85131ed064b4f8dd23e5ce6fa16473e48ebcaf5"}, - {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f9670b3ac00a387620489dfc1bca66db47a787f4e55911f1293063a78b108df1"}, - {file = "pandas-2.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:5a946f210383c7e6d16312d30b238fd508d80d927014f3b33fb5b15c2f895430"}, - {file = "pandas-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a1b438fa26b208005c997e78672f1aa8138f67002e833312e6230f3e57fa87d5"}, - {file = "pandas-2.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8ce2fbc8d9bf303ce54a476116165220a1fedf15985b09656b4b4275300e920b"}, - {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2707514a7bec41a4ab81f2ccce8b382961a29fbe9492eab1305bb075b2b1ff4f"}, - {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85793cbdc2d5bc32620dc8ffa715423f0c680dacacf55056ba13454a5be5de88"}, - {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:cfd6c2491dc821b10c716ad6776e7ab311f7df5d16038d0b7458bc0b67dc10f3"}, - {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a146b9dcacc3123aa2b399df1a284de5f46287a4ab4fbfc237eac98a92ebcb71"}, - {file = "pandas-2.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbc1b53c0e1fdf16388c33c3cca160f798d38aea2978004dd3f4d3dec56454c9"}, - {file = "pandas-2.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a41d06f308a024981dcaa6c41f2f2be46a6b186b902c94c2674e8cb5c42985bc"}, - {file = "pandas-2.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:159205c99d7a5ce89ecfc37cb08ed179de7783737cea403b295b5eda8e9c56d1"}, - {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1e1f3861ea9132b32f2133788f3b14911b68102d562715d71bd0013bc45440"}, - {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:761cb99b42a69005dec2b08854fb1d4888fdf7b05db23a8c5a099e4b886a2106"}, - {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a20628faaf444da122b2a64b1e5360cde100ee6283ae8effa0d8745153809a2e"}, - {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f5be5d03ea2073627e7111f61b9f1f0d9625dc3c4d8dda72cc827b0c58a1d042"}, - {file = "pandas-2.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:a626795722d893ed6aacb64d2401d017ddc8a2341b49e0384ab9bf7112bdec30"}, - {file = "pandas-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9f66419d4a41132eb7e9a73dcec9486cf5019f52d90dd35547af11bc58f8637d"}, - {file = "pandas-2.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:57abcaeda83fb80d447f28ab0cc7b32b13978f6f733875ebd1ed14f8fbc0f4ab"}, - {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e60f1f7dba3c2d5ca159e18c46a34e7ca7247a73b5dd1a22b6d59707ed6b899a"}, - {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb61dc8567b798b969bcc1fc964788f5a68214d333cade8319c7ab33e2b5d88a"}, - {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:52826b5f4ed658fa2b729264d63f6732b8b29949c7fd234510d57c61dbeadfcd"}, - {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bde2bc699dbd80d7bc7f9cab1e23a95c4375de615860ca089f34e7c64f4a8de7"}, - {file = "pandas-2.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:3de918a754bbf2da2381e8a3dcc45eede8cd7775b047b923f9006d5f876802ae"}, - {file = "pandas-2.2.0.tar.gz", hash = "sha256:30b83f7c3eb217fb4d1b494a57a2fda5444f17834f5df2de6b2ffff68dc3c8e2"}, + {file = "pandas-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce"}, + {file = "pandas-2.2.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c7adfc142dac335d8c1e0dcbd37eb8617eac386596eb9e1a1b77791cf2498238"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99"}, + {file = "pandas-2.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1"}, + {file = "pandas-2.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32"}, + {file = "pandas-2.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23"}, + {file = "pandas-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2"}, + {file = "pandas-2.2.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9057e6aa78a584bc93a13f0a9bf7e753a5e9770a30b4d758b8d5f2a62a9433cd"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57"}, + {file = "pandas-2.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4"}, + {file = "pandas-2.2.2.tar.gz", hash = "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54"}, ] [package.dependencies] numpy = [ - {version = ">=1.22.4,<2", markers = "python_version < \"3.11\""}, - {version = ">=1.23.2,<2", markers = "python_version == \"3.11\""}, + {version = ">=1.22.4", markers = "python_version < \"3.11\""}, + {version = ">=1.23.2", markers = "python_version == \"3.11\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" @@ -979,6 +1060,7 @@ parquet = ["pyarrow (>=10.0.1)"] performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] plot = ["matplotlib (>=3.6.3)"] postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] spss = ["pyreadstat (>=1.2.0)"] sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] @@ -1404,6 +1486,109 @@ files = [ {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] +[[package]] +name = "regex" +version = "2024.9.11" +description = "Alternative regular expression module, to replace re." +optional = false +python-versions = ">=3.8" +files = [ + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1494fa8725c285a81d01dc8c06b55287a1ee5e0e382d8413adc0a9197aac6408"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0e12c481ad92d129c78f13a2a3662317e46ee7ef96c94fd332e1c29131875b7d"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:16e13a7929791ac1216afde26f712802e3df7bf0360b32e4914dca3ab8baeea5"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46989629904bad940bbec2106528140a218b4a36bb3042d8406980be1941429c"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a906ed5e47a0ce5f04b2c981af1c9acf9e8696066900bf03b9d7879a6f679fc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a091b0550b3b0207784a7d6d0f1a00d1d1c8a11699c1a4d93db3fbefc3ad35"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ddcd9a179c0a6fa8add279a4444015acddcd7f232a49071ae57fa6e278f1f71"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b41e1adc61fa347662b09398e31ad446afadff932a24807d3ceb955ed865cc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ced479f601cd2f8ca1fd7b23925a7e0ad512a56d6e9476f79b8f381d9d37090a"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:635a1d96665f84b292e401c3d62775851aedc31d4f8784117b3c68c4fcd4118d"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c0256beda696edcf7d97ef16b2a33a8e5a875affd6fa6567b54f7c577b30a137"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:3ce4f1185db3fbde8ed8aa223fc9620f276c58de8b0d4f8cc86fd1360829edb6"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:09d77559e80dcc9d24570da3745ab859a9cf91953062e4ab126ba9d5993688ca"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a22ccefd4db3f12b526eccb129390942fe874a3a9fdbdd24cf55773a1faab1a"}, + {file = "regex-2024.9.11-cp310-cp310-win32.whl", hash = "sha256:f745ec09bc1b0bd15cfc73df6fa4f726dcc26bb16c23a03f9e3367d357eeedd0"}, + {file = "regex-2024.9.11-cp310-cp310-win_amd64.whl", hash = "sha256:01c2acb51f8a7d6494c8c5eafe3d8e06d76563d8a8a4643b37e9b2dd8a2ff623"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2cce2449e5927a0bf084d346da6cd5eb016b2beca10d0013ab50e3c226ffc0df"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b37fa423beefa44919e009745ccbf353d8c981516e807995b2bd11c2c77d268"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:64ce2799bd75039b480cc0360907c4fb2f50022f030bf9e7a8705b636e408fad"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4cc92bb6db56ab0c1cbd17294e14f5e9224f0cc6521167ef388332604e92679"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d05ac6fa06959c4172eccd99a222e1fbf17b5670c4d596cb1e5cde99600674c4"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:040562757795eeea356394a7fb13076ad4f99d3c62ab0f8bdfb21f99a1f85664"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6113c008a7780792efc80f9dfe10ba0cd043cbf8dc9a76ef757850f51b4edc50"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e5fb5f77c8745a60105403a774fe2c1759b71d3e7b4ca237a5e67ad066c7199"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54d9ff35d4515debf14bc27f1e3b38bfc453eff3220f5bce159642fa762fe5d4"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:df5cbb1fbc74a8305b6065d4ade43b993be03dbe0f8b30032cced0d7740994bd"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7fb89ee5d106e4a7a51bce305ac4efb981536301895f7bdcf93ec92ae0d91c7f"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a738b937d512b30bf75995c0159c0ddf9eec0775c9d72ac0202076c72f24aa96"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e28f9faeb14b6f23ac55bfbbfd3643f5c7c18ede093977f1df249f73fd22c7b1"}, + {file = "regex-2024.9.11-cp311-cp311-win32.whl", hash = "sha256:18e707ce6c92d7282dfce370cd205098384b8ee21544e7cb29b8aab955b66fa9"}, + {file = "regex-2024.9.11-cp311-cp311-win_amd64.whl", hash = "sha256:313ea15e5ff2a8cbbad96ccef6be638393041b0a7863183c2d31e0c6116688cf"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b0d0a6c64fcc4ef9c69bd5b3b3626cc3776520a1637d8abaa62b9edc147a58f7"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b0e06786ea663f933f3710a51e9385ce0cba0ea56b67107fd841a55d56a231"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5b513b6997a0b2f10e4fd3a1313568e373926e8c252bd76c960f96fd039cd28d"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee439691d8c23e76f9802c42a95cfeebf9d47cf4ffd06f18489122dbb0a7ad64"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8f877c89719d759e52783f7fe6e1c67121076b87b40542966c02de5503ace42"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23b30c62d0f16827f2ae9f2bb87619bc4fba2044911e2e6c2eb1af0161cdb766"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ab7824093d8f10d44330fe1e6493f756f252d145323dd17ab6b48733ff6c0a"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dee5b4810a89447151999428fe096977346cf2f29f4d5e29609d2e19e0199c9"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98eeee2f2e63edae2181c886d7911ce502e1292794f4c5ee71e60e23e8d26b5d"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:57fdd2e0b2694ce6fc2e5ccf189789c3e2962916fb38779d3e3521ff8fe7a822"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d552c78411f60b1fdaafd117a1fca2f02e562e309223b9d44b7de8be451ec5e0"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a0b2b80321c2ed3fcf0385ec9e51a12253c50f146fddb2abbb10f033fe3d049a"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:18406efb2f5a0e57e3a5881cd9354c1512d3bb4f5c45d96d110a66114d84d23a"}, + {file = "regex-2024.9.11-cp312-cp312-win32.whl", hash = "sha256:e464b467f1588e2c42d26814231edecbcfe77f5ac414d92cbf4e7b55b2c2a776"}, + {file = "regex-2024.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:9e8719792ca63c6b8340380352c24dcb8cd7ec49dae36e963742a275dfae6009"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c157bb447303070f256e084668b702073db99bbb61d44f85d811025fcf38f784"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4db21ece84dfeefc5d8a3863f101995de646c6cb0536952c321a2650aa202c36"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:220e92a30b426daf23bb67a7962900ed4613589bab80382be09b48896d211e92"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1ae19e64c14c7ec1995f40bd932448713d3c73509e82d8cd7744dc00e29e86"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47cd43a5bfa48f86925fe26fbdd0a488ff15b62468abb5d2a1e092a4fb10e85"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9d4a76b96f398697fe01117093613166e6aa8195d63f1b4ec3f21ab637632963"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ea51dcc0835eea2ea31d66456210a4e01a076d820e9039b04ae8d17ac11dee6"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7aaa315101c6567a9a45d2839322c51c8d6e81f67683d529512f5bcfb99c802"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c57d08ad67aba97af57a7263c2d9006d5c404d721c5f7542f077f109ec2a4a29"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f8404bf61298bb6f8224bb9176c1424548ee1181130818fcd2cbffddc768bed8"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dd4490a33eb909ef5078ab20f5f000087afa2a4daa27b4c072ccb3cb3050ad84"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:eee9130eaad130649fd73e5cd92f60e55708952260ede70da64de420cdcad554"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a2644a93da36c784e546de579ec1806bfd2763ef47babc1b03d765fe560c9f8"}, + {file = "regex-2024.9.11-cp313-cp313-win32.whl", hash = "sha256:e997fd30430c57138adc06bba4c7c2968fb13d101e57dd5bb9355bf8ce3fa7e8"}, + {file = "regex-2024.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:042c55879cfeb21a8adacc84ea347721d3d83a159da6acdf1116859e2427c43f"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:35f4a6f96aa6cb3f2f7247027b07b15a374f0d5b912c0001418d1d55024d5cb4"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:55b96e7ce3a69a8449a66984c268062fbaa0d8ae437b285428e12797baefce7e"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb130fccd1a37ed894824b8c046321540263013da72745d755f2d35114b81a60"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:323c1f04be6b2968944d730e5c2091c8c89767903ecaa135203eec4565ed2b2b"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be1c8ed48c4c4065ecb19d882a0ce1afe0745dfad8ce48c49586b90a55f02366"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5b029322e6e7b94fff16cd120ab35a253236a5f99a79fb04fda7ae71ca20ae8"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6fff13ef6b5f29221d6904aa816c34701462956aa72a77f1f151a8ec4f56aeb"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:587d4af3979376652010e400accc30404e6c16b7df574048ab1f581af82065e4"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:079400a8269544b955ffa9e31f186f01d96829110a3bf79dc338e9910f794fca"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f9268774428ec173654985ce55fc6caf4c6d11ade0f6f914d48ef4719eb05ebb"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:23f9985c8784e544d53fc2930fc1ac1a7319f5d5332d228437acc9f418f2f168"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2941333154baff9838e88aa71c1d84f4438189ecc6021a12c7573728b5838e"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e93f1c331ca8e86fe877a48ad64e77882c0c4da0097f2212873a69bbfea95d0c"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:846bc79ee753acf93aef4184c040d709940c9d001029ceb7b7a52747b80ed2dd"}, + {file = "regex-2024.9.11-cp38-cp38-win32.whl", hash = "sha256:c94bb0a9f1db10a1d16c00880bdebd5f9faf267273b8f5bd1878126e0fbde771"}, + {file = "regex-2024.9.11-cp38-cp38-win_amd64.whl", hash = "sha256:2b08fce89fbd45664d3df6ad93e554b6c16933ffa9d55cb7e01182baaf971508"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:07f45f287469039ffc2c53caf6803cd506eb5f5f637f1d4acb37a738f71dd066"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4838e24ee015101d9f901988001038f7f0d90dc0c3b115541a1365fb439add62"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6edd623bae6a737f10ce853ea076f56f507fd7726bee96a41ee3d68d347e4d16"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c69ada171c2d0e97a4b5aa78fbb835e0ffbb6b13fc5da968c09811346564f0d3"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02087ea0a03b4af1ed6ebab2c54d7118127fee8d71b26398e8e4b05b78963199"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69dee6a020693d12a3cf892aba4808fe168d2a4cef368eb9bf74f5398bfd4ee8"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297f54910247508e6e5cae669f2bc308985c60540a4edd1c77203ef19bfa63ca"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ecea58b43a67b1b79805f1a0255730edaf5191ecef84dbc4cc85eb30bc8b63b9"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:eab4bb380f15e189d1313195b062a6aa908f5bd687a0ceccd47c8211e9cf0d4a"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0cbff728659ce4bbf4c30b2a1be040faafaa9eca6ecde40aaff86f7889f4ab39"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:54c4a097b8bc5bb0dfc83ae498061d53ad7b5762e00f4adaa23bee22b012e6ba"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:73d6d2f64f4d894c96626a75578b0bf7d9e56dcda8c3d037a2118fdfe9b1c664"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:e53b5fbab5d675aec9f0c501274c467c0f9a5d23696cfc94247e1fb56501ed89"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0ffbcf9221e04502fc35e54d1ce9567541979c3fdfb93d2c554f0ca583a19b35"}, + {file = "regex-2024.9.11-cp39-cp39-win32.whl", hash = "sha256:e4c22e1ac1f1ec1e09f72e6c44d8f2244173db7eb9629cc3a346a8d7ccc31142"}, + {file = "regex-2024.9.11-cp39-cp39-win_amd64.whl", hash = "sha256:faa3c142464efec496967359ca99696c896c591c56c53506bac1ad465f66e919"}, + {file = "regex-2024.9.11.tar.gz", hash = "sha256:6c188c307e8433bcb63dc1915022deb553b4203a70722fc542c363bf120a01fd"}, +] + [[package]] name = "requests" version = "2.31.0" @@ -1486,6 +1671,60 @@ files = [ [package.dependencies] requests = ">=2.0.1,<3.0.0" +[[package]] +name = "serpyco-rs" +version = "1.11.0" +description = "" +optional = false +python-versions = ">=3.9" +files = [ + {file = "serpyco_rs-1.11.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:4b2bd933539bd8c84315e2fb5ae52ef7a58ace5a6dfe3f8b73f74dc71216779e"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:627f957889ff73c4d2269fc7b6bba93212381befe03633e7cb5495de66ba9a33"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b0933620abc01434023e0e3e22255b7e4ab9b427b5a9a5ee00834656d792377a"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:9ce46683d92e34abb20304817fc5ac6cb141a06fc7468dedb1d8865a8a9682f6"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bda437d86e8859bf91c189c1f4650899822f6d6d7b02b48f5729da904eb7bb7d"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a72bfbd282af17ebe76d122639013e802c09902543fdbbd828fb2159ec9755e"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d4808df5384e3e8581e31a90ba7a1fa501c0837b1f174284bb8a4555b6864ea"}, + {file = "serpyco_rs-1.11.0-cp310-none-win_amd64.whl", hash = "sha256:c7b60aef4c16d68efb0d6241f05d0a434d873d98449cbb4366b0d385f0a7172b"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:8d47ee577cf4d69b53917615cb031ad8708eb2f59fe78194b1968c13130fc2f7"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6090d9a1487237cdd4e9362a823eede23249602019b917e7bd57846179286e79"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7192eb3df576386fefd595ea31ae25c62522841ffec7e7aeb37a80b55bdc3213"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:b52ef8affb7e71b9b98a7d5216d6a7ad03b04e990acb147cd9211c8b931c5487"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3480e09e473560c60e74aaa789e6b4d079637371aae0a98235440111464bbba7"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c92e36b0ab6fe866601c2331f7e99c809a126d21963c03d8a5c29331526deed"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84f497361952d4566bc1f77e9e15a84a2614f593cc671fbf0a0fa80046f9c3d7"}, + {file = "serpyco_rs-1.11.0-cp311-none-win_amd64.whl", hash = "sha256:37fc1cf192bef9784fbf1f4e03cec21750b9e704bef55cc0442f71a715eee920"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:3ea93d485f03dc8b0cfb0d477f0ad2e86e78f0461b53010656ab5b4db1b41fb0"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7772410d15694b03f9c5500a2c47d62eed76e191bea4087ad042250346b1a38e"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42118463c1679846cffd2f06f47744c9b9eb33c5d0448afd88ea19e1a81a8ddd"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:79481a455b76cc56021dc55bb6d5bdda1b2b32bcb6a1ee711b597140d112e9b1"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c8fd79051f9af9591fc03cf7d3033ff180416301f6a4fd3d1e3d92ebd2d68697"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d29c8f9aeed734a3b51f7349d04ec9063516ffa4e10b632d75e9b1309e4930e4"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15609158b0d9591ffa118302cd9d0039970cb3faf91dce32975f7d276e7411d5"}, + {file = "serpyco_rs-1.11.0-cp312-none-win_amd64.whl", hash = "sha256:00081eae77fbf4c5d88371c5586317ab02ccb293a330b460869a283edf2b7b69"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:3028893366a1985adcedb13fa8f6f98c087c185efc427f94c2ccdafa40f45832"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c18bf511316f3abf648a68ee62ef88617bec57d3fcde69466b4361102715ae5"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7dde9ef09cdfaf7c62378186b9e29f54ec76114be4c347be6a06dd559c5681e"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:18500ebc5e75285841e35585a238629a990b709e14f68933233640d15ca17d5f"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47c23132d4e03982703a7630aa09877b41e499722142f76b6153f6619b612f3"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5f8e6ba499f6a0825bee0d8f8764569d367af871b563fc6512c171474e8e5383"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15438a076047c34cff6601a977df54948e8d39d1a86f89d05c48bc60f4c12a61"}, + {file = "serpyco_rs-1.11.0-cp313-none-win_amd64.whl", hash = "sha256:84ee2c109415bd81904fc9abb9aec86a5dd13166808c21142cf23ec639f683bd"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:5c97c16c865261577fac4effeccc7ef5e0a1e8e35e7a3ee6c90c77c3a4cd7ff9"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47825e70f86fd6ef7c4a835dea3d6e8eef4fee354ed7b39ced99f31aba74a86e"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:24d220220365110edba2f778f41ab3cf396883da0f26e1361a3ada9bd0227f73"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:3a46f334af5a9d77acc6e1e58f355ae497900a2798929371f0545e274f6e6166"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d72b748acce4b4e3c7c9724e1eb33d033a1c26b08a698b393e0288060e0901"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2b8b6f205e8cc038d4d30dd0e70eece7bbecc816eb2f3787c330dc2218e232d"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:038d748bfff31f150f0c3edab2766b8843edb952cb1bd3bf547886beb0912dae"}, + {file = "serpyco_rs-1.11.0-cp39-none-win_amd64.whl", hash = "sha256:0fee1c89ec2cb013dc232e4ebef88e2844357ce8631063b56639dbfb83762f20"}, + {file = "serpyco_rs-1.11.0.tar.gz", hash = "sha256:70a844615ffb229e6e89c204b3ab7404aacaf2838911814c7d847969b8da2e3a"}, +] + +[package.dependencies] +attributes-doc = "*" +typing-extensions = "*" + [[package]] name = "setuptools" version = "75.2.0" @@ -1554,6 +1793,26 @@ files = [ {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, ] +[[package]] +name = "tqdm" +version = "4.66.6" +description = "Fast, Extensible Progress Meter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + [[package]] name = "typing-extensions" version = "4.12.2" @@ -1700,7 +1959,18 @@ files = [ {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, ] +[[package]] +name = "xmltodict" +version = "0.13.0" +description = "Makes working with XML feel like you are working with JSON" +optional = false +python-versions = ">=3.4" +files = [ + {file = "xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852"}, + {file = "xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56"}, +] + [metadata] lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "f530ab711a3da90db12ee313f8eb5f39454f6bf07df1633d40f4ce4c81b4d507" +python-versions = "^3.10,<3.12" +content-hash = "f508bb27ac40e7dfaa3a1af3fc1a38d821ecd96fe8f707278494b22dde62ede5" diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml b/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml index 6092c9871e7a..90bf2b739a36 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.5.13" +version = "2.6.0" name = "source-google-analytics-data-api" description = "Source implementation for Google Analytics Data Api." authors = [ "Airbyte ",] @@ -16,12 +16,12 @@ repository = "https://github.com/airbytehq/airbyte" include = "source_google_analytics_data_api" [tool.poetry.dependencies] -python = "^3.9,<3.12" +python = "^3.10,<3.12" cryptography = "==42.0.5" requests = "==2.31.0" -airbyte-cdk = "^3" +airbyte-cdk = "^5.0.0" PyJWT = "==2.8.0" -pandas = "==2.2.0" +pandas = "^2.2.0" [tool.poetry.scripts] source-google-analytics-data-api = "source_google_analytics_data_api.run:run" diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/source_google_analytics_data_api/config_migrations.py b/airbyte-integrations/connectors/source-google-analytics-data-api/source_google_analytics_data_api/config_migrations.py index 621b5bbafcaf..c055b6445bc2 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/source_google_analytics_data_api/config_migrations.py +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/source_google_analytics_data_api/config_migrations.py @@ -7,8 +7,10 @@ from typing import Any, List, Mapping import dpath.util +import orjson from airbyte_cdk.config_observation import create_connector_config_control_message from airbyte_cdk.entrypoint import AirbyteEntrypoint +from airbyte_cdk.models import AirbyteMessageSerializer from airbyte_cdk.sources.message import InMemoryMessageRepository, MessageRepository from .source import SourceGoogleAnalyticsDataApi @@ -67,7 +69,7 @@ def _emit_control_message(cls, migrated_config: Mapping[str, Any]) -> None: cls.message_repository.emit_message(create_connector_config_control_message(migrated_config)) # emit the Airbyte Control Message from message queue to stdout for message in cls.message_repository.consume_queue(): - print(message.json(exclude_unset=True)) + print(orjson.dumps(AirbyteMessageSerializer.dump(message)).decode()) @classmethod def migrate(cls, args: List[str], source: SourceGoogleAnalyticsDataApi) -> None: @@ -145,7 +147,7 @@ def _emit_control_message(cls, migrated_config: Mapping[str, Any]) -> None: cls.message_repository.emit_message(create_connector_config_control_message(migrated_config)) # emit the Airbyte Control Message from message queue to stdout for message in cls.message_repository.consume_queue(): - print(message.json(exclude_unset=True)) + print(orjson.dumps(AirbyteMessageSerializer.dump(message)).decode()) @classmethod def migrate(cls, args: List[str], source: SourceGoogleAnalyticsDataApi) -> None: @@ -215,7 +217,7 @@ def _emit_control_message(cls, migrated_config: Mapping[str, Any]) -> None: cls.message_repository.emit_message(create_connector_config_control_message(migrated_config)) # emit the Airbyte Control Message from message queue to stdout for message in cls.message_repository.consume_queue(): - print(message.json(exclude_unset=True)) + print(orjson.dumps(AirbyteMessageSerializer.dump(message)).decode()) @classmethod def migrate(cls, args: List[str], source: SourceGoogleAnalyticsDataApi) -> None: diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/source_google_analytics_data_api/source.py b/airbyte-integrations/connectors/source-google-analytics-data-api/source_google_analytics_data_api/source.py index e75d3d6aa528..957805ecde5b 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/source_google_analytics_data_api/source.py +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/source_google_analytics_data_api/source.py @@ -2,6 +2,7 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +import copy import datetime import json import logging @@ -354,10 +355,14 @@ def request_body_json( stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None, ) -> Optional[Mapping]: + if stream_slice and "startDate" in stream_slice and "endDate" in stream_slice: + date_range = {"startDate": stream_slice["startDate"], "endDate": stream_slice["endDate"]} + else: + date_range = stream_slice payload = { "metrics": [{"name": m} for m in self.config["metrics"]], "dimensions": [{"name": d} for d in self.config["dimensions"]], - "dateRanges": [stream_slice], + "dateRanges": [date_range], "returnPropertyQuota": True, "offset": str(0), "limit": str(self.page_size), @@ -414,7 +419,6 @@ def request_body_json( next_page_token: Mapping[str, Any] = None, ) -> Optional[Mapping]: payload = super().request_body_json(stream_state, stream_slice, next_page_token) - # remove offset and limit fields according to their absence in # https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties/runPivotReport payload.pop("offset", None) diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/unit_tests/test_source.py b/airbyte-integrations/connectors/source-google-analytics-data-api/unit_tests/test_source.py index ae716a5c374e..e86201860e8b 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/unit_tests/test_source.py @@ -5,10 +5,9 @@ from unittest.mock import MagicMock, patch import pytest -from airbyte_cdk.models import AirbyteConnectionStatus, FailureType +from airbyte_cdk.models import AirbyteConnectionStatus, FailureType, Status from airbyte_cdk.sources.streams.http.http import HttpStatusErrorHandler from airbyte_cdk.utils import AirbyteTracedException -from airbyte_protocol.models import Status from source_google_analytics_data_api import SourceGoogleAnalyticsDataApi from source_google_analytics_data_api.api_quota import GoogleAnalyticsApiQuotaBase from source_google_analytics_data_api.source import GoogleAnalyticsDatApiErrorHandler, MetadataDescriptor diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-google-analytics-data-api/unit_tests/test_streams.py index 6606cd486e23..3ab018bbe6d3 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/unit_tests/test_streams.py +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/unit_tests/test_streams.py @@ -64,7 +64,8 @@ def test_request_params(patch_base_class): def test_request_body_json(patch_base_class): - request_body_params = {"stream_state": MagicMock(), "stream_slice": MagicMock(), "next_page_token": None} + stream_slice = {"startDate": "2024-01-01", "endDate": "2024-01-31"} + request_body_params = {"stream_state": MagicMock(), "stream_slice": stream_slice, "next_page_token": None} expected_body_json = { "metrics": [ @@ -84,7 +85,10 @@ def test_request_body_json(patch_base_class): {"name": "browser"}, ], "keepEmptyRows": True, - "dateRanges": [request_body_params["stream_slice"]], + "dateRanges": [{ + "startDate": request_body_params["stream_slice"]["startDate"], + "endDate": request_body_params["stream_slice"]["endDate"] + }], "returnPropertyQuota": True, "offset": str(0), "limit": "100000", diff --git a/docs/integrations/sources/google-analytics-data-api.md b/docs/integrations/sources/google-analytics-data-api.md index 83642fab56a6..0f3b24291ed1 100644 --- a/docs/integrations/sources/google-analytics-data-api.md +++ b/docs/integrations/sources/google-analytics-data-api.md @@ -272,6 +272,7 @@ The Google Analytics connector is subject to Google Analytics Data API quotas. P | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:---------------------------------------------------------------------------------------| +| 2.6.0 | 2024-10-28 | [47013](https://github.com/airbytehq/airbyte/pull/47013) | Migrate to CDK v5 | | 2.5.13 | 2024-10-28 | [47061](https://github.com/airbytehq/airbyte/pull/47061) | Update dependencies | | 2.5.12 | 2024-10-12 | [46819](https://github.com/airbytehq/airbyte/pull/46819) | Update dependencies | | 2.5.11 | 2024-10-05 | [46475](https://github.com/airbytehq/airbyte/pull/46475) | Update dependencies | From 0dcd44134f59f360d1311536a9979e530c16a00d Mon Sep 17 00:00:00 2001 From: Bryce Groff Date: Mon, 28 Oct 2024 21:00:25 -0700 Subject: [PATCH 260/808] docs: fix the secretName documentation. (#47704) --- docs/deploying-airbyte/integrations/secrets.md | 4 +++- docs/deploying-airbyte/integrations/storage.md | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/deploying-airbyte/integrations/secrets.md b/docs/deploying-airbyte/integrations/secrets.md index 06ac5dfa56a5..fbfbfa694097 100644 --- a/docs/deploying-airbyte/integrations/secrets.md +++ b/docs/deploying-airbyte/integrations/secrets.md @@ -87,6 +87,7 @@ If authenticating with credentials, ensure you've already created a Kubernetes s global: secretsManager: type: awsSecretManager + secretName: "airbyte-config-secrets" # Name of your Kubernetes secret. awsSecretManager: region: authenticationType: credentials ## Use "credentials" or "instanceProfile" @@ -111,7 +112,7 @@ Ensure you've already created a Kubernetes secret containing the credentials blo global: secretsManager: type: googleSecretManager - secretManagerSecretName: airbyte-config-secrets + secretName: "airbyte-config-secrets" # Name of your Kubernetes secret. googleSecretManager: projectId: credentialsSecretKey: gcp.json @@ -125,6 +126,7 @@ global: global: secretsManager: type: azureKeyVault + secretName: "airbyte-config-secrets" # Name of your Kubernetes secret. azureKeyVault: vaultUrl: ## https://my-vault.vault.azure.net/ tenantId: ## 3fc863e9-4740-4871-bdd4-456903a04d4e diff --git a/docs/deploying-airbyte/integrations/storage.md b/docs/deploying-airbyte/integrations/storage.md index e6f0568f3aa2..9ecbdf827835 100644 --- a/docs/deploying-airbyte/integrations/storage.md +++ b/docs/deploying-airbyte/integrations/storage.md @@ -85,7 +85,7 @@ Ensure you've already created a Kubernetes secret containing both your S3 access global: storage: type: "S3" - storageSecretName: airbyte-config-secrets # Name of your Kubernetes secret. + secretName: airbyte-config-secrets # Name of your Kubernetes secret. bucket: ## S3 bucket names that you've created. We recommend storing the following all in one bucket. log: airbyte-bucket state: airbyte-bucket @@ -106,7 +106,7 @@ Ensure you've already created a Kubernetes secret containing the credentials blo global: storage: type: "GCS" - storageSecretName: airbyte-config-secrets + secretName: airbyte-config-secrets bucket: ## GCS bucket names that you've created. We recommend storing the following all in one bucket. log: airbyte-bucket state: airbyte-bucket @@ -124,7 +124,7 @@ global: global: storage: type: "Azure" - storageSecretName: airbyte-config-secrets # Name of your Kubernetes secret. + secretName: airbyte-config-secrets # Name of your Kubernetes secret. bucket: ## S3 bucket names that you've created. We recommend storing the following all in one bucket. log: airbyte-bucket state: airbyte-bucket From 58c19be09a3e2747ee1c2bbe86c5ccb58bb4497c Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 29 Oct 2024 11:20:56 +0100 Subject: [PATCH 261/808] airbyte-ci: fix metadata existence check on master for IncrementalAcceptanceTest (#47316) --- airbyte-ci/connectors/pipelines/README.md | 1 + .../pipelines/airbyte_ci/connectors/test/steps/common.py | 7 +++---- airbyte-ci/connectors/pipelines/pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/airbyte-ci/connectors/pipelines/README.md b/airbyte-ci/connectors/pipelines/README.md index 71190a5823e8..ea700e04116c 100644 --- a/airbyte-ci/connectors/pipelines/README.md +++ b/airbyte-ci/connectors/pipelines/README.md @@ -850,6 +850,7 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only | Version | PR | Description | | ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| 4.42.1 | [#47316](https://github.com/airbytehq/airbyte/pull/47316) | Connector testing: skip incremental acceptance test when the connector is not released. | | 4.42.0 | [#47386](https://github.com/airbytehq/airbyte/pull/47386) | Version increment check: make sure consecutive RC remain on the same version. | | 4.41.9 | [#47483](https://github.com/airbytehq/airbyte/pull/47483) | Fix build logic used in `up-to-date` to support any connector language. | | 4.41.8 | [#47447](https://github.com/airbytehq/airbyte/pull/47447) | Use `cache_ttl` for base image registry listing in `up-to-date`. | diff --git a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/common.py b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/common.py index 1aa0a4f3fc81..afecc5fe00ee 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/common.py +++ b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/common.py @@ -423,11 +423,10 @@ async def get_failed_pytest_node_ids(self, current_acceptance_tests_report_log: return failed_nodes def _get_master_metadata(self) -> Dict[str, Any]: - raw_master_metadata = requests.get(f"{GITHUB_URL_PREFIX_FOR_CONNECTORS}/{self.context.connector.technical_name}/metadata.yaml") - master_metadata = yaml.safe_load(raw_master_metadata.text) - if not master_metadata: + metadata_response = requests.get(f"{GITHUB_URL_PREFIX_FOR_CONNECTORS}/{self.context.connector.technical_name}/metadata.yaml") + if not metadata_response.ok: raise FileNotFoundError(f"Could not fetch metadata file for {self.context.connector.technical_name} on master.") - return master_metadata + return yaml.safe_load(metadata_response.text) async def get_result_log_on_master(self, master_metadata: dict) -> Artifact: """Runs acceptance test on the released image of the connector and returns the report log. diff --git a/airbyte-ci/connectors/pipelines/pyproject.toml b/airbyte-ci/connectors/pipelines/pyproject.toml index 7832ed1a1223..7822160ca480 100644 --- a/airbyte-ci/connectors/pipelines/pyproject.toml +++ b/airbyte-ci/connectors/pipelines/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pipelines" -version = "4.42.0" +version = "4.42.1" description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines" authors = ["Airbyte "] From 6002cf84659283f78f65501f9fb8f5faafa3c55a Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 29 Oct 2024 11:23:15 +0100 Subject: [PATCH 262/808] GHA: dedicated dagger token for publish (#47722) --- .github/workflows/community_ci.yml | 2 -- .github/workflows/live_tests.yml | 2 +- .github/workflows/publish_connectors.yml | 4 ++-- .github/workflows/regression_tests.yml | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/community_ci.yml b/.github/workflows/community_ci.yml index c1bea9951942..5214fa1ad5da 100644 --- a/.github/workflows/community_ci.yml +++ b/.github/workflows/community_ci.yml @@ -172,7 +172,6 @@ jobs: uses: ./.github/actions/run-airbyte-ci with: context: "pull_request" - dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_4 }} docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} @@ -237,7 +236,6 @@ jobs: uses: ./.github/actions/run-airbyte-ci with: context: "pull_request" - dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_4 }} docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} diff --git a/.github/workflows/live_tests.yml b/.github/workflows/live_tests.yml index 0028e2eee8de..cbe33c48b635 100644 --- a/.github/workflows/live_tests.yml +++ b/.github/workflows/live_tests.yml @@ -116,7 +116,7 @@ jobs: uses: ./.github/actions/run-airbyte-ci with: context: "manual" - dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_4 }} + dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_3 }} docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} diff --git a/.github/workflows/publish_connectors.yml b/.github/workflows/publish_connectors.yml index 0c966c728340..293891394bb0 100644 --- a/.github/workflows/publish_connectors.yml +++ b/.github/workflows/publish_connectors.yml @@ -30,7 +30,7 @@ jobs: uses: ./.github/actions/run-airbyte-ci with: context: "master" - dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_3 }} + dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_4 }} docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} @@ -53,7 +53,7 @@ jobs: uses: ./.github/actions/run-airbyte-ci with: context: "manual" - dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_3 }} + dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_4 }} docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} diff --git a/.github/workflows/regression_tests.yml b/.github/workflows/regression_tests.yml index 6f0d7d19633b..4bd5fd68bb4b 100644 --- a/.github/workflows/regression_tests.yml +++ b/.github/workflows/regression_tests.yml @@ -116,7 +116,7 @@ jobs: uses: ./.github/actions/run-airbyte-ci with: context: "manual" - dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_4 }} + dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_3 }} docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} From fdca55a6d48993e280aff9ad57f523a95147dd0a Mon Sep 17 00:00:00 2001 From: Daryna Ishchenko <80129833+darynaishchenko@users.noreply.github.com> Date: Tue, 29 Oct 2024 12:38:47 +0200 Subject: [PATCH 263/808] feat(source-gcs): updated support level, logging, cat for oauth (#45923) --- .../connectors/source-gcs/acceptance-test-config.yml | 2 ++ .../connectors/source-gcs/metadata.yaml | 11 ++++++++--- .../connectors/source-gcs/pyproject.toml | 2 +- .../connectors/source-gcs/source_gcs/spec.py | 2 +- .../connectors/source-gcs/source_gcs/stream_reader.py | 7 ++++++- docs/integrations/sources/gcs.md | 1 + 6 files changed, 19 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-gcs/acceptance-test-config.yml b/airbyte-integrations/connectors/source-gcs/acceptance-test-config.yml index 225ada071044..9eafbd2b746d 100644 --- a/airbyte-integrations/connectors/source-gcs/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-gcs/acceptance-test-config.yml @@ -16,6 +16,8 @@ acceptance_tests: status: exception - config_path: "secrets/config_glob.json" status: succeed + - config_path: "secrets/config_oauth.json" + status: succeed discovery: tests: - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-gcs/metadata.yaml b/airbyte-integrations/connectors/source-gcs/metadata.yaml index 867f7b64cadb..8b4ca6194e3d 100644 --- a/airbyte-integrations/connectors/source-gcs/metadata.yaml +++ b/airbyte-integrations/connectors/source-gcs/metadata.yaml @@ -1,7 +1,7 @@ data: ab_internal: ql: 200 - sl: 100 + sl: 300 allowedHosts: hosts: - storage.googleapis.com @@ -11,7 +11,7 @@ data: connectorSubtype: file connectorType: source definitionId: 2a8c41ae-8c23-4be0-a73f-2ab10ca1a820 - dockerImageTag: 0.8.0 + dockerImageTag: 0.8.1 dockerRepository: airbyte/source-gcs documentationUrl: https://docs.airbyte.com/integrations/sources/gcs githubIssueLabel: source-gcs @@ -29,7 +29,7 @@ data: oss: enabled: true releaseStage: alpha - supportLevel: community + supportLevel: certified tags: - language:python - cdk:python-file-based @@ -64,4 +64,9 @@ data: secretStore: type: GSM alias: airbyte-connector-testing-secret-store + - name: SECRET_SOURCE-GCS_OAUTH + fileName: config_oauth.json + secretStore: + type: GSM + alias: airbyte-connector-testing-secret-store metadataSpecVersion: "1.0" diff --git a/airbyte-integrations/connectors/source-gcs/pyproject.toml b/airbyte-integrations/connectors/source-gcs/pyproject.toml index 200b63178f1c..086120fbc32d 100644 --- a/airbyte-integrations/connectors/source-gcs/pyproject.toml +++ b/airbyte-integrations/connectors/source-gcs/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.8.0" +version = "0.8.1" name = "source-gcs" description = "Source implementation for Gcs." authors = [ "Airbyte ",] diff --git a/airbyte-integrations/connectors/source-gcs/source_gcs/spec.py b/airbyte-integrations/connectors/source-gcs/source_gcs/spec.py index 0d4cbb070018..abc91843a449 100644 --- a/airbyte-integrations/connectors/source-gcs/source_gcs/spec.py +++ b/airbyte-integrations/connectors/source-gcs/source_gcs/spec.py @@ -4,7 +4,7 @@ from typing import Literal, Union from airbyte_cdk.utils.oneof_option_config import OneOfOptionConfig -from pydantic import BaseModel, Field +from pydantic.v1 import BaseModel, Field class OAuthCredentials(BaseModel): diff --git a/airbyte-integrations/connectors/source-gcs/source_gcs/stream_reader.py b/airbyte-integrations/connectors/source-gcs/source_gcs/stream_reader.py index 9bb732061f34..fdd339c43424 100644 --- a/airbyte-integrations/connectors/source-gcs/source_gcs/stream_reader.py +++ b/airbyte-integrations/connectors/source-gcs/source_gcs/stream_reader.py @@ -19,6 +19,9 @@ from source_gcs.helpers import GCSRemoteFile from source_gcs.zip_helper import ZipHelper +# google can raise warnings for end user credentials, wrapping it to Logger +logging.captureWarnings(True) + ERROR_MESSAGE_ACCESS = ( "We don't have access to {uri}. The file appears to have become unreachable during sync." "Check whether key {uri} exists in `{bucket}` bucket and/or has proper ACL permissions" @@ -50,7 +53,9 @@ def _initialize_gcs_client(self): raise ValueError("Source config is missing; cannot create the GCS client.") if self._gcs_client is None: credentials = self._get_credentials() - self._gcs_client = storage.Client(credentials=credentials) + # using default project to avoid getting project from env, applies only for OAuth creds + project = getattr(credentials, "project_id", "default") + self._gcs_client = storage.Client(project=project, credentials=credentials) return self._gcs_client def _get_credentials(self): diff --git a/docs/integrations/sources/gcs.md b/docs/integrations/sources/gcs.md index 9fff0d37eadb..08b8a9b6cc00 100644 --- a/docs/integrations/sources/gcs.md +++ b/docs/integrations/sources/gcs.md @@ -236,6 +236,7 @@ Google Cloud Storage (GCS) supports following file formats: | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------| +| 0.8.1 | 2024-10-28 | [45923](https://github.com/airbytehq/airbyte/pull/45923) | Update logging | | 0.8.0 | 2024-10-28 | [45414](https://github.com/airbytehq/airbyte/pull/45414) | Add support for OAuth authentication | | 0.7.4 | 2024-10-12 | [46858](https://github.com/airbytehq/airbyte/pull/46858) | Update dependencies | | 0.7.3 | 2024-10-05 | [46458](https://github.com/airbytehq/airbyte/pull/46458) | Update dependencies | From a3faffd4652da731bae1b1f19f832735b83e5c38 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:05 +0200 Subject: [PATCH 264/808] =?UTF-8?q?=F0=9F=90=99=20source-you-need-a-budget?= =?UTF-8?q?-ynab:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47760)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-you-need-a-budget-ynab/metadata.yaml | 4 ++-- docs/integrations/sources/you-need-a-budget-ynab.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-you-need-a-budget-ynab/metadata.yaml b/airbyte-integrations/connectors/source-you-need-a-budget-ynab/metadata.yaml index 34fb0faa7afb..1e698debcbb9 100644 --- a/airbyte-integrations/connectors/source-you-need-a-budget-ynab/metadata.yaml +++ b/airbyte-integrations/connectors/source-you-need-a-budget-ynab/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-you-need-a-budget-ynab connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: a60d9f16-e0bd-459f-9419-fd47f9788be1 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-you-need-a-budget-ynab githubIssueLabel: source-you-need-a-budget-ynab icon: icon.svg diff --git a/docs/integrations/sources/you-need-a-budget-ynab.md b/docs/integrations/sources/you-need-a-budget-ynab.md index 1dd36f83fc0f..7d29ea7a0d6e 100644 --- a/docs/integrations/sources/you-need-a-budget-ynab.md +++ b/docs/integrations/sources/you-need-a-budget-ynab.md @@ -24,6 +24,7 @@ Replicates the budgets, accounts, categories, payees, transactions, and category | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-29 | [47760](https://github.com/airbytehq/airbyte/pull/47760) | Update dependencies | | 0.0.1 | 2024-09-25 | | Initial release by [@bnmry](https://github.com/bnmry) via Connector Builder | - \ No newline at end of file + From 751880a2f4aafb40da70a6a9d0e6cf48a9e695a3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:08 +0200 Subject: [PATCH 265/808] =?UTF-8?q?=F0=9F=90=99=20source-front:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47759)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-front/metadata.yaml | 4 ++-- docs/integrations/sources/front.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-front/metadata.yaml b/airbyte-integrations/connectors/source-front/metadata.yaml index 8a3e291d9bd9..ca61d9cb4574 100644 --- a/airbyte-integrations/connectors/source-front/metadata.yaml +++ b/airbyte-integrations/connectors/source-front/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-front connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: ae390de9-bdd5-4bfa-9d14-34010b44ca50 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-front githubIssueLabel: source-front icon: icon.svg diff --git a/docs/integrations/sources/front.md b/docs/integrations/sources/front.md index 0efe949bb3bc..5666b9d069c2 100644 --- a/docs/integrations/sources/front.md +++ b/docs/integrations/sources/front.md @@ -62,6 +62,7 @@ Visit `https://dev.frontapp.com/docs/create-and-revoke-api-tokens` for getting y | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-29 | [47759](https://github.com/airbytehq/airbyte/pull/47759) | Update dependencies | | 0.0.1 | 2024-09-11 | [45387](https://github.com/airbytehq/airbyte/pull/45387) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 6616c2fe4ccf2e988259a2074994522d3de9b6fd Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:13 +0200 Subject: [PATCH 266/808] =?UTF-8?q?=F0=9F=90=99=20destination-qdrant:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47757)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-qdrant/metadata.yaml | 2 +- .../connectors/destination-qdrant/poetry.lock | 406 +++++++++--------- .../destination-qdrant/pyproject.toml | 2 +- docs/integrations/destinations/qdrant.md | 1 + 4 files changed, 206 insertions(+), 205 deletions(-) diff --git a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml index b09446308d58..25f79fcb2fed 100644 --- a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml +++ b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 6eb1198a-6d38-43e5-aaaa-dccd8f71db2b - dockerImageTag: 0.1.18 + dockerImageTag: 0.1.19 dockerRepository: airbyte/destination-qdrant githubIssueLabel: destination-qdrant icon: qdrant.svg diff --git a/airbyte-integrations/connectors/destination-qdrant/poetry.lock b/airbyte-integrations/connectors/destination-qdrant/poetry.lock index 1aba1510d342..bbc36fa7173d 100644 --- a/airbyte-integrations/connectors/destination-qdrant/poetry.lock +++ b/airbyte-integrations/connectors/destination-qdrant/poetry.lock @@ -1186,137 +1186,137 @@ test = ["objgraph", "psutil"] [[package]] name = "grpcio" -version = "1.67.0" +version = "1.67.1" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.67.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:bd79929b3bb96b54df1296cd3bf4d2b770bd1df6c2bdf549b49bab286b925cdc"}, - {file = "grpcio-1.67.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:16724ffc956ea42967f5758c2f043faef43cb7e48a51948ab593570570d1e68b"}, - {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:2b7183c80b602b0ad816315d66f2fb7887614ead950416d60913a9a71c12560d"}, - {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efe32b45dd6d118f5ea2e5deaed417d8a14976325c93812dd831908522b402c9"}, - {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe89295219b9c9e47780a0f1c75ca44211e706d1c598242249fe717af3385ec8"}, - {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa8d025fae1595a207b4e47c2e087cb88d47008494db258ac561c00877d4c8f8"}, - {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f95e15db43e75a534420e04822df91f645664bf4ad21dfaad7d51773c80e6bb4"}, - {file = "grpcio-1.67.0-cp310-cp310-win32.whl", hash = "sha256:a6b9a5c18863fd4b6624a42e2712103fb0f57799a3b29651c0e5b8119a519d65"}, - {file = "grpcio-1.67.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6eb68493a05d38b426604e1dc93bfc0137c4157f7ab4fac5771fd9a104bbaa6"}, - {file = "grpcio-1.67.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:e91d154689639932305b6ea6f45c6e46bb51ecc8ea77c10ef25aa77f75443ad4"}, - {file = "grpcio-1.67.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cb204a742997277da678611a809a8409657b1398aaeebf73b3d9563b7d154c13"}, - {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:ae6de510f670137e755eb2a74b04d1041e7210af2444103c8c95f193340d17ee"}, - {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74b900566bdf68241118f2918d312d3bf554b2ce0b12b90178091ea7d0a17b3d"}, - {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4e95e43447a02aa603abcc6b5e727d093d161a869c83b073f50b9390ecf0fa8"}, - {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0bb94e66cd8f0baf29bd3184b6aa09aeb1a660f9ec3d85da615c5003154bc2bf"}, - {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:82e5bd4b67b17c8c597273663794a6a46a45e44165b960517fe6d8a2f7f16d23"}, - {file = "grpcio-1.67.0-cp311-cp311-win32.whl", hash = "sha256:7fc1d2b9fd549264ae585026b266ac2db53735510a207381be509c315b4af4e8"}, - {file = "grpcio-1.67.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac11ecb34a86b831239cc38245403a8de25037b448464f95c3315819e7519772"}, - {file = "grpcio-1.67.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:227316b5631260e0bef8a3ce04fa7db4cc81756fea1258b007950b6efc90c05d"}, - {file = "grpcio-1.67.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d90cfdafcf4b45a7a076e3e2a58e7bc3d59c698c4f6470b0bb13a4d869cf2273"}, - {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:77196216d5dd6f99af1c51e235af2dd339159f657280e65ce7e12c1a8feffd1d"}, - {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15c05a26a0f7047f720da41dc49406b395c1470eef44ff7e2c506a47ac2c0591"}, - {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3840994689cc8cbb73d60485c594424ad8adb56c71a30d8948d6453083624b52"}, - {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:5a1e03c3102b6451028d5dc9f8591131d6ab3c8a0e023d94c28cb930ed4b5f81"}, - {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:682968427a63d898759474e3b3178d42546e878fdce034fd7474ef75143b64e3"}, - {file = "grpcio-1.67.0-cp312-cp312-win32.whl", hash = "sha256:d01793653248f49cf47e5695e0a79805b1d9d4eacef85b310118ba1dfcd1b955"}, - {file = "grpcio-1.67.0-cp312-cp312-win_amd64.whl", hash = "sha256:985b2686f786f3e20326c4367eebdaed3e7aa65848260ff0c6644f817042cb15"}, - {file = "grpcio-1.67.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:8c9a35b8bc50db35ab8e3e02a4f2a35cfba46c8705c3911c34ce343bd777813a"}, - {file = "grpcio-1.67.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:42199e704095b62688998c2d84c89e59a26a7d5d32eed86d43dc90e7a3bd04aa"}, - {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c4c425f440fb81f8d0237c07b9322fc0fb6ee2b29fbef5f62a322ff8fcce240d"}, - {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:323741b6699cd2b04a71cb38f502db98f90532e8a40cb675393d248126a268af"}, - {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:662c8e105c5e5cee0317d500eb186ed7a93229586e431c1bf0c9236c2407352c"}, - {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f6bd2ab135c64a4d1e9e44679a616c9bc944547357c830fafea5c3caa3de5153"}, - {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:2f55c1e0e2ae9bdd23b3c63459ee4c06d223b68aeb1961d83c48fb63dc29bc03"}, - {file = "grpcio-1.67.0-cp313-cp313-win32.whl", hash = "sha256:fd6bc27861e460fe28e94226e3673d46e294ca4673d46b224428d197c5935e69"}, - {file = "grpcio-1.67.0-cp313-cp313-win_amd64.whl", hash = "sha256:cf51d28063338608cd8d3cd64677e922134837902b70ce00dad7f116e3998210"}, - {file = "grpcio-1.67.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:7f200aca719c1c5dc72ab68be3479b9dafccdf03df530d137632c534bb6f1ee3"}, - {file = "grpcio-1.67.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0892dd200ece4822d72dd0952f7112c542a487fc48fe77568deaaa399c1e717d"}, - {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:f4d613fbf868b2e2444f490d18af472ccb47660ea3df52f068c9c8801e1f3e85"}, - {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c69bf11894cad9da00047f46584d5758d6ebc9b5950c0dc96fec7e0bce5cde9"}, - {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9bca3ca0c5e74dea44bf57d27e15a3a3996ce7e5780d61b7c72386356d231db"}, - {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:014dfc020e28a0d9be7e93a91f85ff9f4a87158b7df9952fe23cc42d29d31e1e"}, - {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d4ea4509d42c6797539e9ec7496c15473177ce9abc89bc5c71e7abe50fc25737"}, - {file = "grpcio-1.67.0-cp38-cp38-win32.whl", hash = "sha256:9d75641a2fca9ae1ae86454fd25d4c298ea8cc195dbc962852234d54a07060ad"}, - {file = "grpcio-1.67.0-cp38-cp38-win_amd64.whl", hash = "sha256:cff8e54d6a463883cda2fab94d2062aad2f5edd7f06ae3ed030f2a74756db365"}, - {file = "grpcio-1.67.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:62492bd534979e6d7127b8a6b29093161a742dee3875873e01964049d5250a74"}, - {file = "grpcio-1.67.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eef1dce9d1a46119fd09f9a992cf6ab9d9178b696382439446ca5f399d7b96fe"}, - {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:f623c57a5321461c84498a99dddf9d13dac0e40ee056d884d6ec4ebcab647a78"}, - {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54d16383044e681f8beb50f905249e4e7261dd169d4aaf6e52eab67b01cbbbe2"}, - {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2a44e572fb762c668e4812156b81835f7aba8a721b027e2d4bb29fb50ff4d33"}, - {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:391df8b0faac84d42f5b8dfc65f5152c48ed914e13c522fd05f2aca211f8bfad"}, - {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cfd9306511fdfc623a1ba1dc3bc07fbd24e6cfbe3c28b4d1e05177baa2f99617"}, - {file = "grpcio-1.67.0-cp39-cp39-win32.whl", hash = "sha256:30d47dbacfd20cbd0c8be9bfa52fdb833b395d4ec32fe5cff7220afc05d08571"}, - {file = "grpcio-1.67.0-cp39-cp39-win_amd64.whl", hash = "sha256:f55f077685f61f0fbd06ea355142b71e47e4a26d2d678b3ba27248abfe67163a"}, - {file = "grpcio-1.67.0.tar.gz", hash = "sha256:e090b2553e0da1c875449c8e75073dd4415dd71c9bde6a406240fdf4c0ee467c"}, + {file = "grpcio-1.67.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:8b0341d66a57f8a3119b77ab32207072be60c9bf79760fa609c5609f2deb1f3f"}, + {file = "grpcio-1.67.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:f5a27dddefe0e2357d3e617b9079b4bfdc91341a91565111a21ed6ebbc51b22d"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:43112046864317498a33bdc4797ae6a268c36345a910de9b9c17159d8346602f"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9b929f13677b10f63124c1a410994a401cdd85214ad83ab67cc077fc7e480f0"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7d1797a8a3845437d327145959a2c0c47c05947c9eef5ff1a4c80e499dcc6fa"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0489063974d1452436139501bf6b180f63d4977223ee87488fe36858c5725292"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9fd042de4a82e3e7aca44008ee2fb5da01b3e5adb316348c21980f7f58adc311"}, + {file = "grpcio-1.67.1-cp310-cp310-win32.whl", hash = "sha256:638354e698fd0c6c76b04540a850bf1db27b4d2515a19fcd5cf645c48d3eb1ed"}, + {file = "grpcio-1.67.1-cp310-cp310-win_amd64.whl", hash = "sha256:608d87d1bdabf9e2868b12338cd38a79969eaf920c89d698ead08f48de9c0f9e"}, + {file = "grpcio-1.67.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:7818c0454027ae3384235a65210bbf5464bd715450e30a3d40385453a85a70cb"}, + {file = "grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ea33986b70f83844cd00814cee4451055cd8cab36f00ac64a31f5bb09b31919e"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c7a01337407dd89005527623a4a72c5c8e2894d22bead0895306b23c6695698f"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b866f73224b0634f4312a4674c1be21b2b4afa73cb20953cbbb73a6b36c3cc"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fff78ba10d4250bfc07a01bd6254a6d87dc67f9627adece85c0b2ed754fa96"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8a23cbcc5bb11ea7dc6163078be36c065db68d915c24f5faa4f872c573bb400f"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1a65b503d008f066e994f34f456e0647e5ceb34cfcec5ad180b1b44020ad4970"}, + {file = "grpcio-1.67.1-cp311-cp311-win32.whl", hash = "sha256:e29ca27bec8e163dca0c98084040edec3bc49afd10f18b412f483cc68c712744"}, + {file = "grpcio-1.67.1-cp311-cp311-win_amd64.whl", hash = "sha256:786a5b18544622bfb1e25cc08402bd44ea83edfb04b93798d85dca4d1a0b5be5"}, + {file = "grpcio-1.67.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:267d1745894200e4c604958da5f856da6293f063327cb049a51fe67348e4f953"}, + {file = "grpcio-1.67.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:85f69fdc1d28ce7cff8de3f9c67db2b0ca9ba4449644488c1e0303c146135ddb"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:f26b0b547eb8d00e195274cdfc63ce64c8fc2d3e2d00b12bf468ece41a0423a0"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4422581cdc628f77302270ff839a44f4c24fdc57887dc2a45b7e53d8fc2376af"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7616d2ded471231c701489190379e0c311ee0a6c756f3c03e6a62b95a7146e"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8a00efecde9d6fcc3ab00c13f816313c040a28450e5e25739c24f432fc6d3c75"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:699e964923b70f3101393710793289e42845791ea07565654ada0969522d0a38"}, + {file = "grpcio-1.67.1-cp312-cp312-win32.whl", hash = "sha256:4e7b904484a634a0fff132958dabdb10d63e0927398273917da3ee103e8d1f78"}, + {file = "grpcio-1.67.1-cp312-cp312-win_amd64.whl", hash = "sha256:5721e66a594a6c4204458004852719b38f3d5522082be9061d6510b455c90afc"}, + {file = "grpcio-1.67.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:aa0162e56fd10a5547fac8774c4899fc3e18c1aa4a4759d0ce2cd00d3696ea6b"}, + {file = "grpcio-1.67.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:beee96c8c0b1a75d556fe57b92b58b4347c77a65781ee2ac749d550f2a365dc1"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:a93deda571a1bf94ec1f6fcda2872dad3ae538700d94dc283c672a3b508ba3af"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6f255980afef598a9e64a24efce87b625e3e3c80a45162d111a461a9f92955"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e838cad2176ebd5d4a8bb03955138d6589ce9e2ce5d51c3ada34396dbd2dba8"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a6703916c43b1d468d0756c8077b12017a9fcb6a1ef13faf49e67d20d7ebda62"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:917e8d8994eed1d86b907ba2a61b9f0aef27a2155bca6cbb322430fc7135b7bb"}, + {file = "grpcio-1.67.1-cp313-cp313-win32.whl", hash = "sha256:e279330bef1744040db8fc432becc8a727b84f456ab62b744d3fdb83f327e121"}, + {file = "grpcio-1.67.1-cp313-cp313-win_amd64.whl", hash = "sha256:fa0c739ad8b1996bd24823950e3cb5152ae91fca1c09cc791190bf1627ffefba"}, + {file = "grpcio-1.67.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:178f5db771c4f9a9facb2ab37a434c46cb9be1a75e820f187ee3d1e7805c4f65"}, + {file = "grpcio-1.67.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0f3e49c738396e93b7ba9016e153eb09e0778e776df6090c1b8c91877cc1c426"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:24e8a26dbfc5274d7474c27759b54486b8de23c709d76695237515bc8b5baeab"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b6c16489326d79ead41689c4b84bc40d522c9a7617219f4ad94bc7f448c5085"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e6a4dcf5af7bbc36fd9f81c9f372e8ae580870a9e4b6eafe948cd334b81cf3"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:95b5f2b857856ed78d72da93cd7d09b6db8ef30102e5e7fe0961fe4d9f7d48e8"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b49359977c6ec9f5d0573ea4e0071ad278ef905aa74e420acc73fd28ce39e9ce"}, + {file = "grpcio-1.67.1-cp38-cp38-win32.whl", hash = "sha256:f5b76ff64aaac53fede0cc93abf57894ab2a7362986ba22243d06218b93efe46"}, + {file = "grpcio-1.67.1-cp38-cp38-win_amd64.whl", hash = "sha256:804c6457c3cd3ec04fe6006c739579b8d35c86ae3298ffca8de57b493524b771"}, + {file = "grpcio-1.67.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:a25bdea92b13ff4d7790962190bf6bf5c4639876e01c0f3dda70fc2769616335"}, + {file = "grpcio-1.67.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cdc491ae35a13535fd9196acb5afe1af37c8237df2e54427be3eecda3653127e"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:85f862069b86a305497e74d0dc43c02de3d1d184fc2c180993aa8aa86fbd19b8"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec74ef02010186185de82cc594058a3ccd8d86821842bbac9873fd4a2cf8be8d"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01f616a964e540638af5130469451cf580ba8c7329f45ca998ab66e0c7dcdb04"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:299b3d8c4f790c6bcca485f9963b4846dd92cf6f1b65d3697145d005c80f9fe8"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:60336bff760fbb47d7e86165408126f1dded184448e9a4c892189eb7c9d3f90f"}, + {file = "grpcio-1.67.1-cp39-cp39-win32.whl", hash = "sha256:5ed601c4c6008429e3d247ddb367fe8c7259c355757448d7c1ef7bd4a6739e8e"}, + {file = "grpcio-1.67.1-cp39-cp39-win_amd64.whl", hash = "sha256:5db70d32d6703b89912af16d6d45d78406374a8b8ef0d28140351dd0ec610e98"}, + {file = "grpcio-1.67.1.tar.gz", hash = "sha256:3dc2ed4cabea4dc14d5e708c2b426205956077cc5de419b4d4079315017e9732"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.67.0)"] +protobuf = ["grpcio-tools (>=1.67.1)"] [[package]] name = "grpcio-tools" -version = "1.67.0" +version = "1.67.1" description = "Protobuf code generator for gRPC" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio_tools-1.67.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:12aa38af76b5ef00a55808c7c374ed18d5dc7cc8081b717e56da3c50df1776e2"}, - {file = "grpcio_tools-1.67.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:b0b03d055127bbc7c629454804b53b5cad2cedfcf904576d159a8a04c22b8e66"}, - {file = "grpcio_tools-1.67.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:02b0b50c59a8f7428326197027a2f586d216c46138c547f861533c46bff78bfe"}, - {file = "grpcio_tools-1.67.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2afdfe151ed9edbd4a3fd646716f83b58010769c57f9c0aa1cf4c3bfb1240a8"}, - {file = "grpcio_tools-1.67.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc3eeb87575b2b360c5ef5aef22eb76cfdd6a255d2f628a48ab0e5a61a0039fb"}, - {file = "grpcio_tools-1.67.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ead78089c4771605a1ff8894e47f2267440693f1beeee06fd5a788aede83370f"}, - {file = "grpcio_tools-1.67.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0671dcdccef09ca4eb415c1d6f470a857c6486733c146676f6810a3ade1d42cb"}, - {file = "grpcio_tools-1.67.0-cp310-cp310-win32.whl", hash = "sha256:a7398d90b8c7da479aec8f853d3664d5a93c209f8ac3bd41cb7ae4e8677a45c6"}, - {file = "grpcio_tools-1.67.0-cp310-cp310-win_amd64.whl", hash = "sha256:f7e7d70a74df7e07be7cceaa694b7e8e5f3bef8e0299906f60885ecf7a40adb4"}, - {file = "grpcio_tools-1.67.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:655716bf931a22a090134d87953710033640996d31e36f5f9b0106ff5f552d8e"}, - {file = "grpcio_tools-1.67.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:484ae782f9d3ff58e0bbb2f4cad14d5f5d9132fc701835b1dffd2c2a06f73ba6"}, - {file = "grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:f3e34de876efe1273f91e25ef241e449ed7f9411472dd9ff56d2039618017c30"}, - {file = "grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8301719edde2c3d388995703cdd962f558b76e9750405f772dce61402e4c3d0"}, - {file = "grpcio_tools-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1629ea246044ccd473d9ac4c9f137a440d830b5e08d35225e1b354dbbb15b75d"}, - {file = "grpcio_tools-1.67.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d77a3c5cec0065267ca1a0b2589ececd1277ce25aa67f13ec50c816ee6f26f7f"}, - {file = "grpcio_tools-1.67.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c9bf992bcc7d9e6eaa20705056e1b955593092a38cec1746fef389d873ab2056"}, - {file = "grpcio_tools-1.67.0-cp311-cp311-win32.whl", hash = "sha256:7e6e3db119c38629e0767cdb2ee18726ecc87e2249117d4c9e7ce06ea8c894ea"}, - {file = "grpcio_tools-1.67.0-cp311-cp311-win_amd64.whl", hash = "sha256:c6c27aec301a0e6cf231f9ee1c467c64002af51170fa7c0f3bb10bbfcd03fee7"}, - {file = "grpcio_tools-1.67.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:dca7f053cbdb26a587d4410ddb893877c585fb60a31f22fdd128e4f7c4dab27c"}, - {file = "grpcio_tools-1.67.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:de8c4f68ffa690769d84329c17c7fdd5fbe4c61b8f8a0de03f1ad8ef8bb06963"}, - {file = "grpcio_tools-1.67.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:6e4ecb24c27a78f09fead45d4ed873805d6026124ccb6793b6fb93a490b78ddf"}, - {file = "grpcio_tools-1.67.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:004d6ef1b5f724480f05c0bdc904bf8c78c43d633c537d99abe51b52ce0cadeb"}, - {file = "grpcio_tools-1.67.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dd257072c86eb9b36791b3674a513a215ba76bbdd38fc228f0e8c6dc5ce3524"}, - {file = "grpcio_tools-1.67.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a8cca551317ed26e17d13b6ee27b2bd62f5fe9b3842b4e88389deb984f995848"}, - {file = "grpcio_tools-1.67.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a7ac3b4f837c693142f6688b629d1f6408f6ab250d927159b572555f5339fe25"}, - {file = "grpcio_tools-1.67.0-cp312-cp312-win32.whl", hash = "sha256:95feec33388e2a8f72c360a68efe6f0bfed9c771e94d21b7f2359d0010f60219"}, - {file = "grpcio_tools-1.67.0-cp312-cp312-win_amd64.whl", hash = "sha256:50a31d035193ebe7154181eac84734e25bdcdb36adba849d3b2adf1c3b0c382b"}, - {file = "grpcio_tools-1.67.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:9ecb7c2e5da052a3feaeaa83d8f2a946a8feec8a50751b0e6175da982b49ebb1"}, - {file = "grpcio_tools-1.67.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:3c52164f2b9d41c6d75464bb45f45737dcb421e92e98d85d94fda100c67a24d8"}, - {file = "grpcio_tools-1.67.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:471f58b919767290260d427dd9b760796e6208ee5fcda2f76bb8bd585ff842ec"}, - {file = "grpcio_tools-1.67.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72c6bcdf38f672721c093c92b1fb1f9a02a365acc5bd42e1c69fe6e904b26081"}, - {file = "grpcio_tools-1.67.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:833b1eb9c03d28a798294523f75294055eff78fa897adf797876337b901afeb9"}, - {file = "grpcio_tools-1.67.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:1db92ad6ade1946fc5705eb04956fcfdb3a0a4682de8dc3fce31cb97b6e4fcb8"}, - {file = "grpcio_tools-1.67.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:38128310ded818e1044c0cd0979d76f7c0d3c3946a526a8aa39cd258624c3bf3"}, - {file = "grpcio_tools-1.67.0-cp313-cp313-win32.whl", hash = "sha256:db57930dc20ab678311727883bdb9f122daf06c14f3fd3067c9ccedb7eb056c3"}, - {file = "grpcio_tools-1.67.0-cp313-cp313-win_amd64.whl", hash = "sha256:7de44d8d3bb920a4973a559f2950d03382fa4aed4880306416ffa73d24838477"}, - {file = "grpcio_tools-1.67.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:793896648734aad3ad8f26795dcdd6040aecd35efef43fcbb67d221373e6379a"}, - {file = "grpcio_tools-1.67.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:941418cba6a8adfcac3ff7ff3bdef00b55a44d673634c15bddcfa7778e49239e"}, - {file = "grpcio_tools-1.67.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:0d63ff6be6f3d0294249fc7a21f26f06c9cc209130c5328907cd678406d7d232"}, - {file = "grpcio_tools-1.67.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:af80ced3ba49377ef7bec93e9ccbfa357875460e9a624ed12d9a7d5348741a76"}, - {file = "grpcio_tools-1.67.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3c3fbb4a6d10764295540579492397bc7a3334e1a92dd17a4bc7b69159cf70a"}, - {file = "grpcio_tools-1.67.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a05c10fb783f609d16e1f754ebad9bb432a1adbfc46139d154e8fd6b15f59988"}, - {file = "grpcio_tools-1.67.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ea8af001f08c678ab59e2bf2614d8b09d62210e540f7af1129c172fe4fd330c7"}, - {file = "grpcio_tools-1.67.0-cp38-cp38-win32.whl", hash = "sha256:004d329aee385fa874979196e5359a967c370d31813f61eba88043ccaa2e06d8"}, - {file = "grpcio_tools-1.67.0-cp38-cp38-win_amd64.whl", hash = "sha256:fc43593bd051abb73a5d130fc041923144089ac459fb01165960106ebb686fd0"}, - {file = "grpcio_tools-1.67.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:d285c036ddfc2618c4db60b584409dd8313d41473bd46177c763ea22ed9aeb1f"}, - {file = "grpcio_tools-1.67.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:623fdad489447e1565d0ba5a818d54b4e74cd73800b6a32c4c009601c7f7a36c"}, - {file = "grpcio_tools-1.67.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:24536af8a5f8e532fbd996c1763eff51526d1d1563f9499ff5ffffb9a08811f3"}, - {file = "grpcio_tools-1.67.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd64a9a8eb675dd2aa59cb4b2ab025a3b02ae1bb9e483c7fb518ffa0f0755cda"}, - {file = "grpcio_tools-1.67.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94378bc90fb008b0a56237748aa42c787fd86c392e7df3d65f0fe7fcd93844a"}, - {file = "grpcio_tools-1.67.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d0f39a9d860a6768574cd77b5d9ad81513fa1c575d3a050d4e72e6d79dcd62f3"}, - {file = "grpcio_tools-1.67.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c578f1306bfd0dd0668e24f8c04d61529928de2660217022a947a56be177bc2d"}, - {file = "grpcio_tools-1.67.0-cp39-cp39-win32.whl", hash = "sha256:0c2cf8d09bdc05e0550ad413e0bc0d552500bb7f98d36079b7b9d38e064e02f7"}, - {file = "grpcio_tools-1.67.0-cp39-cp39-win_amd64.whl", hash = "sha256:cc570bcd9c9681bb011f746ea90cc50559be629227aaaaae9fde8549525f0287"}, - {file = "grpcio_tools-1.67.0.tar.gz", hash = "sha256:181b3d4e61b83142c182ec366f3079b0023509743986e54c9465ca38cac255f8"}, + {file = "grpcio_tools-1.67.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:c701aaa51fde1f2644bd94941aa94c337adb86f25cd03cf05e37387aaea25800"}, + {file = "grpcio_tools-1.67.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:6a722bba714392de2386569c40942566b83725fa5c5450b8910e3832a5379469"}, + {file = "grpcio_tools-1.67.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:0c7415235cb154e40b5ae90e2a172a0eb8c774b6876f53947cf0af05c983d549"}, + {file = "grpcio_tools-1.67.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6a4c459098c4934f9470280baf9ff8b38c365e147f33c8abc26039a948a664a5"}, + {file = "grpcio_tools-1.67.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e89bf53a268f55c16989dab1cf0b32a5bff910762f138136ffad4146129b7a10"}, + {file = "grpcio_tools-1.67.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f09cb3e6bcb140f57b878580cf3b848976f67faaf53d850a7da9bfac12437068"}, + {file = "grpcio_tools-1.67.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:616dd0c6686212ca90ff899bb37eb774798677e43dc6f78c6954470782d37399"}, + {file = "grpcio_tools-1.67.1-cp310-cp310-win32.whl", hash = "sha256:58a66dbb3f0fef0396737ac09d6571a7f8d96a544ce3ed04c161f3d4fa8d51cc"}, + {file = "grpcio_tools-1.67.1-cp310-cp310-win_amd64.whl", hash = "sha256:89ee7c505bdf152e67c2cced6055aed4c2d4170f53a2b46a7e543d3b90e7b977"}, + {file = "grpcio_tools-1.67.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:6d80ddd87a2fb7131d242f7d720222ef4f0f86f53ec87b0a6198c343d8e4a86e"}, + {file = "grpcio_tools-1.67.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b655425b82df51f3bd9fd3ba1a6282d5c9ce1937709f059cb3d419b224532d89"}, + {file = "grpcio_tools-1.67.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:250241e6f9d20d0910a46887dfcbf2ec9108efd3b48f3fb95bb42d50d09d03f8"}, + {file = "grpcio_tools-1.67.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6008f5a5add0b6f03082edb597acf20d5a9e4e7c55ea1edac8296c19e6a0ec8d"}, + {file = "grpcio_tools-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5eff9818c3831fa23735db1fa39aeff65e790044d0a312260a0c41ae29cc2d9e"}, + {file = "grpcio_tools-1.67.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:262ab7c40113f8c3c246e28e369661ddf616a351cb34169b8ba470c9a9c3b56f"}, + {file = "grpcio_tools-1.67.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1eebd8c746adf5786fa4c3056258c21cc470e1eca51d3ed23a7fb6a697fe4e81"}, + {file = "grpcio_tools-1.67.1-cp311-cp311-win32.whl", hash = "sha256:3eff92fb8ca1dd55e3af0ef02236c648921fb7d0e8ca206b889585804b3659ae"}, + {file = "grpcio_tools-1.67.1-cp311-cp311-win_amd64.whl", hash = "sha256:1ed18281ee17e5e0f9f6ce0c6eb3825ca9b5a0866fc1db2e17fab8aca28b8d9f"}, + {file = "grpcio_tools-1.67.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:bd5caef3a484e226d05a3f72b2d69af500dca972cf434bf6b08b150880166f0b"}, + {file = "grpcio_tools-1.67.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:48a2d63d1010e5b218e8e758ecb2a8d63c0c6016434e9f973df1c3558917020a"}, + {file = "grpcio_tools-1.67.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:baa64a6aa009bffe86309e236c81b02cd4a88c1ebd66f2d92e84e9b97a9ae857"}, + {file = "grpcio_tools-1.67.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4ab318c40b5e3c097a159035fc3e4ecfbe9b3d2c9de189e55468b2c27639a6ab"}, + {file = "grpcio_tools-1.67.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50eba3e31f9ac1149463ad9182a37349850904f142cffbd957cd7f54ec320b8e"}, + {file = "grpcio_tools-1.67.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:de6fbc071ecc4fe6e354a7939202191c1f1abffe37fbce9b08e7e9a5b93eba3d"}, + {file = "grpcio_tools-1.67.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:db9e87f6ea4b0ce99b2651203480585fd9e8dd0dd122a19e46836e93e3a1b749"}, + {file = "grpcio_tools-1.67.1-cp312-cp312-win32.whl", hash = "sha256:6a595a872fb720dde924c4e8200f41d5418dd6baab8cc1a3c1e540f8f4596351"}, + {file = "grpcio_tools-1.67.1-cp312-cp312-win_amd64.whl", hash = "sha256:92eebb9b31031604ae97ea7657ae2e43149b0394af7117ad7e15894b6cc136dc"}, + {file = "grpcio_tools-1.67.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:9a3b9510cc87b6458b05ad49a6dee38df6af37f9ee6aa027aa086537798c3d4a"}, + {file = "grpcio_tools-1.67.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:9e4c9b9fa9b905f15d414cb7bd007ba7499f8907bdd21231ab287a86b27da81a"}, + {file = "grpcio_tools-1.67.1-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:e11a98b41af4bc88b7a738232b8fa0306ad82c79fa5d7090bb607f183a57856f"}, + {file = "grpcio_tools-1.67.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de0fcfe61c26679d64b1710746f2891f359593f76894fcf492c37148d5694f00"}, + {file = "grpcio_tools-1.67.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ae3b3e2ee5aad59dece65a613624c46a84c9582fc3642686537c6dfae8e47dc"}, + {file = "grpcio_tools-1.67.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:9a630f83505b6471a3094a7a372a1240de18d0cd3e64f4fbf46b361bac2be65b"}, + {file = "grpcio_tools-1.67.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:d85a1fcbacd3e08dc2b3d1d46b749351a9a50899fa35cf2ff040e1faf7d405ad"}, + {file = "grpcio_tools-1.67.1-cp313-cp313-win32.whl", hash = "sha256:778470f025f25a1fca5a48c93c0a18af395b46b12dd8df7fca63736b85181f41"}, + {file = "grpcio_tools-1.67.1-cp313-cp313-win_amd64.whl", hash = "sha256:6961da86e9856b4ddee0bf51ef6636b4bf9c29c0715aa71f3c8f027c45d42654"}, + {file = "grpcio_tools-1.67.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:c088dfbbe289bb171ca9c98fabbf7ecc8c1c51af2ba384ef32a4fdcb784b17e9"}, + {file = "grpcio_tools-1.67.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:11ce546daf8f8c04ee8d4a1673b4754cda4a0a9d505d820efd636e37f46b50c5"}, + {file = "grpcio_tools-1.67.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:83fecb2f6119ef0eea68a091964898418c1969375d399956ff8d1741beb7b081"}, + {file = "grpcio_tools-1.67.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d39c1aa6b26e2602d815b9cfa37faba48b2889680ae6baa002560cf0f0c69fac"}, + {file = "grpcio_tools-1.67.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e975dc9fb61a77d88e739eb17b3361f369d03cc754217f02dd83ec7cfac32e38"}, + {file = "grpcio_tools-1.67.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6c6e5c5b15f2eedc2a81268d588d14a79a52020383bf87b3c7595df7b571504a"}, + {file = "grpcio_tools-1.67.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a974e0ce01806adba718e6eb8c385defe6805b18969b6914da7db55fb055ae45"}, + {file = "grpcio_tools-1.67.1-cp38-cp38-win32.whl", hash = "sha256:35e9b0a82be9f425aa67ee1dc69ba02cf135aeee3f22c0455c5d1b01769bbdb4"}, + {file = "grpcio_tools-1.67.1-cp38-cp38-win_amd64.whl", hash = "sha256:0436c97f29e654d2eccd7419907ee019caf7eea6bdc6ae91d98011f6c5f44f17"}, + {file = "grpcio_tools-1.67.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:718fbb6d68a3d000cb3cf381642660eade0e8c1b0bf7472b84b3367f5b56171d"}, + {file = "grpcio_tools-1.67.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:062887d2e9cb8bc261c21a2b8da714092893ce62b4e072775eaa9b24dcbf3b31"}, + {file = "grpcio_tools-1.67.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:59dbf14a1ce928bf03a58fa157034374411159ab5d32ad83cf146d9400eed618"}, + {file = "grpcio_tools-1.67.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ac552fc9c76d50408d7141e1fd1eae69d85fbf7ae71da4d8877eaa07127fbe74"}, + {file = "grpcio_tools-1.67.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c6583773400e441dc62d08b5a32357babef1a9f9f73c3ac328a75af550815a9"}, + {file = "grpcio_tools-1.67.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:862108f90f2f6408908e5ea4584c5104f7caf419c6d73aa3ff36bf8284cca224"}, + {file = "grpcio_tools-1.67.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:587c6326425f37dca2291f46b93e446c07ee781cea27725865b806b7a049ec56"}, + {file = "grpcio_tools-1.67.1-cp39-cp39-win32.whl", hash = "sha256:d7d46a4405bd763525215b6e073888386587aef9b4a5ec125bf97ba897ac757d"}, + {file = "grpcio_tools-1.67.1-cp39-cp39-win_amd64.whl", hash = "sha256:e2fc7980e8bab3ee5ab98b6fdc2a8fbaa4785f196d897531346176fda49a605c"}, + {file = "grpcio_tools-1.67.1.tar.gz", hash = "sha256:d9657f5ddc62b52f58904e6054b7d8a8909ed08a1e28b734be3a707087bcf004"}, ] [package.dependencies] -grpcio = ">=1.67.0" +grpcio = ">=1.67.1" protobuf = ">=5.26.1,<6.0dev" setuptools = "*" @@ -3591,23 +3591,23 @@ test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "po [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -4160,93 +4160,93 @@ files = [ [[package]] name = "yarl" -version = "1.16.0" +version = "1.17.0" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32468f41242d72b87ab793a86d92f885355bcf35b3355aa650bfa846a5c60058"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:234f3a3032b505b90e65b5bc6652c2329ea7ea8855d8de61e1642b74b4ee65d2"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a0296040e5cddf074c7f5af4a60f3fc42c0237440df7bcf5183be5f6c802ed5"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de6c14dd7c7c0badba48157474ea1f03ebee991530ba742d381b28d4f314d6f3"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b140e532fe0266003c936d017c1ac301e72ee4a3fd51784574c05f53718a55d8"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:019f5d58093402aa8f6661e60fd82a28746ad6d156f6c5336a70a39bd7b162b9"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c42998fd1cbeb53cd985bff0e4bc25fbe55fd6eb3a545a724c1012d69d5ec84"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7c30fb38c300fe8140df30a046a01769105e4cf4282567a29b5cdb635b66c4"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e49e0fd86c295e743fd5be69b8b0712f70a686bc79a16e5268386c2defacaade"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:b9ca7b9147eb1365c8bab03c003baa1300599575effad765e0b07dd3501ea9af"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:27e11db3f1e6a51081a981509f75617b09810529de508a181319193d320bc5c7"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8994c42f4ca25df5380ddf59f315c518c81df6a68fed5bb0c159c6cb6b92f120"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:542fa8e09a581bcdcbb30607c7224beff3fdfb598c798ccd28a8184ffc18b7eb"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2bd6a51010c7284d191b79d3b56e51a87d8e1c03b0902362945f15c3d50ed46b"}, - {file = "yarl-1.16.0-cp310-cp310-win32.whl", hash = "sha256:178ccb856e265174a79f59721031060f885aca428983e75c06f78aa24b91d929"}, - {file = "yarl-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe8bba2545427418efc1929c5c42852bdb4143eb8d0a46b09de88d1fe99258e7"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d8643975a0080f361639787415a038bfc32d29208a4bf6b783ab3075a20b1ef3"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:676d96bafc8c2d0039cea0cd3fd44cee7aa88b8185551a2bb93354668e8315c2"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9525f03269e64310416dbe6c68d3b23e5d34aaa8f47193a1c45ac568cecbc49"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b37d5ec034e668b22cf0ce1074d6c21fd2a08b90d11b1b73139b750a8b0dd97"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f32c4cb7386b41936894685f6e093c8dfaf0960124d91fe0ec29fe439e201d0"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b8e265a0545637492a7e12fd7038370d66c9375a61d88c5567d0e044ded9202"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:789a3423f28a5fff46fbd04e339863c169ece97c827b44de16e1a7a42bc915d2"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1d1f45e3e8d37c804dca99ab3cf4ab3ed2e7a62cd82542924b14c0a4f46d243"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:621280719c4c5dad4c1391160a9b88925bb8b0ff6a7d5af3224643024871675f"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed097b26f18a1f5ff05f661dc36528c5f6735ba4ce8c9645e83b064665131349"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2f1fe2b2e3ee418862f5ebc0c0083c97f6f6625781382f828f6d4e9b614eba9b"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:87dd10bc0618991c66cee0cc65fa74a45f4ecb13bceec3c62d78ad2e42b27a16"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4199db024b58a8abb2cfcedac7b1292c3ad421684571aeb622a02f242280e8d6"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:99a9dcd4b71dd5f5f949737ab3f356cfc058c709b4f49833aeffedc2652dac56"}, - {file = "yarl-1.16.0-cp311-cp311-win32.whl", hash = "sha256:a9394c65ae0ed95679717d391c862dece9afacd8fa311683fc8b4362ce8a410c"}, - {file = "yarl-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b9101f528ae0f8f65ac9d64dda2bb0627de8a50344b2f582779f32fda747c1d"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4ffb7c129707dd76ced0a4a4128ff452cecf0b0e929f2668ea05a371d9e5c104"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1a5e9d8ce1185723419c487758d81ac2bde693711947032cce600ca7c9cda7d6"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d743e3118b2640cef7768ea955378c3536482d95550222f908f392167fe62059"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26768342f256e6e3c37533bf9433f5f15f3e59e3c14b2409098291b3efaceacb"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1b0796168b953bca6600c5f97f5ed407479889a36ad7d17183366260f29a6b9"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858728086914f3a407aa7979cab743bbda1fe2bdf39ffcd991469a370dd7414d"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5570e6d47bcb03215baf4c9ad7bf7c013e56285d9d35013541f9ac2b372593e7"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66ea8311422a7ba1fc79b4c42c2baa10566469fe5a78500d4e7754d6e6db8724"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:649bddcedee692ee8a9b7b6e38582cb4062dc4253de9711568e5620d8707c2a3"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a91654adb7643cb21b46f04244c5a315a440dcad63213033826549fa2435f71"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b439cae82034ade094526a8f692b9a2b5ee936452de5e4c5f0f6c48df23f8604"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:571f781ae8ac463ce30bacebfaef2c6581543776d5970b2372fbe31d7bf31a07"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:aa7943f04f36d6cafc0cf53ea89824ac2c37acbdb4b316a654176ab8ffd0f968"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1a5cf32539373ff39d97723e39a9283a7277cbf1224f7aef0c56c9598b6486c3"}, - {file = "yarl-1.16.0-cp312-cp312-win32.whl", hash = "sha256:a5b6c09b9b4253d6a208b0f4a2f9206e511ec68dce9198e0fbec4f160137aa67"}, - {file = "yarl-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:1208ca14eed2fda324042adf8d6c0adf4a31522fa95e0929027cd487875f0240"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5ace0177520bd4caa99295a9b6fb831d0e9a57d8e0501a22ffaa61b4c024283"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7118bdb5e3ed81acaa2095cba7ec02a0fe74b52a16ab9f9ac8e28e53ee299732"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38fec8a2a94c58bd47c9a50a45d321ab2285ad133adefbbadf3012c054b7e656"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8791d66d81ee45866a7bb15a517b01a2bcf583a18ebf5d72a84e6064c417e64b"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cf936ba67bc6c734f3aa1c01391da74ab7fc046a9f8bbfa230b8393b90cf472"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1aab176dd55b59f77a63b27cffaca67d29987d91a5b615cbead41331e6b7428"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d0759004c08abd5d1b81300a91d18c8577c6389300bed1c7c11675105a44d"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bc22e00edeb068f71967ab99081e9406cd56dbed864fc3a8259442999d71552"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:35b4f7842154176523e0a63c9b871168c69b98065d05a4f637fce342a6a2693a"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7ace71c4b7a0c41f317ae24be62bb61e9d80838d38acb20e70697c625e71f120"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8f639e3f5795a6568aa4f7d2ac6057c757dcd187593679f035adbf12b892bb00"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e8be3aff14f0120ad049121322b107f8a759be76a6a62138322d4c8a337a9e2c"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:122d8e7986043d0549e9eb23c7fd23be078be4b70c9eb42a20052b3d3149c6f2"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0fd9c227990f609c165f56b46107d0bc34553fe0387818c42c02f77974402c36"}, - {file = "yarl-1.16.0-cp313-cp313-win32.whl", hash = "sha256:595ca5e943baed31d56b33b34736461a371c6ea0038d3baec399949dd628560b"}, - {file = "yarl-1.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:921b81b8d78f0e60242fb3db615ea3f368827a76af095d5a69f1c3366db3f596"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab2b2ac232110a1fdb0d3ffcd087783edd3d4a6ced432a1bf75caf7b7be70916"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f8713717a09acbfee7c47bfc5777e685539fefdd34fa72faf504c8be2f3df4e"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdcffe1dbcb4477d2b4202f63cd972d5baa155ff5a3d9e35801c46a415b7f71a"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a91217208306d82357c67daeef5162a41a28c8352dab7e16daa82e3718852a7"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ab3ed42c78275477ea8e917491365e9a9b69bb615cb46169020bd0aa5e2d6d3"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:707ae579ccb3262dfaef093e202b4c3fb23c3810e8df544b1111bd2401fd7b09"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7a852d1cd0b8d8b37fc9d7f8581152add917a98cfe2ea6e241878795f917ae"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3f1cc3d3d4dc574bebc9b387f6875e228ace5748a7c24f49d8f01ac1bc6c31b"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5ff96da263740779b0893d02b718293cc03400c3a208fc8d8cd79d9b0993e532"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:3d375a19ba2bfe320b6d873f3fb165313b002cef8b7cc0a368ad8b8a57453837"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:62c7da0ad93a07da048b500514ca47b759459ec41924143e2ddb5d7e20fd3db5"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:147b0fcd0ee33b4b5f6edfea80452d80e419e51b9a3f7a96ce98eaee145c1581"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:504e1fe1cc4f170195320eb033d2b0ccf5c6114ce5bf2f617535c01699479bca"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bdcf667a5dec12a48f669e485d70c54189f0639c2157b538a4cffd24a853624f"}, - {file = "yarl-1.16.0-cp39-cp39-win32.whl", hash = "sha256:e9951afe6557c75a71045148890052cb942689ee4c9ec29f5436240e1fcc73b7"}, - {file = "yarl-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d7aaa8ff95d0840e289423e7dc35696c2b058d635f945bf05b5cd633146b027"}, - {file = "yarl-1.16.0-py3-none-any.whl", hash = "sha256:e6980a558d8461230c457218bd6c92dfc1d10205548215c2c21d79dc8d0a96f3"}, - {file = "yarl-1.16.0.tar.gz", hash = "sha256:b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml index b114409f579c..2dcc8e53ee76 100644 --- a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml +++ b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-qdrant" -version = "0.1.18" +version = "0.1.19" description = "Airbyte destination implementation for Qdrant." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/qdrant.md b/docs/integrations/destinations/qdrant.md index f9c525b951ee..02605c7d2519 100644 --- a/docs/integrations/destinations/qdrant.md +++ b/docs/integrations/destinations/qdrant.md @@ -73,6 +73,7 @@ You should now have all the requirements needed to configure Qdrant as a destina | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------- | +| 0.1.19 | 2024-10-29 | [47757](https://github.com/airbytehq/airbyte/pull/47757) | Update dependencies | | 0.1.18 | 2024-10-28 | [47621](https://github.com/airbytehq/airbyte/pull/47621) | Update dependencies | | 0.1.17 | 2024-10-28 | [47054](https://github.com/airbytehq/airbyte/pull/47054) | Update dependencies | | 0.1.16 | 2024-10-12 | [46774](https://github.com/airbytehq/airbyte/pull/46774) | Update dependencies | From 43ecee8e025234f7da7edfdb57cbbc964ac2e657 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:16 +0200 Subject: [PATCH 267/808] =?UTF-8?q?=F0=9F=90=99=20source-kissmetrics:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47756)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-kissmetrics/metadata.yaml | 4 ++-- docs/integrations/sources/kissmetrics.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml b/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml index cb57f53254f3..d60688e5cfb4 100644 --- a/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml +++ b/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-kissmetrics connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: ea2607ce-b94d-4218-83f8-724010403c9e - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-kissmetrics githubIssueLabel: source-kissmetrics icon: icon.svg diff --git a/docs/integrations/sources/kissmetrics.md b/docs/integrations/sources/kissmetrics.md index 286bc7723121..f9c2e0c63dc8 100644 --- a/docs/integrations/sources/kissmetrics.md +++ b/docs/integrations/sources/kissmetrics.md @@ -30,6 +30,7 @@ Refer `https://support.kissmetrics.io/reference/authorization` for more details. | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-10-29 | [47756](https://github.com/airbytehq/airbyte/pull/47756) | Update dependencies | | 0.0.2 | 2024-10-28 | [47650](https://github.com/airbytehq/airbyte/pull/47650) | Update dependencies | | 0.0.1 | 2024-09-21 | [45839](https://github.com/airbytehq/airbyte/pull/45839) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 02514267c5815f9909ab5e4958c6fa7525054928 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:19 +0200 Subject: [PATCH 268/808] =?UTF-8?q?=F0=9F=90=99=20source-zoom:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47755)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zoom/metadata.yaml | 2 +- .../connectors/source-zoom/poetry.lock | 12 ++++++------ .../connectors/source-zoom/pyproject.toml | 2 +- docs/integrations/sources/zoom.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-zoom/metadata.yaml b/airbyte-integrations/connectors/source-zoom/metadata.yaml index 9f255a76ad81..91392850bfd6 100644 --- a/airbyte-integrations/connectors/source-zoom/metadata.yaml +++ b/airbyte-integrations/connectors/source-zoom/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: cbfd9856-1322-44fb-bcf1-0b39b7a8e92e - dockerImageTag: 1.1.21 + dockerImageTag: 1.1.22 dockerRepository: airbyte/source-zoom documentationUrl: https://docs.airbyte.com/integrations/sources/zoom githubIssueLabel: source-zoom diff --git a/airbyte-integrations/connectors/source-zoom/poetry.lock b/airbyte-integrations/connectors/source-zoom/poetry.lock index 87d58ef2eea6..cb16738a481e 100644 --- a/airbyte-integrations/connectors/source-zoom/poetry.lock +++ b/airbyte-integrations/connectors/source-zoom/poetry.lock @@ -885,23 +885,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-zoom/pyproject.toml b/airbyte-integrations/connectors/source-zoom/pyproject.toml index 7d395b40df7c..1649620043d0 100644 --- a/airbyte-integrations/connectors/source-zoom/pyproject.toml +++ b/airbyte-integrations/connectors/source-zoom/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.21" +version = "1.1.22" name = "source-zoom" description = "Source implementation for Zoom." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zoom.md b/docs/integrations/sources/zoom.md index 0fd0c7f7200a..cbd10a9738af 100644 --- a/docs/integrations/sources/zoom.md +++ b/docs/integrations/sources/zoom.md @@ -71,6 +71,7 @@ JWT Tokens are deprecated, only Server-to-Server works now. [link to Zoom](https | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------- | +| 1.1.22 | 2024-10-29 | [47755](https://github.com/airbytehq/airbyte/pull/47755) | Update dependencies | | 1.1.21 | 2024-10-28 | [47094](https://github.com/airbytehq/airbyte/pull/47094) | Update dependencies | | 1.1.20 | 2024-10-12 | [46824](https://github.com/airbytehq/airbyte/pull/46824) | Update dependencies | | 1.1.19 | 2024-10-05 | [46412](https://github.com/airbytehq/airbyte/pull/46412) | Update dependencies | From 067e2d62272751a9553ecf6dc710808bf2f39bba Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:22 +0200 Subject: [PATCH 269/808] =?UTF-8?q?=F0=9F=90=99=20source-surveymonkey:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47754)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-surveymonkey/metadata.yaml | 2 +- .../source-surveymonkey/poetry.lock | 178 +++++++++--------- .../source-surveymonkey/pyproject.toml | 2 +- docs/integrations/sources/surveymonkey.md | 1 + 4 files changed, 92 insertions(+), 91 deletions(-) diff --git a/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml b/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml index 47740f15dc1e..aeb153b6fd41 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml +++ b/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: badc5925-0485-42be-8caa-b34096cb71b5 - dockerImageTag: 0.3.27 + dockerImageTag: 0.3.28 dockerRepository: airbyte/source-surveymonkey documentationUrl: https://docs.airbyte.com/integrations/sources/surveymonkey githubIssueLabel: source-surveymonkey diff --git a/airbyte-integrations/connectors/source-surveymonkey/poetry.lock b/airbyte-integrations/connectors/source-surveymonkey/poetry.lock index 455e3671efc8..79d4eda2bdc7 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/poetry.lock +++ b/airbyte-integrations/connectors/source-surveymonkey/poetry.lock @@ -1473,23 +1473,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1692,93 +1692,93 @@ files = [ [[package]] name = "yarl" -version = "1.16.0" +version = "1.17.0" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32468f41242d72b87ab793a86d92f885355bcf35b3355aa650bfa846a5c60058"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:234f3a3032b505b90e65b5bc6652c2329ea7ea8855d8de61e1642b74b4ee65d2"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a0296040e5cddf074c7f5af4a60f3fc42c0237440df7bcf5183be5f6c802ed5"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de6c14dd7c7c0badba48157474ea1f03ebee991530ba742d381b28d4f314d6f3"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b140e532fe0266003c936d017c1ac301e72ee4a3fd51784574c05f53718a55d8"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:019f5d58093402aa8f6661e60fd82a28746ad6d156f6c5336a70a39bd7b162b9"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c42998fd1cbeb53cd985bff0e4bc25fbe55fd6eb3a545a724c1012d69d5ec84"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7c30fb38c300fe8140df30a046a01769105e4cf4282567a29b5cdb635b66c4"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e49e0fd86c295e743fd5be69b8b0712f70a686bc79a16e5268386c2defacaade"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:b9ca7b9147eb1365c8bab03c003baa1300599575effad765e0b07dd3501ea9af"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:27e11db3f1e6a51081a981509f75617b09810529de508a181319193d320bc5c7"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8994c42f4ca25df5380ddf59f315c518c81df6a68fed5bb0c159c6cb6b92f120"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:542fa8e09a581bcdcbb30607c7224beff3fdfb598c798ccd28a8184ffc18b7eb"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2bd6a51010c7284d191b79d3b56e51a87d8e1c03b0902362945f15c3d50ed46b"}, - {file = "yarl-1.16.0-cp310-cp310-win32.whl", hash = "sha256:178ccb856e265174a79f59721031060f885aca428983e75c06f78aa24b91d929"}, - {file = "yarl-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe8bba2545427418efc1929c5c42852bdb4143eb8d0a46b09de88d1fe99258e7"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d8643975a0080f361639787415a038bfc32d29208a4bf6b783ab3075a20b1ef3"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:676d96bafc8c2d0039cea0cd3fd44cee7aa88b8185551a2bb93354668e8315c2"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9525f03269e64310416dbe6c68d3b23e5d34aaa8f47193a1c45ac568cecbc49"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b37d5ec034e668b22cf0ce1074d6c21fd2a08b90d11b1b73139b750a8b0dd97"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f32c4cb7386b41936894685f6e093c8dfaf0960124d91fe0ec29fe439e201d0"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b8e265a0545637492a7e12fd7038370d66c9375a61d88c5567d0e044ded9202"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:789a3423f28a5fff46fbd04e339863c169ece97c827b44de16e1a7a42bc915d2"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1d1f45e3e8d37c804dca99ab3cf4ab3ed2e7a62cd82542924b14c0a4f46d243"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:621280719c4c5dad4c1391160a9b88925bb8b0ff6a7d5af3224643024871675f"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed097b26f18a1f5ff05f661dc36528c5f6735ba4ce8c9645e83b064665131349"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2f1fe2b2e3ee418862f5ebc0c0083c97f6f6625781382f828f6d4e9b614eba9b"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:87dd10bc0618991c66cee0cc65fa74a45f4ecb13bceec3c62d78ad2e42b27a16"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4199db024b58a8abb2cfcedac7b1292c3ad421684571aeb622a02f242280e8d6"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:99a9dcd4b71dd5f5f949737ab3f356cfc058c709b4f49833aeffedc2652dac56"}, - {file = "yarl-1.16.0-cp311-cp311-win32.whl", hash = "sha256:a9394c65ae0ed95679717d391c862dece9afacd8fa311683fc8b4362ce8a410c"}, - {file = "yarl-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b9101f528ae0f8f65ac9d64dda2bb0627de8a50344b2f582779f32fda747c1d"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4ffb7c129707dd76ced0a4a4128ff452cecf0b0e929f2668ea05a371d9e5c104"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1a5e9d8ce1185723419c487758d81ac2bde693711947032cce600ca7c9cda7d6"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d743e3118b2640cef7768ea955378c3536482d95550222f908f392167fe62059"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26768342f256e6e3c37533bf9433f5f15f3e59e3c14b2409098291b3efaceacb"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1b0796168b953bca6600c5f97f5ed407479889a36ad7d17183366260f29a6b9"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858728086914f3a407aa7979cab743bbda1fe2bdf39ffcd991469a370dd7414d"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5570e6d47bcb03215baf4c9ad7bf7c013e56285d9d35013541f9ac2b372593e7"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66ea8311422a7ba1fc79b4c42c2baa10566469fe5a78500d4e7754d6e6db8724"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:649bddcedee692ee8a9b7b6e38582cb4062dc4253de9711568e5620d8707c2a3"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a91654adb7643cb21b46f04244c5a315a440dcad63213033826549fa2435f71"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b439cae82034ade094526a8f692b9a2b5ee936452de5e4c5f0f6c48df23f8604"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:571f781ae8ac463ce30bacebfaef2c6581543776d5970b2372fbe31d7bf31a07"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:aa7943f04f36d6cafc0cf53ea89824ac2c37acbdb4b316a654176ab8ffd0f968"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1a5cf32539373ff39d97723e39a9283a7277cbf1224f7aef0c56c9598b6486c3"}, - {file = "yarl-1.16.0-cp312-cp312-win32.whl", hash = "sha256:a5b6c09b9b4253d6a208b0f4a2f9206e511ec68dce9198e0fbec4f160137aa67"}, - {file = "yarl-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:1208ca14eed2fda324042adf8d6c0adf4a31522fa95e0929027cd487875f0240"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5ace0177520bd4caa99295a9b6fb831d0e9a57d8e0501a22ffaa61b4c024283"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7118bdb5e3ed81acaa2095cba7ec02a0fe74b52a16ab9f9ac8e28e53ee299732"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38fec8a2a94c58bd47c9a50a45d321ab2285ad133adefbbadf3012c054b7e656"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8791d66d81ee45866a7bb15a517b01a2bcf583a18ebf5d72a84e6064c417e64b"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cf936ba67bc6c734f3aa1c01391da74ab7fc046a9f8bbfa230b8393b90cf472"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1aab176dd55b59f77a63b27cffaca67d29987d91a5b615cbead41331e6b7428"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d0759004c08abd5d1b81300a91d18c8577c6389300bed1c7c11675105a44d"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bc22e00edeb068f71967ab99081e9406cd56dbed864fc3a8259442999d71552"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:35b4f7842154176523e0a63c9b871168c69b98065d05a4f637fce342a6a2693a"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7ace71c4b7a0c41f317ae24be62bb61e9d80838d38acb20e70697c625e71f120"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8f639e3f5795a6568aa4f7d2ac6057c757dcd187593679f035adbf12b892bb00"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e8be3aff14f0120ad049121322b107f8a759be76a6a62138322d4c8a337a9e2c"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:122d8e7986043d0549e9eb23c7fd23be078be4b70c9eb42a20052b3d3149c6f2"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0fd9c227990f609c165f56b46107d0bc34553fe0387818c42c02f77974402c36"}, - {file = "yarl-1.16.0-cp313-cp313-win32.whl", hash = "sha256:595ca5e943baed31d56b33b34736461a371c6ea0038d3baec399949dd628560b"}, - {file = "yarl-1.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:921b81b8d78f0e60242fb3db615ea3f368827a76af095d5a69f1c3366db3f596"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab2b2ac232110a1fdb0d3ffcd087783edd3d4a6ced432a1bf75caf7b7be70916"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f8713717a09acbfee7c47bfc5777e685539fefdd34fa72faf504c8be2f3df4e"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdcffe1dbcb4477d2b4202f63cd972d5baa155ff5a3d9e35801c46a415b7f71a"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a91217208306d82357c67daeef5162a41a28c8352dab7e16daa82e3718852a7"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ab3ed42c78275477ea8e917491365e9a9b69bb615cb46169020bd0aa5e2d6d3"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:707ae579ccb3262dfaef093e202b4c3fb23c3810e8df544b1111bd2401fd7b09"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7a852d1cd0b8d8b37fc9d7f8581152add917a98cfe2ea6e241878795f917ae"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3f1cc3d3d4dc574bebc9b387f6875e228ace5748a7c24f49d8f01ac1bc6c31b"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5ff96da263740779b0893d02b718293cc03400c3a208fc8d8cd79d9b0993e532"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:3d375a19ba2bfe320b6d873f3fb165313b002cef8b7cc0a368ad8b8a57453837"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:62c7da0ad93a07da048b500514ca47b759459ec41924143e2ddb5d7e20fd3db5"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:147b0fcd0ee33b4b5f6edfea80452d80e419e51b9a3f7a96ce98eaee145c1581"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:504e1fe1cc4f170195320eb033d2b0ccf5c6114ce5bf2f617535c01699479bca"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bdcf667a5dec12a48f669e485d70c54189f0639c2157b538a4cffd24a853624f"}, - {file = "yarl-1.16.0-cp39-cp39-win32.whl", hash = "sha256:e9951afe6557c75a71045148890052cb942689ee4c9ec29f5436240e1fcc73b7"}, - {file = "yarl-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d7aaa8ff95d0840e289423e7dc35696c2b058d635f945bf05b5cd633146b027"}, - {file = "yarl-1.16.0-py3-none-any.whl", hash = "sha256:e6980a558d8461230c457218bd6c92dfc1d10205548215c2c21d79dc8d0a96f3"}, - {file = "yarl-1.16.0.tar.gz", hash = "sha256:b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml b/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml index 4a284424e7e2..1354d3720414 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml +++ b/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.27" +version = "0.3.28" name = "source-surveymonkey" description = "Source implementation for Surveymonkey." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/surveymonkey.md b/docs/integrations/sources/surveymonkey.md index b4f7e8868bb8..c597a0d27150 100644 --- a/docs/integrations/sources/surveymonkey.md +++ b/docs/integrations/sources/surveymonkey.md @@ -75,6 +75,7 @@ To cover more data from this source we use caching. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------- | +| 0.3.28 | 2024-10-29 | [47754](https://github.com/airbytehq/airbyte/pull/47754) | Update dependencies | | 0.3.27 | 2024-10-28 | [47073](https://github.com/airbytehq/airbyte/pull/47073) | Update dependencies | | 0.3.26 | 2024-10-12 | [46801](https://github.com/airbytehq/airbyte/pull/46801) | Update dependencies | | 0.3.25 | 2024-10-05 | [46448](https://github.com/airbytehq/airbyte/pull/46448) | Update dependencies | From d40345c4d7fad8fae074bf88e3f43d1b533bca82 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:26 +0200 Subject: [PATCH 270/808] =?UTF-8?q?=F0=9F=90=99=20source-breezy-hr:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47750)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-breezy-hr/metadata.yaml | 4 ++-- docs/integrations/sources/breezy-hr.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-breezy-hr/metadata.yaml b/airbyte-integrations/connectors/source-breezy-hr/metadata.yaml index 4184acea2a0a..94b66434448c 100644 --- a/airbyte-integrations/connectors/source-breezy-hr/metadata.yaml +++ b/airbyte-integrations/connectors/source-breezy-hr/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-breezy-hr connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: bc2c2e4f-41a1-40e3-9e82-eea19cf958ff - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-breezy-hr githubIssueLabel: source-breezy-hr icon: icon.svg diff --git a/docs/integrations/sources/breezy-hr.md b/docs/integrations/sources/breezy-hr.md index dc171de0e938..603e34b61fc7 100644 --- a/docs/integrations/sources/breezy-hr.md +++ b/docs/integrations/sources/breezy-hr.md @@ -22,6 +22,7 @@ An Airbyte source for Breezy applicant tracking system. | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-10-29 | [47750](https://github.com/airbytehq/airbyte/pull/47750) | Update dependencies | | 0.0.2 | 2024-10-28 | [47587](https://github.com/airbytehq/airbyte/pull/47587) | Update dependencies | | 0.0.1 | 2024-08-20 | | Initial release by natikgadzhi via Connector Builder | From 717d1f084ad178944dad809da2ed788c8fb602b5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:29 +0200 Subject: [PATCH 271/808] =?UTF-8?q?=F0=9F=90=99=20source-linkedin-pages:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47749)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-linkedin-pages/metadata.yaml | 4 ++-- docs/integrations/sources/linkedin-pages.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-linkedin-pages/metadata.yaml b/airbyte-integrations/connectors/source-linkedin-pages/metadata.yaml index e49a1318f5e6..f430d570e72f 100644 --- a/airbyte-integrations/connectors/source-linkedin-pages/metadata.yaml +++ b/airbyte-integrations/connectors/source-linkedin-pages/metadata.yaml @@ -16,11 +16,11 @@ data: enabled: false packageName: airbyte-source-linkedin-pages connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: af54297c-e8f8-4d63-a00d-a94695acc9d3 - dockerImageTag: 1.1.2 + dockerImageTag: 1.1.3 dockerRepository: airbyte/source-linkedin-pages documentationUrl: https://docs.airbyte.com/integrations/sources/linkedin-pages githubIssueLabel: source-linkedin-pages diff --git a/docs/integrations/sources/linkedin-pages.md b/docs/integrations/sources/linkedin-pages.md index 699dc9e69eb2..26484e7cc13d 100644 --- a/docs/integrations/sources/linkedin-pages.md +++ b/docs/integrations/sources/linkedin-pages.md @@ -113,6 +113,7 @@ The source LinkedIn Pages can use either the `client_id`, `client_secret` and `r | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :--------------------------------------------------- | +| 1.1.3 | 2024-10-29 | [47749](https://github.com/airbytehq/airbyte/pull/47749) | Update dependencies | | 1.1.2 | 2024-10-28 | [47455](https://github.com/airbytehq/airbyte/pull/47455) | Update dependencies | | 1.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.1.0 | 2024-08-15 | [44132](https://github.com/airbytehq/airbyte/pull/44132) | Refactor connector to manifest-only format | From d10fb6cd618cf145e8827120809b6ea949803f5d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:34 +0200 Subject: [PATCH 272/808] =?UTF-8?q?=F0=9F=90=99=20source-buzzsprout:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47747)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-buzzsprout/metadata.yaml | 4 ++-- docs/integrations/sources/buzzsprout.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml b/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml index 7876b783c9a4..3be8be923a9f 100644 --- a/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml +++ b/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-buzzsprout connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 6ad23bfc-cb11-4faa-a243-f9ccdb0145cc - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-buzzsprout githubIssueLabel: source-buzzsprout icon: icon.svg diff --git a/docs/integrations/sources/buzzsprout.md b/docs/integrations/sources/buzzsprout.md index a07e7175a684..8921b9744bcd 100644 --- a/docs/integrations/sources/buzzsprout.md +++ b/docs/integrations/sources/buzzsprout.md @@ -30,6 +30,7 @@ Visit `https://github.com/buzzsprout/buzzsprout-api/tree/master?tab=readme-ov-fi | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-10-29 | [47747](https://github.com/airbytehq/airbyte/pull/47747) | Update dependencies | | 0.0.2 | 2024-10-28 | [47645](https://github.com/airbytehq/airbyte/pull/47645) | Update dependencies | | 0.0.1 | 2024-09-16 | [45608](https://github.com/airbytehq/airbyte/pull/45608) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From a9a4d220926ce08650274dd3cc35314c5e8a64ac Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:37 +0200 Subject: [PATCH 273/808] =?UTF-8?q?=F0=9F=90=99=20source-luma:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47746)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-luma/metadata.yaml | 4 ++-- docs/integrations/sources/luma.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-luma/metadata.yaml b/airbyte-integrations/connectors/source-luma/metadata.yaml index a656c71e2197..2d1fe3dab145 100644 --- a/airbyte-integrations/connectors/source-luma/metadata.yaml +++ b/airbyte-integrations/connectors/source-luma/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-luma connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 8ac29756-9a9d-4472-a20b-df29ac29764a - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-luma githubIssueLabel: source-luma icon: icon.svg diff --git a/docs/integrations/sources/luma.md b/docs/integrations/sources/luma.md index fc186b2094eb..aa77dbff06bd 100644 --- a/docs/integrations/sources/luma.md +++ b/docs/integrations/sources/luma.md @@ -20,6 +20,7 @@ | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-10-29 | [47746](https://github.com/airbytehq/airbyte/pull/47746) | Update dependencies | | 0.0.2 | 2024-10-28 | [47669](https://github.com/airbytehq/airbyte/pull/47669) | Update dependencies | | 0.0.1 | 2024-08-28 | | Initial release by [@natikgadzhi](https://github.com/natikgadzhi) via Connector Builder | From 81ca62f19f7c82fbc76f0f8b8ed04990460fc4fc Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:40 +0200 Subject: [PATCH 274/808] =?UTF-8?q?=F0=9F=90=99=20destination-vectara:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47744)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-vectara/metadata.yaml | 2 +- .../connectors/destination-vectara/poetry.lock | 12 ++++++------ .../connectors/destination-vectara/pyproject.toml | 2 +- docs/integrations/destinations/vectara.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-vectara/metadata.yaml b/airbyte-integrations/connectors/destination-vectara/metadata.yaml index a595ca3c5bb3..be729c0683f1 100644 --- a/airbyte-integrations/connectors/destination-vectara/metadata.yaml +++ b/airbyte-integrations/connectors/destination-vectara/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 102900e7-a236-4c94-83e4-a4189b99adc2 - dockerImageTag: 0.2.28 + dockerImageTag: 0.2.29 dockerRepository: airbyte/destination-vectara githubIssueLabel: destination-vectara icon: vectara.svg diff --git a/airbyte-integrations/connectors/destination-vectara/poetry.lock b/airbyte-integrations/connectors/destination-vectara/poetry.lock index 0c9871841839..e16a33689c65 100644 --- a/airbyte-integrations/connectors/destination-vectara/poetry.lock +++ b/airbyte-integrations/connectors/destination-vectara/poetry.lock @@ -1143,23 +1143,23 @@ files = [ [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-vectara/pyproject.toml b/airbyte-integrations/connectors/destination-vectara/pyproject.toml index 65c5daebcef5..b292987b9f2a 100644 --- a/airbyte-integrations/connectors/destination-vectara/pyproject.toml +++ b/airbyte-integrations/connectors/destination-vectara/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-vectara" -version = "0.2.28" +version = "0.2.29" description = "Airbyte destination implementation for Vectara" authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/vectara.md b/docs/integrations/destinations/vectara.md index cf11068facf7..5db4d5c7b426 100644 --- a/docs/integrations/destinations/vectara.md +++ b/docs/integrations/destinations/vectara.md @@ -68,6 +68,7 @@ In addition, in the connector UI you define two set of fields for this connector | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------- | +| 0.2.29 | 2024-10-29 | [47744](https://github.com/airbytehq/airbyte/pull/47744) | Update dependencies | | 0.2.28 | 2024-10-23 | [47084](https://github.com/airbytehq/airbyte/pull/47084) | Update dependencies | | 0.2.27 | 2024-10-12 | [46812](https://github.com/airbytehq/airbyte/pull/46812) | Update dependencies | | 0.2.26 | 2024-10-05 | [46438](https://github.com/airbytehq/airbyte/pull/46438) | Update dependencies | From 74dbd7ad129014a8b3218e8b052677f650e64b88 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:43 +0200 Subject: [PATCH 275/808] =?UTF-8?q?=F0=9F=90=99=20source-pipedrive:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47743)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pipedrive/metadata.yaml | 2 +- .../connectors/source-pipedrive/poetry.lock | 12 ++++++------ .../connectors/source-pipedrive/pyproject.toml | 2 +- docs/integrations/sources/pipedrive.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-pipedrive/metadata.yaml b/airbyte-integrations/connectors/source-pipedrive/metadata.yaml index 802f0cbdc115..40d2742ad7e0 100644 --- a/airbyte-integrations/connectors/source-pipedrive/metadata.yaml +++ b/airbyte-integrations/connectors/source-pipedrive/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: d8286229-c680-4063-8c59-23b9b391c700 - dockerImageTag: 2.2.24 + dockerImageTag: 2.2.25 dockerRepository: airbyte/source-pipedrive documentationUrl: https://docs.airbyte.com/integrations/sources/pipedrive githubIssueLabel: source-pipedrive diff --git a/airbyte-integrations/connectors/source-pipedrive/poetry.lock b/airbyte-integrations/connectors/source-pipedrive/poetry.lock index 3fd567953a3a..6b6708a000d6 100644 --- a/airbyte-integrations/connectors/source-pipedrive/poetry.lock +++ b/airbyte-integrations/connectors/source-pipedrive/poetry.lock @@ -1268,23 +1268,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-pipedrive/pyproject.toml b/airbyte-integrations/connectors/source-pipedrive/pyproject.toml index 7c7653bd7274..01871f4c551a 100644 --- a/airbyte-integrations/connectors/source-pipedrive/pyproject.toml +++ b/airbyte-integrations/connectors/source-pipedrive/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.2.24" +version = "2.2.25" name = "source-pipedrive" description = "Source implementation for Pipedrive." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pipedrive.md b/docs/integrations/sources/pipedrive.md index 8c0416108fbe..6ff3d260e04b 100644 --- a/docs/integrations/sources/pipedrive.md +++ b/docs/integrations/sources/pipedrive.md @@ -112,6 +112,7 @@ The Pipedrive connector will gracefully handle rate limits. For more information | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------- | +| 2.2.25 | 2024-10-29 | [47743](https://github.com/airbytehq/airbyte/pull/47743) | Update dependencies | | 2.2.24 | 2024-10-28 | [47103](https://github.com/airbytehq/airbyte/pull/47103) | Update dependencies | | 2.2.23 | 2024-10-12 | [46822](https://github.com/airbytehq/airbyte/pull/46822) | Update dependencies | | 2.2.22 | 2024-10-05 | [46487](https://github.com/airbytehq/airbyte/pull/46487) | Update dependencies | From 925dbbf4791d71b1f639f2f003fc9202670b849a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:47 +0200 Subject: [PATCH 276/808] =?UTF-8?q?=F0=9F=90=99=20source-castor-edc:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47741)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-castor-edc/metadata.yaml | 4 ++-- docs/integrations/sources/castor-edc.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-castor-edc/metadata.yaml b/airbyte-integrations/connectors/source-castor-edc/metadata.yaml index 5e4f39afdf37..dd43883893fc 100644 --- a/airbyte-integrations/connectors/source-castor-edc/metadata.yaml +++ b/airbyte-integrations/connectors/source-castor-edc/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-castor-edc connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 2cb45514-7c10-439c-a198-aeb1ddab02cb - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-castor-edc githubIssueLabel: source-castor-edc icon: icon.svg diff --git a/docs/integrations/sources/castor-edc.md b/docs/integrations/sources/castor-edc.md index f62f32d85740..f79210c2a017 100644 --- a/docs/integrations/sources/castor-edc.md +++ b/docs/integrations/sources/castor-edc.md @@ -43,6 +43,7 @@ Visit `https://YOUR_REGION.castoredc.com/account/settings` for getting your clie | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47741](https://github.com/airbytehq/airbyte/pull/47741) | Update dependencies | | 0.0.2 | 2024-10-28 | [47644](https://github.com/airbytehq/airbyte/pull/47644) | Update dependencies | | 0.0.1 | 2024-10-12 | [46759](https://github.com/airbytehq/airbyte/pull/46759) | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | From 40e75849cc2b86fe3f74f94ac116bb6092242a37 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:50 +0200 Subject: [PATCH 277/808] =?UTF-8?q?=F0=9F=90=99=20source-nasa:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47740)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-nasa/metadata.yaml | 4 ++-- docs/integrations/sources/nasa.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-nasa/metadata.yaml b/airbyte-integrations/connectors/source-nasa/metadata.yaml index 72b640c7e959..8653b029e2ef 100644 --- a/airbyte-integrations/connectors/source-nasa/metadata.yaml +++ b/airbyte-integrations/connectors/source-nasa/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1a8667d7-7978-43cd-ba4d-d32cbd478971 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-nasa githubIssueLabel: source-nasa icon: nasa.svg @@ -38,5 +38,5 @@ data: # alias: airbyte-connector-testing-secret-store - language:manifest-only connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/nasa.md b/docs/integrations/sources/nasa.md index 12ee18c6628c..e4508f4970e1 100644 --- a/docs/integrations/sources/nasa.md +++ b/docs/integrations/sources/nasa.md @@ -43,6 +43,7 @@ The NASA connector should not run into NASA API limitations under normal usage. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------- | +| 0.3.3 | 2024-10-29 | [47740](https://github.com/airbytehq/airbyte/pull/47740) | Update dependencies | | 0.3.2 | 2024-10-28 | [47491](https://github.com/airbytehq/airbyte/pull/47491) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44115](https://github.com/airbytehq/airbyte/pull/44115) | Refactor connector to manifest-only format | From 394cfc259ea2be4a762f3d3c09964083eeb6f036 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:53 +0200 Subject: [PATCH 278/808] =?UTF-8?q?=F0=9F=90=99=20source-coin-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47739)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-coin-api/metadata.yaml | 4 ++-- docs/integrations/sources/coin-api.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-coin-api/metadata.yaml b/airbyte-integrations/connectors/source-coin-api/metadata.yaml index 27aeea7e0e5e..ae243954e6e9 100644 --- a/airbyte-integrations/connectors/source-coin-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-coin-api/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 919984ef-53a2-479b-8ffe-9c1ddb9fc3f3 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-coin-api documentationUrl: https://docs.airbyte.com/integrations/sources/coin-api githubIssueLabel: source-coin-api diff --git a/docs/integrations/sources/coin-api.md b/docs/integrations/sources/coin-api.md index 229e83771c91..0eee90599a3c 100644 --- a/docs/integrations/sources/coin-api.md +++ b/docs/integrations/sources/coin-api.md @@ -53,7 +53,8 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------------------ | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-29 | [47739](https://github.com/airbytehq/airbyte/pull/47739) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44164](https://github.com/airbytehq/airbyte/pull/44164) | Refactor connector to manifest-only format | | 0.2.16 | 2024-08-10 | [43507](https://github.com/airbytehq/airbyte/pull/43507) | Update dependencies | | 0.2.15 | 2024-08-03 | [43091](https://github.com/airbytehq/airbyte/pull/43091) | Update dependencies | From 9a78d66f86b4876a766e4996c35b0c222e2aab90 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:12:58 +0200 Subject: [PATCH 279/808] =?UTF-8?q?=F0=9F=90=99=20source-hubplanner:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47738)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-hubplanner/metadata.yaml | 4 ++-- docs/integrations/sources/hubplanner.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-hubplanner/metadata.yaml b/airbyte-integrations/connectors/source-hubplanner/metadata.yaml index 41be60caf637..02ab82cabae0 100644 --- a/airbyte-integrations/connectors/source-hubplanner/metadata.yaml +++ b/airbyte-integrations/connectors/source-hubplanner/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8097ceb9-383f-42f6-9f92-d3fd4bcc7689 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-hubplanner githubIssueLabel: source-hubplanner icon: hubplanner.svg @@ -43,5 +43,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/hubplanner.md b/docs/integrations/sources/hubplanner.md index 562c0dea9337..4c93d74b721c 100644 --- a/docs/integrations/sources/hubplanner.md +++ b/docs/integrations/sources/hubplanner.md @@ -44,6 +44,7 @@ The Okta source connector supports the following [sync modes](https://docs.airby | Version | Date | Pull Request | Subject | | :------ | :--- | :----------- | :------ | +| 0.3.2 | 2024-10-29 | [47738](https://github.com/airbytehq/airbyte/pull/47738) | Update dependencies | | 0.3.1 | 2024-10-28 | [47511](https://github.com/airbytehq/airbyte/pull/47511) | Update dependencies | | 0.3.0 | 2024-08-22 | [44569](https://github.com/airbytehq/airbyte/pull/44569) | Refactor connector to manifest-only format | | 0.2.12 | 2024-08-17 | [43903](https://github.com/airbytehq/airbyte/pull/43903) | Update dependencies | From e594fbd4f094b8e5766dcd3541970030f651d1b5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:04 +0200 Subject: [PATCH 280/808] =?UTF-8?q?=F0=9F=90=99=20source-facebook-pages:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47737)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-facebook-pages/metadata.yaml | 2 +- .../source-facebook-pages/poetry.lock | 135 +++++++++--------- .../source-facebook-pages/pyproject.toml | 2 +- docs/integrations/sources/facebook-pages.md | 1 + 4 files changed, 71 insertions(+), 69 deletions(-) diff --git a/airbyte-integrations/connectors/source-facebook-pages/metadata.yaml b/airbyte-integrations/connectors/source-facebook-pages/metadata.yaml index 010317582bf4..17fb879ae637 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/metadata.yaml +++ b/airbyte-integrations/connectors/source-facebook-pages/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 010eb12f-837b-4685-892d-0a39f76a98f5 - dockerImageTag: 1.0.22 + dockerImageTag: 1.0.23 dockerRepository: airbyte/source-facebook-pages documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-pages githubIssueLabel: source-facebook-pages diff --git a/airbyte-integrations/connectors/source-facebook-pages/poetry.lock b/airbyte-integrations/connectors/source-facebook-pages/poetry.lock index ad06c99886d0..ddb9bfe6adbf 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/poetry.lock +++ b/airbyte-integrations/connectors/source-facebook-pages/poetry.lock @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.136" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.136-py3-none-any.whl", hash = "sha256:cad2215eb7a754ee259878e19c558f4f8d3795aa1b699f087d4500e640f80d0a"}, - {file = "langsmith-0.1.136.tar.gz", hash = "sha256:5c0de01a313db70dd9a85845c0f416a69b5b653b3e98ba413d7d41e8851315b1"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -767,68 +767,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.9" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.9-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a377186a11b48c55969e34f0aa414c2826a234f212d6f2b312ba512e3cdb2c6f"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bf37bf0ca538065c34efe1803378b2dadd7e05b06610a086c2857f15ee59e12"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7d9d83a91168aa48309acba804e393b7d9216b66f15e38f339b9fbb00db8986d"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e0014038a17a1fe273da0a5489787677ef5a64566ab383ad6d929e44ed5683f4"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d6ae1b1733e4528e45675ed09a732b6ac37d716bce2facaf467f84ce774adecd"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe91c2259c4a859356b6db1c6e649b40577492f66d483da8b8af6da0f87c00e3"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a04f912c32463386ba117591c99a3d9e40b3b69bed9c5123d89dff06f0f5a4b0"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae82ca347829ca47431767b079f96bb977f592189250ccdede676339a80c8982"}, - {file = "orjson-3.10.9-cp310-none-win32.whl", hash = "sha256:fd5083906825d7f5d23089425ce5424d783d6294020bcabb8518a3e1f97833e5"}, - {file = "orjson-3.10.9-cp310-none-win_amd64.whl", hash = "sha256:e9ff9521b5be0340c8e686bcfe2619777fd7583f71e7b494601cc91ad3919d2e"}, - {file = "orjson-3.10.9-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f3bd9df47385b8fabb3b2ee1e83f9960b8accc1905be971a1c257f16c32b491e"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4948961b6bce1e2086b2cf0b56cc454cdab589d40c7f85be71fb5a5556c51d3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a9fc7a6cf2b229ddc323e136df13b3fb4466c50d84ed600cd0898223dd2fea3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2314846e1029a2d2b899140f350eaaf3a73281df43ba84ac44d94ca861b5b269"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f52d993504827503411df2d60e60acf52885561458d6273f99ecd172f31c4352"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e29bbf08d907756c145a3a3a1f7ce2f11f15e3edbd3342842589d6030981b76f"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7ae82992c00b480c3cc7dac6739324554be8c5d8e858a90044928506a3333ef4"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6fdf8d32b6d94019dc15163542d345e9ce4c4661f56b318608aa3088a1a3a23b"}, - {file = "orjson-3.10.9-cp311-none-win32.whl", hash = "sha256:01f5fef452b4d7615f2e94153479370a4b59e0c964efb32dd902978f807a45cd"}, - {file = "orjson-3.10.9-cp311-none-win_amd64.whl", hash = "sha256:95361c4197c7ce9afdf56255de6f4e2474c39d16a277cce31d1b99a2520486d8"}, - {file = "orjson-3.10.9-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:43ad5560db54331c007dc38be5ba7706cb72974a29ae8227019d89305d750a6f"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1471c3274b1a4a9b8f4b9ed6effaea9ad885796373797515c44b365b375c256d"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:41d8cac575acd15918903d74cfaabb5dbe57b357b93341332f647d1013928dcc"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2920c8754f1aedc98bd357ec172af18ce48f5f1017a92244c85fe41d16d3c6e0"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7fa3ff6a0d9d15a0d0d2254cca16cd919156a18423654ce5574591392fe9914"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1e91b90c0c26bd79593967c1adef421bcff88c9e723d49c93bb7ad8af80bc6b"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f11949024f785ace1a516db32fa6255f6227226b2c988abf66f5aee61d43d8f7"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:060e020d85d0ec145bc1b536b1fd9c10a0519c91991ead9724d6f759ebe26b9a"}, - {file = "orjson-3.10.9-cp312-none-win32.whl", hash = "sha256:71f73439999fe662843da3607cdf6e75b1551c330f487e5801d463d969091c63"}, - {file = "orjson-3.10.9-cp312-none-win_amd64.whl", hash = "sha256:12e2efe81356b8448f1cd130f8d75d3718de583112d71f2e2f8baa81bd835bb9"}, - {file = "orjson-3.10.9-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:0ab6e3ad10e964392f0e838751bcce2ef9c8fa8be7deddffff83088e5791566d"}, - {file = "orjson-3.10.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68ef65223baab00f469c8698f771ab3e6ccf6af2a987e77de5b566b4ec651150"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6f130848205fea90a2cb9fa2b11cafff9a9f31f4efad225800bc8b9e4a702f24"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2ea7a98f3295ed8adb6730a5788cc78dafea28300d19932a1d2143457f7db802"}, - {file = "orjson-3.10.9-cp313-none-win32.whl", hash = "sha256:bdce39f96149a74fddeb2674c54f1da5e57724d32952eb6df2ac719b66d453cc"}, - {file = "orjson-3.10.9-cp313-none-win_amd64.whl", hash = "sha256:d11383701d4b58e795039b662ada46987744293d57bfa2719e7379b8d67bc796"}, - {file = "orjson-3.10.9-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1c3a1e845916a3739ab4162bb48dee66e0e727a19faf397176a7db0d9826cc3c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:063ca59d93d93d1387f0c4bb766c6d4f5b0e423fe7c366d0bd4401a56d1669d1"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:938b7fcd79cf06fe348fb24b6163fbaa2fdc9fbed8b1f06318f24467f1487e63"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cc32a9e43c7693011ccde6f8eff8cba75ca0d2a55de11092faa4a716101e67f5"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1b3069b7e2f57f3eef2282029b9c2ba21f08a55f1018e483663a3356f046af4c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4289b5d1f88fd05dcafdd7a1f3b17bb722e77712b7618f98e86bdda560e0a1a"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:74f5a7a7f282d326be71b722b0c350da7af6f5f15b9378da177e0e4a09bd91a3"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:80e0c013e50cf7198319d8137931684eb9f32daa067e8276d9dbdd4010bb4add"}, - {file = "orjson-3.10.9-cp38-none-win32.whl", hash = "sha256:9d989152df8f60a76867354e0e08d896292ab9fb96a7ef89a5b3838de174522c"}, - {file = "orjson-3.10.9-cp38-none-win_amd64.whl", hash = "sha256:485358fe9892d6bfd88e5885b66bf88496e1842c8f35f61682ff9928b12a6cf0"}, - {file = "orjson-3.10.9-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ca54e6f320e33c8a6e471c424ee16576361d905c15d69e134c2906d3fcb31795"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9a9eb03a29c9b30b6c8bb35e5fa20d96589a76e0042005be59b7c3af10a7e43"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:731e8859fc99b398c286320726906404091141e9223dd5e9e6917f7e32e1cc68"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:75b061c11f5aab979a95927a76394b4a85e3e4d63d0a2a16b56a4f7c6503afab"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b61b08f6397f004570fd6a840f4a58946b63b4c7029408cdedb45fe85c7d17f7"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c4f5e0360b7f0aba91dafe12469108109a0e8973956d4a9865ca262a6881406"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e403429e2947a059545e305d97e4b0eb90d3bb44b396d6f327d7ae2018391e13"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0e492b93e122264c2dc78700859122631a4715bda88fabf57d9226954cfe7ec5"}, - {file = "orjson-3.10.9-cp39-none-win32.whl", hash = "sha256:bfba9605e85bfd19b83a21c2c25c2bed2000d5f097f3fa3ad5b5f8a7263a3148"}, - {file = "orjson-3.10.9-cp39-none-win_amd64.whl", hash = "sha256:77d277fa138d4bf145e8b24042004891c188c52ac8492724a183f42b0031cf0c"}, - {file = "orjson-3.10.9.tar.gz", hash = "sha256:c378074e0c46035dc66e57006993233ec66bf8487d501bab41649b4b7289ed4d"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1284,23 +1285,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-facebook-pages/pyproject.toml b/airbyte-integrations/connectors/source-facebook-pages/pyproject.toml index 6d4de7672ead..6ea6d2f88584 100644 --- a/airbyte-integrations/connectors/source-facebook-pages/pyproject.toml +++ b/airbyte-integrations/connectors/source-facebook-pages/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.22" +version = "1.0.23" name = "source-facebook-pages" description = "Source implementation for Facebook Pages." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/facebook-pages.md b/docs/integrations/sources/facebook-pages.md index 15df91b865fc..3ec0224f37c2 100644 --- a/docs/integrations/sources/facebook-pages.md +++ b/docs/integrations/sources/facebook-pages.md @@ -88,6 +88,7 @@ See Facebook's [documentation on rate limiting](https://developers.facebook.com/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------ | +| 1.0.23 | 2024-10-29 | [47737](https://github.com/airbytehq/airbyte/pull/47737) | Update dependencies | | 1.0.22 | 2024-10-21 | [47025](https://github.com/airbytehq/airbyte/pull/47025) | Update dependencies | | 1.0.21 | 2024-10-12 | [46807](https://github.com/airbytehq/airbyte/pull/46807) | Update dependencies | | 1.0.20 | 2024-10-05 | [46461](https://github.com/airbytehq/airbyte/pull/46461) | Update dependencies | From e28e5b6cd9460c5c76efbd8ce46e19c46e203ec3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:10 +0200 Subject: [PATCH 281/808] =?UTF-8?q?=F0=9F=90=99=20source-google-directory:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47736)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-google-directory/metadata.yaml | 4 ++-- .../connectors/source-google-directory/poetry.lock | 12 ++++++------ .../source-google-directory/pyproject.toml | 2 +- docs/integrations/sources/google-directory.md | 1 + 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-directory/metadata.yaml b/airbyte-integrations/connectors/source-google-directory/metadata.yaml index 11b3007e15b2..2f32f968db07 100644 --- a/airbyte-integrations/connectors/source-google-directory/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-directory/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d19ae824-e289-4b14-995a-0632eb46d246 - dockerImageTag: 0.2.22 + dockerImageTag: 0.2.23 dockerRepository: airbyte/source-google-directory githubIssueLabel: source-google-directory icon: googledirectory.svg @@ -14,7 +14,7 @@ data: packageName: airbyte-source-google-directory registryOverrides: cloud: - dockerImageTag: 0.2.22 + dockerImageTag: 0.2.23 enabled: true oss: enabled: true diff --git a/airbyte-integrations/connectors/source-google-directory/poetry.lock b/airbyte-integrations/connectors/source-google-directory/poetry.lock index 93dd42dccf8b..64b4f9c7a1c3 100644 --- a/airbyte-integrations/connectors/source-google-directory/poetry.lock +++ b/airbyte-integrations/connectors/source-google-directory/poetry.lock @@ -1131,23 +1131,23 @@ pyasn1 = ">=0.1.3" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-google-directory/pyproject.toml b/airbyte-integrations/connectors/source-google-directory/pyproject.toml index 2de92655fe80..cd934463e958 100644 --- a/airbyte-integrations/connectors/source-google-directory/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-directory/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.22" +version = "0.2.23" name = "source-google-directory" description = "Source implementation for Google Directory." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-directory.md b/docs/integrations/sources/google-directory.md index 33ab44e010ce..2fd4b1ba77bb 100644 --- a/docs/integrations/sources/google-directory.md +++ b/docs/integrations/sources/google-directory.md @@ -70,6 +70,7 @@ You should now be ready to use the Google Directory connector in Airbyte. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------- | +| 0.2.23 | 2024-10-29 | [47736](https://github.com/airbytehq/airbyte/pull/47736) | Update dependencies | | 0.2.22 | 2024-10-22 | [47071](https://github.com/airbytehq/airbyte/pull/47071) | Update dependencies | | 0.2.21 | 2024-10-12 | [46785](https://github.com/airbytehq/airbyte/pull/46785) | Update dependencies | | 0.2.20 | 2024-10-05 | [46422](https://github.com/airbytehq/airbyte/pull/46422) | Update dependencies | From bf9ff7205ee8b4c064540353d3c02dc0f71ed13f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:16 +0200 Subject: [PATCH 282/808] =?UTF-8?q?=F0=9F=90=99=20source-invoiced:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47734)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-invoiced/metadata.yaml | 4 ++-- docs/integrations/sources/invoiced.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-invoiced/metadata.yaml b/airbyte-integrations/connectors/source-invoiced/metadata.yaml index 011e2463f6d3..577616a267b6 100644 --- a/airbyte-integrations/connectors/source-invoiced/metadata.yaml +++ b/airbyte-integrations/connectors/source-invoiced/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-invoiced connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 5f43588b-998b-4398-bb15-fb6eb4fc015e - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-invoiced githubIssueLabel: source-invoiced icon: icon.svg diff --git a/docs/integrations/sources/invoiced.md b/docs/integrations/sources/invoiced.md index 88af743faef8..9098bff2afd4 100644 --- a/docs/integrations/sources/invoiced.md +++ b/docs/integrations/sources/invoiced.md @@ -35,6 +35,7 @@ This Airbyte connector for **Invoiced** enables seamless data integration betwee | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47734](https://github.com/airbytehq/airbyte/pull/47734) | Update dependencies | | 0.0.2 | 2024-10-28 | [47534](https://github.com/airbytehq/airbyte/pull/47534) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 739e333ae2bc2b0ea45096eb9f1408c7dca8a5f5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:23 +0200 Subject: [PATCH 283/808] =?UTF-8?q?=F0=9F=90=99=20source-freshservice:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47732)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-freshservice/metadata.yaml | 4 ++-- docs/integrations/sources/freshservice.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-freshservice/metadata.yaml b/airbyte-integrations/connectors/source-freshservice/metadata.yaml index 120dac5b85fc..1aad1017da75 100644 --- a/airbyte-integrations/connectors/source-freshservice/metadata.yaml +++ b/airbyte-integrations/connectors/source-freshservice/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - ${domain_name}/api/v2 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 9bb85338-ea95-4c93-b267-6be89125b267 - dockerImageTag: 1.4.2 + dockerImageTag: 1.4.3 dockerRepository: airbyte/source-freshservice documentationUrl: https://docs.airbyte.com/integrations/sources/freshservice githubIssueLabel: source-freshservice diff --git a/docs/integrations/sources/freshservice.md b/docs/integrations/sources/freshservice.md index 4d25d4e1fe74..56bb63f2c958 100644 --- a/docs/integrations/sources/freshservice.md +++ b/docs/integrations/sources/freshservice.md @@ -57,6 +57,7 @@ Please read [How to find your API key](https://api.freshservice.com/#authenticat | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:---------------------------------------------------------------------------------------| +| 1.4.3 | 2024-10-29 | [47732](https://github.com/airbytehq/airbyte/pull/47732) | Update dependencies | | 1.4.2 | 2024-10-28 | [47449](https://github.com/airbytehq/airbyte/pull/47449) | Update dependencies | | 1.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.4.0 | 2024-08-15 | [44148](https://github.com/airbytehq/airbyte/pull/44148) | Refactor connector to manifest-only format | From f140c30626b869059dc62ed7826e7a2b18f52e75 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:27 +0200 Subject: [PATCH 284/808] =?UTF-8?q?=F0=9F=90=99=20source-coda:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47731)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-coda/metadata.yaml | 4 ++-- docs/integrations/sources/coda.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-coda/metadata.yaml b/airbyte-integrations/connectors/source-coda/metadata.yaml index efe173f55a0c..35608b9c04f8 100644 --- a/airbyte-integrations/connectors/source-coda/metadata.yaml +++ b/airbyte-integrations/connectors/source-coda/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - https://coda.io/ connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 27f910fd-f832-4b2e-bcfd-6ab342e434d8 - dockerImageTag: 1.3.2 + dockerImageTag: 1.3.3 dockerRepository: airbyte/source-coda documentationUrl: https://docs.airbyte.com/integrations/sources/coda githubIssueLabel: source-coda diff --git a/docs/integrations/sources/coda.md b/docs/integrations/sources/coda.md index 9436d306c929..6f599cb05070 100644 --- a/docs/integrations/sources/coda.md +++ b/docs/integrations/sources/coda.md @@ -67,6 +67,7 @@ The Coda source connector supports the following [sync modes](https://docs.airby | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:------------------------------------------------------------------------------------------------------------| +| 1.3.3 | 2024-10-29 | [47731](https://github.com/airbytehq/airbyte/pull/47731) | Update dependencies | | 1.3.2 | 2024-10-28 | [47517](https://github.com/airbytehq/airbyte/pull/47517) | Update dependencies | | 1.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.3.0 | 2024-08-15 | [44165](https://github.com/airbytehq/airbyte/pull/44165) | Refactor connector to manifest-only format | From dcba80d341fa32c76d0e8414fece187c7b4dea4d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:30 +0200 Subject: [PATCH 285/808] =?UTF-8?q?=F0=9F=90=99=20source-getlago:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47730)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-getlago/metadata.yaml | 4 ++-- docs/integrations/sources/getlago.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-getlago/metadata.yaml b/airbyte-integrations/connectors/source-getlago/metadata.yaml index eba0683e1691..dd809fc267ad 100644 --- a/airbyte-integrations/connectors/source-getlago/metadata.yaml +++ b/airbyte-integrations/connectors/source-getlago/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: e1a3866b-d3b2-43b6-b6d7-8c1ee4d7f53f - dockerImageTag: 0.7.1 + dockerImageTag: 0.7.2 dockerRepository: airbyte/source-getlago githubIssueLabel: source-getlago icon: getlago.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/getlago.md b/docs/integrations/sources/getlago.md index ed27b02e542b..6555cf465384 100644 --- a/docs/integrations/sources/getlago.md +++ b/docs/integrations/sources/getlago.md @@ -34,6 +34,7 @@ This source can sync data from the [Lago API](https://doc.getlago.com/docs/guide | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :---------------------------------------- | +| 0.7.2 | 2024-10-29 | [47730](https://github.com/airbytehq/airbyte/pull/47730) | Update dependencies | | 0.7.1 | 2024-10-28 | [47596](https://github.com/airbytehq/airbyte/pull/47596) | Update dependencies | | 0.7.0 | 2024-09-12 | [45452](https://github.com/airbytehq/airbyte/pull/45452) | Endpoint customer usage: import current from subscription and add new stream customer_usage_past | | 0.6.0 | 2024-09-06 | [45193](https://github.com/airbytehq/airbyte/pull/45193) | Endpoint customer usage ignore 405 response | From 0c912e230ba15b49ba38200c4c5503e0b1d1d816 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:34 +0200 Subject: [PATCH 286/808] =?UTF-8?q?=F0=9F=90=99=20source-ashby:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47729)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-ashby/metadata.yaml | 4 ++-- docs/integrations/sources/ashby.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-ashby/metadata.yaml b/airbyte-integrations/connectors/source-ashby/metadata.yaml index 5c19c3f34964..705f8ce529ed 100644 --- a/airbyte-integrations/connectors/source-ashby/metadata.yaml +++ b/airbyte-integrations/connectors/source-ashby/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4e8c9fa0-3634-499b-b948-11581b5c3efa - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-ashby githubIssueLabel: source-ashby icon: ashby.svg @@ -29,5 +29,5 @@ data: connectorTestSuitesOptions: - suite: unitTests connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/ashby.md b/docs/integrations/sources/ashby.md index 0e161c156737..ba4aeab9dfee 100644 --- a/docs/integrations/sources/ashby.md +++ b/docs/integrations/sources/ashby.md @@ -48,6 +48,7 @@ The Ashby connector should not run into Ashby API limitations under normal usage | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- |:--------------------------------------------| +| 0.2.2 | 2024-10-29 | [47729](https://github.com/airbytehq/airbyte/pull/47729) | Update dependencies | | 0.2.1 | 2024-10-28 | [47616](https://github.com/airbytehq/airbyte/pull/47616) | Update dependencies | | 0.2.0 | 2024-08-19 | [44420](https://github.com/airbytehq/airbyte/pull/44420) | Refactor connector to manifest-only format | | 0.1.16 | 2024-08-17 | [44288](https://github.com/airbytehq/airbyte/pull/44288) | Update dependencies | From 6f3c56ca58fba6c8d9f231efa358f0a1d375ab57 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:38 +0200 Subject: [PATCH 287/808] =?UTF-8?q?=F0=9F=90=99=20source-nytimes:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47728)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-nytimes/metadata.yaml | 4 ++-- docs/integrations/sources/nytimes.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-nytimes/metadata.yaml b/airbyte-integrations/connectors/source-nytimes/metadata.yaml index d2538e556f8b..c6947b781d73 100644 --- a/airbyte-integrations/connectors/source-nytimes/metadata.yaml +++ b/airbyte-integrations/connectors/source-nytimes/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 0fae6a9a-04eb-44d4-96e1-e02d3dbc1d83 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-nytimes documentationUrl: https://docs.airbyte.com/integrations/sources/nytimes githubIssueLabel: source-nytimes diff --git a/docs/integrations/sources/nytimes.md b/docs/integrations/sources/nytimes.md index ac9705471042..d70eba4b8cbc 100644 --- a/docs/integrations/sources/nytimes.md +++ b/docs/integrations/sources/nytimes.md @@ -45,6 +45,7 @@ The New York Times connector should not run into limitations under normal usage. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.2 | 2024-10-29 | [47728](https://github.com/airbytehq/airbyte/pull/47728) | Update dependencies | | 0.2.1 | 2024-10-28 | [47634](https://github.com/airbytehq/airbyte/pull/47634) | Update dependencies | | 0.2.0 | 2024-08-22 | [44555](https://github.com/airbytehq/airbyte/pull/44555) | Refactor connector to manifest-only format | | 0.1.18 | 2024-08-17 | [44349](https://github.com/airbytehq/airbyte/pull/44349) | Update dependencies | From 6881a9367aa3d8418e8d50ef9fd91437a22ec56f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:41 +0200 Subject: [PATCH 288/808] =?UTF-8?q?=F0=9F=90=99=20source-canny:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47727)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-canny/metadata.yaml | 4 ++-- docs/integrations/sources/canny.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/source-canny/metadata.yaml b/airbyte-integrations/connectors/source-canny/metadata.yaml index bfb8cce2996f..1420f844848e 100644 --- a/airbyte-integrations/connectors/source-canny/metadata.yaml +++ b/airbyte-integrations/connectors/source-canny/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-canny connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: ec1ffa33-bfd9-428a-a645-ece66a1a9f44 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-canny githubIssueLabel: source-canny icon: icon.svg diff --git a/docs/integrations/sources/canny.md b/docs/integrations/sources/canny.md index f606be1e123e..5ae710f465e9 100644 --- a/docs/integrations/sources/canny.md +++ b/docs/integrations/sources/canny.md @@ -28,6 +28,7 @@ A manifest only source for Canny. https://canny.io/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| -| 0.0.1 | 2024-09-15 | [45588](https://github.com/airbytehq/airbyte/pull/45588) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | +| 0.0.2 | 2024-10-29 | [47727](https://github.com/airbytehq/airbyte/pull/47727) | Update dependencies | +| 0.0.1 | 2024-09-15 | [45588](https://github.com/airbytehq/airbyte/pull/45588) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | - \ No newline at end of file + From f96fc6aae327cb287bf0805b489a3d9e26f38f73 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:44 +0200 Subject: [PATCH 289/808] =?UTF-8?q?=F0=9F=90=99=20source-yahoo-finance-pri?= =?UTF-8?q?ce:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47726)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-yahoo-finance-price/metadata.yaml | 4 ++-- docs/integrations/sources/yahoo-finance-price.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml b/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml index 11b2bcd80493..cf6ad2c3e668 100644 --- a/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml +++ b/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 09a517d3-803f-448d-97bf-0b1ee64b90ef - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-yahoo-finance-price documentationUrl: https://docs.airbyte.com/integrations/sources/yahoo-finance-price githubIssueLabel: source-yahoo-finance-price diff --git a/docs/integrations/sources/yahoo-finance-price.md b/docs/integrations/sources/yahoo-finance-price.md index 256d33cb4ad7..0fa580aa6c2f 100644 --- a/docs/integrations/sources/yahoo-finance-price.md +++ b/docs/integrations/sources/yahoo-finance-price.md @@ -9,6 +9,7 @@ The Airbyte Source for [Yahoo Finance Price](https://finance.yahoo.com/) | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.2 | 2024-10-29 | [47726](https://github.com/airbytehq/airbyte/pull/47726) | Update dependencies | | 0.3.1 | 2024-10-28 | [47497](https://github.com/airbytehq/airbyte/pull/47497) | Update dependencies | | 0.3.0 | 2024-10-06 | [46526](https://github.com/airbytehq/airbyte/pull/46526) | Converting to manifest-only format | | 0.2.23 | 2024-10-05 | [46468](https://github.com/airbytehq/airbyte/pull/46468) | Update dependencies | From 8bbbd3895f9cb35a051ff9facbdc54974dfe5d62 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:48 +0200 Subject: [PATCH 290/808] =?UTF-8?q?=F0=9F=90=99=20source-surveycto:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47725)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-surveycto/metadata.yaml | 2 +- .../connectors/source-surveycto/poetry.lock | 140 +++++++++--------- .../source-surveycto/pyproject.toml | 2 +- docs/integrations/sources/surveycto.md | 1 + 4 files changed, 73 insertions(+), 72 deletions(-) diff --git a/airbyte-integrations/connectors/source-surveycto/metadata.yaml b/airbyte-integrations/connectors/source-surveycto/metadata.yaml index d3c74a87d6bc..3d7688105277 100644 --- a/airbyte-integrations/connectors/source-surveycto/metadata.yaml +++ b/airbyte-integrations/connectors/source-surveycto/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: dd4632f4-15e0-4649-9b71-41719fb1fdee - dockerImageTag: 0.1.25 + dockerImageTag: 0.1.26 dockerRepository: airbyte/source-surveycto githubIssueLabel: source-surveycto icon: surveycto.svg diff --git a/airbyte-integrations/connectors/source-surveycto/poetry.lock b/airbyte-integrations/connectors/source-surveycto/poetry.lock index 877fa7f6c9ba..c3ef8cec0bf8 100644 --- a/airbyte-integrations/connectors/source-surveycto/poetry.lock +++ b/airbyte-integrations/connectors/source-surveycto/poetry.lock @@ -367,13 +367,13 @@ files = [ [[package]] name = "google-api-core" -version = "2.21.0" +version = "2.22.0" description = "Google API client core library" optional = false python-versions = ">=3.7" files = [ - {file = "google_api_core-2.21.0-py3-none-any.whl", hash = "sha256:6869eacb2a37720380ba5898312af79a4d30b8bca1548fb4093e0697dc4bdf5d"}, - {file = "google_api_core-2.21.0.tar.gz", hash = "sha256:4a152fd11a9f774ea606388d423b68aa7e6d6a0ffe4c8266f74979613ec09f81"}, + {file = "google_api_core-2.22.0-py3-none-any.whl", hash = "sha256:a6652b6bd51303902494998626653671703c420f6f4c88cfd3f50ed723e9d021"}, + {file = "google_api_core-2.22.0.tar.gz", hash = "sha256:26f8d76b96477db42b55fd02a33aae4a42ec8b86b98b94969b7333a2c828bf35"}, ] [package.dependencies] @@ -545,85 +545,85 @@ grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] [[package]] name = "grpcio" -version = "1.67.0" +version = "1.67.1" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.67.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:bd79929b3bb96b54df1296cd3bf4d2b770bd1df6c2bdf549b49bab286b925cdc"}, - {file = "grpcio-1.67.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:16724ffc956ea42967f5758c2f043faef43cb7e48a51948ab593570570d1e68b"}, - {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:2b7183c80b602b0ad816315d66f2fb7887614ead950416d60913a9a71c12560d"}, - {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efe32b45dd6d118f5ea2e5deaed417d8a14976325c93812dd831908522b402c9"}, - {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe89295219b9c9e47780a0f1c75ca44211e706d1c598242249fe717af3385ec8"}, - {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa8d025fae1595a207b4e47c2e087cb88d47008494db258ac561c00877d4c8f8"}, - {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f95e15db43e75a534420e04822df91f645664bf4ad21dfaad7d51773c80e6bb4"}, - {file = "grpcio-1.67.0-cp310-cp310-win32.whl", hash = "sha256:a6b9a5c18863fd4b6624a42e2712103fb0f57799a3b29651c0e5b8119a519d65"}, - {file = "grpcio-1.67.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6eb68493a05d38b426604e1dc93bfc0137c4157f7ab4fac5771fd9a104bbaa6"}, - {file = "grpcio-1.67.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:e91d154689639932305b6ea6f45c6e46bb51ecc8ea77c10ef25aa77f75443ad4"}, - {file = "grpcio-1.67.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cb204a742997277da678611a809a8409657b1398aaeebf73b3d9563b7d154c13"}, - {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:ae6de510f670137e755eb2a74b04d1041e7210af2444103c8c95f193340d17ee"}, - {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74b900566bdf68241118f2918d312d3bf554b2ce0b12b90178091ea7d0a17b3d"}, - {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4e95e43447a02aa603abcc6b5e727d093d161a869c83b073f50b9390ecf0fa8"}, - {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0bb94e66cd8f0baf29bd3184b6aa09aeb1a660f9ec3d85da615c5003154bc2bf"}, - {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:82e5bd4b67b17c8c597273663794a6a46a45e44165b960517fe6d8a2f7f16d23"}, - {file = "grpcio-1.67.0-cp311-cp311-win32.whl", hash = "sha256:7fc1d2b9fd549264ae585026b266ac2db53735510a207381be509c315b4af4e8"}, - {file = "grpcio-1.67.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac11ecb34a86b831239cc38245403a8de25037b448464f95c3315819e7519772"}, - {file = "grpcio-1.67.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:227316b5631260e0bef8a3ce04fa7db4cc81756fea1258b007950b6efc90c05d"}, - {file = "grpcio-1.67.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d90cfdafcf4b45a7a076e3e2a58e7bc3d59c698c4f6470b0bb13a4d869cf2273"}, - {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:77196216d5dd6f99af1c51e235af2dd339159f657280e65ce7e12c1a8feffd1d"}, - {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15c05a26a0f7047f720da41dc49406b395c1470eef44ff7e2c506a47ac2c0591"}, - {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3840994689cc8cbb73d60485c594424ad8adb56c71a30d8948d6453083624b52"}, - {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:5a1e03c3102b6451028d5dc9f8591131d6ab3c8a0e023d94c28cb930ed4b5f81"}, - {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:682968427a63d898759474e3b3178d42546e878fdce034fd7474ef75143b64e3"}, - {file = "grpcio-1.67.0-cp312-cp312-win32.whl", hash = "sha256:d01793653248f49cf47e5695e0a79805b1d9d4eacef85b310118ba1dfcd1b955"}, - {file = "grpcio-1.67.0-cp312-cp312-win_amd64.whl", hash = "sha256:985b2686f786f3e20326c4367eebdaed3e7aa65848260ff0c6644f817042cb15"}, - {file = "grpcio-1.67.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:8c9a35b8bc50db35ab8e3e02a4f2a35cfba46c8705c3911c34ce343bd777813a"}, - {file = "grpcio-1.67.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:42199e704095b62688998c2d84c89e59a26a7d5d32eed86d43dc90e7a3bd04aa"}, - {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c4c425f440fb81f8d0237c07b9322fc0fb6ee2b29fbef5f62a322ff8fcce240d"}, - {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:323741b6699cd2b04a71cb38f502db98f90532e8a40cb675393d248126a268af"}, - {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:662c8e105c5e5cee0317d500eb186ed7a93229586e431c1bf0c9236c2407352c"}, - {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f6bd2ab135c64a4d1e9e44679a616c9bc944547357c830fafea5c3caa3de5153"}, - {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:2f55c1e0e2ae9bdd23b3c63459ee4c06d223b68aeb1961d83c48fb63dc29bc03"}, - {file = "grpcio-1.67.0-cp313-cp313-win32.whl", hash = "sha256:fd6bc27861e460fe28e94226e3673d46e294ca4673d46b224428d197c5935e69"}, - {file = "grpcio-1.67.0-cp313-cp313-win_amd64.whl", hash = "sha256:cf51d28063338608cd8d3cd64677e922134837902b70ce00dad7f116e3998210"}, - {file = "grpcio-1.67.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:7f200aca719c1c5dc72ab68be3479b9dafccdf03df530d137632c534bb6f1ee3"}, - {file = "grpcio-1.67.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0892dd200ece4822d72dd0952f7112c542a487fc48fe77568deaaa399c1e717d"}, - {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:f4d613fbf868b2e2444f490d18af472ccb47660ea3df52f068c9c8801e1f3e85"}, - {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c69bf11894cad9da00047f46584d5758d6ebc9b5950c0dc96fec7e0bce5cde9"}, - {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9bca3ca0c5e74dea44bf57d27e15a3a3996ce7e5780d61b7c72386356d231db"}, - {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:014dfc020e28a0d9be7e93a91f85ff9f4a87158b7df9952fe23cc42d29d31e1e"}, - {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d4ea4509d42c6797539e9ec7496c15473177ce9abc89bc5c71e7abe50fc25737"}, - {file = "grpcio-1.67.0-cp38-cp38-win32.whl", hash = "sha256:9d75641a2fca9ae1ae86454fd25d4c298ea8cc195dbc962852234d54a07060ad"}, - {file = "grpcio-1.67.0-cp38-cp38-win_amd64.whl", hash = "sha256:cff8e54d6a463883cda2fab94d2062aad2f5edd7f06ae3ed030f2a74756db365"}, - {file = "grpcio-1.67.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:62492bd534979e6d7127b8a6b29093161a742dee3875873e01964049d5250a74"}, - {file = "grpcio-1.67.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eef1dce9d1a46119fd09f9a992cf6ab9d9178b696382439446ca5f399d7b96fe"}, - {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:f623c57a5321461c84498a99dddf9d13dac0e40ee056d884d6ec4ebcab647a78"}, - {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54d16383044e681f8beb50f905249e4e7261dd169d4aaf6e52eab67b01cbbbe2"}, - {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2a44e572fb762c668e4812156b81835f7aba8a721b027e2d4bb29fb50ff4d33"}, - {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:391df8b0faac84d42f5b8dfc65f5152c48ed914e13c522fd05f2aca211f8bfad"}, - {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cfd9306511fdfc623a1ba1dc3bc07fbd24e6cfbe3c28b4d1e05177baa2f99617"}, - {file = "grpcio-1.67.0-cp39-cp39-win32.whl", hash = "sha256:30d47dbacfd20cbd0c8be9bfa52fdb833b395d4ec32fe5cff7220afc05d08571"}, - {file = "grpcio-1.67.0-cp39-cp39-win_amd64.whl", hash = "sha256:f55f077685f61f0fbd06ea355142b71e47e4a26d2d678b3ba27248abfe67163a"}, - {file = "grpcio-1.67.0.tar.gz", hash = "sha256:e090b2553e0da1c875449c8e75073dd4415dd71c9bde6a406240fdf4c0ee467c"}, + {file = "grpcio-1.67.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:8b0341d66a57f8a3119b77ab32207072be60c9bf79760fa609c5609f2deb1f3f"}, + {file = "grpcio-1.67.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:f5a27dddefe0e2357d3e617b9079b4bfdc91341a91565111a21ed6ebbc51b22d"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:43112046864317498a33bdc4797ae6a268c36345a910de9b9c17159d8346602f"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9b929f13677b10f63124c1a410994a401cdd85214ad83ab67cc077fc7e480f0"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7d1797a8a3845437d327145959a2c0c47c05947c9eef5ff1a4c80e499dcc6fa"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0489063974d1452436139501bf6b180f63d4977223ee87488fe36858c5725292"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9fd042de4a82e3e7aca44008ee2fb5da01b3e5adb316348c21980f7f58adc311"}, + {file = "grpcio-1.67.1-cp310-cp310-win32.whl", hash = "sha256:638354e698fd0c6c76b04540a850bf1db27b4d2515a19fcd5cf645c48d3eb1ed"}, + {file = "grpcio-1.67.1-cp310-cp310-win_amd64.whl", hash = "sha256:608d87d1bdabf9e2868b12338cd38a79969eaf920c89d698ead08f48de9c0f9e"}, + {file = "grpcio-1.67.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:7818c0454027ae3384235a65210bbf5464bd715450e30a3d40385453a85a70cb"}, + {file = "grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ea33986b70f83844cd00814cee4451055cd8cab36f00ac64a31f5bb09b31919e"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c7a01337407dd89005527623a4a72c5c8e2894d22bead0895306b23c6695698f"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b866f73224b0634f4312a4674c1be21b2b4afa73cb20953cbbb73a6b36c3cc"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fff78ba10d4250bfc07a01bd6254a6d87dc67f9627adece85c0b2ed754fa96"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8a23cbcc5bb11ea7dc6163078be36c065db68d915c24f5faa4f872c573bb400f"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1a65b503d008f066e994f34f456e0647e5ceb34cfcec5ad180b1b44020ad4970"}, + {file = "grpcio-1.67.1-cp311-cp311-win32.whl", hash = "sha256:e29ca27bec8e163dca0c98084040edec3bc49afd10f18b412f483cc68c712744"}, + {file = "grpcio-1.67.1-cp311-cp311-win_amd64.whl", hash = "sha256:786a5b18544622bfb1e25cc08402bd44ea83edfb04b93798d85dca4d1a0b5be5"}, + {file = "grpcio-1.67.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:267d1745894200e4c604958da5f856da6293f063327cb049a51fe67348e4f953"}, + {file = "grpcio-1.67.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:85f69fdc1d28ce7cff8de3f9c67db2b0ca9ba4449644488c1e0303c146135ddb"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:f26b0b547eb8d00e195274cdfc63ce64c8fc2d3e2d00b12bf468ece41a0423a0"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4422581cdc628f77302270ff839a44f4c24fdc57887dc2a45b7e53d8fc2376af"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7616d2ded471231c701489190379e0c311ee0a6c756f3c03e6a62b95a7146e"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8a00efecde9d6fcc3ab00c13f816313c040a28450e5e25739c24f432fc6d3c75"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:699e964923b70f3101393710793289e42845791ea07565654ada0969522d0a38"}, + {file = "grpcio-1.67.1-cp312-cp312-win32.whl", hash = "sha256:4e7b904484a634a0fff132958dabdb10d63e0927398273917da3ee103e8d1f78"}, + {file = "grpcio-1.67.1-cp312-cp312-win_amd64.whl", hash = "sha256:5721e66a594a6c4204458004852719b38f3d5522082be9061d6510b455c90afc"}, + {file = "grpcio-1.67.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:aa0162e56fd10a5547fac8774c4899fc3e18c1aa4a4759d0ce2cd00d3696ea6b"}, + {file = "grpcio-1.67.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:beee96c8c0b1a75d556fe57b92b58b4347c77a65781ee2ac749d550f2a365dc1"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:a93deda571a1bf94ec1f6fcda2872dad3ae538700d94dc283c672a3b508ba3af"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6f255980afef598a9e64a24efce87b625e3e3c80a45162d111a461a9f92955"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e838cad2176ebd5d4a8bb03955138d6589ce9e2ce5d51c3ada34396dbd2dba8"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a6703916c43b1d468d0756c8077b12017a9fcb6a1ef13faf49e67d20d7ebda62"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:917e8d8994eed1d86b907ba2a61b9f0aef27a2155bca6cbb322430fc7135b7bb"}, + {file = "grpcio-1.67.1-cp313-cp313-win32.whl", hash = "sha256:e279330bef1744040db8fc432becc8a727b84f456ab62b744d3fdb83f327e121"}, + {file = "grpcio-1.67.1-cp313-cp313-win_amd64.whl", hash = "sha256:fa0c739ad8b1996bd24823950e3cb5152ae91fca1c09cc791190bf1627ffefba"}, + {file = "grpcio-1.67.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:178f5db771c4f9a9facb2ab37a434c46cb9be1a75e820f187ee3d1e7805c4f65"}, + {file = "grpcio-1.67.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0f3e49c738396e93b7ba9016e153eb09e0778e776df6090c1b8c91877cc1c426"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:24e8a26dbfc5274d7474c27759b54486b8de23c709d76695237515bc8b5baeab"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b6c16489326d79ead41689c4b84bc40d522c9a7617219f4ad94bc7f448c5085"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e6a4dcf5af7bbc36fd9f81c9f372e8ae580870a9e4b6eafe948cd334b81cf3"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:95b5f2b857856ed78d72da93cd7d09b6db8ef30102e5e7fe0961fe4d9f7d48e8"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b49359977c6ec9f5d0573ea4e0071ad278ef905aa74e420acc73fd28ce39e9ce"}, + {file = "grpcio-1.67.1-cp38-cp38-win32.whl", hash = "sha256:f5b76ff64aaac53fede0cc93abf57894ab2a7362986ba22243d06218b93efe46"}, + {file = "grpcio-1.67.1-cp38-cp38-win_amd64.whl", hash = "sha256:804c6457c3cd3ec04fe6006c739579b8d35c86ae3298ffca8de57b493524b771"}, + {file = "grpcio-1.67.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:a25bdea92b13ff4d7790962190bf6bf5c4639876e01c0f3dda70fc2769616335"}, + {file = "grpcio-1.67.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cdc491ae35a13535fd9196acb5afe1af37c8237df2e54427be3eecda3653127e"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:85f862069b86a305497e74d0dc43c02de3d1d184fc2c180993aa8aa86fbd19b8"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec74ef02010186185de82cc594058a3ccd8d86821842bbac9873fd4a2cf8be8d"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01f616a964e540638af5130469451cf580ba8c7329f45ca998ab66e0c7dcdb04"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:299b3d8c4f790c6bcca485f9963b4846dd92cf6f1b65d3697145d005c80f9fe8"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:60336bff760fbb47d7e86165408126f1dded184448e9a4c892189eb7c9d3f90f"}, + {file = "grpcio-1.67.1-cp39-cp39-win32.whl", hash = "sha256:5ed601c4c6008429e3d247ddb367fe8c7259c355757448d7c1ef7bd4a6739e8e"}, + {file = "grpcio-1.67.1-cp39-cp39-win_amd64.whl", hash = "sha256:5db70d32d6703b89912af16d6d45d78406374a8b8ef0d28140351dd0ec610e98"}, + {file = "grpcio-1.67.1.tar.gz", hash = "sha256:3dc2ed4cabea4dc14d5e708c2b426205956077cc5de419b4d4079315017e9732"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.67.0)"] +protobuf = ["grpcio-tools (>=1.67.1)"] [[package]] name = "grpcio-status" -version = "1.67.0" +version = "1.67.1" description = "Status proto mapping for gRPC" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio_status-1.67.0-py3-none-any.whl", hash = "sha256:0e79e2e01ba41a6ca6ed9d7a825323c511fe1653a646f8014c7e3c8132527acc"}, - {file = "grpcio_status-1.67.0.tar.gz", hash = "sha256:c3e5a86fa007e9e263cd5f988a8a907484da4caab582874ea2a4a6092734046b"}, + {file = "grpcio_status-1.67.1-py3-none-any.whl", hash = "sha256:16e6c085950bdacac97c779e6a502ea671232385e6e37f258884d6883392c2bd"}, + {file = "grpcio_status-1.67.1.tar.gz", hash = "sha256:2bf38395e028ceeecfd8866b081f61628114b384da7d51ae064ddc8d766a5d11"}, ] [package.dependencies] googleapis-common-protos = ">=1.5.5" -grpcio = ">=1.67.0" +grpcio = ">=1.67.1" protobuf = ">=5.26.1,<6.0dev" [[package]] @@ -1260,23 +1260,23 @@ pyasn1 = ">=0.1.3" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-surveycto/pyproject.toml b/airbyte-integrations/connectors/source-surveycto/pyproject.toml index 72b894ae54cf..3544666da762 100644 --- a/airbyte-integrations/connectors/source-surveycto/pyproject.toml +++ b/airbyte-integrations/connectors/source-surveycto/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.25" +version = "0.1.26" name = "source-surveycto" description = "Source implementation for Surveycto." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/surveycto.md b/docs/integrations/sources/surveycto.md index 4578c9882b84..044357d9a61d 100644 --- a/docs/integrations/sources/surveycto.md +++ b/docs/integrations/sources/surveycto.md @@ -52,6 +52,7 @@ The SurveyCTO source connector supports the following streams: | Version | Date | Pull Request | Subject | | ------- | ---------- | -------------------------------------------------------- | -------------------------- | +| 0.1.26 | 2024-10-29 | [47725](https://github.com/airbytehq/airbyte/pull/47725) | Update dependencies | | 0.1.25 | 2024-10-28 | [47036](https://github.com/airbytehq/airbyte/pull/47036) | Update dependencies | | 0.1.24 | 2024-10-12 | [46834](https://github.com/airbytehq/airbyte/pull/46834) | Update dependencies | | 0.1.23 | 2024-10-05 | [46450](https://github.com/airbytehq/airbyte/pull/46450) | Update dependencies | From 535d795439c69001d85cee6fb71afae069c0fc39 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:13:52 +0200 Subject: [PATCH 291/808] =?UTF-8?q?=F0=9F=90=99=20source-posthog:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47724)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-posthog/metadata.yaml | 2 +- .../connectors/source-posthog/poetry.lock | 12 ++++++------ .../connectors/source-posthog/pyproject.toml | 2 +- docs/integrations/sources/posthog.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-posthog/metadata.yaml b/airbyte-integrations/connectors/source-posthog/metadata.yaml index 99d2eab06937..910575e68e41 100644 --- a/airbyte-integrations/connectors/source-posthog/metadata.yaml +++ b/airbyte-integrations/connectors/source-posthog/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: api connectorType: source definitionId: af6d50ee-dddf-4126-a8ee-7faee990774f - dockerImageTag: 1.1.16 + dockerImageTag: 1.1.17 dockerRepository: airbyte/source-posthog documentationUrl: https://docs.airbyte.com/integrations/sources/posthog githubIssueLabel: source-posthog diff --git a/airbyte-integrations/connectors/source-posthog/poetry.lock b/airbyte-integrations/connectors/source-posthog/poetry.lock index 6c2c4e32eaf9..6a32b1a07579 100644 --- a/airbyte-integrations/connectors/source-posthog/poetry.lock +++ b/airbyte-integrations/connectors/source-posthog/poetry.lock @@ -885,23 +885,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-posthog/pyproject.toml b/airbyte-integrations/connectors/source-posthog/pyproject.toml index e0ea4a63b8f2..008179e5becf 100644 --- a/airbyte-integrations/connectors/source-posthog/pyproject.toml +++ b/airbyte-integrations/connectors/source-posthog/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.16" +version = "1.1.17" name = "source-posthog" description = "Source implementation for Posthog." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/posthog.md b/docs/integrations/sources/posthog.md index 1518e35a181c..0816fd7c5850 100644 --- a/docs/integrations/sources/posthog.md +++ b/docs/integrations/sources/posthog.md @@ -71,6 +71,7 @@ Want to use the PostHog API beyond these limits? Email Posthog at `customers@pos | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------- | +| 1.1.17 | 2024-10-29 | [47724](https://github.com/airbytehq/airbyte/pull/47724) | Update dependencies | | 1.1.16 | 2024-10-28 | [47033](https://github.com/airbytehq/airbyte/pull/47033) | Update dependencies | | 1.1.15 | 2024-10-12 | [46769](https://github.com/airbytehq/airbyte/pull/46769) | Update dependencies | | 1.1.14 | 2024-10-05 | [46421](https://github.com/airbytehq/airbyte/pull/46421) | Update dependencies | From 9db4fdd41638368ee1acfdd6d73d4e5b5571b86a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:14:29 +0200 Subject: [PATCH 292/808] =?UTF-8?q?=F0=9F=90=99=20source-simplesat:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47515)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-simplesat/metadata.yaml | 4 ++-- docs/integrations/sources/simplesat.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-simplesat/metadata.yaml b/airbyte-integrations/connectors/source-simplesat/metadata.yaml index f3706002245c..cef43a159af0 100644 --- a/airbyte-integrations/connectors/source-simplesat/metadata.yaml +++ b/airbyte-integrations/connectors/source-simplesat/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-simplesat connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.8.1@sha256:6632036bdf769dc6d55103a8ba946253d186314962bcd9867e4e21e00eae4f09 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: c2dd8b7e-3e5b-45cb-9522-3d3025ac5796 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-simplesat githubIssueLabel: source-simplesat icon: icon.svg diff --git a/docs/integrations/sources/simplesat.md b/docs/integrations/sources/simplesat.md index ad6e5aad4494..8ec2b4ca4186 100644 --- a/docs/integrations/sources/simplesat.md +++ b/docs/integrations/sources/simplesat.md @@ -47,6 +47,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47515](https://github.com/airbytehq/airbyte/pull/47515) | Update dependencies | | 0.0.1 | 2024-10-01 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From e7e520b321d7705b3a1ded1da06c28dbb1508411 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:14:38 +0200 Subject: [PATCH 293/808] =?UTF-8?q?=F0=9F=90=99=20source-vwo:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-29]=20(#47475)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-vwo/metadata.yaml | 4 ++-- docs/integrations/sources/vwo.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-vwo/metadata.yaml b/airbyte-integrations/connectors/source-vwo/metadata.yaml index a27b53711ecc..f0c82186fca3 100644 --- a/airbyte-integrations/connectors/source-vwo/metadata.yaml +++ b/airbyte-integrations/connectors/source-vwo/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-vwo connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: c739daf4-71c9-4dde-b115-269bcd1b87d6 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-vwo githubIssueLabel: source-vwo icon: icon.svg diff --git a/docs/integrations/sources/vwo.md b/docs/integrations/sources/vwo.md index 1c7f33ece4d0..08cbd4a3e8a8 100644 --- a/docs/integrations/sources/vwo.md +++ b/docs/integrations/sources/vwo.md @@ -34,6 +34,7 @@ Visit `https://developers.vwo.com/reference/introduction-1` for API documentatio | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-29 | [47475](https://github.com/airbytehq/airbyte/pull/47475) | Update dependencies | | 0.0.1 | 2024-09-23 | [45851](https://github.com/airbytehq/airbyte/pull/45851) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From c8bfdb34c3b5f7d834ec5a724d8ef965550e1491 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:14:49 +0200 Subject: [PATCH 294/808] =?UTF-8?q?=F0=9F=90=99=20source-greenhouse:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47110)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-greenhouse/metadata.yaml | 2 +- .../connectors/source-greenhouse/poetry.lock | 136 +++++++++--------- .../source-greenhouse/pyproject.toml | 2 +- docs/integrations/sources/greenhouse.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-greenhouse/metadata.yaml b/airbyte-integrations/connectors/source-greenhouse/metadata.yaml index a1462513a941..4caffdf6826f 100644 --- a/airbyte-integrations/connectors/source-greenhouse/metadata.yaml +++ b/airbyte-integrations/connectors/source-greenhouse/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 59f1e50a-331f-4f09-b3e8-2e8d4d355f44 - dockerImageTag: 0.5.24 + dockerImageTag: 0.5.25 dockerRepository: airbyte/source-greenhouse documentationUrl: https://docs.airbyte.com/integrations/sources/greenhouse githubIssueLabel: source-greenhouse diff --git a/airbyte-integrations/connectors/source-greenhouse/poetry.lock b/airbyte-integrations/connectors/source-greenhouse/poetry.lock index 7f389312c5de..220902354c49 100644 --- a/airbyte-integrations/connectors/source-greenhouse/poetry.lock +++ b/airbyte-integrations/connectors/source-greenhouse/poetry.lock @@ -435,72 +435,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -903,23 +903,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-greenhouse/pyproject.toml b/airbyte-integrations/connectors/source-greenhouse/pyproject.toml index 078eb58bd8c1..15818c9e418a 100644 --- a/airbyte-integrations/connectors/source-greenhouse/pyproject.toml +++ b/airbyte-integrations/connectors/source-greenhouse/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.24" +version = "0.5.25" name = "source-greenhouse" description = "Source implementation for Greenhouse." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/greenhouse.md b/docs/integrations/sources/greenhouse.md index abb50991b711..0d399f898225 100644 --- a/docs/integrations/sources/greenhouse.md +++ b/docs/integrations/sources/greenhouse.md @@ -74,6 +74,7 @@ The Greenhouse connector should not run into Greenhouse API limitations under no | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.5.25 | 2024-10-29 | [47110](https://github.com/airbytehq/airbyte/pull/47110) | Update dependencies | | 0.5.24 | 2024-10-23 | [47306](https://github.com/airbytehq/airbyte/pull/47306) | Add 'job_post_id' to applications stream scehma | | 0.5.23 | 2024-10-12 | [46828](https://github.com/airbytehq/airbyte/pull/46828) | Update dependencies | | 0.5.22 | 2024-10-05 | [46506](https://github.com/airbytehq/airbyte/pull/46506) | Update dependencies | From f4fea664103ae0b8421cdb40bdbd28f32b1ebf54 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:15:18 +0200 Subject: [PATCH 295/808] =?UTF-8?q?=F0=9F=90=99=20source-amazon-ads:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47032)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-amazon-ads/metadata.yaml | 2 +- .../connectors/source-amazon-ads/poetry.lock | 267 +++++++++--------- .../source-amazon-ads/pyproject.toml | 2 +- docs/integrations/sources/amazon-ads.md | 1 + 4 files changed, 137 insertions(+), 135 deletions(-) diff --git a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml index 5153f82e3ef0..be3c1c29ceb3 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: c6b0a29e-1da9-4512-9002-7bfd0cba2246 - dockerImageTag: 5.0.19 + dockerImageTag: 5.0.20 dockerRepository: airbyte/source-amazon-ads documentationUrl: https://docs.airbyte.com/integrations/sources/amazon-ads githubIssueLabel: source-amazon-ads diff --git a/airbyte-integrations/connectors/source-amazon-ads/poetry.lock b/airbyte-integrations/connectors/source-amazon-ads/poetry.lock index 1723b05db7d8..d543f3a347cc 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-amazon-ads/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -693,13 +693,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -711,72 +711,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -797,68 +797,69 @@ signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1352,23 +1353,23 @@ tests = ["coverage (>=6.0.0)", "flake8", "mypy", "pytest (>=7.0.0)", "pytest-asy [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml index 2ff71bcf2dba..848e63533431 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "5.0.19" +version = "5.0.20" name = "source-amazon-ads" description = "Source implementation for Amazon Ads." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/amazon-ads.md b/docs/integrations/sources/amazon-ads.md index 854b06effd18..0383e2c4f1f8 100644 --- a/docs/integrations/sources/amazon-ads.md +++ b/docs/integrations/sources/amazon-ads.md @@ -153,6 +153,7 @@ Information about expected report generation waiting time can be found [here](ht | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------| +| 5.0.20 | 2024-10-29 | [47032](https://github.com/airbytehq/airbyte/pull/47032) | Update dependencies | | 5.0.19 | 2024-10-12 | [46860](https://github.com/airbytehq/airbyte/pull/46860) | Update dependencies | | 5.0.18 | 2024-10-05 | [46451](https://github.com/airbytehq/airbyte/pull/46451) | Update dependencies | | 5.0.17 | 2024-09-28 | [45794](https://github.com/airbytehq/airbyte/pull/45794) | Update dependencies | From a4a7143ceb5f52eda8b3baf3f4865ae0358beca7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 14:15:38 +0200 Subject: [PATCH 296/808] =?UTF-8?q?=F0=9F=90=99=20source-twitter:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#44710)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-twitter/metadata.yaml | 4 ++-- docs/integrations/sources/twitter.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-twitter/metadata.yaml b/airbyte-integrations/connectors/source-twitter/metadata.yaml index 022e550c5e07..9577fc4b1b99 100644 --- a/airbyte-integrations/connectors/source-twitter/metadata.yaml +++ b/airbyte-integrations/connectors/source-twitter/metadata.yaml @@ -8,7 +8,7 @@ data: connectorSubtype: api connectorType: source definitionId: d7fd4f40-5e5a-4b8b-918f-a73077f8c131 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-twitter documentationUrl: https://docs.airbyte.com/integrations/sources/twitter githubIssueLabel: source-twitter @@ -42,5 +42,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/twitter.md b/docs/integrations/sources/twitter.md index 5f0dee447287..064ec218c5bc 100644 --- a/docs/integrations/sources/twitter.md +++ b/docs/integrations/sources/twitter.md @@ -41,6 +41,7 @@ Rate limiting is mentioned in the API [documentation](https://developer.twitter. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.2.1 | 2024-10-29 | [44710](https://github.com/airbytehq/airbyte/pull/44710) | Update dependencies | | 0.2.0 | 2024-08-26 | [44777](https://github.com/airbytehq/airbyte/pull/44777) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-17 | [44289](https://github.com/airbytehq/airbyte/pull/44289) | Update dependencies | | 0.1.14 | 2024-08-12 | [43813](https://github.com/airbytehq/airbyte/pull/43813) | Update dependencies | From 31d07ef82ee7ef1d3d5056b89a243fbfbc65eddf Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:29 +0200 Subject: [PATCH 297/808] =?UTF-8?q?=F0=9F=90=99=20source-auth0:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47807)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-auth0/metadata.yaml | 4 ++-- docs/integrations/sources/auth0.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-auth0/metadata.yaml b/airbyte-integrations/connectors/source-auth0/metadata.yaml index ca378df6c4e9..0e9fceb0f65b 100644 --- a/airbyte-integrations/connectors/source-auth0/metadata.yaml +++ b/airbyte-integrations/connectors/source-auth0/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - "*.auth0.com" connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 6c504e48-14aa-4221-9a72-19cf5ff1ae78 - dockerImageTag: 0.6.1 + dockerImageTag: 0.6.2 dockerRepository: airbyte/source-auth0 documentationUrl: https://docs.airbyte.com/integrations/sources/auth0 githubIssueLabel: source-auth0 diff --git a/docs/integrations/sources/auth0.md b/docs/integrations/sources/auth0.md index c53455c87286..c6f4407af353 100644 --- a/docs/integrations/sources/auth0.md +++ b/docs/integrations/sources/auth0.md @@ -60,6 +60,7 @@ The connector is restricted by Auth0 [rate limits](https://auth0.com/docs/troubl | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------------------- | +| 0.6.2 | 2024-10-29 | [47807](https://github.com/airbytehq/airbyte/pull/47807) | Update dependencies | | 0.6.1 | 2024-10-28 | [47624](https://github.com/airbytehq/airbyte/pull/47624) | Update dependencies | | 0.6.0 | 2024-08-23 | [44590](https://github.com/airbytehq/airbyte/pull/44590) | Refactor connector to manifest-only format | | 0.5.16 | 2024-08-17 | [44211](https://github.com/airbytehq/airbyte/pull/44211) | Update dependencies | From 11bd036094225e8e9495ca15309e3835de74e479 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:32 +0200 Subject: [PATCH 298/808] =?UTF-8?q?=F0=9F=90=99=20source-squarespace:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47806)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-squarespace/metadata.yaml | 4 ++-- docs/integrations/sources/squarespace.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-squarespace/metadata.yaml b/airbyte-integrations/connectors/source-squarespace/metadata.yaml index b5c444e3fd49..428b14bcd3ed 100644 --- a/airbyte-integrations/connectors/source-squarespace/metadata.yaml +++ b/airbyte-integrations/connectors/source-squarespace/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-squarespace connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 861e1bde-0d7c-4f15-9f96-e845df8d3544 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-squarespace githubIssueLabel: source-squarespace icon: icon.svg diff --git a/docs/integrations/sources/squarespace.md b/docs/integrations/sources/squarespace.md index 9f27db6ad3c0..605cd3b9272e 100644 --- a/docs/integrations/sources/squarespace.md +++ b/docs/integrations/sources/squarespace.md @@ -25,6 +25,7 @@ The Squarespace connector enables seamless integration with your Squarespace sto | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47806](https://github.com/airbytehq/airbyte/pull/47806) | Update dependencies | | 0.0.1 | 2024-10-10 | | Initial release by [@avirajsingh7](https://github.com/avirajsingh7) via Connector Builder | From 504faf9984047847f09a741fecbb7967980cd999 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:35 +0200 Subject: [PATCH 299/808] =?UTF-8?q?=F0=9F=90=99=20source-open-exchange-rat?= =?UTF-8?q?es:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47805)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-open-exchange-rates/metadata.yaml | 4 ++-- docs/integrations/sources/open-exchange-rates.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml b/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml index 1d923ccbb12f..7df75371a218 100644 --- a/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml +++ b/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - openexchangerates.org connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 77d5ca6b-d345-4dce-ba1e-1935a75778b8 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-open-exchange-rates documentationUrl: https://docs.airbyte.com/integrations/sources/open-exchange-rates githubIssueLabel: source-open-exchange-rates diff --git a/docs/integrations/sources/open-exchange-rates.md b/docs/integrations/sources/open-exchange-rates.md index 490f13012a66..470baf98f249 100644 --- a/docs/integrations/sources/open-exchange-rates.md +++ b/docs/integrations/sources/open-exchange-rates.md @@ -48,6 +48,7 @@ If you have `free` subscription plan \(you may check it [here](https://openexcha | Version | Date | Pull Request | Subject | | :------ | :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.3 | 2024-10-29 | [47805](https://github.com/airbytehq/airbyte/pull/47805) | Update dependencies | | 0.3.2 | 2024-10-28 | [47452](https://github.com/airbytehq/airbyte/pull/47452) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44108](https://github.com/airbytehq/airbyte/pull/44108) | Refactor connector to manifest-only format | From 9044535cfe2f276b41d88359bd1ad802895f4357 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:38 +0200 Subject: [PATCH 300/808] =?UTF-8?q?=F0=9F=90=99=20source-coingecko-coins:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47804)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-coingecko-coins/metadata.yaml | 4 ++-- docs/integrations/sources/coingecko-coins.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml index b202e170f669..f05504629963 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml +++ b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml @@ -2,14 +2,14 @@ data: connectorSubtype: api connectorType: source definitionId: 9cdd4183-d0ba-40c3-aad3-6f46d4103974 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-coingecko-coins githubIssueLabel: source-coingecko-coins icon: coingeckocoins.svg license: MIT name: CoinGecko Coins connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa remoteRegistries: pypi: enabled: false diff --git a/docs/integrations/sources/coingecko-coins.md b/docs/integrations/sources/coingecko-coins.md index f0be98570777..545b1105d933 100644 --- a/docs/integrations/sources/coingecko-coins.md +++ b/docs/integrations/sources/coingecko-coins.md @@ -52,6 +52,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------- | +| 0.2.2 | 2024-10-29 | [47804](https://github.com/airbytehq/airbyte/pull/47804) | Update dependencies | | 0.2.1 | 2024-10-28 | [47559](https://github.com/airbytehq/airbyte/pull/47559) | Update dependencies | | 0.2.0 | 2024-08-22 | [44565](https://github.com/airbytehq/airbyte/pull/44565) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-17 | [44306](https://github.com/airbytehq/airbyte/pull/44306) | Update dependencies | From a1c966aaf5ce3111a828270af0cbb57af2921969 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:41 +0200 Subject: [PATCH 301/808] =?UTF-8?q?=F0=9F=90=99=20source-iterable:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47803)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-iterable/metadata.yaml | 2 +- .../connectors/source-iterable/poetry.lock | 12 ++++++------ .../connectors/source-iterable/pyproject.toml | 2 +- docs/integrations/sources/iterable.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-iterable/metadata.yaml b/airbyte-integrations/connectors/source-iterable/metadata.yaml index 36f4b4a80766..5ee3cd4149fb 100644 --- a/airbyte-integrations/connectors/source-iterable/metadata.yaml +++ b/airbyte-integrations/connectors/source-iterable/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2e875208-0c0b-4ee4-9e92-1cb3156ea799 - dockerImageTag: 0.6.16 + dockerImageTag: 0.6.17 dockerRepository: airbyte/source-iterable documentationUrl: https://docs.airbyte.com/integrations/sources/iterable githubIssueLabel: source-iterable diff --git a/airbyte-integrations/connectors/source-iterable/poetry.lock b/airbyte-integrations/connectors/source-iterable/poetry.lock index 52562a6406e4..7b8e55fff8f5 100644 --- a/airbyte-integrations/connectors/source-iterable/poetry.lock +++ b/airbyte-integrations/connectors/source-iterable/poetry.lock @@ -1562,23 +1562,23 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-iterable/pyproject.toml b/airbyte-integrations/connectors/source-iterable/pyproject.toml index cc1829ec4c99..65e924848656 100644 --- a/airbyte-integrations/connectors/source-iterable/pyproject.toml +++ b/airbyte-integrations/connectors/source-iterable/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.16" +version = "0.6.17" name = "source-iterable" description = "Source implementation for Iterable." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/iterable.md b/docs/integrations/sources/iterable.md index d2bb81ef599b..c6097195cbc8 100644 --- a/docs/integrations/sources/iterable.md +++ b/docs/integrations/sources/iterable.md @@ -83,6 +83,7 @@ The Iterable source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0.6.17 | 2024-10-29 | [47803](https://github.com/airbytehq/airbyte/pull/47803) | Update dependencies | | 0.6.16 | 2024-10-28 | [47487](https://github.com/airbytehq/airbyte/pull/47487) | Update dependencies | | 0.6.15 | 2024-10-23 | [47057](https://github.com/airbytehq/airbyte/pull/47057) | Update dependencies | | 0.6.14 | 2024-10-12 | [46814](https://github.com/airbytehq/airbyte/pull/46814) | Update dependencies | From d331c779ab3e984ee061b9984267ef3aa373402a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:45 +0200 Subject: [PATCH 302/808] =?UTF-8?q?=F0=9F=90=99=20source-zendesk-sunshine:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47802)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zendesk-sunshine/metadata.yaml | 2 +- .../connectors/source-zendesk-sunshine/poetry.lock | 12 ++++++------ .../source-zendesk-sunshine/pyproject.toml | 2 +- docs/integrations/sources/zendesk-sunshine.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml index d361d73ebb6b..b256f0f5a1e9 100644 --- a/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 325e0640-e7b3-4e24-b823-3361008f603f - dockerImageTag: 0.2.25 + dockerImageTag: 0.2.26 dockerRepository: airbyte/source-zendesk-sunshine documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-sunshine githubIssueLabel: source-zendesk-sunshine diff --git a/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock b/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock index a200e9d74ec8..43a15cee8460 100644 --- a/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock +++ b/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock @@ -884,23 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml b/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml index dcb4b961f795..272f3551409b 100644 --- a/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml +++ b/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.25" +version = "0.2.26" name = "source-zendesk-sunshine" description = "Source implementation for Zendesk Sunshine." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zendesk-sunshine.md b/docs/integrations/sources/zendesk-sunshine.md index 87b00d2e0c1c..0bfedd14d776 100644 --- a/docs/integrations/sources/zendesk-sunshine.md +++ b/docs/integrations/sources/zendesk-sunshine.md @@ -68,6 +68,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.26 | 2024-10-29 | [47802](https://github.com/airbytehq/airbyte/pull/47802) | Update dependencies | | 0.2.25 | 2024-10-28 | [47066](https://github.com/airbytehq/airbyte/pull/47066) | Update dependencies | | 0.2.24 | 2024-10-12 | [46784](https://github.com/airbytehq/airbyte/pull/46784) | Update dependencies | | 0.2.23 | 2024-10-05 | [46486](https://github.com/airbytehq/airbyte/pull/46486) | Update dependencies | From 12ad1089f8035d1c35419999bdf977bf4e8d8744 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:48 +0200 Subject: [PATCH 303/808] =?UTF-8?q?=F0=9F=90=99=20source-wrike:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47801)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-wrike/metadata.yaml | 4 ++-- docs/integrations/sources/wrike.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-wrike/metadata.yaml b/airbyte-integrations/connectors/source-wrike/metadata.yaml index b46e363ec2ca..7b9488d276b4 100644 --- a/airbyte-integrations/connectors/source-wrike/metadata.yaml +++ b/airbyte-integrations/connectors/source-wrike/metadata.yaml @@ -5,7 +5,7 @@ data: - app-eu*.wrike.com - www.wrike.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa remoteRegistries: pypi: enabled: false @@ -18,7 +18,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9c13f986-a13b-4988-b808-4705badf71c2 - dockerImageTag: 0.3.3 + dockerImageTag: 0.3.4 dockerRepository: airbyte/source-wrike githubIssueLabel: source-wrike icon: wrike.svg diff --git a/docs/integrations/sources/wrike.md b/docs/integrations/sources/wrike.md index 5ae6044b94b5..88b435b1d522 100644 --- a/docs/integrations/sources/wrike.md +++ b/docs/integrations/sources/wrike.md @@ -50,6 +50,7 @@ The Wrike connector should not run into Wrike API limitations under normal usage | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:-----------------------------------------------------------------------| +| 0.3.4 | 2024-10-29 | [47801](https://github.com/airbytehq/airbyte/pull/47801) | Update dependencies | | 0.3.3 | 2024-10-28 | [47668](https://github.com/airbytehq/airbyte/pull/47668) | Update dependencies | | 0.3.2 | 2024-10-22 | [47234](https://github.com/airbytehq/airbyte/pull/47234) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | From b277b57e18344414a6c56b035a583f8eb8ddb7e7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:51 +0200 Subject: [PATCH 304/808] =?UTF-8?q?=F0=9F=90=99=20source-oura:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47800)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-oura/metadata.yaml | 4 ++-- docs/integrations/sources/oura.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-oura/metadata.yaml b/airbyte-integrations/connectors/source-oura/metadata.yaml index eaba1395ae73..ffd8db94318b 100644 --- a/airbyte-integrations/connectors/source-oura/metadata.yaml +++ b/airbyte-integrations/connectors/source-oura/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 2bf6c581-bec5-4e32-891d-de33036bd631 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-oura githubIssueLabel: source-oura icon: oura.svg diff --git a/docs/integrations/sources/oura.md b/docs/integrations/sources/oura.md index 9a85e54aa158..f7e80d137554 100644 --- a/docs/integrations/sources/oura.md +++ b/docs/integrations/sources/oura.md @@ -56,6 +56,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------| +| 0.2.2 | 2024-10-29 | [47800](https://github.com/airbytehq/airbyte/pull/47800) | Update dependencies | | 0.2.1 | 2024-10-28 | [47576](https://github.com/airbytehq/airbyte/pull/47576) | Update dependencies | | 0.2.0 | 2024-08-19 | [44409](https://github.com/airbytehq/airbyte/pull/44409) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-17 | [44271](https://github.com/airbytehq/airbyte/pull/44271) | Update dependencies | From 11c37d39eab63fc906501d7f41e2f780c65aed05 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:54 +0200 Subject: [PATCH 305/808] =?UTF-8?q?=F0=9F=90=99=20source-justcall:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47799)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-justcall/metadata.yaml | 4 ++-- docs/integrations/sources/justcall.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-justcall/metadata.yaml b/airbyte-integrations/connectors/source-justcall/metadata.yaml index f54df2b583ff..dbf857ce5a44 100644 --- a/airbyte-integrations/connectors/source-justcall/metadata.yaml +++ b/airbyte-integrations/connectors/source-justcall/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-justcall connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 488cdc64-36cd-451d-bcfa-c6478b461e94 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-justcall githubIssueLabel: source-justcall icon: icon.svg diff --git a/docs/integrations/sources/justcall.md b/docs/integrations/sources/justcall.md index aef62947623b..973ac9073846 100644 --- a/docs/integrations/sources/justcall.md +++ b/docs/integrations/sources/justcall.md @@ -25,6 +25,7 @@ JustCall connector enables seamless data integration by syncing call logs, conta | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47799](https://github.com/airbytehq/airbyte/pull/47799) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 988850de19af35165293d0a354dd6a4669ddd031 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:08:57 +0200 Subject: [PATCH 306/808] =?UTF-8?q?=F0=9F=90=99=20source-zapier-supported-?= =?UTF-8?q?storage:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47798?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zapier-supported-storage/metadata.yaml | 4 ++-- docs/integrations/sources/zapier-supported-storage.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml b/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml index 933b596253f8..c364bfef73d8 100644 --- a/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml +++ b/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: b8c917bc-7d1b-4828-995f-6726820266d0 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-zapier-supported-storage documentationUrl: https://docs.airbyte.com/integrations/sources/zapier-supported-storage githubIssueLabel: source-zapier-supported-storage diff --git a/docs/integrations/sources/zapier-supported-storage.md b/docs/integrations/sources/zapier-supported-storage.md index ec0dc39aa983..a355ad149ebc 100644 --- a/docs/integrations/sources/zapier-supported-storage.md +++ b/docs/integrations/sources/zapier-supported-storage.md @@ -25,6 +25,7 @@ The Zapier Supported Storage Connector can be used to sync your [Zapier](https:/ | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------| | +| 0.2.3 | 2024-10-29 | [47798](https://github.com/airbytehq/airbyte/pull/47798) | Update dependencies | | 0.2.2 | 2024-10-28 | [47614](https://github.com/airbytehq/airbyte/pull/47614) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-09 | [43447](https://github.com/airbytehq/airbyte/pull/43447) | Refactor connector to manifest-only format | From 9de5908748bc7515f93051946067fbb41ae3be7c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:00 +0200 Subject: [PATCH 307/808] =?UTF-8?q?=F0=9F=90=99=20source-klaviyo:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47797)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-klaviyo/metadata.yaml | 2 +- .../connectors/source-klaviyo/poetry.lock | 12 ++++++------ .../connectors/source-klaviyo/pyproject.toml | 2 +- docs/integrations/sources/klaviyo.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-klaviyo/metadata.yaml b/airbyte-integrations/connectors/source-klaviyo/metadata.yaml index 55550e9059a2..97109a3b31ab 100644 --- a/airbyte-integrations/connectors/source-klaviyo/metadata.yaml +++ b/airbyte-integrations/connectors/source-klaviyo/metadata.yaml @@ -8,7 +8,7 @@ data: definitionId: 95e8cffd-b8c4-4039-968e-d32fb4a69bde connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 - dockerImageTag: 2.10.11 + dockerImageTag: 2.10.12 dockerRepository: airbyte/source-klaviyo githubIssueLabel: source-klaviyo icon: klaviyo.svg diff --git a/airbyte-integrations/connectors/source-klaviyo/poetry.lock b/airbyte-integrations/connectors/source-klaviyo/poetry.lock index 0c896ff2d655..500809e88eb6 100644 --- a/airbyte-integrations/connectors/source-klaviyo/poetry.lock +++ b/airbyte-integrations/connectors/source-klaviyo/poetry.lock @@ -1527,23 +1527,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-klaviyo/pyproject.toml b/airbyte-integrations/connectors/source-klaviyo/pyproject.toml index 5041890ac929..93ce160d465b 100644 --- a/airbyte-integrations/connectors/source-klaviyo/pyproject.toml +++ b/airbyte-integrations/connectors/source-klaviyo/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.10.11" +version = "2.10.12" name = "source-klaviyo" description = "Source implementation for Klaviyo." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/klaviyo.md b/docs/integrations/sources/klaviyo.md index 25f4474d3376..d91502730910 100644 --- a/docs/integrations/sources/klaviyo.md +++ b/docs/integrations/sources/klaviyo.md @@ -95,6 +95,7 @@ contain the `predictive_analytics` field and workflows depending on this field w | Version | Date | Pull Request | Subject | |:--------|:-----------|:-----------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------| +| 2.10.12 | 2024-10-29 | [47797](https://github.com/airbytehq/airbyte/pull/47797) | Update dependencies | | 2.10.11 | 2024-10-28 | [47043](https://github.com/airbytehq/airbyte/pull/47043) | Update dependencies | | 2.10.10 | 2024-10-14 | [46741](https://github.com/airbytehq/airbyte/pull/46741) | Add checkpointing to events stream to improve large syncs after clear data | | 2.10.9 | 2024-10-12 | [46787](https://github.com/airbytehq/airbyte/pull/46787) | Update dependencies | From 4ecdf2788a352d92154881649aead3eecc68b57a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:06 +0200 Subject: [PATCH 308/808] =?UTF-8?q?=F0=9F=90=99=20source-whisky-hunter:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47795)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-whisky-hunter/metadata.yaml | 4 ++-- docs/integrations/sources/whisky-hunter.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml b/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml index da7d6fb3ed64..8c00cdbe34c2 100644 --- a/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml +++ b/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: e65f84c0-7598-458a-bfac-f770c381ff5d - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-whisky-hunter githubIssueLabel: source-whisky-hunter icon: whiskyhunter.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/whisky-hunter.md b/docs/integrations/sources/whisky-hunter.md index 56e04f3af44a..1b342cdf4307 100644 --- a/docs/integrations/sources/whisky-hunter.md +++ b/docs/integrations/sources/whisky-hunter.md @@ -38,6 +38,7 @@ There is no published rate limit. However, since this data updates infrequently, | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------- | +| 0.2.3 | 2024-10-29 | [47795](https://github.com/airbytehq/airbyte/pull/47795) | Update dependencies | | 0.2.2 | 2024-10-28 | [47555](https://github.com/airbytehq/airbyte/pull/47555) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44045](https://github.com/airbytehq/airbyte/pull/44045) | Refactor connector to manifest-only format | From d4cd5d657fa7dfbd1a114f76ccc30ffc763f5505 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:10 +0200 Subject: [PATCH 309/808] =?UTF-8?q?=F0=9F=90=99=20source-fullstory:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47794)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-fullstory/metadata.yaml | 4 ++-- docs/integrations/sources/fullstory.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-fullstory/metadata.yaml b/airbyte-integrations/connectors/source-fullstory/metadata.yaml index 7543deec85b2..144c7a90e18d 100644 --- a/airbyte-integrations/connectors/source-fullstory/metadata.yaml +++ b/airbyte-integrations/connectors/source-fullstory/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 263fd456-02d1-4a26-a35e-52ccaedad778 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-fullstory githubIssueLabel: source-fullstory icon: fullstory.svg @@ -37,5 +37,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/fullstory.md b/docs/integrations/sources/fullstory.md index e218dd253d6e..4ce6533b75b8 100644 --- a/docs/integrations/sources/fullstory.md +++ b/docs/integrations/sources/fullstory.md @@ -73,6 +73,7 @@ FullStory [API reference](https://api.fullstory.com) has v1 at present. The conn | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------- | :------------- | +| 0.2.1 | 2024-10-29 | [47794](https://github.com/airbytehq/airbyte/pull/47794) | Update dependencies | | 0.2.0 | 2024-08-23 | [44612](https://github.com/airbytehq/airbyte/pull/44612) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-17 | [44222](https://github.com/airbytehq/airbyte/pull/44222) | Update dependencies | | 0.1.13 | 2024-08-12 | [43781](https://github.com/airbytehq/airbyte/pull/43781) | Update dependencies | From afa5120e290ad85c2e54e96d022056612441685e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:16 +0200 Subject: [PATCH 310/808] =?UTF-8?q?=F0=9F=90=99=20source-openweather:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47791)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-openweather/metadata.yaml | 4 ++-- docs/integrations/sources/openweather.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-openweather/metadata.yaml b/airbyte-integrations/connectors/source-openweather/metadata.yaml index 352ba1918149..60cd633a95d3 100644 --- a/airbyte-integrations/connectors/source-openweather/metadata.yaml +++ b/airbyte-integrations/connectors/source-openweather/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - api.openweathermap.org connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.4@sha256:b07a521add11f987c63c0db68c1b57e90bec0c985f1cb6f3c5a1940cde628a70 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 561d7787-b45e-4f3b-af58-0163c3ba9d5a - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-openweather documentationUrl: https://docs.airbyte.com/integrations/sources/openweather githubIssueLabel: source-openweather diff --git a/docs/integrations/sources/openweather.md b/docs/integrations/sources/openweather.md index 76f2b2bb8d86..ba98bb81af9c 100644 --- a/docs/integrations/sources/openweather.md +++ b/docs/integrations/sources/openweather.md @@ -38,6 +38,7 @@ The free plan allows 60 calls per minute and 1,000,000 calls per month, you won' | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.2 | 2024-10-29 | [47791](https://github.com/airbytehq/airbyte/pull/47791) | Update dependencies | | 0.3.1 | 2024-10-08 | [46652](https://github.com/airbytehq/airbyte/pull/46652) | Fix longitude regex matching | | 0.3.0 | 2024-08-26 | [44772](https://github.com/airbytehq/airbyte/pull/44772) | Refactor connector to manifest-only format | | 0.2.17 | 2024-08-24 | [44725](https://github.com/airbytehq/airbyte/pull/44725) | Update dependencies | From a8b7b2119193fafd0cb2eb5830d672811840f4fb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:21 +0200 Subject: [PATCH 311/808] =?UTF-8?q?=F0=9F=90=99=20source-height:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47790)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-height/metadata.yaml | 4 ++-- docs/integrations/sources/height.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-height/metadata.yaml b/airbyte-integrations/connectors/source-height/metadata.yaml index 6cfe28561af9..1c427d116201 100644 --- a/airbyte-integrations/connectors/source-height/metadata.yaml +++ b/airbyte-integrations/connectors/source-height/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-height connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 8f4b2d64-970a-4a6f-b316-3d1144c67be8 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-height githubIssueLabel: source-height icon: icon.svg diff --git a/docs/integrations/sources/height.md b/docs/integrations/sources/height.md index 1ee1a23c80c0..fca1d71b76e0 100644 --- a/docs/integrations/sources/height.md +++ b/docs/integrations/sources/height.md @@ -37,6 +37,7 @@ API Documentation: https://height.notion.site/API-documentation-643aea5bf01742de | Version | Date | Pull Request | Subject | | ------------------ | ------------ | ---- | ---------------- | +| 0.0.3 | 2024-10-29 | [47790](https://github.com/airbytehq/airbyte/pull/47790) | Update dependencies | | 0.0.2 | 2024-10-28 | [47615](https://github.com/airbytehq/airbyte/pull/47615) | Update dependencies | | 0.0.1 | 2024-08-31 | [45065](https://github.com/airbytehq/airbyte/pull/45065) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From e02643fc2f47ecaafae21449ee6799c1c4e7539d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:26 +0200 Subject: [PATCH 312/808] =?UTF-8?q?=F0=9F=90=99=20source-my-hours:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47787)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-my-hours/metadata.yaml | 4 ++-- docs/integrations/sources/my-hours.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-my-hours/metadata.yaml b/airbyte-integrations/connectors/source-my-hours/metadata.yaml index 2de07626c955..2bc0e3fa7cf5 100644 --- a/airbyte-integrations/connectors/source-my-hours/metadata.yaml +++ b/airbyte-integrations/connectors/source-my-hours/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 722ba4bf-06ec-45a4-8dd5-72e4a5cf3903 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-my-hours githubIssueLabel: source-my-hours icon: my-hours.svg diff --git a/docs/integrations/sources/my-hours.md b/docs/integrations/sources/my-hours.md index 3b8febede677..d6b89f1f81f5 100644 --- a/docs/integrations/sources/my-hours.md +++ b/docs/integrations/sources/my-hours.md @@ -36,6 +36,7 @@ Depending on the amount of team members and time logs the source provides a prop | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------- | +| 0.3.2 | 2024-10-29 | [47787](https://github.com/airbytehq/airbyte/pull/47787) | Update dependencies | | 0.3.1 | 2024-10-28 | [47095](https://github.com/airbytehq/airbyte/pull/47095) | Update dependencies | | 0.3.0 | 2024-10-19 | [47012](https://github.com/airbytehq/airbyte/pull/47012) | Migrate to manifest only format | | 0.2.20 | 2024-10-12 | [46852](https://github.com/airbytehq/airbyte/pull/46852) | Update dependencies | From 7792f794d69d0752902d108ceaf53ee987047329 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:31 +0200 Subject: [PATCH 313/808] =?UTF-8?q?=F0=9F=90=99=20source-mailersend:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47785)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailersend/metadata.yaml | 4 ++-- docs/integrations/sources/mailersend.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailersend/metadata.yaml b/airbyte-integrations/connectors/source-mailersend/metadata.yaml index 5b00bed3da9e..c5259fd0fecb 100644 --- a/airbyte-integrations/connectors/source-mailersend/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailersend/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2707d529-3c04-46eb-9c7e-40d4038df6f7 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-mailersend githubIssueLabel: source-mailersend icon: mailersend.svg @@ -38,5 +38,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/mailersend.md b/docs/integrations/sources/mailersend.md index e71d1d0b91eb..81a16d844bda 100644 --- a/docs/integrations/sources/mailersend.md +++ b/docs/integrations/sources/mailersend.md @@ -28,6 +28,7 @@ MailerSend has a default [rate limit](https://developers.mailersend.com/general. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------- | +| 0.2.2 | 2024-10-29 | [47785](https://github.com/airbytehq/airbyte/pull/47785) | Update dependencies | | 0.2.1 | 2024-10-28 | [47592](https://github.com/airbytehq/airbyte/pull/47592) | Update dependencies | | 0.2.0 | 2024-08-26 | [44766](https://github.com/airbytehq/airbyte/pull/44766) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-24 | [44697](https://github.com/airbytehq/airbyte/pull/44697) | Update dependencies | From cbac08459f0590b94a62d9c097f1241f5d1161d4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:36 +0200 Subject: [PATCH 314/808] =?UTF-8?q?=F0=9F=90=99=20source-intruder:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47784)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-intruder/metadata.yaml | 4 ++-- docs/integrations/sources/intruder.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-intruder/metadata.yaml b/airbyte-integrations/connectors/source-intruder/metadata.yaml index e388c71b72b8..0ec31804e039 100644 --- a/airbyte-integrations/connectors/source-intruder/metadata.yaml +++ b/airbyte-integrations/connectors/source-intruder/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3d15163b-11d8-412f-b808-795c9b2c3a3a - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-intruder githubIssueLabel: source-intruder icon: intruder.svg @@ -39,5 +39,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/intruder.md b/docs/integrations/sources/intruder.md index fc02a4169980..226dae2cad06 100644 --- a/docs/integrations/sources/intruder.md +++ b/docs/integrations/sources/intruder.md @@ -35,6 +35,7 @@ Intruder.io APIs are under rate limits for the number of API calls allowed per A | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | +| 0.2.3 | 2024-10-29 | [47784](https://github.com/airbytehq/airbyte/pull/47784) | Update dependencies | | 0.2.2 | 2024-10-28 | [47655](https://github.com/airbytehq/airbyte/pull/47655) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44139](https://github.com/airbytehq/airbyte/pull/44139) | Refactor connector to manifest-only format | From 236c6639ca520c909a25d6d4fb4299037d4454e7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:45 +0200 Subject: [PATCH 315/808] =?UTF-8?q?=F0=9F=90=99=20destination-firebolt:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47780)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-firebolt/metadata.yaml | 2 +- .../connectors/destination-firebolt/poetry.lock | 12 ++++++------ .../connectors/destination-firebolt/pyproject.toml | 2 +- docs/integrations/destinations/firebolt.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-firebolt/metadata.yaml b/airbyte-integrations/connectors/destination-firebolt/metadata.yaml index 13dc80051bec..386e3d0b89d8 100644 --- a/airbyte-integrations/connectors/destination-firebolt/metadata.yaml +++ b/airbyte-integrations/connectors/destination-firebolt/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 18081484-02a5-4662-8dba-b270b582f321 - dockerImageTag: 0.2.23 + dockerImageTag: 0.2.24 dockerRepository: airbyte/destination-firebolt githubIssueLabel: destination-firebolt connectorBuildOptions: diff --git a/airbyte-integrations/connectors/destination-firebolt/poetry.lock b/airbyte-integrations/connectors/destination-firebolt/poetry.lock index aa7cb96b59dd..fc2f82b5ee83 100644 --- a/airbyte-integrations/connectors/destination-firebolt/poetry.lock +++ b/airbyte-integrations/connectors/destination-firebolt/poetry.lock @@ -1353,23 +1353,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-firebolt/pyproject.toml b/airbyte-integrations/connectors/destination-firebolt/pyproject.toml index 3611c658bac2..69eef1c97b77 100644 --- a/airbyte-integrations/connectors/destination-firebolt/pyproject.toml +++ b/airbyte-integrations/connectors/destination-firebolt/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.23" +version = "0.2.24" name = "destination-firebolt" description = "Destination implementation for Firebolt." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/firebolt.md b/docs/integrations/destinations/firebolt.md index 2de9d03c123f..a68978a297bd 100644 --- a/docs/integrations/destinations/firebolt.md +++ b/docs/integrations/destinations/firebolt.md @@ -98,6 +98,7 @@ Firebolt. Each table will contain 3 columns: | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- | :------------------------------------- | +| 0.2.24 | 2024-10-29 | [47780](https://github.com/airbytehq/airbyte/pull/47780) | Update dependencies | | 0.2.23 | 2024-10-28 | [47100](https://github.com/airbytehq/airbyte/pull/47100) | Update dependencies | | 0.2.22 | 2024-10-12 | [46841](https://github.com/airbytehq/airbyte/pull/46841) | Update dependencies | | 0.2.21 | 2024-10-05 | [46420](https://github.com/airbytehq/airbyte/pull/46420) | Update dependencies | From d4806780eec3ab315ef0b169aa2436cf2fe3635b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:48 +0200 Subject: [PATCH 316/808] =?UTF-8?q?=F0=9F=90=99=20source-the-guardian-api:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47779)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-the-guardian-api/metadata.yaml | 4 ++-- docs/integrations/sources/the-guardian-api.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml b/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml index 9724e75e19ff..a40bacaa082c 100644 --- a/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml @@ -3,7 +3,7 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorTestSuitesOptions: - suite: liveTests @@ -19,7 +19,7 @@ data: type: GSM connectorType: source definitionId: d42bd69f-6bf0-4d0b-9209-16231af07a92 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-the-guardian-api documentationUrl: https://docs.airbyte.com/integrations/sources/the-guardian-api githubIssueLabel: source-the-guardian-api diff --git a/docs/integrations/sources/the-guardian-api.md b/docs/integrations/sources/the-guardian-api.md index 889540604e29..826490ee0995 100644 --- a/docs/integrations/sources/the-guardian-api.md +++ b/docs/integrations/sources/the-guardian-api.md @@ -113,6 +113,7 @@ The key that you are assigned is rate-limited and as such any applications that | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------- | +| 0.2.2 | 2024-10-29 | [47779](https://github.com/airbytehq/airbyte/pull/47779) | Update dependencies | | 0.2.1 | 2024-10-28 | [47456](https://github.com/airbytehq/airbyte/pull/47456) | Update dependencies | | 0.2.0 | 2024-09-06 | [45195](https://github.com/airbytehq/airbyte/pull/45195) | Refactor connector to manifest-only format | | 0.1.9 | 2024-08-31 | [44997](https://github.com/airbytehq/airbyte/pull/44997) | Update dependencies | From e36a1786f6159f36a4977fe5a970c8e880c3c20e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:52 +0200 Subject: [PATCH 317/808] =?UTF-8?q?=F0=9F=90=99=20source-planhat:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47778)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-planhat/metadata.yaml | 4 ++-- docs/integrations/sources/planhat.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-planhat/metadata.yaml b/airbyte-integrations/connectors/source-planhat/metadata.yaml index 58b8091004cf..14ad2ec83177 100644 --- a/airbyte-integrations/connectors/source-planhat/metadata.yaml +++ b/airbyte-integrations/connectors/source-planhat/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-planhat connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 03fdd212-bd09-4e7b-b472-5b8f1b73969b - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-planhat githubIssueLabel: source-planhat icon: icon.svg diff --git a/docs/integrations/sources/planhat.md b/docs/integrations/sources/planhat.md index 6c65fb12c34f..230586382953 100644 --- a/docs/integrations/sources/planhat.md +++ b/docs/integrations/sources/planhat.md @@ -54,6 +54,7 @@ This Source is capable of syncing the following core Streams: | Version | Date | Pull Request | Subject | | ------- | ---------- | ------------ | ---------------------------------------------------- | +| 0.0.4 | 2024-10-29 | [47778](https://github.com/airbytehq/airbyte/pull/47778) | Update dependencies | | 0.0.3 | 2024-10-28 | [47625](https://github.com/airbytehq/airbyte/pull/47625) | Update dependencies | | 0.0.2 | 2024-09-30 | [46271](https://github.com/airbytehq/airbyte/pull/46271) | Documentation update | | 0.0.1 | 2024-08-22 | | Initial release by natikgadzhi via Connector Builder | From 1cbbea9f60f82e4a5b073a0564f4a941d6d1d90b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:55 +0200 Subject: [PATCH 318/808] =?UTF-8?q?=F0=9F=90=99=20source-simplecast:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47777)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-simplecast/metadata.yaml | 4 ++-- docs/integrations/sources/simplecast.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-simplecast/metadata.yaml b/airbyte-integrations/connectors/source-simplecast/metadata.yaml index 3faa491b5a1d..7e002aceb295 100644 --- a/airbyte-integrations/connectors/source-simplecast/metadata.yaml +++ b/airbyte-integrations/connectors/source-simplecast/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-simplecast connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 776ca64c-95eb-47ec-a54d-9db3d16435d0 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-simplecast githubIssueLabel: source-simplecast icon: icon.svg diff --git a/docs/integrations/sources/simplecast.md b/docs/integrations/sources/simplecast.md index 692d93e842e3..0e6c1e965996 100644 --- a/docs/integrations/sources/simplecast.md +++ b/docs/integrations/sources/simplecast.md @@ -27,6 +27,7 @@ Say hello to the modern end-to-end podcasting platform. Simplecast remains the e | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47777](https://github.com/airbytehq/airbyte/pull/47777) | Update dependencies | | 0.0.2 | 2024-10-28 | [47571](https://github.com/airbytehq/airbyte/pull/47571) | Update dependencies | | 0.0.1 | 2024-10-03 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From ac34e9dafa51f73e0e8fcb36179c2f1adf921ccb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:09:58 +0200 Subject: [PATCH 319/808] =?UTF-8?q?=F0=9F=90=99=20source-metabase:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47776)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-metabase/metadata.yaml | 4 ++-- docs/integrations/sources/metabase.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-metabase/metadata.yaml b/airbyte-integrations/connectors/source-metabase/metadata.yaml index 69ad256faa5a..7427fa517248 100644 --- a/airbyte-integrations/connectors/source-metabase/metadata.yaml +++ b/airbyte-integrations/connectors/source-metabase/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - "*" connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: c7cb421b-942e-4468-99ee-e369bcabaec5 - dockerImageTag: 2.1.2 + dockerImageTag: 2.1.3 dockerRepository: airbyte/source-metabase documentationUrl: https://docs.airbyte.com/integrations/sources/metabase githubIssueLabel: source-metabase diff --git a/docs/integrations/sources/metabase.md b/docs/integrations/sources/metabase.md index 167128b43837..323fcd44f87b 100644 --- a/docs/integrations/sources/metabase.md +++ b/docs/integrations/sources/metabase.md @@ -77,6 +77,7 @@ The Metabase source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------- | +| 2.1.3 | 2024-10-29 | [47776](https://github.com/airbytehq/airbyte/pull/47776) | Update dependencies | | 2.1.2 | 2024-10-28 | [47531](https://github.com/airbytehq/airbyte/pull/47531) | Update dependencies | | 2.1.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 2.1.0 | 2024-08-15 | [44127](https://github.com/airbytehq/airbyte/pull/44127) | Refactor connector to manifest-only format | From e2740fbe466a041c2b9bd7458b0e52b871ba6e36 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:03 +0200 Subject: [PATCH 320/808] =?UTF-8?q?=F0=9F=90=99=20source-sap-fieldglass:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47775)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sap-fieldglass/metadata.yaml | 4 ++-- docs/integrations/sources/sap-fieldglass.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml b/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml index 99eb3f0155b6..240088f977db 100644 --- a/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml +++ b/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ec5f3102-fb31-4916-99ae-864faf8e7e25 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-sap-fieldglass githubIssueLabel: source-sap-fieldglass icon: sapfieldglass.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/sap-fieldglass.md b/docs/integrations/sources/sap-fieldglass.md index 591b9b5201dd..591a86b6de15 100644 --- a/docs/integrations/sources/sap-fieldglass.md +++ b/docs/integrations/sources/sap-fieldglass.md @@ -25,6 +25,7 @@ This page contains the setup guide and reference information for the SAP Fieldgl | Version | Date | Pull Request | Subject | | :------ | :--------- | :---------------------------------------------- |:--------------------------------------------| +| 0.2.3 | 2024-10-29 | [47775](https://github.com/airbytehq/airbyte/pull/47775) | Update dependencies | | 0.2.2 | 2024-10-28 | [47583](https://github.com/airbytehq/airbyte/pull/47583) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44075](https://github.com/airbytehq/airbyte/pull/44075) | Refactor connector to manifest-only format | From 5b1a5d2b75752473423c9610d9ca5fc241453558 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:07 +0200 Subject: [PATCH 321/808] =?UTF-8?q?=F0=9F=90=99=20source-productboard:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47774)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-productboard/metadata.yaml | 4 ++-- docs/integrations/sources/productboard.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-productboard/metadata.yaml b/airbyte-integrations/connectors/source-productboard/metadata.yaml index 5bd9f8994a03..5a08a2ad68e2 100644 --- a/airbyte-integrations/connectors/source-productboard/metadata.yaml +++ b/airbyte-integrations/connectors/source-productboard/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-productboard connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 43ae66ee-e3df-4fb7-bff5-9625d25cdc14 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-productboard githubIssueLabel: source-productboard icon: icon.svg diff --git a/docs/integrations/sources/productboard.md b/docs/integrations/sources/productboard.md index 5104826ac9d4..7437998bd922 100644 --- a/docs/integrations/sources/productboard.md +++ b/docs/integrations/sources/productboard.md @@ -36,6 +36,7 @@ A manifest only source for Productboard. https://www.productboard.com/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| +| 0.0.3 | 2024-10-29 | [47774](https://github.com/airbytehq/airbyte/pull/47774) | Update dependencies | | 0.0.2 | 2024-10-28 | [47677](https://github.com/airbytehq/airbyte/pull/47677) | Update dependencies | | 0.0.1 | 2024-09-13 | [45449](https://github.com/airbytehq/airbyte/pull/45449) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | From 145be96f716072fabacc1b6adcd9540542dbc537 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:12 +0200 Subject: [PATCH 322/808] =?UTF-8?q?=F0=9F=90=99=20source-gocardless:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47772)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gocardless/metadata.yaml | 4 ++-- docs/integrations/sources/gocardless.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-gocardless/metadata.yaml b/airbyte-integrations/connectors/source-gocardless/metadata.yaml index ba67ef867120..c57e56750300 100644 --- a/airbyte-integrations/connectors/source-gocardless/metadata.yaml +++ b/airbyte-integrations/connectors/source-gocardless/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ba15ac82-5c6a-4fb2-bf24-925c23a1180c - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-gocardless githubIssueLabel: source-gocardless icon: gocardless.svg @@ -27,5 +27,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/gocardless.md b/docs/integrations/sources/gocardless.md index 95ba84340cec..b6a98f4ea226 100644 --- a/docs/integrations/sources/gocardless.md +++ b/docs/integrations/sources/gocardless.md @@ -35,7 +35,8 @@ This source is capable of syncing the following streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-29 | [47772](https://github.com/airbytehq/airbyte/pull/47772) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44145](https://github.com/airbytehq/airbyte/pull/44145) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43840](https://github.com/airbytehq/airbyte/pull/43840) | Update dependencies | | 0.1.13 | 2024-08-10 | [43706](https://github.com/airbytehq/airbyte/pull/43706) | Update dependencies | From d8c8f2a2327bfe745cc6bc109e5722c5edeb9001 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:15 +0200 Subject: [PATCH 323/808] =?UTF-8?q?=F0=9F=90=99=20source-appcues:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47771)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-appcues/metadata.yaml | 4 ++-- docs/integrations/sources/appcues.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-appcues/metadata.yaml b/airbyte-integrations/connectors/source-appcues/metadata.yaml index 589340f2b005..ffc816002634 100644 --- a/airbyte-integrations/connectors/source-appcues/metadata.yaml +++ b/airbyte-integrations/connectors/source-appcues/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-appcues connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 3bab735a-e108-4c94-ab3f-414e3447b409 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-appcues githubIssueLabel: source-appcues icon: icon.svg diff --git a/docs/integrations/sources/appcues.md b/docs/integrations/sources/appcues.md index e1e19ca1069d..ebf33618d422 100644 --- a/docs/integrations/sources/appcues.md +++ b/docs/integrations/sources/appcues.md @@ -45,6 +45,7 @@ To set up the Appcues source connector, you'll need your Appcues [`API Key` and | Version | Date | Pull Request | Subject | | ------------------ | ------------ | ----- | ---------------- | +| 0.0.2 | 2024-10-29 | [47771](https://github.com/airbytehq/airbyte/pull/47771) | Update dependencies | | 0.0.1 | 2024-09-03 | [45102](https://github.com/airbytehq/airbyte/pull/45102) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 8fc57bce0a354dc215e2178519118da09d5cd881 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:20 +0200 Subject: [PATCH 324/808] =?UTF-8?q?=F0=9F=90=99=20source-captain-data:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47769)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-captain-data/metadata.yaml | 4 ++-- docs/integrations/sources/captain-data.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-captain-data/metadata.yaml b/airbyte-integrations/connectors/source-captain-data/metadata.yaml index 06ad0051d52e..6feb52aee37d 100644 --- a/airbyte-integrations/connectors/source-captain-data/metadata.yaml +++ b/airbyte-integrations/connectors/source-captain-data/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: fa290790-1dca-43e7-8ced-6a40b2a66099 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-captain-data githubIssueLabel: source-captain-data icon: captain-data.svg @@ -27,5 +27,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/captain-data.md b/docs/integrations/sources/captain-data.md index 766ee5df74de..7950fc64d4e8 100644 --- a/docs/integrations/sources/captain-data.md +++ b/docs/integrations/sources/captain-data.md @@ -65,6 +65,7 @@ Captain Data [API reference](https://docs.captaindata.co/#intro) has v3 at prese | Version | Date | Pull Request | Subject | | :------ |:-----------| :------------------------------------------------------ |:--------------------------------------------| +| 0.2.1 | 2024-10-29 | [47769](https://github.com/airbytehq/airbyte/pull/47769) | Update dependencies | | 0.2.0 | 2024-08-19 | [44419](https://github.com/airbytehq/airbyte/pull/44419) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-17 | [44340](https://github.com/airbytehq/airbyte/pull/44340) | Update dependencies | | 0.1.14 | 2024-08-12 | [43919](https://github.com/airbytehq/airbyte/pull/43919) | Update dependencies | From 00e256510cb6ed4fe72c99991db68277ddac7e58 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:24 +0200 Subject: [PATCH 325/808] =?UTF-8?q?=F0=9F=90=99=20source-aws-cloudtrail:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47768)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-aws-cloudtrail/metadata.yaml | 2 +- .../connectors/source-aws-cloudtrail/poetry.lock | 12 ++++++------ .../connectors/source-aws-cloudtrail/pyproject.toml | 2 +- docs/integrations/sources/aws-cloudtrail.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml b/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml index d61771be1d76..4b1370ce4d1c 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml @@ -24,7 +24,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6ff047c0-f5d5-4ce5-8c81-204a830fa7e1 - dockerImageTag: 1.0.19 + dockerImageTag: 1.0.20 dockerRepository: airbyte/source-aws-cloudtrail githubIssueLabel: source-aws-cloudtrail icon: aws-cloudtrail.svg diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock b/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock index 95df18bc0255..4f716568ca0c 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock @@ -1262,23 +1262,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml b/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml index 0ef83789901a..5594a26293ab 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.19" +version = "1.0.20" name = "source-aws-cloudtrail" description = "Source implementation for aws-cloudtrail." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/aws-cloudtrail.md b/docs/integrations/sources/aws-cloudtrail.md index a4a1894696ef..78e96a96e84b 100644 --- a/docs/integrations/sources/aws-cloudtrail.md +++ b/docs/integrations/sources/aws-cloudtrail.md @@ -54,6 +54,7 @@ Please, follow this [steps](https://docs.aws.amazon.com/powershell/latest/usergu | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 1.0.20 | 2024-10-29 | [47768](https://github.com/airbytehq/airbyte/pull/47768) | Update dependencies | | 1.0.19 | 2024-10-28 | [47096](https://github.com/airbytehq/airbyte/pull/47096) | Update dependencies | | 1.0.18 | 2024-10-12 | [46761](https://github.com/airbytehq/airbyte/pull/46761) | Update dependencies | | 1.0.17 | 2024-10-05 | [46498](https://github.com/airbytehq/airbyte/pull/46498) | Update dependencies | From d4d6ad16d4e8eb54d963eef297716848474507ec Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:27 +0200 Subject: [PATCH 326/808] =?UTF-8?q?=F0=9F=90=99=20source-commcare:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47767)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-commcare/metadata.yaml | 2 +- .../connectors/source-commcare/poetry.lock | 140 +++++++++--------- .../connectors/source-commcare/pyproject.toml | 2 +- docs/integrations/sources/commcare.md | 1 + 4 files changed, 73 insertions(+), 72 deletions(-) diff --git a/airbyte-integrations/connectors/source-commcare/metadata.yaml b/airbyte-integrations/connectors/source-commcare/metadata.yaml index 15c904293524..d44c29cc4ba6 100644 --- a/airbyte-integrations/connectors/source-commcare/metadata.yaml +++ b/airbyte-integrations/connectors/source-commcare/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: f39208dc-7e1c-48b8-919b-5006360cc27f - dockerImageTag: 0.1.21 + dockerImageTag: 0.1.22 dockerRepository: airbyte/source-commcare githubIssueLabel: source-commcare icon: commcare.svg diff --git a/airbyte-integrations/connectors/source-commcare/poetry.lock b/airbyte-integrations/connectors/source-commcare/poetry.lock index 98c206a0fc03..562b252c3b5f 100644 --- a/airbyte-integrations/connectors/source-commcare/poetry.lock +++ b/airbyte-integrations/connectors/source-commcare/poetry.lock @@ -381,13 +381,13 @@ files = [ [[package]] name = "google-api-core" -version = "2.21.0" +version = "2.22.0" description = "Google API client core library" optional = false python-versions = ">=3.7" files = [ - {file = "google_api_core-2.21.0-py3-none-any.whl", hash = "sha256:6869eacb2a37720380ba5898312af79a4d30b8bca1548fb4093e0697dc4bdf5d"}, - {file = "google_api_core-2.21.0.tar.gz", hash = "sha256:4a152fd11a9f774ea606388d423b68aa7e6d6a0ffe4c8266f74979613ec09f81"}, + {file = "google_api_core-2.22.0-py3-none-any.whl", hash = "sha256:a6652b6bd51303902494998626653671703c420f6f4c88cfd3f50ed723e9d021"}, + {file = "google_api_core-2.22.0.tar.gz", hash = "sha256:26f8d76b96477db42b55fd02a33aae4a42ec8b86b98b94969b7333a2c828bf35"}, ] [package.dependencies] @@ -559,85 +559,85 @@ grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] [[package]] name = "grpcio" -version = "1.67.0" +version = "1.67.1" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.67.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:bd79929b3bb96b54df1296cd3bf4d2b770bd1df6c2bdf549b49bab286b925cdc"}, - {file = "grpcio-1.67.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:16724ffc956ea42967f5758c2f043faef43cb7e48a51948ab593570570d1e68b"}, - {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:2b7183c80b602b0ad816315d66f2fb7887614ead950416d60913a9a71c12560d"}, - {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efe32b45dd6d118f5ea2e5deaed417d8a14976325c93812dd831908522b402c9"}, - {file = "grpcio-1.67.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe89295219b9c9e47780a0f1c75ca44211e706d1c598242249fe717af3385ec8"}, - {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa8d025fae1595a207b4e47c2e087cb88d47008494db258ac561c00877d4c8f8"}, - {file = "grpcio-1.67.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f95e15db43e75a534420e04822df91f645664bf4ad21dfaad7d51773c80e6bb4"}, - {file = "grpcio-1.67.0-cp310-cp310-win32.whl", hash = "sha256:a6b9a5c18863fd4b6624a42e2712103fb0f57799a3b29651c0e5b8119a519d65"}, - {file = "grpcio-1.67.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6eb68493a05d38b426604e1dc93bfc0137c4157f7ab4fac5771fd9a104bbaa6"}, - {file = "grpcio-1.67.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:e91d154689639932305b6ea6f45c6e46bb51ecc8ea77c10ef25aa77f75443ad4"}, - {file = "grpcio-1.67.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cb204a742997277da678611a809a8409657b1398aaeebf73b3d9563b7d154c13"}, - {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:ae6de510f670137e755eb2a74b04d1041e7210af2444103c8c95f193340d17ee"}, - {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74b900566bdf68241118f2918d312d3bf554b2ce0b12b90178091ea7d0a17b3d"}, - {file = "grpcio-1.67.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4e95e43447a02aa603abcc6b5e727d093d161a869c83b073f50b9390ecf0fa8"}, - {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0bb94e66cd8f0baf29bd3184b6aa09aeb1a660f9ec3d85da615c5003154bc2bf"}, - {file = "grpcio-1.67.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:82e5bd4b67b17c8c597273663794a6a46a45e44165b960517fe6d8a2f7f16d23"}, - {file = "grpcio-1.67.0-cp311-cp311-win32.whl", hash = "sha256:7fc1d2b9fd549264ae585026b266ac2db53735510a207381be509c315b4af4e8"}, - {file = "grpcio-1.67.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac11ecb34a86b831239cc38245403a8de25037b448464f95c3315819e7519772"}, - {file = "grpcio-1.67.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:227316b5631260e0bef8a3ce04fa7db4cc81756fea1258b007950b6efc90c05d"}, - {file = "grpcio-1.67.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d90cfdafcf4b45a7a076e3e2a58e7bc3d59c698c4f6470b0bb13a4d869cf2273"}, - {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:77196216d5dd6f99af1c51e235af2dd339159f657280e65ce7e12c1a8feffd1d"}, - {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15c05a26a0f7047f720da41dc49406b395c1470eef44ff7e2c506a47ac2c0591"}, - {file = "grpcio-1.67.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3840994689cc8cbb73d60485c594424ad8adb56c71a30d8948d6453083624b52"}, - {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:5a1e03c3102b6451028d5dc9f8591131d6ab3c8a0e023d94c28cb930ed4b5f81"}, - {file = "grpcio-1.67.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:682968427a63d898759474e3b3178d42546e878fdce034fd7474ef75143b64e3"}, - {file = "grpcio-1.67.0-cp312-cp312-win32.whl", hash = "sha256:d01793653248f49cf47e5695e0a79805b1d9d4eacef85b310118ba1dfcd1b955"}, - {file = "grpcio-1.67.0-cp312-cp312-win_amd64.whl", hash = "sha256:985b2686f786f3e20326c4367eebdaed3e7aa65848260ff0c6644f817042cb15"}, - {file = "grpcio-1.67.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:8c9a35b8bc50db35ab8e3e02a4f2a35cfba46c8705c3911c34ce343bd777813a"}, - {file = "grpcio-1.67.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:42199e704095b62688998c2d84c89e59a26a7d5d32eed86d43dc90e7a3bd04aa"}, - {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c4c425f440fb81f8d0237c07b9322fc0fb6ee2b29fbef5f62a322ff8fcce240d"}, - {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:323741b6699cd2b04a71cb38f502db98f90532e8a40cb675393d248126a268af"}, - {file = "grpcio-1.67.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:662c8e105c5e5cee0317d500eb186ed7a93229586e431c1bf0c9236c2407352c"}, - {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f6bd2ab135c64a4d1e9e44679a616c9bc944547357c830fafea5c3caa3de5153"}, - {file = "grpcio-1.67.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:2f55c1e0e2ae9bdd23b3c63459ee4c06d223b68aeb1961d83c48fb63dc29bc03"}, - {file = "grpcio-1.67.0-cp313-cp313-win32.whl", hash = "sha256:fd6bc27861e460fe28e94226e3673d46e294ca4673d46b224428d197c5935e69"}, - {file = "grpcio-1.67.0-cp313-cp313-win_amd64.whl", hash = "sha256:cf51d28063338608cd8d3cd64677e922134837902b70ce00dad7f116e3998210"}, - {file = "grpcio-1.67.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:7f200aca719c1c5dc72ab68be3479b9dafccdf03df530d137632c534bb6f1ee3"}, - {file = "grpcio-1.67.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0892dd200ece4822d72dd0952f7112c542a487fc48fe77568deaaa399c1e717d"}, - {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:f4d613fbf868b2e2444f490d18af472ccb47660ea3df52f068c9c8801e1f3e85"}, - {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c69bf11894cad9da00047f46584d5758d6ebc9b5950c0dc96fec7e0bce5cde9"}, - {file = "grpcio-1.67.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9bca3ca0c5e74dea44bf57d27e15a3a3996ce7e5780d61b7c72386356d231db"}, - {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:014dfc020e28a0d9be7e93a91f85ff9f4a87158b7df9952fe23cc42d29d31e1e"}, - {file = "grpcio-1.67.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d4ea4509d42c6797539e9ec7496c15473177ce9abc89bc5c71e7abe50fc25737"}, - {file = "grpcio-1.67.0-cp38-cp38-win32.whl", hash = "sha256:9d75641a2fca9ae1ae86454fd25d4c298ea8cc195dbc962852234d54a07060ad"}, - {file = "grpcio-1.67.0-cp38-cp38-win_amd64.whl", hash = "sha256:cff8e54d6a463883cda2fab94d2062aad2f5edd7f06ae3ed030f2a74756db365"}, - {file = "grpcio-1.67.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:62492bd534979e6d7127b8a6b29093161a742dee3875873e01964049d5250a74"}, - {file = "grpcio-1.67.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eef1dce9d1a46119fd09f9a992cf6ab9d9178b696382439446ca5f399d7b96fe"}, - {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:f623c57a5321461c84498a99dddf9d13dac0e40ee056d884d6ec4ebcab647a78"}, - {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54d16383044e681f8beb50f905249e4e7261dd169d4aaf6e52eab67b01cbbbe2"}, - {file = "grpcio-1.67.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2a44e572fb762c668e4812156b81835f7aba8a721b027e2d4bb29fb50ff4d33"}, - {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:391df8b0faac84d42f5b8dfc65f5152c48ed914e13c522fd05f2aca211f8bfad"}, - {file = "grpcio-1.67.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cfd9306511fdfc623a1ba1dc3bc07fbd24e6cfbe3c28b4d1e05177baa2f99617"}, - {file = "grpcio-1.67.0-cp39-cp39-win32.whl", hash = "sha256:30d47dbacfd20cbd0c8be9bfa52fdb833b395d4ec32fe5cff7220afc05d08571"}, - {file = "grpcio-1.67.0-cp39-cp39-win_amd64.whl", hash = "sha256:f55f077685f61f0fbd06ea355142b71e47e4a26d2d678b3ba27248abfe67163a"}, - {file = "grpcio-1.67.0.tar.gz", hash = "sha256:e090b2553e0da1c875449c8e75073dd4415dd71c9bde6a406240fdf4c0ee467c"}, + {file = "grpcio-1.67.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:8b0341d66a57f8a3119b77ab32207072be60c9bf79760fa609c5609f2deb1f3f"}, + {file = "grpcio-1.67.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:f5a27dddefe0e2357d3e617b9079b4bfdc91341a91565111a21ed6ebbc51b22d"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:43112046864317498a33bdc4797ae6a268c36345a910de9b9c17159d8346602f"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9b929f13677b10f63124c1a410994a401cdd85214ad83ab67cc077fc7e480f0"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7d1797a8a3845437d327145959a2c0c47c05947c9eef5ff1a4c80e499dcc6fa"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0489063974d1452436139501bf6b180f63d4977223ee87488fe36858c5725292"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9fd042de4a82e3e7aca44008ee2fb5da01b3e5adb316348c21980f7f58adc311"}, + {file = "grpcio-1.67.1-cp310-cp310-win32.whl", hash = "sha256:638354e698fd0c6c76b04540a850bf1db27b4d2515a19fcd5cf645c48d3eb1ed"}, + {file = "grpcio-1.67.1-cp310-cp310-win_amd64.whl", hash = "sha256:608d87d1bdabf9e2868b12338cd38a79969eaf920c89d698ead08f48de9c0f9e"}, + {file = "grpcio-1.67.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:7818c0454027ae3384235a65210bbf5464bd715450e30a3d40385453a85a70cb"}, + {file = "grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ea33986b70f83844cd00814cee4451055cd8cab36f00ac64a31f5bb09b31919e"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c7a01337407dd89005527623a4a72c5c8e2894d22bead0895306b23c6695698f"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b866f73224b0634f4312a4674c1be21b2b4afa73cb20953cbbb73a6b36c3cc"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fff78ba10d4250bfc07a01bd6254a6d87dc67f9627adece85c0b2ed754fa96"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8a23cbcc5bb11ea7dc6163078be36c065db68d915c24f5faa4f872c573bb400f"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1a65b503d008f066e994f34f456e0647e5ceb34cfcec5ad180b1b44020ad4970"}, + {file = "grpcio-1.67.1-cp311-cp311-win32.whl", hash = "sha256:e29ca27bec8e163dca0c98084040edec3bc49afd10f18b412f483cc68c712744"}, + {file = "grpcio-1.67.1-cp311-cp311-win_amd64.whl", hash = "sha256:786a5b18544622bfb1e25cc08402bd44ea83edfb04b93798d85dca4d1a0b5be5"}, + {file = "grpcio-1.67.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:267d1745894200e4c604958da5f856da6293f063327cb049a51fe67348e4f953"}, + {file = "grpcio-1.67.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:85f69fdc1d28ce7cff8de3f9c67db2b0ca9ba4449644488c1e0303c146135ddb"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:f26b0b547eb8d00e195274cdfc63ce64c8fc2d3e2d00b12bf468ece41a0423a0"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4422581cdc628f77302270ff839a44f4c24fdc57887dc2a45b7e53d8fc2376af"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7616d2ded471231c701489190379e0c311ee0a6c756f3c03e6a62b95a7146e"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8a00efecde9d6fcc3ab00c13f816313c040a28450e5e25739c24f432fc6d3c75"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:699e964923b70f3101393710793289e42845791ea07565654ada0969522d0a38"}, + {file = "grpcio-1.67.1-cp312-cp312-win32.whl", hash = "sha256:4e7b904484a634a0fff132958dabdb10d63e0927398273917da3ee103e8d1f78"}, + {file = "grpcio-1.67.1-cp312-cp312-win_amd64.whl", hash = "sha256:5721e66a594a6c4204458004852719b38f3d5522082be9061d6510b455c90afc"}, + {file = "grpcio-1.67.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:aa0162e56fd10a5547fac8774c4899fc3e18c1aa4a4759d0ce2cd00d3696ea6b"}, + {file = "grpcio-1.67.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:beee96c8c0b1a75d556fe57b92b58b4347c77a65781ee2ac749d550f2a365dc1"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:a93deda571a1bf94ec1f6fcda2872dad3ae538700d94dc283c672a3b508ba3af"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6f255980afef598a9e64a24efce87b625e3e3c80a45162d111a461a9f92955"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e838cad2176ebd5d4a8bb03955138d6589ce9e2ce5d51c3ada34396dbd2dba8"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a6703916c43b1d468d0756c8077b12017a9fcb6a1ef13faf49e67d20d7ebda62"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:917e8d8994eed1d86b907ba2a61b9f0aef27a2155bca6cbb322430fc7135b7bb"}, + {file = "grpcio-1.67.1-cp313-cp313-win32.whl", hash = "sha256:e279330bef1744040db8fc432becc8a727b84f456ab62b744d3fdb83f327e121"}, + {file = "grpcio-1.67.1-cp313-cp313-win_amd64.whl", hash = "sha256:fa0c739ad8b1996bd24823950e3cb5152ae91fca1c09cc791190bf1627ffefba"}, + {file = "grpcio-1.67.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:178f5db771c4f9a9facb2ab37a434c46cb9be1a75e820f187ee3d1e7805c4f65"}, + {file = "grpcio-1.67.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0f3e49c738396e93b7ba9016e153eb09e0778e776df6090c1b8c91877cc1c426"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:24e8a26dbfc5274d7474c27759b54486b8de23c709d76695237515bc8b5baeab"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b6c16489326d79ead41689c4b84bc40d522c9a7617219f4ad94bc7f448c5085"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e6a4dcf5af7bbc36fd9f81c9f372e8ae580870a9e4b6eafe948cd334b81cf3"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:95b5f2b857856ed78d72da93cd7d09b6db8ef30102e5e7fe0961fe4d9f7d48e8"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b49359977c6ec9f5d0573ea4e0071ad278ef905aa74e420acc73fd28ce39e9ce"}, + {file = "grpcio-1.67.1-cp38-cp38-win32.whl", hash = "sha256:f5b76ff64aaac53fede0cc93abf57894ab2a7362986ba22243d06218b93efe46"}, + {file = "grpcio-1.67.1-cp38-cp38-win_amd64.whl", hash = "sha256:804c6457c3cd3ec04fe6006c739579b8d35c86ae3298ffca8de57b493524b771"}, + {file = "grpcio-1.67.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:a25bdea92b13ff4d7790962190bf6bf5c4639876e01c0f3dda70fc2769616335"}, + {file = "grpcio-1.67.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cdc491ae35a13535fd9196acb5afe1af37c8237df2e54427be3eecda3653127e"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:85f862069b86a305497e74d0dc43c02de3d1d184fc2c180993aa8aa86fbd19b8"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec74ef02010186185de82cc594058a3ccd8d86821842bbac9873fd4a2cf8be8d"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01f616a964e540638af5130469451cf580ba8c7329f45ca998ab66e0c7dcdb04"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:299b3d8c4f790c6bcca485f9963b4846dd92cf6f1b65d3697145d005c80f9fe8"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:60336bff760fbb47d7e86165408126f1dded184448e9a4c892189eb7c9d3f90f"}, + {file = "grpcio-1.67.1-cp39-cp39-win32.whl", hash = "sha256:5ed601c4c6008429e3d247ddb367fe8c7259c355757448d7c1ef7bd4a6739e8e"}, + {file = "grpcio-1.67.1-cp39-cp39-win_amd64.whl", hash = "sha256:5db70d32d6703b89912af16d6d45d78406374a8b8ef0d28140351dd0ec610e98"}, + {file = "grpcio-1.67.1.tar.gz", hash = "sha256:3dc2ed4cabea4dc14d5e708c2b426205956077cc5de419b4d4079315017e9732"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.67.0)"] +protobuf = ["grpcio-tools (>=1.67.1)"] [[package]] name = "grpcio-status" -version = "1.67.0" +version = "1.67.1" description = "Status proto mapping for gRPC" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio_status-1.67.0-py3-none-any.whl", hash = "sha256:0e79e2e01ba41a6ca6ed9d7a825323c511fe1653a646f8014c7e3c8132527acc"}, - {file = "grpcio_status-1.67.0.tar.gz", hash = "sha256:c3e5a86fa007e9e263cd5f988a8a907484da4caab582874ea2a4a6092734046b"}, + {file = "grpcio_status-1.67.1-py3-none-any.whl", hash = "sha256:16e6c085950bdacac97c779e6a502ea671232385e6e37f258884d6883392c2bd"}, + {file = "grpcio_status-1.67.1.tar.gz", hash = "sha256:2bf38395e028ceeecfd8866b081f61628114b384da7d51ae064ddc8d766a5d11"}, ] [package.dependencies] googleapis-common-protos = ">=1.5.5" -grpcio = ">=1.67.0" +grpcio = ">=1.67.1" protobuf = ">=5.26.1,<6.0dev" [[package]] @@ -1274,23 +1274,23 @@ pyasn1 = ">=0.1.3" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-commcare/pyproject.toml b/airbyte-integrations/connectors/source-commcare/pyproject.toml index 1c6de1f3ba91..2a865cbf2ad9 100644 --- a/airbyte-integrations/connectors/source-commcare/pyproject.toml +++ b/airbyte-integrations/connectors/source-commcare/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.21" +version = "0.1.22" name = "source-commcare" description = "Source implementation for Commcare." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/commcare.md b/docs/integrations/sources/commcare.md index f40d2e290b55..810123387273 100644 --- a/docs/integrations/sources/commcare.md +++ b/docs/integrations/sources/commcare.md @@ -40,6 +40,7 @@ The Commcare source connector supports the following streams: | Version | Date | Pull Request | Subject | | ------- | ---------- | -------------------------------------------------------- | ------------------------- | +| 0.1.22 | 2024-10-29 | [47767](https://github.com/airbytehq/airbyte/pull/47767) | Update dependencies | | 0.1.21 | 2024-10-28 | [46795](https://github.com/airbytehq/airbyte/pull/46795) | Update dependencies | | 0.1.20 | 2024-10-05 | [46413](https://github.com/airbytehq/airbyte/pull/46413) | Update dependencies | | 0.1.19 | 2024-09-28 | [46163](https://github.com/airbytehq/airbyte/pull/46163) | Update dependencies | From 889b97649755aa63724f197b625af7ebed3cd9c2 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:30 +0200 Subject: [PATCH 327/808] =?UTF-8?q?=F0=9F=90=99=20source-google-analytics-?= =?UTF-8?q?v4:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47766)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-google-analytics-v4/metadata.yaml | 4 +- .../source-google-analytics-v4/poetry.lock | 964 ++++++++++-------- .../source-google-analytics-v4/pyproject.toml | 2 +- .../sources/google-analytics-v4.md | 7 +- 4 files changed, 569 insertions(+), 408 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-analytics-v4/metadata.yaml b/airbyte-integrations/connectors/source-google-analytics-v4/metadata.yaml index 647068cb3139..3c782805bff1 100644 --- a/airbyte-integrations/connectors/source-google-analytics-v4/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-analytics-v4/metadata.yaml @@ -9,11 +9,11 @@ data: - analyticsdata.googleapis.com - analyticsreporting.googleapis.com connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.2@sha256:57703de3b4c4204bd68a7b13c9300f8e03c0189bffddaffc796f1da25d2dbea0 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorSubtype: api connectorType: source definitionId: eff3616a-f9c3-11eb-9a03-0242ac130003 - dockerImageTag: 0.4.0 + dockerImageTag: 0.4.1 dockerRepository: airbyte/source-google-analytics-v4 documentationUrl: https://docs.airbyte.com/integrations/sources/google-analytics-v4 githubIssueLabel: source-google-analytics-v4 diff --git a/airbyte-integrations/connectors/source-google-analytics-v4/poetry.lock b/airbyte-integrations/connectors/source-google-analytics-v4/poetry.lock index 77725f847c60..9d8da31a8441 100644 --- a/airbyte-integrations/connectors/source-google-analytics-v4/poetry.lock +++ b/airbyte-integrations/connectors/source-google-analytics-v4/poetry.lock @@ -39,18 +39,40 @@ vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings [[package]] name = "airbyte-protocol-models" -version = "0.12.2" +version = "0.13.0" description = "Declares the Airbyte Protocol." optional = false python-versions = ">=3.8" files = [ - {file = "airbyte_protocol_models-0.12.2-py3-none-any.whl", hash = "sha256:1780db5b26285865b858d26502933def8e11919c9436ccf7b8b9cb0170b07c2a"}, - {file = "airbyte_protocol_models-0.12.2.tar.gz", hash = "sha256:b7c4d9a7c32c0691601c2b9416af090a858e126666e2c8c880d7a1798eb519f0"}, + {file = "airbyte_protocol_models-0.13.0-py3-none-any.whl", hash = "sha256:fa8b7e1a85f9ae171c50b30d23b317da1740d051994fd3ed648f9dfba00250e2"}, + {file = "airbyte_protocol_models-0.13.0.tar.gz", hash = "sha256:09d8900ba8674a9315fa1799d17026f6b38d2187c08160449540ee93331ed2e7"}, ] [package.dependencies] pydantic = ">=1.9.2,<2.0.0" +[[package]] +name = "anyio" +version = "4.6.2.post1" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +optional = false +python-versions = ">=3.9" +files = [ + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, +] + +[package.dependencies] +exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} +idna = ">=2.8" +sniffio = ">=1.1" +typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} + +[package.extras] +doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] +trio = ["trio (>=0.26.1)"] + [[package]] name = "atomicwrites" version = "1.4.1" @@ -63,22 +85,22 @@ files = [ [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "backoff" @@ -93,35 +115,35 @@ files = [ [[package]] name = "bracex" -version = "2.4" +version = "2.5.post1" description = "Bash style brace expander." optional = false python-versions = ">=3.8" files = [ - {file = "bracex-2.4-py3-none-any.whl", hash = "sha256:efdc71eff95eaff5e0f8cfebe7d01adf2c8637c8c92edaf63ef348c241a82418"}, - {file = "bracex-2.4.tar.gz", hash = "sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb"}, + {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, + {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, ] [[package]] name = "cachetools" -version = "5.3.3" +version = "5.5.0" description = "Extensible memoizing collections and decorators" optional = false python-versions = ">=3.7" files = [ - {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, - {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, + {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, + {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, ] [[package]] name = "cattrs" -version = "23.2.3" +version = "24.1.2" description = "Composable complex class support for attrs and dataclasses." optional = false python-versions = ">=3.8" files = [ - {file = "cattrs-23.2.3-py3-none-any.whl", hash = "sha256:0341994d94971052e9ee70662542699a3162ea1e0c62f7ce1b4a57f563685108"}, - {file = "cattrs-23.2.3.tar.gz", hash = "sha256:a934090d95abaa9e911dac357e3a8699e0b4b14f8529bcc7d2b1ad9d51672b9f"}, + {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, + {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, ] [package.dependencies] @@ -133,6 +155,7 @@ typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_ver bson = ["pymongo (>=4.4.0)"] cbor2 = ["cbor2 (>=5.4.6)"] msgpack = ["msgpack (>=1.0.5)"] +msgspec = ["msgspec (>=0.18.5)"] orjson = ["orjson (>=3.9.2)"] pyyaml = ["pyyaml (>=6.0)"] tomlkit = ["tomlkit (>=0.11.8)"] @@ -140,74 +163,89 @@ ujson = ["ujson (>=5.7.0)"] [[package]] name = "certifi" -version = "2024.6.2" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.6.2-py3-none-any.whl", hash = "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56"}, - {file = "certifi-2024.6.2.tar.gz", hash = "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] name = "cffi" -version = "1.16.0" +version = "1.17.1" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" files = [ - {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, - {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, - {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, - {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, - {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, - {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, - {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, - {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, - {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, - {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, - {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, - {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, - {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, - {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, - {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, ] [package.dependencies] @@ -215,101 +253,116 @@ pycparser = "*" [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] @@ -398,13 +451,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -434,17 +487,77 @@ files = [ {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, ] +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "httpcore" +version = "1.0.6" +description = "A minimal low-level HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, + {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, +] + +[package.dependencies] +certifi = "*" +h11 = ">=0.13,<0.15" + +[package.extras] +asyncio = ["anyio (>=4.0,<5.0)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +trio = ["trio (>=0.22.0,<1.0)"] + +[[package]] +name = "httpx" +version = "0.27.2" +description = "The next generation HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, + {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, +] + +[package.dependencies] +anyio = "*" +certifi = "*" +httpcore = "==1.*" +idna = "*" +sniffio = "*" + +[package.extras] +brotli = ["brotli", "brotlicffi"] +cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +zstd = ["zstandard (>=0.18.0)"] + [[package]] name = "idna" -version = "3.7" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, - {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + [[package]] name = "iniconfig" version = "2.0.0" @@ -568,142 +681,157 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.81" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.81-py3-none-any.whl", hash = "sha256:3251d823225eef23ee541980b9d9e506367eabbb7f985a086b5d09e8f78ba7e9"}, - {file = "langsmith-0.1.81.tar.gz", hash = "sha256:585ef3a2251380bd2843a664c9a28da4a7d28432e3ee8bcebf291ffb8e1f0af0"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] +httpx = ">=0.23.0,<1" orjson = ">=3.9.14,<4.0.0" -pydantic = ">=1,<3" +pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} requests = ">=2,<3" +requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.5" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.5-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:545d493c1f560d5ccfc134803ceb8955a14c3fcb47bbb4b2fee0232646d0b932"}, - {file = "orjson-3.10.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4324929c2dd917598212bfd554757feca3e5e0fa60da08be11b4aa8b90013c1"}, - {file = "orjson-3.10.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8c13ca5e2ddded0ce6a927ea5a9f27cae77eee4c75547b4297252cb20c4d30e6"}, - {file = "orjson-3.10.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b6c8e30adfa52c025f042a87f450a6b9ea29649d828e0fec4858ed5e6caecf63"}, - {file = "orjson-3.10.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:338fd4f071b242f26e9ca802f443edc588fa4ab60bfa81f38beaedf42eda226c"}, - {file = "orjson-3.10.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6970ed7a3126cfed873c5d21ece1cd5d6f83ca6c9afb71bbae21a0b034588d96"}, - {file = "orjson-3.10.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:235dadefb793ad12f7fa11e98a480db1f7c6469ff9e3da5e73c7809c700d746b"}, - {file = "orjson-3.10.5-cp310-none-win32.whl", hash = "sha256:be79e2393679eda6a590638abda16d167754393f5d0850dcbca2d0c3735cebe2"}, - {file = "orjson-3.10.5-cp310-none-win_amd64.whl", hash = "sha256:c4a65310ccb5c9910c47b078ba78e2787cb3878cdded1702ac3d0da71ddc5228"}, - {file = "orjson-3.10.5-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:cdf7365063e80899ae3a697def1277c17a7df7ccfc979990a403dfe77bb54d40"}, - {file = "orjson-3.10.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b68742c469745d0e6ca5724506858f75e2f1e5b59a4315861f9e2b1df77775a"}, - {file = "orjson-3.10.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d10cc1b594951522e35a3463da19e899abe6ca95f3c84c69e9e901e0bd93d38"}, - {file = "orjson-3.10.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dcbe82b35d1ac43b0d84072408330fd3295c2896973112d495e7234f7e3da2e1"}, - {file = "orjson-3.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c0eb7e0c75e1e486c7563fe231b40fdd658a035ae125c6ba651ca3b07936f5"}, - {file = "orjson-3.10.5-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:53ed1c879b10de56f35daf06dbc4a0d9a5db98f6ee853c2dbd3ee9d13e6f302f"}, - {file = "orjson-3.10.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:099e81a5975237fda3100f918839af95f42f981447ba8f47adb7b6a3cdb078fa"}, - {file = "orjson-3.10.5-cp311-none-win32.whl", hash = "sha256:1146bf85ea37ac421594107195db8bc77104f74bc83e8ee21a2e58596bfb2f04"}, - {file = "orjson-3.10.5-cp311-none-win_amd64.whl", hash = "sha256:36a10f43c5f3a55c2f680efe07aa93ef4a342d2960dd2b1b7ea2dd764fe4a37c"}, - {file = "orjson-3.10.5-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:68f85ecae7af14a585a563ac741b0547a3f291de81cd1e20903e79f25170458f"}, - {file = "orjson-3.10.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28afa96f496474ce60d3340fe8d9a263aa93ea01201cd2bad844c45cd21f5268"}, - {file = "orjson-3.10.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9cd684927af3e11b6e754df80b9ffafd9fb6adcaa9d3e8fdd5891be5a5cad51e"}, - {file = "orjson-3.10.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d21b9983da032505f7050795e98b5d9eee0df903258951566ecc358f6696969"}, - {file = "orjson-3.10.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ad1de7fef79736dde8c3554e75361ec351158a906d747bd901a52a5c9c8d24b"}, - {file = "orjson-3.10.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2d97531cdfe9bdd76d492e69800afd97e5930cb0da6a825646667b2c6c6c0211"}, - {file = "orjson-3.10.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d69858c32f09c3e1ce44b617b3ebba1aba030e777000ebdf72b0d8e365d0b2b3"}, - {file = "orjson-3.10.5-cp312-none-win32.whl", hash = "sha256:64c9cc089f127e5875901ac05e5c25aa13cfa5dbbbd9602bda51e5c611d6e3e2"}, - {file = "orjson-3.10.5-cp312-none-win_amd64.whl", hash = "sha256:b2efbd67feff8c1f7728937c0d7f6ca8c25ec81373dc8db4ef394c1d93d13dc5"}, - {file = "orjson-3.10.5-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:03b565c3b93f5d6e001db48b747d31ea3819b89abf041ee10ac6988886d18e01"}, - {file = "orjson-3.10.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:584c902ec19ab7928fd5add1783c909094cc53f31ac7acfada817b0847975f26"}, - {file = "orjson-3.10.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5a35455cc0b0b3a1eaf67224035f5388591ec72b9b6136d66b49a553ce9eb1e6"}, - {file = "orjson-3.10.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1670fe88b116c2745a3a30b0f099b699a02bb3482c2591514baf5433819e4f4d"}, - {file = "orjson-3.10.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:185c394ef45b18b9a7d8e8f333606e2e8194a50c6e3c664215aae8cf42c5385e"}, - {file = "orjson-3.10.5-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ca0b3a94ac8d3886c9581b9f9de3ce858263865fdaa383fbc31c310b9eac07c9"}, - {file = "orjson-3.10.5-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:dfc91d4720d48e2a709e9c368d5125b4b5899dced34b5400c3837dadc7d6271b"}, - {file = "orjson-3.10.5-cp38-none-win32.whl", hash = "sha256:c05f16701ab2a4ca146d0bca950af254cb7c02f3c01fca8efbbad82d23b3d9d4"}, - {file = "orjson-3.10.5-cp38-none-win_amd64.whl", hash = "sha256:8a11d459338f96a9aa7f232ba95679fc0c7cedbd1b990d736467894210205c09"}, - {file = "orjson-3.10.5-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:85c89131d7b3218db1b24c4abecea92fd6c7f9fab87441cfc342d3acc725d807"}, - {file = "orjson-3.10.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb66215277a230c456f9038d5e2d84778141643207f85336ef8d2a9da26bd7ca"}, - {file = "orjson-3.10.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51bbcdea96cdefa4a9b4461e690c75ad4e33796530d182bdd5c38980202c134a"}, - {file = "orjson-3.10.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbead71dbe65f959b7bd8cf91e0e11d5338033eba34c114f69078d59827ee139"}, - {file = "orjson-3.10.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5df58d206e78c40da118a8c14fc189207fffdcb1f21b3b4c9c0c18e839b5a214"}, - {file = "orjson-3.10.5-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c4057c3b511bb8aef605616bd3f1f002a697c7e4da6adf095ca5b84c0fd43595"}, - {file = "orjson-3.10.5-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b39e006b00c57125ab974362e740c14a0c6a66ff695bff44615dcf4a70ce2b86"}, - {file = "orjson-3.10.5-cp39-none-win32.whl", hash = "sha256:eded5138cc565a9d618e111c6d5c2547bbdd951114eb822f7f6309e04db0fb47"}, - {file = "orjson-3.10.5-cp39-none-win_amd64.whl", hash = "sha256:cc28e90a7cae7fcba2493953cff61da5a52950e78dc2dacfe931a317ee3d8de7"}, - {file = "orjson-3.10.5.tar.gz", hash = "sha256:7a5baef8a4284405d96c90c7c62b755e9ef1ada84c2406c24a9ebec86b89f46d"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -753,19 +881,19 @@ pytzdata = ">=2020.1" [[package]] name = "platformdirs" -version = "4.2.2" +version = "4.3.6" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, - {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] -type = ["mypy (>=1.8)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "pluggy" @@ -806,54 +934,54 @@ files = [ [[package]] name = "pydantic" -version = "1.10.17" +version = "1.10.18" description = "Data validation and settings management using python type hints" optional = false python-versions = ">=3.7" files = [ - {file = "pydantic-1.10.17-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0fa51175313cc30097660b10eec8ca55ed08bfa07acbfe02f7a42f6c242e9a4b"}, - {file = "pydantic-1.10.17-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c7e8988bb16988890c985bd2093df9dd731bfb9d5e0860db054c23034fab8f7a"}, - {file = "pydantic-1.10.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:371dcf1831f87c9e217e2b6a0c66842879a14873114ebb9d0861ab22e3b5bb1e"}, - {file = "pydantic-1.10.17-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4866a1579c0c3ca2c40575398a24d805d4db6cb353ee74df75ddeee3c657f9a7"}, - {file = "pydantic-1.10.17-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:543da3c6914795b37785703ffc74ba4d660418620cc273490d42c53949eeeca6"}, - {file = "pydantic-1.10.17-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7623b59876f49e61c2e283551cc3647616d2fbdc0b4d36d3d638aae8547ea681"}, - {file = "pydantic-1.10.17-cp310-cp310-win_amd64.whl", hash = "sha256:409b2b36d7d7d19cd8310b97a4ce6b1755ef8bd45b9a2ec5ec2b124db0a0d8f3"}, - {file = "pydantic-1.10.17-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fa43f362b46741df8f201bf3e7dff3569fa92069bcc7b4a740dea3602e27ab7a"}, - {file = "pydantic-1.10.17-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2a72d2a5ff86a3075ed81ca031eac86923d44bc5d42e719d585a8eb547bf0c9b"}, - {file = "pydantic-1.10.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4ad32aed3bf5eea5ca5decc3d1bbc3d0ec5d4fbcd72a03cdad849458decbc63"}, - {file = "pydantic-1.10.17-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aeb4e741782e236ee7dc1fb11ad94dc56aabaf02d21df0e79e0c21fe07c95741"}, - {file = "pydantic-1.10.17-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d2f89a719411cb234105735a520b7c077158a81e0fe1cb05a79c01fc5eb59d3c"}, - {file = "pydantic-1.10.17-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db3b48d9283d80a314f7a682f7acae8422386de659fffaba454b77a083c3937d"}, - {file = "pydantic-1.10.17-cp311-cp311-win_amd64.whl", hash = "sha256:9c803a5113cfab7bbb912f75faa4fc1e4acff43e452c82560349fff64f852e1b"}, - {file = "pydantic-1.10.17-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:820ae12a390c9cbb26bb44913c87fa2ff431a029a785642c1ff11fed0a095fcb"}, - {file = "pydantic-1.10.17-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c1e51d1af306641b7d1574d6d3307eaa10a4991542ca324f0feb134fee259815"}, - {file = "pydantic-1.10.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e53fb834aae96e7b0dadd6e92c66e7dd9cdf08965340ed04c16813102a47fab"}, - {file = "pydantic-1.10.17-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e2495309b1266e81d259a570dd199916ff34f7f51f1b549a0d37a6d9b17b4dc"}, - {file = "pydantic-1.10.17-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:098ad8de840c92ea586bf8efd9e2e90c6339d33ab5c1cfbb85be66e4ecf8213f"}, - {file = "pydantic-1.10.17-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:525bbef620dac93c430d5d6bdbc91bdb5521698d434adf4434a7ef6ffd5c4b7f"}, - {file = "pydantic-1.10.17-cp312-cp312-win_amd64.whl", hash = "sha256:6654028d1144df451e1da69a670083c27117d493f16cf83da81e1e50edce72ad"}, - {file = "pydantic-1.10.17-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c87cedb4680d1614f1d59d13fea353faf3afd41ba5c906a266f3f2e8c245d655"}, - {file = "pydantic-1.10.17-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11289fa895bcbc8f18704efa1d8020bb9a86314da435348f59745473eb042e6b"}, - {file = "pydantic-1.10.17-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94833612d6fd18b57c359a127cbfd932d9150c1b72fea7c86ab58c2a77edd7c7"}, - {file = "pydantic-1.10.17-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d4ecb515fa7cb0e46e163ecd9d52f9147ba57bc3633dca0e586cdb7a232db9e3"}, - {file = "pydantic-1.10.17-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:7017971ffa7fd7808146880aa41b266e06c1e6e12261768a28b8b41ba55c8076"}, - {file = "pydantic-1.10.17-cp37-cp37m-win_amd64.whl", hash = "sha256:e840e6b2026920fc3f250ea8ebfdedf6ea7a25b77bf04c6576178e681942ae0f"}, - {file = "pydantic-1.10.17-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bfbb18b616abc4df70591b8c1ff1b3eabd234ddcddb86b7cac82657ab9017e33"}, - {file = "pydantic-1.10.17-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ebb249096d873593e014535ab07145498957091aa6ae92759a32d40cb9998e2e"}, - {file = "pydantic-1.10.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8c209af63ccd7b22fba94b9024e8b7fd07feffee0001efae50dd99316b27768"}, - {file = "pydantic-1.10.17-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4b40c9e13a0b61583e5599e7950490c700297b4a375b55b2b592774332798b7"}, - {file = "pydantic-1.10.17-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c31d281c7485223caf6474fc2b7cf21456289dbaa31401844069b77160cab9c7"}, - {file = "pydantic-1.10.17-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ae5184e99a060a5c80010a2d53c99aee76a3b0ad683d493e5f0620b5d86eeb75"}, - {file = "pydantic-1.10.17-cp38-cp38-win_amd64.whl", hash = "sha256:ad1e33dc6b9787a6f0f3fd132859aa75626528b49cc1f9e429cdacb2608ad5f0"}, - {file = "pydantic-1.10.17-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e17c0ee7192e54a10943f245dc79e36d9fe282418ea05b886e1c666063a7b54"}, - {file = "pydantic-1.10.17-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cafb9c938f61d1b182dfc7d44a7021326547b7b9cf695db5b68ec7b590214773"}, - {file = "pydantic-1.10.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95ef534e3c22e5abbdbdd6f66b6ea9dac3ca3e34c5c632894f8625d13d084cbe"}, - {file = "pydantic-1.10.17-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62d96b8799ae3d782df7ec9615cb59fc32c32e1ed6afa1b231b0595f6516e8ab"}, - {file = "pydantic-1.10.17-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ab2f976336808fd5d539fdc26eb51f9aafc1f4b638e212ef6b6f05e753c8011d"}, - {file = "pydantic-1.10.17-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b8ad363330557beac73159acfbeed220d5f1bfcd6b930302a987a375e02f74fd"}, - {file = "pydantic-1.10.17-cp39-cp39-win_amd64.whl", hash = "sha256:48db882e48575ce4b39659558b2f9f37c25b8d348e37a2b4e32971dd5a7d6227"}, - {file = "pydantic-1.10.17-py3-none-any.whl", hash = "sha256:e41b5b973e5c64f674b3b4720286ded184dcc26a691dd55f34391c62c6934688"}, - {file = "pydantic-1.10.17.tar.gz", hash = "sha256:f434160fb14b353caf634149baaf847206406471ba70e64657c1e8330277a991"}, + {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, + {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, + {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, + {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, + {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, + {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, + {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, + {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, + {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, + {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, + {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, + {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, + {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, + {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, + {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, + {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, + {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, + {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, + {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, + {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, + {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, + {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, + {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, + {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, + {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, + {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, + {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, + {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, + {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, + {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, + {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, + {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, + {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, + {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, + {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, + {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, + {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, + {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, + {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, + {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, + {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, + {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, + {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, ] [package.dependencies] @@ -1004,62 +1132,64 @@ files = [ [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0.2" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] @@ -1130,20 +1260,39 @@ requests = ">=2.22,<3" [package.extras] fixture = ["fixtures"] +[[package]] +name = "requests-toolbelt" +version = "1.0.0" +description = "A utility belt for advanced users of python-requests" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, + {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, +] + +[package.dependencies] +requests = ">=2.0.1,<3.0.0" + [[package]] name = "setuptools" -version = "70.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-70.1.0-py3-none-any.whl", hash = "sha256:d9b8b771455a97c8a9f3ab3448ebe0b29b5e105f1228bba41028be116985a267"}, - {file = "setuptools-70.1.0.tar.gz", hash = "sha256:01a1e793faa5bd89abc851fa15d0a0db26f160890c7102cd8dce643e886b47f5"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.10.0)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.1)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1156,15 +1305,26 @@ files = [ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] +[[package]] +name = "sniffio" +version = "1.3.1" +description = "Sniff out which async library your code is running under" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, +] + [[package]] name = "tenacity" -version = "8.4.1" +version = "8.5.0" description = "Retry code until it succeeds" optional = false python-versions = ">=3.8" files = [ - {file = "tenacity-8.4.1-py3-none-any.whl", hash = "sha256:28522e692eda3e1b8f5e99c51464efcc0b9fc86933da92415168bc1c4e2308fa"}, - {file = "tenacity-8.4.1.tar.gz", hash = "sha256:54b1412b878ddf7e1f1577cd49527bad8cdef32421bd599beac0c6c3f10582fd"}, + {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, + {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, ] [package.extras] @@ -1209,13 +1369,13 @@ six = "*" [[package]] name = "urllib3" -version = "2.2.2" +version = "2.2.3" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.8" files = [ - {file = "urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472"}, - {file = "urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168"}, + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-google-analytics-v4/pyproject.toml b/airbyte-integrations/connectors/source-google-analytics-v4/pyproject.toml index aef1cec59286..22ad38fbc137 100644 --- a/airbyte-integrations/connectors/source-google-analytics-v4/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-analytics-v4/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.0" +version = "0.4.1" name = "source-google-analytics-v4" description = "Source implementation for Google Analytics V4." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-analytics-v4.md b/docs/integrations/sources/google-analytics-v4.md index 08a60d0e2747..09f56216e3a5 100644 --- a/docs/integrations/sources/google-analytics-v4.md +++ b/docs/integrations/sources/google-analytics-v4.md @@ -276,9 +276,10 @@ The Google Analytics connector should not run into the "requests per 100 seconds | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------- | -| 0.4.0 | 2024-07-01 | [40244](https://github.com/airbytehq/airbyte/pull/40244) | Deprecate the connector | -| 0.3.3 | 2024-06-21 | [39940](https://github.com/airbytehq/airbyte/pull/39940) | Update dependencies | -| 0.3.2 | 2024-06-04 | [38934](https://github.com/airbytehq/airbyte/pull/38934) | [autopull] Upgrade base image to v1.2.1 | +| 0.4.1 | 2024-10-29 | [47766](https://github.com/airbytehq/airbyte/pull/47766) | Update dependencies | +| 0.4.0 | 2024-07-01 | [40244](https://github.com/airbytehq/airbyte/pull/40244) | Deprecate the connector | +| 0.3.3 | 2024-06-21 | [39940](https://github.com/airbytehq/airbyte/pull/39940) | Update dependencies | +| 0.3.2 | 2024-06-04 | [38934](https://github.com/airbytehq/airbyte/pull/38934) | [autopull] Upgrade base image to v1.2.1 | | 0.3.1 | 2024-04-19 | [37432](https://github.com/airbytehq/airbyte/pull/36267) | Fix empty response error for test stream | | 0.3.0 | 2024-03-19 | [36267](https://github.com/airbytehq/airbyte/pull/36267) | Pin airbyte-cdk version to `^0` | | 0.2.5 | 2024-02-09 | [35101](https://github.com/airbytehq/airbyte/pull/35101) | Manage dependencies with Poetry. | From bdd662feb698d50d512318610acc40e5fe250df9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:33 +0200 Subject: [PATCH 328/808] =?UTF-8?q?=F0=9F=90=99=20source-senseforce:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47765)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-senseforce/metadata.yaml | 4 ++-- docs/integrations/sources/senseforce.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-senseforce/metadata.yaml b/airbyte-integrations/connectors/source-senseforce/metadata.yaml index 154f81ce27cb..a918cfc8f411 100644 --- a/airbyte-integrations/connectors/source-senseforce/metadata.yaml +++ b/airbyte-integrations/connectors/source-senseforce/metadata.yaml @@ -6,7 +6,7 @@ data: connectorSubtype: api connectorType: source definitionId: 39de93cb-1511-473e-a673-5cbedb9436af - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-senseforce githubIssueLabel: source-senseforce icon: senseforce.svg @@ -47,5 +47,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/senseforce.md b/docs/integrations/sources/senseforce.md index a7b43f471dbc..f48fade80f1e 100644 --- a/docs/integrations/sources/senseforce.md +++ b/docs/integrations/sources/senseforce.md @@ -87,6 +87,7 @@ Senseforce utilizes an undocumented rate limit which - under normal use - should | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | +| 0.2.3 | 2024-10-29 | [47765](https://github.com/airbytehq/airbyte/pull/47765) | Update dependencies | | 0.2.2 | 2024-10-28 | [47567](https://github.com/airbytehq/airbyte/pull/47567) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44073](https://github.com/airbytehq/airbyte/pull/44073) | Refactor connector to manifest-only format | From c6e1fd7233973f09f7e5bab7c52c0660853affbb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:36 +0200 Subject: [PATCH 329/808] =?UTF-8?q?=F0=9F=90=99=20source-convertkit:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47764)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-convertkit/metadata.yaml | 4 ++-- docs/integrations/sources/convertkit.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-convertkit/metadata.yaml b/airbyte-integrations/connectors/source-convertkit/metadata.yaml index 9ee01188383b..d04a39bbd6e3 100644 --- a/airbyte-integrations/connectors/source-convertkit/metadata.yaml +++ b/airbyte-integrations/connectors/source-convertkit/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: be9ee02f-6efe-4970-979b-95f797a37188 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-convertkit githubIssueLabel: source-convertkit icon: convertkit.svg @@ -39,5 +39,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/convertkit.md b/docs/integrations/sources/convertkit.md index 219509bcd468..8dfb75302ce3 100644 --- a/docs/integrations/sources/convertkit.md +++ b/docs/integrations/sources/convertkit.md @@ -36,6 +36,7 @@ The connector has a rate limit of no more than 120 requests over a rolling 60 se | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------- | +| 0.2.3 | 2024-10-29 | [47764](https://github.com/airbytehq/airbyte/pull/47764) | Update dependencies | | 0.2.2 | 2024-10-28 | [47619](https://github.com/airbytehq/airbyte/pull/47619) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44161](https://github.com/airbytehq/airbyte/pull/44161) | Refactor connector to manifest-only format | From 78238d73569538492b7d7dc9dea3a422e6996ea3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:42 +0200 Subject: [PATCH 330/808] =?UTF-8?q?=F0=9F=90=99=20source-partnerstack:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47762)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-partnerstack/metadata.yaml | 2 +- .../connectors/source-partnerstack/poetry.lock | 12 ++++++------ .../connectors/source-partnerstack/pyproject.toml | 2 +- docs/integrations/sources/partnerstack.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-partnerstack/metadata.yaml b/airbyte-integrations/connectors/source-partnerstack/metadata.yaml index 8322e41af738..bb28bbee6f5f 100644 --- a/airbyte-integrations/connectors/source-partnerstack/metadata.yaml +++ b/airbyte-integrations/connectors/source-partnerstack/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d30fb809-6456-484d-8e2c-ee12e0f6888d - dockerImageTag: 0.1.23 + dockerImageTag: 0.1.24 dockerRepository: airbyte/source-partnerstack githubIssueLabel: source-partnerstack icon: partnerstack.svg diff --git a/airbyte-integrations/connectors/source-partnerstack/poetry.lock b/airbyte-integrations/connectors/source-partnerstack/poetry.lock index 4c0d837c973f..3a612d453b37 100644 --- a/airbyte-integrations/connectors/source-partnerstack/poetry.lock +++ b/airbyte-integrations/connectors/source-partnerstack/poetry.lock @@ -1285,23 +1285,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-partnerstack/pyproject.toml b/airbyte-integrations/connectors/source-partnerstack/pyproject.toml index bcc8443fc980..0b221460234a 100644 --- a/airbyte-integrations/connectors/source-partnerstack/pyproject.toml +++ b/airbyte-integrations/connectors/source-partnerstack/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.23" +version = "0.1.24" name = "source-partnerstack" description = "Source implementation for Partnerstack." authors = [ "Elliot Trabac ",] diff --git a/docs/integrations/sources/partnerstack.md b/docs/integrations/sources/partnerstack.md index de7a2fe52320..f4435992a92e 100644 --- a/docs/integrations/sources/partnerstack.md +++ b/docs/integrations/sources/partnerstack.md @@ -41,6 +41,7 @@ The Partnerstack connector should not run into Partnerstack API limitations unde | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------| +| 0.1.24 | 2024-10-29 | [47762](https://github.com/airbytehq/airbyte/pull/47762) | Update dependencies | | 0.1.23 | 2024-10-28 | [47045](https://github.com/airbytehq/airbyte/pull/47045) | Update dependencies | | 0.1.22 | 2024-10-12 | [46808](https://github.com/airbytehq/airbyte/pull/46808) | Update dependencies | | 0.1.21 | 2024-10-05 | [46452](https://github.com/airbytehq/airbyte/pull/46452) | Update dependencies | From 1e0e9770b8fa00cdc24c673673617eba20d0cd11 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:45 +0200 Subject: [PATCH 331/808] =?UTF-8?q?=F0=9F=90=99=20source-visma-economic:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47761)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-visma-economic/metadata.yaml | 4 ++-- docs/integrations/sources/visma-economic.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-visma-economic/metadata.yaml b/airbyte-integrations/connectors/source-visma-economic/metadata.yaml index d7a298a7e1a6..ce6f5957b2ba 100644 --- a/airbyte-integrations/connectors/source-visma-economic/metadata.yaml +++ b/airbyte-integrations/connectors/source-visma-economic/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - restapi.e-conomic.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 42495935-95de-4f5c-ae08-8fac00f6b308 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-visma-economic documentationUrl: https://docs.airbyte.com/integrations/sources/visma-economic githubIssueLabel: source-visma-economic diff --git a/docs/integrations/sources/visma-economic.md b/docs/integrations/sources/visma-economic.md index c907c428e18f..2081408689dc 100644 --- a/docs/integrations/sources/visma-economic.md +++ b/docs/integrations/sources/visma-economic.md @@ -52,6 +52,7 @@ For more information about the api see the [E-conomic REST API Documentation](ht | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.3 | 2024-10-29 | [47761](https://github.com/airbytehq/airbyte/pull/47761) | Update dependencies | | 0.3.2 | 2024-10-28 | [47543](https://github.com/airbytehq/airbyte/pull/47543) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-14 | [44052](https://github.com/airbytehq/airbyte/pull/44052) | Refactor connector to manifest-only format | From 48eb56c0763c5b2a9b2518d181d42ee0c4efefc6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:10:48 +0200 Subject: [PATCH 332/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-teams:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47758)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-microsoft-teams/metadata.yaml | 4 ++-- docs/integrations/sources/microsoft-teams.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-teams/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-teams/metadata.yaml index f2466e6b218a..ff1d336b3844 100644 --- a/airbyte-integrations/connectors/source-microsoft-teams/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-teams/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: eaf50f04-21dd-4620-913b-2a83f5635227 - dockerImageTag: 1.2.2 + dockerImageTag: 1.2.3 dockerRepository: airbyte/source-microsoft-teams githubIssueLabel: source-microsoft-teams icon: microsoft-teams.svg diff --git a/docs/integrations/sources/microsoft-teams.md b/docs/integrations/sources/microsoft-teams.md index fb67790e0e05..b95c1452b8a0 100644 --- a/docs/integrations/sources/microsoft-teams.md +++ b/docs/integrations/sources/microsoft-teams.md @@ -164,6 +164,7 @@ Token acquiring implemented by [instantiate](https://docs.microsoft.com/en-us/az | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------- | +| 1.2.3 | 2024-10-29 | [47758](https://github.com/airbytehq/airbyte/pull/47758) | Update dependencies | | 1.2.2 | 2024-10-28 | [47453](https://github.com/airbytehq/airbyte/pull/47453) | Update dependencies | | 1.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.2.0 | 2024-08-15 | [44116](https://github.com/airbytehq/airbyte/pull/44116) | Refactor connector to manifest-only format | From 2ead798c603682f41028ee583b4deaa5efbf7ca4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:11:10 +0200 Subject: [PATCH 333/808] =?UTF-8?q?=F0=9F=90=99=20source-sendinblue:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47638)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sendinblue/metadata.yaml | 4 ++-- docs/integrations/sources/sendinblue.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sendinblue/metadata.yaml b/airbyte-integrations/connectors/source-sendinblue/metadata.yaml index eccd1e2275f0..10c5017a550f 100644 --- a/airbyte-integrations/connectors/source-sendinblue/metadata.yaml +++ b/airbyte-integrations/connectors/source-sendinblue/metadata.yaml @@ -9,11 +9,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 2e88fa20-a2f6-43cc-bba6-98a0a3f244fb - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-sendinblue documentationUrl: https://docs.airbyte.com/integrations/sources/sendinblue githubIssueLabel: source-sendinblue diff --git a/docs/integrations/sources/sendinblue.md b/docs/integrations/sources/sendinblue.md index 1a9bce54ee4e..0190d061a91d 100644 --- a/docs/integrations/sources/sendinblue.md +++ b/docs/integrations/sources/sendinblue.md @@ -34,6 +34,7 @@ Sendinblue APIs are under rate limits for the number of API calls allowed per AP | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------ | +| 0.2.2 | 2024-10-29 | [47638](https://github.com/airbytehq/airbyte/pull/47638) | Update dependencies | | 0.2.1 | 2024-10-21 | [47192](https://github.com/airbytehq/airbyte/pull/47192) | Update dependencies | | 0.2.0 | 2024-08-26 | [44774](https://github.com/airbytehq/airbyte/pull/44774) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-24 | [44670](https://github.com/airbytehq/airbyte/pull/44670) | Update dependencies | From 67a2ba2945deefeb7af2902650e3295e3f0d50f6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:11:33 +0200 Subject: [PATCH 334/808] =?UTF-8?q?=F0=9F=90=99=20source-klarna:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47478)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-klarna/metadata.yaml | 4 ++-- docs/integrations/sources/klarna.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-klarna/metadata.yaml b/airbyte-integrations/connectors/source-klarna/metadata.yaml index e3381ca265bd..f6faebffdc47 100644 --- a/airbyte-integrations/connectors/source-klarna/metadata.yaml +++ b/airbyte-integrations/connectors/source-klarna/metadata.yaml @@ -9,11 +9,11 @@ data: - api-${config.region}.klarna.com - api-${config.region}.playground.klarna.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 60c24725-00ae-490c-991d-55b78c3197e0 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-klarna documentationUrl: https://docs.airbyte.com/integrations/sources/klarna githubIssueLabel: source-klarna diff --git a/docs/integrations/sources/klarna.md b/docs/integrations/sources/klarna.md index 98aff5145630..5bac19022ddf 100644 --- a/docs/integrations/sources/klarna.md +++ b/docs/integrations/sources/klarna.md @@ -62,6 +62,7 @@ Connector will handle an issue with rate limiting as Klarna returns 429 status c | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.3 | 2024-10-29 | [47478](https://github.com/airbytehq/airbyte/pull/47478) | Update dependencies | | 0.3.2 | 2024-10-21 | [47195](https://github.com/airbytehq/airbyte/pull/47195) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44136](https://github.com/airbytehq/airbyte/pull/44136) | Refactor connector to manifest-only format | From 13803ed8c3559536366265b6a022860410a6659f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:11:47 +0200 Subject: [PATCH 335/808] =?UTF-8?q?=F0=9F=90=99=20destination-pinecone:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47106)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-pinecone/metadata.yaml | 2 +- .../destination-pinecone/poetry.lock | 1105 +++++++++-------- .../destination-pinecone/pyproject.toml | 2 +- docs/integrations/destinations/pinecone.md | 1 + 4 files changed, 560 insertions(+), 550 deletions(-) diff --git a/airbyte-integrations/connectors/destination-pinecone/metadata.yaml b/airbyte-integrations/connectors/destination-pinecone/metadata.yaml index eb5568970220..6bf571642819 100644 --- a/airbyte-integrations/connectors/destination-pinecone/metadata.yaml +++ b/airbyte-integrations/connectors/destination-pinecone/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 3d2b6f84-7f0d-4e3f-a5e5-7c7d4b50eabd - dockerImageTag: 0.1.26 + dockerImageTag: 0.1.27 dockerRepository: airbyte/destination-pinecone documentationUrl: https://docs.airbyte.com/integrations/destinations/pinecone githubIssueLabel: destination-pinecone diff --git a/airbyte-integrations/connectors/destination-pinecone/poetry.lock b/airbyte-integrations/connectors/destination-pinecone/poetry.lock index df53ac677d8b..8ffc4c24d69c 100644 --- a/airbyte-integrations/connectors/destination-pinecone/poetry.lock +++ b/airbyte-integrations/connectors/destination-pinecone/poetry.lock @@ -197,13 +197,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -214,7 +214,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -738,13 +738,13 @@ files = [ [[package]] name = "et-xmlfile" -version = "1.1.0" +version = "2.0.0" description = "An implementation of lxml.xmlfile for the standard library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, + {file = "et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa"}, + {file = "et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54"}, ] [[package]] @@ -874,88 +874,103 @@ woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] [[package]] name = "frozenlist" -version = "1.4.1" +version = "1.5.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = false python-versions = ">=3.8" files = [ - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, - {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, - {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, - {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, - {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, - {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, - {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, - {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, - {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, - {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, - {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, - {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, - {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, ] [[package]] @@ -1087,70 +1102,70 @@ googleapis-common-protos = "*" [[package]] name = "grpcio" -version = "1.66.2" +version = "1.67.1" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.66.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:fe96281713168a3270878255983d2cb1a97e034325c8c2c25169a69289d3ecfa"}, - {file = "grpcio-1.66.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:73fc8f8b9b5c4a03e802b3cd0c18b2b06b410d3c1dcbef989fdeb943bd44aff7"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:03b0b307ba26fae695e067b94cbb014e27390f8bc5ac7a3a39b7723fed085604"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d69ce1f324dc2d71e40c9261d3fdbe7d4c9d60f332069ff9b2a4d8a257c7b2b"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05bc2ceadc2529ab0b227b1310d249d95d9001cd106aa4d31e8871ad3c428d73"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ac475e8da31484efa25abb774674d837b343afb78bb3bcdef10f81a93e3d6bf"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0be4e0490c28da5377283861bed2941d1d20ec017ca397a5df4394d1c31a9b50"}, - {file = "grpcio-1.66.2-cp310-cp310-win32.whl", hash = "sha256:4e504572433f4e72b12394977679161d495c4c9581ba34a88d843eaf0f2fbd39"}, - {file = "grpcio-1.66.2-cp310-cp310-win_amd64.whl", hash = "sha256:2018b053aa15782db2541ca01a7edb56a0bf18c77efed975392583725974b249"}, - {file = "grpcio-1.66.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:2335c58560a9e92ac58ff2bc5649952f9b37d0735608242973c7a8b94a6437d8"}, - {file = "grpcio-1.66.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45a3d462826f4868b442a6b8fdbe8b87b45eb4f5b5308168c156b21eca43f61c"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:a9539f01cb04950fd4b5ab458e64a15f84c2acc273670072abe49a3f29bbad54"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce89f5876662f146d4c1f695dda29d4433a5d01c8681fbd2539afff535da14d4"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d25a14af966438cddf498b2e338f88d1c9706f3493b1d73b93f695c99c5f0e2a"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6001e575b8bbd89eee11960bb640b6da6ae110cf08113a075f1e2051cc596cae"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ea1d062c9230278793820146c95d038dc0f468cbdd172eec3363e42ff1c7d01"}, - {file = "grpcio-1.66.2-cp311-cp311-win32.whl", hash = "sha256:38b68498ff579a3b1ee8f93a05eb48dc2595795f2f62716e797dc24774c1aaa8"}, - {file = "grpcio-1.66.2-cp311-cp311-win_amd64.whl", hash = "sha256:6851de821249340bdb100df5eacfecfc4e6075fa85c6df7ee0eb213170ec8e5d"}, - {file = "grpcio-1.66.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:802d84fd3d50614170649853d121baaaa305de7b65b3e01759247e768d691ddf"}, - {file = "grpcio-1.66.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:80fd702ba7e432994df208f27514280b4b5c6843e12a48759c9255679ad38db8"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:12fda97ffae55e6526825daf25ad0fa37483685952b5d0f910d6405c87e3adb6"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:950da58d7d80abd0ea68757769c9db0a95b31163e53e5bb60438d263f4bed7b7"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e636ce23273683b00410f1971d209bf3689238cf5538d960adc3cdfe80dd0dbd"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a917d26e0fe980b0ac7bfcc1a3c4ad6a9a4612c911d33efb55ed7833c749b0ee"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49f0ca7ae850f59f828a723a9064cadbed90f1ece179d375966546499b8a2c9c"}, - {file = "grpcio-1.66.2-cp312-cp312-win32.whl", hash = "sha256:31fd163105464797a72d901a06472860845ac157389e10f12631025b3e4d0453"}, - {file = "grpcio-1.66.2-cp312-cp312-win_amd64.whl", hash = "sha256:ff1f7882e56c40b0d33c4922c15dfa30612f05fb785074a012f7cda74d1c3679"}, - {file = "grpcio-1.66.2-cp313-cp313-linux_armv7l.whl", hash = "sha256:3b00efc473b20d8bf83e0e1ae661b98951ca56111feb9b9611df8efc4fe5d55d"}, - {file = "grpcio-1.66.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1caa38fb22a8578ab8393da99d4b8641e3a80abc8fd52646f1ecc92bcb8dee34"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c408f5ef75cfffa113cacd8b0c0e3611cbfd47701ca3cdc090594109b9fcbaed"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c806852deaedee9ce8280fe98955c9103f62912a5b2d5ee7e3eaa284a6d8d8e7"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f145cc21836c332c67baa6fc81099d1d27e266401565bf481948010d6ea32d46"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:73e3b425c1e155730273f73e419de3074aa5c5e936771ee0e4af0814631fb30a"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9c509a4f78114cbc5f0740eb3d7a74985fd2eff022971bc9bc31f8bc93e66a3b"}, - {file = "grpcio-1.66.2-cp313-cp313-win32.whl", hash = "sha256:20657d6b8cfed7db5e11b62ff7dfe2e12064ea78e93f1434d61888834bc86d75"}, - {file = "grpcio-1.66.2-cp313-cp313-win_amd64.whl", hash = "sha256:fb70487c95786e345af5e854ffec8cb8cc781bcc5df7930c4fbb7feaa72e1cdf"}, - {file = "grpcio-1.66.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:a18e20d8321c6400185b4263e27982488cb5cdd62da69147087a76a24ef4e7e3"}, - {file = "grpcio-1.66.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:02697eb4a5cbe5a9639f57323b4c37bcb3ab2d48cec5da3dc2f13334d72790dd"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:99a641995a6bc4287a6315989ee591ff58507aa1cbe4c2e70d88411c4dcc0839"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ed71e81782966ffead60268bbda31ea3f725ebf8aa73634d5dda44f2cf3fb9c"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbd27c24a4cc5e195a7f56cfd9312e366d5d61b86e36d46bbe538457ea6eb8dd"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d9a9724a156c8ec6a379869b23ba3323b7ea3600851c91489b871e375f710bc8"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d8d4732cc5052e92cea2f78b233c2e2a52998ac40cd651f40e398893ad0d06ec"}, - {file = "grpcio-1.66.2-cp38-cp38-win32.whl", hash = "sha256:7b2c86457145ce14c38e5bf6bdc19ef88e66c5fee2c3d83285c5aef026ba93b3"}, - {file = "grpcio-1.66.2-cp38-cp38-win_amd64.whl", hash = "sha256:e88264caad6d8d00e7913996030bac8ad5f26b7411495848cc218bd3a9040b6c"}, - {file = "grpcio-1.66.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:c400ba5675b67025c8a9f48aa846f12a39cf0c44df5cd060e23fda5b30e9359d"}, - {file = "grpcio-1.66.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:66a0cd8ba6512b401d7ed46bb03f4ee455839957f28b8d61e7708056a806ba6a"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:06de8ec0bd71be123eec15b0e0d457474931c2c407869b6c349bd9bed4adbac3"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb57870449dfcfac428afbb5a877829fcb0d6db9d9baa1148705739e9083880e"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b672abf90a964bfde2d0ecbce30f2329a47498ba75ce6f4da35a2f4532b7acbc"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad2efdbe90c73b0434cbe64ed372e12414ad03c06262279b104a029d1889d13e"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9c3a99c519f4638e700e9e3f83952e27e2ea10873eecd7935823dab0c1c9250e"}, - {file = "grpcio-1.66.2-cp39-cp39-win32.whl", hash = "sha256:78fa51ebc2d9242c0fc5db0feecc57a9943303b46664ad89921f5079e2e4ada7"}, - {file = "grpcio-1.66.2-cp39-cp39-win_amd64.whl", hash = "sha256:728bdf36a186e7f51da73be7f8d09457a03061be848718d0edf000e709418987"}, - {file = "grpcio-1.66.2.tar.gz", hash = "sha256:563588c587b75c34b928bc428548e5b00ea38c46972181a4d8b75ba7e3f24231"}, + {file = "grpcio-1.67.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:8b0341d66a57f8a3119b77ab32207072be60c9bf79760fa609c5609f2deb1f3f"}, + {file = "grpcio-1.67.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:f5a27dddefe0e2357d3e617b9079b4bfdc91341a91565111a21ed6ebbc51b22d"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:43112046864317498a33bdc4797ae6a268c36345a910de9b9c17159d8346602f"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9b929f13677b10f63124c1a410994a401cdd85214ad83ab67cc077fc7e480f0"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7d1797a8a3845437d327145959a2c0c47c05947c9eef5ff1a4c80e499dcc6fa"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0489063974d1452436139501bf6b180f63d4977223ee87488fe36858c5725292"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9fd042de4a82e3e7aca44008ee2fb5da01b3e5adb316348c21980f7f58adc311"}, + {file = "grpcio-1.67.1-cp310-cp310-win32.whl", hash = "sha256:638354e698fd0c6c76b04540a850bf1db27b4d2515a19fcd5cf645c48d3eb1ed"}, + {file = "grpcio-1.67.1-cp310-cp310-win_amd64.whl", hash = "sha256:608d87d1bdabf9e2868b12338cd38a79969eaf920c89d698ead08f48de9c0f9e"}, + {file = "grpcio-1.67.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:7818c0454027ae3384235a65210bbf5464bd715450e30a3d40385453a85a70cb"}, + {file = "grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ea33986b70f83844cd00814cee4451055cd8cab36f00ac64a31f5bb09b31919e"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c7a01337407dd89005527623a4a72c5c8e2894d22bead0895306b23c6695698f"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b866f73224b0634f4312a4674c1be21b2b4afa73cb20953cbbb73a6b36c3cc"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fff78ba10d4250bfc07a01bd6254a6d87dc67f9627adece85c0b2ed754fa96"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8a23cbcc5bb11ea7dc6163078be36c065db68d915c24f5faa4f872c573bb400f"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1a65b503d008f066e994f34f456e0647e5ceb34cfcec5ad180b1b44020ad4970"}, + {file = "grpcio-1.67.1-cp311-cp311-win32.whl", hash = "sha256:e29ca27bec8e163dca0c98084040edec3bc49afd10f18b412f483cc68c712744"}, + {file = "grpcio-1.67.1-cp311-cp311-win_amd64.whl", hash = "sha256:786a5b18544622bfb1e25cc08402bd44ea83edfb04b93798d85dca4d1a0b5be5"}, + {file = "grpcio-1.67.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:267d1745894200e4c604958da5f856da6293f063327cb049a51fe67348e4f953"}, + {file = "grpcio-1.67.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:85f69fdc1d28ce7cff8de3f9c67db2b0ca9ba4449644488c1e0303c146135ddb"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:f26b0b547eb8d00e195274cdfc63ce64c8fc2d3e2d00b12bf468ece41a0423a0"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4422581cdc628f77302270ff839a44f4c24fdc57887dc2a45b7e53d8fc2376af"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7616d2ded471231c701489190379e0c311ee0a6c756f3c03e6a62b95a7146e"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8a00efecde9d6fcc3ab00c13f816313c040a28450e5e25739c24f432fc6d3c75"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:699e964923b70f3101393710793289e42845791ea07565654ada0969522d0a38"}, + {file = "grpcio-1.67.1-cp312-cp312-win32.whl", hash = "sha256:4e7b904484a634a0fff132958dabdb10d63e0927398273917da3ee103e8d1f78"}, + {file = "grpcio-1.67.1-cp312-cp312-win_amd64.whl", hash = "sha256:5721e66a594a6c4204458004852719b38f3d5522082be9061d6510b455c90afc"}, + {file = "grpcio-1.67.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:aa0162e56fd10a5547fac8774c4899fc3e18c1aa4a4759d0ce2cd00d3696ea6b"}, + {file = "grpcio-1.67.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:beee96c8c0b1a75d556fe57b92b58b4347c77a65781ee2ac749d550f2a365dc1"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:a93deda571a1bf94ec1f6fcda2872dad3ae538700d94dc283c672a3b508ba3af"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6f255980afef598a9e64a24efce87b625e3e3c80a45162d111a461a9f92955"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e838cad2176ebd5d4a8bb03955138d6589ce9e2ce5d51c3ada34396dbd2dba8"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a6703916c43b1d468d0756c8077b12017a9fcb6a1ef13faf49e67d20d7ebda62"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:917e8d8994eed1d86b907ba2a61b9f0aef27a2155bca6cbb322430fc7135b7bb"}, + {file = "grpcio-1.67.1-cp313-cp313-win32.whl", hash = "sha256:e279330bef1744040db8fc432becc8a727b84f456ab62b744d3fdb83f327e121"}, + {file = "grpcio-1.67.1-cp313-cp313-win_amd64.whl", hash = "sha256:fa0c739ad8b1996bd24823950e3cb5152ae91fca1c09cc791190bf1627ffefba"}, + {file = "grpcio-1.67.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:178f5db771c4f9a9facb2ab37a434c46cb9be1a75e820f187ee3d1e7805c4f65"}, + {file = "grpcio-1.67.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0f3e49c738396e93b7ba9016e153eb09e0778e776df6090c1b8c91877cc1c426"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:24e8a26dbfc5274d7474c27759b54486b8de23c709d76695237515bc8b5baeab"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b6c16489326d79ead41689c4b84bc40d522c9a7617219f4ad94bc7f448c5085"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e6a4dcf5af7bbc36fd9f81c9f372e8ae580870a9e4b6eafe948cd334b81cf3"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:95b5f2b857856ed78d72da93cd7d09b6db8ef30102e5e7fe0961fe4d9f7d48e8"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b49359977c6ec9f5d0573ea4e0071ad278ef905aa74e420acc73fd28ce39e9ce"}, + {file = "grpcio-1.67.1-cp38-cp38-win32.whl", hash = "sha256:f5b76ff64aaac53fede0cc93abf57894ab2a7362986ba22243d06218b93efe46"}, + {file = "grpcio-1.67.1-cp38-cp38-win_amd64.whl", hash = "sha256:804c6457c3cd3ec04fe6006c739579b8d35c86ae3298ffca8de57b493524b771"}, + {file = "grpcio-1.67.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:a25bdea92b13ff4d7790962190bf6bf5c4639876e01c0f3dda70fc2769616335"}, + {file = "grpcio-1.67.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cdc491ae35a13535fd9196acb5afe1af37c8237df2e54427be3eecda3653127e"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:85f862069b86a305497e74d0dc43c02de3d1d184fc2c180993aa8aa86fbd19b8"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec74ef02010186185de82cc594058a3ccd8d86821842bbac9873fd4a2cf8be8d"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01f616a964e540638af5130469451cf580ba8c7329f45ca998ab66e0c7dcdb04"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:299b3d8c4f790c6bcca485f9963b4846dd92cf6f1b65d3697145d005c80f9fe8"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:60336bff760fbb47d7e86165408126f1dded184448e9a4c892189eb7c9d3f90f"}, + {file = "grpcio-1.67.1-cp39-cp39-win32.whl", hash = "sha256:5ed601c4c6008429e3d247ddb367fe8c7259c355757448d7c1ef7bd4a6739e8e"}, + {file = "grpcio-1.67.1-cp39-cp39-win_amd64.whl", hash = "sha256:5db70d32d6703b89912af16d6d45d78406374a8b8ef0d28140351dd0ec610e98"}, + {file = "grpcio-1.67.1.tar.gz", hash = "sha256:3dc2ed4cabea4dc14d5e708c2b426205956077cc5de419b4d4079315017e9732"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.66.2)"] +protobuf = ["grpcio-tools (>=1.67.1)"] [[package]] name = "h11" @@ -1605,13 +1620,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -1673,92 +1688,92 @@ tests = ["psutil", "pytest (!=3.3.0)", "pytest-cov"] [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.22.0" +version = "3.23.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, - {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, + {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, + {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "matplotlib" @@ -1930,38 +1945,43 @@ typing-extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} [[package]] name = "mypy" -version = "1.11.2" +version = "1.13.0" description = "Optional static typing for Python" optional = false python-versions = ">=3.8" files = [ - {file = "mypy-1.11.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d42a6dd818ffce7be66cce644f1dff482f1d97c53ca70908dff0b9ddc120b77a"}, - {file = "mypy-1.11.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:801780c56d1cdb896eacd5619a83e427ce436d86a3bdf9112527f24a66618fef"}, - {file = "mypy-1.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41ea707d036a5307ac674ea172875f40c9d55c5394f888b168033177fce47383"}, - {file = "mypy-1.11.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6e658bd2d20565ea86da7d91331b0eed6d2eee22dc031579e6297f3e12c758c8"}, - {file = "mypy-1.11.2-cp310-cp310-win_amd64.whl", hash = "sha256:478db5f5036817fe45adb7332d927daa62417159d49783041338921dcf646fc7"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75746e06d5fa1e91bfd5432448d00d34593b52e7e91a187d981d08d1f33d4385"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a976775ab2256aadc6add633d44f100a2517d2388906ec4f13231fafbb0eccca"}, - {file = "mypy-1.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cd953f221ac1379050a8a646585a29574488974f79d8082cedef62744f0a0104"}, - {file = "mypy-1.11.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:57555a7715c0a34421013144a33d280e73c08df70f3a18a552938587ce9274f4"}, - {file = "mypy-1.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:36383a4fcbad95f2657642a07ba22ff797de26277158f1cc7bd234821468b1b6"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e8960dbbbf36906c5c0b7f4fbf2f0c7ffb20f4898e6a879fcf56a41a08b0d318"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06d26c277962f3fb50e13044674aa10553981ae514288cb7d0a738f495550b36"}, - {file = "mypy-1.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6e7184632d89d677973a14d00ae4d03214c8bc301ceefcdaf5c474866814c987"}, - {file = "mypy-1.11.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3a66169b92452f72117e2da3a576087025449018afc2d8e9bfe5ffab865709ca"}, - {file = "mypy-1.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:969ea3ef09617aff826885a22ece0ddef69d95852cdad2f60c8bb06bf1f71f70"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:37c7fa6121c1cdfcaac97ce3d3b5588e847aa79b580c1e922bb5d5d2902df19b"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a8a53bc3ffbd161b5b2a4fff2f0f1e23a33b0168f1c0778ec70e1a3d66deb86"}, - {file = "mypy-1.11.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2ff93107f01968ed834f4256bc1fc4475e2fecf6c661260066a985b52741ddce"}, - {file = "mypy-1.11.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:edb91dded4df17eae4537668b23f0ff6baf3707683734b6a818d5b9d0c0c31a1"}, - {file = "mypy-1.11.2-cp38-cp38-win_amd64.whl", hash = "sha256:ee23de8530d99b6db0573c4ef4bd8f39a2a6f9b60655bf7a1357e585a3486f2b"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:801ca29f43d5acce85f8e999b1e431fb479cb02d0e11deb7d2abb56bdaf24fd6"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af8d155170fcf87a2afb55b35dc1a0ac21df4431e7d96717621962e4b9192e70"}, - {file = "mypy-1.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7821776e5c4286b6a13138cc935e2e9b6fde05e081bdebf5cdb2bb97c9df81d"}, - {file = "mypy-1.11.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:539c570477a96a4e6fb718b8d5c3e0c0eba1f485df13f86d2970c91f0673148d"}, - {file = "mypy-1.11.2-cp39-cp39-win_amd64.whl", hash = "sha256:3f14cd3d386ac4d05c5a39a51b84387403dadbd936e17cb35882134d4f8f0d24"}, - {file = "mypy-1.11.2-py3-none-any.whl", hash = "sha256:b499bc07dbdcd3de92b0a8b29fdf592c111276f6a12fe29c30f6c417dd546d12"}, - {file = "mypy-1.11.2.tar.gz", hash = "sha256:7f9993ad3e0ffdc95c2a14b66dee63729f021968bff8ad911867579c65d13a79"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, ] [package.dependencies] @@ -1971,6 +1991,7 @@ typing-extensions = ">=4.6.0" [package.extras] dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] install-types = ["pip"] mypyc = ["setuptools (>=50)"] reports = ["lxml"] @@ -2078,68 +2099,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -2289,95 +2311,90 @@ pytzdata = ">=2020.1" [[package]] name = "pillow" -version = "10.4.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, - {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, - {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, - {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, - {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, - {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, - {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, - {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, - {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, - {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, - {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, - {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, - {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, - {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, - {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, - {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, - {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, - {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, - {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, - {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -2685,13 +2702,13 @@ tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] name = "pyparsing" -version = "3.1.4" +version = "3.2.0" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.9" files = [ - {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, - {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, + {file = "pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84"}, + {file = "pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c"}, ] [package.extras] @@ -3161,23 +3178,23 @@ test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "po [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -3203,60 +3220,68 @@ files = [ [[package]] name = "sqlalchemy" -version = "2.0.35" +version = "2.0.36" description = "Database Abstraction Library" optional = false python-versions = ">=3.7" files = [ - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:67219632be22f14750f0d1c70e62f204ba69d28f62fd6432ba05ab295853de9b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4668bd8faf7e5b71c0319407b608f278f279668f358857dbfd10ef1954ac9f90"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb8bea573863762bbf45d1e13f87c2d2fd32cee2dbd50d050f83f87429c9e1ea"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f552023710d4b93d8fb29a91fadf97de89c5926c6bd758897875435f2a939f33"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:016b2e665f778f13d3c438651dd4de244214b527a275e0acf1d44c05bc6026a9"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7befc148de64b6060937231cbff8d01ccf0bfd75aa26383ffdf8d82b12ec04ff"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win32.whl", hash = "sha256:22b83aed390e3099584b839b93f80a0f4a95ee7f48270c97c90acd40ee646f0b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win_amd64.whl", hash = "sha256:a29762cd3d116585278ffb2e5b8cc311fb095ea278b96feef28d0b423154858e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e21f66748ab725ade40fa7af8ec8b5019c68ab00b929f6643e1b1af461eddb60"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8a6219108a15fc6d24de499d0d515c7235c617b2540d97116b663dade1a54d62"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:042622a5306c23b972192283f4e22372da3b8ddf5f7aac1cc5d9c9b222ab3ff6"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:627dee0c280eea91aed87b20a1f849e9ae2fe719d52cbf847c0e0ea34464b3f7"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4fdcd72a789c1c31ed242fd8c1bcd9ea186a98ee8e5408a50e610edfef980d71"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:89b64cd8898a3a6f642db4eb7b26d1b28a497d4022eccd7717ca066823e9fb01"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win32.whl", hash = "sha256:6a93c5a0dfe8d34951e8a6f499a9479ffb9258123551fa007fc708ae2ac2bc5e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win_amd64.whl", hash = "sha256:c68fe3fcde03920c46697585620135b4ecfdfc1ed23e75cc2c2ae9f8502c10b8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:eb60b026d8ad0c97917cb81d3662d0b39b8ff1335e3fabb24984c6acd0c900a2"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6921ee01caf375363be5e9ae70d08ce7ca9d7e0e8983183080211a062d299468"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cdf1a0dbe5ced887a9b127da4ffd7354e9c1a3b9bb330dce84df6b70ccb3a8d"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93a71c8601e823236ac0e5d087e4f397874a421017b3318fd92c0b14acf2b6db"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e04b622bb8a88f10e439084486f2f6349bf4d50605ac3e445869c7ea5cf0fa8c"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1b56961e2d31389aaadf4906d453859f35302b4eb818d34a26fab72596076bb8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win32.whl", hash = "sha256:0f9f3f9a3763b9c4deb8c5d09c4cc52ffe49f9876af41cc1b2ad0138878453cf"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win_amd64.whl", hash = "sha256:25b0f63e7fcc2a6290cb5f7f5b4fc4047843504983a28856ce9b35d8f7de03cc"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f021d334f2ca692523aaf7bbf7592ceff70c8594fad853416a81d66b35e3abf9"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05c3f58cf91683102f2f0265c0db3bd3892e9eedabe059720492dbaa4f922da1"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:032d979ce77a6c2432653322ba4cbeabf5a6837f704d16fa38b5a05d8e21fa00"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:2e795c2f7d7249b75bb5f479b432a51b59041580d20599d4e112b5f2046437a3"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:cc32b2990fc34380ec2f6195f33a76b6cdaa9eecf09f0c9404b74fc120aef36f"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win32.whl", hash = "sha256:9509c4123491d0e63fb5e16199e09f8e262066e58903e84615c301dde8fa2e87"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win_amd64.whl", hash = "sha256:3655af10ebcc0f1e4e06c5900bb33e080d6a1fa4228f502121f28a3b1753cde5"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4c31943b61ed8fdd63dfd12ccc919f2bf95eefca133767db6fbbd15da62078ec"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a62dd5d7cc8626a3634208df458c5fe4f21200d96a74d122c83bc2015b333bc1"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0630774b0977804fba4b6bbea6852ab56c14965a2b0c7fc7282c5f7d90a1ae72"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d625eddf7efeba2abfd9c014a22c0f6b3796e0ffb48f5d5ab106568ef01ff5a"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ada603db10bb865bbe591939de854faf2c60f43c9b763e90f653224138f910d9"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c41411e192f8d3ea39ea70e0fae48762cd11a2244e03751a98bd3c0ca9a4e936"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win32.whl", hash = "sha256:d299797d75cd747e7797b1b41817111406b8b10a4f88b6e8fe5b5e59598b43b0"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win_amd64.whl", hash = "sha256:0375a141e1c0878103eb3d719eb6d5aa444b490c96f3fedab8471c7f6ffe70ee"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ccae5de2a0140d8be6838c331604f91d6fafd0735dbdcee1ac78fc8fbaba76b4"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2a275a806f73e849e1c309ac11108ea1a14cd7058577aba962cd7190e27c9e3c"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:732e026240cdd1c1b2e3ac515c7a23820430ed94292ce33806a95869c46bd139"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890da8cd1941fa3dab28c5bac3b9da8502e7e366f895b3b8e500896f12f94d11"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c0d8326269dbf944b9201911b0d9f3dc524d64779a07518199a58384c3d37a44"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b76d63495b0508ab9fc23f8152bac63205d2a704cd009a2b0722f4c8e0cba8e0"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win32.whl", hash = "sha256:69683e02e8a9de37f17985905a5eca18ad651bf592314b4d3d799029797d0eb3"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win_amd64.whl", hash = "sha256:aee110e4ef3c528f3abbc3c2018c121e708938adeeff9006428dd7c8555e9b3f"}, - {file = "SQLAlchemy-2.0.35-py3-none-any.whl", hash = "sha256:2ab3f0336c0387662ce6221ad30ab3a5e6499aab01b9790879b6578fd9b8faa1"}, - {file = "sqlalchemy-2.0.35.tar.gz", hash = "sha256:e11d7ea4d24f0a262bccf9a7cd6284c976c5369dac21db237cff59586045ab9f"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:59b8f3adb3971929a3e660337f5dacc5942c2cdb760afcabb2614ffbda9f9f72"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37350015056a553e442ff672c2d20e6f4b6d0b2495691fa239d8aa18bb3bc908"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8318f4776c85abc3f40ab185e388bee7a6ea99e7fa3a30686580b209eaa35c08"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c245b1fbade9c35e5bd3b64270ab49ce990369018289ecfde3f9c318411aaa07"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69f93723edbca7342624d09f6704e7126b152eaed3cdbb634cb657a54332a3c5"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f9511d8dd4a6e9271d07d150fb2f81874a3c8c95e11ff9af3a2dfc35fe42ee44"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win32.whl", hash = "sha256:c3f3631693003d8e585d4200730616b78fafd5a01ef8b698f6967da5c605b3fa"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win_amd64.whl", hash = "sha256:a86bfab2ef46d63300c0f06936bd6e6c0105faa11d509083ba8f2f9d237fb5b5"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fd3a55deef00f689ce931d4d1b23fa9f04c880a48ee97af488fd215cf24e2a6c"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4f5e9cd989b45b73bd359f693b935364f7e1f79486e29015813c338450aa5a71"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0ddd9db6e59c44875211bc4c7953a9f6638b937b0a88ae6d09eb46cced54eff"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2519f3a5d0517fc159afab1015e54bb81b4406c278749779be57a569d8d1bb0d"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59b1ee96617135f6e1d6f275bbe988f419c5178016f3d41d3c0abb0c819f75bb"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:39769a115f730d683b0eb7b694db9789267bcd027326cccc3125e862eb03bfd8"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win32.whl", hash = "sha256:66bffbad8d6271bb1cc2f9a4ea4f86f80fe5e2e3e501a5ae2a3dc6a76e604e6f"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win_amd64.whl", hash = "sha256:23623166bfefe1487d81b698c423f8678e80df8b54614c2bf4b4cfcd7c711959"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f7b64e6ec3f02c35647be6b4851008b26cff592a95ecb13b6788a54ef80bbdd4"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:46331b00096a6db1fdc052d55b101dbbfc99155a548e20a0e4a8e5e4d1362855"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdf3386a801ea5aba17c6410dd1dc8d39cf454ca2565541b5ac42a84e1e28f53"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac9dfa18ff2a67b09b372d5db8743c27966abf0e5344c555d86cc7199f7ad83a"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:90812a8933df713fdf748b355527e3af257a11e415b613dd794512461eb8a686"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1bc330d9d29c7f06f003ab10e1eaced295e87940405afe1b110f2eb93a233588"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win32.whl", hash = "sha256:79d2e78abc26d871875b419e1fd3c0bca31a1cb0043277d0d850014599626c2e"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win_amd64.whl", hash = "sha256:b544ad1935a8541d177cb402948b94e871067656b3a0b9e91dbec136b06a2ff5"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5cc79df7f4bc3d11e4b542596c03826063092611e481fcf1c9dfee3c94355ef"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3c01117dd36800f2ecaa238c65365b7b16497adc1522bf84906e5710ee9ba0e8"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bc633f4ee4b4c46e7adcb3a9b5ec083bf1d9a97c1d3854b92749d935de40b9b"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e46ed38affdfc95d2c958de328d037d87801cfcbea6d421000859e9789e61c2"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b2985c0b06e989c043f1dc09d4fe89e1616aadd35392aea2844f0458a989eacf"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a121d62ebe7d26fec9155f83f8be5189ef1405f5973ea4874a26fab9f1e262c"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win32.whl", hash = "sha256:0572f4bd6f94752167adfd7c1bed84f4b240ee6203a95e05d1e208d488d0d436"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win_amd64.whl", hash = "sha256:8c78ac40bde930c60e0f78b3cd184c580f89456dd87fc08f9e3ee3ce8765ce88"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:be9812b766cad94a25bc63bec11f88c4ad3629a0cec1cd5d4ba48dc23860486b"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aae840ebbd6cdd41af1c14590e5741665e5272d2fee999306673a1bb1fdb4d"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4557e1f11c5f653ebfdd924f3f9d5ebfc718283b0b9beebaa5dd6b77ec290971"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07b441f7d03b9a66299ce7ccf3ef2900abc81c0db434f42a5694a37bd73870f2"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:28120ef39c92c2dd60f2721af9328479516844c6b550b077ca450c7d7dc68575"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win32.whl", hash = "sha256:b81ee3d84803fd42d0b154cb6892ae57ea6b7c55d8359a02379965706c7efe6c"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win_amd64.whl", hash = "sha256:f942a799516184c855e1a32fbc7b29d7e571b52612647866d4ec1c3242578fcb"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3d6718667da04294d7df1670d70eeddd414f313738d20a6f1d1f379e3139a545"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:72c28b84b174ce8af8504ca28ae9347d317f9dba3999e5981a3cd441f3712e24"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b11d0cfdd2b095e7b0686cf5fabeb9c67fae5b06d265d8180715b8cfa86522e3"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e32092c47011d113dc01ab3e1d3ce9f006a47223b18422c5c0d150af13a00687"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6a440293d802d3011028e14e4226da1434b373cbaf4a4bbb63f845761a708346"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c54a1e53a0c308a8e8a7dffb59097bff7facda27c70c286f005327f21b2bd6b1"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win32.whl", hash = "sha256:1e0d612a17581b6616ff03c8e3d5eff7452f34655c901f75d62bd86449d9750e"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win_amd64.whl", hash = "sha256:8958b10490125124463095bbdadda5aa22ec799f91958e410438ad6c97a7b793"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc022184d3e5cacc9579e41805a681187650e170eb2fd70e28b86192a479dcaa"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b817d41d692bf286abc181f8af476c4fbef3fd05e798777492618378448ee689"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4e46a888b54be23d03a89be510f24a7652fe6ff660787b96cd0e57a4ebcb46d"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4ae3005ed83f5967f961fd091f2f8c5329161f69ce8480aa8168b2d7fe37f06"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:03e08af7a5f9386a43919eda9de33ffda16b44eb11f3b313e6822243770e9763"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3dbb986bad3ed5ceaf090200eba750b5245150bd97d3e67343a3cfed06feecf7"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win32.whl", hash = "sha256:9fe53b404f24789b5ea9003fc25b9a3988feddebd7e7b369c8fac27ad6f52f28"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win_amd64.whl", hash = "sha256:af148a33ff0349f53512a049c6406923e4e02bf2f26c5fb285f143faf4f0e46a"}, + {file = "SQLAlchemy-2.0.36-py3-none-any.whl", hash = "sha256:fddbe92b4760c6f5d48162aef14824add991aeda8ddadb3c31d56eb15ca69f8e"}, + {file = "sqlalchemy-2.0.36.tar.gz", hash = "sha256:7f2767680b6d2398aea7082e45a774b2b0767b5c8d8ffb9c8b683088ea9b29c5"}, ] [package.dependencies] @@ -3269,7 +3294,7 @@ aioodbc = ["aioodbc", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5,!=1.1.10)"] mssql = ["pyodbc"] mssql-pymssql = ["pymssql"] mssql-pyodbc = ["pyodbc"] @@ -3372,13 +3397,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] @@ -3564,109 +3589,93 @@ files = [ [[package]] name = "yarl" -version = "1.15.0" +version = "1.17.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19"}, - {file = "yarl-1.15.0-cp310-cp310-win32.whl", hash = "sha256:4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9"}, - {file = "yarl-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1"}, - {file = "yarl-1.15.0-cp311-cp311-win32.whl", hash = "sha256:a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb"}, - {file = "yarl-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d"}, - {file = "yarl-1.15.0-cp312-cp312-win32.whl", hash = "sha256:e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4"}, - {file = "yarl-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e"}, - {file = "yarl-1.15.0-cp313-cp313-win32.whl", hash = "sha256:eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53"}, - {file = "yarl-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738"}, - {file = "yarl-1.15.0-cp38-cp38-win32.whl", hash = "sha256:d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95"}, - {file = "yarl-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9"}, - {file = "yarl-1.15.0-cp39-cp39-win32.whl", hash = "sha256:a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb"}, - {file = "yarl-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0"}, - {file = "yarl-1.15.0-py3-none-any.whl", hash = "sha256:1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5"}, - {file = "yarl-1.15.0.tar.gz", hash = "sha256:efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-pinecone/pyproject.toml b/airbyte-integrations/connectors/destination-pinecone/pyproject.toml index 1da55f8c2888..f863fa238dc7 100644 --- a/airbyte-integrations/connectors/destination-pinecone/pyproject.toml +++ b/airbyte-integrations/connectors/destination-pinecone/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-pinecone" -version = "0.1.26" +version = "0.1.27" description = "Airbyte destination implementation for Pinecone." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/pinecone.md b/docs/integrations/destinations/pinecone.md index 410916d4bb48..b14fa57ff858 100644 --- a/docs/integrations/destinations/pinecone.md +++ b/docs/integrations/destinations/pinecone.md @@ -79,6 +79,7 @@ OpenAI and Fake embeddings produce vectors with 1536 dimensions, and the Cohere | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------- | +| 0.1.27 | 2024-10-29 | [47106](https://github.com/airbytehq/airbyte/pull/47106) | Update dependencies | | 0.1.26 | 2024-10-12 | [46782](https://github.com/airbytehq/airbyte/pull/46782) | Update dependencies | | 0.1.25 | 2024-10-05 | [46474](https://github.com/airbytehq/airbyte/pull/46474) | Update dependencies | | 0.1.24 | 2024-09-28 | [46127](https://github.com/airbytehq/airbyte/pull/46127) | Update dependencies | From 805f1792adde29c346728ad1d0fe3ff309879588 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:11:51 +0200 Subject: [PATCH 336/808] =?UTF-8?q?=F0=9F=90=99=20source-rss:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-29]=20(#47104)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rss/metadata.yaml | 2 +- .../connectors/source-rss/poetry.lock | 267 +++++++++--------- .../connectors/source-rss/pyproject.toml | 2 +- docs/integrations/sources/rss.md | 1 + 4 files changed, 137 insertions(+), 135 deletions(-) diff --git a/airbyte-integrations/connectors/source-rss/metadata.yaml b/airbyte-integrations/connectors/source-rss/metadata.yaml index 31fe40dd0f85..a223dc0df961 100644 --- a/airbyte-integrations/connectors/source-rss/metadata.yaml +++ b/airbyte-integrations/connectors/source-rss/metadata.yaml @@ -24,7 +24,7 @@ data: connectorSubtype: api connectorType: source definitionId: 0efee448-6948-49e2-b786-17db50647908 - dockerImageTag: 1.0.22 + dockerImageTag: 1.0.23 dockerRepository: airbyte/source-rss githubIssueLabel: source-rss icon: rss.svg diff --git a/airbyte-integrations/connectors/source-rss/poetry.lock b/airbyte-integrations/connectors/source-rss/poetry.lock index 05666f47cee5..8c1e317345cf 100644 --- a/airbyte-integrations/connectors/source-rss/poetry.lock +++ b/airbyte-integrations/connectors/source-rss/poetry.lock @@ -55,13 +55,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -72,7 +72,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -682,13 +682,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -700,138 +700,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1274,23 +1275,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "sgmllib3k" diff --git a/airbyte-integrations/connectors/source-rss/pyproject.toml b/airbyte-integrations/connectors/source-rss/pyproject.toml index 6272a69d3739..e0e3e8935ffe 100644 --- a/airbyte-integrations/connectors/source-rss/pyproject.toml +++ b/airbyte-integrations/connectors/source-rss/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.22" +version = "1.0.23" name = "source-rss" description = "Source implementation for rss." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/rss.md b/docs/integrations/sources/rss.md index 543ffb3f97e9..485f5b5c13c2 100644 --- a/docs/integrations/sources/rss.md +++ b/docs/integrations/sources/rss.md @@ -38,6 +38,7 @@ None | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------- | +| 1.0.23 | 2024-10-29 | [47104](https://github.com/airbytehq/airbyte/pull/47104) | Update dependencies | | 1.0.22 | 2024-10-12 | [46793](https://github.com/airbytehq/airbyte/pull/46793) | Update dependencies | | 1.0.21 | 2024-10-05 | [46454](https://github.com/airbytehq/airbyte/pull/46454) | Update dependencies | | 1.0.20 | 2024-09-28 | [46185](https://github.com/airbytehq/airbyte/pull/46185) | Update dependencies | From 7f9ddb33cf9b14b0ea673301449b618d56a61a83 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:12:06 +0200 Subject: [PATCH 337/808] =?UTF-8?q?=F0=9F=90=99=20destination-xata:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47076)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-xata/metadata.yaml | 2 +- .../connectors/destination-xata/poetry.lock | 253 +++++++++--------- .../destination-xata/pyproject.toml | 2 +- docs/integrations/destinations/xata.md | 1 + 4 files changed, 130 insertions(+), 128 deletions(-) diff --git a/airbyte-integrations/connectors/destination-xata/metadata.yaml b/airbyte-integrations/connectors/destination-xata/metadata.yaml index 191cd0a58925..0ef013c4e43a 100644 --- a/airbyte-integrations/connectors/destination-xata/metadata.yaml +++ b/airbyte-integrations/connectors/destination-xata/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 2a51c92d-0fb4-4e54-94d2-cce631f24d1f - dockerImageTag: 0.1.24 + dockerImageTag: 0.1.25 dockerRepository: airbyte/destination-xata githubIssueLabel: destination-xata icon: xata.svg diff --git a/airbyte-integrations/connectors/destination-xata/poetry.lock b/airbyte-integrations/connectors/destination-xata/poetry.lock index 73374fba62e4..53ca7783d18f 100644 --- a/airbyte-integrations/connectors/destination-xata/poetry.lock +++ b/airbyte-integrations/connectors/destination-xata/poetry.lock @@ -421,138 +421,139 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -922,23 +923,23 @@ yaml = ["pyyaml (>=6.0.1)"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-xata/pyproject.toml b/airbyte-integrations/connectors/destination-xata/pyproject.toml index 4cb47132732c..249cbde2e37e 100644 --- a/airbyte-integrations/connectors/destination-xata/pyproject.toml +++ b/airbyte-integrations/connectors/destination-xata/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.24" +version = "0.1.25" name = "destination-xata" description = "Destination implementation for Xata.io" authors = [ "Philip Krauss ",] diff --git a/docs/integrations/destinations/xata.md b/docs/integrations/destinations/xata.md index 29d87bc8abc7..5ebb3617a73d 100644 --- a/docs/integrations/destinations/xata.md +++ b/docs/integrations/destinations/xata.md @@ -40,6 +40,7 @@ In order to connect, you need: | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------- | +| 0.1.25 | 2024-10-29 | [47076](https://github.com/airbytehq/airbyte/pull/47076) | Update dependencies | | 0.1.24 | 2024-10-12 | [46765](https://github.com/airbytehq/airbyte/pull/46765) | Update dependencies | | 0.1.23 | 2024-10-05 | [46467](https://github.com/airbytehq/airbyte/pull/46467) | Update dependencies | | 0.1.22 | 2024-09-28 | [46107](https://github.com/airbytehq/airbyte/pull/46107) | Update dependencies | From 59eacce414f1867dbd2bdcf6370c44e12abe8b86 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:12:14 +0200 Subject: [PATCH 338/808] =?UTF-8?q?=F0=9F=90=99=20destination-timeplus:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47059)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-timeplus/metadata.yaml | 2 +- .../destination-timeplus/poetry.lock | 377 +++++++++--------- .../destination-timeplus/pyproject.toml | 2 +- docs/integrations/destinations/timeplus.md | 1 + 4 files changed, 196 insertions(+), 186 deletions(-) diff --git a/airbyte-integrations/connectors/destination-timeplus/metadata.yaml b/airbyte-integrations/connectors/destination-timeplus/metadata.yaml index eacd0eeba89e..c54f9395e038 100644 --- a/airbyte-integrations/connectors/destination-timeplus/metadata.yaml +++ b/airbyte-integrations/connectors/destination-timeplus/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: f70a8ece-351e-4790-b37b-cb790bcd6d54 - dockerImageTag: 0.1.25 + dockerImageTag: 0.1.26 dockerRepository: airbyte/destination-timeplus githubIssueLabel: destination-timeplus icon: timeplus.svg diff --git a/airbyte-integrations/connectors/destination-timeplus/poetry.lock b/airbyte-integrations/connectors/destination-timeplus/poetry.lock index 4d482f9ff838..64f5064e8d97 100644 --- a/airbyte-integrations/connectors/destination-timeplus/poetry.lock +++ b/airbyte-integrations/connectors/destination-timeplus/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -755,13 +755,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -791,138 +791,139 @@ dev = ["Sphinx (==7.2.5)", "colorama (==0.4.5)", "colorama (==0.4.6)", "exceptio [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1365,23 +1366,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1407,60 +1408,68 @@ files = [ [[package]] name = "sqlalchemy" -version = "2.0.35" +version = "2.0.36" description = "Database Abstraction Library" optional = false python-versions = ">=3.7" files = [ - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:67219632be22f14750f0d1c70e62f204ba69d28f62fd6432ba05ab295853de9b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4668bd8faf7e5b71c0319407b608f278f279668f358857dbfd10ef1954ac9f90"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb8bea573863762bbf45d1e13f87c2d2fd32cee2dbd50d050f83f87429c9e1ea"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f552023710d4b93d8fb29a91fadf97de89c5926c6bd758897875435f2a939f33"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:016b2e665f778f13d3c438651dd4de244214b527a275e0acf1d44c05bc6026a9"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7befc148de64b6060937231cbff8d01ccf0bfd75aa26383ffdf8d82b12ec04ff"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win32.whl", hash = "sha256:22b83aed390e3099584b839b93f80a0f4a95ee7f48270c97c90acd40ee646f0b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win_amd64.whl", hash = "sha256:a29762cd3d116585278ffb2e5b8cc311fb095ea278b96feef28d0b423154858e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e21f66748ab725ade40fa7af8ec8b5019c68ab00b929f6643e1b1af461eddb60"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8a6219108a15fc6d24de499d0d515c7235c617b2540d97116b663dade1a54d62"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:042622a5306c23b972192283f4e22372da3b8ddf5f7aac1cc5d9c9b222ab3ff6"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:627dee0c280eea91aed87b20a1f849e9ae2fe719d52cbf847c0e0ea34464b3f7"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4fdcd72a789c1c31ed242fd8c1bcd9ea186a98ee8e5408a50e610edfef980d71"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:89b64cd8898a3a6f642db4eb7b26d1b28a497d4022eccd7717ca066823e9fb01"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win32.whl", hash = "sha256:6a93c5a0dfe8d34951e8a6f499a9479ffb9258123551fa007fc708ae2ac2bc5e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win_amd64.whl", hash = "sha256:c68fe3fcde03920c46697585620135b4ecfdfc1ed23e75cc2c2ae9f8502c10b8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:eb60b026d8ad0c97917cb81d3662d0b39b8ff1335e3fabb24984c6acd0c900a2"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6921ee01caf375363be5e9ae70d08ce7ca9d7e0e8983183080211a062d299468"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cdf1a0dbe5ced887a9b127da4ffd7354e9c1a3b9bb330dce84df6b70ccb3a8d"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93a71c8601e823236ac0e5d087e4f397874a421017b3318fd92c0b14acf2b6db"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e04b622bb8a88f10e439084486f2f6349bf4d50605ac3e445869c7ea5cf0fa8c"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1b56961e2d31389aaadf4906d453859f35302b4eb818d34a26fab72596076bb8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win32.whl", hash = "sha256:0f9f3f9a3763b9c4deb8c5d09c4cc52ffe49f9876af41cc1b2ad0138878453cf"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win_amd64.whl", hash = "sha256:25b0f63e7fcc2a6290cb5f7f5b4fc4047843504983a28856ce9b35d8f7de03cc"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f021d334f2ca692523aaf7bbf7592ceff70c8594fad853416a81d66b35e3abf9"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05c3f58cf91683102f2f0265c0db3bd3892e9eedabe059720492dbaa4f922da1"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:032d979ce77a6c2432653322ba4cbeabf5a6837f704d16fa38b5a05d8e21fa00"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:2e795c2f7d7249b75bb5f479b432a51b59041580d20599d4e112b5f2046437a3"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:cc32b2990fc34380ec2f6195f33a76b6cdaa9eecf09f0c9404b74fc120aef36f"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win32.whl", hash = "sha256:9509c4123491d0e63fb5e16199e09f8e262066e58903e84615c301dde8fa2e87"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win_amd64.whl", hash = "sha256:3655af10ebcc0f1e4e06c5900bb33e080d6a1fa4228f502121f28a3b1753cde5"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4c31943b61ed8fdd63dfd12ccc919f2bf95eefca133767db6fbbd15da62078ec"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a62dd5d7cc8626a3634208df458c5fe4f21200d96a74d122c83bc2015b333bc1"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0630774b0977804fba4b6bbea6852ab56c14965a2b0c7fc7282c5f7d90a1ae72"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d625eddf7efeba2abfd9c014a22c0f6b3796e0ffb48f5d5ab106568ef01ff5a"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ada603db10bb865bbe591939de854faf2c60f43c9b763e90f653224138f910d9"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c41411e192f8d3ea39ea70e0fae48762cd11a2244e03751a98bd3c0ca9a4e936"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win32.whl", hash = "sha256:d299797d75cd747e7797b1b41817111406b8b10a4f88b6e8fe5b5e59598b43b0"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win_amd64.whl", hash = "sha256:0375a141e1c0878103eb3d719eb6d5aa444b490c96f3fedab8471c7f6ffe70ee"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ccae5de2a0140d8be6838c331604f91d6fafd0735dbdcee1ac78fc8fbaba76b4"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2a275a806f73e849e1c309ac11108ea1a14cd7058577aba962cd7190e27c9e3c"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:732e026240cdd1c1b2e3ac515c7a23820430ed94292ce33806a95869c46bd139"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890da8cd1941fa3dab28c5bac3b9da8502e7e366f895b3b8e500896f12f94d11"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c0d8326269dbf944b9201911b0d9f3dc524d64779a07518199a58384c3d37a44"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b76d63495b0508ab9fc23f8152bac63205d2a704cd009a2b0722f4c8e0cba8e0"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win32.whl", hash = "sha256:69683e02e8a9de37f17985905a5eca18ad651bf592314b4d3d799029797d0eb3"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win_amd64.whl", hash = "sha256:aee110e4ef3c528f3abbc3c2018c121e708938adeeff9006428dd7c8555e9b3f"}, - {file = "SQLAlchemy-2.0.35-py3-none-any.whl", hash = "sha256:2ab3f0336c0387662ce6221ad30ab3a5e6499aab01b9790879b6578fd9b8faa1"}, - {file = "sqlalchemy-2.0.35.tar.gz", hash = "sha256:e11d7ea4d24f0a262bccf9a7cd6284c976c5369dac21db237cff59586045ab9f"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:59b8f3adb3971929a3e660337f5dacc5942c2cdb760afcabb2614ffbda9f9f72"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37350015056a553e442ff672c2d20e6f4b6d0b2495691fa239d8aa18bb3bc908"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8318f4776c85abc3f40ab185e388bee7a6ea99e7fa3a30686580b209eaa35c08"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c245b1fbade9c35e5bd3b64270ab49ce990369018289ecfde3f9c318411aaa07"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69f93723edbca7342624d09f6704e7126b152eaed3cdbb634cb657a54332a3c5"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f9511d8dd4a6e9271d07d150fb2f81874a3c8c95e11ff9af3a2dfc35fe42ee44"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win32.whl", hash = "sha256:c3f3631693003d8e585d4200730616b78fafd5a01ef8b698f6967da5c605b3fa"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win_amd64.whl", hash = "sha256:a86bfab2ef46d63300c0f06936bd6e6c0105faa11d509083ba8f2f9d237fb5b5"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fd3a55deef00f689ce931d4d1b23fa9f04c880a48ee97af488fd215cf24e2a6c"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4f5e9cd989b45b73bd359f693b935364f7e1f79486e29015813c338450aa5a71"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0ddd9db6e59c44875211bc4c7953a9f6638b937b0a88ae6d09eb46cced54eff"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2519f3a5d0517fc159afab1015e54bb81b4406c278749779be57a569d8d1bb0d"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59b1ee96617135f6e1d6f275bbe988f419c5178016f3d41d3c0abb0c819f75bb"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:39769a115f730d683b0eb7b694db9789267bcd027326cccc3125e862eb03bfd8"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win32.whl", hash = "sha256:66bffbad8d6271bb1cc2f9a4ea4f86f80fe5e2e3e501a5ae2a3dc6a76e604e6f"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win_amd64.whl", hash = "sha256:23623166bfefe1487d81b698c423f8678e80df8b54614c2bf4b4cfcd7c711959"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f7b64e6ec3f02c35647be6b4851008b26cff592a95ecb13b6788a54ef80bbdd4"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:46331b00096a6db1fdc052d55b101dbbfc99155a548e20a0e4a8e5e4d1362855"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdf3386a801ea5aba17c6410dd1dc8d39cf454ca2565541b5ac42a84e1e28f53"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac9dfa18ff2a67b09b372d5db8743c27966abf0e5344c555d86cc7199f7ad83a"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:90812a8933df713fdf748b355527e3af257a11e415b613dd794512461eb8a686"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1bc330d9d29c7f06f003ab10e1eaced295e87940405afe1b110f2eb93a233588"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win32.whl", hash = "sha256:79d2e78abc26d871875b419e1fd3c0bca31a1cb0043277d0d850014599626c2e"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win_amd64.whl", hash = "sha256:b544ad1935a8541d177cb402948b94e871067656b3a0b9e91dbec136b06a2ff5"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5cc79df7f4bc3d11e4b542596c03826063092611e481fcf1c9dfee3c94355ef"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3c01117dd36800f2ecaa238c65365b7b16497adc1522bf84906e5710ee9ba0e8"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bc633f4ee4b4c46e7adcb3a9b5ec083bf1d9a97c1d3854b92749d935de40b9b"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e46ed38affdfc95d2c958de328d037d87801cfcbea6d421000859e9789e61c2"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b2985c0b06e989c043f1dc09d4fe89e1616aadd35392aea2844f0458a989eacf"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a121d62ebe7d26fec9155f83f8be5189ef1405f5973ea4874a26fab9f1e262c"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win32.whl", hash = "sha256:0572f4bd6f94752167adfd7c1bed84f4b240ee6203a95e05d1e208d488d0d436"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win_amd64.whl", hash = "sha256:8c78ac40bde930c60e0f78b3cd184c580f89456dd87fc08f9e3ee3ce8765ce88"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:be9812b766cad94a25bc63bec11f88c4ad3629a0cec1cd5d4ba48dc23860486b"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aae840ebbd6cdd41af1c14590e5741665e5272d2fee999306673a1bb1fdb4d"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4557e1f11c5f653ebfdd924f3f9d5ebfc718283b0b9beebaa5dd6b77ec290971"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07b441f7d03b9a66299ce7ccf3ef2900abc81c0db434f42a5694a37bd73870f2"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:28120ef39c92c2dd60f2721af9328479516844c6b550b077ca450c7d7dc68575"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win32.whl", hash = "sha256:b81ee3d84803fd42d0b154cb6892ae57ea6b7c55d8359a02379965706c7efe6c"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win_amd64.whl", hash = "sha256:f942a799516184c855e1a32fbc7b29d7e571b52612647866d4ec1c3242578fcb"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3d6718667da04294d7df1670d70eeddd414f313738d20a6f1d1f379e3139a545"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:72c28b84b174ce8af8504ca28ae9347d317f9dba3999e5981a3cd441f3712e24"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b11d0cfdd2b095e7b0686cf5fabeb9c67fae5b06d265d8180715b8cfa86522e3"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e32092c47011d113dc01ab3e1d3ce9f006a47223b18422c5c0d150af13a00687"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6a440293d802d3011028e14e4226da1434b373cbaf4a4bbb63f845761a708346"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c54a1e53a0c308a8e8a7dffb59097bff7facda27c70c286f005327f21b2bd6b1"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win32.whl", hash = "sha256:1e0d612a17581b6616ff03c8e3d5eff7452f34655c901f75d62bd86449d9750e"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win_amd64.whl", hash = "sha256:8958b10490125124463095bbdadda5aa22ec799f91958e410438ad6c97a7b793"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc022184d3e5cacc9579e41805a681187650e170eb2fd70e28b86192a479dcaa"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b817d41d692bf286abc181f8af476c4fbef3fd05e798777492618378448ee689"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4e46a888b54be23d03a89be510f24a7652fe6ff660787b96cd0e57a4ebcb46d"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4ae3005ed83f5967f961fd091f2f8c5329161f69ce8480aa8168b2d7fe37f06"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:03e08af7a5f9386a43919eda9de33ffda16b44eb11f3b313e6822243770e9763"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3dbb986bad3ed5ceaf090200eba750b5245150bd97d3e67343a3cfed06feecf7"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win32.whl", hash = "sha256:9fe53b404f24789b5ea9003fc25b9a3988feddebd7e7b369c8fac27ad6f52f28"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win_amd64.whl", hash = "sha256:af148a33ff0349f53512a049c6406923e4e02bf2f26c5fb285f143faf4f0e46a"}, + {file = "SQLAlchemy-2.0.36-py3-none-any.whl", hash = "sha256:fddbe92b4760c6f5d48162aef14824add991aeda8ddadb3c31d56eb15ca69f8e"}, + {file = "sqlalchemy-2.0.36.tar.gz", hash = "sha256:7f2767680b6d2398aea7082e45a774b2b0767b5c8d8ffb9c8b683088ea9b29c5"}, ] [package.dependencies] @@ -1473,7 +1482,7 @@ aioodbc = ["aioodbc", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5,!=1.1.10)"] mssql = ["pyodbc"] mssql-pymssql = ["pymssql"] mssql-pyodbc = ["pyodbc"] diff --git a/airbyte-integrations/connectors/destination-timeplus/pyproject.toml b/airbyte-integrations/connectors/destination-timeplus/pyproject.toml index 0a49dd409a1d..c41e0d60cc7e 100644 --- a/airbyte-integrations/connectors/destination-timeplus/pyproject.toml +++ b/airbyte-integrations/connectors/destination-timeplus/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.25" +version = "0.1.26" name = "destination-timeplus" description = "Destination implementation for Timeplus." authors = ["Airbyte "] diff --git a/docs/integrations/destinations/timeplus.md b/docs/integrations/destinations/timeplus.md index aeef46251d3e..0a95e23e88d4 100644 --- a/docs/integrations/destinations/timeplus.md +++ b/docs/integrations/destinations/timeplus.md @@ -39,6 +39,7 @@ You'll need the following information to configure the Timeplus destination: | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :------------------- | +| 0.1.26 | 2024-10-29 | [47059](https://github.com/airbytehq/airbyte/pull/47059) | Update dependencies | | 0.1.25 | 2024-10-12 | [46788](https://github.com/airbytehq/airbyte/pull/46788) | Update dependencies | | 0.1.24 | 2024-10-05 | [46443](https://github.com/airbytehq/airbyte/pull/46443) | Update dependencies | | 0.1.23 | 2024-09-28 | [46130](https://github.com/airbytehq/airbyte/pull/46130) | Update dependencies | From 9ee91bf7e1f6231b5fcd65b5031f3a224469a82e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 16:12:24 +0200 Subject: [PATCH 339/808] =?UTF-8?q?=F0=9F=90=99=20source-s3:=20run=20up-to?= =?UTF-8?q?-date=20pipeline=20[2024-10-29]=20(#47038)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-s3/metadata.yaml | 2 +- .../connectors/source-s3/poetry.lock | 864 +++++++++--------- .../connectors/source-s3/pyproject.toml | 2 +- docs/integrations/sources/s3.md | 1 + 4 files changed, 433 insertions(+), 436 deletions(-) diff --git a/airbyte-integrations/connectors/source-s3/metadata.yaml b/airbyte-integrations/connectors/source-s3/metadata.yaml index 4adbdbbf3546..599967946faa 100644 --- a/airbyte-integrations/connectors/source-s3/metadata.yaml +++ b/airbyte-integrations/connectors/source-s3/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: file connectorType: source definitionId: 69589781-7828-43c5-9f63-8925b1c1ccc2 - dockerImageTag: 4.9.0 + dockerImageTag: 4.9.1 dockerRepository: airbyte/source-s3 documentationUrl: https://docs.airbyte.com/integrations/sources/s3 githubIssueLabel: source-s3 diff --git a/airbyte-integrations/connectors/source-s3/poetry.lock b/airbyte-integrations/connectors/source-s3/poetry.lock index 449dd98a3c7a..4604549ac973 100644 --- a/airbyte-integrations/connectors/source-s3/poetry.lock +++ b/airbyte-integrations/connectors/source-s3/poetry.lock @@ -79,13 +79,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.2" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "anyio-4.6.2-py3-none-any.whl", hash = "sha256:6caec6b1391f6f6d7b2ef2258d2902d36753149f67478f7df4be8e54d03a8f54"}, - {file = "anyio-4.6.2.tar.gz", hash = "sha256:f72a7bb3dd0752b3bd8b17a844a019d7fbf6ae218c588f4f9ba1b2f600b12347"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -187,17 +187,17 @@ lxml = ["lxml"] [[package]] name = "boto3" -version = "1.35.39" +version = "1.35.50" description = "The AWS SDK for Python" optional = false python-versions = ">=3.8" files = [ - {file = "boto3-1.35.39-py3-none-any.whl", hash = "sha256:5970b62c1ec8177501e02520f0d41839ca5fc549b30bac4e8c0c0882ae776217"}, - {file = "boto3-1.35.39.tar.gz", hash = "sha256:670f811c65e3c5fe4ed8c8d69be0b44b1d649e992c0fc16de43816d1188f88f1"}, + {file = "boto3-1.35.50-py3-none-any.whl", hash = "sha256:14724b905fd13f26d9d8f7cdcea0fa65a9acad79f60f41f7662667f4e233d97c"}, + {file = "boto3-1.35.50.tar.gz", hash = "sha256:4f15d1ccb481d66f6925b8c91c970ce41b956b6ecf7c479f23e2159531b37eec"}, ] [package.dependencies] -botocore = ">=1.35.39,<1.36.0" +botocore = ">=1.35.50,<1.36.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.10.0,<0.11.0" @@ -206,13 +206,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.35.39" +version = "1.35.50" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" files = [ - {file = "botocore-1.35.39-py3-none-any.whl", hash = "sha256:781c547eb6a79c0e4b0bedd87b81fbfed957816b4841d33e20c8f1989c7c19ce"}, - {file = "botocore-1.35.39.tar.gz", hash = "sha256:cb7f851933b5ccc2fba4f0a8b846252410aa0efac5bfbe93b82d10801f5f8e90"}, + {file = "botocore-1.35.50-py3-none-any.whl", hash = "sha256:965d3b99179ac04aa98e4c4baf4a970ebce77a5e02bb2a0a21cb6304e2bc0955"}, + {file = "botocore-1.35.50.tar.gz", hash = "sha256:136ecef8d5a1088f1ba485c0bbfca40abd42b9f9fe9e11d8cde4e53b4c05b188"}, ] [package.dependencies] @@ -513,101 +513,101 @@ files = [ [[package]] name = "cramjam" -version = "2.8.4" +version = "2.9.0" description = "Thin Python bindings to de/compression algorithms in Rust" optional = false python-versions = ">=3.8" files = [ - {file = "cramjam-2.8.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:e9e112514363261a896f85948d5d055dccaab2a1fa77d440f55030464118a95a"}, - {file = "cramjam-2.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ee2441028e813ecc1d10b90640dd2b9649cdefdfe80af1d838cf00fd935ee5e7"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:86a3e0f91176eacd23f8d63b01139a63687cb3fa9670996b3bfa7c38eac6cb7e"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e34aa083a10079c8814091c0fe9080238a82569fa08058cf79d12b3f9710fc5"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:465ccf470536e065822daa2a083dedf18df8133278e9132b147bd1721211d707"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30aba9e9c737c986d26a809b9e36628452c075234a5e835b085ab7c2b9574dc"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52f710bd7fa9b5a374e2e2281d7d672f9eb89263c531643f95fab93e98200c68"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6622095ffa6cae77c9e8036a39757fdb1d3cabc3444ad892e5a705882ed06c8d"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bc618c018594c20696a42faf8a144e1508b8a4312e0d8697f6c64b337e37e5d9"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:30c75259f58583f96ad9cef7202c70cd6604a9dabf9834211df48a27ec85f84a"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b9b4bbe7ef3318b2f2aed2a8a658b401a9ad9314d50372f9bb97cdef093f326"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d7a7c10fb2602d7c8c4dbe4eeacf352477cc1af939fd3537f4e1cd42526855b8"}, - {file = "cramjam-2.8.4-cp310-none-win32.whl", hash = "sha256:831ee2424b095f51c9719b0479d9b413bc849e47160b904a7a8e4a8dcf41d2f7"}, - {file = "cramjam-2.8.4-cp310-none-win_amd64.whl", hash = "sha256:4f6bf5752a0322cc63f955343c390253034b609d167930584bb392bf4179c444"}, - {file = "cramjam-2.8.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d48fd69224a2f4df187856021f545a65486575cba92bb32a14ccad1ce54584a9"}, - {file = "cramjam-2.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c53d8dce609607370f01a5db65c79db75db08e9e89cbb9c2a2212b7a3c0b8af3"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d08b8ff282545ab3a414db845e430320555ff7a7eb90517b2c9554e24ca0d763"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac5fb30cf6c03f72397ead8584592dc071f486c76199c46c28e7de619174ba1f"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0d86cfb2b457a337db4b7c8cf6a9dafc018806750f28b3c27d71b94e2d4379d0"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59565a16ce0c71993d3947bdf9301e0d69866c15f37d67d2875809eca998d841"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6741544b372ba3e6c65db1c44b1a75e48743d091b76a09d7d832b1fb0a0ef518"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5f486bacd46f364137f5b164a879821115118d7f866a838429eb10aee59a14b"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4e02081bfb9998f5ff816f3e984a62ca91835e3483c578812374aaf5cb6ed921"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:1c63e856727726a1ee2a77a12bfccfcd70ee3e5bbe9e6d07bd00be5a1eb6ec10"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:74fb59137946b691e8987349e9117e2897f3b0484116ad6e2b1b4de0d082430f"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c7952e0cd6f37a04983cb027175f91f225d7c30625038b8930b6fd3f00619350"}, - {file = "cramjam-2.8.4-cp311-none-win32.whl", hash = "sha256:2bfd5c442e6031b146a93b1cc37d42c04b6d01bb652c9f123338c482c3943038"}, - {file = "cramjam-2.8.4-cp311-none-win_amd64.whl", hash = "sha256:73c95cae138bc8f5604bbbc97860f158c4f77e046304dd4f9c9838021d64217a"}, - {file = "cramjam-2.8.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:5056f476917d31c69719883bbe12272288b77ab5ea5ee55fbcbb6c0dd10e52da"}, - {file = "cramjam-2.8.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8359d31dca4bd8286e031f1a21f20f62f4e7a4586c407e916fd2de101c719a8b"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a1aee32556b9f7ecc61c6c4675798153ac511b5b72db9f56d2a8c20c1fa6d563"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:005bfe79ae38ea1df67fd3079089287640c780bf112aab4b6a3a9f12f0bf3c91"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51662c79c5a2256824f3acca9ccdbeaad3626c90ae46a19ef25f186d70a9ac69"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c744148e33002cefd4aaa3641800c0008fa177c8c09230c09d30d6e7ab473a4"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c897d2443cf9f3685a51ecc28c669aad95b6a610de7883647fe450cc742e2ea7"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:741b0c29d701d470243b9cad09a3e21c2ab83190710df680fd84baea1b262089"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4cfc6d838afb90a59d2c721fe8d78c2a333edf5c370b3ce8f9823c49bc52e5d0"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:977e380a567f1bcdb0f1156820fedc57727c6c639769b846b39ad7fc1be5563b"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3f16dea7f430bb8a5cf2e2a8eece5fa7a6e58bffae3913083f6c20de50ce85bd"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9d25c2ff722e66a55c58b6c325985b2bf342a6592db084557c2956a07d7179d7"}, - {file = "cramjam-2.8.4-cp312-none-win32.whl", hash = "sha256:b63bcf4e5f9c6ee027947a22862d054e8ce0fa189a33ccdb07e66ef09291252c"}, - {file = "cramjam-2.8.4-cp312-none-win_amd64.whl", hash = "sha256:72b9d4c29a51a8656690df2ef6f7823fa27ebc35e051182b6ebef5fef180876f"}, - {file = "cramjam-2.8.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9b00949104594eb2b6daf9ec72f1a6dfc93968bc0ffbdbfee936c359fc782186"}, - {file = "cramjam-2.8.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:24b29d805e860d22499e6f5d004582477f3c8309e2a899e0c86c1530a94e6092"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f9454207624a701cb518fbef137e2eb6088aaf5606679aa6ab28d2dd06d72702"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ee580acb4b6af5ae211b80b679aa377ffa9f9ff74a1e9de458c09d19bce4433"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:157c36731e430670be44ba490b8a0e4fc04ebdd78c3ea19339ba4ac24d73ad25"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30a12b1437e28b5e72ab10642d214e9b42220e8c5be2948ac6916aca203f69b0"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:553e2cd4c2614510770ff3a8bf6b72957a86985b1ae2b8fcdc6d04848857313f"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e40e448d50fa7c2b79c06d99459ad4a77d58d9cfb3f0549a63b91179a5e57c0b"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:769995dfc7fd042ce123f25e7659977ed4aa4d5d6aad976970b12b9b4019c116"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:1ba26f563d9e5be588c8e5f5523b4cdb5b63e3ac3fb28857af9611eb5ea51416"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:5cbfd6c44c85216b3535095258b506f6e246c6fbf1438a79f71bcff4d98f7e3f"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:4bf4e8711b27604b3ca7e7c224a70f5abe94f5bf05a183bd97677e9cffd2be04"}, - {file = "cramjam-2.8.4-cp313-none-win32.whl", hash = "sha256:7c9ca8e6c33c06c08e9945a20fe0f64a2bcd363554e359a2936b3a469883630a"}, - {file = "cramjam-2.8.4-cp313-none-win_amd64.whl", hash = "sha256:ee92df7e66b7cbdb05b18687a42696bc729bacaad0d68f5549e30cbfa1eb0ca8"}, - {file = "cramjam-2.8.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:386eb0fe9567ae3c06e2053205e19e671e4170f3a0deb68dd103e4c651a3ff8b"}, - {file = "cramjam-2.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:64e22027874ce429ce04c0c9d19e6bed5bf6425ecc3e68752211b8509915c57c"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b74470fb215a3ac2e6ed968f671286456030882aa25616b969b1a52ebda4f29d"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c41d4542cc2c7238017caebc161b0866b3fb5e85e59727ab623f95e07abc453"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:14b6f2f883068873bd2b5c31fbf7c4223c0452b8bff662bec02d7973a095c46b"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d5921c4521d41fb125d31ce1fe9e5bfba24a2577bc8727289baae9afbebc8409"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb62855f17be5d1bec0d3cef89d8d54582137529c7ea96480c40ebb4a8c92c4b"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91cd4b28fc75680616bd22db5a56802ce7ce406052c58e72fd583a16746a1010"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f03502eaf1a0a95cdcbf4c6ebba5edfaa68d356f487ec8485ae651772c9426f9"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_armv7l.whl", hash = "sha256:bb5e23c1f8dc2b4cddc7982da60d2f7a9719920539c26e7b754f2272f510fc0c"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ef6b0d4c83b173d18398713522bff1db1e4e73ec3b3da6495afc5628767d6c85"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b2253287a08759cefb75ef46ebaa0f993a2890a31fe9bba94363ca245f42d821"}, - {file = "cramjam-2.8.4-cp38-none-win32.whl", hash = "sha256:8375090e54978ccbb1d90e494d73d09e36477e0d695ddadf2d13627168862950"}, - {file = "cramjam-2.8.4-cp38-none-win_amd64.whl", hash = "sha256:12100dd3ed6969365d1952832e39c017d97c85eeb517ae468092f67aa4d89568"}, - {file = "cramjam-2.8.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:47c1594346dceb0d363d479ddac1e9ff87596c92e5258b389118ae6e30599145"}, - {file = "cramjam-2.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5472f9c6db34046c7ab2f0c4be5a4be677dba98bf78cc0eb03f9812e5774f14d"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9bfa940e016bfeea2b93115abf9e4e455a6325dd85a3fa6af55c6052f070ba25"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24e738a92ac520b26b952bfc48b1ba6453ea455e20167f08f6ee3df5c7d22cd4"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:78ded70e85722a6dcd0c436193af58a43083f0ece35c1f74227782a28e517aa0"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99b024a9912a5fd3b4e6b949b83b291e2828775edc0595ef8b94c491e904287b"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:673dc6395fed94db59fb75a7657d8b061bd575332d8f15025e7b1a4feaba0a3f"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4b8f83c5a98fecf44c6d852a9bd30ab1508e51d910dc9c8e636863d131fd5eb"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:85eada9385a706d8d0f6cb1d51995f5eef16d3cade7e68150d6e441fd26406da"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:2429134bb2ee8fffe28f41e3f5390be9c539ac1e2c453034ea63542d7aacc5cc"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e90003b2ce00358ee669afa0710bf52dee6827460b80ce4a7a9f906551ab703a"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d0619af45310cceeab9a2410d4a14445743e494015d85584b974847bfb2a2011"}, - {file = "cramjam-2.8.4-cp39-none-win32.whl", hash = "sha256:a30d68094462076655259feee1187237af846969007e5341a96c79b447c47ab3"}, - {file = "cramjam-2.8.4-cp39-none-win_amd64.whl", hash = "sha256:f24e375dfb31f0953e236f2cc4af1b03b80d40aec2bc558df48d507d8e7c8d96"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3536362f777d817c4994d6eaa42e00e705092c5660fd3d9984f3b0cc6164d327"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:0d52eabd20a694636f5b0197daa64db497ea518e057935a7c61ec71e92d3ccd6"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4cf69f19ebd546fc155ec3098603de51f52bf620a23597810cb5b34d6aff116d"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:364258057d579c772e23e1f666fd7efec4f63ea2e791889bb18263c9e9e6aa91"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:98a2e2c3132b454ae47b194164bb8860464ed410fbbffc0d1de19452cc7cb402"}, - {file = "cramjam-2.8.4.tar.gz", hash = "sha256:ad8bec85b46283330214f4367805e6f56e04ce25a030a2c6a4b127437d006fcf"}, + {file = "cramjam-2.9.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:eb16d995e454b0155b166f6e6da7df4ac812d44e0f3b6dc0f344a934609fd5bc"}, + {file = "cramjam-2.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cb1e86bfea656b51f2e75f2cedb17fc08b552d105b814d19b595294ecbe94d8d"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4bd76b654275736fd4f55521981b73751c34dacf70a1dbce96e454a39d43201f"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21569f19d5848606b85ac0dde0dc3639319d26fed8522c7103515df875bcb300"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b8f8b1117b4e697d39950ecab01700ce0aef66541e4478eb4d7b3ade8703347b"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c3464d0042a03e8ef38a2b774ef23163cf3c0cdc41b8dfbf7c4aadf93e40b459"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0711c776750e243ae347d6609c975f0ff4be9ae65b2764d29e4bbdad8e574c3a"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00d96f798bc980b29f8e1c3ed7d554050e05d4cde23d1633ffed4cd63110024a"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:fc49b6575e3cb15da3180c5a3926ec81db33b109e48530708da76614b306904b"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:c4fa6c23e56d48df18f534af921ec936c812743a8972ecdd5e5ff47b464fea00"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b4b8d8160685c11ffb4e8e6daaab79cb351a1c54ceec41cc18a0a62c89309fe0"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0ed6362cb6c964f8d0c6e7f790e8961b9242cd3acd87c56169ca14d642653707"}, + {file = "cramjam-2.9.0-cp310-none-win32.whl", hash = "sha256:fe9af350dfbdc7ed4c93a8016a8ad7b5492fc116e7197cad7cbce99b434d3fe1"}, + {file = "cramjam-2.9.0-cp310-none-win_amd64.whl", hash = "sha256:37054c73704a3183b60869e7fec1614648752c31d89f44de1ffe1f01ad4d20d5"}, + {file = "cramjam-2.9.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:170a50407f9400073621cc1d5f3200ca3ad9de3000831e3e86f5561ca8048a08"}, + {file = "cramjam-2.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:912c94781c8ff318a4d3f3306f8d94d41ae5aa7b9760c4bb0476b01142084845"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:df089639983a03070be6eabc60317aa1ffbf2c5409023b57a5fc2e4975163bc4"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ca28a8f6ab5fca35f163fd7d7a970880ce4fc1a0bead1249ecdaa96ec9ac1f4"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:abd8bf9a94e3866215ac181a7dbcfa1ddbedca4f8048494a79934febe88537df"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7de19a382bcab93cd4d028d51f6f581920a3b79659a384775188135b7fc64f15"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4156fcefa1dfaa65d35ff82c252d1e32be12820f26d04748be6cd3b461cf85f"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4a3104022129d7463100dfaf12efd398ebfa4b7e4e50832ccc596754f7c26df"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6ebee5f5d7e2b9277895ea4fd94646b72075fe9cfc0e8f4770b65c9e72b1fec1"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:8e33ebe4d709b21bc15e7ddf485ac6b30d7fdc7ed7c3c65130654c007f50c183"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4d5a39118008bb9f2fba36a0ceea6c41fbd0b55d2647b043ba51a868e5f6de92"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7f6ef35eba883927af2678b561cc4407e0b3b0d58a251c863bec4b3d8258cc2f"}, + {file = "cramjam-2.9.0-cp311-none-win32.whl", hash = "sha256:b21e55b5cfdaff96eae1f323ae9a0d36e86852cdf62fe23b60a2481d2fed5571"}, + {file = "cramjam-2.9.0-cp311-none-win_amd64.whl", hash = "sha256:9f685fe4e49b2f3e233548e3397b3f9189d71a265718ec631d13eca3d5718ddb"}, + {file = "cramjam-2.9.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:34578e4c1518b10dad5e0ba40c721e529ef13e7742a528843b40e1f20dd6078c"}, + {file = "cramjam-2.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1d5b5512dc61ea78f32e021e88a5fd5b46a821409479e6657d33614fc9e45677"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0b4f1b5e33915ed591c0c19b8c3bbdd7aa0f6a9bfe2b7246b475d497bda15f18"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad301801afa0eecdacabf353a2802df5e6770f9bfb0a559d6c069813d83cfd42"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:399baf80fea574e3870f233e12e6a12f02c53b054e13d792348b272b0614370a"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3121e2fbec58907fa70636adaeaf30c27614c867e08a7a5bd2887b33786ff790"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd04205b2a87087ffc2257c3ad33f11daabc053956f64ac1ec7bae299cac3f2f"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddb9c4db36188a8f08c2303100a83100f26a8572803ae35eadff359bebd3d204"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ef553d4080368006817c1a935ed619c71987cf10417a32386acc00c5418a2934"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:9862ca8ead80857ecfb9b07f02f577733261e981346f31585fe118975eabb738"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:4714e1ea0c3329368b83fe5ad6e831d5ca11fb794ca7cf491622eb6b2d420d2f"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1b4ca30c9f27e3b88bc082d4637e7648f93da5cb69a2dbe0c0300bc51353c820"}, + {file = "cramjam-2.9.0-cp312-none-win32.whl", hash = "sha256:0ed2fef010d1caca9ea63814e9cb5b1d47d907b80302b8cc0b3a1e116ea241e2"}, + {file = "cramjam-2.9.0-cp312-none-win_amd64.whl", hash = "sha256:bd26d71939de5dcf169d479fbc7fcfed21e6675bab33e7f7e9f8405f19711c71"}, + {file = "cramjam-2.9.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:dd70ea5d7b2c5e479e04ac3a00d8bc3deca146d2b5dbfbe3d7b42ed136e19de4"}, + {file = "cramjam-2.9.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0b1410e68c464666473a89cade17483b94bb4639d9161c440ee54ee1e0eca583"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b0078727fe8c28ef1695e5d04aae5c41ac697eb087cba387c6a02b825f9071c0"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a63c4e63319bf7dfc3ab46c06afb76d3d9cc1c94369b609dde480e5cc78e4de"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47d7253b5a10c201cc65aecfb517dfa1c0b5831b2524ac32dd2964fceafc0dc4"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05970fb640f236767003e62c256a085754536169bac863f4a3502ecb59cbf197"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0b062d261fa3fac00146cf801896c8cfafe1e41332eb047aa0a36558299daa6"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:017b7066f18b7b676068f51b1dbdecc02d76d9af10092252b22dcbd03a78ed33"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:9de33ef3bc006c11fbad1dc8b15341dcc78430df2c5ce1e790dfb729b11ab593"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:b99efaf81be8e381de1cde6574e2c89030ed53994e73b0e75b62d6e232f491c5"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:36426e3f1920f6aa4c644d007bf9cfad06dd9f1a30cd0a921d72b010492d8447"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea9bcaff298f5d35ef67346d474fca388c5cf6d4edab1d06b84868800f88bd36"}, + {file = "cramjam-2.9.0-cp313-none-win32.whl", hash = "sha256:c48da60a5eb481b412e5e462b81ad307fb2203178a2840a743f0a7c5fc1718c9"}, + {file = "cramjam-2.9.0-cp313-none-win_amd64.whl", hash = "sha256:97a6311bd32f301ff1b922bc9de62ace3d9fd845e20efc0f71b4d0239a45b8d2"}, + {file = "cramjam-2.9.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:78e7349f945a83bc48855fb042873092a69b155a088b8c11942eb76418b32705"}, + {file = "cramjam-2.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:65a097ea765dd4ef2fb868b5b0959d7c93a64c250b2c52f462898c823ae4b950"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:35cad507eb02c775e6c5444312f98b28dd8bf122425677ae199484996e838673"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8982925d179b940efa860513a31b839bb06343501077cca3e67f7a2f7360d355"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ba7e2d33e1d092dffd0a3ff4bd1b86177594aa3c2901fd478e78e1fb2aee8ed3"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:904be92e3bc25e78343ee52aa0fd5fba3a31d11d474e8af4623a9d00baa84bc2"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9221297c547d702e1431e96705fce26c6a87df34a681a6b97fe63b536d09c1d8"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e98a18c22a85f321091cc8db6694af1d713a369c2d60ec611c10ccfe24ab103a"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e248510f8e2dbc71fa99f86238c9023365dbe1a4520eb40e33d73416527349f2"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_armv7l.whl", hash = "sha256:dc07376aa33b6004ea372ac9b0ba0ed3455aa2fc4e18727414142ecb46b176b8"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:e94021c541eb2a199b5a2ffae0ea84fb8b99863dab99a5b154b00bc7a44b5c48"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4adbf4366f8dc29b7c5c731c800cf633be76c9911e928daeb606827d6ae7c599"}, + {file = "cramjam-2.9.0-cp38-none-win32.whl", hash = "sha256:ca880f555c8db40942acc8a50722c33e229b6be90e598acc1a201f36487b917d"}, + {file = "cramjam-2.9.0-cp38-none-win_amd64.whl", hash = "sha256:ab17a429a92db90bf40115efb97d10e71b94b0dcacf30cf724552df2794a58fb"}, + {file = "cramjam-2.9.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:ed7fd7bc2b86ec3161fe0cc49f5f392e6efa55c91a95397d5047820c38117660"}, + {file = "cramjam-2.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a0f654c739a6bc4a69a2aaf31463328a208757ed780ff886234532f78e06a864"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cd4d4ab9deb5846af0ac6cf1fa139cfa40291ad14d073efa8b8e20c8d1aa90bd"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bafc32f01d4ab64f83fdbc29bc5bd25a920b59c751c12e06e6f4b1e379be7600"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0fb5ea631dbf998f667766a9e485e757817d66ed559916ba553a0ec2f902d788"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c902e56e60c48f5f15e55257aaa1c2678323df5f18a1b839e8d05cac1107576c"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:441d3875cdffe5df9294b93ef570058837732dd727cd9d18efa0f089f1c2687a"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed486e57a79ccc7aebaa2ec12517d891fdc5d2fde16915e3db705b8a47570981"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:013cb872205641c6e5269f530ed40aaaa5640d84e0d8f33b89f5a1bf7f655527"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:a41b4b10a381be1d42a1a7dd07b8c3faccd3d12c7e98e973a6ec558fd040a607"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:598eac1713ddbe69c3b30dcc890d69b206ce08903fc3aed58149aae87c61973a"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:72e9ebc27c557706a3c9964c1d1b4522857760dbd60c105a4f5421f3b66e31a2"}, + {file = "cramjam-2.9.0-cp39-none-win32.whl", hash = "sha256:dbbd6fba677e1cbc9d6bd4ebbe3e8b3667d0295f1731489db2a971c95f0ceca0"}, + {file = "cramjam-2.9.0-cp39-none-win_amd64.whl", hash = "sha256:7f33a83969fa94ee8e0c1f0aef8eb303ead3e9142338dc543abeb7e1a28734ab"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:132db7d3346ea21ba44e7ee23ec73bd6fa9eb1e77133ca6dfe1f7449a69999af"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:2addf801c88bead21256ccd87dc97cffead03758c4a4947fad8e454f4abfda0a"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24afad3ba62774abbb150dc25aab21b047ab999c4143c7a8d96577848baf7af6"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:604c16052cf29d0c796927ed7e107f65429d2036c82c9a8009bd453c94e5e4f0"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:65bded20fd2cef17b22246c336ddd67fac842341ee311042b4a70e65dc745aa7"}, + {file = "cramjam-2.9.0.tar.gz", hash = "sha256:f103e648aa3ebe9b8e2c1a3a92719288d8f3f41007c319ad298cdce2d0c28641"}, ] [package.extras] @@ -849,13 +849,13 @@ files = [ [[package]] name = "fsspec" -version = "2024.9.0" +version = "2024.10.0" description = "File-system specification" optional = false python-versions = ">=3.8" files = [ - {file = "fsspec-2024.9.0-py3-none-any.whl", hash = "sha256:a0947d552d8a6efa72cc2c730b12c41d043509156966cca4fb157b0f2a0c574b"}, - {file = "fsspec-2024.9.0.tar.gz", hash = "sha256:4b0afb90c2f21832df142f292649035d80b421f60a9e1c027802e5a0da2b04e8"}, + {file = "fsspec-2024.10.0-py3-none-any.whl", hash = "sha256:03b9a6785766a4de40368b88906366755e2819e758b83705c88cd7cb5fe81871"}, + {file = "fsspec-2024.10.0.tar.gz", hash = "sha256:eda2d8a4116d4f2429db8550f2457da57279247dd930bb12f821b58391359493"}, ] [package.extras] @@ -955,13 +955,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "huggingface-hub" -version = "0.25.2" +version = "0.26.2" description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" optional = false python-versions = ">=3.8.0" files = [ - {file = "huggingface_hub-0.25.2-py3-none-any.whl", hash = "sha256:1897caf88ce7f97fe0110603d8f66ac264e3ba6accdf30cd66cc0fed5282ad25"}, - {file = "huggingface_hub-0.25.2.tar.gz", hash = "sha256:a1014ea111a5f40ccd23f7f7ba8ac46e20fa3b658ced1f86a00c75c06ec6423c"}, + {file = "huggingface_hub-0.26.2-py3-none-any.whl", hash = "sha256:98c2a5a8e786c7b2cb6fdeb2740893cba4d53e312572ed3d8afafda65b128c46"}, + {file = "huggingface_hub-0.26.2.tar.gz", hash = "sha256:b100d853465d965733964d123939ba287da60a547087783ddff8a323f340332b"}, ] [package.dependencies] @@ -974,16 +974,16 @@ tqdm = ">=4.42.1" typing-extensions = ">=3.7.4.3" [package.extras] -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio", "jedi", "minijinja (>=1.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "libcst (==1.4.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio", "jedi", "minijinja (>=1.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "libcst (==1.4.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] hf-transfer = ["hf-transfer (>=0.1.4)"] -inference = ["aiohttp", "minijinja (>=1.0)"] -quality = ["mypy (==1.5.1)", "ruff (>=0.5.0)"] +inference = ["aiohttp"] +quality = ["libcst (==1.4.0)", "mypy (==1.5.1)", "ruff (>=0.5.0)"] tensorflow = ["graphviz", "pydot", "tensorflow"] tensorflow-testing = ["keras (<3.0)", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio", "jedi", "minijinja (>=1.0)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] torch = ["safetensors[torch]", "torch"] typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)"] @@ -1160,13 +1160,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -1347,92 +1347,92 @@ testing = ["coverage", "pyyaml"] [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.22.0" +version = "3.23.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, - {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, + {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, + {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "moto" @@ -1561,68 +1561,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1778,95 +1779,90 @@ pytzdata = ">=2020.1" [[package]] name = "pillow" -version = "10.4.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, - {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, - {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, - {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, - {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, - {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, - {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, - {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, - {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, - {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, - {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, - {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, - {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, - {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, - {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, - {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, - {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, - {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, - {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, - {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -2364,17 +2360,17 @@ typing-extensions = ">=4.9.0" [[package]] name = "python-iso639" -version = "2024.4.27" +version = "2024.10.22" description = "ISO 639 language codes, names, and other associated information" optional = false python-versions = ">=3.8" files = [ - {file = "python_iso639-2024.4.27-py3-none-any.whl", hash = "sha256:27526a84cebc4c4d53fea9d1ebbc7209c8d279bebaa343e6765a1fc8780565ab"}, - {file = "python_iso639-2024.4.27.tar.gz", hash = "sha256:97e63b5603e085c6a56a12a95740010e75d9134e0aab767e0978b53fd8824f13"}, + {file = "python_iso639-2024.10.22-py3-none-any.whl", hash = "sha256:02d3ce2e01c6896b30b9cbbd3e1c8ee0d7221250b5d63ea9803e0d2a81fd1047"}, + {file = "python_iso639-2024.10.22.tar.gz", hash = "sha256:750f21b6a0bc6baa24253a3d8aae92b582bf93aa40988361cd96852c2c6d9a52"}, ] [package.extras] -dev = ["black (==24.4.2)", "build (==1.2.1)", "flake8 (==7.0.0)", "pytest (==8.1.2)", "requests (==2.31.0)", "twine (==5.0.0)"] +dev = ["black (==24.10.0)", "build (==1.2.1)", "flake8 (==7.1.1)", "pytest (==8.3.3)", "requests (==2.32.3)", "twine (==5.1.1)"] [[package]] name = "python-magic" @@ -2529,99 +2525,99 @@ files = [ [[package]] name = "rapidfuzz" -version = "3.10.0" +version = "3.10.1" description = "rapid fuzzy string matching" optional = false python-versions = ">=3.9" files = [ - {file = "rapidfuzz-3.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:884453860de029380dded8f3c1918af2d8eb5adf8010261645c7e5c88c2b5428"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:718c9bd369288aca5fa929df6dbf66fdbe9768d90940a940c0b5cdc96ade4309"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a68e3724b7dab761c01816aaa64b0903734d999d5589daf97c14ef5cc0629a8e"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1af60988d47534246d9525f77288fdd9de652608a4842815d9018570b959acc6"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3084161fc3e963056232ef8d937449a2943852e07101f5a136c8f3cfa4119217"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6cd67d3d017296d98ff505529104299f78433e4b8af31b55003d901a62bbebe9"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b11a127ac590fc991e8a02c2d7e1ac86e8141c92f78546f18b5c904064a0552c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:aadce42147fc09dcef1afa892485311e824c050352e1aa6e47f56b9b27af4cf0"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b54853c2371bf0e38d67da379519deb6fbe70055efb32f6607081641af3dc752"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ce19887268e90ee81a3957eef5e46a70ecc000713796639f83828b950343f49e"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f39a2a5ded23b9b9194ec45740dce57177b80f86c6d8eba953d3ff1a25c97766"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0ec338d5f4ad8d9339a88a08db5c23e7f7a52c2b2a10510c48a0cef1fb3f0ddc"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win32.whl", hash = "sha256:56fd15ea8f4c948864fa5ebd9261c67cf7b89a1c517a0caef4df75446a7af18c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:43dfc5e733808962a822ff6d9c29f3039a3cfb3620706f5953e17cfe4496724c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win_arm64.whl", hash = "sha256:ae7966f205b5a7fde93b44ca8fed37c1c8539328d7f179b1197de34eceaceb5f"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bb0013795b40db5cf361e6f21ee7cda09627cf294977149b50e217d7fe9a2f03"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:69ef5b363afff7150a1fbe788007e307b9802a2eb6ad92ed51ab94e6ad2674c6"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c582c46b1bb0b19f1a5f4c1312f1b640c21d78c371a6615c34025b16ee56369b"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:288f6f6e7410cacb115fb851f3f18bf0e4231eb3f6cb5bd1cec0e7b25c4d039d"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9e29a13d2fd9be3e7d8c26c7ef4ba60b5bc7efbc9dbdf24454c7e9ebba31768"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea2da0459b951ee461bd4e02b8904890bd1c4263999d291c5cd01e6620177ad4"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:457827ba82261aa2ae6ac06a46d0043ab12ba7216b82d87ae1434ec0f29736d6"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5d350864269d56f51ab81ab750c9259ae5cad3152c0680baef143dcec92206a1"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a9b8f51e08c3f983d857c3889930af9ddecc768453822076683664772d87e374"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7f3a6aa6e70fc27e4ff5c479f13cc9fc26a56347610f5f8b50396a0d344c5f55"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:803f255f10d63420979b1909ef976e7d30dec42025c9b067fc1d2040cc365a7e"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2026651761bf83a0f31495cc0f70840d5c0d54388f41316e3f9cb51bd85e49a5"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win32.whl", hash = "sha256:4df75b3ebbb8cfdb9bf8b213b168620b88fd92d0c16a8bc9f9234630b282db59"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:f9f0bbfb6787b97c51516f3ccf97737d504db5d239ad44527673b81f598b84ab"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win_arm64.whl", hash = "sha256:10fdad800441b9c97d471a937ba7d42625f1b530db05e572f1cb7d401d95c893"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7dc87073ba3a40dd65591a2100aa71602107443bf10770579ff9c8a3242edb94"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a425a0a868cf8e9c6e93e1cda4b758cdfd314bb9a4fc916c5742c934e3613480"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d5d1d75e61df060c1e56596b6b0a4422a929dff19cc3dbfd5eee762c86b61"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34f213d59219a9c3ca14e94a825f585811a68ac56b4118b4dc388b5b14afc108"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96ad46f5f56f70fab2be9e5f3165a21be58d633b90bf6e67fc52a856695e4bcf"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9178277f72d144a6c7704d7ae7fa15b7b86f0f0796f0e1049c7b4ef748a662ef"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76a35e9e19a7c883c422ffa378e9a04bc98cb3b29648c5831596401298ee51e6"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a6405d34c394c65e4f73a1d300c001f304f08e529d2ed6413b46ee3037956eb"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bd393683129f446a75d8634306aed7e377627098a1286ff3af2a4f1736742820"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b0445fa9880ead81f5a7d0efc0b9c977a947d8052c43519aceeaf56eabaf6843"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c50bc308fa29767ed8f53a8d33b7633a9e14718ced038ed89d41b886e301da32"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e89605afebbd2d4b045bccfdc12a14b16fe8ccbae05f64b4b4c64a97dad1c891"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win32.whl", hash = "sha256:2db9187f3acf3cd33424ecdbaad75414c298ecd1513470df7bda885dcb68cc15"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:50e3d0c72ea15391ba9531ead7f2068a67c5b18a6a365fef3127583aaadd1725"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win_arm64.whl", hash = "sha256:9eac95b4278bd53115903d89118a2c908398ee8bdfd977ae844f1bd2b02b917c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fe5231e8afd069c742ac5b4f96344a0fe4aff52df8e53ef87faebf77f827822c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:886882367dbc985f5736356105798f2ae6e794e671fc605476cbe2e73838a9bb"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b33e13e537e3afd1627d421a142a12bbbe601543558a391a6fae593356842f6e"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:094c26116d55bf9c53abd840d08422f20da78ec4c4723e5024322321caedca48"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:545fc04f2d592e4350f59deb0818886c1b444ffba3bec535b4fbb97191aaf769"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:916a6abf3632e592b937c3d04c00a6efadd8fd30539cdcd4e6e4d92be7ca5d90"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb6ec40cef63b1922083d33bfef2f91fc0b0bc07b5b09bfee0b0f1717d558292"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c77a7330dd15c7eb5fd3631dc646fc96327f98db8181138766bd14d3e905f0ba"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:949b5e9eeaa4ecb4c7e9c2a4689dddce60929dd1ff9c76a889cdbabe8bbf2171"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b5363932a5aab67010ae1a6205c567d1ef256fb333bc23c27582481606be480c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:5dd6eec15b13329abe66cc241b484002ecb0e17d694491c944a22410a6a9e5e2"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:79e7f98525b60b3c14524e0a4e1fedf7654657b6e02eb25f1be897ab097706f3"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win32.whl", hash = "sha256:d29d1b9857c65f8cb3a29270732e1591b9bacf89de9d13fa764f79f07d8f1fd2"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:fa9720e56663cc3649d62b4b5f3145e94b8f5611e8a8e1b46507777249d46aad"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win_arm64.whl", hash = "sha256:eda4c661e68dddd56c8fbfe1ca35e40dd2afd973f7ebb1605f4d151edc63dff8"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cffbc50e0767396ed483900900dd58ce4351bc0d40e64bced8694bd41864cc71"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c038b9939da3035afb6cb2f465f18163e8f070aba0482923ecff9443def67178"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca366c2e2a54e2f663f4529b189fdeb6e14d419b1c78b754ec1744f3c01070d4"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c4c82b1689b23b1b5e6a603164ed2be41b6f6de292a698b98ba2381e889eb9d"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98f6ebe28831a482981ecfeedc8237047878424ad0c1add2c7f366ba44a20452"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4bd1a7676ee2a4c8e2f7f2550bece994f9f89e58afb96088964145a83af7408b"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec9139baa3f85b65adc700eafa03ed04995ca8533dd56c924f0e458ffec044ab"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:26de93e6495078b6af4c4d93a42ca067b16cc0e95699526c82ab7d1025b4d3bf"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f3a0bda83c18195c361b5500377d0767749f128564ca95b42c8849fd475bb327"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:63e4c175cbce8c3adc22dca5e6154588ae673f6c55374d156f3dac732c88d7de"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4dd3d8443970eaa02ab5ae45ce584b061f2799cd9f7e875190e2617440c1f9d4"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e5ddb2388610799fc46abe389600625058f2a73867e63e20107c5ad5ffa57c47"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win32.whl", hash = "sha256:2e9be5d05cd960914024412b5406fb75a82f8562f45912ff86255acbfdbfb78e"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:47aca565a39c9a6067927871973ca827023e8b65ba6c5747f4c228c8d7ddc04f"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win_arm64.whl", hash = "sha256:b0732343cdc4273b5921268026dd7266f75466eb21873cb7635a200d9d9c3fac"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f744b5eb1469bf92dd143d36570d2bdbbdc88fe5cb0b5405e53dd34f479cbd8a"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b67cc21a14327a0eb0f47bc3d7e59ec08031c7c55220ece672f9476e7a8068d3"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fe5783676f0afba4a522c80b15e99dbf4e393c149ab610308a8ef1f04c6bcc8"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4688862f957c8629d557d084f20b2d803f8738b6c4066802a0b1cc472e088d9"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20bd153aacc244e4c907d772c703fea82754c4db14f8aa64d75ff81b7b8ab92d"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:50484d563f8bfa723c74c944b0bb15b9e054db9c889348c8c307abcbee75ab92"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5897242d455461f2c5b82d7397b29341fd11e85bf3608a522177071044784ee8"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:116c71a81e046ba56551d8ab68067ca7034d94b617545316d460a452c5c3c289"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0a547e4350d1fa32624d3eab51eff8cf329f4cae110b4ea0402486b1da8be40"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:399b9b79ccfcf50ca3bad7692bc098bb8eade88d7d5e15773b7f866c91156d0c"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7947a425d1be3e744707ee58c6cb318b93a56e08f080722dcc0347e0b7a1bb9a"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:94c48b4a2a4b1d22246f48e2b11cae01ec7d23f0c9123f8bb822839ad79d0a88"}, - {file = "rapidfuzz-3.10.0.tar.gz", hash = "sha256:6b62af27e65bb39276a66533655a2fa3c60a487b03935721c45b7809527979be"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f17d9f21bf2f2f785d74f7b0d407805468b4c173fa3e52c86ec94436b338e74a"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b31f358a70efc143909fb3d75ac6cd3c139cd41339aa8f2a3a0ead8315731f2b"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f4f43f2204b56a61448ec2dd061e26fd344c404da99fb19f3458200c5874ba2"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9d81bf186a453a2757472133b24915768abc7c3964194406ed93e170e16c21cb"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3611c8f45379a12063d70075c75134f2a8bd2e4e9b8a7995112ddae95ca1c982"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3c3b537b97ac30da4b73930fa8a4fe2f79c6d1c10ad535c5c09726612cd6bed9"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:231ef1ec9cf7b59809ce3301006500b9d564ddb324635f4ea8f16b3e2a1780da"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed4f3adc1294834955b7e74edd3c6bd1aad5831c007f2d91ea839e76461a5879"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:7b6015da2e707bf632a71772a2dbf0703cff6525732c005ad24987fe86e8ec32"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:1b35a118d61d6f008e8e3fb3a77674d10806a8972c7b8be433d6598df4d60b01"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:bc308d79a7e877226f36bdf4e149e3ed398d8277c140be5c1fd892ec41739e6d"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f017dbfecc172e2d0c37cf9e3d519179d71a7f16094b57430dffc496a098aa17"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win32.whl", hash = "sha256:36c0e1483e21f918d0f2f26799fe5ac91c7b0c34220b73007301c4f831a9c4c7"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:10746c1d4c8cd8881c28a87fd7ba0c9c102346dfe7ff1b0d021cdf093e9adbff"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win_arm64.whl", hash = "sha256:dfa64b89dcb906835e275187569e51aa9d546a444489e97aaf2cc84011565fbe"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:92958ae075c87fef393f835ed02d4fe8d5ee2059a0934c6c447ea3417dfbf0e8"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ba7521e072c53e33c384e78615d0718e645cab3c366ecd3cc8cb732befd94967"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00d02cbd75d283c287471b5b3738b3e05c9096150f93f2d2dfa10b3d700f2db9"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efa1582a397da038e2f2576c9cd49b842f56fde37d84a6b0200ffebc08d82350"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f12912acee1f506f974f58de9fdc2e62eea5667377a7e9156de53241c05fdba8"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666d5d8b17becc3f53447bcb2b6b33ce6c2df78792495d1fa82b2924cd48701a"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26f71582c0d62445067ee338ddad99b655a8f4e4ed517a90dcbfbb7d19310474"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8a2ef08b27167bcff230ffbfeedd4c4fa6353563d6aaa015d725dd3632fc3de7"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:365e4fc1a2b95082c890f5e98489b894e6bf8c338c6ac89bb6523c2ca6e9f086"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1996feb7a61609fa842e6b5e0c549983222ffdedaf29644cc67e479902846dfe"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:cf654702f144beaa093103841a2ea6910d617d0bb3fccb1d1fd63c54dde2cd49"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ec108bf25de674781d0a9a935030ba090c78d49def3d60f8724f3fc1e8e75024"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win32.whl", hash = "sha256:031f8b367e5d92f7a1e27f7322012f3c321c3110137b43cc3bf678505583ef48"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:f98f36c6a1bb9a6c8bbec99ad87c8c0e364f34761739b5ea9adf7b48129ae8cf"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win_arm64.whl", hash = "sha256:f1da2028cb4e41be55ee797a82d6c1cf589442504244249dfeb32efc608edee7"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1340b56340896bede246f612b6ecf685f661a56aabef3d2512481bfe23ac5835"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2316515169b7b5a453f0ce3adbc46c42aa332cae9f2edb668e24d1fc92b2f2bb"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e06fe6a12241ec1b72c0566c6b28cda714d61965d86569595ad24793d1ab259"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d99c1cd9443b19164ec185a7d752f4b4db19c066c136f028991a480720472e23"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1d9aa156ed52d3446388ba4c2f335e312191d1ca9d1f5762ee983cf23e4ecf6"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:54bcf4efaaee8e015822be0c2c28214815f4f6b4f70d8362cfecbd58a71188ac"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0c955e32afdbfdf6e9ee663d24afb25210152d98c26d22d399712d29a9b976b"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:191633722203f5b7717efcb73a14f76f3b124877d0608c070b827c5226d0b972"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:195baad28057ec9609e40385991004e470af9ef87401e24ebe72c064431524ab"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:0fff4a6b87c07366662b62ae994ffbeadc472e72f725923f94b72a3db49f4671"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4ffed25f9fdc0b287f30a98467493d1e1ce5b583f6317f70ec0263b3c97dbba6"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d02cf8e5af89a9ac8f53c438ddff6d773f62c25c6619b29db96f4aae248177c0"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win32.whl", hash = "sha256:f3bb81d4fe6a5d20650f8c0afcc8f6e1941f6fecdb434f11b874c42467baded0"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:aaf83e9170cb1338922ae42d320699dccbbdca8ffed07faeb0b9257822c26e24"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win_arm64.whl", hash = "sha256:c5da802a0d085ad81b0f62828fb55557996c497b2d0b551bbdfeafd6d447892f"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fc22d69a1c9cccd560a5c434c0371b2df0f47c309c635a01a913e03bbf183710"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38b0dac2c8e057562b8f0d8ae5b663d2d6a28c5ab624de5b73cef9abb6129a24"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fde3bbb14e92ce8fcb5c2edfff72e474d0080cadda1c97785bf4822f037a309"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9141fb0592e55f98fe9ac0f3ce883199b9c13e262e0bf40c5b18cdf926109d16"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:237bec5dd1bfc9b40bbd786cd27949ef0c0eb5fab5eb491904c6b5df59d39d3c"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18123168cba156ab5794ea6de66db50f21bb3c66ae748d03316e71b27d907b95"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b75fe506c8e02769cc47f5ab21ce3e09b6211d3edaa8f8f27331cb6988779be"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9da82aa4b46973aaf9e03bb4c3d6977004648c8638febfc0f9d237e865761270"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:c34c022d5ad564f1a5a57a4a89793bd70d7bad428150fb8ff2760b223407cdcf"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:1e96c84d6c2a0ca94e15acb5399118fff669f4306beb98a6d8ec6f5dccab4412"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:e8e154b84a311263e1aca86818c962e1fa9eefdd643d1d5d197fcd2738f88cb9"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:335fee93188f8cd585552bb8057228ce0111bd227fa81bfd40b7df6b75def8ab"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win32.whl", hash = "sha256:6729b856166a9e95c278410f73683957ea6100c8a9d0a8dbe434c49663689255"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:0e06d99ad1ad97cb2ef7f51ec6b1fedd74a3a700e4949353871cf331d07b382a"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win_arm64.whl", hash = "sha256:8d1b7082104d596a3eb012e0549b2634ed15015b569f48879701e9d8db959dbb"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:779027d3307e1a2b1dc0c03c34df87a470a368a1a0840a9d2908baf2d4067956"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:440b5608ab12650d0390128d6858bc839ae77ffe5edf0b33a1551f2fa9860651"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82cac41a411e07a6f3dc80dfbd33f6be70ea0abd72e99c59310819d09f07d945"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:958473c9f0bca250590200fd520b75be0dbdbc4a7327dc87a55b6d7dc8d68552"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ef60dfa73749ef91cb6073be1a3e135f4846ec809cc115f3cbfc6fe283a5584"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7fbac18f2c19fc983838a60611e67e3262e36859994c26f2ee85bb268de2355"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a0d519ff39db887cd73f4e297922786d548f5c05d6b51f4e6754f452a7f4296"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bebb7bc6aeb91cc57e4881b222484c26759ca865794187217c9dcea6c33adae6"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fe07f8b9c3bb5c5ad1d2c66884253e03800f4189a60eb6acd6119ebaf3eb9894"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:bfa48a4a2d45a41457f0840c48e579db157a927f4e97acf6e20df8fc521c79de"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:2cf44d01bfe8ee605b7eaeecbc2b9ca64fc55765f17b304b40ed8995f69d7716"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e6bbca9246d9eedaa1c84e04a7f555493ba324d52ae4d9f3d9ddd1b740dcd87"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win32.whl", hash = "sha256:567f88180f2c1423b4fe3f3ad6e6310fc97b85bdba574801548597287fc07028"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:6b2cd7c29d6ecdf0b780deb587198f13213ac01c430ada6913452fd0c40190fc"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win_arm64.whl", hash = "sha256:9f912d459e46607ce276128f52bea21ebc3e9a5ccf4cccfef30dd5bddcf47be8"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ac4452f182243cfab30ba4668ef2de101effaedc30f9faabb06a095a8c90fd16"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:565c2bd4f7d23c32834652b27b51dd711814ab614b4e12add8476be4e20d1cf5"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:187d9747149321607be4ccd6f9f366730078bed806178ec3eeb31d05545e9e8f"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:616290fb9a8fa87e48cb0326d26f98d4e29f17c3b762c2d586f2b35c1fd2034b"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:073a5b107e17ebd264198b78614c0206fa438cce749692af5bc5f8f484883f50"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:39c4983e2e2ccb9732f3ac7d81617088822f4a12291d416b09b8a1eadebb3e29"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ac7adee6bcf0c6fee495d877edad1540a7e0f5fc208da03ccb64734b43522d7a"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:425f4ac80b22153d391ee3f94bc854668a0c6c129f05cf2eaf5ee74474ddb69e"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65a2fa13e8a219f9b5dcb9e74abe3ced5838a7327e629f426d333dfc8c5a6e66"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:75561f3df9a906aaa23787e9992b228b1ab69007932dc42070f747103e177ba8"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:edd062490537e97ca125bc6c7f2b7331c2b73d21dc304615afe61ad1691e15d5"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfcc8feccf63245a22dfdd16e222f1a39771a44b870beb748117a0e09cbb4a62"}, + {file = "rapidfuzz-3.10.1.tar.gz", hash = "sha256:5a15546d847a915b3f42dc79ef9b0c78b998b4e2c53b252e7166284066585979"}, ] [package.extras] @@ -3036,23 +3032,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -3279,13 +3275,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] @@ -3543,13 +3539,13 @@ bracex = ">=2.1.1" [[package]] name = "werkzeug" -version = "3.0.4" +version = "3.0.6" description = "The comprehensive WSGI web application library." optional = false python-versions = ">=3.8" files = [ - {file = "werkzeug-3.0.4-py3-none-any.whl", hash = "sha256:02c9eb92b7d6c06f31a782811505d2157837cea66aaede3e217c7c27c039476c"}, - {file = "werkzeug-3.0.4.tar.gz", hash = "sha256:34f2371506b250df4d4f84bfe7b0921e4762525762bbd936614909fe25cd7306"}, + {file = "werkzeug-3.0.6-py3-none-any.whl", hash = "sha256:1bc0c2310d2fbb07b1dd1105eba2f7af72f322e1e455f2f93c993bee8c8a5f17"}, + {file = "werkzeug-3.0.6.tar.gz", hash = "sha256:a8dd59d4de28ca70471a34cba79bed5f7ef2e036a76b3ab0835474246eb41f8d"}, ] [package.dependencies] @@ -3650,13 +3646,13 @@ files = [ [[package]] name = "xmltodict" -version = "0.14.1" +version = "0.14.2" description = "Makes working with XML feel like you are working with JSON" optional = false python-versions = ">=3.6" files = [ - {file = "xmltodict-0.14.1-py2.py3-none-any.whl", hash = "sha256:3ef4a7b71c08f19047fcbea572e1d7f4207ab269da1565b5d40e9823d3894e63"}, - {file = "xmltodict-0.14.1.tar.gz", hash = "sha256:338c8431e4fc554517651972d62f06958718f6262b04316917008e8fd677a6b0"}, + {file = "xmltodict-0.14.2-py2.py3-none-any.whl", hash = "sha256:20cc7d723ed729276e808f26fb6b3599f786cbc37e06c65e192ba77c40f20aac"}, + {file = "xmltodict-0.14.2.tar.gz", hash = "sha256:201e7c28bb210e374999d1dde6382923ab0ed1a8a5faeece48ab525b7810a553"}, ] [metadata] diff --git a/airbyte-integrations/connectors/source-s3/pyproject.toml b/airbyte-integrations/connectors/source-s3/pyproject.toml index ca55b03047e6..a1d316bf7daa 100644 --- a/airbyte-integrations/connectors/source-s3/pyproject.toml +++ b/airbyte-integrations/connectors/source-s3/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.9.0" +version = "4.9.1" name = "source-s3" description = "Source implementation for S3." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/s3.md b/docs/integrations/sources/s3.md index 19abf6dfff6c..6f1fc37b0697 100644 --- a/docs/integrations/sources/s3.md +++ b/docs/integrations/sources/s3.md @@ -339,6 +339,7 @@ This connector utilizes the open source [Unstructured](https://unstructured-io.g | Version | Date | Pull Request | Subject | |:--------|:-----------|:----------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------| +| 4.9.1 | 2024-10-29 | [47038](https://github.com/airbytehq/airbyte/pull/47038) | Update dependencies | | 4.9.0 | 2024-10-17 | [46973](https://github.com/airbytehq/airbyte/pull/46973) | Promote releae candidate. | | 4.9.0-rc.1 | 2024-10-14 | [46298](https://github.com/airbytehq/airbyte/pull/46298) | Migrate to CDK v5 | | 4.8.5 | 2024-10-12 | [46511](https://github.com/airbytehq/airbyte/pull/46511) | Update dependencies | From 4728f4df99cfbf4c528ce21821f04b9d1596f919 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:10:40 +0200 Subject: [PATCH 340/808] =?UTF-8?q?=F0=9F=90=99=20source-rocket-chat:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47853)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rocket-chat/metadata.yaml | 4 ++-- docs/integrations/sources/rocket-chat.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml b/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml index aa2285ba25eb..14e4a2d51add 100644 --- a/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml +++ b/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 921d9608-3915-450b-8078-0af18801ea1b - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-rocket-chat githubIssueLabel: source-rocket-chat icon: rocket-chat.svg @@ -38,5 +38,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/rocket-chat.md b/docs/integrations/sources/rocket-chat.md index e311fac2dcd2..3a392aefeffb 100644 --- a/docs/integrations/sources/rocket-chat.md +++ b/docs/integrations/sources/rocket-chat.md @@ -41,6 +41,7 @@ You need to setup a personal access token within the Rocket.chat workspace, see | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | +| 0.2.3 | 2024-10-29 | [47853](https://github.com/airbytehq/airbyte/pull/47853) | Update dependencies | | 0.2.2 | 2024-10-28 | [47639](https://github.com/airbytehq/airbyte/pull/47639) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44076](https://github.com/airbytehq/airbyte/pull/44076) | Refactor connector to manifest-only format | From fb4169b55a24a430a9713b07ec48701bfbe7e6db Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:10:43 +0200 Subject: [PATCH 341/808] =?UTF-8?q?=F0=9F=90=99=20source-gmail:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47852)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gmail/metadata.yaml | 4 ++-- docs/integrations/sources/gmail.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-gmail/metadata.yaml b/airbyte-integrations/connectors/source-gmail/metadata.yaml index e4c6e7333f05..a4b4190128e1 100644 --- a/airbyte-integrations/connectors/source-gmail/metadata.yaml +++ b/airbyte-integrations/connectors/source-gmail/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-gmail connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: f7833dac-fc18-4feb-a2a9-94b22001edc6 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-gmail githubIssueLabel: source-gmail icon: icon.svg diff --git a/docs/integrations/sources/gmail.md b/docs/integrations/sources/gmail.md index 600b88a46c94..f38006b01f47 100644 --- a/docs/integrations/sources/gmail.md +++ b/docs/integrations/sources/gmail.md @@ -33,6 +33,7 @@ Note that this connector uses the Google API OAuth2.0 for authentication. To get | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47852](https://github.com/airbytehq/airbyte/pull/47852) | Update dependencies | | 0.0.2 | 2024-10-28 | [47570](https://github.com/airbytehq/airbyte/pull/47570) | Update dependencies | | 0.0.1 | 2024-10-09 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From de3988c5258a0c694a528a2a5e53caf0810971a0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:10:46 +0200 Subject: [PATCH 342/808] =?UTF-8?q?=F0=9F=90=99=20source-persistiq:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47851)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-persistiq/metadata.yaml | 4 ++-- docs/integrations/sources/persistiq.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-persistiq/metadata.yaml b/airbyte-integrations/connectors/source-persistiq/metadata.yaml index cce6656f8b08..cfed763550e1 100644 --- a/airbyte-integrations/connectors/source-persistiq/metadata.yaml +++ b/airbyte-integrations/connectors/source-persistiq/metadata.yaml @@ -3,7 +3,7 @@ data: hosts: - api.persistiq.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa remoteRegistries: pypi: enabled: false @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3052c77e-8b91-47e2-97a0-a29a22794b4b - dockerImageTag: 0.3.3 + dockerImageTag: 0.3.4 dockerRepository: airbyte/source-persistiq githubIssueLabel: source-persistiq icon: persistiq.svg diff --git a/docs/integrations/sources/persistiq.md b/docs/integrations/sources/persistiq.md index 34414a306233..9799b9ef5144 100644 --- a/docs/integrations/sources/persistiq.md +++ b/docs/integrations/sources/persistiq.md @@ -43,6 +43,7 @@ Please read [How to find your API key](https://apidocs.persistiq.com/#introducti | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------| +| 0.3.4 | 2024-10-29 | [47851](https://github.com/airbytehq/airbyte/pull/47851) | Update dependencies | | 0.3.3 | 2024-10-28 | [47579](https://github.com/airbytehq/airbyte/pull/47579) | Update dependencies | | 0.3.2 | 2024-10-21 | [47193](https://github.com/airbytehq/airbyte/pull/47193) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | From 325b6f2e57d5a5e139e870014aee33f31354c5a0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:10:50 +0200 Subject: [PATCH 343/808] =?UTF-8?q?=F0=9F=90=99=20source-bing-ads:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47850)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-bing-ads/metadata.yaml | 2 +- .../connectors/source-bing-ads/poetry.lock | 18 +++++++++--------- .../connectors/source-bing-ads/pyproject.toml | 2 +- docs/integrations/sources/bing-ads.md | 1 + 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/airbyte-integrations/connectors/source-bing-ads/metadata.yaml b/airbyte-integrations/connectors/source-bing-ads/metadata.yaml index fd3f3e40aa22..c9593fe72124 100644 --- a/airbyte-integrations/connectors/source-bing-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-bing-ads/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 47f25999-dd5e-4636-8c39-e7cea2453331 - dockerImageTag: 2.8.1 + dockerImageTag: 2.8.2 dockerRepository: airbyte/source-bing-ads documentationUrl: https://docs.airbyte.com/integrations/sources/bing-ads erdUrl: https://dbdocs.io/airbyteio/source-bing-ads?view=relationships diff --git a/airbyte-integrations/connectors/source-bing-ads/poetry.lock b/airbyte-integrations/connectors/source-bing-ads/poetry.lock index 9b9ef2076cbb..031cb250f54c 100644 --- a/airbyte-integrations/connectors/source-bing-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-bing-ads/poetry.lock @@ -1752,23 +1752,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1831,13 +1831,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-bing-ads/pyproject.toml b/airbyte-integrations/connectors/source-bing-ads/pyproject.toml index 45fc915f030b..50147b7d2deb 100644 --- a/airbyte-integrations/connectors/source-bing-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-bing-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.8.1" +version = "2.8.2" name = "source-bing-ads" description = "Source implementation for Bing Ads." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/bing-ads.md b/docs/integrations/sources/bing-ads.md index 603973002d5a..dc0d1a3d2796 100644 --- a/docs/integrations/sources/bing-ads.md +++ b/docs/integrations/sources/bing-ads.md @@ -261,6 +261,7 @@ The Bing Ads API limits the number of requests for all Microsoft Advertising cli | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------| +| 2.8.2 | 2024-10-29 | [47850](https://github.com/airbytehq/airbyte/pull/47850) | Update dependencies | | 2.8.1 | 2024-10-28 | [47093](https://github.com/airbytehq/airbyte/pull/47093) | Update dependencies | | 2.8.0 | 2024-10-21 | [46991](https://github.com/airbytehq/airbyte/pull/46991) | Update CDK to v5 | | 2.7.9 | 2024-10-12 | [46847](https://github.com/airbytehq/airbyte/pull/46847) | Update dependencies | From d27c72147ac2d163dca8bb18534b1cbcda6ef937 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:10:54 +0200 Subject: [PATCH 344/808] =?UTF-8?q?=F0=9F=90=99=20source-outbrain-amplify:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47849)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-outbrain-amplify/metadata.yaml | 2 +- .../connectors/source-outbrain-amplify/poetry.lock | 12 ++++++------ .../source-outbrain-amplify/pyproject.toml | 2 +- docs/integrations/sources/outbrain-amplify.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml b/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml index 146467545891..caa928f0125c 100644 --- a/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml +++ b/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml @@ -16,7 +16,7 @@ data: type: GSM connectorType: source definitionId: 4fe962d0-a70e-4516-aa99-c551abf46352 - dockerImageTag: 0.1.19 + dockerImageTag: 0.1.20 dockerRepository: airbyte/source-outbrain-amplify documentationUrl: https://docs.airbyte.com/integrations/sources/outbrain-amplify githubIssueLabel: source-outbrain-amplify diff --git a/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock b/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock index efdf4268b7c2..955ecb2c35d5 100644 --- a/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock +++ b/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock @@ -875,23 +875,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml b/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml index dc2b91393ec4..6221c5bcb461 100644 --- a/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml +++ b/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.19" +version = "0.1.20" name = "source-outbrain-amplify" description = "Source implementation for outbrain amplify." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/outbrain-amplify.md b/docs/integrations/sources/outbrain-amplify.md index b91d01e38891..d20d94ebbb3f 100644 --- a/docs/integrations/sources/outbrain-amplify.md +++ b/docs/integrations/sources/outbrain-amplify.md @@ -65,6 +65,7 @@ Specify credentials and a start date. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------- | +| 0.1.20 | 2024-10-29 | [47849](https://github.com/airbytehq/airbyte/pull/47849) | Update dependencies | | 0.1.19 | 2024-10-28 | [47040](https://github.com/airbytehq/airbyte/pull/47040) | Update dependencies | | 0.1.18 | 2024-10-12 | [46775](https://github.com/airbytehq/airbyte/pull/46775) | Update dependencies | | 0.1.17 | 2024-10-05 | [46403](https://github.com/airbytehq/airbyte/pull/46403) | Update dependencies | From a5c20505d0b495acea1bff7eb6560a87963ad0fd Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:10:59 +0200 Subject: [PATCH 345/808] =?UTF-8?q?=F0=9F=90=99=20source-pendo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47847)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pendo/metadata.yaml | 4 ++-- docs/integrations/sources/pendo.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-pendo/metadata.yaml b/airbyte-integrations/connectors/source-pendo/metadata.yaml index 637f662ae77e..20811e3dd5fd 100644 --- a/airbyte-integrations/connectors/source-pendo/metadata.yaml +++ b/airbyte-integrations/connectors/source-pendo/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: b1ccb590-e84f-46c0-83a0-2048ccfffdae - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-pendo documentationUrl: https://docs.airbyte.com/integrations/sources/pendo githubIssueLabel: source-pendo diff --git a/docs/integrations/sources/pendo.md b/docs/integrations/sources/pendo.md index 18f78fb8ce97..f91ee814c4fd 100644 --- a/docs/integrations/sources/pendo.md +++ b/docs/integrations/sources/pendo.md @@ -64,6 +64,7 @@ The Pendo source connector supports the following [sync modes](https://docs.airb | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.3 | 2024-10-29 | [47847](https://github.com/airbytehq/airbyte/pull/47847) | Update dependencies | | 0.2.2 | 2024-10-28 | [47563](https://github.com/airbytehq/airbyte/pull/47563) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44100](https://github.com/airbytehq/airbyte/pull/44100) | Refactor connector to manifest-only format | From a5f3bd7361ecd2a7ad2493e5686f792b360daf72 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:06 +0200 Subject: [PATCH 346/808] =?UTF-8?q?=F0=9F=90=99=20source-us-census:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47845)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-us-census/metadata.yaml | 4 ++-- docs/integrations/sources/us-census.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-us-census/metadata.yaml b/airbyte-integrations/connectors/source-us-census/metadata.yaml index 5340c3d3c39b..acbc2c270075 100644 --- a/airbyte-integrations/connectors/source-us-census/metadata.yaml +++ b/airbyte-integrations/connectors/source-us-census/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: c4cfaeda-c757-489a-8aba-859fb08b6970 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-us-census githubIssueLabel: source-us-census icon: uscensus.svg @@ -47,5 +47,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/us-census.md b/docs/integrations/sources/us-census.md index f355394cb087..c6bf74b64869 100644 --- a/docs/integrations/sources/us-census.md +++ b/docs/integrations/sources/us-census.md @@ -45,6 +45,7 @@ In addition, to understand how to configure the dataset path and query parameter | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.3.2 | 2024-10-29 | [47845](https://github.com/airbytehq/airbyte/pull/47845) | Update dependencies | | 0.3.1 | 2024-10-28 | [47119](https://github.com/airbytehq/airbyte/pull/47119) | Update dependencies | | 0.3.0 | 2024-10-22 | [47246](https://github.com/airbytehq/airbyte/pull/47246) | Migrate to manifest-only format | | 0.2.6 | 2024-10-12 | [46813](https://github.com/airbytehq/airbyte/pull/46813) | Update dependencies | From fbbbf84d73ba3851b364d4768b7da4118017d2f6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:11 +0200 Subject: [PATCH 347/808] =?UTF-8?q?=F0=9F=90=99=20source-clazar:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47843)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-clazar/metadata.yaml | 4 ++-- docs/integrations/sources/clazar.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-clazar/metadata.yaml b/airbyte-integrations/connectors/source-clazar/metadata.yaml index 7c4fc2c7e7a2..feaeedca6651 100644 --- a/airbyte-integrations/connectors/source-clazar/metadata.yaml +++ b/airbyte-integrations/connectors/source-clazar/metadata.yaml @@ -12,11 +12,11 @@ data: enabled: false packageName: airbyte-source-clazar connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: d7df7b64-6266-45b5-ad83-e1515578f371 - dockerImageTag: 0.4.1 + dockerImageTag: 0.4.2 dockerRepository: airbyte/source-clazar githubIssueLabel: source-clazar icon: clazar.svg diff --git a/docs/integrations/sources/clazar.md b/docs/integrations/sources/clazar.md index e5bb4b8fd689..eaba21fd6581 100644 --- a/docs/integrations/sources/clazar.md +++ b/docs/integrations/sources/clazar.md @@ -112,6 +112,7 @@ Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------| +| 0.4.2 | 2024-10-29 | [47843](https://github.com/airbytehq/airbyte/pull/47843) | Update dependencies | | 0.4.1 | 2024-10-28 | [47598](https://github.com/airbytehq/airbyte/pull/47598) | Update dependencies | | 0.4.0 | 2024-08-30 | [44855](https://github.com/airbytehq/airbyte/pull/44855) | Using incremental APIs for online data | | 0.3.0 | 2024-08-21 | [44523](https://github.com/airbytehq/airbyte/pull/44523) | Refactor connector to manifest-only format | From 57902a8cb1f0fac356377f7ac85ea33d6b681218 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:16 +0200 Subject: [PATCH 348/808] =?UTF-8?q?=F0=9F=90=99=20source-mention:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47841)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mention/metadata.yaml | 4 ++-- docs/integrations/sources/mention.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mention/metadata.yaml b/airbyte-integrations/connectors/source-mention/metadata.yaml index 34032642ea99..eca6df4e25fd 100644 --- a/airbyte-integrations/connectors/source-mention/metadata.yaml +++ b/airbyte-integrations/connectors/source-mention/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mention connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 1180b5a7-8658-4510-ba65-611191333ba8 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-mention githubIssueLabel: source-mention icon: icon.svg diff --git a/docs/integrations/sources/mention.md b/docs/integrations/sources/mention.md index 455379aae3bc..9ab8da6a0607 100644 --- a/docs/integrations/sources/mention.md +++ b/docs/integrations/sources/mention.md @@ -33,6 +33,7 @@ Docs: https://dev.mention.com/current/ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47841](https://github.com/airbytehq/airbyte/pull/47841) | Update dependencies | | 0.0.2 | 2024-10-28 | [47538](https://github.com/airbytehq/airbyte/pull/47538) | Update dependencies | | 0.0.1 | 2024-10-23 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | From 498dd4e2670d41ee629aaa01f859648ba61b33db Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:20 +0200 Subject: [PATCH 349/808] =?UTF-8?q?=F0=9F=90=99=20source-safetyculture:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47839)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-safetyculture/metadata.yaml | 4 ++-- docs/integrations/sources/safetyculture.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-safetyculture/metadata.yaml b/airbyte-integrations/connectors/source-safetyculture/metadata.yaml index 5f770e8f5de3..5a4f2b1a839b 100644 --- a/airbyte-integrations/connectors/source-safetyculture/metadata.yaml +++ b/airbyte-integrations/connectors/source-safetyculture/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-safetyculture connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 570b875e-52d9-40e0-a43c-340ebae2d9f8 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-safetyculture githubIssueLabel: source-safetyculture icon: icon.svg diff --git a/docs/integrations/sources/safetyculture.md b/docs/integrations/sources/safetyculture.md index f69ce5cb1d89..343cb24bb1d5 100644 --- a/docs/integrations/sources/safetyculture.md +++ b/docs/integrations/sources/safetyculture.md @@ -54,6 +54,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47839](https://github.com/airbytehq/airbyte/pull/47839) | Update dependencies | | 0.0.2 | 2024-10-28 | [47586](https://github.com/airbytehq/airbyte/pull/47586) | Update dependencies | | 0.0.1 | 2024-10-04 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 64eb9ab7e95a058b5f8022065c921e63a5cb7fdb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:23 +0200 Subject: [PATCH 350/808] =?UTF-8?q?=F0=9F=90=99=20source-mixmax:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47838)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mixmax/metadata.yaml | 4 ++-- docs/integrations/sources/mixmax.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mixmax/metadata.yaml b/airbyte-integrations/connectors/source-mixmax/metadata.yaml index 7a1061536d2d..80d24438c0f4 100644 --- a/airbyte-integrations/connectors/source-mixmax/metadata.yaml +++ b/airbyte-integrations/connectors/source-mixmax/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mixmax connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 63df2e59-d086-4980-af83-01948325eacd - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-mixmax githubIssueLabel: source-mixmax icon: icon.svg diff --git a/docs/integrations/sources/mixmax.md b/docs/integrations/sources/mixmax.md index edc8fedaf456..9a30125f30ec 100644 --- a/docs/integrations/sources/mixmax.md +++ b/docs/integrations/sources/mixmax.md @@ -44,6 +44,7 @@ Visit `https://developer.mixmax.com/reference/getting-started-with-the-api` for | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-10-29 | [47838](https://github.com/airbytehq/airbyte/pull/47838) | Update dependencies | | 0.0.2 | 2024-10-28 | [47578](https://github.com/airbytehq/airbyte/pull/47578) | Update dependencies | | 0.0.1 | 2024-09-26 | [45921](https://github.com/airbytehq/airbyte/pull/45921) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 89e39edb1e6b551742a196314374b3ed4a1f2921 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:27 +0200 Subject: [PATCH 351/808] =?UTF-8?q?=F0=9F=90=99=20source-snapchat-marketin?= =?UTF-8?q?g:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47837)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-snapchat-marketing/metadata.yaml | 4 ++-- docs/integrations/sources/snapchat-marketing.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-snapchat-marketing/metadata.yaml b/airbyte-integrations/connectors/source-snapchat-marketing/metadata.yaml index 6c40eaeefde9..9a42dca064e4 100644 --- a/airbyte-integrations/connectors/source-snapchat-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-snapchat-marketing/metadata.yaml @@ -4,11 +4,11 @@ data: - accounts.snapchat.com - adsapi.snapchat.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.11.1@sha256:f48a7ddc1f3acecbd8eb6a10a3146e8d0396e9a4dede77beafb76924f416df65 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 200330b2-ea62-4d11-ac6d-cfe3e3f8ab2b - dockerImageTag: 1.3.0 + dockerImageTag: 1.3.1 dockerRepository: airbyte/source-snapchat-marketing githubIssueLabel: source-snapchat-marketing icon: snapchat.svg diff --git a/docs/integrations/sources/snapchat-marketing.md b/docs/integrations/sources/snapchat-marketing.md index d6632ef63c91..a998c9ed3291 100644 --- a/docs/integrations/sources/snapchat-marketing.md +++ b/docs/integrations/sources/snapchat-marketing.md @@ -143,6 +143,7 @@ Syncing data with an hourly granularity often generates large data volumes and c | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------| +| 1.3.1 | 2024-10-29 | [47837](https://github.com/airbytehq/airbyte/pull/47837) | Update dependencies | | 1.3.0 | 2024-10-15 | [46927](https://github.com/airbytehq/airbyte/pull/46927) | Promoting release candidate 1.3.0-rc.1 to a main version. | | 1.3.0-rc.1 | 2024-10-08 | [46570](https://github.com/airbytehq/airbyte/pull/46570) | Migrate to Manifest-only | | 1.2.12 | 2024-10-12 | [46800](https://github.com/airbytehq/airbyte/pull/46800) | Update dependencies | From 6c52da32d2b9691511a49d8c6582a2fb2cb38dcf Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:30 +0200 Subject: [PATCH 352/808] =?UTF-8?q?=F0=9F=90=99=20source-sendgrid:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47836)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-sendgrid/metadata.yaml | 4 ++-- docs/integrations/sources/sendgrid.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sendgrid/metadata.yaml b/airbyte-integrations/connectors/source-sendgrid/metadata.yaml index ef7b392c4670..726140f7bbf8 100644 --- a/airbyte-integrations/connectors/source-sendgrid/metadata.yaml +++ b/airbyte-integrations/connectors/source-sendgrid/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.sendgrid.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: fbb5fbe2-16ad-4cf4-af7d-ff9d9c316c87 - dockerImageTag: 1.2.1 + dockerImageTag: 1.2.2 releases: breakingChanges: 1.0.0: diff --git a/docs/integrations/sources/sendgrid.md b/docs/integrations/sources/sendgrid.md index b4dc4d9fc1cb..e9df97d6b182 100644 --- a/docs/integrations/sources/sendgrid.md +++ b/docs/integrations/sources/sendgrid.md @@ -89,6 +89,7 @@ The connector is restricted by normal Sendgrid [requests limitation](https://doc | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 1.2.2 | 2024-10-29 | [47836](https://github.com/airbytehq/airbyte/pull/47836) | Update dependencies | | 1.2.1 | 2024-10-28 | [47588](https://github.com/airbytehq/airbyte/pull/47588) | Update dependencies | | 1.2.0 | 2024-10-13 | [46870](https://github.com/airbytehq/airbyte/pull/46870) | Migrate to Manifest-only | | 1.1.5 | 2024-10-12 | [46781](https://github.com/airbytehq/airbyte/pull/46781) | Update dependencies | From 5a3e9b8e766fdc40783c0bcdde2bc729583f04e4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:34 +0200 Subject: [PATCH 353/808] =?UTF-8?q?=F0=9F=90=99=20source-waiteraid:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47835)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-waiteraid/metadata.yaml | 4 ++-- docs/integrations/sources/waiteraid.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-waiteraid/metadata.yaml b/airbyte-integrations/connectors/source-waiteraid/metadata.yaml index 2e6fdd95b5fc..5ae078fe1278 100644 --- a/airbyte-integrations/connectors/source-waiteraid/metadata.yaml +++ b/airbyte-integrations/connectors/source-waiteraid/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 03a53b13-794a-4d6b-8544-3b36ed8f3ce4 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-waiteraid githubIssueLabel: source-waiteraid icon: waiteraid.svg @@ -27,5 +27,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/waiteraid.md b/docs/integrations/sources/waiteraid.md index fe100f342e69..3e4e2254e66b 100644 --- a/docs/integrations/sources/waiteraid.md +++ b/docs/integrations/sources/waiteraid.md @@ -61,6 +61,7 @@ The Waiteraid source connector supports the following [sync modes](https://docs. | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------------------------------------------------- | :-------------------- | +| 0.2.3 | 2024-10-29 | [47835](https://github.com/airbytehq/airbyte/pull/47835) | Update dependencies | | 0.2.2 | 2024-10-28 | [47610](https://github.com/airbytehq/airbyte/pull/47610) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44047](https://github.com/airbytehq/airbyte/pull/44047) | Refactor connector to manifest-only format | From 7beb1576e787214a78e705b0fd680e267579140a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:38 +0200 Subject: [PATCH 354/808] =?UTF-8?q?=F0=9F=90=99=20source-rootly:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47833)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-rootly/metadata.yaml | 4 ++-- docs/integrations/sources/rootly.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-rootly/metadata.yaml b/airbyte-integrations/connectors/source-rootly/metadata.yaml index a44d2ba2d2ea..d5a0373dcf3c 100644 --- a/airbyte-integrations/connectors/source-rootly/metadata.yaml +++ b/airbyte-integrations/connectors/source-rootly/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-rootly connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.11.1@sha256:f48a7ddc1f3acecbd8eb6a10a3146e8d0396e9a4dede77beafb76924f416df65 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 2f111b00-0b92-4329-8481-6d7aa27a3991 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-rootly githubIssueLabel: source-rootly icon: icon.svg diff --git a/docs/integrations/sources/rootly.md b/docs/integrations/sources/rootly.md index 598500842c0a..338223c0e52a 100644 --- a/docs/integrations/sources/rootly.md +++ b/docs/integrations/sources/rootly.md @@ -52,6 +52,7 @@ Documentation: https://rootly.com/api#/ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47833](https://github.com/airbytehq/airbyte/pull/47833) | Update dependencies | | 0.0.1 | 2024-10-09 | [46669](https://github.com/airbytehq/airbyte/pull/46669) | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | From 95f47e6106677f157f4a5e3fc97bfdb42b8c3be4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:41 +0200 Subject: [PATCH 355/808] =?UTF-8?q?=F0=9F=90=99=20source-chargedesk:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47832)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chargedesk/metadata.yaml | 4 ++-- docs/integrations/sources/chargedesk.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-chargedesk/metadata.yaml b/airbyte-integrations/connectors/source-chargedesk/metadata.yaml index 309ba68435b2..eab427a58169 100644 --- a/airbyte-integrations/connectors/source-chargedesk/metadata.yaml +++ b/airbyte-integrations/connectors/source-chargedesk/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-chargedesk connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: cd803254-3d2c-4613-a870-20d205ee6267 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-chargedesk githubIssueLabel: source-chargedesk icon: icon.svg diff --git a/docs/integrations/sources/chargedesk.md b/docs/integrations/sources/chargedesk.md index 3c33840f6a5b..a548eae020d0 100644 --- a/docs/integrations/sources/chargedesk.md +++ b/docs/integrations/sources/chargedesk.md @@ -30,6 +30,7 @@ You can find more about the API here https://chargedesk.com/api-docs | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47832](https://github.com/airbytehq/airbyte/pull/47832) | Update dependencies | | 0.0.2 | 2024-10-28 | [47560](https://github.com/airbytehq/airbyte/pull/47560) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 45e671d4765745614ff13346192d54539bfc4506 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:47 +0200 Subject: [PATCH 356/808] =?UTF-8?q?=F0=9F=90=99=20source-guru:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47830)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-guru/metadata.yaml | 4 ++-- docs/integrations/sources/guru.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-guru/metadata.yaml b/airbyte-integrations/connectors/source-guru/metadata.yaml index a569bec496e7..4a9ae3e31ac2 100644 --- a/airbyte-integrations/connectors/source-guru/metadata.yaml +++ b/airbyte-integrations/connectors/source-guru/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-guru connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 30e2d5f2-63c1-4993-8079-c8abf24e747d - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-guru githubIssueLabel: source-guru icon: icon.svg diff --git a/docs/integrations/sources/guru.md b/docs/integrations/sources/guru.md index 0e4ca65fd7d4..92ed77ba5c46 100644 --- a/docs/integrations/sources/guru.md +++ b/docs/integrations/sources/guru.md @@ -50,6 +50,7 @@ To set up the Guru source connector, you'll need the [Guru Auth keys](https://de | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-10-29 | [47830](https://github.com/airbytehq/airbyte/pull/47830) | Update dependencies | | 0.0.2 | 2024-10-28 | [47665](https://github.com/airbytehq/airbyte/pull/47665) | Update dependencies | | 0.0.1 | 2024-08-31 | [45066](https://github.com/airbytehq/airbyte/pull/45066) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 448372dc76a9af25ba80adbe827fe951a0bbcb8b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:51 +0200 Subject: [PATCH 357/808] =?UTF-8?q?=F0=9F=90=99=20source-7shifts:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47829)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-7shifts/metadata.yaml | 4 ++-- docs/integrations/sources/7shifts.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-7shifts/metadata.yaml b/airbyte-integrations/connectors/source-7shifts/metadata.yaml index 467d8fef7ecf..1b8787138aaf 100644 --- a/airbyte-integrations/connectors/source-7shifts/metadata.yaml +++ b/airbyte-integrations/connectors/source-7shifts/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-7shifts connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: a8b458a3-024f-430e-8f62-a200c3eb79fd - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-7shifts githubIssueLabel: source-7shifts icon: icon.svg diff --git a/docs/integrations/sources/7shifts.md b/docs/integrations/sources/7shifts.md index e27a0e8dcd8f..2a411f4945c6 100644 --- a/docs/integrations/sources/7shifts.md +++ b/docs/integrations/sources/7shifts.md @@ -33,6 +33,7 @@ Generate an Access Token by navigating to "Company Settings", then "Developer To | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-10-29 | [47829](https://github.com/airbytehq/airbyte/pull/47829) | Update dependencies | | 0.0.2 | 2024-10-28 | [47575](https://github.com/airbytehq/airbyte/pull/47575) | Update dependencies | | 0.0.1 | 2024-09-18 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 70ddcb47c6656e850ab77ed634a897209c84f136 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:11:56 +0200 Subject: [PATCH 358/808] =?UTF-8?q?=F0=9F=90=99=20source-reddit:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47827)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-reddit/metadata.yaml | 4 ++-- docs/integrations/sources/reddit.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-reddit/metadata.yaml b/airbyte-integrations/connectors/source-reddit/metadata.yaml index 3c0eb0efff37..f3ede0a2925d 100644 --- a/airbyte-integrations/connectors/source-reddit/metadata.yaml +++ b/airbyte-integrations/connectors/source-reddit/metadata.yaml @@ -14,11 +14,11 @@ data: enabled: false packageName: airbyte-source-reddit connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 3ed344ac-4099-402c-bf83-1cfdc53295d9 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-reddit githubIssueLabel: source-reddit icon: icon.svg diff --git a/docs/integrations/sources/reddit.md b/docs/integrations/sources/reddit.md index c225f7e4dcda..09006b1b2636 100644 --- a/docs/integrations/sources/reddit.md +++ b/docs/integrations/sources/reddit.md @@ -65,6 +65,7 @@ Hit send to receive `api_key` in the response under `access_token` | Version | Date |Pull Request | Subject | |------------------|------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47827](https://github.com/airbytehq/airbyte/pull/47827) | Update dependencies | | 0.0.2 | 2024-10-28 | [47542](https://github.com/airbytehq/airbyte/pull/47542) | Update dependencies | | 0.0.1 | 2024-08-23 | [44579](https://github.com/airbytehq/airbyte/pull/44579) | Initial release by [btkcodedev](https://github.com/btkcodedev) via Connector Builder | From ae9bfad9b5df8091b55114a77191261ea069407e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:00 +0200 Subject: [PATCH 359/808] =?UTF-8?q?=F0=9F=90=99=20source-dockerhub:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47826)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-dockerhub/metadata.yaml | 4 ++-- docs/integrations/sources/dockerhub.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-dockerhub/metadata.yaml b/airbyte-integrations/connectors/source-dockerhub/metadata.yaml index ab0603e0c6b5..621a02d7b158 100644 --- a/airbyte-integrations/connectors/source-dockerhub/metadata.yaml +++ b/airbyte-integrations/connectors/source-dockerhub/metadata.yaml @@ -7,11 +7,11 @@ data: - hub.docker.com - auth.docker.io connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 72d405a3-56d8-499f-a571-667c03406e43 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-dockerhub documentationUrl: https://docs.airbyte.com/integrations/sources/dockerhub githubIssueLabel: source-dockerhub diff --git a/docs/integrations/sources/dockerhub.md b/docs/integrations/sources/dockerhub.md index 8bded853f91e..81ea85367895 100644 --- a/docs/integrations/sources/dockerhub.md +++ b/docs/integrations/sources/dockerhub.md @@ -39,6 +39,7 @@ This connector has been tested for the Airbyte organization, which has 266 repos | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.3 | 2024-10-29 | [47826](https://github.com/airbytehq/airbyte/pull/47826) | Update dependencies | | 0.3.2 | 2024-10-28 | [47664](https://github.com/airbytehq/airbyte/pull/47664) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44155](https://github.com/airbytehq/airbyte/pull/44155) | Refactor connector to manifest-only format | From 1a28b126de3a025a601673d4aa8552548d691c01 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:04 +0200 Subject: [PATCH 360/808] =?UTF-8?q?=F0=9F=90=99=20source-smartwaiver:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47825)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-smartwaiver/metadata.yaml | 4 ++-- docs/integrations/sources/smartwaiver.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-smartwaiver/metadata.yaml b/airbyte-integrations/connectors/source-smartwaiver/metadata.yaml index 4bce6af0bdf3..415757e4be55 100644 --- a/airbyte-integrations/connectors/source-smartwaiver/metadata.yaml +++ b/airbyte-integrations/connectors/source-smartwaiver/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-smartwaiver connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.11.1@sha256:f48a7ddc1f3acecbd8eb6a10a3146e8d0396e9a4dede77beafb76924f416df65 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 878608e5-4086-4cd2-8b23-32d839616687 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-smartwaiver githubIssueLabel: source-smartwaiver icon: icon.svg diff --git a/docs/integrations/sources/smartwaiver.md b/docs/integrations/sources/smartwaiver.md index cc277136cde1..858be5114aba 100644 --- a/docs/integrations/sources/smartwaiver.md +++ b/docs/integrations/sources/smartwaiver.md @@ -30,6 +30,7 @@ Due to some limitation of SmartWaiver API it can have situations where you won't | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47825](https://github.com/airbytehq/airbyte/pull/47825) | Update dependencies | | 0.0.1 | 2024-10-09 | | Initial release by [@avirajsingh7](https://github.com/avirajsingh7) via Connector Builder | From 6e7620a207ffcbc2cd24b7bd59ab2af0449e9d78 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:09 +0200 Subject: [PATCH 361/808] =?UTF-8?q?=F0=9F=90=99=20source-gong:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47824)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gong/metadata.yaml | 4 ++-- docs/integrations/sources/gong.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/source-gong/metadata.yaml b/airbyte-integrations/connectors/source-gong/metadata.yaml index 7ed56aac02b5..a7e608af3d0d 100644 --- a/airbyte-integrations/connectors/source-gong/metadata.yaml +++ b/airbyte-integrations/connectors/source-gong/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 32382e40-3b49-4b99-9c5c-4076501914e7 - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-gong documentationUrl: https://docs.airbyte.com/integrations/sources/gong githubIssueLabel: source-gong diff --git a/docs/integrations/sources/gong.md b/docs/integrations/sources/gong.md index acb73195184a..e238405b18ce 100644 --- a/docs/integrations/sources/gong.md +++ b/docs/integrations/sources/gong.md @@ -40,8 +40,9 @@ By default Gong limits your company's access to the service to 3 API calls per s | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.3.0 | 2024-09-04 | [45117](https://github.com/airbytehq/airbyte/pull/45117) | Add new stream `extensive calls` | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.1 | 2024-10-29 | [47824](https://github.com/airbytehq/airbyte/pull/47824) | Update dependencies | +| 0.3.0 | 2024-09-04 | [45117](https://github.com/airbytehq/airbyte/pull/45117) | Add new stream `extensive calls` | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44144](https://github.com/airbytehq/airbyte/pull/44144) | Refactor connector to manifest-only format | | 0.1.17 | 2024-08-10 | [43481](https://github.com/airbytehq/airbyte/pull/43481) | Update dependencies | | 0.1.16 | 2024-08-03 | [43275](https://github.com/airbytehq/airbyte/pull/43275) | Update dependencies | From c9cb431ecce050fcc717b31a1c9f7644970bc0a4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:13 +0200 Subject: [PATCH 362/808] =?UTF-8?q?=F0=9F=90=99=20source-todoist:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47823)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-todoist/metadata.yaml | 4 ++-- docs/integrations/sources/todoist.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-todoist/metadata.yaml b/airbyte-integrations/connectors/source-todoist/metadata.yaml index 7dcec98d6f99..9dbebfb75c96 100644 --- a/airbyte-integrations/connectors/source-todoist/metadata.yaml +++ b/airbyte-integrations/connectors/source-todoist/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 1a3d38e4-dc6b-4154-b56b-582f9e978ecd - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-todoist githubIssueLabel: source-todoist icon: todoist.svg diff --git a/docs/integrations/sources/todoist.md b/docs/integrations/sources/todoist.md index db46dee962bf..a933d882ead8 100644 --- a/docs/integrations/sources/todoist.md +++ b/docs/integrations/sources/todoist.md @@ -46,6 +46,7 @@ List of available streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------- | +| 0.3.2 | 2024-10-29 | [47823](https://github.com/airbytehq/airbyte/pull/47823) | Update dependencies | | 0.3.1 | 2024-10-22 | [47237](https://github.com/airbytehq/airbyte/pull/47237) | Update dependencies | | 0.3.0 | 2024-08-26 | [44775](https://github.com/airbytehq/airbyte/pull/44775) | Refactor connector to manifest-only format | | 0.2.18 | 2024-08-24 | [44675](https://github.com/airbytehq/airbyte/pull/44675) | Update dependencies | From ff9dc49c1368fbe7b8b38b20ac3be4d56f32ead9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:17 +0200 Subject: [PATCH 363/808] =?UTF-8?q?=F0=9F=90=99=20source-chameleon:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47822)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chameleon/metadata.yaml | 4 ++-- docs/integrations/sources/chameleon.md | 9 +++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-chameleon/metadata.yaml b/airbyte-integrations/connectors/source-chameleon/metadata.yaml index 22ffd41de391..bd1ee3cb3d99 100644 --- a/airbyte-integrations/connectors/source-chameleon/metadata.yaml +++ b/airbyte-integrations/connectors/source-chameleon/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-chameleon connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 64a0240a-81a4-4e40-8002-e063b17cfbbe - dockerImageTag: 0.1.0 + dockerImageTag: 0.1.1 dockerRepository: airbyte/source-chameleon githubIssueLabel: source-chameleon icon: icon.svg diff --git a/docs/integrations/sources/chameleon.md b/docs/integrations/sources/chameleon.md index e132b1187074..ee93b87f7d7a 100644 --- a/docs/integrations/sources/chameleon.md +++ b/docs/integrations/sources/chameleon.md @@ -40,8 +40,9 @@ Refer `https://app.chameleon.io/settings/tokens` for getting your API key. | Version | Date | Pull Request | Subject | |------------------|------------|--------------|----------------| -| 0.1.0 | 2024-09-29 |[46248](https://github.com/airbytehq/airbyte/pull/46248)| Fix survey_responses stream schema and icon | -| 0.0.2 | 2024-09-21 |[45708](https://github.com/airbytehq/airbyte/pull/45708)| Make end date optional | -| 0.0.1 | 2024-09-18 |[45658](https://github.com/airbytehq/airbyte/pull/45658)| Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder| +| 0.1.1 | 2024-10-29 | [47822](https://github.com/airbytehq/airbyte/pull/47822) | Update dependencies | +| 0.1.0 | 2024-09-29 | [46248](https://github.com/airbytehq/airbyte/pull/46248) | Fix survey_responses stream schema and icon | +| 0.0.2 | 2024-09-21 | [45708](https://github.com/airbytehq/airbyte/pull/45708) | Make end date optional | +| 0.0.1 | 2024-09-18 | [45658](https://github.com/airbytehq/airbyte/pull/45658) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From bbf410615fd9e4504599b286f66064b3e1021742 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:20 +0200 Subject: [PATCH 364/808] =?UTF-8?q?=F0=9F=90=99=20destination-motherduck:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47821)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-motherduck/metadata.yaml | 2 +- .../destination-motherduck/poetry.lock | 24 +++++++++---------- .../destination-motherduck/pyproject.toml | 2 +- docs/integrations/destinations/motherduck.md | 13 +++++----- 4 files changed, 21 insertions(+), 20 deletions(-) diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index cbdee152180a..87f2b9733b6e 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.5 + dockerImageTag: 0.1.6 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/poetry.lock b/airbyte-integrations/connectors/destination-motherduck/poetry.lock index c682035a00c6..3442398fd321 100644 --- a/airbyte-integrations/connectors/destination-motherduck/poetry.lock +++ b/airbyte-integrations/connectors/destination-motherduck/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "5.15.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.15.0-py3-none-any.whl", hash = "sha256:2489c4a5a3b3c13b72a1e923a6c9cd10833184f6b7e00ca4f7ccd8b076b892ff"}, - {file = "airbyte_cdk-5.15.0.tar.gz", hash = "sha256:a61717cc33d4f191e64e4407c0e87aa1f49c1119267069ef807087a70aa043eb"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -2181,23 +2181,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -2336,13 +2336,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index 02436880ef82..75a3578772bd 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-motherduck" -version = "0.1.5" +version = "0.1.6" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index 968a101222f9..5be5a320050a 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,11 +69,12 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| 0.1.5 | 2024-10-28 | [47694](https://github.com/airbytehq/airbyte/pull/47694) | Resolve write failures, move processor classes into the connector. | -| 0.1.4 | 2024-10-28 | [47688](https://github.com/airbytehq/airbyte/pull/47688) | Use new destination table name format, explicitly insert PyArrow table columns by name and add debug info for column mismatches. | -| 0.1.3 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Fix bug causing MotherDuck API key to not be correctly passed to the engine. | -| 0.1.2 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Use `saas_only` mode during connection check to reduce ram usage. | -| 0.1.1 | 2024-10-23 | [47312](https://github.com/airbytehq/airbyte/pull/47312) | Fix: generate new unique destination ID | -| 0.1.0 | 2024-10-23 | [46904](https://github.com/airbytehq/airbyte/pull/46904) | New MotherDuck destination | +| 0.1.6 | 2024-10-29 | [47821](https://github.com/airbytehq/airbyte/pull/47821) | Update dependencies | +| 0.1.5 | 2024-10-28 | [47694](https://github.com/airbytehq/airbyte/pull/47694) | Resolve write failures, move processor classes into the connector. | +| 0.1.4 | 2024-10-28 | [47688](https://github.com/airbytehq/airbyte/pull/47688) | Use new destination table name format, explicitly insert PyArrow table columns by name and add debug info for column mismatches. | +| 0.1.3 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Fix bug causing MotherDuck API key to not be correctly passed to the engine. | +| 0.1.2 | 2024-10-23 | [47315](https://github.com/airbytehq/airbyte/pull/47315) | Use `saas_only` mode during connection check to reduce ram usage. | +| 0.1.1 | 2024-10-23 | [47312](https://github.com/airbytehq/airbyte/pull/47312) | Fix: generate new unique destination ID | +| 0.1.0 | 2024-10-23 | [46904](https://github.com/airbytehq/airbyte/pull/46904) | New MotherDuck destination | From 009b646b20e3c74f7037b7f3437638fb5ce52e20 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:24 +0200 Subject: [PATCH 365/808] =?UTF-8?q?=F0=9F=90=99=20source-google-analytics-?= =?UTF-8?q?v4-service-account-only:=20run=20up-to-date=20pipeline=20[2024-?= =?UTF-8?q?10-29]=20(#47820)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../metadata.yaml | 4 ++-- .../sources/google-analytics-v4-service-account-only.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-analytics-v4-service-account-only/metadata.yaml b/airbyte-integrations/connectors/source-google-analytics-v4-service-account-only/metadata.yaml index 3952cb9ae706..2c28b4884dd6 100644 --- a/airbyte-integrations/connectors/source-google-analytics-v4-service-account-only/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-analytics-v4-service-account-only/metadata.yaml @@ -9,11 +9,11 @@ data: - analyticsdata.googleapis.com - analyticsreporting.googleapis.com connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.0@sha256:c22a9d97464b69d6ef01898edf3f8612dc11614f05a84984451dde195f337db9 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorSubtype: api connectorType: source definitionId: 9e28a926-8f3c-4911-982d-a2e1c378b59c - dockerImageTag: 0.1.0 + dockerImageTag: 0.1.1 dockerRepository: airbyte/source-google-analytics-v4-service-account-only documentationUrl: https://docs.airbyte.com/integrations/sources/google-analytics-v4-service-account-only githubIssueLabel: source-google-analytics-v4-service-account-only diff --git a/docs/integrations/sources/google-analytics-v4-service-account-only.md b/docs/integrations/sources/google-analytics-v4-service-account-only.md index 3d164dfe6d25..5ec2662043df 100644 --- a/docs/integrations/sources/google-analytics-v4-service-account-only.md +++ b/docs/integrations/sources/google-analytics-v4-service-account-only.md @@ -274,7 +274,8 @@ The Google Analytics connector should not run into the "requests per 100 seconds | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:-----------------------------------------| -| 0.1.0 | 2024-07-01 | [40244](https://github.com/airbytehq/airbyte/pull/40244) | Deprecate the connector | +| 0.1.1 | 2024-10-29 | [47820](https://github.com/airbytehq/airbyte/pull/47820) | Update dependencies | +| 0.1.0 | 2024-07-01 | [40244](https://github.com/airbytehq/airbyte/pull/40244) | Deprecate the connector | | 0.0.2 | 2024-04-19 | [37432](https://github.com/airbytehq/airbyte/pull/36267) | Fix empty response error for test stream | | 0.0.1 | 2024-01-29 | [34323](https://github.com/airbytehq/airbyte/pull/34323) | Initial Release | From 3a3f86c8ec04a857b169e8adf8a74d79ad9f8573 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:30 +0200 Subject: [PATCH 366/808] =?UTF-8?q?=F0=9F=90=99=20source-lemlist:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47818)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-lemlist/metadata.yaml | 4 ++-- docs/integrations/sources/lemlist.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-lemlist/metadata.yaml b/airbyte-integrations/connectors/source-lemlist/metadata.yaml index fa67a3648f4e..bd074c63ecd0 100644 --- a/airbyte-integrations/connectors/source-lemlist/metadata.yaml +++ b/airbyte-integrations/connectors/source-lemlist/metadata.yaml @@ -14,9 +14,9 @@ data: connectorSubtype: api connectorType: source connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa definitionId: 789f8e7a-2d28-11ec-8d3d-0242ac130003 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-lemlist githubIssueLabel: source-lemlist icon: lemlist.svg diff --git a/docs/integrations/sources/lemlist.md b/docs/integrations/sources/lemlist.md index a74b5d7a700d..fb001d9da96d 100644 --- a/docs/integrations/sources/lemlist.md +++ b/docs/integrations/sources/lemlist.md @@ -40,6 +40,7 @@ The Lemlist connector should not run into Lemlist API limitations under normal u | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------- | +| 0.3.2 | 2024-10-29 | [47818](https://github.com/airbytehq/airbyte/pull/47818) | Update dependencies | | 0.3.1 | 2024-10-28 | [47652](https://github.com/airbytehq/airbyte/pull/47652) | Update dependencies | | 0.3.0 | 2024-08-19 | [44413](https://github.com/airbytehq/airbyte/pull/44413) | Refactor connector to manifest-only format | | 0.2.14 | 2024-08-17 | [43880](https://github.com/airbytehq/airbyte/pull/43880) | Update dependencies | From 44ebfe8c1a46608e064df209ec7830f31edbf042 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:35 +0200 Subject: [PATCH 367/808] =?UTF-8?q?=F0=9F=90=99=20source-harvest:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47817)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-harvest/metadata.yaml | 4 ++-- docs/integrations/sources/harvest.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-harvest/metadata.yaml b/airbyte-integrations/connectors/source-harvest/metadata.yaml index eae2c1e21d77..6ffdc98583ef 100644 --- a/airbyte-integrations/connectors/source-harvest/metadata.yaml +++ b/airbyte-integrations/connectors/source-harvest/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.harvestapp.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: fe2b4084-3386-4d3b-9ad6-308f61a6f1e6 - dockerImageTag: 1.1.1 + dockerImageTag: 1.1.2 dockerRepository: airbyte/source-harvest documentationUrl: https://docs.airbyte.com/integrations/sources/harvest githubIssueLabel: source-harvest diff --git a/docs/integrations/sources/harvest.md b/docs/integrations/sources/harvest.md index 7b9546f483df..8237dfcec32e 100644 --- a/docs/integrations/sources/harvest.md +++ b/docs/integrations/sources/harvest.md @@ -91,6 +91,7 @@ The connector is restricted by the [Harvest rate limits](https://help.getharvest | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- |:----------------------------------------------------------------------------------------------------------------------------------| +| 1.1.2 | 2024-10-29 | [47817](https://github.com/airbytehq/airbyte/pull/47817) | Update dependencies | | 1.1.1 | 2024-10-28 | [47670](https://github.com/airbytehq/airbyte/pull/47670) | Update dependencies | | 1.1.0 | 2024-10-14 | [46898](https://github.com/airbytehq/airbyte/pull/46898) | Promoting release candidate 1.1.0-rc1 to a main version. | | 1.1.0-rc1 | 2024-10-09 | [46685](https://github.com/airbytehq/airbyte/pull/46685) | Migrate to Manifest-only | From 4d12c398afd7afe430afa07edc98c2ee56d2ee26 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:41 +0200 Subject: [PATCH 368/808] =?UTF-8?q?=F0=9F=90=99=20source-sparkpost:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47815)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sparkpost/metadata.yaml | 4 ++-- docs/integrations/sources/sparkpost.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sparkpost/metadata.yaml b/airbyte-integrations/connectors/source-sparkpost/metadata.yaml index 44f97c546df1..4c5361f1bac4 100644 --- a/airbyte-integrations/connectors/source-sparkpost/metadata.yaml +++ b/airbyte-integrations/connectors/source-sparkpost/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-sparkpost connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 5f3256c6-4247-4b6d-a8e4-1df61dc9322c - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-sparkpost githubIssueLabel: source-sparkpost icon: icon.svg diff --git a/docs/integrations/sources/sparkpost.md b/docs/integrations/sources/sparkpost.md index b2f16902ad78..0eb783f8a63b 100644 --- a/docs/integrations/sources/sparkpost.md +++ b/docs/integrations/sources/sparkpost.md @@ -27,6 +27,7 @@ The SparkPost connector for Airbyte enables seamless integration with SparkPost | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47815](https://github.com/airbytehq/airbyte/pull/47815) | Update dependencies | | 0.0.2 | 2024-10-28 | [47612](https://github.com/airbytehq/airbyte/pull/47612) | Update dependencies | | 0.0.1 | 2024-10-22 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From e4ee60af5f71e80f2c500e1eae61d61f42bb242e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:45 +0200 Subject: [PATCH 369/808] =?UTF-8?q?=F0=9F=90=99=20source-shopify:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47814)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-shopify/metadata.yaml | 2 +- .../connectors/source-shopify/poetry.lock | 12 ++++++------ .../connectors/source-shopify/pyproject.toml | 2 +- docs/integrations/sources/shopify.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-shopify/metadata.yaml b/airbyte-integrations/connectors/source-shopify/metadata.yaml index 4fc0b8a8b222..77118ad4ebc2 100644 --- a/airbyte-integrations/connectors/source-shopify/metadata.yaml +++ b/airbyte-integrations/connectors/source-shopify/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9da77001-af33-4bcd-be46-6252bf9342b9 - dockerImageTag: 2.5.8 + dockerImageTag: 2.5.9 dockerRepository: airbyte/source-shopify documentationUrl: https://docs.airbyte.com/integrations/sources/shopify erdUrl: https://dbdocs.io/airbyteio/source-shopify?view=relationships diff --git a/airbyte-integrations/connectors/source-shopify/poetry.lock b/airbyte-integrations/connectors/source-shopify/poetry.lock index 636817554b28..1726a966fd79 100644 --- a/airbyte-integrations/connectors/source-shopify/poetry.lock +++ b/airbyte-integrations/connectors/source-shopify/poetry.lock @@ -1735,23 +1735,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "sgqlc" diff --git a/airbyte-integrations/connectors/source-shopify/pyproject.toml b/airbyte-integrations/connectors/source-shopify/pyproject.toml index 303c40dbf436..26496f2586c5 100644 --- a/airbyte-integrations/connectors/source-shopify/pyproject.toml +++ b/airbyte-integrations/connectors/source-shopify/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.5.8" +version = "2.5.9" name = "source-shopify" description = "Source CDK implementation for Shopify." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/shopify.md b/docs/integrations/sources/shopify.md index 973f116edeb0..48a9a223cd73 100644 --- a/docs/integrations/sources/shopify.md +++ b/docs/integrations/sources/shopify.md @@ -247,6 +247,7 @@ For all `Shopify GraphQL BULK` api requests these limitations are applied: https | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 2.5.9 | 2024-10-29 | [47814](https://github.com/airbytehq/airbyte/pull/47814) | Update dependencies | | 2.5.8 | 2024-10-28 | [47044](https://github.com/airbytehq/airbyte/pull/47044) | Update dependencies | | 2.5.7 | 2024-10-14 | [46552](https://github.com/airbytehq/airbyte/pull/46552) | Add `parent state` tracking for BULK sub-streams | | 2.5.6 | 2024-10-12 | [46844](https://github.com/airbytehq/airbyte/pull/46844) | Update dependencies | From da2bb9a832cd9dd3810f7a8e2b750cd96feb0bdd Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:49 +0200 Subject: [PATCH 370/808] =?UTF-8?q?=F0=9F=90=99=20source-exchange-rates:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47813)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-exchange-rates/metadata.yaml | 4 ++-- docs/integrations/sources/exchange-rates.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml b/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml index fe469dcb8023..c27e90c6d766 100644 --- a/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml +++ b/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml @@ -16,11 +16,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: e2b40e36-aa0e-4bed-b41b-bcea6fa348b1 - dockerImageTag: 1.4.2 + dockerImageTag: 1.4.3 dockerRepository: airbyte/source-exchange-rates githubIssueLabel: source-exchange-rates icon: exchangeratesapi.svg diff --git a/docs/integrations/sources/exchange-rates.md b/docs/integrations/sources/exchange-rates.md index d5979f155803..7acb0d6a2bd0 100644 --- a/docs/integrations/sources/exchange-rates.md +++ b/docs/integrations/sources/exchange-rates.md @@ -90,6 +90,7 @@ The Exchange Rates API has rate limits that vary per pricing plan. The free plan | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------ | +| 1.4.3 | 2024-10-29 | [47813](https://github.com/airbytehq/airbyte/pull/47813) | Update dependencies | | 1.4.2 | 2024-10-28 | [47549](https://github.com/airbytehq/airbyte/pull/47549) | Update dependencies | | 1.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 1.4.0 | 2024-08-15 | [44150](https://github.com/airbytehq/airbyte/pull/44150) | Refactor connector to manifest-only format | From 5f6495420ea0e703ee1bba07a821d2cf443b851f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:12:54 +0200 Subject: [PATCH 371/808] =?UTF-8?q?=F0=9F=90=99=20source-veeqo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47811)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-veeqo/metadata.yaml | 4 ++-- docs/integrations/sources/veeqo.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-veeqo/metadata.yaml b/airbyte-integrations/connectors/source-veeqo/metadata.yaml index f3f99dcea22e..0ab7f6eebef5 100644 --- a/airbyte-integrations/connectors/source-veeqo/metadata.yaml +++ b/airbyte-integrations/connectors/source-veeqo/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-veeqo connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: ae647c65-da81-4ae5-958a-86490ce53a5e - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-veeqo githubIssueLabel: source-veeqo icon: icon.svg diff --git a/docs/integrations/sources/veeqo.md b/docs/integrations/sources/veeqo.md index a667cae50a6b..75c165963284 100644 --- a/docs/integrations/sources/veeqo.md +++ b/docs/integrations/sources/veeqo.md @@ -30,6 +30,7 @@ Veeqo Airbyte connector for Veeqo enables seamless data integration between Veeq | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47811](https://github.com/airbytehq/airbyte/pull/47811) | Update dependencies | | 0.0.2 | 2024-10-28 | [47488](https://github.com/airbytehq/airbyte/pull/47488) | Update dependencies | | 0.0.1 | 2024-10-17 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 3b2a425ebaa5761eb7d4b932088f90ae2f187f0d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:13:01 +0200 Subject: [PATCH 372/808] =?UTF-8?q?=F0=9F=90=99=20source-freshcaller:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47808)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-freshcaller/metadata.yaml | 2 +- .../connectors/source-freshcaller/poetry.lock | 12 ++++++------ .../connectors/source-freshcaller/pyproject.toml | 2 +- docs/integrations/sources/freshcaller.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-freshcaller/metadata.yaml b/airbyte-integrations/connectors/source-freshcaller/metadata.yaml index 25392b2daf58..f61fb7af45e7 100644 --- a/airbyte-integrations/connectors/source-freshcaller/metadata.yaml +++ b/airbyte-integrations/connectors/source-freshcaller/metadata.yaml @@ -19,7 +19,7 @@ data: type: GSM connectorType: source definitionId: 8a5d48f6-03bb-4038-a942-a8d3f175cca3 - dockerImageTag: 0.4.17 + dockerImageTag: 0.4.18 dockerRepository: airbyte/source-freshcaller documentationUrl: https://docs.airbyte.com/integrations/sources/freshcaller githubIssueLabel: source-freshcaller diff --git a/airbyte-integrations/connectors/source-freshcaller/poetry.lock b/airbyte-integrations/connectors/source-freshcaller/poetry.lock index 563aa6990f6c..5f0917f08200 100644 --- a/airbyte-integrations/connectors/source-freshcaller/poetry.lock +++ b/airbyte-integrations/connectors/source-freshcaller/poetry.lock @@ -916,23 +916,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-freshcaller/pyproject.toml b/airbyte-integrations/connectors/source-freshcaller/pyproject.toml index fce65ccdbcf2..6ef3feb44c3f 100644 --- a/airbyte-integrations/connectors/source-freshcaller/pyproject.toml +++ b/airbyte-integrations/connectors/source-freshcaller/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.17" +version = "0.4.18" name = "source-freshcaller" description = "Source implementation for Freshcaller" authors = ["Airbyte "] diff --git a/docs/integrations/sources/freshcaller.md b/docs/integrations/sources/freshcaller.md index 1b14342b722a..e289a4a17e80 100644 --- a/docs/integrations/sources/freshcaller.md +++ b/docs/integrations/sources/freshcaller.md @@ -46,6 +46,7 @@ Please read [How to find your API key](https://support.freshdesk.com/en/support/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.4.18 | 2024-10-29 | [47808](https://github.com/airbytehq/airbyte/pull/47808) | Update dependencies | | 0.4.17 | 2024-10-23 | [47065](https://github.com/airbytehq/airbyte/pull/47065) | Update dependencies | | 0.4.16 | 2024-10-12 | [46796](https://github.com/airbytehq/airbyte/pull/46796) | Update dependencies | | 0.4.15 | 2024-10-05 | [46435](https://github.com/airbytehq/airbyte/pull/46435) | Update dependencies | From a491bbe26b6e29b04f9e5f3b0311a41984a7b8f9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:13:30 +0200 Subject: [PATCH 373/808] =?UTF-8?q?=F0=9F=90=99=20source-pivotal-tracker:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47679)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pivotal-tracker/metadata.yaml | 4 ++-- docs/integrations/sources/pivotal-tracker.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-pivotal-tracker/metadata.yaml b/airbyte-integrations/connectors/source-pivotal-tracker/metadata.yaml index fa020c4884a7..918cb00b743f 100644 --- a/airbyte-integrations/connectors/source-pivotal-tracker/metadata.yaml +++ b/airbyte-integrations/connectors/source-pivotal-tracker/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: d60f5393-f99e-4310-8d05-b1876820f40e - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-pivotal-tracker githubIssueLabel: source-pivotal-tracker icon: pivotal-tracker.svg diff --git a/docs/integrations/sources/pivotal-tracker.md b/docs/integrations/sources/pivotal-tracker.md index 1026c9d6aae4..e0738f2b103f 100644 --- a/docs/integrations/sources/pivotal-tracker.md +++ b/docs/integrations/sources/pivotal-tracker.md @@ -56,7 +56,8 @@ Use this to pull data from Pivotal Tracker. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------- | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-29 | [47679](https://github.com/airbytehq/airbyte/pull/47679) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-14 | [44087](https://github.com/airbytehq/airbyte/pull/44087) | Refactor connector to manifest-only format | | 0.2.12 | 2024-08-12 | [43849](https://github.com/airbytehq/airbyte/pull/43849) | Update dependencies | | 0.2.11 | 2024-08-10 | [43506](https://github.com/airbytehq/airbyte/pull/43506) | Update dependencies | From 193a6b62f125ab767321495bd1099168a64f2ec7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:16:13 +0200 Subject: [PATCH 374/808] =?UTF-8?q?=F0=9F=90=99=20source-omnisend:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47474)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-omnisend/metadata.yaml | 4 ++-- docs/integrations/sources/omnisend.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-omnisend/metadata.yaml b/airbyte-integrations/connectors/source-omnisend/metadata.yaml index 8618877a5736..67f1438ada1a 100644 --- a/airbyte-integrations/connectors/source-omnisend/metadata.yaml +++ b/airbyte-integrations/connectors/source-omnisend/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.1@sha256:775f3f28381e2bb18d84ecccd35624b3de6f2cf62fb481fe7809091435f8eb26 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: e7f0c5e2-4815-48c4-90cf-f47124209835 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-omnisend githubIssueLabel: source-omnisend icon: omnisend.svg diff --git a/docs/integrations/sources/omnisend.md b/docs/integrations/sources/omnisend.md index e2ea5c5f7fd2..8f78ad235348 100644 --- a/docs/integrations/sources/omnisend.md +++ b/docs/integrations/sources/omnisend.md @@ -36,6 +36,7 @@ The connector has a rate limit of 400 requests per 1 minute. | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :------------- | +| 0.2.1 | 2024-10-29 | [47474](https://github.com/airbytehq/airbyte/pull/47474) | Update dependencies | | 0.2.0 | 2024-08-19 | [44411](https://github.com/airbytehq/airbyte/pull/44411) | Refactor connector to manifest-only format | | 0.1.13 | 2024-08-17 | [44307](https://github.com/airbytehq/airbyte/pull/44307) | Update dependencies | | 0.1.12 | 2024-08-12 | [43727](https://github.com/airbytehq/airbyte/pull/43727) | Update dependencies | From d9c93742034451e948fd780e65f27cf4045cb224 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:16:25 +0200 Subject: [PATCH 375/808] =?UTF-8?q?=F0=9F=90=99=20source-file:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47115)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-file/metadata.yaml | 2 +- .../connectors/source-file/poetry.lock | 848 +++++++++--------- .../connectors/source-file/pyproject.toml | 2 +- docs/integrations/sources/file.md | 1 + 4 files changed, 427 insertions(+), 426 deletions(-) diff --git a/airbyte-integrations/connectors/source-file/metadata.yaml b/airbyte-integrations/connectors/source-file/metadata.yaml index e4e61dfc6d93..af8bbfc91636 100644 --- a/airbyte-integrations/connectors/source-file/metadata.yaml +++ b/airbyte-integrations/connectors/source-file/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: file connectorType: source definitionId: 778daa7c-feaf-4db6-96f3-70fd645acc77 - dockerImageTag: 0.5.13 + dockerImageTag: 0.5.14 dockerRepository: airbyte/source-file documentationUrl: https://docs.airbyte.com/integrations/sources/file githubIssueLabel: source-file diff --git a/airbyte-integrations/connectors/source-file/poetry.lock b/airbyte-integrations/connectors/source-file/poetry.lock index 9847dc2f6597..9e011bdd0877 100644 --- a/airbyte-integrations/connectors/source-file/poetry.lock +++ b/airbyte-integrations/connectors/source-file/poetry.lock @@ -232,13 +232,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -249,7 +249,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -714,101 +714,101 @@ files = [ [[package]] name = "cramjam" -version = "2.8.4" +version = "2.9.0" description = "Thin Python bindings to de/compression algorithms in Rust" optional = false python-versions = ">=3.8" files = [ - {file = "cramjam-2.8.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:e9e112514363261a896f85948d5d055dccaab2a1fa77d440f55030464118a95a"}, - {file = "cramjam-2.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ee2441028e813ecc1d10b90640dd2b9649cdefdfe80af1d838cf00fd935ee5e7"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:86a3e0f91176eacd23f8d63b01139a63687cb3fa9670996b3bfa7c38eac6cb7e"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e34aa083a10079c8814091c0fe9080238a82569fa08058cf79d12b3f9710fc5"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:465ccf470536e065822daa2a083dedf18df8133278e9132b147bd1721211d707"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30aba9e9c737c986d26a809b9e36628452c075234a5e835b085ab7c2b9574dc"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52f710bd7fa9b5a374e2e2281d7d672f9eb89263c531643f95fab93e98200c68"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6622095ffa6cae77c9e8036a39757fdb1d3cabc3444ad892e5a705882ed06c8d"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bc618c018594c20696a42faf8a144e1508b8a4312e0d8697f6c64b337e37e5d9"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:30c75259f58583f96ad9cef7202c70cd6604a9dabf9834211df48a27ec85f84a"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b9b4bbe7ef3318b2f2aed2a8a658b401a9ad9314d50372f9bb97cdef093f326"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d7a7c10fb2602d7c8c4dbe4eeacf352477cc1af939fd3537f4e1cd42526855b8"}, - {file = "cramjam-2.8.4-cp310-none-win32.whl", hash = "sha256:831ee2424b095f51c9719b0479d9b413bc849e47160b904a7a8e4a8dcf41d2f7"}, - {file = "cramjam-2.8.4-cp310-none-win_amd64.whl", hash = "sha256:4f6bf5752a0322cc63f955343c390253034b609d167930584bb392bf4179c444"}, - {file = "cramjam-2.8.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d48fd69224a2f4df187856021f545a65486575cba92bb32a14ccad1ce54584a9"}, - {file = "cramjam-2.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c53d8dce609607370f01a5db65c79db75db08e9e89cbb9c2a2212b7a3c0b8af3"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d08b8ff282545ab3a414db845e430320555ff7a7eb90517b2c9554e24ca0d763"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac5fb30cf6c03f72397ead8584592dc071f486c76199c46c28e7de619174ba1f"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0d86cfb2b457a337db4b7c8cf6a9dafc018806750f28b3c27d71b94e2d4379d0"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59565a16ce0c71993d3947bdf9301e0d69866c15f37d67d2875809eca998d841"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6741544b372ba3e6c65db1c44b1a75e48743d091b76a09d7d832b1fb0a0ef518"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5f486bacd46f364137f5b164a879821115118d7f866a838429eb10aee59a14b"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4e02081bfb9998f5ff816f3e984a62ca91835e3483c578812374aaf5cb6ed921"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:1c63e856727726a1ee2a77a12bfccfcd70ee3e5bbe9e6d07bd00be5a1eb6ec10"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:74fb59137946b691e8987349e9117e2897f3b0484116ad6e2b1b4de0d082430f"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c7952e0cd6f37a04983cb027175f91f225d7c30625038b8930b6fd3f00619350"}, - {file = "cramjam-2.8.4-cp311-none-win32.whl", hash = "sha256:2bfd5c442e6031b146a93b1cc37d42c04b6d01bb652c9f123338c482c3943038"}, - {file = "cramjam-2.8.4-cp311-none-win_amd64.whl", hash = "sha256:73c95cae138bc8f5604bbbc97860f158c4f77e046304dd4f9c9838021d64217a"}, - {file = "cramjam-2.8.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:5056f476917d31c69719883bbe12272288b77ab5ea5ee55fbcbb6c0dd10e52da"}, - {file = "cramjam-2.8.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8359d31dca4bd8286e031f1a21f20f62f4e7a4586c407e916fd2de101c719a8b"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a1aee32556b9f7ecc61c6c4675798153ac511b5b72db9f56d2a8c20c1fa6d563"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:005bfe79ae38ea1df67fd3079089287640c780bf112aab4b6a3a9f12f0bf3c91"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51662c79c5a2256824f3acca9ccdbeaad3626c90ae46a19ef25f186d70a9ac69"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c744148e33002cefd4aaa3641800c0008fa177c8c09230c09d30d6e7ab473a4"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c897d2443cf9f3685a51ecc28c669aad95b6a610de7883647fe450cc742e2ea7"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:741b0c29d701d470243b9cad09a3e21c2ab83190710df680fd84baea1b262089"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4cfc6d838afb90a59d2c721fe8d78c2a333edf5c370b3ce8f9823c49bc52e5d0"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:977e380a567f1bcdb0f1156820fedc57727c6c639769b846b39ad7fc1be5563b"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3f16dea7f430bb8a5cf2e2a8eece5fa7a6e58bffae3913083f6c20de50ce85bd"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9d25c2ff722e66a55c58b6c325985b2bf342a6592db084557c2956a07d7179d7"}, - {file = "cramjam-2.8.4-cp312-none-win32.whl", hash = "sha256:b63bcf4e5f9c6ee027947a22862d054e8ce0fa189a33ccdb07e66ef09291252c"}, - {file = "cramjam-2.8.4-cp312-none-win_amd64.whl", hash = "sha256:72b9d4c29a51a8656690df2ef6f7823fa27ebc35e051182b6ebef5fef180876f"}, - {file = "cramjam-2.8.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9b00949104594eb2b6daf9ec72f1a6dfc93968bc0ffbdbfee936c359fc782186"}, - {file = "cramjam-2.8.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:24b29d805e860d22499e6f5d004582477f3c8309e2a899e0c86c1530a94e6092"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f9454207624a701cb518fbef137e2eb6088aaf5606679aa6ab28d2dd06d72702"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ee580acb4b6af5ae211b80b679aa377ffa9f9ff74a1e9de458c09d19bce4433"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:157c36731e430670be44ba490b8a0e4fc04ebdd78c3ea19339ba4ac24d73ad25"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30a12b1437e28b5e72ab10642d214e9b42220e8c5be2948ac6916aca203f69b0"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:553e2cd4c2614510770ff3a8bf6b72957a86985b1ae2b8fcdc6d04848857313f"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e40e448d50fa7c2b79c06d99459ad4a77d58d9cfb3f0549a63b91179a5e57c0b"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:769995dfc7fd042ce123f25e7659977ed4aa4d5d6aad976970b12b9b4019c116"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:1ba26f563d9e5be588c8e5f5523b4cdb5b63e3ac3fb28857af9611eb5ea51416"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:5cbfd6c44c85216b3535095258b506f6e246c6fbf1438a79f71bcff4d98f7e3f"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:4bf4e8711b27604b3ca7e7c224a70f5abe94f5bf05a183bd97677e9cffd2be04"}, - {file = "cramjam-2.8.4-cp313-none-win32.whl", hash = "sha256:7c9ca8e6c33c06c08e9945a20fe0f64a2bcd363554e359a2936b3a469883630a"}, - {file = "cramjam-2.8.4-cp313-none-win_amd64.whl", hash = "sha256:ee92df7e66b7cbdb05b18687a42696bc729bacaad0d68f5549e30cbfa1eb0ca8"}, - {file = "cramjam-2.8.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:386eb0fe9567ae3c06e2053205e19e671e4170f3a0deb68dd103e4c651a3ff8b"}, - {file = "cramjam-2.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:64e22027874ce429ce04c0c9d19e6bed5bf6425ecc3e68752211b8509915c57c"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b74470fb215a3ac2e6ed968f671286456030882aa25616b969b1a52ebda4f29d"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c41d4542cc2c7238017caebc161b0866b3fb5e85e59727ab623f95e07abc453"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:14b6f2f883068873bd2b5c31fbf7c4223c0452b8bff662bec02d7973a095c46b"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d5921c4521d41fb125d31ce1fe9e5bfba24a2577bc8727289baae9afbebc8409"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb62855f17be5d1bec0d3cef89d8d54582137529c7ea96480c40ebb4a8c92c4b"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91cd4b28fc75680616bd22db5a56802ce7ce406052c58e72fd583a16746a1010"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f03502eaf1a0a95cdcbf4c6ebba5edfaa68d356f487ec8485ae651772c9426f9"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_armv7l.whl", hash = "sha256:bb5e23c1f8dc2b4cddc7982da60d2f7a9719920539c26e7b754f2272f510fc0c"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ef6b0d4c83b173d18398713522bff1db1e4e73ec3b3da6495afc5628767d6c85"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b2253287a08759cefb75ef46ebaa0f993a2890a31fe9bba94363ca245f42d821"}, - {file = "cramjam-2.8.4-cp38-none-win32.whl", hash = "sha256:8375090e54978ccbb1d90e494d73d09e36477e0d695ddadf2d13627168862950"}, - {file = "cramjam-2.8.4-cp38-none-win_amd64.whl", hash = "sha256:12100dd3ed6969365d1952832e39c017d97c85eeb517ae468092f67aa4d89568"}, - {file = "cramjam-2.8.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:47c1594346dceb0d363d479ddac1e9ff87596c92e5258b389118ae6e30599145"}, - {file = "cramjam-2.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5472f9c6db34046c7ab2f0c4be5a4be677dba98bf78cc0eb03f9812e5774f14d"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9bfa940e016bfeea2b93115abf9e4e455a6325dd85a3fa6af55c6052f070ba25"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24e738a92ac520b26b952bfc48b1ba6453ea455e20167f08f6ee3df5c7d22cd4"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:78ded70e85722a6dcd0c436193af58a43083f0ece35c1f74227782a28e517aa0"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99b024a9912a5fd3b4e6b949b83b291e2828775edc0595ef8b94c491e904287b"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:673dc6395fed94db59fb75a7657d8b061bd575332d8f15025e7b1a4feaba0a3f"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4b8f83c5a98fecf44c6d852a9bd30ab1508e51d910dc9c8e636863d131fd5eb"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:85eada9385a706d8d0f6cb1d51995f5eef16d3cade7e68150d6e441fd26406da"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:2429134bb2ee8fffe28f41e3f5390be9c539ac1e2c453034ea63542d7aacc5cc"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e90003b2ce00358ee669afa0710bf52dee6827460b80ce4a7a9f906551ab703a"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d0619af45310cceeab9a2410d4a14445743e494015d85584b974847bfb2a2011"}, - {file = "cramjam-2.8.4-cp39-none-win32.whl", hash = "sha256:a30d68094462076655259feee1187237af846969007e5341a96c79b447c47ab3"}, - {file = "cramjam-2.8.4-cp39-none-win_amd64.whl", hash = "sha256:f24e375dfb31f0953e236f2cc4af1b03b80d40aec2bc558df48d507d8e7c8d96"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3536362f777d817c4994d6eaa42e00e705092c5660fd3d9984f3b0cc6164d327"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:0d52eabd20a694636f5b0197daa64db497ea518e057935a7c61ec71e92d3ccd6"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4cf69f19ebd546fc155ec3098603de51f52bf620a23597810cb5b34d6aff116d"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:364258057d579c772e23e1f666fd7efec4f63ea2e791889bb18263c9e9e6aa91"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:98a2e2c3132b454ae47b194164bb8860464ed410fbbffc0d1de19452cc7cb402"}, - {file = "cramjam-2.8.4.tar.gz", hash = "sha256:ad8bec85b46283330214f4367805e6f56e04ce25a030a2c6a4b127437d006fcf"}, + {file = "cramjam-2.9.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:eb16d995e454b0155b166f6e6da7df4ac812d44e0f3b6dc0f344a934609fd5bc"}, + {file = "cramjam-2.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cb1e86bfea656b51f2e75f2cedb17fc08b552d105b814d19b595294ecbe94d8d"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4bd76b654275736fd4f55521981b73751c34dacf70a1dbce96e454a39d43201f"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21569f19d5848606b85ac0dde0dc3639319d26fed8522c7103515df875bcb300"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b8f8b1117b4e697d39950ecab01700ce0aef66541e4478eb4d7b3ade8703347b"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c3464d0042a03e8ef38a2b774ef23163cf3c0cdc41b8dfbf7c4aadf93e40b459"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0711c776750e243ae347d6609c975f0ff4be9ae65b2764d29e4bbdad8e574c3a"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00d96f798bc980b29f8e1c3ed7d554050e05d4cde23d1633ffed4cd63110024a"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:fc49b6575e3cb15da3180c5a3926ec81db33b109e48530708da76614b306904b"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:c4fa6c23e56d48df18f534af921ec936c812743a8972ecdd5e5ff47b464fea00"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b4b8d8160685c11ffb4e8e6daaab79cb351a1c54ceec41cc18a0a62c89309fe0"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0ed6362cb6c964f8d0c6e7f790e8961b9242cd3acd87c56169ca14d642653707"}, + {file = "cramjam-2.9.0-cp310-none-win32.whl", hash = "sha256:fe9af350dfbdc7ed4c93a8016a8ad7b5492fc116e7197cad7cbce99b434d3fe1"}, + {file = "cramjam-2.9.0-cp310-none-win_amd64.whl", hash = "sha256:37054c73704a3183b60869e7fec1614648752c31d89f44de1ffe1f01ad4d20d5"}, + {file = "cramjam-2.9.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:170a50407f9400073621cc1d5f3200ca3ad9de3000831e3e86f5561ca8048a08"}, + {file = "cramjam-2.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:912c94781c8ff318a4d3f3306f8d94d41ae5aa7b9760c4bb0476b01142084845"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:df089639983a03070be6eabc60317aa1ffbf2c5409023b57a5fc2e4975163bc4"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ca28a8f6ab5fca35f163fd7d7a970880ce4fc1a0bead1249ecdaa96ec9ac1f4"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:abd8bf9a94e3866215ac181a7dbcfa1ddbedca4f8048494a79934febe88537df"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7de19a382bcab93cd4d028d51f6f581920a3b79659a384775188135b7fc64f15"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4156fcefa1dfaa65d35ff82c252d1e32be12820f26d04748be6cd3b461cf85f"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4a3104022129d7463100dfaf12efd398ebfa4b7e4e50832ccc596754f7c26df"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6ebee5f5d7e2b9277895ea4fd94646b72075fe9cfc0e8f4770b65c9e72b1fec1"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:8e33ebe4d709b21bc15e7ddf485ac6b30d7fdc7ed7c3c65130654c007f50c183"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4d5a39118008bb9f2fba36a0ceea6c41fbd0b55d2647b043ba51a868e5f6de92"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7f6ef35eba883927af2678b561cc4407e0b3b0d58a251c863bec4b3d8258cc2f"}, + {file = "cramjam-2.9.0-cp311-none-win32.whl", hash = "sha256:b21e55b5cfdaff96eae1f323ae9a0d36e86852cdf62fe23b60a2481d2fed5571"}, + {file = "cramjam-2.9.0-cp311-none-win_amd64.whl", hash = "sha256:9f685fe4e49b2f3e233548e3397b3f9189d71a265718ec631d13eca3d5718ddb"}, + {file = "cramjam-2.9.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:34578e4c1518b10dad5e0ba40c721e529ef13e7742a528843b40e1f20dd6078c"}, + {file = "cramjam-2.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1d5b5512dc61ea78f32e021e88a5fd5b46a821409479e6657d33614fc9e45677"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0b4f1b5e33915ed591c0c19b8c3bbdd7aa0f6a9bfe2b7246b475d497bda15f18"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad301801afa0eecdacabf353a2802df5e6770f9bfb0a559d6c069813d83cfd42"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:399baf80fea574e3870f233e12e6a12f02c53b054e13d792348b272b0614370a"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3121e2fbec58907fa70636adaeaf30c27614c867e08a7a5bd2887b33786ff790"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd04205b2a87087ffc2257c3ad33f11daabc053956f64ac1ec7bae299cac3f2f"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddb9c4db36188a8f08c2303100a83100f26a8572803ae35eadff359bebd3d204"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ef553d4080368006817c1a935ed619c71987cf10417a32386acc00c5418a2934"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:9862ca8ead80857ecfb9b07f02f577733261e981346f31585fe118975eabb738"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:4714e1ea0c3329368b83fe5ad6e831d5ca11fb794ca7cf491622eb6b2d420d2f"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1b4ca30c9f27e3b88bc082d4637e7648f93da5cb69a2dbe0c0300bc51353c820"}, + {file = "cramjam-2.9.0-cp312-none-win32.whl", hash = "sha256:0ed2fef010d1caca9ea63814e9cb5b1d47d907b80302b8cc0b3a1e116ea241e2"}, + {file = "cramjam-2.9.0-cp312-none-win_amd64.whl", hash = "sha256:bd26d71939de5dcf169d479fbc7fcfed21e6675bab33e7f7e9f8405f19711c71"}, + {file = "cramjam-2.9.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:dd70ea5d7b2c5e479e04ac3a00d8bc3deca146d2b5dbfbe3d7b42ed136e19de4"}, + {file = "cramjam-2.9.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0b1410e68c464666473a89cade17483b94bb4639d9161c440ee54ee1e0eca583"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b0078727fe8c28ef1695e5d04aae5c41ac697eb087cba387c6a02b825f9071c0"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a63c4e63319bf7dfc3ab46c06afb76d3d9cc1c94369b609dde480e5cc78e4de"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47d7253b5a10c201cc65aecfb517dfa1c0b5831b2524ac32dd2964fceafc0dc4"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05970fb640f236767003e62c256a085754536169bac863f4a3502ecb59cbf197"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0b062d261fa3fac00146cf801896c8cfafe1e41332eb047aa0a36558299daa6"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:017b7066f18b7b676068f51b1dbdecc02d76d9af10092252b22dcbd03a78ed33"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:9de33ef3bc006c11fbad1dc8b15341dcc78430df2c5ce1e790dfb729b11ab593"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:b99efaf81be8e381de1cde6574e2c89030ed53994e73b0e75b62d6e232f491c5"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:36426e3f1920f6aa4c644d007bf9cfad06dd9f1a30cd0a921d72b010492d8447"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea9bcaff298f5d35ef67346d474fca388c5cf6d4edab1d06b84868800f88bd36"}, + {file = "cramjam-2.9.0-cp313-none-win32.whl", hash = "sha256:c48da60a5eb481b412e5e462b81ad307fb2203178a2840a743f0a7c5fc1718c9"}, + {file = "cramjam-2.9.0-cp313-none-win_amd64.whl", hash = "sha256:97a6311bd32f301ff1b922bc9de62ace3d9fd845e20efc0f71b4d0239a45b8d2"}, + {file = "cramjam-2.9.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:78e7349f945a83bc48855fb042873092a69b155a088b8c11942eb76418b32705"}, + {file = "cramjam-2.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:65a097ea765dd4ef2fb868b5b0959d7c93a64c250b2c52f462898c823ae4b950"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:35cad507eb02c775e6c5444312f98b28dd8bf122425677ae199484996e838673"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8982925d179b940efa860513a31b839bb06343501077cca3e67f7a2f7360d355"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ba7e2d33e1d092dffd0a3ff4bd1b86177594aa3c2901fd478e78e1fb2aee8ed3"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:904be92e3bc25e78343ee52aa0fd5fba3a31d11d474e8af4623a9d00baa84bc2"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9221297c547d702e1431e96705fce26c6a87df34a681a6b97fe63b536d09c1d8"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e98a18c22a85f321091cc8db6694af1d713a369c2d60ec611c10ccfe24ab103a"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e248510f8e2dbc71fa99f86238c9023365dbe1a4520eb40e33d73416527349f2"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_armv7l.whl", hash = "sha256:dc07376aa33b6004ea372ac9b0ba0ed3455aa2fc4e18727414142ecb46b176b8"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:e94021c541eb2a199b5a2ffae0ea84fb8b99863dab99a5b154b00bc7a44b5c48"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4adbf4366f8dc29b7c5c731c800cf633be76c9911e928daeb606827d6ae7c599"}, + {file = "cramjam-2.9.0-cp38-none-win32.whl", hash = "sha256:ca880f555c8db40942acc8a50722c33e229b6be90e598acc1a201f36487b917d"}, + {file = "cramjam-2.9.0-cp38-none-win_amd64.whl", hash = "sha256:ab17a429a92db90bf40115efb97d10e71b94b0dcacf30cf724552df2794a58fb"}, + {file = "cramjam-2.9.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:ed7fd7bc2b86ec3161fe0cc49f5f392e6efa55c91a95397d5047820c38117660"}, + {file = "cramjam-2.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a0f654c739a6bc4a69a2aaf31463328a208757ed780ff886234532f78e06a864"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cd4d4ab9deb5846af0ac6cf1fa139cfa40291ad14d073efa8b8e20c8d1aa90bd"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bafc32f01d4ab64f83fdbc29bc5bd25a920b59c751c12e06e6f4b1e379be7600"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0fb5ea631dbf998f667766a9e485e757817d66ed559916ba553a0ec2f902d788"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c902e56e60c48f5f15e55257aaa1c2678323df5f18a1b839e8d05cac1107576c"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:441d3875cdffe5df9294b93ef570058837732dd727cd9d18efa0f089f1c2687a"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed486e57a79ccc7aebaa2ec12517d891fdc5d2fde16915e3db705b8a47570981"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:013cb872205641c6e5269f530ed40aaaa5640d84e0d8f33b89f5a1bf7f655527"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:a41b4b10a381be1d42a1a7dd07b8c3faccd3d12c7e98e973a6ec558fd040a607"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:598eac1713ddbe69c3b30dcc890d69b206ce08903fc3aed58149aae87c61973a"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:72e9ebc27c557706a3c9964c1d1b4522857760dbd60c105a4f5421f3b66e31a2"}, + {file = "cramjam-2.9.0-cp39-none-win32.whl", hash = "sha256:dbbd6fba677e1cbc9d6bd4ebbe3e8b3667d0295f1731489db2a971c95f0ceca0"}, + {file = "cramjam-2.9.0-cp39-none-win_amd64.whl", hash = "sha256:7f33a83969fa94ee8e0c1f0aef8eb303ead3e9142338dc543abeb7e1a28734ab"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:132db7d3346ea21ba44e7ee23ec73bd6fa9eb1e77133ca6dfe1f7449a69999af"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:2addf801c88bead21256ccd87dc97cffead03758c4a4947fad8e454f4abfda0a"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24afad3ba62774abbb150dc25aab21b047ab999c4143c7a8d96577848baf7af6"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:604c16052cf29d0c796927ed7e107f65429d2036c82c9a8009bd453c94e5e4f0"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:65bded20fd2cef17b22246c336ddd67fac842341ee311042b4a70e65dc745aa7"}, + {file = "cramjam-2.9.0.tar.gz", hash = "sha256:f103e648aa3ebe9b8e2c1a3a92719288d8f3f41007c319ad298cdce2d0c28641"}, ] [package.extras] @@ -909,13 +909,13 @@ files = [ [[package]] name = "et-xmlfile" -version = "1.1.0" +version = "2.0.0" description = "An implementation of lxml.xmlfile for the standard library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, + {file = "et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa"}, + {file = "et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54"}, ] [[package]] @@ -986,88 +986,103 @@ lzo = ["python-lzo"] [[package]] name = "frozenlist" -version = "1.4.1" +version = "1.5.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = false python-versions = ">=3.8" files = [ - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, - {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, - {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, - {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, - {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, - {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, - {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, - {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, - {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, - {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, - {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, - {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, - {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, ] [[package]] @@ -1140,13 +1155,13 @@ files = [ [[package]] name = "google-api-core" -version = "2.21.0" +version = "2.22.0" description = "Google API client core library" optional = false python-versions = ">=3.7" files = [ - {file = "google_api_core-2.21.0-py3-none-any.whl", hash = "sha256:6869eacb2a37720380ba5898312af79a4d30b8bca1548fb4093e0697dc4bdf5d"}, - {file = "google_api_core-2.21.0.tar.gz", hash = "sha256:4a152fd11a9f774ea606388d423b68aa7e6d6a0ffe4c8266f74979613ec09f81"}, + {file = "google_api_core-2.22.0-py3-none-any.whl", hash = "sha256:a6652b6bd51303902494998626653671703c420f6f4c88cfd3f50ed723e9d021"}, + {file = "google_api_core-2.22.0.tar.gz", hash = "sha256:26f8d76b96477db42b55fd02a33aae4a42ec8b86b98b94969b7333a2c828bf35"}, ] [package.dependencies] @@ -1542,13 +1557,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -1645,72 +1660,72 @@ source = ["Cython (>=0.29.7)"] [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -1894,68 +1909,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -2238,13 +2254,13 @@ files = [ [[package]] name = "proto-plus" -version = "1.24.0" +version = "1.25.0" description = "Beautiful, Pythonic protocol buffers." optional = false python-versions = ">=3.7" files = [ - {file = "proto-plus-1.24.0.tar.gz", hash = "sha256:30b72a5ecafe4406b0d339db35b56c4059064e69227b8c3bda7462397f966445"}, - {file = "proto_plus-1.24.0-py3-none-any.whl", hash = "sha256:402576830425e5f6ce4c2a6702400ac79897dab0b4343821aa5188b0fab81a12"}, + {file = "proto_plus-1.25.0-py3-none-any.whl", hash = "sha256:c91fc4a65074ade8e458e95ef8bac34d4008daa7cce4a12d6707066fca648961"}, + {file = "proto_plus-1.25.0.tar.gz", hash = "sha256:fbb17f57f7bd05a68b7707e745e26528b0b3c34e378db91eef93912c54982d91"}, ] [package.dependencies] @@ -2255,22 +2271,22 @@ testing = ["google-api-core (>=1.31.5)"] [[package]] name = "protobuf" -version = "5.28.2" +version = "5.28.3" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-5.28.2-cp310-abi3-win32.whl", hash = "sha256:eeea10f3dc0ac7e6b4933d32db20662902b4ab81bf28df12218aa389e9c2102d"}, - {file = "protobuf-5.28.2-cp310-abi3-win_amd64.whl", hash = "sha256:2c69461a7fcc8e24be697624c09a839976d82ae75062b11a0972e41fd2cd9132"}, - {file = "protobuf-5.28.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a8b9403fc70764b08d2f593ce44f1d2920c5077bf7d311fefec999f8c40f78b7"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:35cfcb15f213449af7ff6198d6eb5f739c37d7e4f1c09b5d0641babf2cc0c68f"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:5e8a95246d581eef20471b5d5ba010d55f66740942b95ba9b872d918c459452f"}, - {file = "protobuf-5.28.2-cp38-cp38-win32.whl", hash = "sha256:87317e9bcda04a32f2ee82089a204d3a2f0d3c8aeed16568c7daf4756e4f1fe0"}, - {file = "protobuf-5.28.2-cp38-cp38-win_amd64.whl", hash = "sha256:c0ea0123dac3399a2eeb1a1443d82b7afc9ff40241433296769f7da42d142ec3"}, - {file = "protobuf-5.28.2-cp39-cp39-win32.whl", hash = "sha256:ca53faf29896c526863366a52a8f4d88e69cd04ec9571ed6082fa117fac3ab36"}, - {file = "protobuf-5.28.2-cp39-cp39-win_amd64.whl", hash = "sha256:8ddc60bf374785fb7cb12510b267f59067fa10087325b8e1855b898a0d81d276"}, - {file = "protobuf-5.28.2-py3-none-any.whl", hash = "sha256:52235802093bd8a2811abbe8bf0ab9c5f54cca0a751fdd3f6ac2a21438bffece"}, - {file = "protobuf-5.28.2.tar.gz", hash = "sha256:59379674ff119717404f7454647913787034f03fe7049cbef1d74a97bb4593f0"}, + {file = "protobuf-5.28.3-cp310-abi3-win32.whl", hash = "sha256:0c4eec6f987338617072592b97943fdbe30d019c56126493111cf24344c1cc24"}, + {file = "protobuf-5.28.3-cp310-abi3-win_amd64.whl", hash = "sha256:91fba8f445723fcf400fdbe9ca796b19d3b1242cd873907979b9ed71e4afe868"}, + {file = "protobuf-5.28.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a3f6857551e53ce35e60b403b8a27b0295f7d6eb63d10484f12bc6879c715687"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:3fa2de6b8b29d12c61911505d893afe7320ce7ccba4df913e2971461fa36d584"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:712319fbdddb46f21abb66cd33cb9e491a5763b2febd8f228251add221981135"}, + {file = "protobuf-5.28.3-cp38-cp38-win32.whl", hash = "sha256:3e6101d095dfd119513cde7259aa703d16c6bbdfae2554dfe5cfdbe94e32d548"}, + {file = "protobuf-5.28.3-cp38-cp38-win_amd64.whl", hash = "sha256:27b246b3723692bf1068d5734ddaf2fccc2cdd6e0c9b47fe099244d80200593b"}, + {file = "protobuf-5.28.3-cp39-cp39-win32.whl", hash = "sha256:135658402f71bbd49500322c0f736145731b16fc79dc8f367ab544a17eab4535"}, + {file = "protobuf-5.28.3-cp39-cp39-win_amd64.whl", hash = "sha256:70585a70fc2dd4818c51287ceef5bdba6387f88a578c86d47bb34669b5552c36"}, + {file = "protobuf-5.28.3-py3-none-any.whl", hash = "sha256:cee1757663fa32a1ee673434fcf3bf24dd54763c79690201208bafec62f19eed"}, + {file = "protobuf-5.28.3.tar.gz", hash = "sha256:64badbc49180a5e401f373f9ce7ab1d18b63f7dd4a9cdc43c92b9f0b481cef7b"}, ] [[package]] @@ -2848,23 +2864,23 @@ crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -3127,109 +3143,93 @@ test = ["pytest", "pytest-cov"] [[package]] name = "yarl" -version = "1.15.0" +version = "1.17.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19"}, - {file = "yarl-1.15.0-cp310-cp310-win32.whl", hash = "sha256:4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9"}, - {file = "yarl-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1"}, - {file = "yarl-1.15.0-cp311-cp311-win32.whl", hash = "sha256:a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb"}, - {file = "yarl-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d"}, - {file = "yarl-1.15.0-cp312-cp312-win32.whl", hash = "sha256:e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4"}, - {file = "yarl-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e"}, - {file = "yarl-1.15.0-cp313-cp313-win32.whl", hash = "sha256:eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53"}, - {file = "yarl-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738"}, - {file = "yarl-1.15.0-cp38-cp38-win32.whl", hash = "sha256:d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95"}, - {file = "yarl-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9"}, - {file = "yarl-1.15.0-cp39-cp39-win32.whl", hash = "sha256:a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb"}, - {file = "yarl-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0"}, - {file = "yarl-1.15.0-py3-none-any.whl", hash = "sha256:1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5"}, - {file = "yarl-1.15.0.tar.gz", hash = "sha256:efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-file/pyproject.toml b/airbyte-integrations/connectors/source-file/pyproject.toml index 01e5d406fa66..05a034726be0 100644 --- a/airbyte-integrations/connectors/source-file/pyproject.toml +++ b/airbyte-integrations/connectors/source-file/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.13" +version = "0.5.14" name = "source-file" description = "Source implementation for File" authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/file.md b/docs/integrations/sources/file.md index 7999e427b2f9..d2895ec7bfa5 100644 --- a/docs/integrations/sources/file.md +++ b/docs/integrations/sources/file.md @@ -298,6 +298,7 @@ In order to read large files from a remote location, this connector uses the [sm | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------ | +| 0.5.14 | 2024-10-29 | [47115](https://github.com/airbytehq/airbyte/pull/47115) | Update dependencies | | 0.5.13 | 2024-10-12 | [45795](https://github.com/airbytehq/airbyte/pull/45795) | Update dependencies | | 0.5.12 | 2024-09-14 | [45499](https://github.com/airbytehq/airbyte/pull/45499) | Update dependencies | | 0.5.11 | 2024-09-07 | [45261](https://github.com/airbytehq/airbyte/pull/45261) | Update dependencies | From 3279d7558b733421598b7af4a84aaddf6cc84605 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:16:31 +0200 Subject: [PATCH 376/808] =?UTF-8?q?=F0=9F=90=99=20destination-astra:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47105)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-astra/metadata.yaml | 2 +- .../connectors/destination-astra/poetry.lock | 991 +++++++++--------- .../destination-astra/pyproject.toml | 2 +- docs/integrations/destinations/astra.md | 1 + 4 files changed, 503 insertions(+), 493 deletions(-) diff --git a/airbyte-integrations/connectors/destination-astra/metadata.yaml b/airbyte-integrations/connectors/destination-astra/metadata.yaml index f8054a4953e2..a0ea87b547fb 100644 --- a/airbyte-integrations/connectors/destination-astra/metadata.yaml +++ b/airbyte-integrations/connectors/destination-astra/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ce96f-1158-4662-9543-e2ff015be97a - dockerImageTag: 0.1.28 + dockerImageTag: 0.1.29 dockerRepository: airbyte/destination-astra githubIssueLabel: destination-astra icon: astra.svg diff --git a/airbyte-integrations/connectors/destination-astra/poetry.lock b/airbyte-integrations/connectors/destination-astra/poetry.lock index a2d3580f0d19..b2a07c338706 100644 --- a/airbyte-integrations/connectors/destination-astra/poetry.lock +++ b/airbyte-integrations/connectors/destination-astra/poetry.lock @@ -194,13 +194,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -211,7 +211,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -602,13 +602,13 @@ files = [ [[package]] name = "et-xmlfile" -version = "1.1.0" +version = "2.0.0" description = "An implementation of lxml.xmlfile for the standard library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, + {file = "et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa"}, + {file = "et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54"}, ] [[package]] @@ -738,88 +738,103 @@ woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] [[package]] name = "frozenlist" -version = "1.4.1" +version = "1.5.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = false python-versions = ">=3.8" files = [ - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, - {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, - {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, - {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, - {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, - {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, - {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, - {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, - {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, - {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, - {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, - {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, - {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, ] [[package]] @@ -1371,13 +1386,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -1389,92 +1404,92 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.22.0" +version = "3.23.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, - {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, + {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, + {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "matplotlib" @@ -1646,38 +1661,43 @@ typing-extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} [[package]] name = "mypy" -version = "1.11.2" +version = "1.13.0" description = "Optional static typing for Python" optional = false python-versions = ">=3.8" files = [ - {file = "mypy-1.11.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d42a6dd818ffce7be66cce644f1dff482f1d97c53ca70908dff0b9ddc120b77a"}, - {file = "mypy-1.11.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:801780c56d1cdb896eacd5619a83e427ce436d86a3bdf9112527f24a66618fef"}, - {file = "mypy-1.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41ea707d036a5307ac674ea172875f40c9d55c5394f888b168033177fce47383"}, - {file = "mypy-1.11.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6e658bd2d20565ea86da7d91331b0eed6d2eee22dc031579e6297f3e12c758c8"}, - {file = "mypy-1.11.2-cp310-cp310-win_amd64.whl", hash = "sha256:478db5f5036817fe45adb7332d927daa62417159d49783041338921dcf646fc7"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75746e06d5fa1e91bfd5432448d00d34593b52e7e91a187d981d08d1f33d4385"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a976775ab2256aadc6add633d44f100a2517d2388906ec4f13231fafbb0eccca"}, - {file = "mypy-1.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cd953f221ac1379050a8a646585a29574488974f79d8082cedef62744f0a0104"}, - {file = "mypy-1.11.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:57555a7715c0a34421013144a33d280e73c08df70f3a18a552938587ce9274f4"}, - {file = "mypy-1.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:36383a4fcbad95f2657642a07ba22ff797de26277158f1cc7bd234821468b1b6"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e8960dbbbf36906c5c0b7f4fbf2f0c7ffb20f4898e6a879fcf56a41a08b0d318"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06d26c277962f3fb50e13044674aa10553981ae514288cb7d0a738f495550b36"}, - {file = "mypy-1.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6e7184632d89d677973a14d00ae4d03214c8bc301ceefcdaf5c474866814c987"}, - {file = "mypy-1.11.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3a66169b92452f72117e2da3a576087025449018afc2d8e9bfe5ffab865709ca"}, - {file = "mypy-1.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:969ea3ef09617aff826885a22ece0ddef69d95852cdad2f60c8bb06bf1f71f70"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:37c7fa6121c1cdfcaac97ce3d3b5588e847aa79b580c1e922bb5d5d2902df19b"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a8a53bc3ffbd161b5b2a4fff2f0f1e23a33b0168f1c0778ec70e1a3d66deb86"}, - {file = "mypy-1.11.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2ff93107f01968ed834f4256bc1fc4475e2fecf6c661260066a985b52741ddce"}, - {file = "mypy-1.11.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:edb91dded4df17eae4537668b23f0ff6baf3707683734b6a818d5b9d0c0c31a1"}, - {file = "mypy-1.11.2-cp38-cp38-win_amd64.whl", hash = "sha256:ee23de8530d99b6db0573c4ef4bd8f39a2a6f9b60655bf7a1357e585a3486f2b"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:801ca29f43d5acce85f8e999b1e431fb479cb02d0e11deb7d2abb56bdaf24fd6"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af8d155170fcf87a2afb55b35dc1a0ac21df4431e7d96717621962e4b9192e70"}, - {file = "mypy-1.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7821776e5c4286b6a13138cc935e2e9b6fde05e081bdebf5cdb2bb97c9df81d"}, - {file = "mypy-1.11.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:539c570477a96a4e6fb718b8d5c3e0c0eba1f485df13f86d2970c91f0673148d"}, - {file = "mypy-1.11.2-cp39-cp39-win_amd64.whl", hash = "sha256:3f14cd3d386ac4d05c5a39a51b84387403dadbd936e17cb35882134d4f8f0d24"}, - {file = "mypy-1.11.2-py3-none-any.whl", hash = "sha256:b499bc07dbdcd3de92b0a8b29fdf592c111276f6a12fe29c30f6c417dd546d12"}, - {file = "mypy-1.11.2.tar.gz", hash = "sha256:7f9993ad3e0ffdc95c2a14b66dee63729f021968bff8ad911867579c65d13a79"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, ] [package.dependencies] @@ -1687,6 +1707,7 @@ typing-extensions = ">=4.6.0" [package.extras] dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] install-types = ["pip"] mypyc = ["setuptools (>=50)"] reports = ["lxml"] @@ -1794,68 +1815,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -2005,95 +2027,90 @@ pytzdata = ">=2020.1" [[package]] name = "pillow" -version = "10.4.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, - {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, - {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, - {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, - {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, - {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, - {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, - {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, - {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, - {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, - {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, - {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, - {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, - {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, - {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, - {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, - {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, - {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, - {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, - {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -2314,13 +2331,13 @@ email = ["email-validator (>=1.0.3)"] [[package]] name = "pyparsing" -version = "3.1.4" +version = "3.2.0" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.9" files = [ - {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, - {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, + {file = "pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84"}, + {file = "pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c"}, ] [package.extras] @@ -2790,23 +2807,23 @@ test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "po [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -2832,60 +2849,68 @@ files = [ [[package]] name = "sqlalchemy" -version = "2.0.35" +version = "2.0.36" description = "Database Abstraction Library" optional = false python-versions = ">=3.7" files = [ - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:67219632be22f14750f0d1c70e62f204ba69d28f62fd6432ba05ab295853de9b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4668bd8faf7e5b71c0319407b608f278f279668f358857dbfd10ef1954ac9f90"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb8bea573863762bbf45d1e13f87c2d2fd32cee2dbd50d050f83f87429c9e1ea"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f552023710d4b93d8fb29a91fadf97de89c5926c6bd758897875435f2a939f33"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:016b2e665f778f13d3c438651dd4de244214b527a275e0acf1d44c05bc6026a9"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7befc148de64b6060937231cbff8d01ccf0bfd75aa26383ffdf8d82b12ec04ff"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win32.whl", hash = "sha256:22b83aed390e3099584b839b93f80a0f4a95ee7f48270c97c90acd40ee646f0b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win_amd64.whl", hash = "sha256:a29762cd3d116585278ffb2e5b8cc311fb095ea278b96feef28d0b423154858e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e21f66748ab725ade40fa7af8ec8b5019c68ab00b929f6643e1b1af461eddb60"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8a6219108a15fc6d24de499d0d515c7235c617b2540d97116b663dade1a54d62"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:042622a5306c23b972192283f4e22372da3b8ddf5f7aac1cc5d9c9b222ab3ff6"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:627dee0c280eea91aed87b20a1f849e9ae2fe719d52cbf847c0e0ea34464b3f7"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4fdcd72a789c1c31ed242fd8c1bcd9ea186a98ee8e5408a50e610edfef980d71"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:89b64cd8898a3a6f642db4eb7b26d1b28a497d4022eccd7717ca066823e9fb01"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win32.whl", hash = "sha256:6a93c5a0dfe8d34951e8a6f499a9479ffb9258123551fa007fc708ae2ac2bc5e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win_amd64.whl", hash = "sha256:c68fe3fcde03920c46697585620135b4ecfdfc1ed23e75cc2c2ae9f8502c10b8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:eb60b026d8ad0c97917cb81d3662d0b39b8ff1335e3fabb24984c6acd0c900a2"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6921ee01caf375363be5e9ae70d08ce7ca9d7e0e8983183080211a062d299468"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cdf1a0dbe5ced887a9b127da4ffd7354e9c1a3b9bb330dce84df6b70ccb3a8d"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93a71c8601e823236ac0e5d087e4f397874a421017b3318fd92c0b14acf2b6db"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e04b622bb8a88f10e439084486f2f6349bf4d50605ac3e445869c7ea5cf0fa8c"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1b56961e2d31389aaadf4906d453859f35302b4eb818d34a26fab72596076bb8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win32.whl", hash = "sha256:0f9f3f9a3763b9c4deb8c5d09c4cc52ffe49f9876af41cc1b2ad0138878453cf"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win_amd64.whl", hash = "sha256:25b0f63e7fcc2a6290cb5f7f5b4fc4047843504983a28856ce9b35d8f7de03cc"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f021d334f2ca692523aaf7bbf7592ceff70c8594fad853416a81d66b35e3abf9"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05c3f58cf91683102f2f0265c0db3bd3892e9eedabe059720492dbaa4f922da1"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:032d979ce77a6c2432653322ba4cbeabf5a6837f704d16fa38b5a05d8e21fa00"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:2e795c2f7d7249b75bb5f479b432a51b59041580d20599d4e112b5f2046437a3"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:cc32b2990fc34380ec2f6195f33a76b6cdaa9eecf09f0c9404b74fc120aef36f"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win32.whl", hash = "sha256:9509c4123491d0e63fb5e16199e09f8e262066e58903e84615c301dde8fa2e87"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win_amd64.whl", hash = "sha256:3655af10ebcc0f1e4e06c5900bb33e080d6a1fa4228f502121f28a3b1753cde5"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4c31943b61ed8fdd63dfd12ccc919f2bf95eefca133767db6fbbd15da62078ec"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a62dd5d7cc8626a3634208df458c5fe4f21200d96a74d122c83bc2015b333bc1"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0630774b0977804fba4b6bbea6852ab56c14965a2b0c7fc7282c5f7d90a1ae72"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d625eddf7efeba2abfd9c014a22c0f6b3796e0ffb48f5d5ab106568ef01ff5a"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ada603db10bb865bbe591939de854faf2c60f43c9b763e90f653224138f910d9"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c41411e192f8d3ea39ea70e0fae48762cd11a2244e03751a98bd3c0ca9a4e936"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win32.whl", hash = "sha256:d299797d75cd747e7797b1b41817111406b8b10a4f88b6e8fe5b5e59598b43b0"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win_amd64.whl", hash = "sha256:0375a141e1c0878103eb3d719eb6d5aa444b490c96f3fedab8471c7f6ffe70ee"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ccae5de2a0140d8be6838c331604f91d6fafd0735dbdcee1ac78fc8fbaba76b4"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2a275a806f73e849e1c309ac11108ea1a14cd7058577aba962cd7190e27c9e3c"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:732e026240cdd1c1b2e3ac515c7a23820430ed94292ce33806a95869c46bd139"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890da8cd1941fa3dab28c5bac3b9da8502e7e366f895b3b8e500896f12f94d11"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c0d8326269dbf944b9201911b0d9f3dc524d64779a07518199a58384c3d37a44"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b76d63495b0508ab9fc23f8152bac63205d2a704cd009a2b0722f4c8e0cba8e0"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win32.whl", hash = "sha256:69683e02e8a9de37f17985905a5eca18ad651bf592314b4d3d799029797d0eb3"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win_amd64.whl", hash = "sha256:aee110e4ef3c528f3abbc3c2018c121e708938adeeff9006428dd7c8555e9b3f"}, - {file = "SQLAlchemy-2.0.35-py3-none-any.whl", hash = "sha256:2ab3f0336c0387662ce6221ad30ab3a5e6499aab01b9790879b6578fd9b8faa1"}, - {file = "sqlalchemy-2.0.35.tar.gz", hash = "sha256:e11d7ea4d24f0a262bccf9a7cd6284c976c5369dac21db237cff59586045ab9f"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:59b8f3adb3971929a3e660337f5dacc5942c2cdb760afcabb2614ffbda9f9f72"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37350015056a553e442ff672c2d20e6f4b6d0b2495691fa239d8aa18bb3bc908"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8318f4776c85abc3f40ab185e388bee7a6ea99e7fa3a30686580b209eaa35c08"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c245b1fbade9c35e5bd3b64270ab49ce990369018289ecfde3f9c318411aaa07"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69f93723edbca7342624d09f6704e7126b152eaed3cdbb634cb657a54332a3c5"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f9511d8dd4a6e9271d07d150fb2f81874a3c8c95e11ff9af3a2dfc35fe42ee44"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win32.whl", hash = "sha256:c3f3631693003d8e585d4200730616b78fafd5a01ef8b698f6967da5c605b3fa"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win_amd64.whl", hash = "sha256:a86bfab2ef46d63300c0f06936bd6e6c0105faa11d509083ba8f2f9d237fb5b5"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fd3a55deef00f689ce931d4d1b23fa9f04c880a48ee97af488fd215cf24e2a6c"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4f5e9cd989b45b73bd359f693b935364f7e1f79486e29015813c338450aa5a71"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0ddd9db6e59c44875211bc4c7953a9f6638b937b0a88ae6d09eb46cced54eff"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2519f3a5d0517fc159afab1015e54bb81b4406c278749779be57a569d8d1bb0d"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59b1ee96617135f6e1d6f275bbe988f419c5178016f3d41d3c0abb0c819f75bb"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:39769a115f730d683b0eb7b694db9789267bcd027326cccc3125e862eb03bfd8"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win32.whl", hash = "sha256:66bffbad8d6271bb1cc2f9a4ea4f86f80fe5e2e3e501a5ae2a3dc6a76e604e6f"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win_amd64.whl", hash = "sha256:23623166bfefe1487d81b698c423f8678e80df8b54614c2bf4b4cfcd7c711959"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f7b64e6ec3f02c35647be6b4851008b26cff592a95ecb13b6788a54ef80bbdd4"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:46331b00096a6db1fdc052d55b101dbbfc99155a548e20a0e4a8e5e4d1362855"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdf3386a801ea5aba17c6410dd1dc8d39cf454ca2565541b5ac42a84e1e28f53"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac9dfa18ff2a67b09b372d5db8743c27966abf0e5344c555d86cc7199f7ad83a"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:90812a8933df713fdf748b355527e3af257a11e415b613dd794512461eb8a686"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1bc330d9d29c7f06f003ab10e1eaced295e87940405afe1b110f2eb93a233588"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win32.whl", hash = "sha256:79d2e78abc26d871875b419e1fd3c0bca31a1cb0043277d0d850014599626c2e"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win_amd64.whl", hash = "sha256:b544ad1935a8541d177cb402948b94e871067656b3a0b9e91dbec136b06a2ff5"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5cc79df7f4bc3d11e4b542596c03826063092611e481fcf1c9dfee3c94355ef"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3c01117dd36800f2ecaa238c65365b7b16497adc1522bf84906e5710ee9ba0e8"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bc633f4ee4b4c46e7adcb3a9b5ec083bf1d9a97c1d3854b92749d935de40b9b"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e46ed38affdfc95d2c958de328d037d87801cfcbea6d421000859e9789e61c2"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b2985c0b06e989c043f1dc09d4fe89e1616aadd35392aea2844f0458a989eacf"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a121d62ebe7d26fec9155f83f8be5189ef1405f5973ea4874a26fab9f1e262c"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win32.whl", hash = "sha256:0572f4bd6f94752167adfd7c1bed84f4b240ee6203a95e05d1e208d488d0d436"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win_amd64.whl", hash = "sha256:8c78ac40bde930c60e0f78b3cd184c580f89456dd87fc08f9e3ee3ce8765ce88"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:be9812b766cad94a25bc63bec11f88c4ad3629a0cec1cd5d4ba48dc23860486b"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aae840ebbd6cdd41af1c14590e5741665e5272d2fee999306673a1bb1fdb4d"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4557e1f11c5f653ebfdd924f3f9d5ebfc718283b0b9beebaa5dd6b77ec290971"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07b441f7d03b9a66299ce7ccf3ef2900abc81c0db434f42a5694a37bd73870f2"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:28120ef39c92c2dd60f2721af9328479516844c6b550b077ca450c7d7dc68575"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win32.whl", hash = "sha256:b81ee3d84803fd42d0b154cb6892ae57ea6b7c55d8359a02379965706c7efe6c"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win_amd64.whl", hash = "sha256:f942a799516184c855e1a32fbc7b29d7e571b52612647866d4ec1c3242578fcb"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3d6718667da04294d7df1670d70eeddd414f313738d20a6f1d1f379e3139a545"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:72c28b84b174ce8af8504ca28ae9347d317f9dba3999e5981a3cd441f3712e24"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b11d0cfdd2b095e7b0686cf5fabeb9c67fae5b06d265d8180715b8cfa86522e3"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e32092c47011d113dc01ab3e1d3ce9f006a47223b18422c5c0d150af13a00687"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6a440293d802d3011028e14e4226da1434b373cbaf4a4bbb63f845761a708346"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c54a1e53a0c308a8e8a7dffb59097bff7facda27c70c286f005327f21b2bd6b1"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win32.whl", hash = "sha256:1e0d612a17581b6616ff03c8e3d5eff7452f34655c901f75d62bd86449d9750e"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win_amd64.whl", hash = "sha256:8958b10490125124463095bbdadda5aa22ec799f91958e410438ad6c97a7b793"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc022184d3e5cacc9579e41805a681187650e170eb2fd70e28b86192a479dcaa"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b817d41d692bf286abc181f8af476c4fbef3fd05e798777492618378448ee689"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4e46a888b54be23d03a89be510f24a7652fe6ff660787b96cd0e57a4ebcb46d"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4ae3005ed83f5967f961fd091f2f8c5329161f69ce8480aa8168b2d7fe37f06"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:03e08af7a5f9386a43919eda9de33ffda16b44eb11f3b313e6822243770e9763"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3dbb986bad3ed5ceaf090200eba750b5245150bd97d3e67343a3cfed06feecf7"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win32.whl", hash = "sha256:9fe53b404f24789b5ea9003fc25b9a3988feddebd7e7b369c8fac27ad6f52f28"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win_amd64.whl", hash = "sha256:af148a33ff0349f53512a049c6406923e4e02bf2f26c5fb285f143faf4f0e46a"}, + {file = "SQLAlchemy-2.0.36-py3-none-any.whl", hash = "sha256:fddbe92b4760c6f5d48162aef14824add991aeda8ddadb3c31d56eb15ca69f8e"}, + {file = "sqlalchemy-2.0.36.tar.gz", hash = "sha256:7f2767680b6d2398aea7082e45a774b2b0767b5c8d8ffb9c8b683088ea9b29c5"}, ] [package.dependencies] @@ -2898,7 +2923,7 @@ aioodbc = ["aioodbc", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5,!=1.1.10)"] mssql = ["pyodbc"] mssql-pymssql = ["pymssql"] mssql-pyodbc = ["pyodbc"] @@ -3001,13 +3026,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] @@ -3193,109 +3218,93 @@ files = [ [[package]] name = "yarl" -version = "1.15.0" +version = "1.17.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19"}, - {file = "yarl-1.15.0-cp310-cp310-win32.whl", hash = "sha256:4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9"}, - {file = "yarl-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1"}, - {file = "yarl-1.15.0-cp311-cp311-win32.whl", hash = "sha256:a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb"}, - {file = "yarl-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d"}, - {file = "yarl-1.15.0-cp312-cp312-win32.whl", hash = "sha256:e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4"}, - {file = "yarl-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e"}, - {file = "yarl-1.15.0-cp313-cp313-win32.whl", hash = "sha256:eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53"}, - {file = "yarl-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738"}, - {file = "yarl-1.15.0-cp38-cp38-win32.whl", hash = "sha256:d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95"}, - {file = "yarl-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9"}, - {file = "yarl-1.15.0-cp39-cp39-win32.whl", hash = "sha256:a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb"}, - {file = "yarl-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0"}, - {file = "yarl-1.15.0-py3-none-any.whl", hash = "sha256:1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5"}, - {file = "yarl-1.15.0.tar.gz", hash = "sha256:efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-astra/pyproject.toml b/airbyte-integrations/connectors/destination-astra/pyproject.toml index e02c3a48a558..7894050e6248 100644 --- a/airbyte-integrations/connectors/destination-astra/pyproject.toml +++ b/airbyte-integrations/connectors/destination-astra/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-astra" -version = "0.1.28" +version = "0.1.29" description = "Airbyte destination implementation for Astra DB." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/astra.md b/docs/integrations/destinations/astra.md index 1fbebba6bc12..e9d3e0d4a078 100644 --- a/docs/integrations/destinations/astra.md +++ b/docs/integrations/destinations/astra.md @@ -43,6 +43,7 @@ This page contains the setup guide and reference information for the destination | Version | Date | Pull Request | Subject | |:--------| :--------- | :----------- |:----------------------------------------------------------| +| 0.1.29 | 2024-10-29 | [47105](https://github.com/airbytehq/airbyte/pull/47105) | Update dependencies | | 0.1.28 | 2024-10-12 | [46857](https://github.com/airbytehq/airbyte/pull/46857) | Update dependencies | | 0.1.27 | 2024-10-05 | [46402](https://github.com/airbytehq/airbyte/pull/46402) | Update dependencies | | 0.1.26 | 2024-09-28 | [46179](https://github.com/airbytehq/airbyte/pull/46179) | Update dependencies | From d2c28a919304549bef09450bf3de1e1e1d8630bb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:16:34 +0200 Subject: [PATCH 377/808] =?UTF-8?q?=F0=9F=90=99=20destination-rabbitmq:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47101)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-rabbitmq/metadata.yaml | 2 +- .../destination-rabbitmq/poetry.lock | 136 +++++++++--------- .../destination-rabbitmq/pyproject.toml | 2 +- docs/integrations/destinations/rabbitmq.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/destination-rabbitmq/metadata.yaml b/airbyte-integrations/connectors/destination-rabbitmq/metadata.yaml index cfbf29d39e0c..9b4c9e68d1a6 100644 --- a/airbyte-integrations/connectors/destination-rabbitmq/metadata.yaml +++ b/airbyte-integrations/connectors/destination-rabbitmq/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: e06ad785-ad6f-4647-b2e8-3027a5c59454 - dockerImageTag: 0.1.24 + dockerImageTag: 0.1.25 dockerRepository: airbyte/destination-rabbitmq githubIssueLabel: destination-rabbitmq icon: pulsar.svg diff --git a/airbyte-integrations/connectors/destination-rabbitmq/poetry.lock b/airbyte-integrations/connectors/destination-rabbitmq/poetry.lock index 561e76db932d..b28564e67b5a 100644 --- a/airbyte-integrations/connectors/destination-rabbitmq/poetry.lock +++ b/airbyte-integrations/connectors/destination-rabbitmq/poetry.lock @@ -406,72 +406,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -843,23 +843,23 @@ yaml = ["pyyaml (>=6.0.1)"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-rabbitmq/pyproject.toml b/airbyte-integrations/connectors/destination-rabbitmq/pyproject.toml index 8966892721f9..187b083a5b36 100644 --- a/airbyte-integrations/connectors/destination-rabbitmq/pyproject.toml +++ b/airbyte-integrations/connectors/destination-rabbitmq/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.24" +version = "0.1.25" name = "destination-rabbitmq" description = "Destination implementation for Rabbitmq." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/rabbitmq.md b/docs/integrations/destinations/rabbitmq.md index 9804c240691a..d0f85529e6a2 100644 --- a/docs/integrations/destinations/rabbitmq.md +++ b/docs/integrations/destinations/rabbitmq.md @@ -48,6 +48,7 @@ To use the RabbitMQ destination, you'll need: | Version | Date | Pull Request | Subject | |:--------| :--------------- | :-------------------------------------------------------- | :---------------------------------------------- | +| 0.1.25 | 2024-10-29 | [47101](https://github.com/airbytehq/airbyte/pull/47101) | Update dependencies | | 0.1.24 | 2024-10-12 | [46859](https://github.com/airbytehq/airbyte/pull/46859) | Update dependencies | | 0.1.23 | 2024-10-05 | [46437](https://github.com/airbytehq/airbyte/pull/46437) | Update dependencies | | 0.1.22 | 2024-09-28 | [46139](https://github.com/airbytehq/airbyte/pull/46139) | Update dependencies | From 7e5c64763ddbc8ed8814f623e964da5eeabfb521 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:16:50 +0200 Subject: [PATCH 378/808] =?UTF-8?q?=F0=9F=90=99=20source-convex:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47081)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-convex/metadata.yaml | 2 +- .../connectors/source-convex/poetry.lock | 136 +++++++++--------- .../connectors/source-convex/pyproject.toml | 2 +- docs/integrations/sources/convex.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-convex/metadata.yaml b/airbyte-integrations/connectors/source-convex/metadata.yaml index 8fa2197c930a..cb75f9cfdf04 100644 --- a/airbyte-integrations/connectors/source-convex/metadata.yaml +++ b/airbyte-integrations/connectors/source-convex/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: c332628c-f55c-4017-8222-378cfafda9b2 - dockerImageTag: 0.4.20 + dockerImageTag: 0.4.21 dockerRepository: airbyte/source-convex githubIssueLabel: source-convex icon: convex.svg diff --git a/airbyte-integrations/connectors/source-convex/poetry.lock b/airbyte-integrations/connectors/source-convex/poetry.lock index a3da2444447b..ea20f620623c 100644 --- a/airbyte-integrations/connectors/source-convex/poetry.lock +++ b/airbyte-integrations/connectors/source-convex/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -903,23 +903,23 @@ tests = ["coverage (>=3.7.1,<6.0.0)", "flake8", "mypy", "pytest (>=4.6)", "pytes [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-convex/pyproject.toml b/airbyte-integrations/connectors/source-convex/pyproject.toml index 64d870a241d8..e3ca61ec4c6a 100644 --- a/airbyte-integrations/connectors/source-convex/pyproject.toml +++ b/airbyte-integrations/connectors/source-convex/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.20" +version = "0.4.21" name = "source-convex" description = "Source implementation for Convex." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/convex.md b/docs/integrations/sources/convex.md index 642151423495..106c7c8eb8c5 100644 --- a/docs/integrations/sources/convex.md +++ b/docs/integrations/sources/convex.md @@ -75,6 +75,7 @@ In the Data tab, you should see the tables and a sample of the data that will be | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------- | +| 0.4.21 | 2024-10-29 | [47081](https://github.com/airbytehq/airbyte/pull/47081) | Update dependencies | | 0.4.20 | 2024-10-12 | [46480](https://github.com/airbytehq/airbyte/pull/46480) | Update dependencies | | 0.4.19 | 2024-09-28 | [46208](https://github.com/airbytehq/airbyte/pull/46208) | Update dependencies | | 0.4.18 | 2024-09-21 | [45809](https://github.com/airbytehq/airbyte/pull/45809) | Update dependencies | From 9a8064a55d6c3c898a5e3f62ce56aba24d84748c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:16:54 +0200 Subject: [PATCH 379/808] =?UTF-8?q?=F0=9F=90=99=20source-pinterest:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47074)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pinterest/metadata.yaml | 2 +- .../connectors/source-pinterest/poetry.lock | 273 +++++++++--------- .../source-pinterest/pyproject.toml | 2 +- docs/integrations/sources/pinterest.md | 1 + 4 files changed, 140 insertions(+), 138 deletions(-) diff --git a/airbyte-integrations/connectors/source-pinterest/metadata.yaml b/airbyte-integrations/connectors/source-pinterest/metadata.yaml index f4c2f1199895..c76e7ea5f578 100644 --- a/airbyte-integrations/connectors/source-pinterest/metadata.yaml +++ b/airbyte-integrations/connectors/source-pinterest/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5cb7e5fe-38c2-11ec-8d3d-0242ac130003 - dockerImageTag: 2.0.20 + dockerImageTag: 2.0.21 dockerRepository: airbyte/source-pinterest connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 diff --git a/airbyte-integrations/connectors/source-pinterest/poetry.lock b/airbyte-integrations/connectors/source-pinterest/poetry.lock index f3755ae815d9..8f54d3644dfe 100644 --- a/airbyte-integrations/connectors/source-pinterest/poetry.lock +++ b/airbyte-integrations/connectors/source-pinterest/poetry.lock @@ -69,13 +69,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +86,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -717,13 +717,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -735,72 +735,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -830,68 +830,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1531,23 +1532,23 @@ tests = ["coverage (>=3.7.1,<6.0.0)", "flake8", "mypy", "pytest (>=4.6)", "pytes [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1599,13 +1600,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-pinterest/pyproject.toml b/airbyte-integrations/connectors/source-pinterest/pyproject.toml index 0027a79e01c5..0212a1b54d5a 100644 --- a/airbyte-integrations/connectors/source-pinterest/pyproject.toml +++ b/airbyte-integrations/connectors/source-pinterest/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.20" +version = "2.0.21" name = "source-pinterest" description = "Source implementation for Pinterest." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pinterest.md b/docs/integrations/sources/pinterest.md index 234d59286801..0071ef4de9a3 100644 --- a/docs/integrations/sources/pinterest.md +++ b/docs/integrations/sources/pinterest.md @@ -203,6 +203,7 @@ The connector is restricted by the Pinterest | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 2.0.21 | 2024-10-29 | [47074](https://github.com/airbytehq/airbyte/pull/47074) | Update dependencies | | 2.0.20 | 2024-10-12 | [46815](https://github.com/airbytehq/airbyte/pull/46815) | Update dependencies | | 2.0.19 | 2024-10-05 | [46482](https://github.com/airbytehq/airbyte/pull/46482) | Update dependencies | | 2.0.18 | 2024-09-28 | [46104](https://github.com/airbytehq/airbyte/pull/46104) | Update dependencies | From f54ed0e68b95defd6bfbf231f2fb5f181f39c874 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:16:57 +0200 Subject: [PATCH 380/808] =?UTF-8?q?=F0=9F=90=99=20source-apify-dataset:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47068)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-apify-dataset/metadata.yaml | 2 +- .../source-apify-dataset/poetry.lock | 136 +++++++++--------- .../source-apify-dataset/pyproject.toml | 2 +- docs/integrations/sources/apify-dataset.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml b/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml index 8b16a526d926..9e198078efca 100644 --- a/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml +++ b/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 47f17145-fe20-4ef5-a548-e29b048adf84 - dockerImageTag: 2.1.26 + dockerImageTag: 2.1.27 dockerRepository: airbyte/source-apify-dataset documentationUrl: https://docs.airbyte.com/integrations/sources/apify-dataset githubIssueLabel: source-apify-dataset diff --git a/airbyte-integrations/connectors/source-apify-dataset/poetry.lock b/airbyte-integrations/connectors/source-apify-dataset/poetry.lock index 81849d95e363..43a15cee8460 100644 --- a/airbyte-integrations/connectors/source-apify-dataset/poetry.lock +++ b/airbyte-integrations/connectors/source-apify-dataset/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,23 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml b/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml index 3de55c3333d8..191cc156e12f 100644 --- a/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml +++ b/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.1.26" +version = "2.1.27" name = "source-apify-dataset" description = "Source implementation for Apify Dataset." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/apify-dataset.md b/docs/integrations/sources/apify-dataset.md index 19998e6b3eca..ea1b2f1a69fe 100644 --- a/docs/integrations/sources/apify-dataset.md +++ b/docs/integrations/sources/apify-dataset.md @@ -72,6 +72,7 @@ The Apify dataset connector uses [Apify Python Client](https://docs.apify.com/ap | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 2.1.27 | 2024-10-29 | [47068](https://github.com/airbytehq/airbyte/pull/47068) | Update dependencies | | 2.1.26 | 2024-10-12 | [46837](https://github.com/airbytehq/airbyte/pull/46837) | Update dependencies | | 2.1.25 | 2024-10-01 | [46373](https://github.com/airbytehq/airbyte/pull/46373) | add user-agent header to be able to track Airbyte integration on Apify | | 2.1.24 | 2024-10-05 | [46430](https://github.com/airbytehq/airbyte/pull/46430) | Update dependencies | From 8aa3c60bb7c859914a4b1ed5676cd29e153b7348 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:17:01 +0200 Subject: [PATCH 381/808] =?UTF-8?q?=F0=9F=90=99=20destination-weaviate:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47063)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-weaviate/metadata.yaml | 2 +- .../destination-weaviate/poetry.lock | 1087 +++++++++-------- .../destination-weaviate/pyproject.toml | 2 +- docs/integrations/destinations/weaviate.md | 1 + 4 files changed, 551 insertions(+), 541 deletions(-) diff --git a/airbyte-integrations/connectors/destination-weaviate/metadata.yaml b/airbyte-integrations/connectors/destination-weaviate/metadata.yaml index a532c68237b7..64dbf8286a35 100644 --- a/airbyte-integrations/connectors/destination-weaviate/metadata.yaml +++ b/airbyte-integrations/connectors/destination-weaviate/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 7b7d7a0d-954c-45a0-bcfc-39a634b97736 - dockerImageTag: 0.2.41 + dockerImageTag: 0.2.42 dockerRepository: airbyte/destination-weaviate documentationUrl: https://docs.airbyte.com/integrations/destinations/weaviate githubIssueLabel: destination-weaviate diff --git a/airbyte-integrations/connectors/destination-weaviate/poetry.lock b/airbyte-integrations/connectors/destination-weaviate/poetry.lock index c2f0ed5cf35b..ae02958ca616 100644 --- a/airbyte-integrations/connectors/destination-weaviate/poetry.lock +++ b/airbyte-integrations/connectors/destination-weaviate/poetry.lock @@ -194,13 +194,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -211,7 +211,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -637,38 +637,38 @@ test-no-images = ["pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist" [[package]] name = "cryptography" -version = "43.0.1" +version = "43.0.3" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." optional = false python-versions = ">=3.7" files = [ - {file = "cryptography-43.0.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:8385d98f6a3bf8bb2d65a73e17ed87a3ba84f6991c155691c51112075f9ffc5d"}, - {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27e613d7077ac613e399270253259d9d53872aaf657471473ebfc9a52935c062"}, - {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68aaecc4178e90719e95298515979814bda0cbada1256a4485414860bd7ab962"}, - {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:de41fd81a41e53267cb020bb3a7212861da53a7d39f863585d13ea11049cf277"}, - {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f98bf604c82c416bc829e490c700ca1553eafdf2912a91e23a79d97d9801372a"}, - {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:61ec41068b7b74268fa86e3e9e12b9f0c21fcf65434571dbb13d954bceb08042"}, - {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:014f58110f53237ace6a408b5beb6c427b64e084eb451ef25a28308270086494"}, - {file = "cryptography-43.0.1-cp37-abi3-win32.whl", hash = "sha256:2bd51274dcd59f09dd952afb696bf9c61a7a49dfc764c04dd33ef7a6b502a1e2"}, - {file = "cryptography-43.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:666ae11966643886c2987b3b721899d250855718d6d9ce41b521252a17985f4d"}, - {file = "cryptography-43.0.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac119bb76b9faa00f48128b7f5679e1d8d437365c5d26f1c2c3f0da4ce1b553d"}, - {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bbcce1a551e262dfbafb6e6252f1ae36a248e615ca44ba302df077a846a8806"}, - {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58d4e9129985185a06d849aa6df265bdd5a74ca6e1b736a77959b498e0505b85"}, - {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d03a475165f3134f773d1388aeb19c2d25ba88b6a9733c5c590b9ff7bbfa2e0c"}, - {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:511f4273808ab590912a93ddb4e3914dfd8a388fed883361b02dea3791f292e1"}, - {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:80eda8b3e173f0f247f711eef62be51b599b5d425c429b5d4ca6a05e9e856baa"}, - {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:38926c50cff6f533f8a2dae3d7f19541432610d114a70808f0926d5aaa7121e4"}, - {file = "cryptography-43.0.1-cp39-abi3-win32.whl", hash = "sha256:a575913fb06e05e6b4b814d7f7468c2c660e8bb16d8d5a1faf9b33ccc569dd47"}, - {file = "cryptography-43.0.1-cp39-abi3-win_amd64.whl", hash = "sha256:d75601ad10b059ec832e78823b348bfa1a59f6b8d545db3a24fd44362a1564cb"}, - {file = "cryptography-43.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ea25acb556320250756e53f9e20a4177515f012c9eaea17eb7587a8c4d8ae034"}, - {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c1332724be35d23a854994ff0b66530119500b6053d0bd3363265f7e5e77288d"}, - {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fba1007b3ef89946dbbb515aeeb41e30203b004f0b4b00e5e16078b518563289"}, - {file = "cryptography-43.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5b43d1ea6b378b54a1dc99dd8a2b5be47658fe9a7ce0a58ff0b55f4b43ef2b84"}, - {file = "cryptography-43.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:88cce104c36870d70c49c7c8fd22885875d950d9ee6ab54df2745f83ba0dc365"}, - {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d3cdb25fa98afdd3d0892d132b8d7139e2c087da1712041f6b762e4f807cc96"}, - {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e710bf40870f4db63c3d7d929aa9e09e4e7ee219e703f949ec4073b4294f6172"}, - {file = "cryptography-43.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7c05650fe8023c5ed0d46793d4b7d7e6cd9c04e68eabe5b0aeea836e37bdcec2"}, - {file = "cryptography-43.0.1.tar.gz", hash = "sha256:203e92a75716d8cfb491dc47c79e17d0d9207ccffcbcb35f598fbe463ae3444d"}, + {file = "cryptography-43.0.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:bf7a1932ac4176486eab36a19ed4c0492da5d97123f1406cf15e41b05e787d2e"}, + {file = "cryptography-43.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63efa177ff54aec6e1c0aefaa1a241232dcd37413835a9b674b6e3f0ae2bfd3e"}, + {file = "cryptography-43.0.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e1ce50266f4f70bf41a2c6dc4358afadae90e2a1e5342d3c08883df1675374f"}, + {file = "cryptography-43.0.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:443c4a81bb10daed9a8f334365fe52542771f25aedaf889fd323a853ce7377d6"}, + {file = "cryptography-43.0.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:74f57f24754fe349223792466a709f8e0c093205ff0dca557af51072ff47ab18"}, + {file = "cryptography-43.0.3-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9762ea51a8fc2a88b70cf2995e5675b38d93bf36bd67d91721c309df184f49bd"}, + {file = "cryptography-43.0.3-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:81ef806b1fef6b06dcebad789f988d3b37ccaee225695cf3e07648eee0fc6b73"}, + {file = "cryptography-43.0.3-cp37-abi3-win32.whl", hash = "sha256:cbeb489927bd7af4aa98d4b261af9a5bc025bd87f0e3547e11584be9e9427be2"}, + {file = "cryptography-43.0.3-cp37-abi3-win_amd64.whl", hash = "sha256:f46304d6f0c6ab8e52770addfa2fc41e6629495548862279641972b6215451cd"}, + {file = "cryptography-43.0.3-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:8ac43ae87929a5982f5948ceda07001ee5e83227fd69cf55b109144938d96984"}, + {file = "cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:846da004a5804145a5f441b8530b4bf35afbf7da70f82409f151695b127213d5"}, + {file = "cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f996e7268af62598f2fc1204afa98a3b5712313a55c4c9d434aef49cadc91d4"}, + {file = "cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:f7b178f11ed3664fd0e995a47ed2b5ff0a12d893e41dd0494f406d1cf555cab7"}, + {file = "cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:c2e6fc39c4ab499049df3bdf567f768a723a5e8464816e8f009f121a5a9f4405"}, + {file = "cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:e1be4655c7ef6e1bbe6b5d0403526601323420bcf414598955968c9ef3eb7d16"}, + {file = "cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:df6b6c6d742395dd77a23ea3728ab62f98379eff8fb61be2744d4679ab678f73"}, + {file = "cryptography-43.0.3-cp39-abi3-win32.whl", hash = "sha256:d56e96520b1020449bbace2b78b603442e7e378a9b3bd68de65c782db1507995"}, + {file = "cryptography-43.0.3-cp39-abi3-win_amd64.whl", hash = "sha256:0c580952eef9bf68c4747774cde7ec1d85a6e61de97281f2dba83c7d2c806362"}, + {file = "cryptography-43.0.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d03b5621a135bffecad2c73e9f4deb1a0f977b9a8ffe6f8e002bf6c9d07b918c"}, + {file = "cryptography-43.0.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:a2a431ee15799d6db9fe80c82b055bae5a752bef645bba795e8e52687c69efe3"}, + {file = "cryptography-43.0.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:281c945d0e28c92ca5e5930664c1cefd85efe80e5c0d2bc58dd63383fda29f83"}, + {file = "cryptography-43.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f18c716be16bc1fea8e95def49edf46b82fccaa88587a45f8dc0ff6ab5d8e0a7"}, + {file = "cryptography-43.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4a02ded6cd4f0a5562a8887df8b3bd14e822a90f97ac5e544c162899bc467664"}, + {file = "cryptography-43.0.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:53a583b6637ab4c4e3591a15bc9db855b8d9dee9a669b550f311480acab6eb08"}, + {file = "cryptography-43.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1ec0bcf7e17c0c5669d881b1cd38c4972fade441b27bda1051665faaa89bdcaa"}, + {file = "cryptography-43.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2ce6fae5bdad59577b44e4dfed356944fbf1d925269114c28be377692643b4ff"}, + {file = "cryptography-43.0.3.tar.gz", hash = "sha256:315b9001266a492a6ff443b61238f956b214dbec9910a081ba5b6646a055a805"}, ] [package.dependencies] @@ -681,7 +681,7 @@ nox = ["nox"] pep8test = ["check-sdist", "click", "mypy", "ruff"] sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "cryptography-vectors (==43.0.1)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test = ["certifi", "cryptography-vectors (==43.0.3)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] [[package]] @@ -766,13 +766,13 @@ files = [ [[package]] name = "et-xmlfile" -version = "1.1.0" +version = "2.0.0" description = "An implementation of lxml.xmlfile for the standard library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, + {file = "et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa"}, + {file = "et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54"}, ] [[package]] @@ -902,88 +902,103 @@ woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] [[package]] name = "frozenlist" -version = "1.4.1" +version = "1.5.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = false python-versions = ">=3.8" files = [ - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, - {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, - {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, - {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, - {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, - {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, - {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, - {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, - {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, - {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, - {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, - {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, - {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, ] [[package]] @@ -1535,13 +1550,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -1553,92 +1568,92 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.22.0" +version = "3.23.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, - {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, + {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, + {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "matplotlib" @@ -1810,38 +1825,43 @@ typing-extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} [[package]] name = "mypy" -version = "1.11.2" +version = "1.13.0" description = "Optional static typing for Python" optional = false python-versions = ">=3.8" files = [ - {file = "mypy-1.11.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d42a6dd818ffce7be66cce644f1dff482f1d97c53ca70908dff0b9ddc120b77a"}, - {file = "mypy-1.11.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:801780c56d1cdb896eacd5619a83e427ce436d86a3bdf9112527f24a66618fef"}, - {file = "mypy-1.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41ea707d036a5307ac674ea172875f40c9d55c5394f888b168033177fce47383"}, - {file = "mypy-1.11.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6e658bd2d20565ea86da7d91331b0eed6d2eee22dc031579e6297f3e12c758c8"}, - {file = "mypy-1.11.2-cp310-cp310-win_amd64.whl", hash = "sha256:478db5f5036817fe45adb7332d927daa62417159d49783041338921dcf646fc7"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75746e06d5fa1e91bfd5432448d00d34593b52e7e91a187d981d08d1f33d4385"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a976775ab2256aadc6add633d44f100a2517d2388906ec4f13231fafbb0eccca"}, - {file = "mypy-1.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cd953f221ac1379050a8a646585a29574488974f79d8082cedef62744f0a0104"}, - {file = "mypy-1.11.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:57555a7715c0a34421013144a33d280e73c08df70f3a18a552938587ce9274f4"}, - {file = "mypy-1.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:36383a4fcbad95f2657642a07ba22ff797de26277158f1cc7bd234821468b1b6"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e8960dbbbf36906c5c0b7f4fbf2f0c7ffb20f4898e6a879fcf56a41a08b0d318"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06d26c277962f3fb50e13044674aa10553981ae514288cb7d0a738f495550b36"}, - {file = "mypy-1.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6e7184632d89d677973a14d00ae4d03214c8bc301ceefcdaf5c474866814c987"}, - {file = "mypy-1.11.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3a66169b92452f72117e2da3a576087025449018afc2d8e9bfe5ffab865709ca"}, - {file = "mypy-1.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:969ea3ef09617aff826885a22ece0ddef69d95852cdad2f60c8bb06bf1f71f70"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:37c7fa6121c1cdfcaac97ce3d3b5588e847aa79b580c1e922bb5d5d2902df19b"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a8a53bc3ffbd161b5b2a4fff2f0f1e23a33b0168f1c0778ec70e1a3d66deb86"}, - {file = "mypy-1.11.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2ff93107f01968ed834f4256bc1fc4475e2fecf6c661260066a985b52741ddce"}, - {file = "mypy-1.11.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:edb91dded4df17eae4537668b23f0ff6baf3707683734b6a818d5b9d0c0c31a1"}, - {file = "mypy-1.11.2-cp38-cp38-win_amd64.whl", hash = "sha256:ee23de8530d99b6db0573c4ef4bd8f39a2a6f9b60655bf7a1357e585a3486f2b"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:801ca29f43d5acce85f8e999b1e431fb479cb02d0e11deb7d2abb56bdaf24fd6"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af8d155170fcf87a2afb55b35dc1a0ac21df4431e7d96717621962e4b9192e70"}, - {file = "mypy-1.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7821776e5c4286b6a13138cc935e2e9b6fde05e081bdebf5cdb2bb97c9df81d"}, - {file = "mypy-1.11.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:539c570477a96a4e6fb718b8d5c3e0c0eba1f485df13f86d2970c91f0673148d"}, - {file = "mypy-1.11.2-cp39-cp39-win_amd64.whl", hash = "sha256:3f14cd3d386ac4d05c5a39a51b84387403dadbd936e17cb35882134d4f8f0d24"}, - {file = "mypy-1.11.2-py3-none-any.whl", hash = "sha256:b499bc07dbdcd3de92b0a8b29fdf592c111276f6a12fe29c30f6c417dd546d12"}, - {file = "mypy-1.11.2.tar.gz", hash = "sha256:7f9993ad3e0ffdc95c2a14b66dee63729f021968bff8ad911867579c65d13a79"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, ] [package.dependencies] @@ -1851,6 +1871,7 @@ typing-extensions = ">=4.6.0" [package.extras] dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] install-types = ["pip"] mypyc = ["setuptools (>=50)"] reports = ["lxml"] @@ -1958,68 +1979,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -2169,95 +2191,90 @@ pytzdata = ">=2020.1" [[package]] name = "pillow" -version = "10.4.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, - {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, - {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, - {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, - {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, - {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, - {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, - {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, - {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, - {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, - {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, - {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, - {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, - {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, - {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, - {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, - {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, - {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, - {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, - {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -2489,13 +2506,13 @@ email = ["email-validator (>=1.0.3)"] [[package]] name = "pyparsing" -version = "3.1.4" +version = "3.2.0" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.9" files = [ - {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, - {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, + {file = "pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84"}, + {file = "pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c"}, ] [package.extras] @@ -2636,29 +2653,29 @@ files = [ [[package]] name = "pywin32" -version = "307" +version = "308" description = "Python for Window Extensions" optional = false python-versions = "*" files = [ - {file = "pywin32-307-cp310-cp310-win32.whl", hash = "sha256:f8f25d893c1e1ce2d685ef6d0a481e87c6f510d0f3f117932781f412e0eba31b"}, - {file = "pywin32-307-cp310-cp310-win_amd64.whl", hash = "sha256:36e650c5e5e6b29b5d317385b02d20803ddbac5d1031e1f88d20d76676dd103d"}, - {file = "pywin32-307-cp310-cp310-win_arm64.whl", hash = "sha256:0c12d61e0274e0c62acee79e3e503c312426ddd0e8d4899c626cddc1cafe0ff4"}, - {file = "pywin32-307-cp311-cp311-win32.whl", hash = "sha256:fec5d27cc893178fab299de911b8e4d12c5954e1baf83e8a664311e56a272b75"}, - {file = "pywin32-307-cp311-cp311-win_amd64.whl", hash = "sha256:987a86971753ed7fdd52a7fb5747aba955b2c7fbbc3d8b76ec850358c1cc28c3"}, - {file = "pywin32-307-cp311-cp311-win_arm64.whl", hash = "sha256:fd436897c186a2e693cd0437386ed79f989f4d13d6f353f8787ecbb0ae719398"}, - {file = "pywin32-307-cp312-cp312-win32.whl", hash = "sha256:07649ec6b01712f36debf39fc94f3d696a46579e852f60157a729ac039df0815"}, - {file = "pywin32-307-cp312-cp312-win_amd64.whl", hash = "sha256:00d047992bb5dcf79f8b9b7c81f72e0130f9fe4b22df613f755ab1cc021d8347"}, - {file = "pywin32-307-cp312-cp312-win_arm64.whl", hash = "sha256:b53658acbfc6a8241d72cc09e9d1d666be4e6c99376bc59e26cdb6223c4554d2"}, - {file = "pywin32-307-cp313-cp313-win32.whl", hash = "sha256:ea4d56e48dc1ab2aa0a5e3c0741ad6e926529510516db7a3b6981a1ae74405e5"}, - {file = "pywin32-307-cp313-cp313-win_amd64.whl", hash = "sha256:576d09813eaf4c8168d0bfd66fb7cb3b15a61041cf41598c2db4a4583bf832d2"}, - {file = "pywin32-307-cp313-cp313-win_arm64.whl", hash = "sha256:b30c9bdbffda6a260beb2919f918daced23d32c79109412c2085cbc513338a0a"}, - {file = "pywin32-307-cp37-cp37m-win32.whl", hash = "sha256:5101472f5180c647d4525a0ed289ec723a26231550dbfd369ec19d5faf60e511"}, - {file = "pywin32-307-cp37-cp37m-win_amd64.whl", hash = "sha256:05de55a7c110478dc4b202230e98af5e0720855360d2b31a44bb4e296d795fba"}, - {file = "pywin32-307-cp38-cp38-win32.whl", hash = "sha256:13d059fb7f10792542082f5731d5d3d9645320fc38814759313e5ee97c3fac01"}, - {file = "pywin32-307-cp38-cp38-win_amd64.whl", hash = "sha256:7e0b2f93769d450a98ac7a31a087e07b126b6d571e8b4386a5762eb85325270b"}, - {file = "pywin32-307-cp39-cp39-win32.whl", hash = "sha256:55ee87f2f8c294e72ad9d4261ca423022310a6e79fb314a8ca76ab3f493854c6"}, - {file = "pywin32-307-cp39-cp39-win_amd64.whl", hash = "sha256:e9d5202922e74985b037c9ef46778335c102b74b95cec70f629453dbe7235d87"}, + {file = "pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"}, + {file = "pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"}, + {file = "pywin32-308-cp310-cp310-win_arm64.whl", hash = "sha256:a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c"}, + {file = "pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a"}, + {file = "pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b"}, + {file = "pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6"}, + {file = "pywin32-308-cp312-cp312-win32.whl", hash = "sha256:587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897"}, + {file = "pywin32-308-cp312-cp312-win_amd64.whl", hash = "sha256:00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47"}, + {file = "pywin32-308-cp312-cp312-win_arm64.whl", hash = "sha256:9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091"}, + {file = "pywin32-308-cp313-cp313-win32.whl", hash = "sha256:1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed"}, + {file = "pywin32-308-cp313-cp313-win_amd64.whl", hash = "sha256:fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4"}, + {file = "pywin32-308-cp313-cp313-win_arm64.whl", hash = "sha256:ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd"}, + {file = "pywin32-308-cp37-cp37m-win32.whl", hash = "sha256:1f696ab352a2ddd63bd07430080dd598e6369152ea13a25ebcdd2f503a38f1ff"}, + {file = "pywin32-308-cp37-cp37m-win_amd64.whl", hash = "sha256:13dcb914ed4347019fbec6697a01a0aec61019c1046c2b905410d197856326a6"}, + {file = "pywin32-308-cp38-cp38-win32.whl", hash = "sha256:5794e764ebcabf4ff08c555b31bd348c9025929371763b2183172ff4708152f0"}, + {file = "pywin32-308-cp38-cp38-win_amd64.whl", hash = "sha256:3b92622e29d651c6b783e368ba7d6722b1634b8e70bd376fd7610fe1992e19de"}, + {file = "pywin32-308-cp39-cp39-win32.whl", hash = "sha256:7873ca4dc60ab3287919881a7d4f88baee4a6e639aa6962de25a98ba6b193341"}, + {file = "pywin32-308-cp39-cp39-win_amd64.whl", hash = "sha256:71b3322d949b4cc20776436a9c9ba0eeedcbc9c650daa536df63f0ff111bb920"}, ] [[package]] @@ -3011,23 +3028,23 @@ test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "po [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -3053,60 +3070,68 @@ files = [ [[package]] name = "sqlalchemy" -version = "2.0.35" +version = "2.0.36" description = "Database Abstraction Library" optional = false python-versions = ">=3.7" files = [ - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:67219632be22f14750f0d1c70e62f204ba69d28f62fd6432ba05ab295853de9b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4668bd8faf7e5b71c0319407b608f278f279668f358857dbfd10ef1954ac9f90"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb8bea573863762bbf45d1e13f87c2d2fd32cee2dbd50d050f83f87429c9e1ea"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f552023710d4b93d8fb29a91fadf97de89c5926c6bd758897875435f2a939f33"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:016b2e665f778f13d3c438651dd4de244214b527a275e0acf1d44c05bc6026a9"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7befc148de64b6060937231cbff8d01ccf0bfd75aa26383ffdf8d82b12ec04ff"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win32.whl", hash = "sha256:22b83aed390e3099584b839b93f80a0f4a95ee7f48270c97c90acd40ee646f0b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win_amd64.whl", hash = "sha256:a29762cd3d116585278ffb2e5b8cc311fb095ea278b96feef28d0b423154858e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e21f66748ab725ade40fa7af8ec8b5019c68ab00b929f6643e1b1af461eddb60"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8a6219108a15fc6d24de499d0d515c7235c617b2540d97116b663dade1a54d62"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:042622a5306c23b972192283f4e22372da3b8ddf5f7aac1cc5d9c9b222ab3ff6"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:627dee0c280eea91aed87b20a1f849e9ae2fe719d52cbf847c0e0ea34464b3f7"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4fdcd72a789c1c31ed242fd8c1bcd9ea186a98ee8e5408a50e610edfef980d71"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:89b64cd8898a3a6f642db4eb7b26d1b28a497d4022eccd7717ca066823e9fb01"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win32.whl", hash = "sha256:6a93c5a0dfe8d34951e8a6f499a9479ffb9258123551fa007fc708ae2ac2bc5e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win_amd64.whl", hash = "sha256:c68fe3fcde03920c46697585620135b4ecfdfc1ed23e75cc2c2ae9f8502c10b8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:eb60b026d8ad0c97917cb81d3662d0b39b8ff1335e3fabb24984c6acd0c900a2"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6921ee01caf375363be5e9ae70d08ce7ca9d7e0e8983183080211a062d299468"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cdf1a0dbe5ced887a9b127da4ffd7354e9c1a3b9bb330dce84df6b70ccb3a8d"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93a71c8601e823236ac0e5d087e4f397874a421017b3318fd92c0b14acf2b6db"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e04b622bb8a88f10e439084486f2f6349bf4d50605ac3e445869c7ea5cf0fa8c"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1b56961e2d31389aaadf4906d453859f35302b4eb818d34a26fab72596076bb8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win32.whl", hash = "sha256:0f9f3f9a3763b9c4deb8c5d09c4cc52ffe49f9876af41cc1b2ad0138878453cf"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win_amd64.whl", hash = "sha256:25b0f63e7fcc2a6290cb5f7f5b4fc4047843504983a28856ce9b35d8f7de03cc"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f021d334f2ca692523aaf7bbf7592ceff70c8594fad853416a81d66b35e3abf9"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05c3f58cf91683102f2f0265c0db3bd3892e9eedabe059720492dbaa4f922da1"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:032d979ce77a6c2432653322ba4cbeabf5a6837f704d16fa38b5a05d8e21fa00"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:2e795c2f7d7249b75bb5f479b432a51b59041580d20599d4e112b5f2046437a3"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:cc32b2990fc34380ec2f6195f33a76b6cdaa9eecf09f0c9404b74fc120aef36f"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win32.whl", hash = "sha256:9509c4123491d0e63fb5e16199e09f8e262066e58903e84615c301dde8fa2e87"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win_amd64.whl", hash = "sha256:3655af10ebcc0f1e4e06c5900bb33e080d6a1fa4228f502121f28a3b1753cde5"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4c31943b61ed8fdd63dfd12ccc919f2bf95eefca133767db6fbbd15da62078ec"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a62dd5d7cc8626a3634208df458c5fe4f21200d96a74d122c83bc2015b333bc1"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0630774b0977804fba4b6bbea6852ab56c14965a2b0c7fc7282c5f7d90a1ae72"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d625eddf7efeba2abfd9c014a22c0f6b3796e0ffb48f5d5ab106568ef01ff5a"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ada603db10bb865bbe591939de854faf2c60f43c9b763e90f653224138f910d9"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c41411e192f8d3ea39ea70e0fae48762cd11a2244e03751a98bd3c0ca9a4e936"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win32.whl", hash = "sha256:d299797d75cd747e7797b1b41817111406b8b10a4f88b6e8fe5b5e59598b43b0"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win_amd64.whl", hash = "sha256:0375a141e1c0878103eb3d719eb6d5aa444b490c96f3fedab8471c7f6ffe70ee"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ccae5de2a0140d8be6838c331604f91d6fafd0735dbdcee1ac78fc8fbaba76b4"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2a275a806f73e849e1c309ac11108ea1a14cd7058577aba962cd7190e27c9e3c"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:732e026240cdd1c1b2e3ac515c7a23820430ed94292ce33806a95869c46bd139"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890da8cd1941fa3dab28c5bac3b9da8502e7e366f895b3b8e500896f12f94d11"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c0d8326269dbf944b9201911b0d9f3dc524d64779a07518199a58384c3d37a44"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b76d63495b0508ab9fc23f8152bac63205d2a704cd009a2b0722f4c8e0cba8e0"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win32.whl", hash = "sha256:69683e02e8a9de37f17985905a5eca18ad651bf592314b4d3d799029797d0eb3"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win_amd64.whl", hash = "sha256:aee110e4ef3c528f3abbc3c2018c121e708938adeeff9006428dd7c8555e9b3f"}, - {file = "SQLAlchemy-2.0.35-py3-none-any.whl", hash = "sha256:2ab3f0336c0387662ce6221ad30ab3a5e6499aab01b9790879b6578fd9b8faa1"}, - {file = "sqlalchemy-2.0.35.tar.gz", hash = "sha256:e11d7ea4d24f0a262bccf9a7cd6284c976c5369dac21db237cff59586045ab9f"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:59b8f3adb3971929a3e660337f5dacc5942c2cdb760afcabb2614ffbda9f9f72"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37350015056a553e442ff672c2d20e6f4b6d0b2495691fa239d8aa18bb3bc908"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8318f4776c85abc3f40ab185e388bee7a6ea99e7fa3a30686580b209eaa35c08"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c245b1fbade9c35e5bd3b64270ab49ce990369018289ecfde3f9c318411aaa07"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69f93723edbca7342624d09f6704e7126b152eaed3cdbb634cb657a54332a3c5"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f9511d8dd4a6e9271d07d150fb2f81874a3c8c95e11ff9af3a2dfc35fe42ee44"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win32.whl", hash = "sha256:c3f3631693003d8e585d4200730616b78fafd5a01ef8b698f6967da5c605b3fa"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win_amd64.whl", hash = "sha256:a86bfab2ef46d63300c0f06936bd6e6c0105faa11d509083ba8f2f9d237fb5b5"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fd3a55deef00f689ce931d4d1b23fa9f04c880a48ee97af488fd215cf24e2a6c"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4f5e9cd989b45b73bd359f693b935364f7e1f79486e29015813c338450aa5a71"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0ddd9db6e59c44875211bc4c7953a9f6638b937b0a88ae6d09eb46cced54eff"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2519f3a5d0517fc159afab1015e54bb81b4406c278749779be57a569d8d1bb0d"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59b1ee96617135f6e1d6f275bbe988f419c5178016f3d41d3c0abb0c819f75bb"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:39769a115f730d683b0eb7b694db9789267bcd027326cccc3125e862eb03bfd8"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win32.whl", hash = "sha256:66bffbad8d6271bb1cc2f9a4ea4f86f80fe5e2e3e501a5ae2a3dc6a76e604e6f"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win_amd64.whl", hash = "sha256:23623166bfefe1487d81b698c423f8678e80df8b54614c2bf4b4cfcd7c711959"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f7b64e6ec3f02c35647be6b4851008b26cff592a95ecb13b6788a54ef80bbdd4"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:46331b00096a6db1fdc052d55b101dbbfc99155a548e20a0e4a8e5e4d1362855"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdf3386a801ea5aba17c6410dd1dc8d39cf454ca2565541b5ac42a84e1e28f53"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac9dfa18ff2a67b09b372d5db8743c27966abf0e5344c555d86cc7199f7ad83a"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:90812a8933df713fdf748b355527e3af257a11e415b613dd794512461eb8a686"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1bc330d9d29c7f06f003ab10e1eaced295e87940405afe1b110f2eb93a233588"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win32.whl", hash = "sha256:79d2e78abc26d871875b419e1fd3c0bca31a1cb0043277d0d850014599626c2e"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win_amd64.whl", hash = "sha256:b544ad1935a8541d177cb402948b94e871067656b3a0b9e91dbec136b06a2ff5"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5cc79df7f4bc3d11e4b542596c03826063092611e481fcf1c9dfee3c94355ef"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3c01117dd36800f2ecaa238c65365b7b16497adc1522bf84906e5710ee9ba0e8"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bc633f4ee4b4c46e7adcb3a9b5ec083bf1d9a97c1d3854b92749d935de40b9b"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e46ed38affdfc95d2c958de328d037d87801cfcbea6d421000859e9789e61c2"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b2985c0b06e989c043f1dc09d4fe89e1616aadd35392aea2844f0458a989eacf"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a121d62ebe7d26fec9155f83f8be5189ef1405f5973ea4874a26fab9f1e262c"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win32.whl", hash = "sha256:0572f4bd6f94752167adfd7c1bed84f4b240ee6203a95e05d1e208d488d0d436"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win_amd64.whl", hash = "sha256:8c78ac40bde930c60e0f78b3cd184c580f89456dd87fc08f9e3ee3ce8765ce88"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:be9812b766cad94a25bc63bec11f88c4ad3629a0cec1cd5d4ba48dc23860486b"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aae840ebbd6cdd41af1c14590e5741665e5272d2fee999306673a1bb1fdb4d"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4557e1f11c5f653ebfdd924f3f9d5ebfc718283b0b9beebaa5dd6b77ec290971"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07b441f7d03b9a66299ce7ccf3ef2900abc81c0db434f42a5694a37bd73870f2"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:28120ef39c92c2dd60f2721af9328479516844c6b550b077ca450c7d7dc68575"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win32.whl", hash = "sha256:b81ee3d84803fd42d0b154cb6892ae57ea6b7c55d8359a02379965706c7efe6c"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win_amd64.whl", hash = "sha256:f942a799516184c855e1a32fbc7b29d7e571b52612647866d4ec1c3242578fcb"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3d6718667da04294d7df1670d70eeddd414f313738d20a6f1d1f379e3139a545"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:72c28b84b174ce8af8504ca28ae9347d317f9dba3999e5981a3cd441f3712e24"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b11d0cfdd2b095e7b0686cf5fabeb9c67fae5b06d265d8180715b8cfa86522e3"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e32092c47011d113dc01ab3e1d3ce9f006a47223b18422c5c0d150af13a00687"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6a440293d802d3011028e14e4226da1434b373cbaf4a4bbb63f845761a708346"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c54a1e53a0c308a8e8a7dffb59097bff7facda27c70c286f005327f21b2bd6b1"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win32.whl", hash = "sha256:1e0d612a17581b6616ff03c8e3d5eff7452f34655c901f75d62bd86449d9750e"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win_amd64.whl", hash = "sha256:8958b10490125124463095bbdadda5aa22ec799f91958e410438ad6c97a7b793"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc022184d3e5cacc9579e41805a681187650e170eb2fd70e28b86192a479dcaa"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b817d41d692bf286abc181f8af476c4fbef3fd05e798777492618378448ee689"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4e46a888b54be23d03a89be510f24a7652fe6ff660787b96cd0e57a4ebcb46d"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4ae3005ed83f5967f961fd091f2f8c5329161f69ce8480aa8168b2d7fe37f06"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:03e08af7a5f9386a43919eda9de33ffda16b44eb11f3b313e6822243770e9763"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3dbb986bad3ed5ceaf090200eba750b5245150bd97d3e67343a3cfed06feecf7"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win32.whl", hash = "sha256:9fe53b404f24789b5ea9003fc25b9a3988feddebd7e7b369c8fac27ad6f52f28"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win_amd64.whl", hash = "sha256:af148a33ff0349f53512a049c6406923e4e02bf2f26c5fb285f143faf4f0e46a"}, + {file = "SQLAlchemy-2.0.36-py3-none-any.whl", hash = "sha256:fddbe92b4760c6f5d48162aef14824add991aeda8ddadb3c31d56eb15ca69f8e"}, + {file = "sqlalchemy-2.0.36.tar.gz", hash = "sha256:7f2767680b6d2398aea7082e45a774b2b0767b5c8d8ffb9c8b683088ea9b29c5"}, ] [package.dependencies] @@ -3119,7 +3144,7 @@ aioodbc = ["aioodbc", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5,!=1.1.10)"] mssql = ["pyodbc"] mssql-pymssql = ["pymssql"] mssql-pyodbc = ["pyodbc"] @@ -3222,13 +3247,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] @@ -3447,109 +3472,93 @@ files = [ [[package]] name = "yarl" -version = "1.15.0" +version = "1.17.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19"}, - {file = "yarl-1.15.0-cp310-cp310-win32.whl", hash = "sha256:4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9"}, - {file = "yarl-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1"}, - {file = "yarl-1.15.0-cp311-cp311-win32.whl", hash = "sha256:a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb"}, - {file = "yarl-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d"}, - {file = "yarl-1.15.0-cp312-cp312-win32.whl", hash = "sha256:e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4"}, - {file = "yarl-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e"}, - {file = "yarl-1.15.0-cp313-cp313-win32.whl", hash = "sha256:eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53"}, - {file = "yarl-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738"}, - {file = "yarl-1.15.0-cp38-cp38-win32.whl", hash = "sha256:d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95"}, - {file = "yarl-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9"}, - {file = "yarl-1.15.0-cp39-cp39-win32.whl", hash = "sha256:a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb"}, - {file = "yarl-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0"}, - {file = "yarl-1.15.0-py3-none-any.whl", hash = "sha256:1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5"}, - {file = "yarl-1.15.0.tar.gz", hash = "sha256:efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-weaviate/pyproject.toml b/airbyte-integrations/connectors/destination-weaviate/pyproject.toml index d9aed57e945a..7cee0cb8ef2a 100644 --- a/airbyte-integrations/connectors/destination-weaviate/pyproject.toml +++ b/airbyte-integrations/connectors/destination-weaviate/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-weaviate" -version = "0.2.41" +version = "0.2.42" description = "Airbyte destination implementation for Weaviate." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/weaviate.md b/docs/integrations/destinations/weaviate.md index b122107b3540..e0e011a898ba 100644 --- a/docs/integrations/destinations/weaviate.md +++ b/docs/integrations/destinations/weaviate.md @@ -90,6 +90,7 @@ When using [multi-tenancy](https://weaviate.io/developers/weaviate/manage-data/m | Version | Date | Pull Request | Subject | |:--------| :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.2.42 | 2024-10-29 | [47063](https://github.com/airbytehq/airbyte/pull/47063) | Update dependencies | | 0.2.41 | 2024-10-12 | [46848](https://github.com/airbytehq/airbyte/pull/46848) | Update dependencies | | 0.2.40 | 2024-10-05 | [46465](https://github.com/airbytehq/airbyte/pull/46465) | Update dependencies | | 0.2.39 | 2024-09-28 | [46189](https://github.com/airbytehq/airbyte/pull/46189) | Update dependencies | From f37f24f5e9174ad13243e4f2ab78c9137602fb71 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:17:13 +0200 Subject: [PATCH 382/808] =?UTF-8?q?=F0=9F=90=99=20source-appsflyer:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47039)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-appsflyer/metadata.yaml | 2 +- .../connectors/source-appsflyer/poetry.lock | 136 +++++++++--------- .../source-appsflyer/pyproject.toml | 2 +- docs/integrations/sources/appsflyer.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-appsflyer/metadata.yaml b/airbyte-integrations/connectors/source-appsflyer/metadata.yaml index 6a7a703f1da8..920cb198bd93 100644 --- a/airbyte-integrations/connectors/source-appsflyer/metadata.yaml +++ b/airbyte-integrations/connectors/source-appsflyer/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 16447954-e6a8-4593-b140-43dea13bc457 - dockerImageTag: 0.2.20 + dockerImageTag: 0.2.21 dockerRepository: airbyte/source-appsflyer githubIssueLabel: source-appsflyer icon: appsflyer.svg diff --git a/airbyte-integrations/connectors/source-appsflyer/poetry.lock b/airbyte-integrations/connectors/source-appsflyer/poetry.lock index 8a10778f534c..562dd35a6358 100644 --- a/airbyte-integrations/connectors/source-appsflyer/poetry.lock +++ b/airbyte-integrations/connectors/source-appsflyer/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,23 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-appsflyer/pyproject.toml b/airbyte-integrations/connectors/source-appsflyer/pyproject.toml index e9ce102f5798..7d6aa3bf0b27 100644 --- a/airbyte-integrations/connectors/source-appsflyer/pyproject.toml +++ b/airbyte-integrations/connectors/source-appsflyer/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.20" +version = "0.2.21" name = "source-appsflyer" description = "Source implementation for Appsflyer." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/appsflyer.md b/docs/integrations/sources/appsflyer.md index 5a5a1fd948ed..c93ca7d1ccd5 100644 --- a/docs/integrations/sources/appsflyer.md +++ b/docs/integrations/sources/appsflyer.md @@ -23,6 +23,7 @@ The Airbyte Source for [AppsFLyer](https://www.appsflyer.com/) | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------------------------------------------------- | :------------------------------------------ | +| 0.2.21 | 2024-10-29 | [47039](https://github.com/airbytehq/airbyte/pull/47039) | Update dependencies | | 0.2.20 | 2024-10-12 | [46823](https://github.com/airbytehq/airbyte/pull/46823) | Update dependencies | | 0.2.19 | 2024-10-05 | [46393](https://github.com/airbytehq/airbyte/pull/46393) | Update dependencies | | 0.2.18 | 2024-09-28 | [46202](https://github.com/airbytehq/airbyte/pull/46202) | Update dependencies | From faa17b3fa2dcc83718845b23a64ddc9aa4021c37 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 18:17:16 +0200 Subject: [PATCH 383/808] =?UTF-8?q?=F0=9F=90=99=20source-public-apis:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47035)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-public-apis/metadata.yaml | 2 +- .../connectors/source-public-apis/poetry.lock | 267 +++++++++--------- .../source-public-apis/pyproject.toml | 2 +- docs/integrations/sources/public-apis.md | 1 + 4 files changed, 137 insertions(+), 135 deletions(-) diff --git a/airbyte-integrations/connectors/source-public-apis/metadata.yaml b/airbyte-integrations/connectors/source-public-apis/metadata.yaml index 22098fc6ab44..b398ce95e783 100644 --- a/airbyte-integrations/connectors/source-public-apis/metadata.yaml +++ b/airbyte-integrations/connectors/source-public-apis/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: a4617b39-3c14-44cd-a2eb-6e720f269235 - dockerImageTag: 0.2.20 + dockerImageTag: 0.2.21 dockerRepository: airbyte/source-public-apis documentationUrl: https://docs.airbyte.com/integrations/sources/public-apis githubIssueLabel: source-public-apis diff --git a/airbyte-integrations/connectors/source-public-apis/poetry.lock b/airbyte-integrations/connectors/source-public-apis/poetry.lock index 06658fe3a758..c2268c5899fb 100644 --- a/airbyte-integrations/connectors/source-public-apis/poetry.lock +++ b/airbyte-integrations/connectors/source-public-apis/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -697,138 +697,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1284,23 +1285,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-public-apis/pyproject.toml b/airbyte-integrations/connectors/source-public-apis/pyproject.toml index f72192c92fca..2ae92364b3b3 100644 --- a/airbyte-integrations/connectors/source-public-apis/pyproject.toml +++ b/airbyte-integrations/connectors/source-public-apis/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.20" +version = "0.2.21" name = "source-public-apis" description = "Source implementation for Public Apis." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/public-apis.md b/docs/integrations/sources/public-apis.md index 52fb78d8ec27..c745a395e425 100644 --- a/docs/integrations/sources/public-apis.md +++ b/docs/integrations/sources/public-apis.md @@ -46,6 +46,7 @@ This source requires no setup. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------- | +| 0.2.21 | 2024-10-29 | [47035](https://github.com/airbytehq/airbyte/pull/47035) | Update dependencies | | 0.2.20 | 2024-10-12 | [46839](https://github.com/airbytehq/airbyte/pull/46839) | Update dependencies | | 0.2.19 | 2024-10-05 | [46440](https://github.com/airbytehq/airbyte/pull/46440) | Update dependencies | | 0.2.18 | 2024-09-28 | [46198](https://github.com/airbytehq/airbyte/pull/46198) | Update dependencies | From 4238339a5dc5e67a36adab95dd96f2eaa9b3e96d Mon Sep 17 00:00:00 2001 From: Guen Prawiroatmodjo Date: Tue, 29 Oct 2024 09:36:20 -0700 Subject: [PATCH 384/808] Fix: MotherDuck destination was not using the correct schema for all streams (#47706) --- .../destination-motherduck/README.md | 34 ++++----- .../destination_motherduck/destination.py | 42 +++-------- .../processors/duckdb.py | 30 ++++++++ .../integration_tests/integration_test.py | 70 ++++++++++++++++++- .../destination-motherduck/metadata.yaml | 2 +- .../destination-motherduck/pyproject.toml | 2 +- docs/integrations/destinations/motherduck.md | 1 + 7 files changed, 126 insertions(+), 55 deletions(-) diff --git a/airbyte-integrations/connectors/destination-motherduck/README.md b/airbyte-integrations/connectors/destination-motherduck/README.md index b143a5afda11..6565ec0457ca 100644 --- a/airbyte-integrations/connectors/destination-motherduck/README.md +++ b/airbyte-integrations/connectors/destination-motherduck/README.md @@ -1,7 +1,7 @@ -# Duckdb Destination +# MotherDuck Destination -This is the repository for the Duckdb destination connector, written in Python. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/destinations/duckdb). +This is the repository for the MotherDuck destination connector, written in Python. +For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/destinations/motherduck). ## Local development @@ -37,12 +37,12 @@ should work as you expect. #### Create credentials -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/destinations/duckdb) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `destination_duckdb/spec.json` file. +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/destinations/motherduck) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `destination_motherduck/spec.json` file. Note that the `secrets` directory is gitignored by default, so there is no danger of accidentally checking in sensitive information. See `integration_tests/sample_config.json` for a sample config file. -**If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `destination duckdb test creds` +**If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `destination motherduck test creds` and place them into `secrets/config.json`. ### Locally running the connector @@ -64,9 +64,9 @@ You can follow install instructions [here](https://github.com/airbytehq/airbyte/ Then running the following command will build your connector: ```bash -airbyte-ci connectors --name destination-duckdb build +airbyte-ci connectors --name destination-motherduck build ``` -Once the command is done, you will find your connector image in your local docker registry: `airbyte/destination-duckdb:dev`. +Once the command is done, you will find your connector image in your local docker registry: `airbyte/destination-motherduck:dev`. ##### Customizing our build process When contributing on our connector you might need to customize the build process to add a system dependency or set an env var. @@ -103,7 +103,7 @@ If you would like to patch our connector and build your own a simple approach wo 1. Create your own Dockerfile based on the latest version of the connector image. ```Dockerfile -FROM airbyte/destination-duckdb:latest +FROM airbyte/destination-motherduck:latest COPY . ./airbyte/integration_code RUN pip install ./airbyte/integration_code @@ -116,19 +116,19 @@ Please use this as an example. This is not optimized. 2. Build your image: ```bash -docker build -t airbyte/destination-duckdb:dev . +docker build -t airbyte/destination-motherduck:dev . # Running the spec command against your patched connector -docker run airbyte/destination-duckdb:dev spec +docker run airbyte/destination-motherduck:dev spec ``` #### Run Then run any of the connector commands as follows: ``` -docker run --rm airbyte/destination-duckdb:dev spec -docker run --rm -v $(pwd)/secrets:/secrets airbyte/destination-duckdb:dev check --config /secrets/config.json +docker run --rm airbyte/destination-motherduck:dev spec +docker run --rm -v $(pwd)/secrets:/secrets airbyte/destination-motherduck:dev check --config /secrets/config.json # messages.jsonl is a file containing line-separated JSON representing AirbyteMessages -cat integration_tests/messages.jsonl | docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/destination-duckdb:dev write --config /secrets/config.json --catalog /integration_tests/configured_catalog.json +cat integration_tests/messages.jsonl | docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/destination-motherduck:dev write --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` ## Testing @@ -136,7 +136,7 @@ cat integration_tests/messages.jsonl | docker run --rm -v $(pwd)/secrets:/secret You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): ```bash -airbyte-ci connectors --name=destination-duckdb test +airbyte-ci connectors --name=destination-motherduck test ``` ### Customizing acceptance Tests @@ -156,10 +156,10 @@ We split dependencies between two groups, dependencies that are: You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=destination-duckdb test` +1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=destination-motherduck test` 2. Bump the connector version in `metadata.yaml`: increment the `dockerImageTag` value. Please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors). 3. Make sure the `metadata.yaml` content is up to date. -4. Make the connector documentation and its changelog is up to date (`docs/integrations/destinations/duckdb.md`). +4. Make the connector documentation and its changelog is up to date (`docs/integrations/destinations/motherduck.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. \ No newline at end of file diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py index c8fff6cbe1b9..b7991bd78ab0 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py @@ -126,41 +126,15 @@ def write( path = self._get_destination_path(path) schema_name = validated_sql_name(config.get("schema", CONFIG_DEFAULT_SCHEMA)) motherduck_api_key = str(config.get(CONFIG_MOTHERDUCK_API_KEY, "")) + processor = self._get_sql_processor( + configured_catalog=configured_catalog, + schema_name=schema_name, + db_path=path, + motherduck_token=motherduck_api_key, + ) for configured_stream in configured_catalog.streams: - stream_name = configured_stream.stream.name - # TODO: we're calling private methods on processor, should move this to write_stream_data or similar - processor = self._get_sql_processor( - configured_catalog=configured_catalog, - schema_name=schema_name, - db_path=path, - motherduck_token=motherduck_api_key, - ) - processor._ensure_schema_exists() - - table_name = processor.normalizer.normalize(stream_name) - if configured_stream.destination_sync_mode == DestinationSyncMode.overwrite: - # delete the tables - logger.info(f"Dropping tables for overwrite: {table_name}") - - processor._drop_temp_table(table_name, if_exists=True) - - # Get the SQL column definitions - sql_columns = processor._get_sql_column_definitions(stream_name) - column_definition_str = ",\n ".join( - f"{self._quote_identifier(column_name)} {sql_type}" for column_name, sql_type in sql_columns.items() - ) - - # create the table if needed - catalog_provider = CatalogProvider(configured_catalog) - primary_keys = catalog_provider.get_primary_keys(stream_name) - processor._create_table_if_not_exists( - table_name=table_name, - column_definition_str=column_definition_str, - primary_keys=primary_keys, - ) - - processor._ensure_compatible_table_schema(stream_name=stream_name, table_name=table_name) + processor.prepare_stream_table(stream_name=configured_stream.stream.name, sync_mode=configured_stream.destination_sync_mode) buffer: dict[str, dict[str, list[Any]]] = defaultdict(lambda: defaultdict(list)) for message in input_messages: @@ -178,7 +152,7 @@ def write( continue # add to buffer record_meta: dict[str, str] = {} - for column_name in sql_columns: + for column_name in processor._get_sql_column_definitions(stream_name): if column_name in data: buffer[stream_name][column_name].append(data[column_name]) elif column_name not in AB_INTERNAL_COLUMNS: diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py index 3f3f1a5ed319..ae4f4871c8e2 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py @@ -263,6 +263,36 @@ def _drop_duplicates(self, table_name: str, stream_name: str) -> str: return new_table_name return table_name + def _ensure_table_exists(self, stream_name: str, table_name: str, sync_mode: DestinationSyncMode) -> None: + if sync_mode == DestinationSyncMode.overwrite: + # delete the tables + logger.info(f"Dropping tables for overwrite: {table_name}") + + self._drop_temp_table(table_name, if_exists=True) + + # Get the SQL column definitions + sql_columns = self._get_sql_column_definitions(stream_name) + column_definition_str = ",\n ".join( + f"{self._quote_identifier(column_name)} {sql_type}" for column_name, sql_type in sql_columns.items() + ) + + # create the table if needed + primary_keys = self.catalog_provider.get_primary_keys(stream_name) + self._create_table_if_not_exists( + table_name=table_name, + column_definition_str=column_definition_str, + primary_keys=primary_keys, + ) + + def prepare_stream_table(self, stream_name: str, sync_mode: DestinationSyncMode) -> None: + """ + Ensure schema and table exist, create any missing columns + """ + self._ensure_schema_exists() + table_name = self.normalizer.normalize(stream_name) + self._ensure_table_exists(stream_name=stream_name, table_name=table_name, sync_mode=sync_mode) + self._ensure_compatible_table_schema(stream_name=stream_name, table_name=table_name) + def write_stream_data_from_buffer( self, buffer: Dict[str, Dict[str, List[Any]]], diff --git a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py index 41d3875996ab..606a93635d6e 100644 --- a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py +++ b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py @@ -98,6 +98,11 @@ def test_table_name() -> str: return f"airbyte_integration_{rand_string}" +@pytest.fixture(scope="module") +def other_test_table_name(test_table_name) -> str: + return test_table_name + "_other" + + @pytest.fixture def test_large_table_name() -> str: letters = string.ascii_lowercase @@ -117,11 +122,25 @@ def table_schema() -> str: return schema +@pytest.fixture +def other_table_schema() -> str: + schema = { + "type": "object", + "properties": { + "key3": {"type": ["null", "string"]}, + "key4": {"type": ["null", "string"]}, + }, + } + return schema + + @pytest.fixture def configured_catalogue( test_table_name: str, + other_test_table_name: str, test_large_table_name: str, table_schema: str, + other_table_schema: str, ) -> ConfiguredAirbyteCatalog: append_stream = ConfiguredAirbyteStream( stream=AirbyteStream( @@ -133,6 +152,16 @@ def configured_catalogue( destination_sync_mode=DestinationSyncMode.append, primary_key=[["key1"]], ) + other_append_stream = ConfiguredAirbyteStream( + stream=AirbyteStream( + name=other_test_table_name, + json_schema=other_table_schema, + supported_sync_modes=[SyncMode.full_refresh, SyncMode.incremental], + ), + sync_mode=SyncMode.incremental, + destination_sync_mode=DestinationSyncMode.append, + primary_key=[["key3"]], + ) append_stream_large = ConfiguredAirbyteStream( stream=AirbyteStream( name=test_large_table_name, @@ -143,7 +172,7 @@ def configured_catalogue( destination_sync_mode=DestinationSyncMode.append, primary_key=[["key1"]], ) - return ConfiguredAirbyteCatalog(streams=[append_stream, append_stream_large]) + return ConfiguredAirbyteCatalog(streams=[append_stream, other_append_stream, append_stream_large]) @pytest.fixture @@ -227,6 +256,34 @@ def airbyte_message3(): ) +@pytest.fixture +def airbyte_message4(other_test_table_name: str): + fake = Faker() + Faker.seed(0) + return AirbyteMessage( + type=Type.RECORD, + record=AirbyteRecordMessage( + stream=other_test_table_name, + data={"key3": fake.unique.first_name(), "key4": str(fake.ssn())}, + emitted_at=int(datetime.now().timestamp()) * 1000, + ), + ) + + +@pytest.fixture +def airbyte_message5(other_test_table_name: str): + fake = Faker() + Faker.seed(1) + return AirbyteMessage( + type=Type.RECORD, + record=AirbyteRecordMessage( + stream=other_test_table_name, + data={"key3": fake.unique.first_name(), "key4": str(fake.ssn())}, + emitted_at=int(datetime.now().timestamp()) * 1000, + ), + ) + + @pytest.mark.disable_autouse def test_check_fails(invalid_config, request): destination = DestinationMotherDuck() @@ -254,14 +311,23 @@ def test_write( airbyte_message1: AirbyteMessage, airbyte_message2: AirbyteMessage, airbyte_message3: AirbyteMessage, + airbyte_message4: AirbyteMessage, + airbyte_message5: AirbyteMessage, test_table_name: str, test_schema_name: str, + test_large_table_name: str, ): destination = DestinationMotherDuck() generator = destination.write( config, configured_catalogue, - [airbyte_message1, airbyte_message2, airbyte_message3], + [ + airbyte_message1, + airbyte_message2, + airbyte_message3, + airbyte_message4, + airbyte_message5 + ], ) result = list(generator) diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index 87f2b9733b6e..85d54c631776 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index 75a3578772bd..150b34998b81 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-motherduck" -version = "0.1.6" +version = "0.1.7" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index 5be5a320050a..6a6348aab910 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.7 | 2024-10-29 | [47706](https://github.com/airbytehq/airbyte/pull/47706) | Fix bug: incorrect column names were used to create new stream table when using multiple streams. | | 0.1.6 | 2024-10-29 | [47821](https://github.com/airbytehq/airbyte/pull/47821) | Update dependencies | | 0.1.5 | 2024-10-28 | [47694](https://github.com/airbytehq/airbyte/pull/47694) | Resolve write failures, move processor classes into the connector. | | 0.1.4 | 2024-10-28 | [47688](https://github.com/airbytehq/airbyte/pull/47688) | Use new destination table name format, explicitly insert PyArrow table columns by name and add debug info for column mismatches. | From 0b4a8e3e7d0f811684aee41f3da3744f6ca25d44 Mon Sep 17 00:00:00 2001 From: Brian Lai <51336873+brianjlai@users.noreply.github.com> Date: Tue, 29 Oct 2024 13:16:34 -0400 Subject: [PATCH 385/808] =?UTF-8?q?=F0=9F=90=9B=20[source-chargebee]=20Upg?= =?UTF-8?q?rade=20CDK=20version=20to=20yield=20parents=20more=20frequently?= =?UTF-8?q?=20for=20substreams=20(#47387)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chargebee/metadata.yaml | 2 +- .../connectors/source-chargebee/poetry.lock | 270 +++++++++--------- .../source-chargebee/pyproject.toml | 2 +- .../source_chargebee/components.py | 2 +- docs/integrations/sources/chargebee.md | 85 +++--- 5 files changed, 182 insertions(+), 179 deletions(-) diff --git a/airbyte-integrations/connectors/source-chargebee/metadata.yaml b/airbyte-integrations/connectors/source-chargebee/metadata.yaml index 619a193727e2..32042e791341 100644 --- a/airbyte-integrations/connectors/source-chargebee/metadata.yaml +++ b/airbyte-integrations/connectors/source-chargebee/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 686473f1-76d9-4994-9cc7-9b13da46147c - dockerImageTag: 0.6.16 + dockerImageTag: 0.6.17 dockerRepository: airbyte/source-chargebee documentationUrl: https://docs.airbyte.com/integrations/sources/chargebee githubIssueLabel: source-chargebee diff --git a/airbyte-integrations/connectors/source-chargebee/poetry.lock b/airbyte-integrations/connectors/source-chargebee/poetry.lock index 7a417761fb23..26e63325f7dd 100644 --- a/airbyte-integrations/connectors/source-chargebee/poetry.lock +++ b/airbyte-integrations/connectors/source-chargebee/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "5.13.0" +version = "5.16.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.13.0-py3-none-any.whl", hash = "sha256:b26c99631e797c0bdb8373a6a05c81bf62b7d7397ca41b6ee05702d1013bd389"}, - {file = "airbyte_cdk-5.13.0.tar.gz", hash = "sha256:ab5799a238366dff61a8cded347b02deb63818513af4e61e2d1a51608a2280df"}, + {file = "airbyte_cdk-5.16.0-py3-none-any.whl", hash = "sha256:71f909ffc489e3c20ee2ee8a307fe30035bc3f62b221951ede1f2063b76b49a9"}, + {file = "airbyte_cdk-5.16.0.tar.gz", hash = "sha256:1f214a93c3ec20c047d13c4612de0cdaf76fb87e8f312fd7a8ea1e216ad1794a"}, ] [package.dependencies] @@ -43,6 +43,7 @@ xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -69,13 +70,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +87,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -742,13 +743,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -760,72 +761,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -917,68 +918,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1725,13 +1727,13 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-chargebee/pyproject.toml b/airbyte-integrations/connectors/source-chargebee/pyproject.toml index 69e4bab0648c..ccee2fe59ffa 100644 --- a/airbyte-integrations/connectors/source-chargebee/pyproject.toml +++ b/airbyte-integrations/connectors/source-chargebee/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.16" +version = "0.6.17" name = "source-chargebee" description = "Source implementation for Chargebee." authors = [ "Airbyte ",] diff --git a/airbyte-integrations/connectors/source-chargebee/source_chargebee/components.py b/airbyte-integrations/connectors/source-chargebee/source_chargebee/components.py index e5ab3b9fc412..0f05242ec89e 100644 --- a/airbyte-integrations/connectors/source-chargebee/source_chargebee/components.py +++ b/airbyte-integrations/connectors/source-chargebee/source_chargebee/components.py @@ -214,7 +214,7 @@ def _get_request_option(self, option_type: RequestOptionType, stream_slice: Stre return {} def get_stream_state(self) -> StreamState: - return self._state + return {**self._state} def select_state(self, stream_slice: Optional[StreamSlice] = None) -> Optional[StreamState]: return self.get_stream_state() diff --git a/docs/integrations/sources/chargebee.md b/docs/integrations/sources/chargebee.md index eab215b4776e..4f6169698e9b 100644 --- a/docs/integrations/sources/chargebee.md +++ b/docs/integrations/sources/chargebee.md @@ -104,48 +104,49 @@ The Chargebee connector should not run into [Chargebee API](https://apidocs.char | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------| -| 0.6.16 | 2024-10-12 | [46846](https://github.com/airbytehq/airbyte/pull/46846) | Update dependencies | -| 0.6.15 | 2024-10-05 | [46478](https://github.com/airbytehq/airbyte/pull/46478) | Update dependencies | -| 0.6.14 | 2024-10-03 | [46343](https://github.com/airbytehq/airbyte/pull/46343) | Added `incremental dependency` for substreams with `Incremental` parent streams | -| 0.6.13 | 2024-10-01 | [46294](https://github.com/airbytehq/airbyte/pull/46294) | Update CDK version to `^5`, increased the `maxSecondsBetweenMessages` to 6 hours | -| 0.6.12 | 2024-09-28 | [46169](https://github.com/airbytehq/airbyte/pull/46169) | Update dependencies | -| 0.6.11 | 2024-09-21 | [45805](https://github.com/airbytehq/airbyte/pull/45805) | Update dependencies | -| 0.6.10 | 2024-09-14 | [45254](https://github.com/airbytehq/airbyte/pull/45254) | Update dependencies | -| 0.6.9 | 2024-08-31 | [45028](https://github.com/airbytehq/airbyte/pull/45028) | Update dependencies | -| 0.6.8 | 2024-08-24 | [44662](https://github.com/airbytehq/airbyte/pull/44662) | Update dependencies | -| 0.6.7 | 2024-08-17 | [44265](https://github.com/airbytehq/airbyte/pull/44265) | Update dependencies | -| 0.6.6 | 2024-08-10 | [43640](https://github.com/airbytehq/airbyte/pull/43640) | Update dependencies | -| 0.6.5 | 2024-08-03 | [43081](https://github.com/airbytehq/airbyte/pull/43081) | Update dependencies | -| 0.6.4 | 2024-07-27 | [42626](https://github.com/airbytehq/airbyte/pull/42626) | Update dependencies | -| 0.6.3 | 2024-07-20 | [42296](https://github.com/airbytehq/airbyte/pull/42296) | Update dependencies | -| 0.6.2 | 2024-07-13 | [41691](https://github.com/airbytehq/airbyte/pull/41691) | Update dependencies | -| 0.6.1 | 2024-07-10 | [41113](https://github.com/airbytehq/airbyte/pull/41113) | Update dependencies | -| 0.6.0 | 2024-07-10 | [39217](https://github.com/airbytehq/airbyte/pull/39217) | Adds new stream `subscription_with_scheduled_changes` | -| 0.5.5 | 2024-07-06 | [40965](https://github.com/airbytehq/airbyte/pull/40965) | Update dependencies | -| 0.5.4 | 2024-06-25 | [40332](https://github.com/airbytehq/airbyte/pull/40332) | Update dependencies | -| 0.5.3 | 2024-06-23 | [40074](https://github.com/airbytehq/airbyte/pull/40074) | Update dependencies | -| 0.5.2 | 2024-06-06 | [39217](https://github.com/airbytehq/airbyte/pull/39217) | [autopull] Upgrade base image to v1.2.2 | -| 0.5.1 | 2024-04-24 | [36633](https://github.com/airbytehq/airbyte/pull/36633) | Schema descriptions and CDK 0.80.0 | -| 0.5.0 | 2024-03-28 | [36518](https://github.com/airbytehq/airbyte/pull/36518) | Updates CDK to ^0, updates IncrementalSingleSliceCursor | -| 0.4.2 | 2024-03-14 | [36037](https://github.com/airbytehq/airbyte/pull/36037) | Adds fields: `coupon_constraints` to `coupon` stream, `billing_month` to `customer stream`, and `error_detail` to `transaction` stream schemas | -| 0.4.1 | 2024-03-13 | [35509](https://github.com/airbytehq/airbyte/pull/35509) | Updates CDK version to latest (0.67.1), updates `site_migration_detail` record filtering | -| 0.4.0 | 2024-02-12 | [34053](https://github.com/airbytehq/airbyte/pull/34053) | Add missing fields to and cleans up schemas, adds incremental support for `gift`, `site_migration_detail`, and `unbilled_charge` streams | -| 0.3.1 | 2024-02-12 | [35169](https://github.com/airbytehq/airbyte/pull/35169) | Manage dependencies with Poetry | -| 0.3.0 | 2023-12-26 | [33696](https://github.com/airbytehq/airbyte/pull/33696) | Add new stream, add fields to existing streams | -| 0.2.6 | 2023-12-19 | [32100](https://github.com/airbytehq/airbyte/pull/32100) | Add new fields in streams | -| 0.2.5 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image | -| 0.2.4 | 2023-08-01 | [28905](https://github.com/airbytehq/airbyte/pull/28905) | Updated the connector to use latest CDK version | -| 0.2.3 | 2023-03-22 | [24370](https://github.com/airbytehq/airbyte/pull/24370) | Ignore 404 errors for `Contact` stream | -| 0.2.2 | 2023-02-17 | [21688](https://github.com/airbytehq/airbyte/pull/21688) | Migrate to CDK beta 0.29; fix schemas | -| 0.2.1 | 2023-02-17 | [23207](https://github.com/airbytehq/airbyte/pull/23207) | Edited stream schemas to get rid of unnecessary `enum` | -| 0.2.0 | 2023-01-21 | [21688](https://github.com/airbytehq/airbyte/pull/21688) | Migrate to YAML; add new streams | -| 0.1.16 | 2022-10-06 | [17661](https://github.com/airbytehq/airbyte/pull/17661) | Make `transaction` stream to be consistent with `S3` by using type transformer | -| 0.1.15 | 2022-09-28 | [17304](https://github.com/airbytehq/airbyte/pull/17304) | Migrate to per-stream state | -| 0.1.14 | 2022-09-23 | [17056](https://github.com/airbytehq/airbyte/pull/17056) | Add "custom fields" to the relevant Chargebee source data streams | -| 0.1.13 | 2022-08-18 | [15743](https://github.com/airbytehq/airbyte/pull/15743) | Fix transaction `exchange_rate` field type | -| 0.1.12 | 2022-07-13 | [14672](https://github.com/airbytehq/airbyte/pull/14672) | Fix transaction sort by | -| 0.1.11 | 2022-03-03 | [10827](https://github.com/airbytehq/airbyte/pull/10827) | Fix Credit Note stream | -| 0.1.10 | 2022-03-02 | [10795](https://github.com/airbytehq/airbyte/pull/10795) | Add support for Credit Note stream | +| 0.6.17 | 2024-10-28 | [46846](https://github.com/airbytehq/airbyte/pull/47387) | Update CDK dependencies to yield parent records more frequently | +| 0.6.16 | 2024-10-12 | [46846](https://github.com/airbytehq/airbyte/pull/46846) | Update dependencies | +| 0.6.15 | 2024-10-05 | [46478](https://github.com/airbytehq/airbyte/pull/46478) | Update dependencies | +| 0.6.14 | 2024-10-03 | [46343](https://github.com/airbytehq/airbyte/pull/46343) | Added `incremental dependency` for substreams with `Incremental` parent streams | +| 0.6.13 | 2024-10-01 | [46294](https://github.com/airbytehq/airbyte/pull/46294) | Update CDK version to `^5`, increased the `maxSecondsBetweenMessages` to 6 hours | +| 0.6.12 | 2024-09-28 | [46169](https://github.com/airbytehq/airbyte/pull/46169) | Update dependencies | +| 0.6.11 | 2024-09-21 | [45805](https://github.com/airbytehq/airbyte/pull/45805) | Update dependencies | +| 0.6.10 | 2024-09-14 | [45254](https://github.com/airbytehq/airbyte/pull/45254) | Update dependencies | +| 0.6.9 | 2024-08-31 | [45028](https://github.com/airbytehq/airbyte/pull/45028) | Update dependencies | +| 0.6.8 | 2024-08-24 | [44662](https://github.com/airbytehq/airbyte/pull/44662) | Update dependencies | +| 0.6.7 | 2024-08-17 | [44265](https://github.com/airbytehq/airbyte/pull/44265) | Update dependencies | +| 0.6.6 | 2024-08-10 | [43640](https://github.com/airbytehq/airbyte/pull/43640) | Update dependencies | +| 0.6.5 | 2024-08-03 | [43081](https://github.com/airbytehq/airbyte/pull/43081) | Update dependencies | +| 0.6.4 | 2024-07-27 | [42626](https://github.com/airbytehq/airbyte/pull/42626) | Update dependencies | +| 0.6.3 | 2024-07-20 | [42296](https://github.com/airbytehq/airbyte/pull/42296) | Update dependencies | +| 0.6.2 | 2024-07-13 | [41691](https://github.com/airbytehq/airbyte/pull/41691) | Update dependencies | +| 0.6.1 | 2024-07-10 | [41113](https://github.com/airbytehq/airbyte/pull/41113) | Update dependencies | +| 0.6.0 | 2024-07-10 | [39217](https://github.com/airbytehq/airbyte/pull/39217) | Adds new stream `subscription_with_scheduled_changes` | +| 0.5.5 | 2024-07-06 | [40965](https://github.com/airbytehq/airbyte/pull/40965) | Update dependencies | +| 0.5.4 | 2024-06-25 | [40332](https://github.com/airbytehq/airbyte/pull/40332) | Update dependencies | +| 0.5.3 | 2024-06-23 | [40074](https://github.com/airbytehq/airbyte/pull/40074) | Update dependencies | +| 0.5.2 | 2024-06-06 | [39217](https://github.com/airbytehq/airbyte/pull/39217) | [autopull] Upgrade base image to v1.2.2 | +| 0.5.1 | 2024-04-24 | [36633](https://github.com/airbytehq/airbyte/pull/36633) | Schema descriptions and CDK 0.80.0 | +| 0.5.0 | 2024-03-28 | [36518](https://github.com/airbytehq/airbyte/pull/36518) | Updates CDK to ^0, updates IncrementalSingleSliceCursor | +| 0.4.2 | 2024-03-14 | [36037](https://github.com/airbytehq/airbyte/pull/36037) | Adds fields: `coupon_constraints` to `coupon` stream, `billing_month` to `customer stream`, and `error_detail` to `transaction` stream schemas | +| 0.4.1 | 2024-03-13 | [35509](https://github.com/airbytehq/airbyte/pull/35509) | Updates CDK version to latest (0.67.1), updates `site_migration_detail` record filtering | +| 0.4.0 | 2024-02-12 | [34053](https://github.com/airbytehq/airbyte/pull/34053) | Add missing fields to and cleans up schemas, adds incremental support for `gift`, `site_migration_detail`, and `unbilled_charge` streams | +| 0.3.1 | 2024-02-12 | [35169](https://github.com/airbytehq/airbyte/pull/35169) | Manage dependencies with Poetry | +| 0.3.0 | 2023-12-26 | [33696](https://github.com/airbytehq/airbyte/pull/33696) | Add new stream, add fields to existing streams | +| 0.2.6 | 2023-12-19 | [32100](https://github.com/airbytehq/airbyte/pull/32100) | Add new fields in streams | +| 0.2.5 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image | +| 0.2.4 | 2023-08-01 | [28905](https://github.com/airbytehq/airbyte/pull/28905) | Updated the connector to use latest CDK version | +| 0.2.3 | 2023-03-22 | [24370](https://github.com/airbytehq/airbyte/pull/24370) | Ignore 404 errors for `Contact` stream | +| 0.2.2 | 2023-02-17 | [21688](https://github.com/airbytehq/airbyte/pull/21688) | Migrate to CDK beta 0.29; fix schemas | +| 0.2.1 | 2023-02-17 | [23207](https://github.com/airbytehq/airbyte/pull/23207) | Edited stream schemas to get rid of unnecessary `enum` | +| 0.2.0 | 2023-01-21 | [21688](https://github.com/airbytehq/airbyte/pull/21688) | Migrate to YAML; add new streams | +| 0.1.16 | 2022-10-06 | [17661](https://github.com/airbytehq/airbyte/pull/17661) | Make `transaction` stream to be consistent with `S3` by using type transformer | +| 0.1.15 | 2022-09-28 | [17304](https://github.com/airbytehq/airbyte/pull/17304) | Migrate to per-stream state | +| 0.1.14 | 2022-09-23 | [17056](https://github.com/airbytehq/airbyte/pull/17056) | Add "custom fields" to the relevant Chargebee source data streams | +| 0.1.13 | 2022-08-18 | [15743](https://github.com/airbytehq/airbyte/pull/15743) | Fix transaction `exchange_rate` field type | +| 0.1.12 | 2022-07-13 | [14672](https://github.com/airbytehq/airbyte/pull/14672) | Fix transaction sort by | +| 0.1.11 | 2022-03-03 | [10827](https://github.com/airbytehq/airbyte/pull/10827) | Fix Credit Note stream | +| 0.1.10 | 2022-03-02 | [10795](https://github.com/airbytehq/airbyte/pull/10795) | Add support for Credit Note stream | | 0.1.9 | 2022-0224 | [10312](https://github.com/airbytehq/airbyte/pull/10312) | Add support for Transaction Stream | | 0.1.8 | 2022-02-22 | [10366](https://github.com/airbytehq/airbyte/pull/10366) | Fix broken `coupon` stream + add unit tests | | 0.1.7 | 2022-02-14 | [10269](https://github.com/airbytehq/airbyte/pull/10269) | Add support for Coupon stream | From 43028cf58f08fc75f2af2ac37102692291cfe6c9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:09:52 +0200 Subject: [PATCH 386/808] =?UTF-8?q?=F0=9F=90=99=20source-polygon-stock-api?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47901)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-polygon-stock-api/metadata.yaml | 4 ++-- docs/integrations/sources/polygon-stock-api.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml b/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml index 8f95998f4eec..df39c7b97fd1 100644 --- a/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.polygon.io connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 5807d72f-0abc-49f9-8fa5-ae820007032b - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-polygon-stock-api documentationUrl: https://docs.airbyte.com/integrations/sources/polygon-stock-api githubIssueLabel: source-polygon-stock-api diff --git a/docs/integrations/sources/polygon-stock-api.md b/docs/integrations/sources/polygon-stock-api.md index 174c2b55b4d1..883ae0d8054f 100644 --- a/docs/integrations/sources/polygon-stock-api.md +++ b/docs/integrations/sources/polygon-stock-api.md @@ -53,6 +53,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.2 | 2024-10-29 | [47901](https://github.com/airbytehq/airbyte/pull/47901) | Update dependencies | | 0.2.1 | 2024-10-28 | [47496](https://github.com/airbytehq/airbyte/pull/47496) | Update dependencies | | 0.2.0 | 2024-08-19 | [44408](https://github.com/airbytehq/airbyte/pull/44408) | Refactor connector to manifest-only format | | 0.1.17 | 2024-08-17 | [44245](https://github.com/airbytehq/airbyte/pull/44245) | Update dependencies | From 46d2e40ea79f342127f89bb187343830f54434a4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:09:58 +0200 Subject: [PATCH 387/808] =?UTF-8?q?=F0=9F=90=99=20source-flexport:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47898)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-flexport/metadata.yaml | 4 ++-- docs/integrations/sources/flexport.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-flexport/metadata.yaml b/airbyte-integrations/connectors/source-flexport/metadata.yaml index f8d73bff4edf..b988f18d5145 100644 --- a/airbyte-integrations/connectors/source-flexport/metadata.yaml +++ b/airbyte-integrations/connectors/source-flexport/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: f95337f1-2ad1-4baf-922f-2ca9152de630 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-flexport githubIssueLabel: source-flexport icon: flexport.svg @@ -32,5 +32,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/flexport.md b/docs/integrations/sources/flexport.md index 767eec60de7b..641bac7a6673 100644 --- a/docs/integrations/sources/flexport.md +++ b/docs/integrations/sources/flexport.md @@ -49,6 +49,7 @@ Authentication uses a pre-created API token which can be [created in the UI](htt | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------ | +| 0.3.2 | 2024-10-29 | [47898](https://github.com/airbytehq/airbyte/pull/47898) | Update dependencies | | 0.3.1 | 2024-10-28 | [47580](https://github.com/airbytehq/airbyte/pull/47580) | Update dependencies | | 0.3.0 | 2024-10-05 | [46416](https://github.com/airbytehq/airbyte/pull/46416) | Migrate to Manifest-only CDK | | 0.2.20 | 2024-10-05 | [46455](https://github.com/airbytehq/airbyte/pull/46455) | Update dependencies | From 67d11cb17da947d98f4c882309fc2e385cfedf69 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:01 +0200 Subject: [PATCH 388/808] =?UTF-8?q?=F0=9F=90=99=20source-care-quality-comm?= =?UTF-8?q?ission:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47897)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-care-quality-commission/metadata.yaml | 4 ++-- docs/integrations/sources/care-quality-commission.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml b/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml index ee2a6c5b8aaf..d8c7d689cf67 100644 --- a/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml +++ b/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-care-quality-commission connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 2366b7bf-b83e-471c-b4a0-1405887fdf6e - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-care-quality-commission githubIssueLabel: source-care-quality-commission icon: icon.svg diff --git a/docs/integrations/sources/care-quality-commission.md b/docs/integrations/sources/care-quality-commission.md index 5f5248068b5b..26c778d054cd 100644 --- a/docs/integrations/sources/care-quality-commission.md +++ b/docs/integrations/sources/care-quality-commission.md @@ -25,6 +25,7 @@ https://www.cqc.org.uk/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| +| 0.0.3 | 2024-10-29 | [47897](https://github.com/airbytehq/airbyte/pull/47897) | Update dependencies | | 0.0.2 | 2024-10-28 | [47671](https://github.com/airbytehq/airbyte/pull/47671) | Update dependencies | | 0.0.1 | 2024-10-02 | [46315](https://github.com/airbytehq/airbyte/pull/46315) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | From 1481cad7dfc554b81445b5b1ddc966516cb6b79b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:06 +0200 Subject: [PATCH 389/808] =?UTF-8?q?=F0=9F=90=99=20source-emailoctopus:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47896)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-emailoctopus/metadata.yaml | 4 ++-- docs/integrations/sources/emailoctopus.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml b/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml index b33c534319b9..3ecba0373a30 100644 --- a/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml +++ b/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 46b25e70-c980-4590-a811-8deaf50ee09f - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-emailoctopus documentationUrl: https://docs.airbyte.com/integrations/sources/emailoctopus githubIssueLabel: source-emailoctopus diff --git a/docs/integrations/sources/emailoctopus.md b/docs/integrations/sources/emailoctopus.md index 1c30c9919301..7454c73c45d7 100644 --- a/docs/integrations/sources/emailoctopus.md +++ b/docs/integrations/sources/emailoctopus.md @@ -28,6 +28,7 @@ No documented strict rate limit. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.3 | 2024-10-29 | [47896](https://github.com/airbytehq/airbyte/pull/47896) | Update dependencies | | 0.2.2 | 2024-10-28 | [47450](https://github.com/airbytehq/airbyte/pull/47450) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44152](https://github.com/airbytehq/airbyte/pull/44152) | Refactor connector to manifest-only format | From a39840d46c410a7a53db637fe9d704e1e7fe87c3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:10 +0200 Subject: [PATCH 390/808] =?UTF-8?q?=F0=9F=90=99=20source-k6-cloud:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47895)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-k6-cloud/metadata.yaml | 4 ++-- docs/integrations/sources/k6-cloud.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml b/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml index 593344838091..1ec903c7b85a 100644 --- a/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml +++ b/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: e300ece7-b073-43a3-852e-8aff36a57f13 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-k6-cloud documentationUrl: https://docs.airbyte.com/integrations/sources/k6-cloud githubIssueLabel: source-k6-cloud diff --git a/docs/integrations/sources/k6-cloud.md b/docs/integrations/sources/k6-cloud.md index 944ba73254d6..35f61edbb1f2 100644 --- a/docs/integrations/sources/k6-cloud.md +++ b/docs/integrations/sources/k6-cloud.md @@ -32,6 +32,7 @@ This source can sync data from the [K6 Cloud API](https://developers.k6.io). At | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.3 | 2024-10-29 | [47895](https://github.com/airbytehq/airbyte/pull/47895) | Update dependencies | | 0.2.2 | 2024-10-28 | [47454](https://github.com/airbytehq/airbyte/pull/47454) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44137](https://github.com/airbytehq/airbyte/pull/44137) | Refactor connector to manifest-only format | From 97e6f3936ef623388c6b9d5c3b292cd200a7980e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:13 +0200 Subject: [PATCH 391/808] =?UTF-8?q?=F0=9F=90=99=20source-facebook-marketin?= =?UTF-8?q?g:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47894)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-facebook-marketing/metadata.yaml | 2 +- .../source-facebook-marketing/poetry.lock | 178 +++++++++--------- .../source-facebook-marketing/pyproject.toml | 2 +- .../sources/facebook-marketing.md | 1 + 4 files changed, 92 insertions(+), 91 deletions(-) diff --git a/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml b/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml index c632392d090e..c675cda30b89 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: e7778cfc-e97c-4458-9ecb-b4f2bba8946c - dockerImageTag: 3.3.17 + dockerImageTag: 3.3.18 dockerRepository: airbyte/source-facebook-marketing documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-marketing githubIssueLabel: source-facebook-marketing diff --git a/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock b/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock index 5a4f1d39b6c2..bb52418e1d79 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock +++ b/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock @@ -2230,23 +2230,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -2475,93 +2475,93 @@ files = [ [[package]] name = "yarl" -version = "1.16.0" +version = "1.17.0" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32468f41242d72b87ab793a86d92f885355bcf35b3355aa650bfa846a5c60058"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:234f3a3032b505b90e65b5bc6652c2329ea7ea8855d8de61e1642b74b4ee65d2"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a0296040e5cddf074c7f5af4a60f3fc42c0237440df7bcf5183be5f6c802ed5"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de6c14dd7c7c0badba48157474ea1f03ebee991530ba742d381b28d4f314d6f3"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b140e532fe0266003c936d017c1ac301e72ee4a3fd51784574c05f53718a55d8"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:019f5d58093402aa8f6661e60fd82a28746ad6d156f6c5336a70a39bd7b162b9"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c42998fd1cbeb53cd985bff0e4bc25fbe55fd6eb3a545a724c1012d69d5ec84"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7c30fb38c300fe8140df30a046a01769105e4cf4282567a29b5cdb635b66c4"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e49e0fd86c295e743fd5be69b8b0712f70a686bc79a16e5268386c2defacaade"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:b9ca7b9147eb1365c8bab03c003baa1300599575effad765e0b07dd3501ea9af"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:27e11db3f1e6a51081a981509f75617b09810529de508a181319193d320bc5c7"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8994c42f4ca25df5380ddf59f315c518c81df6a68fed5bb0c159c6cb6b92f120"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:542fa8e09a581bcdcbb30607c7224beff3fdfb598c798ccd28a8184ffc18b7eb"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2bd6a51010c7284d191b79d3b56e51a87d8e1c03b0902362945f15c3d50ed46b"}, - {file = "yarl-1.16.0-cp310-cp310-win32.whl", hash = "sha256:178ccb856e265174a79f59721031060f885aca428983e75c06f78aa24b91d929"}, - {file = "yarl-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe8bba2545427418efc1929c5c42852bdb4143eb8d0a46b09de88d1fe99258e7"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d8643975a0080f361639787415a038bfc32d29208a4bf6b783ab3075a20b1ef3"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:676d96bafc8c2d0039cea0cd3fd44cee7aa88b8185551a2bb93354668e8315c2"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9525f03269e64310416dbe6c68d3b23e5d34aaa8f47193a1c45ac568cecbc49"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b37d5ec034e668b22cf0ce1074d6c21fd2a08b90d11b1b73139b750a8b0dd97"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f32c4cb7386b41936894685f6e093c8dfaf0960124d91fe0ec29fe439e201d0"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b8e265a0545637492a7e12fd7038370d66c9375a61d88c5567d0e044ded9202"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:789a3423f28a5fff46fbd04e339863c169ece97c827b44de16e1a7a42bc915d2"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1d1f45e3e8d37c804dca99ab3cf4ab3ed2e7a62cd82542924b14c0a4f46d243"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:621280719c4c5dad4c1391160a9b88925bb8b0ff6a7d5af3224643024871675f"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed097b26f18a1f5ff05f661dc36528c5f6735ba4ce8c9645e83b064665131349"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2f1fe2b2e3ee418862f5ebc0c0083c97f6f6625781382f828f6d4e9b614eba9b"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:87dd10bc0618991c66cee0cc65fa74a45f4ecb13bceec3c62d78ad2e42b27a16"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4199db024b58a8abb2cfcedac7b1292c3ad421684571aeb622a02f242280e8d6"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:99a9dcd4b71dd5f5f949737ab3f356cfc058c709b4f49833aeffedc2652dac56"}, - {file = "yarl-1.16.0-cp311-cp311-win32.whl", hash = "sha256:a9394c65ae0ed95679717d391c862dece9afacd8fa311683fc8b4362ce8a410c"}, - {file = "yarl-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b9101f528ae0f8f65ac9d64dda2bb0627de8a50344b2f582779f32fda747c1d"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4ffb7c129707dd76ced0a4a4128ff452cecf0b0e929f2668ea05a371d9e5c104"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1a5e9d8ce1185723419c487758d81ac2bde693711947032cce600ca7c9cda7d6"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d743e3118b2640cef7768ea955378c3536482d95550222f908f392167fe62059"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26768342f256e6e3c37533bf9433f5f15f3e59e3c14b2409098291b3efaceacb"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1b0796168b953bca6600c5f97f5ed407479889a36ad7d17183366260f29a6b9"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858728086914f3a407aa7979cab743bbda1fe2bdf39ffcd991469a370dd7414d"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5570e6d47bcb03215baf4c9ad7bf7c013e56285d9d35013541f9ac2b372593e7"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66ea8311422a7ba1fc79b4c42c2baa10566469fe5a78500d4e7754d6e6db8724"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:649bddcedee692ee8a9b7b6e38582cb4062dc4253de9711568e5620d8707c2a3"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a91654adb7643cb21b46f04244c5a315a440dcad63213033826549fa2435f71"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b439cae82034ade094526a8f692b9a2b5ee936452de5e4c5f0f6c48df23f8604"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:571f781ae8ac463ce30bacebfaef2c6581543776d5970b2372fbe31d7bf31a07"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:aa7943f04f36d6cafc0cf53ea89824ac2c37acbdb4b316a654176ab8ffd0f968"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1a5cf32539373ff39d97723e39a9283a7277cbf1224f7aef0c56c9598b6486c3"}, - {file = "yarl-1.16.0-cp312-cp312-win32.whl", hash = "sha256:a5b6c09b9b4253d6a208b0f4a2f9206e511ec68dce9198e0fbec4f160137aa67"}, - {file = "yarl-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:1208ca14eed2fda324042adf8d6c0adf4a31522fa95e0929027cd487875f0240"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5ace0177520bd4caa99295a9b6fb831d0e9a57d8e0501a22ffaa61b4c024283"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7118bdb5e3ed81acaa2095cba7ec02a0fe74b52a16ab9f9ac8e28e53ee299732"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38fec8a2a94c58bd47c9a50a45d321ab2285ad133adefbbadf3012c054b7e656"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8791d66d81ee45866a7bb15a517b01a2bcf583a18ebf5d72a84e6064c417e64b"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cf936ba67bc6c734f3aa1c01391da74ab7fc046a9f8bbfa230b8393b90cf472"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1aab176dd55b59f77a63b27cffaca67d29987d91a5b615cbead41331e6b7428"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d0759004c08abd5d1b81300a91d18c8577c6389300bed1c7c11675105a44d"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bc22e00edeb068f71967ab99081e9406cd56dbed864fc3a8259442999d71552"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:35b4f7842154176523e0a63c9b871168c69b98065d05a4f637fce342a6a2693a"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7ace71c4b7a0c41f317ae24be62bb61e9d80838d38acb20e70697c625e71f120"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8f639e3f5795a6568aa4f7d2ac6057c757dcd187593679f035adbf12b892bb00"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e8be3aff14f0120ad049121322b107f8a759be76a6a62138322d4c8a337a9e2c"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:122d8e7986043d0549e9eb23c7fd23be078be4b70c9eb42a20052b3d3149c6f2"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0fd9c227990f609c165f56b46107d0bc34553fe0387818c42c02f77974402c36"}, - {file = "yarl-1.16.0-cp313-cp313-win32.whl", hash = "sha256:595ca5e943baed31d56b33b34736461a371c6ea0038d3baec399949dd628560b"}, - {file = "yarl-1.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:921b81b8d78f0e60242fb3db615ea3f368827a76af095d5a69f1c3366db3f596"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab2b2ac232110a1fdb0d3ffcd087783edd3d4a6ced432a1bf75caf7b7be70916"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f8713717a09acbfee7c47bfc5777e685539fefdd34fa72faf504c8be2f3df4e"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdcffe1dbcb4477d2b4202f63cd972d5baa155ff5a3d9e35801c46a415b7f71a"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a91217208306d82357c67daeef5162a41a28c8352dab7e16daa82e3718852a7"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ab3ed42c78275477ea8e917491365e9a9b69bb615cb46169020bd0aa5e2d6d3"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:707ae579ccb3262dfaef093e202b4c3fb23c3810e8df544b1111bd2401fd7b09"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7a852d1cd0b8d8b37fc9d7f8581152add917a98cfe2ea6e241878795f917ae"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3f1cc3d3d4dc574bebc9b387f6875e228ace5748a7c24f49d8f01ac1bc6c31b"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5ff96da263740779b0893d02b718293cc03400c3a208fc8d8cd79d9b0993e532"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:3d375a19ba2bfe320b6d873f3fb165313b002cef8b7cc0a368ad8b8a57453837"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:62c7da0ad93a07da048b500514ca47b759459ec41924143e2ddb5d7e20fd3db5"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:147b0fcd0ee33b4b5f6edfea80452d80e419e51b9a3f7a96ce98eaee145c1581"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:504e1fe1cc4f170195320eb033d2b0ccf5c6114ce5bf2f617535c01699479bca"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bdcf667a5dec12a48f669e485d70c54189f0639c2157b538a4cffd24a853624f"}, - {file = "yarl-1.16.0-cp39-cp39-win32.whl", hash = "sha256:e9951afe6557c75a71045148890052cb942689ee4c9ec29f5436240e1fcc73b7"}, - {file = "yarl-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d7aaa8ff95d0840e289423e7dc35696c2b058d635f945bf05b5cd633146b027"}, - {file = "yarl-1.16.0-py3-none-any.whl", hash = "sha256:e6980a558d8461230c457218bd6c92dfc1d10205548215c2c21d79dc8d0a96f3"}, - {file = "yarl-1.16.0.tar.gz", hash = "sha256:b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml b/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml index d219207639c9..e81362dd6c3c 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml +++ b/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.3.17" +version = "3.3.18" name = "source-facebook-marketing" description = "Source implementation for Facebook Marketing." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/facebook-marketing.md b/docs/integrations/sources/facebook-marketing.md index b43a5be053d7..921dca360424 100644 --- a/docs/integrations/sources/facebook-marketing.md +++ b/docs/integrations/sources/facebook-marketing.md @@ -269,6 +269,7 @@ This response indicates that the Facebook Graph API requires you to reduce the f | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 3.3.18 | 2024-10-29 | [47894](https://github.com/airbytehq/airbyte/pull/47894) | Update dependencies | | 3.3.17 | 2024-10-28 | [43787](https://github.com/airbytehq/airbyte/pull/43787) | Update dependencies | | 3.3.16 | 2024-07-15 | [46546](https://github.com/airbytehq/airbyte/pull/46546) | Raise exception on missing stream | | 3.3.15 | 2024-07-15 | [42562](https://github.com/airbytehq/airbyte/pull/42562) | Add friendly messages for "reduce fields" and "start date" errors | From d9f6cdaa3fc8b70c7bed948866b439de5dd161f1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:17 +0200 Subject: [PATCH 392/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-entra-i?= =?UTF-8?q?d:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47892)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-microsoft-entra-id/metadata.yaml | 4 ++-- docs/integrations/sources/microsoft-entra-id.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml index 6e911c68f2b2..7ad5790d6c55 100644 --- a/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-microsoft-entra-id connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 337930a3-778a-413e-99cf-e79a3fca1c74 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-microsoft-entra-id githubIssueLabel: source-microsoft-entra-id icon: icon.svg diff --git a/docs/integrations/sources/microsoft-entra-id.md b/docs/integrations/sources/microsoft-entra-id.md index 642c8f3ff04e..9e7241da066f 100644 --- a/docs/integrations/sources/microsoft-entra-id.md +++ b/docs/integrations/sources/microsoft-entra-id.md @@ -37,6 +37,7 @@ First of all you need to register an application in the Microsoft Entra Admin Ce | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47892](https://github.com/airbytehq/airbyte/pull/47892) | Update dependencies | | 0.0.2 | 2024-10-28 | [47554](https://github.com/airbytehq/airbyte/pull/47554) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 1565ae3be4299c479d2a49805748d936505808f1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:20 +0200 Subject: [PATCH 393/808] =?UTF-8?q?=F0=9F=90=99=20source-google-webfonts:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47891)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-google-webfonts/metadata.yaml | 4 ++-- docs/integrations/sources/google-webfonts.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml b/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml index 90ff01ab53a4..81c2cfb27d4d 100644 --- a/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: a68fbcde-b465-4ab3-b2a6-b0590a875835 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-google-webfonts documentationUrl: https://docs.airbyte.com/integrations/sources/google-webfonts githubIssueLabel: source-google-webfonts diff --git a/docs/integrations/sources/google-webfonts.md b/docs/integrations/sources/google-webfonts.md index ed55b721156a..b7f0c5f96a20 100644 --- a/docs/integrations/sources/google-webfonts.md +++ b/docs/integrations/sources/google-webfonts.md @@ -68,6 +68,7 @@ Google Webfont's [API reference](https://developers.google.com/fonts/docs/develo | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:--------------------------------------------------------------------------------| +| 0.2.2 | 2024-10-29 | [47891](https://github.com/airbytehq/airbyte/pull/47891) | Update dependencies | | 0.2.1 | 2024-10-28 | [47623](https://github.com/airbytehq/airbyte/pull/47623) | Update dependencies | | 0.2.0 | 2024-08-23 | [44615](https://github.com/airbytehq/airbyte/pull/44615) | Refactor connector to manifest-only format | | 0.1.16 | 2024-08-17 | [44279](https://github.com/airbytehq/airbyte/pull/44279) | Update dependencies | From 7e598662b6ea94763a6ce8dddcbb1026d6349f9e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:23 +0200 Subject: [PATCH 394/808] =?UTF-8?q?=F0=9F=90=99=20source-recharge:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47890)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recharge/metadata.yaml | 2 +- .../connectors/source-recharge/poetry.lock | 12 ++++++------ .../connectors/source-recharge/pyproject.toml | 2 +- docs/integrations/sources/recharge.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-recharge/metadata.yaml b/airbyte-integrations/connectors/source-recharge/metadata.yaml index c579f420a31d..cf7331178e17 100644 --- a/airbyte-integrations/connectors/source-recharge/metadata.yaml +++ b/airbyte-integrations/connectors/source-recharge/metadata.yaml @@ -7,7 +7,7 @@ data: connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 definitionId: 45d2e135-2ede-49e1-939f-3e3ec357a65e - dockerImageTag: 2.4.13 + dockerImageTag: 2.4.14 dockerRepository: airbyte/source-recharge githubIssueLabel: source-recharge icon: recharge.svg diff --git a/airbyte-integrations/connectors/source-recharge/poetry.lock b/airbyte-integrations/connectors/source-recharge/poetry.lock index 5e9551420881..85ebd0d56886 100644 --- a/airbyte-integrations/connectors/source-recharge/poetry.lock +++ b/airbyte-integrations/connectors/source-recharge/poetry.lock @@ -1527,23 +1527,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-recharge/pyproject.toml b/airbyte-integrations/connectors/source-recharge/pyproject.toml index eea1cd828a10..f2fc34540a9b 100644 --- a/airbyte-integrations/connectors/source-recharge/pyproject.toml +++ b/airbyte-integrations/connectors/source-recharge/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.4.13" +version = "2.4.14" name = "source-recharge" description = "Source implementation for Recharge." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/recharge.md b/docs/integrations/sources/recharge.md index 4fc57d201260..1a237d191a02 100644 --- a/docs/integrations/sources/recharge.md +++ b/docs/integrations/sources/recharge.md @@ -79,6 +79,7 @@ The Recharge connector should gracefully handle Recharge API limitations under n | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:-------------------------------------------------------------------------------------------------------------------------------| +| 2.4.14 | 2024-10-29 | [47890](https://github.com/airbytehq/airbyte/pull/47890) | Update dependencies | | 2.4.13 | 2024-10-28 | [47037](https://github.com/airbytehq/airbyte/pull/47037) | Update dependencies | | 2.4.12 | 2024-10-12 | [46797](https://github.com/airbytehq/airbyte/pull/46797) | Update dependencies | | 2.4.11 | 2024-10-05 | [46510](https://github.com/airbytehq/airbyte/pull/46510) | Update dependencies | From f36bf34e817f2f3a82617e1fe8ebc36c944d5567 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:26 +0200 Subject: [PATCH 395/808] =?UTF-8?q?=F0=9F=90=99=20destination-meilisearch:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47889)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-meilisearch/metadata.yaml | 2 +- .../connectors/destination-meilisearch/poetry.lock | 12 ++++++------ .../destination-meilisearch/pyproject.toml | 2 +- docs/integrations/destinations/meilisearch.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml b/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml index 9fc4a4162fdc..2868612d3256 100644 --- a/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml +++ b/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: destination definitionId: af7c921e-5892-4ff2-b6c1-4a5ab258fb7e - dockerImageTag: 1.0.4 + dockerImageTag: 1.0.5 dockerRepository: airbyte/destination-meilisearch githubIssueLabel: destination-meilisearch icon: meilisearch.svg diff --git a/airbyte-integrations/connectors/destination-meilisearch/poetry.lock b/airbyte-integrations/connectors/destination-meilisearch/poetry.lock index 31e0fc86a2d6..ffb1d190839b 100644 --- a/airbyte-integrations/connectors/destination-meilisearch/poetry.lock +++ b/airbyte-integrations/connectors/destination-meilisearch/poetry.lock @@ -1333,23 +1333,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml b/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml index ca2dbd2f4f14..5689b72af17e 100644 --- a/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml +++ b/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-meilisearch" -version = "1.0.4" +version = "1.0.5" description = "Airbyte destination implementation for Meilisearch." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/meilisearch.md b/docs/integrations/destinations/meilisearch.md index 84d01f365be4..71ee3252ff85 100644 --- a/docs/integrations/destinations/meilisearch.md +++ b/docs/integrations/destinations/meilisearch.md @@ -48,6 +48,7 @@ the MeiliSearch docs. | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------- | +| 1.0.5 | 2024-10-29 | [47889](https://github.com/airbytehq/airbyte/pull/47889) | Update dependencies | | 1.0.4 | 2024-10-28 | [47646](https://github.com/airbytehq/airbyte/pull/47646) | Update dependencies | | 1.0.3 | 2024-07-08 | [#TODO](https://github.com/airbytehq/airbyte/pull/TODO) | Switching to Poetry and base image | | 1.0.2 | 2024-03-05 | [#35838](https://github.com/airbytehq/airbyte/pull/35838) | Un-archive connector | From ab1f6c4e35ccf02f525f1c93fe9cccc21c28b084 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:30 +0200 Subject: [PATCH 396/808] =?UTF-8?q?=F0=9F=90=99=20source-timely:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47887)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-timely/metadata.yaml | 4 ++-- docs/integrations/sources/timely.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-timely/metadata.yaml b/airbyte-integrations/connectors/source-timely/metadata.yaml index e7702ec22fb6..945e33ef4f46 100644 --- a/airbyte-integrations/connectors/source-timely/metadata.yaml +++ b/airbyte-integrations/connectors/source-timely/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.timelyapp.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: bc617b5f-1b9e-4a2d-bebe-782fd454a771 - dockerImageTag: 0.4.2 + dockerImageTag: 0.4.3 dockerRepository: airbyte/source-timely documentationUrl: https://docs.airbyte.com/integrations/sources/timely githubIssueLabel: source-timely diff --git a/docs/integrations/sources/timely.md b/docs/integrations/sources/timely.md index 640e4812e684..fb69af9e6b6b 100644 --- a/docs/integrations/sources/timely.md +++ b/docs/integrations/sources/timely.md @@ -37,6 +37,7 @@ The Timely source connector supports the following [sync modes](https://docs.air | Version | Date | Pull Request | Subject | | :------ | :-------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.4.3 | 2024-10-29 | [47887](https://github.com/airbytehq/airbyte/pull/47887) | Update dependencies | | 0.4.2 | 2024-10-28 | [47503](https://github.com/airbytehq/airbyte/pull/47503) | Update dependencies | | 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.4.0 | 2024-08-07 | [43368](https://github.com/airbytehq/airbyte/pull/43368) | Refactor connector to manifest-only format | From 7d16a113b59b77c6e6311a78999fc4e90cd6af33 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:33 +0200 Subject: [PATCH 397/808] =?UTF-8?q?=F0=9F=90=99=20source-dremio:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47886)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-dremio/metadata.yaml | 4 ++-- docs/integrations/sources/dremio.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-dremio/metadata.yaml b/airbyte-integrations/connectors/source-dremio/metadata.yaml index 190bb8bc6d65..8cd5cd161993 100644 --- a/airbyte-integrations/connectors/source-dremio/metadata.yaml +++ b/airbyte-integrations/connectors/source-dremio/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d99e9ace-8621-46c2-9144-76ae4751d64b - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-dremio githubIssueLabel: source-dremio icon: dremio.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/dremio.md b/docs/integrations/sources/dremio.md index 991a2645aaa9..9cd89bf3ede6 100644 --- a/docs/integrations/sources/dremio.md +++ b/docs/integrations/sources/dremio.md @@ -41,6 +41,7 @@ Please read [How to get your APIs credentials](https://docs.dremio.com/software/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------- | +| 0.2.2 | 2024-10-29 | [47886](https://github.com/airbytehq/airbyte/pull/47886) | Update dependencies | | 0.2.1 | 2024-10-28 | [47633](https://github.com/airbytehq/airbyte/pull/47633) | Update dependencies | | 0.2.0 | 2024-08-19 | [44415](https://github.com/airbytehq/airbyte/pull/44415) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-17 | [44311](https://github.com/airbytehq/airbyte/pull/44311) | Update dependencies | From 790d6f6546096bc825a8212f099d5cb52d1fe4d0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:37 +0200 Subject: [PATCH 398/808] =?UTF-8?q?=F0=9F=90=99=20source-miro:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47885)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-miro/metadata.yaml | 4 ++-- docs/integrations/sources/miro.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-miro/metadata.yaml b/airbyte-integrations/connectors/source-miro/metadata.yaml index 8ae570689d9e..79bc19e378d6 100644 --- a/airbyte-integrations/connectors/source-miro/metadata.yaml +++ b/airbyte-integrations/connectors/source-miro/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-miro connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: f8276ae8-4ada-4ae5-819c-b1836aa78135 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-miro githubIssueLabel: source-miro icon: icon.svg diff --git a/docs/integrations/sources/miro.md b/docs/integrations/sources/miro.md index 0348cea8bdc0..cc92af49a105 100644 --- a/docs/integrations/sources/miro.md +++ b/docs/integrations/sources/miro.md @@ -25,6 +25,7 @@ Airbyte connector for Miro can be used to extract data related to board content, | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47885](https://github.com/airbytehq/airbyte/pull/47885) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 4baf385e1c6821b2fcfd2a2054046dc1385dcf35 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:40 +0200 Subject: [PATCH 399/808] =?UTF-8?q?=F0=9F=90=99=20source-survicate:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47884)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-survicate/metadata.yaml | 4 ++-- docs/integrations/sources/survicate.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-survicate/metadata.yaml b/airbyte-integrations/connectors/source-survicate/metadata.yaml index 6f5447d72086..a9689f274b96 100644 --- a/airbyte-integrations/connectors/source-survicate/metadata.yaml +++ b/airbyte-integrations/connectors/source-survicate/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-survicate connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 5770c58b-3288-4fa0-a968-bb8a6607fae1 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-survicate githubIssueLabel: source-survicate icon: icon.svg diff --git a/docs/integrations/sources/survicate.md b/docs/integrations/sources/survicate.md index e1f1b23e4ddf..c41e8118c96f 100644 --- a/docs/integrations/sources/survicate.md +++ b/docs/integrations/sources/survicate.md @@ -33,6 +33,7 @@ Refer `https://developers.survicate.com/data-export/setup/#authentication` for m | Version | Date | Pull Request | Subject | | ------------------ | ------------ | -- | ---------------- | +| 0.0.3 | 2024-10-29 | [47884](https://github.com/airbytehq/airbyte/pull/47884) | Update dependencies | | 0.0.2 | 2024-10-28 | [47494](https://github.com/airbytehq/airbyte/pull/47494) | Update dependencies | | 0.0.1 | 2024-09-05 | [45163](https://github.com/airbytehq/airbyte/pull/45163) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 6d0d505194487b19973272ee10668f01b7983ae9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:43 +0200 Subject: [PATCH 400/808] =?UTF-8?q?=F0=9F=90=99=20source-toggl:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47883)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-toggl/metadata.yaml | 4 ++-- docs/integrations/sources/toggl.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-toggl/metadata.yaml b/airbyte-integrations/connectors/source-toggl/metadata.yaml index a3f5b555888c..bfab2051adce 100644 --- a/airbyte-integrations/connectors/source-toggl/metadata.yaml +++ b/airbyte-integrations/connectors/source-toggl/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7e7c844f-2300-4342-b7d3-6dd7992593cd - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-toggl githubIssueLabel: source-toggl icon: toggl.svg @@ -40,5 +40,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/toggl.md b/docs/integrations/sources/toggl.md index 61db75272ad3..24903d38104e 100644 --- a/docs/integrations/sources/toggl.md +++ b/docs/integrations/sources/toggl.md @@ -38,7 +38,8 @@ Toggl APIs are under rate limits for the number of API calls allowed per API key | Version | Date | Pull Request | Subject | |:--------|:-----------| :-------------------------------------------------------- | :-------------------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.2 | 2024-10-29 | [47883](https://github.com/airbytehq/airbyte/pull/47883) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44056](https://github.com/airbytehq/airbyte/pull/44056) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-12 | [43860](https://github.com/airbytehq/airbyte/pull/43860) | Update dependencies | | 0.1.13 | 2024-08-10 | [43485](https://github.com/airbytehq/airbyte/pull/43485) | Update dependencies | From 6d73ccde2ac13fee41a1cfcd8395fed876a5d39c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:47 +0200 Subject: [PATCH 401/808] =?UTF-8?q?=F0=9F=90=99=20source-breezometer:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47882)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-breezometer/metadata.yaml | 4 ++-- docs/integrations/sources/breezometer.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-breezometer/metadata.yaml b/airbyte-integrations/connectors/source-breezometer/metadata.yaml index dd42e4bdf11c..591b12beddc9 100644 --- a/airbyte-integrations/connectors/source-breezometer/metadata.yaml +++ b/airbyte-integrations/connectors/source-breezometer/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7c37685e-8512-4901-addf-9afbef6c0de9 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-breezometer githubIssueLabel: source-breezometer icon: breezometer.svg @@ -38,5 +38,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/breezometer.md b/docs/integrations/sources/breezometer.md index 8a0971f1e6a3..f292ce879a3f 100644 --- a/docs/integrations/sources/breezometer.md +++ b/docs/integrations/sources/breezometer.md @@ -39,6 +39,7 @@ The Breezometer connector supports full sync refresh. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------ | +| 0.2.2 | 2024-10-29 | [47882](https://github.com/airbytehq/airbyte/pull/47882) | Update dependencies | | 0.2.1 | 2024-10-28 | [43777](https://github.com/airbytehq/airbyte/pull/43777) | Update dependencies | | 0.2.0 | 2024-08-22 | [44563](https://github.com/airbytehq/airbyte/pull/44563) | Refactor connector to manifest-only format | | 0.1.1 | 2024-05-21 | [38529](https://github.com/airbytehq/airbyte/pull/38529) | [autopull] base image + poetry + up_to_date | From 9b38dfe439c17715c04178659e9048557c6812bf Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:52 +0200 Subject: [PATCH 402/808] =?UTF-8?q?=F0=9F=90=99=20source-recreation:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47881)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recreation/metadata.yaml | 4 ++-- docs/integrations/sources/recreation.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-recreation/metadata.yaml b/airbyte-integrations/connectors/source-recreation/metadata.yaml index 4d03460b882f..1054d6889260 100644 --- a/airbyte-integrations/connectors/source-recreation/metadata.yaml +++ b/airbyte-integrations/connectors/source-recreation/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 25d7535d-91e0-466a-aa7f-af81578be277 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-recreation documentationUrl: https://docs.airbyte.com/integrations/sources/recreation githubIssueLabel: source-recreation diff --git a/docs/integrations/sources/recreation.md b/docs/integrations/sources/recreation.md index 972822816d5c..84a51061fdad 100644 --- a/docs/integrations/sources/recreation.md +++ b/docs/integrations/sources/recreation.md @@ -60,6 +60,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.3 | 2024-10-29 | [47881](https://github.com/airbytehq/airbyte/pull/47881) | Update dependencies | | 0.2.2 | 2024-10-28 | [47524](https://github.com/airbytehq/airbyte/pull/47524) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44080](https://github.com/airbytehq/airbyte/pull/44080) | Refactor connector to manifest-only format | From 51925af9e64bd84690e0e988486ec1d800c80686 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:55 +0200 Subject: [PATCH 403/808] =?UTF-8?q?=F0=9F=90=99=20source-mux:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-29]=20(#47880)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mux/metadata.yaml | 4 ++-- docs/integrations/sources/mux.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mux/metadata.yaml b/airbyte-integrations/connectors/source-mux/metadata.yaml index 712fd41ee3ec..3a83cc657fe5 100644 --- a/airbyte-integrations/connectors/source-mux/metadata.yaml +++ b/airbyte-integrations/connectors/source-mux/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mux connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 7bc19e81-14ee-43cb-a2ac-f3bcf6ba0459 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-mux githubIssueLabel: source-mux icon: icon.svg diff --git a/docs/integrations/sources/mux.md b/docs/integrations/sources/mux.md index 7002cb33736d..c334ee2bec40 100644 --- a/docs/integrations/sources/mux.md +++ b/docs/integrations/sources/mux.md @@ -34,6 +34,7 @@ Visit `https://docs.mux.com/api-reference` for API documentation | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-10-29 | [47880](https://github.com/airbytehq/airbyte/pull/47880) | Update dependencies | | 0.0.2 | 2024-10-28 | [47492](https://github.com/airbytehq/airbyte/pull/47492) | Update dependencies | | 0.0.1 | 2024-09-27 | [45921](https://github.com/airbytehq/airbyte/pull/45921) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 1fe63a6b9c0a4eba3a0e0a61d45a8ee6601b0769 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:10:59 +0200 Subject: [PATCH 404/808] =?UTF-8?q?=F0=9F=90=99=20destination-aws-datalake?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47878)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-aws-datalake/metadata.yaml | 2 +- .../destination-aws-datalake/poetry.lock | 26 +++++++++---------- .../destination-aws-datalake/pyproject.toml | 2 +- .../integrations/destinations/aws-datalake.md | 1 + 4 files changed, 16 insertions(+), 15 deletions(-) diff --git a/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml b/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml index cf219a4cd385..ef3975745e2d 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml +++ b/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml @@ -4,7 +4,7 @@ data: definitionId: 99878c90-0fbd-46d3-9d98-ffde879d17fc connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 - dockerImageTag: 0.1.35 + dockerImageTag: 0.1.36 dockerRepository: airbyte/destination-aws-datalake githubIssueLabel: destination-aws-datalake icon: awsdatalake.svg diff --git a/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock b/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock index 62ce1154f5db..0d71b2b2b458 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock +++ b/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock @@ -144,17 +144,17 @@ files = [ [[package]] name = "boto3" -version = "1.35.49" +version = "1.35.50" description = "The AWS SDK for Python" optional = false python-versions = ">=3.8" files = [ - {file = "boto3-1.35.49-py3-none-any.whl", hash = "sha256:b660c649a27a6b47a34f6f858f5bd7c3b0a798a16dec8dda7cbebeee80fd1f60"}, - {file = "boto3-1.35.49.tar.gz", hash = "sha256:ddecb27f5699ca9f97711c52b6c0652c2e63bf6c2bfbc13b819b4f523b4d30ff"}, + {file = "boto3-1.35.50-py3-none-any.whl", hash = "sha256:14724b905fd13f26d9d8f7cdcea0fa65a9acad79f60f41f7662667f4e233d97c"}, + {file = "boto3-1.35.50.tar.gz", hash = "sha256:4f15d1ccb481d66f6925b8c91c970ce41b956b6ecf7c479f23e2159531b37eec"}, ] [package.dependencies] -botocore = ">=1.35.49,<1.36.0" +botocore = ">=1.35.50,<1.36.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.10.0,<0.11.0" @@ -163,13 +163,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.35.49" +version = "1.35.50" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" files = [ - {file = "botocore-1.35.49-py3-none-any.whl", hash = "sha256:aed4d3643afd702920792b68fbe712a8c3847993820d1048cd238a6469354da1"}, - {file = "botocore-1.35.49.tar.gz", hash = "sha256:07d0c1325fdbfa49a4a054413dbdeab0a6030449b2aa66099241af2dac48afd8"}, + {file = "botocore-1.35.50-py3-none-any.whl", hash = "sha256:965d3b99179ac04aa98e4c4baf4a970ebce77a5e02bb2a0a21cb6304e2bc0955"}, + {file = "botocore-1.35.50.tar.gz", hash = "sha256:136ecef8d5a1088f1ba485c0bbfca40abd42b9f9fe9e11d8cde4e53b4c05b188"}, ] [package.dependencies] @@ -1513,23 +1513,23 @@ crt = ["botocore[crt] (>=1.33.2,<2.0a.0)"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml b/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml index e87e7a68de96..5d8fb96495f7 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml +++ b/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.35" +version = "0.1.36" name = "destination-aws-datalake" description = "Destination Implementation for AWS Datalake." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/aws-datalake.md b/docs/integrations/destinations/aws-datalake.md index 9f8497890dd4..19fbb03e5fbe 100644 --- a/docs/integrations/destinations/aws-datalake.md +++ b/docs/integrations/destinations/aws-datalake.md @@ -94,6 +94,7 @@ which will be translated for compatibility with the Glue Data Catalog: | Version | Date | Pull Request | Subject | |:--------| :--------- | :--------------------------------------------------------- | :--------------------------------------------------- | +| 0.1.36 | 2024-10-29 | [47878](https://github.com/airbytehq/airbyte/pull/47878) | Update dependencies | | 0.1.35 | 2024-10-28 | [47590](https://github.com/airbytehq/airbyte/pull/47590) | Update dependencies | | 0.1.34 | 2024-10-22 | [47091](https://github.com/airbytehq/airbyte/pull/47091) | Update dependencies | | 0.1.33 | 2024-10-12 | [46790](https://github.com/airbytehq/airbyte/pull/46790) | Update dependencies | From ef4fcd18febac51d45f27eed7812173b764b8cd8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:07 +0200 Subject: [PATCH 405/808] =?UTF-8?q?=F0=9F=90=99=20source-linnworks:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47877)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-linnworks/metadata.yaml | 2 +- .../connectors/source-linnworks/poetry.lock | 178 +++++++++--------- .../source-linnworks/pyproject.toml | 2 +- docs/integrations/sources/linnworks.md | 1 + 4 files changed, 92 insertions(+), 91 deletions(-) diff --git a/airbyte-integrations/connectors/source-linnworks/metadata.yaml b/airbyte-integrations/connectors/source-linnworks/metadata.yaml index 36dfef5f3489..133748bae7cb 100644 --- a/airbyte-integrations/connectors/source-linnworks/metadata.yaml +++ b/airbyte-integrations/connectors/source-linnworks/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7b86879e-26c5-4ef6-a5ce-2be5c7b46d1e - dockerImageTag: 0.1.31 + dockerImageTag: 0.1.32 dockerRepository: airbyte/source-linnworks documentationUrl: https://docs.airbyte.com/integrations/sources/linnworks githubIssueLabel: source-linnworks diff --git a/airbyte-integrations/connectors/source-linnworks/poetry.lock b/airbyte-integrations/connectors/source-linnworks/poetry.lock index ea99306eefd1..e4159ab46d69 100644 --- a/airbyte-integrations/connectors/source-linnworks/poetry.lock +++ b/airbyte-integrations/connectors/source-linnworks/poetry.lock @@ -1095,23 +1095,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1311,93 +1311,93 @@ files = [ [[package]] name = "yarl" -version = "1.16.0" +version = "1.17.0" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32468f41242d72b87ab793a86d92f885355bcf35b3355aa650bfa846a5c60058"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:234f3a3032b505b90e65b5bc6652c2329ea7ea8855d8de61e1642b74b4ee65d2"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a0296040e5cddf074c7f5af4a60f3fc42c0237440df7bcf5183be5f6c802ed5"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de6c14dd7c7c0badba48157474ea1f03ebee991530ba742d381b28d4f314d6f3"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b140e532fe0266003c936d017c1ac301e72ee4a3fd51784574c05f53718a55d8"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:019f5d58093402aa8f6661e60fd82a28746ad6d156f6c5336a70a39bd7b162b9"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c42998fd1cbeb53cd985bff0e4bc25fbe55fd6eb3a545a724c1012d69d5ec84"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7c30fb38c300fe8140df30a046a01769105e4cf4282567a29b5cdb635b66c4"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e49e0fd86c295e743fd5be69b8b0712f70a686bc79a16e5268386c2defacaade"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:b9ca7b9147eb1365c8bab03c003baa1300599575effad765e0b07dd3501ea9af"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:27e11db3f1e6a51081a981509f75617b09810529de508a181319193d320bc5c7"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8994c42f4ca25df5380ddf59f315c518c81df6a68fed5bb0c159c6cb6b92f120"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:542fa8e09a581bcdcbb30607c7224beff3fdfb598c798ccd28a8184ffc18b7eb"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2bd6a51010c7284d191b79d3b56e51a87d8e1c03b0902362945f15c3d50ed46b"}, - {file = "yarl-1.16.0-cp310-cp310-win32.whl", hash = "sha256:178ccb856e265174a79f59721031060f885aca428983e75c06f78aa24b91d929"}, - {file = "yarl-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe8bba2545427418efc1929c5c42852bdb4143eb8d0a46b09de88d1fe99258e7"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d8643975a0080f361639787415a038bfc32d29208a4bf6b783ab3075a20b1ef3"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:676d96bafc8c2d0039cea0cd3fd44cee7aa88b8185551a2bb93354668e8315c2"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9525f03269e64310416dbe6c68d3b23e5d34aaa8f47193a1c45ac568cecbc49"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b37d5ec034e668b22cf0ce1074d6c21fd2a08b90d11b1b73139b750a8b0dd97"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f32c4cb7386b41936894685f6e093c8dfaf0960124d91fe0ec29fe439e201d0"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b8e265a0545637492a7e12fd7038370d66c9375a61d88c5567d0e044ded9202"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:789a3423f28a5fff46fbd04e339863c169ece97c827b44de16e1a7a42bc915d2"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1d1f45e3e8d37c804dca99ab3cf4ab3ed2e7a62cd82542924b14c0a4f46d243"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:621280719c4c5dad4c1391160a9b88925bb8b0ff6a7d5af3224643024871675f"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed097b26f18a1f5ff05f661dc36528c5f6735ba4ce8c9645e83b064665131349"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2f1fe2b2e3ee418862f5ebc0c0083c97f6f6625781382f828f6d4e9b614eba9b"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:87dd10bc0618991c66cee0cc65fa74a45f4ecb13bceec3c62d78ad2e42b27a16"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4199db024b58a8abb2cfcedac7b1292c3ad421684571aeb622a02f242280e8d6"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:99a9dcd4b71dd5f5f949737ab3f356cfc058c709b4f49833aeffedc2652dac56"}, - {file = "yarl-1.16.0-cp311-cp311-win32.whl", hash = "sha256:a9394c65ae0ed95679717d391c862dece9afacd8fa311683fc8b4362ce8a410c"}, - {file = "yarl-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b9101f528ae0f8f65ac9d64dda2bb0627de8a50344b2f582779f32fda747c1d"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4ffb7c129707dd76ced0a4a4128ff452cecf0b0e929f2668ea05a371d9e5c104"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1a5e9d8ce1185723419c487758d81ac2bde693711947032cce600ca7c9cda7d6"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d743e3118b2640cef7768ea955378c3536482d95550222f908f392167fe62059"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26768342f256e6e3c37533bf9433f5f15f3e59e3c14b2409098291b3efaceacb"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1b0796168b953bca6600c5f97f5ed407479889a36ad7d17183366260f29a6b9"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858728086914f3a407aa7979cab743bbda1fe2bdf39ffcd991469a370dd7414d"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5570e6d47bcb03215baf4c9ad7bf7c013e56285d9d35013541f9ac2b372593e7"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66ea8311422a7ba1fc79b4c42c2baa10566469fe5a78500d4e7754d6e6db8724"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:649bddcedee692ee8a9b7b6e38582cb4062dc4253de9711568e5620d8707c2a3"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a91654adb7643cb21b46f04244c5a315a440dcad63213033826549fa2435f71"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b439cae82034ade094526a8f692b9a2b5ee936452de5e4c5f0f6c48df23f8604"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:571f781ae8ac463ce30bacebfaef2c6581543776d5970b2372fbe31d7bf31a07"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:aa7943f04f36d6cafc0cf53ea89824ac2c37acbdb4b316a654176ab8ffd0f968"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1a5cf32539373ff39d97723e39a9283a7277cbf1224f7aef0c56c9598b6486c3"}, - {file = "yarl-1.16.0-cp312-cp312-win32.whl", hash = "sha256:a5b6c09b9b4253d6a208b0f4a2f9206e511ec68dce9198e0fbec4f160137aa67"}, - {file = "yarl-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:1208ca14eed2fda324042adf8d6c0adf4a31522fa95e0929027cd487875f0240"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5ace0177520bd4caa99295a9b6fb831d0e9a57d8e0501a22ffaa61b4c024283"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7118bdb5e3ed81acaa2095cba7ec02a0fe74b52a16ab9f9ac8e28e53ee299732"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38fec8a2a94c58bd47c9a50a45d321ab2285ad133adefbbadf3012c054b7e656"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8791d66d81ee45866a7bb15a517b01a2bcf583a18ebf5d72a84e6064c417e64b"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cf936ba67bc6c734f3aa1c01391da74ab7fc046a9f8bbfa230b8393b90cf472"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1aab176dd55b59f77a63b27cffaca67d29987d91a5b615cbead41331e6b7428"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d0759004c08abd5d1b81300a91d18c8577c6389300bed1c7c11675105a44d"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bc22e00edeb068f71967ab99081e9406cd56dbed864fc3a8259442999d71552"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:35b4f7842154176523e0a63c9b871168c69b98065d05a4f637fce342a6a2693a"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7ace71c4b7a0c41f317ae24be62bb61e9d80838d38acb20e70697c625e71f120"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8f639e3f5795a6568aa4f7d2ac6057c757dcd187593679f035adbf12b892bb00"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e8be3aff14f0120ad049121322b107f8a759be76a6a62138322d4c8a337a9e2c"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:122d8e7986043d0549e9eb23c7fd23be078be4b70c9eb42a20052b3d3149c6f2"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0fd9c227990f609c165f56b46107d0bc34553fe0387818c42c02f77974402c36"}, - {file = "yarl-1.16.0-cp313-cp313-win32.whl", hash = "sha256:595ca5e943baed31d56b33b34736461a371c6ea0038d3baec399949dd628560b"}, - {file = "yarl-1.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:921b81b8d78f0e60242fb3db615ea3f368827a76af095d5a69f1c3366db3f596"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab2b2ac232110a1fdb0d3ffcd087783edd3d4a6ced432a1bf75caf7b7be70916"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f8713717a09acbfee7c47bfc5777e685539fefdd34fa72faf504c8be2f3df4e"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdcffe1dbcb4477d2b4202f63cd972d5baa155ff5a3d9e35801c46a415b7f71a"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a91217208306d82357c67daeef5162a41a28c8352dab7e16daa82e3718852a7"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ab3ed42c78275477ea8e917491365e9a9b69bb615cb46169020bd0aa5e2d6d3"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:707ae579ccb3262dfaef093e202b4c3fb23c3810e8df544b1111bd2401fd7b09"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7a852d1cd0b8d8b37fc9d7f8581152add917a98cfe2ea6e241878795f917ae"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3f1cc3d3d4dc574bebc9b387f6875e228ace5748a7c24f49d8f01ac1bc6c31b"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5ff96da263740779b0893d02b718293cc03400c3a208fc8d8cd79d9b0993e532"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:3d375a19ba2bfe320b6d873f3fb165313b002cef8b7cc0a368ad8b8a57453837"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:62c7da0ad93a07da048b500514ca47b759459ec41924143e2ddb5d7e20fd3db5"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:147b0fcd0ee33b4b5f6edfea80452d80e419e51b9a3f7a96ce98eaee145c1581"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:504e1fe1cc4f170195320eb033d2b0ccf5c6114ce5bf2f617535c01699479bca"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bdcf667a5dec12a48f669e485d70c54189f0639c2157b538a4cffd24a853624f"}, - {file = "yarl-1.16.0-cp39-cp39-win32.whl", hash = "sha256:e9951afe6557c75a71045148890052cb942689ee4c9ec29f5436240e1fcc73b7"}, - {file = "yarl-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d7aaa8ff95d0840e289423e7dc35696c2b058d635f945bf05b5cd633146b027"}, - {file = "yarl-1.16.0-py3-none-any.whl", hash = "sha256:e6980a558d8461230c457218bd6c92dfc1d10205548215c2c21d79dc8d0a96f3"}, - {file = "yarl-1.16.0.tar.gz", hash = "sha256:b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-linnworks/pyproject.toml b/airbyte-integrations/connectors/source-linnworks/pyproject.toml index b4cb4913cec0..c5e8beef35f1 100644 --- a/airbyte-integrations/connectors/source-linnworks/pyproject.toml +++ b/airbyte-integrations/connectors/source-linnworks/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.31" +version = "0.1.32" name = "source-linnworks" description = "Source implementation for Linnworks." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/linnworks.md b/docs/integrations/sources/linnworks.md index 635c5c2268fc..77f3cc028b70 100644 --- a/docs/integrations/sources/linnworks.md +++ b/docs/integrations/sources/linnworks.md @@ -74,6 +74,7 @@ Rate limits for the Linnworks API vary across endpoints. Use the [links in the * | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------------------------- | +| 0.1.32 | 2024-10-29 | [47877](https://github.com/airbytehq/airbyte/pull/47877) | Update dependencies | | 0.1.31 | 2024-10-28 | [47116](https://github.com/airbytehq/airbyte/pull/47116) | Update dependencies | | 0.1.30 | 2024-10-12 | [46798](https://github.com/airbytehq/airbyte/pull/46798) | Update dependencies | | 0.1.29 | 2024-10-05 | [46406](https://github.com/airbytehq/airbyte/pull/46406) | Update dependencies | From db12fe7241b795f29fddcb4da0acdeebb023ffee Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:12 +0200 Subject: [PATCH 406/808] =?UTF-8?q?=F0=9F=90=99=20source-picqer:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47876)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-picqer/metadata.yaml | 4 ++-- docs/integrations/sources/picqer.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-picqer/metadata.yaml b/airbyte-integrations/connectors/source-picqer/metadata.yaml index ff7294b45d9a..ca0f4d5840a4 100644 --- a/airbyte-integrations/connectors/source-picqer/metadata.yaml +++ b/airbyte-integrations/connectors/source-picqer/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-picqer connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 860ca029-c88c-4c0a-a7d8-08ce6e84729c - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-picqer githubIssueLabel: source-picqer icon: icon.svg diff --git a/docs/integrations/sources/picqer.md b/docs/integrations/sources/picqer.md index 6ca45af17712..53a631825d28 100644 --- a/docs/integrations/sources/picqer.md +++ b/docs/integrations/sources/picqer.md @@ -42,6 +42,7 @@ Configure the API key as your username and leave password field as blank | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-10-29 | [47876](https://github.com/airbytehq/airbyte/pull/47876) | Update dependencies | | 0.0.2 | 2024-10-22 | [47235](https://github.com/airbytehq/airbyte/pull/47235) | Update dependencies | | 0.0.1 | 2024-09-05 | [45159](https://github.com/airbytehq/airbyte/pull/45159) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 41d629304bdd21c1fbf3a74e6248d3c6944a4c58 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:19 +0200 Subject: [PATCH 407/808] =?UTF-8?q?=F0=9F=90=99=20source-goldcast:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47875)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-goldcast/metadata.yaml | 4 ++-- docs/integrations/sources/goldcast.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-goldcast/metadata.yaml b/airbyte-integrations/connectors/source-goldcast/metadata.yaml index 18692a0cb904..eb36d5128a2a 100644 --- a/airbyte-integrations/connectors/source-goldcast/metadata.yaml +++ b/airbyte-integrations/connectors/source-goldcast/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: c2c25d04-9bb1-4171-8a7a-bb7cead8add0 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-goldcast githubIssueLabel: source-goldcast icon: goldcast.svg diff --git a/docs/integrations/sources/goldcast.md b/docs/integrations/sources/goldcast.md index 11f11e39afc7..b7726040a0a4 100644 --- a/docs/integrations/sources/goldcast.md +++ b/docs/integrations/sources/goldcast.md @@ -96,6 +96,7 @@ This is a child stream of the events stream indicating webinars that belong to t | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 0.2.2 | 2024-10-29 | [47875](https://github.com/airbytehq/airbyte/pull/47875) | Update dependencies | | 0.2.1 | 2024-10-28 | [47533](https://github.com/airbytehq/airbyte/pull/47533) | Update dependencies | | 0.2.0 | 2024-08-22 | [44568](https://github.com/airbytehq/airbyte/pull/44568) | Refactor connector to manifest-only format | | 0.1.8 | 2024-08-12 | [43804](https://github.com/airbytehq/airbyte/pull/43804) | Update dependencies | From 366d9ca0f413bf882bb79135cfc6657b29487dd3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:28 +0200 Subject: [PATCH 408/808] =?UTF-8?q?=F0=9F=90=99=20source-free-agent-connec?= =?UTF-8?q?tor:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47874)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-free-agent-connector/metadata.yaml | 4 ++-- docs/integrations/sources/free-agent-connector.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-free-agent-connector/metadata.yaml b/airbyte-integrations/connectors/source-free-agent-connector/metadata.yaml index 4512f2b86590..fd94c1abc5b9 100644 --- a/airbyte-integrations/connectors/source-free-agent-connector/metadata.yaml +++ b/airbyte-integrations/connectors/source-free-agent-connector/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-free-agent-connector connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: e3b1e503-2777-460c-80ef-5d6b41367858 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-free-agent-connector githubIssueLabel: source-free-agent-connector icon: icon.svg diff --git a/docs/integrations/sources/free-agent-connector.md b/docs/integrations/sources/free-agent-connector.md index fa20b4a737a2..c48b7d7f1983 100644 --- a/docs/integrations/sources/free-agent-connector.md +++ b/docs/integrations/sources/free-agent-connector.md @@ -53,6 +53,7 @@ Download all your data from FreeAgent, a friendly and easy to use cloud based ac | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-10-29 | [47874](https://github.com/airbytehq/airbyte/pull/47874) | Update dependencies | | 0.0.1 | 2024-09-24 | | Initial release by [@craigbloodworth](https://github.com/craigbloodworth) via Connector Builder | - \ No newline at end of file + From 6e74cae21bf1abb76a474d74ec9c787ea5a84f0f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:33 +0200 Subject: [PATCH 409/808] =?UTF-8?q?=F0=9F=90=99=20source-reply-io:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47872)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-reply-io/metadata.yaml | 4 ++-- docs/integrations/sources/reply-io.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-reply-io/metadata.yaml b/airbyte-integrations/connectors/source-reply-io/metadata.yaml index 2cd21403ae79..b3ab16e3f830 100644 --- a/airbyte-integrations/connectors/source-reply-io/metadata.yaml +++ b/airbyte-integrations/connectors/source-reply-io/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 8cc6537e-f8a6-423c-b960-e927af76116e - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-reply-io githubIssueLabel: source-reply-io icon: reply-io.svg diff --git a/docs/integrations/sources/reply-io.md b/docs/integrations/sources/reply-io.md index 44cc27a98455..cca991cf5296 100644 --- a/docs/integrations/sources/reply-io.md +++ b/docs/integrations/sources/reply-io.md @@ -41,6 +41,7 @@ This Source is capable of syncing the following core Streams: | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :---------------------------- | +| 0.2.2 | 2024-10-29 | [47872](https://github.com/airbytehq/airbyte/pull/47872) | Update dependencies | | 0.2.1 | 2024-10-28 | [47462](https://github.com/airbytehq/airbyte/pull/47462) | Update dependencies | | 0.2.0 | 2024-08-19 | [44407](https://github.com/airbytehq/airbyte/pull/44407) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-17 | [44284](https://github.com/airbytehq/airbyte/pull/44284) | Update dependencies | From 5a7093c42afec2474432a279b2e881b03d35a5f7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:37 +0200 Subject: [PATCH 410/808] =?UTF-8?q?=F0=9F=90=99=20source-webflow:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47871)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-webflow/metadata.yaml | 2 +- .../connectors/source-webflow/poetry.lock | 12 ++++++------ .../connectors/source-webflow/pyproject.toml | 2 +- docs/integrations/sources/webflow.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-webflow/metadata.yaml b/airbyte-integrations/connectors/source-webflow/metadata.yaml index 126d94aa8452..809980bb5ff0 100644 --- a/airbyte-integrations/connectors/source-webflow/metadata.yaml +++ b/airbyte-integrations/connectors/source-webflow/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ef580275-d9a9-48bb-af5e-db0f5855be04 - dockerImageTag: 0.1.25 + dockerImageTag: 0.1.26 dockerRepository: airbyte/source-webflow githubIssueLabel: source-webflow icon: webflow.svg diff --git a/airbyte-integrations/connectors/source-webflow/poetry.lock b/airbyte-integrations/connectors/source-webflow/poetry.lock index daa4d036e32d..7a6a3934921d 100644 --- a/airbyte-integrations/connectors/source-webflow/poetry.lock +++ b/airbyte-integrations/connectors/source-webflow/poetry.lock @@ -884,23 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-webflow/pyproject.toml b/airbyte-integrations/connectors/source-webflow/pyproject.toml index 95fc3ec4eb1b..651e49ce031f 100644 --- a/airbyte-integrations/connectors/source-webflow/pyproject.toml +++ b/airbyte-integrations/connectors/source-webflow/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.25" +version = "0.1.26" name = "source-webflow" description = "Source implementation for Webflow." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/webflow.md b/docs/integrations/sources/webflow.md index 9c1d4f7852e5..6044a3a44ac1 100644 --- a/docs/integrations/sources/webflow.md +++ b/docs/integrations/sources/webflow.md @@ -41,6 +41,7 @@ If you are interested in learning more about the Webflow API and implementation | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------- | +| 0.1.26 | 2024-10-29 | [47871](https://github.com/airbytehq/airbyte/pull/47871) | Update dependencies | | 0.1.25 | 2024-10-28 | [47102](https://github.com/airbytehq/airbyte/pull/47102) | Update dependencies | | 0.1.24 | 2024-10-12 | [46854](https://github.com/airbytehq/airbyte/pull/46854) | Update dependencies | | 0.1.23 | 2024-10-05 | [46410](https://github.com/airbytehq/airbyte/pull/46410) | Update dependencies | From 6bb62bdc23457b26b1eb9815931e29da25e161b6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:40 +0200 Subject: [PATCH 411/808] =?UTF-8?q?=F0=9F=90=99=20source-square:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47869)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-square/metadata.yaml | 4 ++-- docs/integrations/sources/square.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-square/metadata.yaml b/airbyte-integrations/connectors/source-square/metadata.yaml index 0d2e842a4755..011ab3199ddf 100644 --- a/airbyte-integrations/connectors/source-square/metadata.yaml +++ b/airbyte-integrations/connectors/source-square/metadata.yaml @@ -7,11 +7,11 @@ data: - connect.squareupsandbox.com - connect.squareup.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 77225a51-cd15-4a13-af02-65816bd0ecf4 - dockerImageTag: 1.7.1 + dockerImageTag: 1.7.2 dockerRepository: airbyte/source-square documentationUrl: https://docs.airbyte.com/integrations/sources/square githubIssueLabel: source-square diff --git a/docs/integrations/sources/square.md b/docs/integrations/sources/square.md index e7ca1dd28aff..d7f60cf462ee 100644 --- a/docs/integrations/sources/square.md +++ b/docs/integrations/sources/square.md @@ -103,6 +103,7 @@ Exponential [Backoff](https://developer.squareup.com/forums/t/current-square-api | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------ | +| 1.7.2 | 2024-10-29 | [47869](https://github.com/airbytehq/airbyte/pull/47869) | Update dependencies | | 1.7.1 | 2024-10-28 | [47608](https://github.com/airbytehq/airbyte/pull/47608) | Update dependencies | | 1.7.0 | 2024-10-06 | [46527](https://github.com/airbytehq/airbyte/pull/46527) | Migrate to Manifest-only | | 1.6.23 | 2024-10-05 | [46409](https://github.com/airbytehq/airbyte/pull/46409) | Update dependencies | From f702d5081df46507f9d372b657f120f7419f0c51 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:48 +0200 Subject: [PATCH 412/808] =?UTF-8?q?=F0=9F=90=99=20source-lob:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-29]=20(#47867)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-lob/metadata.yaml | 4 ++-- docs/integrations/sources/lob.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-lob/metadata.yaml b/airbyte-integrations/connectors/source-lob/metadata.yaml index af7829d136d8..5d3f2a0b4a7a 100644 --- a/airbyte-integrations/connectors/source-lob/metadata.yaml +++ b/airbyte-integrations/connectors/source-lob/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-lob connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: c6d14c44-cd3e-4f94-8924-201c5615f3a7 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-lob githubIssueLabel: source-lob icon: icon.svg diff --git a/docs/integrations/sources/lob.md b/docs/integrations/sources/lob.md index 5f3feda82ba6..d409b1aa4984 100644 --- a/docs/integrations/sources/lob.md +++ b/docs/integrations/sources/lob.md @@ -34,6 +34,7 @@ Visit `https://docs.lob.com/` for API documentation | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-10-29 | [47867](https://github.com/airbytehq/airbyte/pull/47867) | Update dependencies | | 0.0.2 | 2024-10-28 | [47627](https://github.com/airbytehq/airbyte/pull/47627) | Update dependencies | | 0.0.1 | 2024-09-22 | [45843](https://github.com/airbytehq/airbyte/pull/45843) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 55b331628bcdafecd5b11c4ad6c5331e845e2477 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:51 +0200 Subject: [PATCH 413/808] =?UTF-8?q?=F0=9F=90=99=20source-news-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47866)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-news-api/metadata.yaml | 4 ++-- docs/integrations/sources/news-api.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-news-api/metadata.yaml b/airbyte-integrations/connectors/source-news-api/metadata.yaml index 40b702fd9252..746be876d2d2 100644 --- a/airbyte-integrations/connectors/source-news-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-news-api/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: df38991e-f35b-4af2-996d-36817f614587 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-news-api githubIssueLabel: source-news-api icon: newsapi.svg diff --git a/docs/integrations/sources/news-api.md b/docs/integrations/sources/news-api.md index a086129ac504..23eaa8381e89 100644 --- a/docs/integrations/sources/news-api.md +++ b/docs/integrations/sources/news-api.md @@ -61,6 +61,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :--------------------------------------- | +| 0.2.3 | 2024-10-29 | [47866](https://github.com/airbytehq/airbyte/pull/47866) | Update dependencies | | 0.2.2 | 2024-10-28 | [47562](https://github.com/airbytehq/airbyte/pull/47562) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44114](https://github.com/airbytehq/airbyte/pull/44114) | Refactor connector to manifest-only format | From 58f57d57ec32a23cbe06872c1590b82845fbc8ef Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:55 +0200 Subject: [PATCH 414/808] =?UTF-8?q?=F0=9F=90=99=20source-gainsight-px:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47864)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gainsight-px/metadata.yaml | 4 ++-- docs/integrations/sources/gainsight-px.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml b/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml index 3845875e4b08..1b02631bd177 100644 --- a/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml +++ b/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml @@ -3,7 +3,7 @@ data: hosts: - api.aptrinsic.com/v1 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa remoteRegistries: pypi: enabled: false @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 0da3b186-8879-4e94-8738-55b48762f1e8 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-gainsight-px githubIssueLabel: source-gainsight-px icon: gainsight-px.svg diff --git a/docs/integrations/sources/gainsight-px.md b/docs/integrations/sources/gainsight-px.md index 14486f19c17f..fe17f7edcdd1 100644 --- a/docs/integrations/sources/gainsight-px.md +++ b/docs/integrations/sources/gainsight-px.md @@ -74,6 +74,7 @@ Gainsight-PX-API's [API reference](https://gainsightpx.docs.apiary.io/) has v1 a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:----------------------------------------| +| 0.2.2 | 2024-10-29 | [47864](https://github.com/airbytehq/airbyte/pull/47864) | Update dependencies | | 0.2.1 | 2024-10-28 | [47626](https://github.com/airbytehq/airbyte/pull/47626) | Update dependencies | | 0.2.0 | 2024-08-19 | [44414](https://github.com/airbytehq/airbyte/pull/44414) | Refactor connector to manifest-only format | | 0.1.14 | 2024-08-17 | [44248](https://github.com/airbytehq/airbyte/pull/44248) | Update dependencies | From b95812bc42a5902c9c081c71afe7cce975c49009 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:11:58 +0200 Subject: [PATCH 415/808] =?UTF-8?q?=F0=9F=90=99=20source-northpass-lms:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47863)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-northpass-lms/metadata.yaml | 4 ++-- docs/integrations/sources/northpass-lms.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml b/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml index 252a7114178c..25b144d5e912 100644 --- a/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml +++ b/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: dd4d317e-7537-456c-b6ba-264b17ce6daa - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-northpass-lms githubIssueLabel: source-northpass-lms icon: icon.svg diff --git a/docs/integrations/sources/northpass-lms.md b/docs/integrations/sources/northpass-lms.md index 605fc8b662fd..cadb26618ed3 100644 --- a/docs/integrations/sources/northpass-lms.md +++ b/docs/integrations/sources/northpass-lms.md @@ -81,6 +81,7 @@ Link to Northpass LMS API documentation [here](https://developers.northpass.com/ | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 0.2.2 | 2024-10-29 | [47863](https://github.com/airbytehq/airbyte/pull/47863) | Update dependencies | | 0.2.1 | 2024-10-28 | [47520](https://github.com/airbytehq/airbyte/pull/47520) | Update dependencies | | 0.2.0 | 2024-08-26 | [44771](https://github.com/airbytehq/airbyte/pull/44771) | Refactor connector to manifest-only format | | 0.1.4 | 2024-08-24 | [44684](https://github.com/airbytehq/airbyte/pull/44684) | Update dependencies | From 6d62a0f932db8b7d4458fa866268e92afc273fe9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:12:01 +0200 Subject: [PATCH 416/808] =?UTF-8?q?=F0=9F=90=99=20source-zoho-inventory:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47862)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zoho-inventory/metadata.yaml | 4 ++-- docs/integrations/sources/zoho-inventory.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-zoho-inventory/metadata.yaml b/airbyte-integrations/connectors/source-zoho-inventory/metadata.yaml index 54bb74422295..0bc31106595c 100644 --- a/airbyte-integrations/connectors/source-zoho-inventory/metadata.yaml +++ b/airbyte-integrations/connectors/source-zoho-inventory/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-zoho-inventory connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 757a3302-b2d5-4fb5-ae7f-b161fd619215 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-zoho-inventory githubIssueLabel: source-zoho-inventory icon: icon.svg diff --git a/docs/integrations/sources/zoho-inventory.md b/docs/integrations/sources/zoho-inventory.md index 09dea9015a65..94837882a3b1 100644 --- a/docs/integrations/sources/zoho-inventory.md +++ b/docs/integrations/sources/zoho-inventory.md @@ -35,6 +35,7 @@ The Zoho Inventory connector enables seamless data synchronization between Zoho | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47862](https://github.com/airbytehq/airbyte/pull/47862) | Update dependencies | | 0.0.2 | 2024-10-28 | [47605](https://github.com/airbytehq/airbyte/pull/47605) | Update dependencies | | 0.0.1 | 2024-10-19 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 867d3aae754eacd6a2629a5c39e97ba3611e2017 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:12:05 +0200 Subject: [PATCH 417/808] =?UTF-8?q?=F0=9F=90=99=20destination-duckdb:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47861)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-duckdb/metadata.yaml | 2 +- .../connectors/destination-duckdb/poetry.lock | 12 ++++++------ .../connectors/destination-duckdb/pyproject.toml | 2 +- docs/integrations/destinations/duckdb.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-duckdb/metadata.yaml b/airbyte-integrations/connectors/destination-duckdb/metadata.yaml index 9674eed9d20b..aef2a5922555 100644 --- a/airbyte-integrations/connectors/destination-duckdb/metadata.yaml +++ b/airbyte-integrations/connectors/destination-duckdb/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 94bd199c-2ff0-4aa2-b98e-17f0acb72610 - dockerImageTag: 0.4.25 + dockerImageTag: 0.4.26 dockerRepository: airbyte/destination-duckdb githubIssueLabel: destination-duckdb icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-duckdb/poetry.lock b/airbyte-integrations/connectors/destination-duckdb/poetry.lock index e33c542743f9..aed9756a11c3 100644 --- a/airbyte-integrations/connectors/destination-duckdb/poetry.lock +++ b/airbyte-integrations/connectors/destination-duckdb/poetry.lock @@ -1318,23 +1318,23 @@ files = [ [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-duckdb/pyproject.toml b/airbyte-integrations/connectors/destination-duckdb/pyproject.toml index ffc83ccee8b2..0b7c7cb76ae0 100644 --- a/airbyte-integrations/connectors/destination-duckdb/pyproject.toml +++ b/airbyte-integrations/connectors/destination-duckdb/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-duckdb" -version = "0.4.25" +version = "0.4.26" description = "Destination implementation for Duckdb." authors = ["Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/duckdb.md b/docs/integrations/destinations/duckdb.md index 311d2f8f78b1..907935cf6a85 100644 --- a/docs/integrations/destinations/duckdb.md +++ b/docs/integrations/destinations/duckdb.md @@ -116,6 +116,7 @@ This error may indicate that you are connecting with a `0.10.x` DuckDB client (a | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.4.26 | 2024-10-29 | [47861](https://github.com/airbytehq/airbyte/pull/47861) | Update dependencies | | 0.4.25 | 2024-10-28 | [47070](https://github.com/airbytehq/airbyte/pull/47070) | Update dependencies | | 0.4.24 | 2024-10-12 | [46845](https://github.com/airbytehq/airbyte/pull/46845) | Update dependencies | | 0.4.23 | 2024-10-05 | [46463](https://github.com/airbytehq/airbyte/pull/46463) | Update dependencies | From 29659ad66f82af795162e30e525d449992d1b73b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:12:08 +0200 Subject: [PATCH 418/808] =?UTF-8?q?=F0=9F=90=99=20source-commercetools:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-10-29]=20(#47859)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-commercetools/metadata.yaml | 2 +- .../connectors/source-commercetools/poetry.lock | 12 ++++++------ .../connectors/source-commercetools/pyproject.toml | 2 +- docs/integrations/sources/commercetools.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-commercetools/metadata.yaml b/airbyte-integrations/connectors/source-commercetools/metadata.yaml index f2fb4129ef74..6a547e186f70 100644 --- a/airbyte-integrations/connectors/source-commercetools/metadata.yaml +++ b/airbyte-integrations/connectors/source-commercetools/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: 008b2e26-11a3-11ec-82a8-0242ac130003 - dockerImageTag: 0.2.21 + dockerImageTag: 0.2.22 dockerRepository: airbyte/source-commercetools githubIssueLabel: source-commercetools icon: commercetools.svg diff --git a/airbyte-integrations/connectors/source-commercetools/poetry.lock b/airbyte-integrations/connectors/source-commercetools/poetry.lock index 711efc8fb7ce..c2268c5899fb 100644 --- a/airbyte-integrations/connectors/source-commercetools/poetry.lock +++ b/airbyte-integrations/connectors/source-commercetools/poetry.lock @@ -1285,23 +1285,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-commercetools/pyproject.toml b/airbyte-integrations/connectors/source-commercetools/pyproject.toml index 87cc076ca7da..51279f3a853d 100644 --- a/airbyte-integrations/connectors/source-commercetools/pyproject.toml +++ b/airbyte-integrations/connectors/source-commercetools/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.21" +version = "0.2.22" name = "source-commercetools" description = "Source implementation for Commercetools." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/commercetools.md b/docs/integrations/sources/commercetools.md index be2db479232f..ee879e82ef3e 100644 --- a/docs/integrations/sources/commercetools.md +++ b/docs/integrations/sources/commercetools.md @@ -52,6 +52,7 @@ Commercetools has some [rate limit restrictions](https://docs.commercetools.com/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------ | +| 0.2.22 | 2024-10-29 | [47859](https://github.com/airbytehq/airbyte/pull/47859) | Update dependencies | | 0.2.21 | 2024-10-28 | [47112](https://github.com/airbytehq/airbyte/pull/47112) | Update dependencies | | 0.2.20 | 2024-10-12 | [46779](https://github.com/airbytehq/airbyte/pull/46779) | Update dependencies | | 0.2.19 | 2024-10-05 | [46497](https://github.com/airbytehq/airbyte/pull/46497) | Update dependencies | From d708a1a75eb312c531796d5c74feee4d83c9cf84 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:12:12 +0200 Subject: [PATCH 419/808] =?UTF-8?q?=F0=9F=90=99=20source-shortio:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47858)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-shortio/metadata.yaml | 4 ++-- docs/integrations/sources/shortio.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-shortio/metadata.yaml b/airbyte-integrations/connectors/source-shortio/metadata.yaml index 8c7b19e70f6e..e33a1802934d 100644 --- a/airbyte-integrations/connectors/source-shortio/metadata.yaml +++ b/airbyte-integrations/connectors/source-shortio/metadata.yaml @@ -4,7 +4,7 @@ data: - https://api.short.io - https://api-v2.short.cm connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa remoteRegistries: pypi: enabled: false @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2fed2292-5586-480c-af92-9944e39fe12d - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-shortio githubIssueLabel: source-shortio icon: shortio.svg diff --git a/docs/integrations/sources/shortio.md b/docs/integrations/sources/shortio.md index c9d4b04cfc32..b8d4f2216568 100644 --- a/docs/integrations/sources/shortio.md +++ b/docs/integrations/sources/shortio.md @@ -44,6 +44,7 @@ This Source is capable of syncing the following Streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.3.3 | 2024-10-29 | [47858](https://github.com/airbytehq/airbyte/pull/47858) | Update dependencies | | 0.3.2 | 2024-10-28 | [47564](https://github.com/airbytehq/airbyte/pull/47564) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-14 | [44066](https://github.com/airbytehq/airbyte/pull/44066) | Refactor connector to manifest-only format | From a6217495a8b4155196ee606452111e46a223c9f7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:12:16 +0200 Subject: [PATCH 420/808] =?UTF-8?q?=F0=9F=90=99=20source-datascope:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47857)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-datascope/metadata.yaml | 4 ++-- docs/integrations/sources/datascope.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-datascope/metadata.yaml b/airbyte-integrations/connectors/source-datascope/metadata.yaml index 5d38db344a6e..0841313113e1 100644 --- a/airbyte-integrations/connectors/source-datascope/metadata.yaml +++ b/airbyte-integrations/connectors/source-datascope/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8e1ae2d2-4790-44d3-9d83-75b3fc3940ff - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-datascope githubIssueLabel: source-datascope icon: datascope.svg @@ -42,5 +42,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/datascope.md b/docs/integrations/sources/datascope.md index bb4eacddc4c4..3becaf55d61e 100644 --- a/docs/integrations/sources/datascope.md +++ b/docs/integrations/sources/datascope.md @@ -64,6 +64,7 @@ GET https://www.mydatascope.com/api/external/locations | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------- | +| 0.2.3 | 2024-10-29 | [47857](https://github.com/airbytehq/airbyte/pull/47857) | Update dependencies | | 0.2.2 | 2024-10-28 | [47451](https://github.com/airbytehq/airbyte/pull/47451) | Update dependencies | | 0.2.1 | 2024-10-21 | [47206](https://github.com/airbytehq/airbyte/pull/47206) | Update dependencies | | 0.2.0 | 2024-08-19 | [44416](https://github.com/airbytehq/airbyte/pull/44416) | Refactor connector to manifest-only format | From 31c8f445cde6f3ee30f33c68824acf90c20735a6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:12:20 +0200 Subject: [PATCH 421/808] =?UTF-8?q?=F0=9F=90=99=20source-solarwinds-servic?= =?UTF-8?q?e-desk:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47855)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-solarwinds-service-desk/metadata.yaml | 4 ++-- docs/integrations/sources/solarwinds-service-desk.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-solarwinds-service-desk/metadata.yaml b/airbyte-integrations/connectors/source-solarwinds-service-desk/metadata.yaml index a2feae5670f5..6e818217b7f4 100644 --- a/airbyte-integrations/connectors/source-solarwinds-service-desk/metadata.yaml +++ b/airbyte-integrations/connectors/source-solarwinds-service-desk/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-solarwinds-service-desk connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 7fc8e411-25e6-4c8a-aab0-0b662a833c8c - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-solarwinds-service-desk githubIssueLabel: source-solarwinds-service-desk icon: icon.svg diff --git a/docs/integrations/sources/solarwinds-service-desk.md b/docs/integrations/sources/solarwinds-service-desk.md index 64563faa0e60..2b9f20739849 100644 --- a/docs/integrations/sources/solarwinds-service-desk.md +++ b/docs/integrations/sources/solarwinds-service-desk.md @@ -45,6 +45,7 @@ Documentation: https://apidoc.samanage.com/#section/General-Concepts | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47855](https://github.com/airbytehq/airbyte/pull/47855) | Update dependencies | | 0.0.1 | 2024-10-10 | [46707](https://github.com/airbytehq/airbyte/pull/46707) | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | From 21681cb80ef3094720f0501a95511c1437cf5800 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:12:23 +0200 Subject: [PATCH 422/808] =?UTF-8?q?=F0=9F=90=99=20source-qonto:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47854)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-qonto/metadata.yaml | 4 ++-- docs/integrations/sources/qonto.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-qonto/metadata.yaml b/airbyte-integrations/connectors/source-qonto/metadata.yaml index 115d6491cef1..58d849301c21 100644 --- a/airbyte-integrations/connectors/source-qonto/metadata.yaml +++ b/airbyte-integrations/connectors/source-qonto/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ccd3901d-edf3-4e58-900c-942d6990aa59 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-qonto githubIssueLabel: source-qonto icon: qonto.svg @@ -27,7 +27,7 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa remoteRegistries: pypi: enabled: false diff --git a/docs/integrations/sources/qonto.md b/docs/integrations/sources/qonto.md index 4cd811589169..9001c5bbab14 100644 --- a/docs/integrations/sources/qonto.md +++ b/docs/integrations/sources/qonto.md @@ -10,6 +10,7 @@ The Airbyte Source for [Qonto](https://qonto.com) | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------- | +| 0.3.2 | 2024-10-29 | [47854](https://github.com/airbytehq/airbyte/pull/47854) | Update dependencies | | 0.3.1 | 2024-10-28 | [47490](https://github.com/airbytehq/airbyte/pull/47490) | Update dependencies | | 0.3.0 | 2024-10-06 | [46523](https://github.com/airbytehq/airbyte/pull/46523) | Migrate to Manifest-only | | 0.2.22 | 2024-10-05 | [46414](https://github.com/airbytehq/airbyte/pull/46414) | Update dependencies | From 1811c7663678a2444e600ea554eb1404ccb92267 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:13:18 +0200 Subject: [PATCH 423/808] =?UTF-8?q?=F0=9F=90=99=20source-thinkific:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47525)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-thinkific/metadata.yaml | 4 ++-- docs/integrations/sources/thinkific.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-thinkific/metadata.yaml b/airbyte-integrations/connectors/source-thinkific/metadata.yaml index fec84812f97e..d46459891f05 100644 --- a/airbyte-integrations/connectors/source-thinkific/metadata.yaml +++ b/airbyte-integrations/connectors/source-thinkific/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-thinkific connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.3@sha256:17e68ba49ad98448d350b7647510b629a099b624b77dd565fc6b47fcd107d739 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 80e5803c-7013-4ecc-a3b1-2344ce43e054 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-thinkific githubIssueLabel: source-thinkific icon: icon.svg diff --git a/docs/integrations/sources/thinkific.md b/docs/integrations/sources/thinkific.md index 472a401fe5b9..088118788d23 100644 --- a/docs/integrations/sources/thinkific.md +++ b/docs/integrations/sources/thinkific.md @@ -30,6 +30,7 @@ Airbyte connector for Thinkific, allowing you to seamlessly sync data like users | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47525](https://github.com/airbytehq/airbyte/pull/47525) | Update dependencies | | 0.0.1 | 2024-10-07 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From d35ad28d6bcdfc34d229695fde05f0a53217a6e5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:13:41 +0200 Subject: [PATCH 424/808] =?UTF-8?q?=F0=9F=90=99=20source-rki-covid:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47083)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rki-covid/metadata.yaml | 2 +- .../connectors/source-rki-covid/poetry.lock | 136 +++++++++--------- .../source-rki-covid/pyproject.toml | 2 +- docs/integrations/sources/rki-covid.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-rki-covid/metadata.yaml b/airbyte-integrations/connectors/source-rki-covid/metadata.yaml index a1dff9fb1bea..670619bfc38d 100644 --- a/airbyte-integrations/connectors/source-rki-covid/metadata.yaml +++ b/airbyte-integrations/connectors/source-rki-covid/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d78e5de0-aa44-4744-aa4f-74c818ccfe19 - dockerImageTag: 0.1.23 + dockerImageTag: 0.1.24 dockerRepository: airbyte/source-rki-covid githubIssueLabel: source-rki-covid icon: rki.svg diff --git a/airbyte-integrations/connectors/source-rki-covid/poetry.lock b/airbyte-integrations/connectors/source-rki-covid/poetry.lock index 1d52a6b48880..7a6a3934921d 100644 --- a/airbyte-integrations/connectors/source-rki-covid/poetry.lock +++ b/airbyte-integrations/connectors/source-rki-covid/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,23 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-rki-covid/pyproject.toml b/airbyte-integrations/connectors/source-rki-covid/pyproject.toml index 25fcf7f75131..426d4e9c8a56 100644 --- a/airbyte-integrations/connectors/source-rki-covid/pyproject.toml +++ b/airbyte-integrations/connectors/source-rki-covid/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.23" +version = "0.1.24" name = "source-rki-covid" description = "Source implementation for Rki Covid." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/rki-covid.md b/docs/integrations/sources/rki-covid.md index 46592cebffef..76cc2029efa3 100644 --- a/docs/integrations/sources/rki-covid.md +++ b/docs/integrations/sources/rki-covid.md @@ -56,6 +56,7 @@ Select start date | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------- | +| 0.1.24 | 2024-10-29 | [47083](https://github.com/airbytehq/airbyte/pull/47083) | Update dependencies | | 0.1.23 | 2024-10-12 | [46791](https://github.com/airbytehq/airbyte/pull/46791) | Update dependencies | | 0.1.22 | 2024-10-05 | [46495](https://github.com/airbytehq/airbyte/pull/46495) | Update dependencies | | 0.1.21 | 2024-09-28 | [46123](https://github.com/airbytehq/airbyte/pull/46123) | Update dependencies | From e4348b514c46f9204dd0ba828ccfe94bfdb0200f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:13:44 +0200 Subject: [PATCH 425/808] =?UTF-8?q?=F0=9F=90=99=20source-zendesk-talk:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47082)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-zendesk-talk/metadata.yaml | 2 +- .../source-zendesk-talk/poetry.lock | 136 +++++++++--------- .../source-zendesk-talk/pyproject.toml | 2 +- docs/integrations/sources/zendesk-talk.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml index 1210b8979b78..24d34150d750 100644 --- a/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: c8630570-086d-4a40-99ae-ea5b18673071 - dockerImageTag: 1.0.20 + dockerImageTag: 1.0.21 dockerRepository: airbyte/source-zendesk-talk documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-talk githubIssueLabel: source-zendesk-talk diff --git a/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock b/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock index 5b49d265ec7e..75b21a1e048d 100644 --- a/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock +++ b/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -884,23 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml b/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml index ff7cd4730a16..1dce237a360a 100644 --- a/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml +++ b/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.20" +version = "1.0.21" name = "source-zendesk-talk" description = "Source implementation for Zendesk Talk." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zendesk-talk.md b/docs/integrations/sources/zendesk-talk.md index 031c045efe66..2964044982eb 100644 --- a/docs/integrations/sources/zendesk-talk.md +++ b/docs/integrations/sources/zendesk-talk.md @@ -79,6 +79,7 @@ The Zendesk connector should not run into Zendesk API limitations under normal u | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------| +| 1.0.21 | 2024-10-29 | [47082](https://github.com/airbytehq/airbyte/pull/47082) | Update dependencies | | 1.0.20 | 2024-10-12 | [46861](https://github.com/airbytehq/airbyte/pull/46861) | Update dependencies | | 1.0.19 | 2024-10-05 | [46394](https://github.com/airbytehq/airbyte/pull/46394) | Update dependencies | | 1.0.18 | 2024-09-28 | [46149](https://github.com/airbytehq/airbyte/pull/46149) | Update dependencies | From 3284845cab12e099cb51783107bf2f986ac5791e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:13:48 +0200 Subject: [PATCH 426/808] =?UTF-8?q?=F0=9F=90=99=20source-azure-table:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47050)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-azure-table/metadata.yaml | 2 +- .../connectors/source-azure-table/poetry.lock | 320 +++++++++--------- .../source-azure-table/pyproject.toml | 2 +- docs/integrations/sources/azure-table.md | 1 + 4 files changed, 155 insertions(+), 170 deletions(-) diff --git a/airbyte-integrations/connectors/source-azure-table/metadata.yaml b/airbyte-integrations/connectors/source-azure-table/metadata.yaml index ee00a884d855..e22a92d2c33e 100644 --- a/airbyte-integrations/connectors/source-azure-table/metadata.yaml +++ b/airbyte-integrations/connectors/source-azure-table/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: source definitionId: 798ae795-5189-42b6-b64e-3cb91db93338 - dockerImageTag: 0.1.27 + dockerImageTag: 0.1.28 dockerRepository: airbyte/source-azure-table githubIssueLabel: source-azure-table icon: azureblobstorage.svg diff --git a/airbyte-integrations/connectors/source-azure-table/poetry.lock b/airbyte-integrations/connectors/source-azure-table/poetry.lock index 7dfd7e3cc119..d76bc685fbd1 100644 --- a/airbyte-integrations/connectors/source-azure-table/poetry.lock +++ b/airbyte-integrations/connectors/source-azure-table/poetry.lock @@ -452,72 +452,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -1131,23 +1131,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1308,109 +1308,93 @@ files = [ [[package]] name = "yarl" -version = "1.15.0" +version = "1.17.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19"}, - {file = "yarl-1.15.0-cp310-cp310-win32.whl", hash = "sha256:4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9"}, - {file = "yarl-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1"}, - {file = "yarl-1.15.0-cp311-cp311-win32.whl", hash = "sha256:a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb"}, - {file = "yarl-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d"}, - {file = "yarl-1.15.0-cp312-cp312-win32.whl", hash = "sha256:e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4"}, - {file = "yarl-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e"}, - {file = "yarl-1.15.0-cp313-cp313-win32.whl", hash = "sha256:eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53"}, - {file = "yarl-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738"}, - {file = "yarl-1.15.0-cp38-cp38-win32.whl", hash = "sha256:d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95"}, - {file = "yarl-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9"}, - {file = "yarl-1.15.0-cp39-cp39-win32.whl", hash = "sha256:a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb"}, - {file = "yarl-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0"}, - {file = "yarl-1.15.0-py3-none-any.whl", hash = "sha256:1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5"}, - {file = "yarl-1.15.0.tar.gz", hash = "sha256:efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-azure-table/pyproject.toml b/airbyte-integrations/connectors/source-azure-table/pyproject.toml index 6e60bccb0ffa..1d567f2a4abd 100644 --- a/airbyte-integrations/connectors/source-azure-table/pyproject.toml +++ b/airbyte-integrations/connectors/source-azure-table/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.27" +version = "0.1.28" name = "source-azure-table" description = "Source implementation for Azure Table." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/azure-table.md b/docs/integrations/sources/azure-table.md index 4b8a660fe1cc..59a65ee3e324 100644 --- a/docs/integrations/sources/azure-table.md +++ b/docs/integrations/sources/azure-table.md @@ -70,6 +70,7 @@ We recommend creating a restricted key specifically for Airbyte access. This wil | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.1.28 | 2024-10-29 | [47050](https://github.com/airbytehq/airbyte/pull/47050) | Update dependencies | | 0.1.27 | 2024-10-12 | [46763](https://github.com/airbytehq/airbyte/pull/46763) | Update dependencies | | 0.1.26 | 2024-10-05 | [46396](https://github.com/airbytehq/airbyte/pull/46396) | Update dependencies | | 0.1.25 | 2024-09-28 | [46183](https://github.com/airbytehq/airbyte/pull/46183) | Update dependencies | From a89b3a3f31a14d669c6a814a65ce31268a87c999 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:13:53 +0200 Subject: [PATCH 427/808] =?UTF-8?q?=F0=9F=90=99=20source-salesloft:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47048)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-salesloft/metadata.yaml | 2 +- .../connectors/source-salesloft/poetry.lock | 267 +++++++++--------- .../source-salesloft/pyproject.toml | 2 +- docs/integrations/sources/salesloft.md | 1 + 4 files changed, 137 insertions(+), 135 deletions(-) diff --git a/airbyte-integrations/connectors/source-salesloft/metadata.yaml b/airbyte-integrations/connectors/source-salesloft/metadata.yaml index 27d50c2e2405..fae7c1da1cd7 100644 --- a/airbyte-integrations/connectors/source-salesloft/metadata.yaml +++ b/airbyte-integrations/connectors/source-salesloft/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: api connectorType: source definitionId: 41991d12-d4b5-439e-afd0-260a31d4c53f - dockerImageTag: 1.2.23 + dockerImageTag: 1.2.24 dockerRepository: airbyte/source-salesloft githubIssueLabel: source-salesloft icon: icon.svg diff --git a/airbyte-integrations/connectors/source-salesloft/poetry.lock b/airbyte-integrations/connectors/source-salesloft/poetry.lock index f73675ec1213..732d61e9625f 100644 --- a/airbyte-integrations/connectors/source-salesloft/poetry.lock +++ b/airbyte-integrations/connectors/source-salesloft/poetry.lock @@ -55,13 +55,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -72,7 +72,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -678,13 +678,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -696,138 +696,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1272,23 +1273,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-salesloft/pyproject.toml b/airbyte-integrations/connectors/source-salesloft/pyproject.toml index 9bc525c5523f..34ea141a90fa 100644 --- a/airbyte-integrations/connectors/source-salesloft/pyproject.toml +++ b/airbyte-integrations/connectors/source-salesloft/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.2.23" +version = "1.2.24" name = "source-salesloft" description = "Source implementation for Salesloft." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/salesloft.md b/docs/integrations/sources/salesloft.md index 0fa546c7089f..dbecf965ffde 100644 --- a/docs/integrations/sources/salesloft.md +++ b/docs/integrations/sources/salesloft.md @@ -105,6 +105,7 @@ Salesloft has the [rate limits](hhttps://developers.salesloft.com/api.html#!/Top | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------------- | +| 1.2.24 | 2024-10-29 | [47048](https://github.com/airbytehq/airbyte/pull/47048) | Update dependencies | | 1.2.23 | 2024-10-12 | [46833](https://github.com/airbytehq/airbyte/pull/46833) | Update dependencies | | 1.2.22 | 2024-10-05 | [46491](https://github.com/airbytehq/airbyte/pull/46491) | Update dependencies | | 1.2.21 | 2024-09-28 | [46186](https://github.com/airbytehq/airbyte/pull/46186) | Update dependencies | From ef484ee0479af493a5260e427c84329a143d9f7a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:13:59 +0200 Subject: [PATCH 428/808] =?UTF-8?q?=F0=9F=90=99=20source-typeform:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#46853)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-typeform/metadata.yaml | 2 +- .../connectors/source-typeform/poetry.lock | 465 +++++++++--------- .../connectors/source-typeform/pyproject.toml | 2 +- docs/integrations/sources/typeform.md | 1 + 4 files changed, 244 insertions(+), 226 deletions(-) diff --git a/airbyte-integrations/connectors/source-typeform/metadata.yaml b/airbyte-integrations/connectors/source-typeform/metadata.yaml index ca1707b3127f..33a7a531486c 100644 --- a/airbyte-integrations/connectors/source-typeform/metadata.yaml +++ b/airbyte-integrations/connectors/source-typeform/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: e7eff203-90bf-43e5-a240-19ea3056c474 - dockerImageTag: 1.3.17 + dockerImageTag: 1.3.18 dockerRepository: airbyte/source-typeform documentationUrl: https://docs.airbyte.com/integrations/sources/typeform githubIssueLabel: source-typeform diff --git a/airbyte-integrations/connectors/source-typeform/poetry.lock b/airbyte-integrations/connectors/source-typeform/poetry.lock index 38696524a508..f2423c808fe3 100644 --- a/airbyte-integrations/connectors/source-typeform/poetry.lock +++ b/airbyte-integrations/connectors/source-typeform/poetry.lock @@ -55,13 +55,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -72,7 +72,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -255,101 +255,116 @@ pycparser = "*" [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] @@ -663,13 +678,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.131" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.131-py3-none-any.whl", hash = "sha256:80c106b1c42307195cc0bb3a596472c41ef91b79d15bcee9938307800336c563"}, - {file = "langsmith-0.1.131.tar.gz", hash = "sha256:626101a3bf3ca481e5110d5155ace8aa066e4e9cc2fa7d96c8290ade0fbff797"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -681,137 +696,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1256,23 +1273,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-typeform/pyproject.toml b/airbyte-integrations/connectors/source-typeform/pyproject.toml index 116ac4aadb36..27d7e0adc73d 100644 --- a/airbyte-integrations/connectors/source-typeform/pyproject.toml +++ b/airbyte-integrations/connectors/source-typeform/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.3.17" +version = "1.3.18" name = "source-typeform" description = "Source implementation for Typeform." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/typeform.md b/docs/integrations/sources/typeform.md index fca2ab975927..b3012c0cba56 100644 --- a/docs/integrations/sources/typeform.md +++ b/docs/integrations/sources/typeform.md @@ -101,6 +101,7 @@ API rate limits \(2 requests per second\): [https://developer.typeform.com/get-s | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:------------------------------------------------------------------------------------------------| +| 1.3.18 | 2024-10-29 | [46853](https://github.com/airbytehq/airbyte/pull/46853) | Update dependencies | | 1.3.17 | 2024-10-05 | [46479](https://github.com/airbytehq/airbyte/pull/46479) | Update dependencies | | 1.3.16 | 2024-09-28 | [46170](https://github.com/airbytehq/airbyte/pull/46170) | Update dependencies | | 1.3.15 | 2024-09-21 | [45495](https://github.com/airbytehq/airbyte/pull/45495) | Update dependencies | From e19487bdbce57ce9a6739223fdd5e8ab084b6397 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:14:05 +0200 Subject: [PATCH 429/808] =?UTF-8?q?=F0=9F=90=99=20source-orb:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-29]=20(#46770)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-orb/metadata.yaml | 2 +- .../connectors/source-orb/poetry.lock | 340 +++++++++--------- .../connectors/source-orb/pyproject.toml | 2 +- docs/integrations/sources/orb.md | 1 + 4 files changed, 181 insertions(+), 164 deletions(-) diff --git a/airbyte-integrations/connectors/source-orb/metadata.yaml b/airbyte-integrations/connectors/source-orb/metadata.yaml index e23ee1e56646..8effe1fbcfa3 100644 --- a/airbyte-integrations/connectors/source-orb/metadata.yaml +++ b/airbyte-integrations/connectors/source-orb/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7f0455fb-4518-4ec0-b7a3-d808bf8081cc - dockerImageTag: 2.0.13 + dockerImageTag: 2.0.14 dockerRepository: airbyte/source-orb githubIssueLabel: source-orb icon: orb.svg diff --git a/airbyte-integrations/connectors/source-orb/poetry.lock b/airbyte-integrations/connectors/source-orb/poetry.lock index 121f44db8750..fde056326f1b 100644 --- a/airbyte-integrations/connectors/source-orb/poetry.lock +++ b/airbyte-integrations/connectors/source-orb/poetry.lock @@ -151,101 +151,116 @@ files = [ [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] @@ -303,13 +318,13 @@ test = ["pytest (>=6)"] [[package]] name = "faker" -version = "30.1.0" +version = "30.8.1" description = "Faker is a Python package that generates fake data for you." optional = false python-versions = ">=3.8" files = [ - {file = "Faker-30.1.0-py3-none-any.whl", hash = "sha256:dbf81295c948270a9e96cd48a9a3ebec73acac9a153d0c854fbbd0294557609f"}, - {file = "faker-30.1.0.tar.gz", hash = "sha256:e0593931bd7be9a9ea984b5d8c302ef1cec19392585d1e90d444199271d0a94d"}, + {file = "Faker-30.8.1-py3-none-any.whl", hash = "sha256:4f7f133560b9d4d2a915581f4ba86f9a6a83421b89e911f36c4c96cff58135a5"}, + {file = "faker-30.8.1.tar.gz", hash = "sha256:93e8b70813f76d05d98951154681180cb795cfbcff3eced7680d963bcc0da2a9"}, ] [package.dependencies] @@ -416,71 +431,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -915,23 +931,23 @@ tests = ["coverage (>=3.7.1,<6.0.0)", "flake8", "mypy", "pytest (>=4.6)", "pytes [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-orb/pyproject.toml b/airbyte-integrations/connectors/source-orb/pyproject.toml index 812c2d4a6dec..abf1c1ac1d86 100644 --- a/airbyte-integrations/connectors/source-orb/pyproject.toml +++ b/airbyte-integrations/connectors/source-orb/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.13" +version = "2.0.14" name = "source-orb" description = "Source implementation for Orb." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/orb.md b/docs/integrations/sources/orb.md index 6239c5eefbf9..8f957b1a62e9 100644 --- a/docs/integrations/sources/orb.md +++ b/docs/integrations/sources/orb.md @@ -65,6 +65,7 @@ an Orb Account and API Key. | Version | Date | Pull Request | Subject | |---------|------------| -------------------------------------------------------- |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 2.0.14 | 2024-10-29 | [46770](https://github.com/airbytehq/airbyte/pull/46770) | Update dependencies | | 2.0.13 | 2024-10-05 | [46395](https://github.com/airbytehq/airbyte/pull/46395) | Update dependencies | | 2.0.12 | 2024-09-28 | [45785](https://github.com/airbytehq/airbyte/pull/45785) | Update dependencies | | 2.0.11 | 2024-09-14 | [45472](https://github.com/airbytehq/airbyte/pull/45472) | Update dependencies | From 3852b10e84f899a4528ccc39bfb2b01276da292e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:14:16 +0200 Subject: [PATCH 430/808] =?UTF-8?q?=F0=9F=90=99=20source-trello:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#43914)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-trello/metadata.yaml | 4 ++-- docs/integrations/sources/trello.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-trello/metadata.yaml b/airbyte-integrations/connectors/source-trello/metadata.yaml index f4da7b0d338d..4460f8626eb0 100644 --- a/airbyte-integrations/connectors/source-trello/metadata.yaml +++ b/airbyte-integrations/connectors/source-trello/metadata.yaml @@ -6,7 +6,7 @@ data: hosts: - api.trello.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa remoteRegistries: pypi: enabled: false @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8da67652-004c-11ec-9a03-0242ac130003 - dockerImageTag: 1.2.0 + dockerImageTag: 1.2.1 dockerRepository: airbyte/source-trello documentationUrl: https://docs.airbyte.com/integrations/sources/trello githubIssueLabel: source-trello diff --git a/docs/integrations/sources/trello.md b/docs/integrations/sources/trello.md index c07c8ed325c6..3b21f5687e8a 100644 --- a/docs/integrations/sources/trello.md +++ b/docs/integrations/sources/trello.md @@ -83,6 +83,7 @@ The Trello connector should not run into Trello API limitations under normal usa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------- | +| 1.2.1 | 2024-10-29 | [43914](https://github.com/airbytehq/airbyte/pull/43914) | Update dependencies | | 1.2.0 | 2024-10-22 | [47257](https://github.com/airbytehq/airbyte/pull/47257) | Migrate to Manifest-only | | 1.1.0 | 2024-07-17 | [42019](https://github.com/airbytehq/airbyte/pull/42019) | Migrate to CDK v3.5.3 | | 1.0.10 | 2024-07-13 | [41774](https://github.com/airbytehq/airbyte/pull/41774) | Update dependencies | From 73ee2cb87d060523a898f02fc65be17c0f68c588 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 20:14:42 +0200 Subject: [PATCH 431/808] =?UTF-8?q?=F0=9F=90=99=20destination-firestore:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#43758)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-firestore/metadata.yaml | 2 +- .../destination-firestore/poetry.lock | 440 +++++++++--------- .../destination-firestore/pyproject.toml | 2 +- docs/integrations/destinations/firestore.md | 1 + 4 files changed, 224 insertions(+), 221 deletions(-) diff --git a/airbyte-integrations/connectors/destination-firestore/metadata.yaml b/airbyte-integrations/connectors/destination-firestore/metadata.yaml index e1ae70c23bff..82026c96db07 100644 --- a/airbyte-integrations/connectors/destination-firestore/metadata.yaml +++ b/airbyte-integrations/connectors/destination-firestore/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 27dc7500-6d1b-40b1-8b07-e2f2aea3c9f4 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/destination-firestore githubIssueLabel: destination-firestore icon: firestore.svg diff --git a/airbyte-integrations/connectors/destination-firestore/poetry.lock b/airbyte-integrations/connectors/destination-firestore/poetry.lock index ee1f2760fe33..b0c8e4f25138 100644 --- a/airbyte-integrations/connectors/destination-firestore/poetry.lock +++ b/airbyte-integrations/connectors/destination-firestore/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "5.13.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.13.0-py3-none-any.whl", hash = "sha256:b26c99631e797c0bdb8373a6a05c81bf62b7d7397ca41b6ee05702d1013bd389"}, - {file = "airbyte_cdk-5.13.0.tar.gz", hash = "sha256:ab5799a238366dff61a8cded347b02deb63818513af4e61e2d1a51608a2280df"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -43,6 +43,7 @@ xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -69,13 +70,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.2" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "anyio-4.6.2-py3-none-any.whl", hash = "sha256:6caec6b1391f6f6d7b2ef2258d2902d36753149f67478f7df4be8e54d03a8f54"}, - {file = "anyio-4.6.2.tar.gz", hash = "sha256:f72a7bb3dd0752b3bd8b17a844a019d7fbf6ae218c588f4f9ba1b2f600b12347"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -515,13 +516,13 @@ files = [ [[package]] name = "google-api-core" -version = "2.21.0" +version = "2.22.0" description = "Google API client core library" optional = false python-versions = ">=3.7" files = [ - {file = "google_api_core-2.21.0-py3-none-any.whl", hash = "sha256:6869eacb2a37720380ba5898312af79a4d30b8bca1548fb4093e0697dc4bdf5d"}, - {file = "google_api_core-2.21.0.tar.gz", hash = "sha256:4a152fd11a9f774ea606388d423b68aa7e6d6a0ffe4c8266f74979613ec09f81"}, + {file = "google_api_core-2.22.0-py3-none-any.whl", hash = "sha256:a6652b6bd51303902494998626653671703c420f6f4c88cfd3f50ed723e9d021"}, + {file = "google_api_core-2.22.0.tar.gz", hash = "sha256:26f8d76b96477db42b55fd02a33aae4a42ec8b86b98b94969b7333a2c828bf35"}, ] [package.dependencies] @@ -626,85 +627,85 @@ grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] [[package]] name = "grpcio" -version = "1.66.2" +version = "1.67.1" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.66.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:fe96281713168a3270878255983d2cb1a97e034325c8c2c25169a69289d3ecfa"}, - {file = "grpcio-1.66.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:73fc8f8b9b5c4a03e802b3cd0c18b2b06b410d3c1dcbef989fdeb943bd44aff7"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:03b0b307ba26fae695e067b94cbb014e27390f8bc5ac7a3a39b7723fed085604"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d69ce1f324dc2d71e40c9261d3fdbe7d4c9d60f332069ff9b2a4d8a257c7b2b"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05bc2ceadc2529ab0b227b1310d249d95d9001cd106aa4d31e8871ad3c428d73"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ac475e8da31484efa25abb774674d837b343afb78bb3bcdef10f81a93e3d6bf"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0be4e0490c28da5377283861bed2941d1d20ec017ca397a5df4394d1c31a9b50"}, - {file = "grpcio-1.66.2-cp310-cp310-win32.whl", hash = "sha256:4e504572433f4e72b12394977679161d495c4c9581ba34a88d843eaf0f2fbd39"}, - {file = "grpcio-1.66.2-cp310-cp310-win_amd64.whl", hash = "sha256:2018b053aa15782db2541ca01a7edb56a0bf18c77efed975392583725974b249"}, - {file = "grpcio-1.66.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:2335c58560a9e92ac58ff2bc5649952f9b37d0735608242973c7a8b94a6437d8"}, - {file = "grpcio-1.66.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45a3d462826f4868b442a6b8fdbe8b87b45eb4f5b5308168c156b21eca43f61c"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:a9539f01cb04950fd4b5ab458e64a15f84c2acc273670072abe49a3f29bbad54"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce89f5876662f146d4c1f695dda29d4433a5d01c8681fbd2539afff535da14d4"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d25a14af966438cddf498b2e338f88d1c9706f3493b1d73b93f695c99c5f0e2a"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6001e575b8bbd89eee11960bb640b6da6ae110cf08113a075f1e2051cc596cae"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ea1d062c9230278793820146c95d038dc0f468cbdd172eec3363e42ff1c7d01"}, - {file = "grpcio-1.66.2-cp311-cp311-win32.whl", hash = "sha256:38b68498ff579a3b1ee8f93a05eb48dc2595795f2f62716e797dc24774c1aaa8"}, - {file = "grpcio-1.66.2-cp311-cp311-win_amd64.whl", hash = "sha256:6851de821249340bdb100df5eacfecfc4e6075fa85c6df7ee0eb213170ec8e5d"}, - {file = "grpcio-1.66.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:802d84fd3d50614170649853d121baaaa305de7b65b3e01759247e768d691ddf"}, - {file = "grpcio-1.66.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:80fd702ba7e432994df208f27514280b4b5c6843e12a48759c9255679ad38db8"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:12fda97ffae55e6526825daf25ad0fa37483685952b5d0f910d6405c87e3adb6"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:950da58d7d80abd0ea68757769c9db0a95b31163e53e5bb60438d263f4bed7b7"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e636ce23273683b00410f1971d209bf3689238cf5538d960adc3cdfe80dd0dbd"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a917d26e0fe980b0ac7bfcc1a3c4ad6a9a4612c911d33efb55ed7833c749b0ee"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49f0ca7ae850f59f828a723a9064cadbed90f1ece179d375966546499b8a2c9c"}, - {file = "grpcio-1.66.2-cp312-cp312-win32.whl", hash = "sha256:31fd163105464797a72d901a06472860845ac157389e10f12631025b3e4d0453"}, - {file = "grpcio-1.66.2-cp312-cp312-win_amd64.whl", hash = "sha256:ff1f7882e56c40b0d33c4922c15dfa30612f05fb785074a012f7cda74d1c3679"}, - {file = "grpcio-1.66.2-cp313-cp313-linux_armv7l.whl", hash = "sha256:3b00efc473b20d8bf83e0e1ae661b98951ca56111feb9b9611df8efc4fe5d55d"}, - {file = "grpcio-1.66.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1caa38fb22a8578ab8393da99d4b8641e3a80abc8fd52646f1ecc92bcb8dee34"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c408f5ef75cfffa113cacd8b0c0e3611cbfd47701ca3cdc090594109b9fcbaed"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c806852deaedee9ce8280fe98955c9103f62912a5b2d5ee7e3eaa284a6d8d8e7"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f145cc21836c332c67baa6fc81099d1d27e266401565bf481948010d6ea32d46"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:73e3b425c1e155730273f73e419de3074aa5c5e936771ee0e4af0814631fb30a"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9c509a4f78114cbc5f0740eb3d7a74985fd2eff022971bc9bc31f8bc93e66a3b"}, - {file = "grpcio-1.66.2-cp313-cp313-win32.whl", hash = "sha256:20657d6b8cfed7db5e11b62ff7dfe2e12064ea78e93f1434d61888834bc86d75"}, - {file = "grpcio-1.66.2-cp313-cp313-win_amd64.whl", hash = "sha256:fb70487c95786e345af5e854ffec8cb8cc781bcc5df7930c4fbb7feaa72e1cdf"}, - {file = "grpcio-1.66.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:a18e20d8321c6400185b4263e27982488cb5cdd62da69147087a76a24ef4e7e3"}, - {file = "grpcio-1.66.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:02697eb4a5cbe5a9639f57323b4c37bcb3ab2d48cec5da3dc2f13334d72790dd"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:99a641995a6bc4287a6315989ee591ff58507aa1cbe4c2e70d88411c4dcc0839"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ed71e81782966ffead60268bbda31ea3f725ebf8aa73634d5dda44f2cf3fb9c"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbd27c24a4cc5e195a7f56cfd9312e366d5d61b86e36d46bbe538457ea6eb8dd"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d9a9724a156c8ec6a379869b23ba3323b7ea3600851c91489b871e375f710bc8"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d8d4732cc5052e92cea2f78b233c2e2a52998ac40cd651f40e398893ad0d06ec"}, - {file = "grpcio-1.66.2-cp38-cp38-win32.whl", hash = "sha256:7b2c86457145ce14c38e5bf6bdc19ef88e66c5fee2c3d83285c5aef026ba93b3"}, - {file = "grpcio-1.66.2-cp38-cp38-win_amd64.whl", hash = "sha256:e88264caad6d8d00e7913996030bac8ad5f26b7411495848cc218bd3a9040b6c"}, - {file = "grpcio-1.66.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:c400ba5675b67025c8a9f48aa846f12a39cf0c44df5cd060e23fda5b30e9359d"}, - {file = "grpcio-1.66.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:66a0cd8ba6512b401d7ed46bb03f4ee455839957f28b8d61e7708056a806ba6a"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:06de8ec0bd71be123eec15b0e0d457474931c2c407869b6c349bd9bed4adbac3"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb57870449dfcfac428afbb5a877829fcb0d6db9d9baa1148705739e9083880e"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b672abf90a964bfde2d0ecbce30f2329a47498ba75ce6f4da35a2f4532b7acbc"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad2efdbe90c73b0434cbe64ed372e12414ad03c06262279b104a029d1889d13e"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9c3a99c519f4638e700e9e3f83952e27e2ea10873eecd7935823dab0c1c9250e"}, - {file = "grpcio-1.66.2-cp39-cp39-win32.whl", hash = "sha256:78fa51ebc2d9242c0fc5db0feecc57a9943303b46664ad89921f5079e2e4ada7"}, - {file = "grpcio-1.66.2-cp39-cp39-win_amd64.whl", hash = "sha256:728bdf36a186e7f51da73be7f8d09457a03061be848718d0edf000e709418987"}, - {file = "grpcio-1.66.2.tar.gz", hash = "sha256:563588c587b75c34b928bc428548e5b00ea38c46972181a4d8b75ba7e3f24231"}, + {file = "grpcio-1.67.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:8b0341d66a57f8a3119b77ab32207072be60c9bf79760fa609c5609f2deb1f3f"}, + {file = "grpcio-1.67.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:f5a27dddefe0e2357d3e617b9079b4bfdc91341a91565111a21ed6ebbc51b22d"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:43112046864317498a33bdc4797ae6a268c36345a910de9b9c17159d8346602f"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9b929f13677b10f63124c1a410994a401cdd85214ad83ab67cc077fc7e480f0"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7d1797a8a3845437d327145959a2c0c47c05947c9eef5ff1a4c80e499dcc6fa"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0489063974d1452436139501bf6b180f63d4977223ee87488fe36858c5725292"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9fd042de4a82e3e7aca44008ee2fb5da01b3e5adb316348c21980f7f58adc311"}, + {file = "grpcio-1.67.1-cp310-cp310-win32.whl", hash = "sha256:638354e698fd0c6c76b04540a850bf1db27b4d2515a19fcd5cf645c48d3eb1ed"}, + {file = "grpcio-1.67.1-cp310-cp310-win_amd64.whl", hash = "sha256:608d87d1bdabf9e2868b12338cd38a79969eaf920c89d698ead08f48de9c0f9e"}, + {file = "grpcio-1.67.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:7818c0454027ae3384235a65210bbf5464bd715450e30a3d40385453a85a70cb"}, + {file = "grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ea33986b70f83844cd00814cee4451055cd8cab36f00ac64a31f5bb09b31919e"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c7a01337407dd89005527623a4a72c5c8e2894d22bead0895306b23c6695698f"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b866f73224b0634f4312a4674c1be21b2b4afa73cb20953cbbb73a6b36c3cc"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fff78ba10d4250bfc07a01bd6254a6d87dc67f9627adece85c0b2ed754fa96"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8a23cbcc5bb11ea7dc6163078be36c065db68d915c24f5faa4f872c573bb400f"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1a65b503d008f066e994f34f456e0647e5ceb34cfcec5ad180b1b44020ad4970"}, + {file = "grpcio-1.67.1-cp311-cp311-win32.whl", hash = "sha256:e29ca27bec8e163dca0c98084040edec3bc49afd10f18b412f483cc68c712744"}, + {file = "grpcio-1.67.1-cp311-cp311-win_amd64.whl", hash = "sha256:786a5b18544622bfb1e25cc08402bd44ea83edfb04b93798d85dca4d1a0b5be5"}, + {file = "grpcio-1.67.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:267d1745894200e4c604958da5f856da6293f063327cb049a51fe67348e4f953"}, + {file = "grpcio-1.67.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:85f69fdc1d28ce7cff8de3f9c67db2b0ca9ba4449644488c1e0303c146135ddb"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:f26b0b547eb8d00e195274cdfc63ce64c8fc2d3e2d00b12bf468ece41a0423a0"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4422581cdc628f77302270ff839a44f4c24fdc57887dc2a45b7e53d8fc2376af"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7616d2ded471231c701489190379e0c311ee0a6c756f3c03e6a62b95a7146e"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8a00efecde9d6fcc3ab00c13f816313c040a28450e5e25739c24f432fc6d3c75"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:699e964923b70f3101393710793289e42845791ea07565654ada0969522d0a38"}, + {file = "grpcio-1.67.1-cp312-cp312-win32.whl", hash = "sha256:4e7b904484a634a0fff132958dabdb10d63e0927398273917da3ee103e8d1f78"}, + {file = "grpcio-1.67.1-cp312-cp312-win_amd64.whl", hash = "sha256:5721e66a594a6c4204458004852719b38f3d5522082be9061d6510b455c90afc"}, + {file = "grpcio-1.67.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:aa0162e56fd10a5547fac8774c4899fc3e18c1aa4a4759d0ce2cd00d3696ea6b"}, + {file = "grpcio-1.67.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:beee96c8c0b1a75d556fe57b92b58b4347c77a65781ee2ac749d550f2a365dc1"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:a93deda571a1bf94ec1f6fcda2872dad3ae538700d94dc283c672a3b508ba3af"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6f255980afef598a9e64a24efce87b625e3e3c80a45162d111a461a9f92955"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e838cad2176ebd5d4a8bb03955138d6589ce9e2ce5d51c3ada34396dbd2dba8"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a6703916c43b1d468d0756c8077b12017a9fcb6a1ef13faf49e67d20d7ebda62"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:917e8d8994eed1d86b907ba2a61b9f0aef27a2155bca6cbb322430fc7135b7bb"}, + {file = "grpcio-1.67.1-cp313-cp313-win32.whl", hash = "sha256:e279330bef1744040db8fc432becc8a727b84f456ab62b744d3fdb83f327e121"}, + {file = "grpcio-1.67.1-cp313-cp313-win_amd64.whl", hash = "sha256:fa0c739ad8b1996bd24823950e3cb5152ae91fca1c09cc791190bf1627ffefba"}, + {file = "grpcio-1.67.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:178f5db771c4f9a9facb2ab37a434c46cb9be1a75e820f187ee3d1e7805c4f65"}, + {file = "grpcio-1.67.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0f3e49c738396e93b7ba9016e153eb09e0778e776df6090c1b8c91877cc1c426"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:24e8a26dbfc5274d7474c27759b54486b8de23c709d76695237515bc8b5baeab"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b6c16489326d79ead41689c4b84bc40d522c9a7617219f4ad94bc7f448c5085"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e6a4dcf5af7bbc36fd9f81c9f372e8ae580870a9e4b6eafe948cd334b81cf3"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:95b5f2b857856ed78d72da93cd7d09b6db8ef30102e5e7fe0961fe4d9f7d48e8"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b49359977c6ec9f5d0573ea4e0071ad278ef905aa74e420acc73fd28ce39e9ce"}, + {file = "grpcio-1.67.1-cp38-cp38-win32.whl", hash = "sha256:f5b76ff64aaac53fede0cc93abf57894ab2a7362986ba22243d06218b93efe46"}, + {file = "grpcio-1.67.1-cp38-cp38-win_amd64.whl", hash = "sha256:804c6457c3cd3ec04fe6006c739579b8d35c86ae3298ffca8de57b493524b771"}, + {file = "grpcio-1.67.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:a25bdea92b13ff4d7790962190bf6bf5c4639876e01c0f3dda70fc2769616335"}, + {file = "grpcio-1.67.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cdc491ae35a13535fd9196acb5afe1af37c8237df2e54427be3eecda3653127e"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:85f862069b86a305497e74d0dc43c02de3d1d184fc2c180993aa8aa86fbd19b8"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec74ef02010186185de82cc594058a3ccd8d86821842bbac9873fd4a2cf8be8d"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01f616a964e540638af5130469451cf580ba8c7329f45ca998ab66e0c7dcdb04"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:299b3d8c4f790c6bcca485f9963b4846dd92cf6f1b65d3697145d005c80f9fe8"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:60336bff760fbb47d7e86165408126f1dded184448e9a4c892189eb7c9d3f90f"}, + {file = "grpcio-1.67.1-cp39-cp39-win32.whl", hash = "sha256:5ed601c4c6008429e3d247ddb367fe8c7259c355757448d7c1ef7bd4a6739e8e"}, + {file = "grpcio-1.67.1-cp39-cp39-win_amd64.whl", hash = "sha256:5db70d32d6703b89912af16d6d45d78406374a8b8ef0d28140351dd0ec610e98"}, + {file = "grpcio-1.67.1.tar.gz", hash = "sha256:3dc2ed4cabea4dc14d5e708c2b426205956077cc5de419b4d4079315017e9732"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.66.2)"] +protobuf = ["grpcio-tools (>=1.67.1)"] [[package]] name = "grpcio-status" -version = "1.66.2" +version = "1.67.1" description = "Status proto mapping for gRPC" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio_status-1.66.2-py3-none-any.whl", hash = "sha256:e5fe189f6897d12aa9cd74408a17ca41e44fad30871cf84f5cbd17bd713d2455"}, - {file = "grpcio_status-1.66.2.tar.gz", hash = "sha256:fb55cbb5c2e67062f7a4d5c99e489d074fb57e98678d5c3c6692a2d74d89e9ae"}, + {file = "grpcio_status-1.67.1-py3-none-any.whl", hash = "sha256:16e6c085950bdacac97c779e6a502ea671232385e6e37f258884d6883392c2bd"}, + {file = "grpcio_status-1.67.1.tar.gz", hash = "sha256:2bf38395e028ceeecfd8866b081f61628114b384da7d51ae064ddc8d766a5d11"}, ] [package.dependencies] googleapis-common-protos = ">=1.5.5" -grpcio = ">=1.66.2" +grpcio = ">=1.67.1" protobuf = ">=5.26.1,<6.0dev" [[package]] @@ -912,13 +913,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -930,72 +931,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -1087,68 +1088,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1301,13 +1303,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "proto-plus" -version = "1.24.0" +version = "1.25.0" description = "Beautiful, Pythonic protocol buffers." optional = false python-versions = ">=3.7" files = [ - {file = "proto-plus-1.24.0.tar.gz", hash = "sha256:30b72a5ecafe4406b0d339db35b56c4059064e69227b8c3bda7462397f966445"}, - {file = "proto_plus-1.24.0-py3-none-any.whl", hash = "sha256:402576830425e5f6ce4c2a6702400ac79897dab0b4343821aa5188b0fab81a12"}, + {file = "proto_plus-1.25.0-py3-none-any.whl", hash = "sha256:c91fc4a65074ade8e458e95ef8bac34d4008daa7cce4a12d6707066fca648961"}, + {file = "proto_plus-1.25.0.tar.gz", hash = "sha256:fbb17f57f7bd05a68b7707e745e26528b0b3c34e378db91eef93912c54982d91"}, ] [package.dependencies] @@ -1318,22 +1320,22 @@ testing = ["google-api-core (>=1.31.5)"] [[package]] name = "protobuf" -version = "5.28.2" +version = "5.28.3" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-5.28.2-cp310-abi3-win32.whl", hash = "sha256:eeea10f3dc0ac7e6b4933d32db20662902b4ab81bf28df12218aa389e9c2102d"}, - {file = "protobuf-5.28.2-cp310-abi3-win_amd64.whl", hash = "sha256:2c69461a7fcc8e24be697624c09a839976d82ae75062b11a0972e41fd2cd9132"}, - {file = "protobuf-5.28.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a8b9403fc70764b08d2f593ce44f1d2920c5077bf7d311fefec999f8c40f78b7"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:35cfcb15f213449af7ff6198d6eb5f739c37d7e4f1c09b5d0641babf2cc0c68f"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:5e8a95246d581eef20471b5d5ba010d55f66740942b95ba9b872d918c459452f"}, - {file = "protobuf-5.28.2-cp38-cp38-win32.whl", hash = "sha256:87317e9bcda04a32f2ee82089a204d3a2f0d3c8aeed16568c7daf4756e4f1fe0"}, - {file = "protobuf-5.28.2-cp38-cp38-win_amd64.whl", hash = "sha256:c0ea0123dac3399a2eeb1a1443d82b7afc9ff40241433296769f7da42d142ec3"}, - {file = "protobuf-5.28.2-cp39-cp39-win32.whl", hash = "sha256:ca53faf29896c526863366a52a8f4d88e69cd04ec9571ed6082fa117fac3ab36"}, - {file = "protobuf-5.28.2-cp39-cp39-win_amd64.whl", hash = "sha256:8ddc60bf374785fb7cb12510b267f59067fa10087325b8e1855b898a0d81d276"}, - {file = "protobuf-5.28.2-py3-none-any.whl", hash = "sha256:52235802093bd8a2811abbe8bf0ab9c5f54cca0a751fdd3f6ac2a21438bffece"}, - {file = "protobuf-5.28.2.tar.gz", hash = "sha256:59379674ff119717404f7454647913787034f03fe7049cbef1d74a97bb4593f0"}, + {file = "protobuf-5.28.3-cp310-abi3-win32.whl", hash = "sha256:0c4eec6f987338617072592b97943fdbe30d019c56126493111cf24344c1cc24"}, + {file = "protobuf-5.28.3-cp310-abi3-win_amd64.whl", hash = "sha256:91fba8f445723fcf400fdbe9ca796b19d3b1242cd873907979b9ed71e4afe868"}, + {file = "protobuf-5.28.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a3f6857551e53ce35e60b403b8a27b0295f7d6eb63d10484f12bc6879c715687"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:3fa2de6b8b29d12c61911505d893afe7320ce7ccba4df913e2971461fa36d584"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:712319fbdddb46f21abb66cd33cb9e491a5763b2febd8f228251add221981135"}, + {file = "protobuf-5.28.3-cp38-cp38-win32.whl", hash = "sha256:3e6101d095dfd119513cde7259aa703d16c6bbdfae2554dfe5cfdbe94e32d548"}, + {file = "protobuf-5.28.3-cp38-cp38-win_amd64.whl", hash = "sha256:27b246b3723692bf1068d5734ddaf2fccc2cdd6e0c9b47fe099244d80200593b"}, + {file = "protobuf-5.28.3-cp39-cp39-win32.whl", hash = "sha256:135658402f71bbd49500322c0f736145731b16fc79dc8f367ab544a17eab4535"}, + {file = "protobuf-5.28.3-cp39-cp39-win_amd64.whl", hash = "sha256:70585a70fc2dd4818c51287ceef5bdba6387f88a578c86d47bb34669b5552c36"}, + {file = "protobuf-5.28.3-py3-none-any.whl", hash = "sha256:cee1757663fa32a1ee673434fcf3bf24dd54763c79690201208bafec62f19eed"}, + {file = "protobuf-5.28.3.tar.gz", hash = "sha256:64badbc49180a5e401f373f9ce7ab1d18b63f7dd4a9cdc43c92b9f0b481cef7b"}, ] [[package]] @@ -1924,23 +1926,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1992,13 +1994,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-firestore/pyproject.toml b/airbyte-integrations/connectors/destination-firestore/pyproject.toml index 59fce55c69ac..c438db9f24cd 100644 --- a/airbyte-integrations/connectors/destination-firestore/pyproject.toml +++ b/airbyte-integrations/connectors/destination-firestore/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.0" +version = "0.2.1" name = "destination-firestore" description = "Destination implementation for Google Firestore." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/firestore.md b/docs/integrations/destinations/firestore.md index 8f93afadf4fa..e273826285c6 100644 --- a/docs/integrations/destinations/firestore.md +++ b/docs/integrations/destinations/firestore.md @@ -39,6 +39,7 @@ Each stream will be output into a BigQuery table. | Version | Date | Pull Request | Subject | |:--------| :--------- | :----------------------------------------------------- | :---------------------------- | +| 0.2.1 | 2024-10-29 | [43758](https://github.com/airbytehq/airbyte/pull/43758) | Update dependencies | | 0.2.0 | 2024-10-14 | [46874](https://github.com/airbytehq/airbyte/pull/46874) | Bump Airbyte CDK version to 5.13 | | 0.1.8 | 2024-08-22 | [44530](https://github.com/airbytehq/airbyte/pull/44530) | Update test dependencies | | 0.1.7 | 2024-07-06 | [40834](https://github.com/airbytehq/airbyte/pull/40834) | Update dependencies | From 659f29a2ec4d5d4bf670d3d6ef5001a08d08e6b6 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Tue, 29 Oct 2024 12:11:19 -0700 Subject: [PATCH 432/808] Destination-MotherDuck: Add max buffer size (#47952) --- .../destination_motherduck/destination.py | 13 +++++++++++++ .../connectors/destination-motherduck/metadata.yaml | 2 +- .../destination-motherduck/pyproject.toml | 2 +- docs/integrations/destinations/motherduck.md | 1 + 4 files changed, 16 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py index b7991bd78ab0..83f32539e762 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py @@ -27,6 +27,7 @@ CONFIG_MOTHERDUCK_API_KEY = "motherduck_api_key" CONFIG_DEFAULT_SCHEMA = "main" +MAX_STREAM_BATCH_SIZE = 50_000 def validated_sql_name(sql_name: Any) -> str: @@ -137,11 +138,14 @@ def write( processor.prepare_stream_table(stream_name=configured_stream.stream.name, sync_mode=configured_stream.destination_sync_mode) buffer: dict[str, dict[str, list[Any]]] = defaultdict(lambda: defaultdict(list)) + records_buffered = 0 + records_processed = 0 for message in input_messages: if message.type == Type.STATE: # flush the buffer self._flush_buffer(buffer, configured_catalog, path, schema_name, motherduck_api_key) buffer = defaultdict(lambda: defaultdict(list)) + records_buffered = 0 yield message elif message.type == Type.RECORD and message.record is not None: @@ -157,9 +161,18 @@ def write( buffer[stream_name][column_name].append(data[column_name]) elif column_name not in AB_INTERNAL_COLUMNS: buffer[stream_name][column_name].append(None) + buffer[stream_name][AB_RAW_ID_COLUMN].append(str(uuid.uuid4())) buffer[stream_name][AB_EXTRACTED_AT_COLUMN].append(datetime.datetime.now().isoformat()) buffer[stream_name][AB_META_COLUMN].append(json.dumps(record_meta)) + records_buffered += 1 + if records_buffered >= MAX_STREAM_BATCH_SIZE: + logger.info(f"Loading {records_buffered:,} from buffer...") + self._flush_buffer(buffer, configured_catalog, path, schema_name, motherduck_api_key) + buffer = defaultdict(lambda: defaultdict(list)) + records_processed += records_buffered + records_buffered = 0 + logger.info(f"Records loaded successfully. Total records processed: {records_processed:,}") else: logger.info(f"Message type {message.type} not supported, skipping") diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index 85d54c631776..13fe86dd5fd2 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index 150b34998b81..06e2b9d3bd52 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-motherduck" -version = "0.1.7" +version = "0.1.8" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index 6a6348aab910..9101db1bdc91 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.8 | 2024-10-29 | [47952](https://github.com/airbytehq/airbyte/pull/47952) | Fix: Add max batch size for loads. | | 0.1.7 | 2024-10-29 | [47706](https://github.com/airbytehq/airbyte/pull/47706) | Fix bug: incorrect column names were used to create new stream table when using multiple streams. | | 0.1.6 | 2024-10-29 | [47821](https://github.com/airbytehq/airbyte/pull/47821) | Update dependencies | | 0.1.5 | 2024-10-28 | [47694](https://github.com/airbytehq/airbyte/pull/47694) | Resolve write failures, move processor classes into the connector. | From eb75cda114d2cb583f7de6156db9d6e74917d68e Mon Sep 17 00:00:00 2001 From: Balaji Seetharaman Date: Wed, 30 Oct 2024 01:04:20 +0530 Subject: [PATCH 433/808] source-float contribution from bala-ceg (#46556) Co-authored-by: Marcos Marx --- .../connectors/source-float/README.md | 35 + .../source-float/acceptance-test-config.yml | 17 + .../connectors/source-float/icon.svg | 14 + .../connectors/source-float/manifest.yaml | 1509 +++++++++++++++++ .../connectors/source-float/metadata.yaml | 35 + docs/integrations/sources/float.md | 40 + 6 files changed, 1650 insertions(+) create mode 100644 airbyte-integrations/connectors/source-float/README.md create mode 100644 airbyte-integrations/connectors/source-float/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-float/icon.svg create mode 100644 airbyte-integrations/connectors/source-float/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-float/metadata.yaml create mode 100644 docs/integrations/sources/float.md diff --git a/airbyte-integrations/connectors/source-float/README.md b/airbyte-integrations/connectors/source-float/README.md new file mode 100644 index 000000000000..fa9760d2bd48 --- /dev/null +++ b/airbyte-integrations/connectors/source-float/README.md @@ -0,0 +1,35 @@ +# float +This directory contains the manifest-only connector for `source-float`. + +source-float airbyte connector is designed to sync scheduling and resource management data between Float, a leading resource management platform, and external systems. + +Float.com enables teams to plan and allocate resources effectively, manage team availability, and track project timelines. This connector automates the data flow between Float and other platforms, ensuring that resource schedules and project plans are up-to-date across all tools you use. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-float:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-float build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-float test +``` + diff --git a/airbyte-integrations/connectors/source-float/acceptance-test-config.yml b/airbyte-integrations/connectors/source-float/acceptance-test-config.yml new file mode 100644 index 000000000000..1e5f572aee24 --- /dev/null +++ b/airbyte-integrations/connectors/source-float/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-float:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-float/icon.svg b/airbyte-integrations/connectors/source-float/icon.svg new file mode 100644 index 000000000000..2f2df2e2aa3b --- /dev/null +++ b/airbyte-integrations/connectors/source-float/icon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-float/manifest.yaml b/airbyte-integrations/connectors/source-float/manifest.yaml new file mode 100644 index 000000000000..18108ec074d8 --- /dev/null +++ b/airbyte-integrations/connectors/source-float/manifest.yaml @@ -0,0 +1,1509 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + source-float airbyte connector is designed to sync scheduling and resource + management data between Float, a leading resource management platform, and + external systems. + + + Float.com enables teams to plan and allocate resources effectively, manage + team availability, and track project timelines. This connector automates the + data flow between Float and other platforms, ensuring that resource schedules + and project plans are up-to-date across all tools you use. + +check: + type: CheckStream + stream_names: + - accounts + +definitions: + streams: + accounts: + type: DeclarativeStream + name: accounts + primary_key: + - account_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/accounts" + departments: + type: DeclarativeStream + name: departments + primary_key: + - department_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /departments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/departments" + people: + type: DeclarativeStream + name: people + primary_key: + - people_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /people + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/people" + roles: + type: DeclarativeStream + name: roles + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /roles + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/roles" + public_holidays: + type: DeclarativeStream + name: public_holidays + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /public-holidays + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/public_holidays" + holidays: + type: DeclarativeStream + name: holidays + primary_key: + - holiday_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /holidays + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/holidays" + projects: + type: DeclarativeStream + name: projects + primary_key: + - project_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /projects + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/projects" + status: + type: DeclarativeStream + name: status + primary_key: + - status_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /status + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/status" + time_off: + type: DeclarativeStream + name: time_off + primary_key: + - timeoff_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /timeoffs + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/time_off" + timeoff-types: + type: DeclarativeStream + name: timeoff-types + primary_key: + - timeoff_type_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /timeoff-types + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/timeoff-types" + clients: + type: DeclarativeStream + name: clients + primary_key: + - client_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /clients + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/clients" + phases: + type: DeclarativeStream + name: phases + primary_key: + - phase_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /phases + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/phases" + project-tasks: + type: DeclarativeStream + name: project-tasks + primary_key: + - task_meta_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /project-tasks + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/project-tasks" + milestones: + type: DeclarativeStream + name: milestones + primary_key: + - milestone_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /milestones + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/milestones" + tasks: + type: DeclarativeStream + name: tasks + primary_key: + - task_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tasks + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tasks" + logged-time: + type: DeclarativeStream + name: logged-time + primary_key: + - logged_time_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /logged-time + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per-page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 200 + inject_on_first_request: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: modified + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S" + datetime_format: "%Y-%m-%d %H:%M:%S" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: modified_since + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/logged-time" + base_requester: + type: HttpRequester + url_base: https://api.float.com/v3 + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"access_token\"] }}" + +streams: + - $ref: "#/definitions/streams/accounts" + - $ref: "#/definitions/streams/departments" + - $ref: "#/definitions/streams/people" + - $ref: "#/definitions/streams/roles" + - $ref: "#/definitions/streams/public_holidays" + - $ref: "#/definitions/streams/holidays" + - $ref: "#/definitions/streams/projects" + - $ref: "#/definitions/streams/status" + - $ref: "#/definitions/streams/time_off" + - $ref: "#/definitions/streams/timeoff-types" + - $ref: "#/definitions/streams/clients" + - $ref: "#/definitions/streams/phases" + - $ref: "#/definitions/streams/project-tasks" + - $ref: "#/definitions/streams/milestones" + - $ref: "#/definitions/streams/tasks" + - $ref: "#/definitions/streams/logged-time" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - access_token + - start_date + properties: + access_token: + type: string + description: API token obtained from your Float Account Settings page + name: float_access_token + order: 0 + title: Access Token + airbyte_secret: true + start_date: + type: string + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + order: 1 + additionalProperties: true + +metadata: + autoImportSchema: + accounts: true + departments: true + people: true + roles: true + public_holidays: true + holidays: true + projects: true + status: true + time_off: true + timeoff-types: true + clients: true + phases: true + project-tasks: true + milestones: true + tasks: true + logged-time: true + testedStreams: + accounts: + streamHash: 6118f9c7287c7f77b2242900f1817f17e74335be + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + departments: + streamHash: 831a7bca5b55ff3948f9c1b7486dfd43b9bc1836 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + people: + streamHash: 8ba8094b2d52784df6017e498095d8a42254965c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + roles: + streamHash: d919fcbb6dc049ffe3b041e687d249fa92e9a17f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + public_holidays: + streamHash: 0c8ea3bc39c3bfbc2ad7a62be9fcea9b235b9144 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + holidays: + streamHash: b3ad9c97fc692fe5fe6d125ac53d27a1458e4a38 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + projects: + streamHash: 56fdb456c22607624cb5797497fb6550dafd0e60 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + status: + streamHash: 72940384697fc99e77d561d9e44edf0020c03fa1 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + time_off: + streamHash: 5661da0571d6bb9118fce08782dfeba0de439cb5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + timeoff-types: + streamHash: 8047744d178cfdbb743801c0f58ec0a5b6b78947 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + clients: + streamHash: 2df83fc8b666c8ea803ec043e02f8ad1c213bd9e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + phases: + streamHash: cba79a345cb7ebdd0e394f3af1761080a7776292 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + project-tasks: + streamHash: d5f09c338d1340df509a237adafe6cdd0f29b27d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + milestones: + streamHash: 03ff3a6ab59adc79d50186cddc0259d5eaa05f3e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + tasks: + streamHash: 88008b2bd0e24638a4a7bff6bb14d6ec30ca7b2c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + logged-time: + streamHash: c22e227fa5d2f2ba3e212d14a954dfd53ec232f1 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://developer.float.com/api_reference.html + +schemas: + accounts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + access: + type: + - number + - "null" + account_id: + type: number + account_type: + type: + - number + - "null" + active: + type: + - number + - "null" + avatar: + type: + - string + - "null" + budget_rights: + type: + - number + - "null" + created: + type: + - string + - "null" + edit_rights: + type: + - number + - "null" + email: + type: + - string + - "null" + modified: + type: + - string + - "null" + name: + type: + - string + - "null" + view_rights: + type: + - number + - "null" + required: + - account_id + departments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + department_id: + type: number + name: + type: + - string + - "null" + required: + - department_id + people: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - number + - "null" + auto_email: + type: + - number + - "null" + avatar_file: + type: + - string + - "null" + contractor: + type: + - number + - "null" + created: + type: + - string + - "null" + default_hourly_rate: + type: + - string + - "null" + department: + type: + - object + - "null" + properties: + department_id: + type: + - number + - "null" + name: + type: + - string + - "null" + email: + type: + - string + - "null" + employee_type: + type: + - number + - "null" + job_title: + type: + - string + - "null" + modified: + type: + - string + - "null" + name: + type: + - string + - "null" + people_id: + type: number + people_type_id: + type: + - number + - "null" + region_id: + type: + - number + - "null" + role_id: + type: + - number + - "null" + start_date: + type: + - string + - "null" + tags: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - number + - "null" + name: + type: + - string + - "null" + required: + - people_id + roles: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created: + type: + - string + - "null" + created_by: + type: + - number + - "null" + id: + type: number + modified: + type: + - string + - "null" + modified_by: + type: + - number + - "null" + name: + type: + - string + - "null" + required: + - id + public_holidays: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + dates: + type: + - array + - "null" + items: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + region: + type: + - number + - "null" + required: + - id + holidays: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date: + type: + - string + - "null" + end_date: + type: + - string + - "null" + holiday_id: + type: number + name: + type: + - string + - "null" + required: + - holiday_id + projects: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - number + - "null" + all_pms_schedule: + type: + - number + - "null" + budget_per_phase: + type: + - number + - "null" + budget_priority: + type: + - number + - "null" + budget_type: + type: + - number + - "null" + client_id: + type: + - number + - "null" + color: + type: + - string + - "null" + created: + type: + - string + - "null" + end_date: + type: + - string + - "null" + locked_task_list: + type: + - number + - "null" + modified: + type: + - string + - "null" + name: + type: + - string + - "null" + non_billable: + type: + - number + - "null" + notes: + type: + - string + - "null" + project_id: + type: number + project_manager: + type: + - number + - "null" + start_date: + type: + - string + - "null" + tags: + type: + - array + - "null" + tentative: + type: + - number + - "null" + required: + - project_id + status: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created: + type: + - string + - "null" + created_by: + type: + - number + - "null" + end_date: + type: + - string + - "null" + modified: + type: + - string + - "null" + people_id: + type: + - number + - "null" + repeat_state: + type: + - number + - "null" + start_date: + type: + - string + - "null" + status_id: + type: number + status_type_id: + type: + - number + - "null" + required: + - status_id + time_off: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created: + type: + - string + - "null" + created_by: + type: + - number + - "null" + end_date: + type: + - string + - "null" + full_day: + type: + - number + - "null" + modified: + type: + - string + - "null" + modified_by: + type: + - number + - "null" + people_ids: + type: + - array + - "null" + items: + type: + - number + - "null" + repeat_state: + type: + - number + - "null" + start_date: + type: + - string + - "null" + status: + type: + - number + - "null" + timeoff_id: + type: number + timeoff_notes: + type: + - string + - "null" + timeoff_type_id: + type: + - number + - "null" + timeoff_type_name: + type: + - string + - "null" + required: + - timeoff_id + timeoff-types: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - number + - "null" + approval_required: + type: + - number + - "null" + color: + type: + - string + - "null" + timeoff_type_id: + type: number + timeoff_type_name: + type: + - string + - "null" + required: + - timeoff_type_id + clients: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + client_id: + type: number + name: + type: + - string + - "null" + required: + - client_id + phases: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - number + - "null" + created: + type: + - string + - "null" + end_date: + type: + - string + - "null" + modified: + type: + - string + - "null" + name: + type: + - string + - "null" + non_billable: + type: + - number + - "null" + phase_id: + type: number + project_id: + type: + - number + - "null" + start_date: + type: + - string + - "null" + tentative: + type: + - number + - "null" + required: + - phase_id + project-tasks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + billable: + type: + - number + - "null" + count_logged_time: + type: + - number + - "null" + count_tasks: + type: + - number + - "null" + created: + type: + - string + - "null" + modified: + type: + - string + - "null" + phase_id: + type: + - number + - "null" + project_id: + type: + - number + - "null" + task_meta_id: + type: number + task_name: + type: + - string + - "null" + required: + - task_meta_id + milestones: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created: + type: + - string + - "null" + date: + type: + - string + - "null" + end_date: + type: + - string + - "null" + milestone_id: + type: number + modified: + type: + - string + - "null" + name: + type: + - string + - "null" + project_id: + type: + - number + - "null" + required: + - milestone_id + tasks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + billable: + type: + - number + - "null" + created: + type: + - string + - "null" + created_by: + type: + - number + - "null" + end_date: + type: + - string + - "null" + hours: + type: + - number + - "null" + modified: + type: + - string + - "null" + modified_by: + type: + - number + - "null" + name: + type: + - string + - "null" + notes: + type: + - string + - "null" + people_id: + type: + - number + - "null" + phase_id: + type: + - number + - "null" + project_id: + type: + - number + - "null" + repeat_state: + type: + - number + - "null" + start_date: + type: + - string + - "null" + status: + type: + - number + - "null" + task_id: + type: number + task_meta_id: + type: + - number + - "null" + required: + - task_id + logged-time: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + billable: + type: + - number + - "null" + created: + type: + - string + - "null" + created_by: + type: + - number + - "null" + date: + type: + - string + - "null" + hours: + type: + - number + - "null" + locked: + type: + - boolean + - "null" + logged_time_id: + type: string + modified: + type: string + modified_by: + type: + - number + - "null" + notes: + type: + - string + - "null" + people_id: + type: + - number + - "null" + phase_id: + type: + - number + - "null" + priority: + type: + - number + - "null" + project_id: + type: + - number + - "null" + task_id: + type: + - number + - "null" + task_meta_id: + type: + - number + - "null" + task_name: + type: + - string + - "null" + required: + - logged_time_id + - modified diff --git a/airbyte-integrations/connectors/source-float/metadata.yaml b/airbyte-integrations/connectors/source-float/metadata.yaml new file mode 100644 index 000000000000..f2a13ba386c5 --- /dev/null +++ b/airbyte-integrations/connectors/source-float/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.float.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-float + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 + connectorSubtype: api + connectorType: source + definitionId: 4f755eb9-6e1a-4b0e-bc1e-26b9f5d3ca4c + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-float + githubIssueLabel: source-float + icon: icon.svg + license: MIT + name: float + releaseDate: 2024-10-23 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/float + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/float.md b/docs/integrations/sources/float.md new file mode 100644 index 000000000000..0b2abdeb1d08 --- /dev/null +++ b/docs/integrations/sources/float.md @@ -0,0 +1,40 @@ +# Float +Float.com enables teams to plan and allocate resources effectively, manage team availability, and track project timelines. This connector automates the data flow between Float and other platforms, ensuring that resource schedules and project plans are up-to-date across all tools you use. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `access_token` | `string` | Float Access Token. API token obtained from your Float Account Settings page | | +| `start_date` | `datetime` | Start Date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| accounts | account_id | DefaultPaginator | ✅ | ❌ | +| departments | department_id | DefaultPaginator | ✅ | ❌ | +| people | people_id | DefaultPaginator | ✅ | ❌ | +| roles | id | DefaultPaginator | ✅ | ❌ | +| public_holidays | id | DefaultPaginator | ✅ | ❌ | +| holidays | holiday_id | DefaultPaginator | ✅ | ❌ | +| projects | project_id | DefaultPaginator | ✅ | ❌ | +| status | status_id | DefaultPaginator | ✅ | ❌ | +| time_off | timeoff_id | DefaultPaginator | ✅ | ❌ | +| timeoff-types | timeoff_type_id | DefaultPaginator | ✅ | ❌ | +| clients | client_id | DefaultPaginator | ✅ | ❌ | +| phases | phase_id | DefaultPaginator | ✅ | ❌ | +| project-tasks | task_meta_id | DefaultPaginator | ✅ | ❌ | +| milestones | milestone_id | DefaultPaginator | ✅ | ❌ | +| tasks | task_id | DefaultPaginator | ✅ | ❌ | +| logged-time | logged_time_id | DefaultPaginator | ✅ | ✅ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-23 | | Initial release by [@bala-ceg](https://github.com/bala-ceg) via Connector Builder | + +
From 33b30eddc3b805036e500d6e6a6946a405e63225 Mon Sep 17 00:00:00 2001 From: Guen Prawiroatmodjo Date: Tue, 29 Oct 2024 12:37:43 -0700 Subject: [PATCH 434/808] Fix(Destination-MotherDuck): Add double quotes to column names that are reserved keywords (#47950) --- .../destination_motherduck/processors/duckdb.py | 2 +- .../integration_tests/integration_test.py | 6 +++--- .../connectors/destination-motherduck/metadata.yaml | 2 +- .../connectors/destination-motherduck/pyproject.toml | 2 +- docs/integrations/destinations/motherduck.md | 1 + 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py index ae4f4871c8e2..9f976481a44e 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py @@ -182,7 +182,7 @@ def _write_from_pa_table(self, table_name: str, stream_name: str, pa_table: pa.T columns = list(self._get_sql_column_definitions(stream_name).keys()) if len(columns) != len(pa_table.column_names): warnings.warn(f"Schema has colums: {columns}, buffer has columns: {pa_table.column_names}") - column_names = ", ".join(pa_table.column_names) + column_names = ", ".join(map(self._quote_identifier, pa_table.column_names)) sql = f""" -- Write from PyArrow table INSERT INTO {full_table_name} ({column_names}) SELECT {column_names} FROM pa_table diff --git a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py index 606a93635d6e..de9415e516df 100644 --- a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py +++ b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py @@ -128,7 +128,7 @@ def other_table_schema() -> str: "type": "object", "properties": { "key3": {"type": ["null", "string"]}, - "key4": {"type": ["null", "string"]}, + "default": {"type": ["null", "string"]}, }, } return schema @@ -264,7 +264,7 @@ def airbyte_message4(other_test_table_name: str): type=Type.RECORD, record=AirbyteRecordMessage( stream=other_test_table_name, - data={"key3": fake.unique.first_name(), "key4": str(fake.ssn())}, + data={"key3": fake.unique.first_name(), "default": str(fake.ssn())}, emitted_at=int(datetime.now().timestamp()) * 1000, ), ) @@ -278,7 +278,7 @@ def airbyte_message5(other_test_table_name: str): type=Type.RECORD, record=AirbyteRecordMessage( stream=other_test_table_name, - data={"key3": fake.unique.first_name(), "key4": str(fake.ssn())}, + data={"key3": fake.unique.first_name(), "default": str(fake.ssn())}, emitted_at=int(datetime.now().timestamp()) * 1000, ), ) diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index 13fe86dd5fd2..1d80d2f444b3 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index 06e2b9d3bd52..cd5f6ebb0a84 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-motherduck" -version = "0.1.8" +version = "0.1.9" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index 9101db1bdc91..a06816fb5a73 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.9 | 2024-10-29 | [47950](https://github.com/airbytehq/airbyte/pull/47950) | Fix bug: add double quotes to column names that are reserved keywords. | | 0.1.8 | 2024-10-29 | [47952](https://github.com/airbytehq/airbyte/pull/47952) | Fix: Add max batch size for loads. | | 0.1.7 | 2024-10-29 | [47706](https://github.com/airbytehq/airbyte/pull/47706) | Fix bug: incorrect column names were used to create new stream table when using multiple streams. | | 0.1.6 | 2024-10-29 | [47821](https://github.com/airbytehq/airbyte/pull/47821) | Update dependencies | From 22af6fe1eb77ab60cbbd0ad756fcbff7ebb1b926 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Wed, 30 Oct 2024 01:10:10 +0530 Subject: [PATCH 435/808] source-just-sift contribution from parthiv11 (#47708) Co-authored-by: Marcos Marx --- .../connectors/source-just-sift/README.md | 33 ++ .../acceptance-test-config.yml | 17 + .../connectors/source-just-sift/icon.svg | 14 + .../connectors/source-just-sift/manifest.yaml | 556 ++++++++++++++++++ .../connectors/source-just-sift/metadata.yaml | 35 ++ docs/integrations/sources/just-sift.md | 30 + 6 files changed, 685 insertions(+) create mode 100644 airbyte-integrations/connectors/source-just-sift/README.md create mode 100644 airbyte-integrations/connectors/source-just-sift/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-just-sift/icon.svg create mode 100644 airbyte-integrations/connectors/source-just-sift/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-just-sift/metadata.yaml create mode 100644 docs/integrations/sources/just-sift.md diff --git a/airbyte-integrations/connectors/source-just-sift/README.md b/airbyte-integrations/connectors/source-just-sift/README.md new file mode 100644 index 000000000000..dbb3c3f015be --- /dev/null +++ b/airbyte-integrations/connectors/source-just-sift/README.md @@ -0,0 +1,33 @@ +# JustSift +This directory contains the manifest-only connector for `source-just-sift`. + +Airbyte connector for JustSift can help you sync data from the JustSift API + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-just-sift:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-just-sift build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-just-sift test +``` + diff --git a/airbyte-integrations/connectors/source-just-sift/acceptance-test-config.yml b/airbyte-integrations/connectors/source-just-sift/acceptance-test-config.yml new file mode 100644 index 000000000000..edf869ddff71 --- /dev/null +++ b/airbyte-integrations/connectors/source-just-sift/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-just-sift:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-just-sift/icon.svg b/airbyte-integrations/connectors/source-just-sift/icon.svg new file mode 100644 index 000000000000..ad90b2b29f44 --- /dev/null +++ b/airbyte-integrations/connectors/source-just-sift/icon.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-just-sift/manifest.yaml b/airbyte-integrations/connectors/source-just-sift/manifest.yaml new file mode 100644 index 000000000000..58e7420939a2 --- /dev/null +++ b/airbyte-integrations/connectors/source-just-sift/manifest.yaml @@ -0,0 +1,556 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: Airbyte connector for JustSift can help you sync data from the JustSift API + +check: + type: CheckStream + stream_names: + - peoples + +definitions: + streams: + peoples: + type: DeclarativeStream + name: peoples + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/people + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/peoples" + fields: + type: DeclarativeStream + name: fields + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /fields/person + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('links', {}).get('next') }}" + stop_condition: "{{ not response.get('links', {}).get('next') }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/fields" + base_requester: + type: HttpRequester + url_base: https://api.justsift.com/v1 + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_token\"] }}" + +streams: + - $ref: "#/definitions/streams/peoples" + - $ref: "#/definitions/streams/fields" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_token + properties: + api_token: + type: string + description: >- + API token to use for accessing the Sift API. Obtain this token from + your Sift account administrator. + name: api_token + order: 0 + title: API Token + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + peoples: true + fields: true + testedStreams: + peoples: + hasRecords: true + streamHash: 19539b43d2bdc7c3ad22753d721b5875de9e9ada + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + fields: + hasRecords: true + streamHash: 98b10d2b1a5de54e505d0b3230cc674ddd30c38e + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://developers.justsift.com/ + +schemas: + peoples: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + anniversaryDate: + type: + - string + - "null" + backgroundUrl: + type: + - string + - "null" + bio: + type: + - string + - "null" + companyName: + type: + - string + - "null" + customPictureUrl: + type: + - string + - "null" + department: + type: + - string + - "null" + directReportCount: + type: + - number + - "null" + directoryId: + type: + - string + - "null" + displayName: + type: + - string + - "null" + education: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + classYear: + type: + - string + - "null" + concentrations: + type: + - array + - "null" + items: + type: + - string + - "null" + degreeType: + type: + - string + - "null" + fieldsOfStudy: + type: + - array + - "null" + items: + type: + - string + - "null" + minors: + type: + - array + - "null" + items: + type: + - string + - "null" + school: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + email: + type: + - string + - "null" + experience: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + location: + type: + - string + - "null" + role: + type: + - string + - "null" + tenure: + type: + - object + - "null" + properties: + end: + type: + - object + - "null" + properties: + month: + type: + - number + - "null" + year: + type: + - number + - "null" + start: + type: + - object + - "null" + properties: + month: + type: + - number + - "null" + year: + type: + - number + - "null" + workplace: + type: + - object + - "null" + properties: + logoUrl: + type: + - string + - "null" + title: + type: + - string + - "null" + extension: + type: + - string + - "null" + firstName: + type: + - string + - "null" + hasNamePronunciation: + type: + - boolean + - "null" + hrbpName: + type: + - string + - "null" + id: + type: string + inclusivePronouns: + type: + - object + - "null" + properties: + code: + type: + - string + - "null" + isOther: + type: + - boolean + - "null" + interests: + type: + - array + - "null" + items: + type: + - string + - "null" + isTeamLeader: + type: + - boolean + - "null" + languages: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + language: + type: + - string + - "null" + proficiency: + type: + - object + - "null" + properties: + level: + type: + - string + - "null" + skills: + type: + - array + - "null" + items: + type: + - string + - "null" + lastName: + type: + - string + - "null" + messageAddress: + type: + - string + - "null" + officeCity: + type: + - string + - "null" + officeState: + type: + - string + - "null" + officeStreet: + type: + - string + - "null" + phone: + type: + - string + - "null" + pictureUrl: + type: + - string + - "null" + reachOutToMeFor: + type: + - object + - "null" + properties: + cf_autocompleteTextCollection: + type: + - array + - "null" + items: + type: + - string + - "null" + cf_autocompleteTextCollection1: + type: + - array + - "null" + items: + type: + - string + - "null" + general: + type: + - array + - "null" + items: + type: + - string + - "null" + projects: + type: + - array + - "null" + items: + type: + - string + - "null" + reportingPath: + type: + - array + - "null" + items: + type: + - string + - "null" + skills: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + isFeatured: + type: + - boolean + - "null" + level: + type: + - number + - "null" + name: + type: + - string + - "null" + team: + type: + - string + - "null" + teamLeaderId: + type: + - string + - "null" + timezoneAndWorkHours: + type: + - object + - "null" + properties: + timezone: + type: + - string + - "null" + workHours: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + day: + type: + - number + - "null" + endTime: + type: + - object + - "null" + properties: + hour: + type: + - number + - "null" + minute: + type: + - number + - "null" + location: + type: + - string + - "null" + startTime: + type: + - object + - "null" + properties: + hour: + type: + - number + - "null" + minute: + type: + - number + - "null" + title: + type: + - string + - "null" + totalReportCount: + type: + - number + - "null" + required: + - id + fields: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + displayName: + type: + - string + - "null" + filterable: + type: + - boolean + - "null" + id: + type: string + objectKey: + type: + - string + - "null" + searchable: + type: + - boolean + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-just-sift/metadata.yaml b/airbyte-integrations/connectors/source-just-sift/metadata.yaml new file mode 100644 index 000000000000..fa241e3bd1de --- /dev/null +++ b/airbyte-integrations/connectors/source-just-sift/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.justsift.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-just-sift + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + connectorSubtype: api + connectorType: source + definitionId: 27b801a1-fd34-4470-829a-bb12c63c42f9 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-just-sift + githubIssueLabel: source-just-sift + icon: icon.svg + license: MIT + name: JustSift + releaseDate: 2024-10-29 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/just-sift + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/just-sift.md b/docs/integrations/sources/just-sift.md new file mode 100644 index 000000000000..4a3983a7154b --- /dev/null +++ b/docs/integrations/sources/just-sift.md @@ -0,0 +1,30 @@ +# JustSift +Airbyte connector for [JustSift](https://www.justsift.com/) can help you sync data from the JustSift API. + +Sift empowers team members to discover and benefit from the massive knowledge base that is their entire workforce. If knowledge is power, Sift gives organizations superpowers. + +As team members, we're empowered, collaborative, and excited to learn new things. Most of all, we look forward to you joining us as we continue building for the organization of tomorrow, today. +Wonderi + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_token` | `string` | API Token. API token to use for accessing the Sift API. Obtain this token from your Sift account administrator. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| peoples | id | DefaultPaginator | ✅ | ❌ | +| fields | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-29 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From ef025091a1d76bbdaf37737ca2dcb0978f2cb542 Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Wed, 30 Oct 2024 01:31:13 +0530 Subject: [PATCH 436/808] Source Apify-dataset: Migrate to manifest-only with components (#47286) Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-apify-dataset/README.md | 91 +- .../source-apify-dataset/__init__.py | 3 - .../acceptance-test-config.yml | 2 +- ...pping_dpath_extractor.py => components.py} | 0 .../connectors/source-apify-dataset/main.py | 8 - .../source-apify-dataset/manifest.yaml | 519 ++++++++ .../source-apify-dataset/metadata.yaml | 13 +- .../source-apify-dataset/poetry.lock | 1065 ----------------- .../source-apify-dataset/pyproject.toml | 28 - .../source_apify_dataset/__init__.py | 8 - .../source_apify_dataset/manifest.yaml | 437 ------- .../source_apify_dataset/run.py | 15 - .../source_apify_dataset/source.py | 18 - docs/integrations/sources/apify-dataset.md | 1 + 14 files changed, 555 insertions(+), 1653 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-apify-dataset/__init__.py rename airbyte-integrations/connectors/source-apify-dataset/{source_apify_dataset/wrapping_dpath_extractor.py => components.py} (100%) delete mode 100644 airbyte-integrations/connectors/source-apify-dataset/main.py create mode 100644 airbyte-integrations/connectors/source-apify-dataset/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-apify-dataset/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-apify-dataset/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/__init__.py delete mode 100644 airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/run.py delete mode 100644 airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/source.py diff --git a/airbyte-integrations/connectors/source-apify-dataset/README.md b/airbyte-integrations/connectors/source-apify-dataset/README.md index 93c9824a0a11..3a5fda8087ad 100644 --- a/airbyte-integrations/connectors/source-apify-dataset/README.md +++ b/airbyte-integrations/connectors/source-apify-dataset/README.md @@ -1,49 +1,22 @@ -# Apify-Dataset source connector +# Apify dataset source connector -This is the repository for the Apify-Dataset source connector, written in Python. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/apify-dataset). +This directory contains the manifest-only connector for `source-apify-dataset`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development - -### Prerequisites - -- Python (~=3.9) -- Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) - -### Installing the connector - -From this connector directory, run: - -```bash -poetry install --with dev -``` - -### Create credentials +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/apify-dataset). -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/apify-dataset) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_apify_dataset/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `sample_files/sample_config.json` for a sample config file. - -### Locally running the connector - -``` -poetry run source-apify-dataset spec -poetry run source-apify-dataset check --config secrets/config.json -poetry run source-apify-dataset discover --config secrets/config.json -poetry run source-apify-dataset read --config secrets/config.json --catalog sample_files/configured_catalog.json -``` +## Local development -### Running unit tests +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -To run unit tests locally, from the connector directory run: - -``` -poetry run pytest unit_tests -``` +If you prefer to develop locally, you can follow the instructions below. ### Building the docker image +You can build any manifest-only connector with `airbyte-ci`: + 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: @@ -53,18 +26,24 @@ airbyte-ci connectors --name=source-apify-dataset build An image will be available on your host with the tag `airbyte/source-apify-dataset:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/apify-dataset) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. + ### Running as a docker container -Then run any of the connector commands as follows: +Then run any of the standard source connector commands: -``` +```bash docker run --rm airbyte/source-apify-dataset:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-apify-dataset:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-apify-dataset:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-apify-dataset:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): @@ -72,33 +51,15 @@ You can run our full test suite locally using [`airbyte-ci`](https://github.com/ airbyte-ci connectors --name=source-apify-dataset test ``` -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -### Dependency Management - -All of your dependencies should be managed via Poetry. -To add a new dependency, run: - -```bash -poetry add -``` - -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? - -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-apify-dataset test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. +If you want to contribute changes to `source-apify-dataset`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-apify-dataset test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + - bump the `dockerImageTag` value in in `metadata.yaml` 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/apify-dataset.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. -8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. +8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-apify-dataset/__init__.py b/airbyte-integrations/connectors/source-apify-dataset/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-apify-dataset/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-apify-dataset/acceptance-test-config.yml b/airbyte-integrations/connectors/source-apify-dataset/acceptance-test-config.yml index 71a772f72426..844ef71a943d 100644 --- a/airbyte-integrations/connectors/source-apify-dataset/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-apify-dataset/acceptance-test-config.yml @@ -2,7 +2,7 @@ connector_image: airbyte/source-apify-dataset:dev acceptance_tests: spec: tests: - - spec_path: "source_apify_dataset/spec.yaml" + - spec_path: "manifest.yaml" backward_compatibility_tests_config: disable_for_version: 2.0.0 connection: diff --git a/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/wrapping_dpath_extractor.py b/airbyte-integrations/connectors/source-apify-dataset/components.py similarity index 100% rename from airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/wrapping_dpath_extractor.py rename to airbyte-integrations/connectors/source-apify-dataset/components.py diff --git a/airbyte-integrations/connectors/source-apify-dataset/main.py b/airbyte-integrations/connectors/source-apify-dataset/main.py deleted file mode 100644 index 4ef9d72f02b4..000000000000 --- a/airbyte-integrations/connectors/source-apify-dataset/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_apify_dataset.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-apify-dataset/manifest.yaml b/airbyte-integrations/connectors/source-apify-dataset/manifest.yaml new file mode 100644 index 000000000000..f8c10eea3bce --- /dev/null +++ b/airbyte-integrations/connectors/source-apify-dataset/manifest.yaml @@ -0,0 +1,519 @@ +version: "4.3.2" +type: DeclarativeSource +spec: + type: Spec + documentation_url: https://docs.airbyte.com/integrations/sources/apify-dataset + connection_specification: + $schema: http://json-schema.org/draft-07/schema# + title: Apify Dataset Spec + type: object + required: + - token + - dataset_id + properties: + token: + type: string + title: API token + description: >- + Personal API token of your Apify account. In Apify Console, you can find + your API token in the + Settings section + under the Integrations tab + after you login. See the Apify + Docs + for more information. + examples: + - apify_api_PbVwb1cBbuvbfg2jRmAIHZKgx3NQyfEMG7uk + airbyte_secret: true + dataset_id: + type: string + title: Dataset ID + description: >- + ID of the dataset you would like to load to Airbyte. In Apify Console, you + can view your datasets in the + Storage section under + the Datasets tab + after you login. See the Apify + Docs + for more information. + examples: + - rHuMdwm6xCFt6WiGU + additionalProperties: true +definitions: + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: "https://api.apify.com/v2/" + http_method: "GET" + authenticator: + type: BearerAuthenticator + api_token: "{{ config['token'] }}" + request_options_provider: + request_headers: + User-Agent: "Airbyte" + paginator: + type: "DefaultPaginator" + page_size_option: + type: "RequestOption" + inject_into: "request_parameter" + field_name: "limit" + pagination_strategy: + type: "OffsetIncrement" + page_size: 50 + page_token_option: + type: "RequestOption" + field_name: "offset" + inject_into: "request_parameter" +streams: +- type: DeclarativeStream + name: dataset_collection + primary_key: "id" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + title: Collection of datasets schema + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: Unique identifier of the dataset collection + type: + - "null" + - string + name: + description: Name or title of the dataset collection + type: + - "null" + - string + userId: + description: User ID of the owner of the dataset collection + type: + - "null" + - string + createdAt: + description: Date and time when the dataset collection was created + type: + - "null" + - string + modifiedAt: + description: Date and time when the dataset collection was last modified + type: + - "null" + - string + accessedAt: + description: Date and time when the dataset collection was last accessed + type: + - "null" + - string + itemCount: + description: Total number of items in the dataset collection + type: + - "null" + - number + username: + description: Username of the owner of the dataset collection + type: + - "null" + - string + stats: + description: Statistics related to the dataset collection + type: + - "null" + - object + additionalProperties: true + properties: + readCount: + description: Number of read operations performed on the dataset collection + type: + - "null" + - number + storageBytes: + description: Total storage size in bytes occupied by the dataset collection + type: + - "null" + - number + writeCount: + description: Number of write operations performed on the dataset collection + type: + - "null" + - number + schema: + description: Data schema or structure of the dataset collection + type: + - "null" + - string + cleanItemCount: + description: Number of clean items in the dataset collection + type: + - "null" + - number + actId: + description: Identifier of the actor associated with the dataset collection + type: + - "null" + - string + actRunId: + description: Identifier of the actor run associated with the dataset collection + type: + - "null" + - string + title: + description: Display title of the dataset collection + type: + - "null" + - string + fields: + description: Fields present in the dataset collection + anyOf: + - type: "null" + - type: array + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: "https://api.apify.com/v2/" + http_method: "GET" + authenticator: + type: BearerAuthenticator + api_token: "{{ config['token'] }}" + request_options_provider: + request_headers: + User-Agent: "Airbyte" + path: "datasets" + paginator: + type: "DefaultPaginator" + page_size_option: + type: "RequestOption" + inject_into: "request_parameter" + field_name: "limit" + pagination_strategy: + type: "OffsetIncrement" + page_size: 50 + page_token_option: + type: "RequestOption" + field_name: "offset" + inject_into: "request_parameter" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - "data" + - "items" +- type: DeclarativeStream + name: dataset + primary_key: "id" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + title: Individual datasets schema + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: Unique identifier of the dataset + type: + - "null" + - string + name: + description: Name of the dataset + type: + - "null" + - string + userId: + description: User ID of the owner of the dataset + type: + - "null" + - string + createdAt: + description: Timestamp when the dataset was created + type: + - "null" + - string + stats: + description: Contains statistical information about the dataset. + type: + - "null" + - object + additionalProperties: true + properties: + readCount: + description: Number of times the dataset was read + type: + - "null" + - number + storageBytes: + description: Total storage size of the dataset in bytes + type: + - "null" + - number + writeCount: + description: Number of times the dataset was written to + type: + - "null" + - number + schema: + description: Schema definition of the dataset + type: + - "null" + - string + - object + modifiedAt: + description: Timestamp when the dataset was last modified + type: + - "null" + - string + accessedAt: + description: Timestamp when the dataset was last accessed + type: + - "null" + - string + itemCount: + description: Total number of items in the dataset + type: + - "null" + - number + cleanItemCount: + description: Number of clean items in the dataset + type: + - "null" + - number + actId: + description: Identifier of the actor associated with the dataset + type: + - "null" + - string + actRunId: + description: Identifier of the actor run associated with the dataset + type: + - "null" + - string + title: + description: Title of the dataset + type: + - "null" + - string + fields: + description: List of fields available in the dataset + anyOf: + - type: "null" + - type: array + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: "https://api.apify.com/v2/" + http_method: "GET" + authenticator: + type: BearerAuthenticator + api_token: "{{ config['token'] }}" + request_options_provider: + request_headers: + User-Agent: "Airbyte" + path: "datasets/{{ config['dataset_id'] }}" + paginator: + type: "DefaultPaginator" + page_size_option: + type: "RequestOption" + inject_into: "request_parameter" + field_name: "limit" + pagination_strategy: + type: "OffsetIncrement" + page_size: 50 + page_token_option: + type: "RequestOption" + field_name: "offset" + inject_into: "request_parameter" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - "data" +- type: DeclarativeStream + name: item_collection_website_content_crawler + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + title: Item collection - Website Content Crawler (WCC) + type: + - "null" + - object + additionalProperties: true + properties: + crawl: + description: Information related to web crawling + additionalProperties: true + properties: + depth: + description: Depth level of the crawled page + type: + - "null" + - number + httpStatusCode: + description: HTTP status code of the response + type: + - "null" + - number + loadedTime: + description: Time when the page was loaded + type: + - "null" + - string + loadedUrl: + description: URL of the loaded page + type: + - "null" + - string + referrerUrl: + description: URL of the page that referred to the current page + type: + - "null" + - string + type: + - "null" + - object + markdown: + description: Markdown content of the webpage + type: + - "null" + - string + metadata: + description: Metadata information of the webpage + additionalProperties: true + properties: + canonicalUrl: + description: Canonical URL of the webpage + type: + - "null" + - string + description: + description: Description of the webpage + type: + - "null" + - string + languageCode: + description: Language code of the webpage content + type: + - "null" + - string + title: + description: Title of the webpage + type: + - "null" + - string + type: + - "null" + - object + text: + description: Text content of the webpage + type: + - "null" + - string + url: + description: URL of the webpage + type: + - "null" + - string + screenshotUrl: + description: URL of the screenshot of the webpage + type: + - "null" + - string + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: "https://api.apify.com/v2/" + http_method: "GET" + authenticator: + type: BearerAuthenticator + api_token: "{{ config['token'] }}" + request_options_provider: + request_headers: + User-Agent: "Airbyte" + path: "datasets/{{ config['dataset_id'] }}/items" + paginator: + type: "DefaultPaginator" + page_size_option: + type: "RequestOption" + inject_into: "request_parameter" + field_name: "limit" + pagination_strategy: + type: "OffsetIncrement" + page_size: 50 + page_token_option: + type: "RequestOption" + field_name: "offset" + inject_into: "request_parameter" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] +- type: DeclarativeStream + name: item_collection + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + title: Item collection + type: + - "null" + - object + additionalProperties: true + properties: + data: + description: Collection of items with detailed information + additionalProperties: true + type: + - "null" + - object + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: "https://api.apify.com/v2/" + http_method: "GET" + authenticator: + type: BearerAuthenticator + api_token: "{{ config['token'] }}" + request_options_provider: + request_headers: + User-Agent: "Airbyte" + path: "datasets/{{ config['dataset_id'] }}/items" + paginator: + type: "DefaultPaginator" + page_size_option: + type: "RequestOption" + inject_into: "request_parameter" + field_name: "limit" + pagination_strategy: + type: "OffsetIncrement" + page_size: 50 + page_token_option: + type: "RequestOption" + field_name: "offset" + inject_into: "request_parameter" + record_selector: + type: RecordSelector + extractor: + class_name: source_declarative_manifest.components.WrappingDpathExtractor + field_path: [] + type: CustomRecordExtractor +check: + type: CheckStream + stream_names: + - dataset_collection + - dataset + - item_collection_website_content_crawler + - item_collection + diff --git a/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml b/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml index 9e198078efca..6899b27a6c4b 100644 --- a/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml +++ b/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - api.apify.com connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: 47f17145-fe20-4ef5-a548-e29b048adf84 - dockerImageTag: 2.1.27 + dockerImageTag: 2.2.0 dockerRepository: airbyte/source-apify-dataset documentationUrl: https://docs.airbyte.com/integrations/sources/apify-dataset githubIssueLabel: source-apify-dataset @@ -27,16 +27,19 @@ data: message: Update spec to use token and ingest all 3 streams correctly upgradeDeadline: 2023-08-30 2.0.0: - message: This version introduces a new Item Collection (WCC) stream as a substitute of the now-removed Item Collection stream in order to retain data for Web-Content-Crawler datasets. + message: + This version introduces a new Item Collection (WCC) stream as a substitute + of the now-removed Item Collection stream in order to retain data for Web-Content-Crawler + datasets. upgradeDeadline: 2023-09-18 remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-apify-dataset supportLevel: community tags: - - language:python - cdk:low-code + - language:manifest-only connectorTestSuitesOptions: - suite: liveTests testConnections: diff --git a/airbyte-integrations/connectors/source-apify-dataset/poetry.lock b/airbyte-integrations/connectors/source-apify-dataset/poetry.lock deleted file mode 100644 index 43a15cee8460..000000000000 --- a/airbyte-integrations/connectors/source-apify-dataset/poetry.lock +++ /dev/null @@ -1,1065 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "0.80.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-0.80.0-py3-none-any.whl", hash = "sha256:060e92323a73674fa4e9e2e4a1eb312b9b9d072c9bbe5fa28f54ef21cb4974f3"}, - {file = "airbyte_cdk-0.80.0.tar.gz", hash = "sha256:1383512a83917fecca5b24cea4c72aa5c561cf96dd464485fbcefda48fe574c5"}, -] - -[package.dependencies] -airbyte-protocol-models = "0.5.1" -backoff = "*" -cachetools = "*" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.0.271)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.5.1" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.5.1-py3-none-any.whl", hash = "sha256:dfe84e130e51ce2ae81a06d5aa36f6c5ce3152b9e36e6f0195fad6c3dab0927e"}, - {file = "airbyte_protocol_models-0.5.1.tar.gz", hash = "sha256:7c8b16c7c1c7956b1996052e40585a3a93b1e44cb509c4e97c1ee4fe507ea086"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "packaging" -version = "24.1" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "setuptools" -version = "75.3.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, - {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "990042bd8aff2361370f7cea38b2dffbadb5bd28397a241166061ec2619f6426" diff --git a/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml b/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml deleted file mode 100644 index 191cc156e12f..000000000000 --- a/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml +++ /dev/null @@ -1,28 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "2.1.27" -name = "source-apify-dataset" -description = "Source implementation for Apify Dataset." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/apify-dataset" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_apify_dataset" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "0.80.0" - -[tool.poetry.scripts] -source-apify-dataset = "source_apify_dataset.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "^1.9.3" -pytest-mock = "^3.6.1" -pytest = "^6.2" diff --git a/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/__init__.py b/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/__init__.py deleted file mode 100644 index 146d6110de38..000000000000 --- a/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceApifyDataset - -__all__ = ["SourceApifyDataset"] diff --git a/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/manifest.yaml b/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/manifest.yaml deleted file mode 100644 index f617914f73d5..000000000000 --- a/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/manifest.yaml +++ /dev/null @@ -1,437 +0,0 @@ -version: "0.51.11" -type: DeclarativeSource - -spec: - type: Spec - documentation_url: https://docs.airbyte.com/integrations/sources/apify-dataset - connection_specification: - $schema: http://json-schema.org/draft-07/schema# - title: Apify Dataset Spec - type: object - required: - - token - - dataset_id - properties: - token: - type: string - title: API token - description: >- - Personal API token of your Apify account. In Apify Console, you can find - your API token in the - Settings section - under the Integrations tab - after you login. See the Apify - Docs - for more information. - examples: - - apify_api_PbVwb1cBbuvbfg2jRmAIHZKgx3NQyfEMG7uk - airbyte_secret: true - dataset_id: - type: string - title: Dataset ID - description: >- - ID of the dataset you would like to load to Airbyte. In Apify Console, you - can view your datasets in the - Storage section under - the Datasets tab - after you login. See the Apify - Docs - for more information. - examples: - - rHuMdwm6xCFt6WiGU - additionalProperties: true - -definitions: - retriever: - type: SimpleRetriever - requester: - type: HttpRequester - url_base: "https://api.apify.com/v2/" - http_method: "GET" - authenticator: - type: BearerAuthenticator - api_token: "{{ config['token'] }}" - request_options_provider: - request_headers: - User-Agent: "Airbyte" - paginator: - type: "DefaultPaginator" - page_size_option: - type: "RequestOption" - inject_into: "request_parameter" - field_name: "limit" - pagination_strategy: - type: "OffsetIncrement" - page_size: 50 - page_token_option: - type: "RequestOption" - field_name: "offset" - inject_into: "request_parameter" - -streams: - - type: DeclarativeStream - name: dataset_collection - primary_key: "id" - $parameters: - path: "datasets" - schema_loader: - type: InlineSchemaLoader - file_path: "./source_apify_dataset/schemas/dataset_collection.json" - schema: - $schema: http://json-schema.org/draft-07/schema# - title: Collection of datasets schema - type: - - "null" - - object - additionalProperties: true - properties: - id: - description: Unique identifier of the dataset collection - type: - - "null" - - string - name: - description: Name or title of the dataset collection - type: - - "null" - - string - userId: - description: User ID of the owner of the dataset collection - type: - - "null" - - string - createdAt: - description: Date and time when the dataset collection was created - type: - - "null" - - string - modifiedAt: - description: Date and time when the dataset collection was last modified - type: - - "null" - - string - accessedAt: - description: Date and time when the dataset collection was last accessed - type: - - "null" - - string - itemCount: - description: Total number of items in the dataset collection - type: - - "null" - - number - username: - description: Username of the owner of the dataset collection - type: - - "null" - - string - stats: - description: Statistics related to the dataset collection - type: - - "null" - - object - additionalProperties: true - properties: - readCount: - description: Number of read operations performed on the dataset collection - type: - - "null" - - number - storageBytes: - description: Total storage size in bytes occupied by the dataset collection - type: - - "null" - - number - writeCount: - description: Number of write operations performed on the dataset collection - type: - - "null" - - number - schema: - description: Data schema or structure of the dataset collection - type: - - "null" - - string - cleanItemCount: - description: Number of clean items in the dataset collection - type: - - "null" - - number - actId: - description: Identifier of the actor associated with the dataset collection - type: - - "null" - - string - actRunId: - description: Identifier of the actor run associated with the dataset collection - type: - - "null" - - string - title: - description: Display title of the dataset collection - type: - - "null" - - string - fields: - description: Fields present in the dataset collection - anyOf: - - type: "null" - - type: array - retriever: - $ref: "#/definitions/retriever" - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: ["data", "items"] - - - type: DeclarativeStream - name: dataset - primary_key: "id" - $parameters: - path: "datasets/{{ config['dataset_id'] }}" - schema_loader: - type: InlineSchemaLoader - file_path: "./source_apify_dataset/schemas/dataset.json" - schema: - $schema: http://json-schema.org/draft-07/schema# - title: Individual datasets schema - type: - - "null" - - object - additionalProperties: true - properties: - id: - description: Unique identifier of the dataset - type: - - "null" - - string - name: - description: Name of the dataset - type: - - "null" - - string - userId: - description: User ID of the owner of the dataset - type: - - "null" - - string - createdAt: - description: Timestamp when the dataset was created - type: - - "null" - - string - stats: - description: Contains statistical information about the dataset. - type: - - "null" - - object - additionalProperties: true - properties: - readCount: - description: Number of times the dataset was read - type: - - "null" - - number - storageBytes: - description: Total storage size of the dataset in bytes - type: - - "null" - - number - writeCount: - description: Number of times the dataset was written to - type: - - "null" - - number - schema: - description: Schema definition of the dataset - type: - - "null" - - string - - object - modifiedAt: - description: Timestamp when the dataset was last modified - type: - - "null" - - string - accessedAt: - description: Timestamp when the dataset was last accessed - type: - - "null" - - string - itemCount: - description: Total number of items in the dataset - type: - - "null" - - number - cleanItemCount: - description: Number of clean items in the dataset - type: - - "null" - - number - actId: - description: Identifier of the actor associated with the dataset - type: - - "null" - - string - actRunId: - description: Identifier of the actor run associated with the dataset - type: - - "null" - - string - title: - description: Title of the dataset - type: - - "null" - - string - fields: - description: List of fields available in the dataset - anyOf: - - type: "null" - - type: array - retriever: - $ref: "#/definitions/retriever" - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: ["data"] - - - type: DeclarativeStream - name: item_collection_website_content_crawler - $parameters: - path: "datasets/{{ config['dataset_id'] }}/items" - schema_loader: - type: InlineSchemaLoader - file_path: "./source_apify_dataset/schemas/item_collection_wcc.json" - schema: - $schema: http://json-schema.org/draft-07/schema# - title: Item collection - Website Content Crawler (WCC) - type: - - "null" - - object - additionalProperties: true - properties: - crawl: - description: Information related to web crawling - additionalProperties: true - properties: - depth: - description: Depth level of the crawled page - type: - - "null" - - number - httpStatusCode: - description: HTTP status code of the response - type: - - "null" - - number - loadedTime: - description: Time when the page was loaded - type: - - "null" - - string - loadedUrl: - description: URL of the loaded page - type: - - "null" - - string - referrerUrl: - description: URL of the page that referred to the current page - type: - - "null" - - string - type: - - "null" - - object - markdown: - description: Markdown content of the webpage - type: - - "null" - - string - metadata: - description: Metadata information of the webpage - additionalProperties: true - properties: - canonicalUrl: - description: Canonical URL of the webpage - type: - - "null" - - string - description: - description: Description of the webpage - type: - - "null" - - string - languageCode: - description: Language code of the webpage content - type: - - "null" - - string - title: - description: Title of the webpage - type: - - "null" - - string - type: - - "null" - - object - text: - description: Text content of the webpage - type: - - "null" - - string - url: - description: URL of the webpage - type: - - "null" - - string - screenshotUrl: - description: URL of the screenshot of the webpage - type: - - "null" - - string - retriever: - $ref: "#/definitions/retriever" - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: [] - - - type: DeclarativeStream - name: item_collection - $parameters: - path: "datasets/{{ config['dataset_id'] }}/items" - schema_loader: - type: InlineSchemaLoader - file_path: "./source_apify_dataset/schemas/item_collection.json" - schema: - $schema: http://json-schema.org/draft-07/schema# - title: Item collection - type: - - "null" - - object - additionalProperties: true - properties: - data: - description: Collection of items with detailed information - additionalProperties: true - type: - - "null" - - object - retriever: - $ref: "#/definitions/retriever" - record_selector: - type: RecordSelector - extractor: - class_name: source_apify_dataset.wrapping_dpath_extractor.WrappingDpathExtractor - field_path: [] - -check: - type: CheckStream - stream_names: - - dataset_collection - - dataset - - item_collection_website_content_crawler - - item_collection diff --git a/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/run.py b/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/run.py deleted file mode 100644 index c7488d02985e..000000000000 --- a/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/run.py +++ /dev/null @@ -1,15 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch - -from .source import SourceApifyDataset - - -def run(): - source = SourceApifyDataset() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/source.py b/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/source.py deleted file mode 100644 index 5b99be176ad1..000000000000 --- a/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceApifyDataset(YamlDeclarativeSource): - def __init__(self): - super().__init__(path_to_yaml="manifest.yaml") diff --git a/docs/integrations/sources/apify-dataset.md b/docs/integrations/sources/apify-dataset.md index ea1b2f1a69fe..791a03ae536d 100644 --- a/docs/integrations/sources/apify-dataset.md +++ b/docs/integrations/sources/apify-dataset.md @@ -72,6 +72,7 @@ The Apify dataset connector uses [Apify Python Client](https://docs.apify.com/ap | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 2.2.0 | 2024-10-29 | [47286](https://github.com/airbytehq/airbyte/pull/47286) | Migrate to manifest only format | | 2.1.27 | 2024-10-29 | [47068](https://github.com/airbytehq/airbyte/pull/47068) | Update dependencies | | 2.1.26 | 2024-10-12 | [46837](https://github.com/airbytehq/airbyte/pull/46837) | Update dependencies | | 2.1.25 | 2024-10-01 | [46373](https://github.com/airbytehq/airbyte/pull/46373) | add user-agent header to be able to track Airbyte integration on Apify | From bb1ec715b2fd14f45709317ddded6d7a4c726340 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:07:56 +0200 Subject: [PATCH 437/808] =?UTF-8?q?=F0=9F=90=99=20source-trustpilot:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47937)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-trustpilot/metadata.yaml | 4 ++-- docs/integrations/sources/trustpilot.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-trustpilot/metadata.yaml b/airbyte-integrations/connectors/source-trustpilot/metadata.yaml index 8de2fecf7131..56b273e52d13 100644 --- a/airbyte-integrations/connectors/source-trustpilot/metadata.yaml +++ b/airbyte-integrations/connectors/source-trustpilot/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d7e23ea6-d741-4314-9209-a33c91a2e945 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-trustpilot githubIssueLabel: source-trustpilot icon: trustpilot.svg @@ -40,5 +40,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/trustpilot.md b/docs/integrations/sources/trustpilot.md index ff7c48f1f368..1fba659f9605 100644 --- a/docs/integrations/sources/trustpilot.md +++ b/docs/integrations/sources/trustpilot.md @@ -61,6 +61,7 @@ The Trustpilot connector should not run into any limits under normal usage. Plea | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------- | +| 0.3.2 | 2024-10-29 | [47937](https://github.com/airbytehq/airbyte/pull/47937) | Update dependencies | | 0.3.1 | 2024-10-28 | [47647](https://github.com/airbytehq/airbyte/pull/47647) | Update dependencies | | 0.3.0 | 2024-10-06 | [46529](https://github.com/airbytehq/airbyte/pull/46529) | Migrate to Manifest-only | | 0.2.13 | 2024-10-05 | [46507](https://github.com/airbytehq/airbyte/pull/46507) | Update dependencies | From d91bccc672dcb7ca4eeb1ec9f39be353c7b075db Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:08:59 +0200 Subject: [PATCH 438/808] =?UTF-8?q?=F0=9F=90=99=20source-rd-station-market?= =?UTF-8?q?ing:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47936)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rd-station-marketing/metadata.yaml | 4 ++-- docs/integrations/sources/rd-station-marketing.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml b/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml index 8ec3ba38550a..60774f9fcdae 100644 --- a/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: fb141f29-be2a-450b-a4f2-2cd203a00f84 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-rd-station-marketing githubIssueLabel: source-rd-station-marketing icon: rdstation.svg @@ -36,5 +36,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/rd-station-marketing.md b/docs/integrations/sources/rd-station-marketing.md index cb5d5982b785..9433154c9a74 100644 --- a/docs/integrations/sources/rd-station-marketing.md +++ b/docs/integrations/sources/rd-station-marketing.md @@ -47,6 +47,7 @@ Each endpoint has its own performance limitations, which also consider the accou | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------- | +| 0.3.3 | 2024-10-29 | [47936](https://github.com/airbytehq/airbyte/pull/47936) | Update dependencies | | 0.3.2 | 2024-10-28 | [47577](https://github.com/airbytehq/airbyte/pull/47577) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-14 | [44081](https://github.com/airbytehq/airbyte/pull/44081) | Refactor connector to manifest-only format | From 4d650167285e1d805bd1c067e3f1a52402f3f3e5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:05 +0200 Subject: [PATCH 439/808] =?UTF-8?q?=F0=9F=90=99=20source-fleetio:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47932)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-fleetio/metadata.yaml | 4 ++-- docs/integrations/sources/fleetio.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-fleetio/metadata.yaml b/airbyte-integrations/connectors/source-fleetio/metadata.yaml index fde70eef0f79..f3adf798f88e 100644 --- a/airbyte-integrations/connectors/source-fleetio/metadata.yaml +++ b/airbyte-integrations/connectors/source-fleetio/metadata.yaml @@ -5,11 +5,11 @@ data: oss: enabled: true connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.3@sha256:c313c25af0617f5879361e684c956ac25ac1122beaf311c967e5b7a9b45ded79 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 13a7652d-1d94-4033-931a-613d22d3cbb3 - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-fleetio githubIssueLabel: source-fleetio icon: icon.svg diff --git a/docs/integrations/sources/fleetio.md b/docs/integrations/sources/fleetio.md index e590c76f583f..2bdc32aff985 100644 --- a/docs/integrations/sources/fleetio.md +++ b/docs/integrations/sources/fleetio.md @@ -51,6 +51,7 @@ Our source connector adheres to the standard rate limiting with the Airbyte low- | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------| +| 0.2.1 | 2024-10-29 | [47932](https://github.com/airbytehq/airbyte/pull/47932) | Update dependencies | | 0.2.0 | 2024-08-22 | [44567](https://github.com/airbytehq/airbyte/pull/44567) | Refactor connector to manifest-only format | | 0.1.11 | 2024-08-17 | [44268](https://github.com/airbytehq/airbyte/pull/44268) | Update dependencies | | 0.1.10 | 2024-08-12 | [43927](https://github.com/airbytehq/airbyte/pull/43927) | Update dependencies | From f49675b0c6af104e3cb773d1218e111d95d28490 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:08 +0200 Subject: [PATCH 440/808] =?UTF-8?q?=F0=9F=90=99=20source-piwik:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47931)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-piwik/metadata.yaml | 4 ++-- docs/integrations/sources/piwik.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-piwik/metadata.yaml b/airbyte-integrations/connectors/source-piwik/metadata.yaml index 56fd67805fa5..e69350cd3540 100644 --- a/airbyte-integrations/connectors/source-piwik/metadata.yaml +++ b/airbyte-integrations/connectors/source-piwik/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-piwik connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 09f894a4-d2fb-488f-b0eb-640205314296 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-piwik githubIssueLabel: source-piwik icon: icon.svg diff --git a/docs/integrations/sources/piwik.md b/docs/integrations/sources/piwik.md index 5a8f1ce59a75..dbf73781232e 100644 --- a/docs/integrations/sources/piwik.md +++ b/docs/integrations/sources/piwik.md @@ -41,6 +41,7 @@ Visit `https://developers.piwik.pro/en/latest/platform/getting_started.html#gene | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-10-29 | [47931](https://github.com/airbytehq/airbyte/pull/47931) | Update dependencies | | 0.0.2 | 2024-10-28 | [47569](https://github.com/airbytehq/airbyte/pull/47569) | Update dependencies | | 0.0.1 | 2024-09-14 | [45586](https://github.com/airbytehq/airbyte/pull/45586) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 90787d02d8e6b813eb2489998cbdc75404688b9b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:11 +0200 Subject: [PATCH 441/808] =?UTF-8?q?=F0=9F=90=99=20source-jotform:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47930)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-jotform/metadata.yaml | 4 ++-- docs/integrations/sources/jotform.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-jotform/metadata.yaml b/airbyte-integrations/connectors/source-jotform/metadata.yaml index 0ed8f160b7d1..510af22e783c 100644 --- a/airbyte-integrations/connectors/source-jotform/metadata.yaml +++ b/airbyte-integrations/connectors/source-jotform/metadata.yaml @@ -16,11 +16,11 @@ data: enabled: false packageName: airbyte-source-jotform connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 3456679e-2ff2-4ef7-aa9f-da6c0cc13894 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-jotform githubIssueLabel: source-jotform icon: icon.svg diff --git a/docs/integrations/sources/jotform.md b/docs/integrations/sources/jotform.md index 2152e9b652ef..e1a3427ff09e 100644 --- a/docs/integrations/sources/jotform.md +++ b/docs/integrations/sources/jotform.md @@ -32,6 +32,7 @@ To get started, you need a valid API key. | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-10-29 | [47930](https://github.com/airbytehq/airbyte/pull/47930) | Update dependencies | | 0.0.2 | 2024-10-28 | [47603](https://github.com/airbytehq/airbyte/pull/47603) | Update dependencies | | 0.0.1 | 2024-09-12 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 2e28cebf2a6af815d57f59a47a6520f6202b7611 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:15 +0200 Subject: [PATCH 442/808] =?UTF-8?q?=F0=9F=90=99=20source-serpstat:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47928)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-serpstat/metadata.yaml | 4 ++-- docs/integrations/sources/serpstat.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-serpstat/metadata.yaml b/airbyte-integrations/connectors/source-serpstat/metadata.yaml index 6e914d49484d..516c88f3ceb6 100644 --- a/airbyte-integrations/connectors/source-serpstat/metadata.yaml +++ b/airbyte-integrations/connectors/source-serpstat/metadata.yaml @@ -13,11 +13,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 3b2e8fb2-9137-41ff-a1e1-83ecb39e26c8 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-serpstat githubIssueLabel: source-serpstat icon: serpstat.svg diff --git a/docs/integrations/sources/serpstat.md b/docs/integrations/sources/serpstat.md index 99d63a8d052e..8727f3162c7a 100644 --- a/docs/integrations/sources/serpstat.md +++ b/docs/integrations/sources/serpstat.md @@ -52,6 +52,7 @@ The maximum sync speed is limited by the number of requests per second per API k | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------- | +| 0.2.3 | 2024-10-29 | [47928](https://github.com/airbytehq/airbyte/pull/47928) | Update dependencies | | 0.2.2 | 2024-10-28 | [47666](https://github.com/airbytehq/airbyte/pull/47666) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44067](https://github.com/airbytehq/airbyte/pull/44067) | Refactor connector to manifest-only format | From d44458f02637e078fce79e795220381fb2727de1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:18 +0200 Subject: [PATCH 443/808] =?UTF-8?q?=F0=9F=90=99=20source-pokeapi:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47927)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pokeapi/metadata.yaml | 4 ++-- docs/integrations/sources/pokeapi.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-pokeapi/metadata.yaml b/airbyte-integrations/connectors/source-pokeapi/metadata.yaml index b35c899ad956..03037a2384d4 100644 --- a/airbyte-integrations/connectors/source-pokeapi/metadata.yaml +++ b/airbyte-integrations/connectors/source-pokeapi/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 6371b14b-bc68-4236-bfbd-468e8df8e968 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-pokeapi githubIssueLabel: source-pokeapi icon: pokeapi.svg diff --git a/docs/integrations/sources/pokeapi.md b/docs/integrations/sources/pokeapi.md index 396be87f9774..69e383d40471 100644 --- a/docs/integrations/sources/pokeapi.md +++ b/docs/integrations/sources/pokeapi.md @@ -39,6 +39,7 @@ The PokéAPI uses the same [JSONSchema](https://json-schema.org/understanding-js | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------- | +| 0.3.2 | 2024-10-29 | [47927](https://github.com/airbytehq/airbyte/pull/47927) | Update dependencies | | 0.3.1 | 2024-10-28 | [47461](https://github.com/airbytehq/airbyte/pull/47461) | Update dependencies | | 0.3.0 | 2024-08-26 | [44791](https://github.com/airbytehq/airbyte/pull/44791) | Refactor connector to manifest-only format | | 0.2.15 | 2024-08-24 | [44749](https://github.com/airbytehq/airbyte/pull/44749) | Update dependencies | From 59c87aed12a90358d3fbf54871c57b93cf40b0c8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:21 +0200 Subject: [PATCH 444/808] =?UTF-8?q?=F0=9F=90=99=20source-nylas:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47926)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-nylas/metadata.yaml | 4 ++-- docs/integrations/sources/nylas.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-nylas/metadata.yaml b/airbyte-integrations/connectors/source-nylas/metadata.yaml index e560a527ff81..e956b9eb948c 100644 --- a/airbyte-integrations/connectors/source-nylas/metadata.yaml +++ b/airbyte-integrations/connectors/source-nylas/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-nylas connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 136a1ee6-5b95-4e09-9f3f-5c8df35df690 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-nylas githubIssueLabel: source-nylas icon: icon.svg diff --git a/docs/integrations/sources/nylas.md b/docs/integrations/sources/nylas.md index 004767772113..220d40db902b 100644 --- a/docs/integrations/sources/nylas.md +++ b/docs/integrations/sources/nylas.md @@ -33,6 +33,7 @@ The Nylas platform provides an integration layer that makes it easy to connect a | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-10-29 | [47926](https://github.com/airbytehq/airbyte/pull/47926) | Update dependencies | | 0.0.2 | 2024-10-28 | [47649](https://github.com/airbytehq/airbyte/pull/47649) | Update dependencies | | 0.0.1 | 2024-09-03 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From f10df360817244e5daf5d97006c9fa2c9a3eabce Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:24 +0200 Subject: [PATCH 445/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-lists:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47925)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-microsoft-lists/metadata.yaml | 4 ++-- docs/integrations/sources/microsoft-lists.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml index 22ffa5385c69..da60bb599f13 100644 --- a/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-microsoft-lists connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 18ea5fae-f0b1-4d82-9aef-832bb922a5b5 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-microsoft-lists githubIssueLabel: source-microsoft-lists icon: icon.svg diff --git a/docs/integrations/sources/microsoft-lists.md b/docs/integrations/sources/microsoft-lists.md index 6f481886bfd7..619ab8473725 100644 --- a/docs/integrations/sources/microsoft-lists.md +++ b/docs/integrations/sources/microsoft-lists.md @@ -61,6 +61,7 @@ Microsoft Lists connector enables seamless data integration and synchronization | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47925](https://github.com/airbytehq/airbyte/pull/47925) | Update dependencies | | 0.0.2 | 2024-10-28 | [47544](https://github.com/airbytehq/airbyte/pull/47544) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 2b392a70753c77dd0b7131efbe5b72386f3047a8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:27 +0200 Subject: [PATCH 446/808] =?UTF-8?q?=F0=9F=90=99=20source-recruitee:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47924)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recruitee/metadata.yaml | 4 ++-- docs/integrations/sources/recruitee.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-recruitee/metadata.yaml b/airbyte-integrations/connectors/source-recruitee/metadata.yaml index e64e1e43d77b..b3d678329a62 100644 --- a/airbyte-integrations/connectors/source-recruitee/metadata.yaml +++ b/airbyte-integrations/connectors/source-recruitee/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3b046ac7-d8d3-4eb3-b122-f96b2a16d8a8 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-recruitee githubIssueLabel: source-recruitee icon: recruitee.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/recruitee.md b/docs/integrations/sources/recruitee.md index 8616a066e15c..447adfc84e97 100644 --- a/docs/integrations/sources/recruitee.md +++ b/docs/integrations/sources/recruitee.md @@ -53,6 +53,7 @@ The Recruitee source connector supports the following [sync modes](https://docs. | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :-------------------- | +| 0.2.3 | 2024-10-29 | [47924](https://github.com/airbytehq/airbyte/pull/47924) | Update dependencies | | 0.2.2 | 2024-10-28 | [47522](https://github.com/airbytehq/airbyte/pull/47522) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44079](https://github.com/airbytehq/airbyte/pull/44079) | Refactor connector to manifest-only format | From 654c32963594ad96a9b844197546aa44584a45eb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:30 +0200 Subject: [PATCH 447/808] =?UTF-8?q?=F0=9F=90=99=20source-gorgias:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47923)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gorgias/metadata.yaml | 4 ++-- docs/integrations/sources/gorgias.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-gorgias/metadata.yaml b/airbyte-integrations/connectors/source-gorgias/metadata.yaml index d9441b06dbb9..dd2adedb848c 100644 --- a/airbyte-integrations/connectors/source-gorgias/metadata.yaml +++ b/airbyte-integrations/connectors/source-gorgias/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-gorgias connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 9fdc3733-c51a-4129-9be5-7e9ad6eab6ac - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-gorgias githubIssueLabel: source-gorgias icon: icon.svg diff --git a/docs/integrations/sources/gorgias.md b/docs/integrations/sources/gorgias.md index bf9ab28da50b..a56688418f0e 100644 --- a/docs/integrations/sources/gorgias.md +++ b/docs/integrations/sources/gorgias.md @@ -43,6 +43,7 @@ Visit `https://developers.gorgias.com/reference/introduction` for API documentat | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-10-29 | [47923](https://github.com/airbytehq/airbyte/pull/47923) | Update dependencies | | 0.0.2 | 2024-10-28 | [47459](https://github.com/airbytehq/airbyte/pull/47459) | Update dependencies | | 0.0.1 | 2024-09-29 | [46221](https://github.com/airbytehq/airbyte/pull/46221) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 91824365137ee63955c915fd4257f2a6c1b9b547 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:33 +0200 Subject: [PATCH 448/808] =?UTF-8?q?=F0=9F=90=99=20source-brevo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47922)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-brevo/metadata.yaml | 4 ++-- docs/integrations/sources/brevo.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-brevo/metadata.yaml b/airbyte-integrations/connectors/source-brevo/metadata.yaml index f6de4d8e76fe..17ee13594227 100644 --- a/airbyte-integrations/connectors/source-brevo/metadata.yaml +++ b/airbyte-integrations/connectors/source-brevo/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-brevo connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: e2276f19-1c19-4d4e-ae6c-7df3c9c4ad49 - dockerImageTag: 0.1.1 + dockerImageTag: 0.1.2 dockerRepository: airbyte/source-brevo githubIssueLabel: source-brevo icon: icon.svg diff --git a/docs/integrations/sources/brevo.md b/docs/integrations/sources/brevo.md index 73a8f6ab8588..0b31939ebcb8 100644 --- a/docs/integrations/sources/brevo.md +++ b/docs/integrations/sources/brevo.md @@ -49,6 +49,7 @@ Visit `https://app.brevo.com/settings/keys/api` for getting your api key. | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.1.2 | 2024-10-29 | [47922](https://github.com/airbytehq/airbyte/pull/47922) | Update dependencies | | 0.1.1 | 2024-10-28 | [47622](https://github.com/airbytehq/airbyte/pull/47622) | Update dependencies | | 0.1.0 | 2024-10-08 | [46587](https://github.com/airbytehq/airbyte/pull/46587) | Fix Companies stream paginator+ remove incremental | | 0.0.1 | 2024-09-11 | [45382](https://github.com/airbytehq/airbyte/pull/45382) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From f4b78be0a8a0ec5cc92d21df5649d6bb0b78181a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:37 +0200 Subject: [PATCH 449/808] =?UTF-8?q?=F0=9F=90=99=20source-opsgenie:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47920)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-opsgenie/metadata.yaml | 4 ++-- docs/integrations/sources/opsgenie.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-opsgenie/metadata.yaml b/airbyte-integrations/connectors/source-opsgenie/metadata.yaml index bf8e2bb9ef63..17d09538b8c5 100644 --- a/airbyte-integrations/connectors/source-opsgenie/metadata.yaml +++ b/airbyte-integrations/connectors/source-opsgenie/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 06bdb480-2598-40b8-8b0f-fc2e2d2abdda - dockerImageTag: 0.4.2 + dockerImageTag: 0.4.3 dockerRepository: airbyte/source-opsgenie documentationUrl: https://docs.airbyte.com/integrations/sources/opsgenie githubIssueLabel: source-opsgenie diff --git a/docs/integrations/sources/opsgenie.md b/docs/integrations/sources/opsgenie.md index be1a33395c91..ac55e9e54d7a 100644 --- a/docs/integrations/sources/opsgenie.md +++ b/docs/integrations/sources/opsgenie.md @@ -54,6 +54,7 @@ The Opsgenie connector uses the most recent API version for each source of data. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.4.3 | 2024-10-29 | [47920](https://github.com/airbytehq/airbyte/pull/47920) | Update dependencies | | 0.4.2 | 2024-10-28 | [47653](https://github.com/airbytehq/airbyte/pull/47653) | Update dependencies | | 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.4.0 | 2024-08-15 | [44105](https://github.com/airbytehq/airbyte/pull/44105) | Refactor connector to manifest-only format | From ef1fabeba5513a7f0ce4849d918878fad039be16 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:41 +0200 Subject: [PATCH 450/808] =?UTF-8?q?=F0=9F=90=99=20source-intercom:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47919)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-intercom/metadata.yaml | 2 +- .../connectors/source-intercom/poetry.lock | 18 +++++++++--------- .../connectors/source-intercom/pyproject.toml | 2 +- docs/integrations/sources/intercom.md | 1 + 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/airbyte-integrations/connectors/source-intercom/metadata.yaml b/airbyte-integrations/connectors/source-intercom/metadata.yaml index 41b51a1a0dd8..c48d38a3021a 100644 --- a/airbyte-integrations/connectors/source-intercom/metadata.yaml +++ b/airbyte-integrations/connectors/source-intercom/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: d8313939-3782-41b0-be29-b3ca20d8dd3a - dockerImageTag: 0.8.1 + dockerImageTag: 0.8.2 dockerRepository: airbyte/source-intercom documentationUrl: https://docs.airbyte.com/integrations/sources/intercom githubIssueLabel: source-intercom diff --git a/airbyte-integrations/connectors/source-intercom/poetry.lock b/airbyte-integrations/connectors/source-intercom/poetry.lock index 1d6abbe9a3fb..cd6e4347052c 100644 --- a/airbyte-integrations/connectors/source-intercom/poetry.lock +++ b/airbyte-integrations/connectors/source-intercom/poetry.lock @@ -1490,23 +1490,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1558,13 +1558,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-intercom/pyproject.toml b/airbyte-integrations/connectors/source-intercom/pyproject.toml index 571525288f71..8b35413efe2e 100644 --- a/airbyte-integrations/connectors/source-intercom/pyproject.toml +++ b/airbyte-integrations/connectors/source-intercom/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.8.1" +version = "0.8.2" name = "source-intercom" description = "Source implementation for Intercom Yaml." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/intercom.md b/docs/integrations/sources/intercom.md index 2f65647fc8ad..33524c765387 100644 --- a/docs/integrations/sources/intercom.md +++ b/docs/integrations/sources/intercom.md @@ -96,6 +96,7 @@ The Intercom connector should not run into Intercom API limitations under normal | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------| +| 0.8.2 | 2024-10-29 | [47919](https://github.com/airbytehq/airbyte/pull/47919) | Update dependencies | | 0.8.1 | 2024-10-28 | [47537](https://github.com/airbytehq/airbyte/pull/47537) | Update dependencies | | 0.8.0 | 2024-10-23 | [46658](https://github.com/airbytehq/airbyte/pull/46658) | Add `lookback_window` to the source specification | | 0.7.5 | 2024-10-21 | [47120](https://github.com/airbytehq/airbyte/pull/47120) | Update dependencies | From e1b8f72d104e3000c40cf28c711709c358881703 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:44 +0200 Subject: [PATCH 451/808] =?UTF-8?q?=F0=9F=90=99=20source-gnews:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-10-29]=20(#47918)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gnews/metadata.yaml | 4 ++-- docs/integrations/sources/gnews.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-gnews/metadata.yaml b/airbyte-integrations/connectors/source-gnews/metadata.yaml index f2dbe81aa0e5..ae662d0c10b7 100644 --- a/airbyte-integrations/connectors/source-gnews/metadata.yaml +++ b/airbyte-integrations/connectors/source-gnews/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ce38aec4-5a77-439a-be29-9ca44fd4e811 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-gnews githubIssueLabel: source-gnews icon: gnews.svg @@ -40,5 +40,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/gnews.md b/docs/integrations/sources/gnews.md index add4f9e236ee..19de9fdcda86 100644 --- a/docs/integrations/sources/gnews.md +++ b/docs/integrations/sources/gnews.md @@ -40,6 +40,7 @@ Rate Limiting is based on the API Key tier subscription, get more info [here](ht | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------- | +| 0.2.2 | 2024-10-29 | [47918](https://github.com/airbytehq/airbyte/pull/47918) | Update dependencies | | 0.2.1 | 2024-10-28 | [47499](https://github.com/airbytehq/airbyte/pull/47499) | Update dependencies | | 0.2.0 | 2024-10-17 | [46959](https://github.com/airbytehq/airbyte/pull/46959) | Refactor connector to manifest-only format | | 0.1.25 | 2024-10-12 | [46802](https://github.com/airbytehq/airbyte/pull/46802) | Update dependencies | From 6e277dbb13290ec4632cbeb3508eedbdf4cffe32 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:47 +0200 Subject: [PATCH 452/808] =?UTF-8?q?=F0=9F=90=99=20source-insightly:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47917)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-insightly/metadata.yaml | 4 ++-- docs/integrations/sources/insightly.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-insightly/metadata.yaml b/airbyte-integrations/connectors/source-insightly/metadata.yaml index f092a0de0ac3..e82fda0789fa 100644 --- a/airbyte-integrations/connectors/source-insightly/metadata.yaml +++ b/airbyte-integrations/connectors/source-insightly/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - api.na1.insightly.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 38f84314-fe6a-4257-97be-a8dcd942d693 - dockerImageTag: 0.3.1 + dockerImageTag: 0.3.2 dockerRepository: airbyte/source-insightly documentationUrl: https://docs.airbyte.com/integrations/sources/insightly githubIssueLabel: source-insightly diff --git a/docs/integrations/sources/insightly.md b/docs/integrations/sources/insightly.md index aaa2913dc5bf..b767281222b3 100644 --- a/docs/integrations/sources/insightly.md +++ b/docs/integrations/sources/insightly.md @@ -72,7 +72,8 @@ The connector is restricted by Insightly [requests limitation](https://api.na1.i | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.3.2 | 2024-10-29 | [47917](https://github.com/airbytehq/airbyte/pull/47917) | Update dependencies | +| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44140](https://github.com/airbytehq/airbyte/pull/44140) | Refactor connector to manifest-only format | | 0.2.16 | 2024-08-10 | [43646](https://github.com/airbytehq/airbyte/pull/43646) | Update dependencies | | 0.2.15 | 2024-08-03 | [43206](https://github.com/airbytehq/airbyte/pull/43206) | Update dependencies | From f22315101f241bad26a5606790b55ef60c7e1c6e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:50 +0200 Subject: [PATCH 453/808] =?UTF-8?q?=F0=9F=90=99=20source-leadfeeder:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47916)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-leadfeeder/metadata.yaml | 4 ++-- docs/integrations/sources/leadfeeder.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml b/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml index 55e0ab7e2bd4..682c9e7bdbad 100644 --- a/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml +++ b/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-leadfeeder connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: daa0fe89-6e72-479e-a314-5e65cfc7103c - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-leadfeeder githubIssueLabel: source-leadfeeder icon: icon.svg diff --git a/docs/integrations/sources/leadfeeder.md b/docs/integrations/sources/leadfeeder.md index d2a765b8b369..7f0e64d13121 100644 --- a/docs/integrations/sources/leadfeeder.md +++ b/docs/integrations/sources/leadfeeder.md @@ -22,6 +22,7 @@ | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-10-29 | [47916](https://github.com/airbytehq/airbyte/pull/47916) | Update dependencies | | 0.0.2 | 2024-10-28 | [47617](https://github.com/airbytehq/airbyte/pull/47617) | Update dependencies | | 0.0.1 | 2024-08-21 | | Initial release by natikgadzhi via Connector Builder | From 481b7f5161346fc13bbeffee91dd135432eda0b9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:53 +0200 Subject: [PATCH 454/808] =?UTF-8?q?=F0=9F=90=99=20source-kisi:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-10-29]=20(#47914)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-kisi/metadata.yaml | 4 ++-- docs/integrations/sources/kisi.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-kisi/metadata.yaml b/airbyte-integrations/connectors/source-kisi/metadata.yaml index c86bbc13019b..022e8bbbcfea 100644 --- a/airbyte-integrations/connectors/source-kisi/metadata.yaml +++ b/airbyte-integrations/connectors/source-kisi/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-kisi connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 7706728b-f644-456e-8dd4-ac92c4d8f31a - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-kisi githubIssueLabel: source-kisi icon: icon.svg diff --git a/docs/integrations/sources/kisi.md b/docs/integrations/sources/kisi.md index 4d591e548fc3..c485bd5bb688 100644 --- a/docs/integrations/sources/kisi.md +++ b/docs/integrations/sources/kisi.md @@ -39,6 +39,7 @@ You can learn more about the API key here https://api.kisi.io/docs#/ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47914](https://github.com/airbytehq/airbyte/pull/47914) | Update dependencies | | 0.0.2 | 2024-10-28 | [47606](https://github.com/airbytehq/airbyte/pull/47606) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From f7ba56448ed08a8698a36b0cb289007cfaed4ac3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:57 +0200 Subject: [PATCH 455/808] =?UTF-8?q?=F0=9F=90=99=20source-ezofficeinventory?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47913)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-ezofficeinventory/metadata.yaml | 4 ++-- docs/integrations/sources/ezofficeinventory.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml b/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml index fefde8b7c480..691456e30b98 100644 --- a/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml +++ b/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-ezofficeinventory connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 7b6be0f6-4139-42f8-a89e-2ca25560979a - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-ezofficeinventory githubIssueLabel: source-ezofficeinventory icon: icon.svg diff --git a/docs/integrations/sources/ezofficeinventory.md b/docs/integrations/sources/ezofficeinventory.md index 448ec5db76cd..ea7a4c20dab1 100644 --- a/docs/integrations/sources/ezofficeinventory.md +++ b/docs/integrations/sources/ezofficeinventory.md @@ -37,6 +37,7 @@ A manifest only source for EZOfficeInventory. https://ezo.io/ezofficeinventory/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| +| 0.0.3 | 2024-10-29 | [47913](https://github.com/airbytehq/airbyte/pull/47913) | Update dependencies | | 0.0.2 | 2024-10-28 | [47535](https://github.com/airbytehq/airbyte/pull/47535) | Update dependencies | | 0.0.1 | 2024-09-15 | [45590](https://github.com/airbytehq/airbyte/pull/45590) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | From f3efe7d689bb73ae4896a2b113bd34258b201f11 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:09:59 +0200 Subject: [PATCH 456/808] =?UTF-8?q?=F0=9F=90=99=20source-open-data-dc:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-10-29]=20(#47912)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-open-data-dc/metadata.yaml | 4 ++-- docs/integrations/sources/open-data-dc.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-open-data-dc/metadata.yaml b/airbyte-integrations/connectors/source-open-data-dc/metadata.yaml index 75c1751efa02..a8c8c91cbe9c 100644 --- a/airbyte-integrations/connectors/source-open-data-dc/metadata.yaml +++ b/airbyte-integrations/connectors/source-open-data-dc/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-open-data-dc connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 1178ad64-72bb-4326-86fb-b623663842b6 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-open-data-dc githubIssueLabel: source-open-data-dc icon: icon.svg diff --git a/docs/integrations/sources/open-data-dc.md b/docs/integrations/sources/open-data-dc.md index 1ff8df916765..579deffc67d5 100644 --- a/docs/integrations/sources/open-data-dc.md +++ b/docs/integrations/sources/open-data-dc.md @@ -43,6 +43,7 @@ MARID is the Master Address Repository ID associated with all addresses within t | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-10-29 | [47912](https://github.com/airbytehq/airbyte/pull/47912) | Update dependencies | | 0.0.2 | 2024-10-28 | [47594](https://github.com/airbytehq/airbyte/pull/47594) | Update dependencies | | 0.0.1 | 2024-10-06 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 9755d604d7b04c7db778f8147aebb1b71175e554 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:10:03 +0200 Subject: [PATCH 457/808] =?UTF-8?q?=F0=9F=90=99=20source-pandadoc:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47911)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pandadoc/metadata.yaml | 4 ++-- docs/integrations/sources/pandadoc.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-pandadoc/metadata.yaml b/airbyte-integrations/connectors/source-pandadoc/metadata.yaml index e4f1cbeed314..542c24e0c9cf 100644 --- a/airbyte-integrations/connectors/source-pandadoc/metadata.yaml +++ b/airbyte-integrations/connectors/source-pandadoc/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-pandadoc connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: c5719626-6fc3-48e6-8f1d-ca5d4ecd2b5c - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-pandadoc githubIssueLabel: source-pandadoc icon: icon.svg diff --git a/docs/integrations/sources/pandadoc.md b/docs/integrations/sources/pandadoc.md index 2647b8972afe..942265df6488 100644 --- a/docs/integrations/sources/pandadoc.md +++ b/docs/integrations/sources/pandadoc.md @@ -33,6 +33,7 @@ Airbyte connector for PandaDoc allows users to extract data from PandaDoc and in | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47911](https://github.com/airbytehq/airbyte/pull/47911) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 9d6530a4787d6710d864dac64ba5ad554cef45e9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:10:10 +0200 Subject: [PATCH 458/808] =?UTF-8?q?=F0=9F=90=99=20source-secoda:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-10-29]=20(#47908)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-secoda/metadata.yaml | 4 ++-- docs/integrations/sources/secoda.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-secoda/metadata.yaml b/airbyte-integrations/connectors/source-secoda/metadata.yaml index e7901268cc64..d0e65a917578 100644 --- a/airbyte-integrations/connectors/source-secoda/metadata.yaml +++ b/airbyte-integrations/connectors/source-secoda/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: da9fc6b9-8059-4be0-b204-f56e22e4d52d - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-secoda githubIssueLabel: source-secoda icon: secoda.svg @@ -42,5 +42,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/secoda.md b/docs/integrations/sources/secoda.md index 11291ff9e8f8..8b3f711970ae 100644 --- a/docs/integrations/sources/secoda.md +++ b/docs/integrations/sources/secoda.md @@ -32,6 +32,7 @@ This source can sync data from the [Secoda API](https://docs.secoda.co/secoda-ap | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------- | +| 0.2.3 | 2024-10-29 | [47908](https://github.com/airbytehq/airbyte/pull/47908) | Update dependencies | | 0.2.2 | 2024-10-28 | [47566](https://github.com/airbytehq/airbyte/pull/47566) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44074](https://github.com/airbytehq/airbyte/pull/44074) | Refactor connector to manifest-only format | From 86378599dd647fdf9c19364d1832dd456d5852c4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:10:14 +0200 Subject: [PATCH 459/808] =?UTF-8?q?=F0=9F=90=99=20source-illumina-basespac?= =?UTF-8?q?e:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#47907)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-illumina-basespace/metadata.yaml | 4 ++-- docs/integrations/sources/illumina-basespace.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml b/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml index 03cdc66d2de5..d0547b2a64c7 100644 --- a/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml +++ b/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-illumina-basespace connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 62e9c4f2-a768-48f7-a8bf-d54bf1d96425 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-illumina-basespace githubIssueLabel: source-illumina-basespace icon: icon.svg diff --git a/docs/integrations/sources/illumina-basespace.md b/docs/integrations/sources/illumina-basespace.md index 4c7383a59885..a04602b8e33c 100644 --- a/docs/integrations/sources/illumina-basespace.md +++ b/docs/integrations/sources/illumina-basespace.md @@ -28,6 +28,7 @@ Connector for the Basespace v1 API. This can be used to extract data on projects | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-10-29 | [47907](https://github.com/airbytehq/airbyte/pull/47907) | Update dependencies | | 0.0.2 | 2024-10-28 | [47609](https://github.com/airbytehq/airbyte/pull/47609) | Update dependencies | | 0.0.1 | 2024-09-23 | | Initial release by [@FilipeJesus](https://github.com/FilipeJesus) via Connector Builder | From 0939781557d9b7ddd5fbb179aa38268ce481aabe Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:10:20 +0200 Subject: [PATCH 460/808] =?UTF-8?q?=F0=9F=90=99=20source-aha:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-10-29]=20(#47904)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-aha/metadata.yaml | 4 ++-- docs/integrations/sources/aha.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-aha/metadata.yaml b/airbyte-integrations/connectors/source-aha/metadata.yaml index b42448860b4e..6cd0f081d672 100644 --- a/airbyte-integrations/connectors/source-aha/metadata.yaml +++ b/airbyte-integrations/connectors/source-aha/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 81ca39dc-4534-4dd2-b848-b0cfd2c11fce - dockerImageTag: 0.4.2 + dockerImageTag: 0.4.3 dockerRepository: airbyte/source-aha documentationUrl: https://docs.airbyte.com/integrations/sources/aha githubIssueLabel: source-aha diff --git a/docs/integrations/sources/aha.md b/docs/integrations/sources/aha.md index a44e50f49f7f..b79a856f3622 100644 --- a/docs/integrations/sources/aha.md +++ b/docs/integrations/sources/aha.md @@ -42,6 +42,7 @@ Rate Limiting information is updated [here](https://www.aha.io/api#rate-limiting | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:------------------------------------------------------------------------| +| 0.4.3 | 2024-10-29 | [47904](https://github.com/airbytehq/airbyte/pull/47904) | Update dependencies | | 0.4.2 | 2024-10-28 | [47641](https://github.com/airbytehq/airbyte/pull/47641) | Update dependencies | | 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.4.0 | 2024-08-14 | [44042](https://github.com/airbytehq/airbyte/pull/44042) | Refactor connector to manifest-only format | From 72d088444c60e4e3680f39f1773268d3eddccf62 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:10:30 +0200 Subject: [PATCH 461/808] =?UTF-8?q?=F0=9F=90=99=20source-google-analytics-?= =?UTF-8?q?data-api:=20run=20up-to-date=20pipeline=20[2024-10-29]=20(#4789?= =?UTF-8?q?9)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-google-analytics-data-api/metadata.yaml | 2 +- .../source-google-analytics-data-api/poetry.lock | 14 +++++++------- .../pyproject.toml | 2 +- .../sources/google-analytics-data-api.md | 1 + 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml b/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml index c9997b9d0259..5adca8bb5352 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml @@ -12,7 +12,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3cc2eafd-84aa-4dca-93af-322d9dfeec1a - dockerImageTag: 2.6.0 + dockerImageTag: 2.6.1 dockerRepository: airbyte/source-google-analytics-data-api documentationUrl: https://docs.airbyte.com/integrations/sources/google-analytics-data-api githubIssueLabel: source-google-analytics-data-api diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock b/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock index aea8fef11a68..517184e314a7 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" @@ -1727,23 +1727,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml b/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml index 90bf2b739a36..3f5bedb75b6e 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.6.0" +version = "2.6.1" name = "source-google-analytics-data-api" description = "Source implementation for Google Analytics Data Api." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-analytics-data-api.md b/docs/integrations/sources/google-analytics-data-api.md index 0f3b24291ed1..80c627be74e2 100644 --- a/docs/integrations/sources/google-analytics-data-api.md +++ b/docs/integrations/sources/google-analytics-data-api.md @@ -272,6 +272,7 @@ The Google Analytics connector is subject to Google Analytics Data API quotas. P | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:---------------------------------------------------------------------------------------| +| 2.6.1 | 2024-10-29 | [47899](https://github.com/airbytehq/airbyte/pull/47899) | Update dependencies | | 2.6.0 | 2024-10-28 | [47013](https://github.com/airbytehq/airbyte/pull/47013) | Migrate to CDK v5 | | 2.5.13 | 2024-10-28 | [47061](https://github.com/airbytehq/airbyte/pull/47061) | Update dependencies | | 2.5.12 | 2024-10-12 | [46819](https://github.com/airbytehq/airbyte/pull/46819) | Update dependencies | From 795341d1361c0ad7674e1f4e1e050de3cdb9f9ba Mon Sep 17 00:00:00 2001 From: Om Bhardwaj <115864495+ombhardwajj@users.noreply.github.com> Date: Wed, 30 Oct 2024 01:40:52 +0530 Subject: [PATCH 462/808] source-twelve-data contribution from ombhardwajj (#47125) Co-authored-by: Marcos Marx --- .../connectors/source-twelve-data/README.md | 36 + .../acceptance-test-config.yml | 17 + .../connectors/source-twelve-data/icon.svg | 12 + .../source-twelve-data/manifest.yaml | 11971 ++++++++++++++++ .../source-twelve-data/metadata.yaml | 35 + docs/integrations/sources/twelve-data.md | 49 + 6 files changed, 12120 insertions(+) create mode 100644 airbyte-integrations/connectors/source-twelve-data/README.md create mode 100644 airbyte-integrations/connectors/source-twelve-data/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-twelve-data/icon.svg create mode 100644 airbyte-integrations/connectors/source-twelve-data/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-twelve-data/metadata.yaml create mode 100644 docs/integrations/sources/twelve-data.md diff --git a/airbyte-integrations/connectors/source-twelve-data/README.md b/airbyte-integrations/connectors/source-twelve-data/README.md new file mode 100644 index 000000000000..e577763749b5 --- /dev/null +++ b/airbyte-integrations/connectors/source-twelve-data/README.md @@ -0,0 +1,36 @@ +# Twelve Data +This directory contains the manifest-only connector for `source-twelve-data`. + +Twelve data can be used to access the data of world financial markets including stocks, forex, ETFs, indices, and cryptocurrencies. +This connector has various streams including but not limited to Stocks , Forex Pairs , Crypto Currencies , Time Series and Techical Indicators + +Docs : https://twelvedata.com/docs + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-twelve-data:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-twelve-data build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-twelve-data test +``` + diff --git a/airbyte-integrations/connectors/source-twelve-data/acceptance-test-config.yml b/airbyte-integrations/connectors/source-twelve-data/acceptance-test-config.yml new file mode 100644 index 000000000000..811095b0dbaf --- /dev/null +++ b/airbyte-integrations/connectors/source-twelve-data/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-twelve-data:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-twelve-data/icon.svg b/airbyte-integrations/connectors/source-twelve-data/icon.svg new file mode 100644 index 000000000000..709b57cfc2f1 --- /dev/null +++ b/airbyte-integrations/connectors/source-twelve-data/icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-twelve-data/manifest.yaml b/airbyte-integrations/connectors/source-twelve-data/manifest.yaml new file mode 100644 index 000000000000..2dfe834e8dcc --- /dev/null +++ b/airbyte-integrations/connectors/source-twelve-data/manifest.yaml @@ -0,0 +1,11971 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + Twelve data can be used to access the data of world financial markets + including stocks, forex, ETFs, indices, and cryptocurrencies. + + This connector has various streams including but not limited to Stocks , Forex + Pairs , Crypto Currencies , Time Series and Techical Indicators + + + Docs : https://twelvedata.com/docs + +check: + type: CheckStream + stream_names: + - stocks + +definitions: + streams: + stocks: + type: DeclarativeStream + name: stocks + primary_key: + - symbol + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: stocks + http_method: GET + request_parameters: + country: "{{ config['country'] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stocks" + forex_pairs: + type: DeclarativeStream + name: forex_pairs + primary_key: + - symbol + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: forex_pairs + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/forex_pairs" + crypto_currencies: + type: DeclarativeStream + name: crypto_currencies + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: cryptocurrencies + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/crypto_currencies" + funds: + type: DeclarativeStream + name: funds + primary_key: + - symbol + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: funds + http_method: GET + request_parameters: + country: "{{ config[\"country\"] }}" + exchange: "{{ config['exchange'] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - list + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/funds" + bonds: + type: DeclarativeStream + name: bonds + primary_key: + - symbol + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: bonds + http_method: GET + request_parameters: + country: "{{ config[\"country\"] }}" + exchange: "{{ config['exchange'] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - list + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/bonds" + etfs: + type: DeclarativeStream + name: etfs + primary_key: + - symbol + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: etfs + http_method: GET + request_parameters: + country: "{{ config[\"country\"] }}" + exchange: "{{ config['exchange'] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/etfs" + commodities: + type: DeclarativeStream + name: commodities + primary_key: + - symbol + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: commodities + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/commodities" + exchanges: + type: DeclarativeStream + name: exchanges + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: exchanges + http_method: GET + request_parameters: + country: "{{ config[\"country\"] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/exchanges" + cryptocurrency_exchanges: + type: DeclarativeStream + name: cryptocurrency_exchanges + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: cryptocurrency_exchanges + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/cryptocurrency_exchanges" + market_state: + type: DeclarativeStream + name: market_state + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: market_state + http_method: GET + request_parameters: + country: "{{ config[\"country\"] }}" + exchange: "{{ config['exchange'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/market_state" + countries: + type: DeclarativeStream + name: countries + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: countries + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/countries" + technical_indicators: + type: DeclarativeStream + name: technical_indicators + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: technical_indicators + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/technical_indicators" + time_series: + type: DeclarativeStream + name: time_series + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: time_series + http_method: GET + request_parameters: + symbol: "{{ stream_partition.symb }}" + interval: "{{ config['interval'] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + action: FAIL + http_codes: + - 404 + error_message: Please ennter the symbol and interval + error_message_contains: >- + **symbol** or **figi** parameter is missing or invalid. + Please provide a valid symbol according to API + documentation + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - values + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: symbol + partition_field: symb + stream: + $ref: "#/definitions/streams/stocks" + transformations: + - type: AddFields + fields: + - path: + - symbol + value: "{{ stream_slice.symb }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/time_series" + exchange_rate: + type: DeclarativeStream + name: exchange_rate + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: exchange_rate + http_method: GET + request_parameters: + symbol: "{{ stream_partition.symb }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: symbol + partition_field: symb + stream: + $ref: "#/definitions/streams/forex_pairs" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/exchange_rate" + quote: + type: DeclarativeStream + name: quote + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: quote + http_method: GET + request_parameters: + symbol: "{{ stream_partition.symb }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: symbol + partition_field: symb + stream: + $ref: "#/definitions/streams/stocks" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/quote" + price: + type: DeclarativeStream + name: price + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: price + http_method: GET + request_parameters: + symbol: "{{ stream_partition.symb }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: symbol + partition_field: symb + stream: + $ref: "#/definitions/streams/stocks" + transformations: + - type: AddFields + fields: + - path: + - symbol + value: "{{ stream_slice.symb }}" + - type: AddFields + fields: + - path: + - timestamp + value: "{{ now_utc() }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/price" + eod_price: + type: DeclarativeStream + name: eod_price + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: eod + http_method: GET + request_parameters: + symbol: "{{ stream_partition.symb }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: symbol + partition_field: symb + stream: + $ref: "#/definitions/streams/stocks" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/eod_price" + mutual_funds: + type: DeclarativeStream + name: mutual_funds + primary_key: + - symbol + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: mutual_funds/list + http_method: GET + request_parameters: + country: "{{ config[\"country\"] }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 60 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: >- + Your request failed as you ran out of API credits for the + current minute. + error_message_contains: >- + Wait for the next minute or consider switching to a higher + tier plan at https://twelvedata.com/pricing + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - list + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/mutual_funds" + base_requester: + type: HttpRequester + url_base: https://api.twelvedata.com/ + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_key\"] }}" + inject_into: + type: RequestOption + field_name: apikey + inject_into: request_parameter + +streams: + - $ref: "#/definitions/streams/stocks" + - $ref: "#/definitions/streams/forex_pairs" + - $ref: "#/definitions/streams/crypto_currencies" + - $ref: "#/definitions/streams/funds" + - $ref: "#/definitions/streams/bonds" + - $ref: "#/definitions/streams/etfs" + - $ref: "#/definitions/streams/commodities" + - $ref: "#/definitions/streams/exchanges" + - $ref: "#/definitions/streams/cryptocurrency_exchanges" + - $ref: "#/definitions/streams/market_state" + - $ref: "#/definitions/streams/countries" + - $ref: "#/definitions/streams/technical_indicators" + - $ref: "#/definitions/streams/time_series" + - $ref: "#/definitions/streams/exchange_rate" + - $ref: "#/definitions/streams/quote" + - $ref: "#/definitions/streams/price" + - $ref: "#/definitions/streams/eod_price" + - $ref: "#/definitions/streams/mutual_funds" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + properties: + api_key: + type: string + order: 0 + title: API Key + airbyte_secret: true + country: + type: string + description: Where instrument is traded + order: 1 + title: Country + exchange: + type: string + description: Where instrument is traded + order: 2 + title: Exchange + symbol: + type: string + description: Ticker of the instrument + order: 3 + title: Symbol + interval: + type: string + description: >- + Between two consecutive points in time series Supports: 1min, 5min, + 15min, 30min, 45min, 1h, 2h, 4h, 1day, 1week, 1month + order: 4 + title: Interval + default: 1day + enum: + - 1min + - 5min + - 15min + - 30min + - 45min + - 1h + - 2h + - 4h + - 1day + - 1week + - 1month + additionalProperties: true + +metadata: + autoImportSchema: + stocks: true + forex_pairs: true + crypto_currencies: true + funds: true + bonds: true + etfs: true + commodities: true + exchanges: true + cryptocurrency_exchanges: true + market_state: true + countries: true + technical_indicators: true + time_series: true + exchange_rate: true + quote: true + price: true + eod_price: true + mutual_funds: true + testedStreams: + stocks: + streamHash: 4b863774eab79d3aeb545e8de6148db646eea147 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + forex_pairs: + hasRecords: true + streamHash: 39ccfcb61cf6b3950efe5083711d5197a5f90ae3 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + crypto_currencies: + hasRecords: true + streamHash: 9e4e5f7f9c4482f5c045b71cef40092db7522679 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + funds: + hasRecords: true + streamHash: ac18d4344ed83dc98bf9f2352704bf58b799b7a1 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + bonds: + hasRecords: true + streamHash: 9ee6676dacba4c707cf5c5278f7f8af7bd36f06e + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + etfs: + hasRecords: true + streamHash: 9f58a6726044448f1810bc5da257c4c2080f1ee5 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + commodities: + hasRecords: true + streamHash: 1d487840bf8886616b2888af0404a9fe7bc5e09a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + exchanges: + streamHash: 033f2220b5fb652654deb85f284489cca4feebcb + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + cryptocurrency_exchanges: + streamHash: 36aea471d85f85d0b73803180538d8a6d0b70e38 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + market_state: + streamHash: fac5eb367a0eec75a806e8d4f2c70029a1a50a96 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + countries: + streamHash: b215b99045447548c36d515bbcc4aa70a2746b45 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + technical_indicators: + streamHash: 3b83b8a0ae4f7ad9f682015c07e9a7c6f52ad8bc + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + time_series: + streamHash: 448a4106deda34a80acf800aac94adc94af9ea9f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + exchange_rate: + streamHash: b9121603e1d5c1508475968c5734d81f5f36b2ef + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + quote: + streamHash: cd42b986b695c520d31f9976567a694110496072 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + price: + streamHash: f21ec3b74962655bcd0838580a99f3e719beb12c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + eod_price: + streamHash: c6d6ecbfa9091b0b9eb5a8c22d134f88dcf6f982 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + mutual_funds: + hasRecords: true + streamHash: 729d0cb2ea3321afd57071a8b83f48ea008b33ac + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: {} + +schemas: + stocks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + exchange: + type: + - string + - "null" + figi_code: + type: + - string + - "null" + mic_code: + type: + - string + - "null" + name: + type: + - string + - "null" + symbol: + type: string + required: + - symbol + forex_pairs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + currency_base: + type: + - string + - "null" + currency_group: + type: + - string + - "null" + currency_quote: + type: + - string + - "null" + symbol: + type: string + required: + - symbol + crypto_currencies: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + available_exchanges: + type: + - array + - "null" + items: + type: + - string + - "null" + currency_base: + type: + - string + - "null" + currency_quote: + type: + - string + - "null" + symbol: + type: + - string + - "null" + funds: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + exchange: + type: + - string + - "null" + figi_code: + type: + - string + - "null" + mic_code: + type: + - string + - "null" + name: + type: + - string + - "null" + symbol: + type: string + required: + - symbol + bonds: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + exchange: + type: + - string + - "null" + mic_code: + type: + - string + - "null" + name: + type: + - string + - "null" + symbol: + type: string + required: + - symbol + etfs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + exchange: + type: + - string + - "null" + figi_code: + type: + - string + - "null" + mic_code: + type: + - string + - "null" + name: + type: + - string + - "null" + symbol: + type: string + required: + - symbol + commodities: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + category: + type: + - string + - "null" + name: + type: + - string + - "null" + symbol: + type: string + required: + - symbol + exchanges: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + code: + type: string + country: + type: + - string + - "null" + name: + type: + - string + - "null" + timezone: + type: + - string + - "null" + required: + - code + cryptocurrency_exchanges: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + name: + type: + - string + - "null" + market_state: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + code: + type: string + country: + type: + - string + - "null" + is_market_open: + type: + - boolean + - "null" + name: + type: + - string + - "null" + time_after_open: + type: + - string + - "null" + time_to_close: + type: + - string + - "null" + time_to_open: + type: + - string + - "null" + required: + - code + countries: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + capital: + type: + - string + - "null" + currency: + type: + - string + - "null" + iso2: + type: + - string + - "null" + iso3: + type: + - string + - "null" + name: + type: + - string + - "null" + numeric: + type: + - string + - "null" + official_name: + type: + - string + - "null" + technical_indicators: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + acos: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + acos: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + ad: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ad: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + add: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + add: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type_1: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + series_type_2: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + adosc: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + adosc: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + slow_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + adx: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + adx: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + adxr: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + adxr: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + apo: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + apo: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + slow_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + aroon: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + aroon_down: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + aroon_up: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + aroonosc: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + aroonosc: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + asin: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + asin: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + atan: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + atan: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + atr: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + atr: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + avg: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + avg: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + avgprice: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + avgprice: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + bbands: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + lower_band: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + middle_band: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + upper_band: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + sd: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - string + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - string + - "null" + beta: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + beta: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type_1: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + series_type_2: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + bop: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + bop: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + cci: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + cci: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - number + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - number + - "null" + ceil: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ceil: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + cmo: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + cmo: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + coppock: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + coppock: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + long_roc_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + short_roc_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + wma_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + correl: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + correl: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type_1: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + series_type_2: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + cos: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + cos: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + cosh: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + cosh: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + crsi: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + crsi: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + percent_rank_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + rsi_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + up_down_length: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - number + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - number + - "null" + dema: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + dema: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + div: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + div: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type_1: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + series_type_2: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + dpo: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + dpo: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + centered: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - boolean + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + dx: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + dx: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + ema: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ema: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + exp: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + exp: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + floor: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + floor: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + heikinashicandles: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + heikincloses: + type: + - object + - "null" + properties: + display: + type: + - string + - "null" + heikinhighs: + type: + - object + - "null" + properties: + display: + type: + - string + - "null" + heikinlows: + type: + - object + - "null" + properties: + display: + type: + - string + - "null" + heikinopens: + type: + - object + - "null" + properties: + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + hlc3: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + hlc3: + type: + - object + - "null" + properties: + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + ht_dcperiod: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ht_dcperiod: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + ht_dcphase: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ht_dcphase: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + ht_phasor: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + in_phase: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + quadrature: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + ht_sine: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ht_leadsine: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + ht_sine: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + ht_trendline: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ht_trendline: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + ht_trendmode: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ht_trendmode: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + ichimoku: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + chikou_span: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + kijun_sen: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + senkou_span_a: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + senkou_span_b: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + tenkan_sen: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + base_line_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + conversion_line_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + include_ahead_span_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - boolean + - "null" + lagging_span_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + leading_span_b_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - string + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - string + - "null" + kama: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + kama: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + keltner: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + lower_line: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + middle_line: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + upper_line: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + atr_time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + multiplier: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - string + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - string + - "null" + kst: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + kst: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + kst_signal: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + roc_period_1: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + roc_period_2: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + roc_period_3: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + roc_period_4: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + signal_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + sma_period_1: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + sma_period_2: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + sma_period_3: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + sma_period_4: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + linearreg: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + linearreg: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + linearregangle: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + linearregangle: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + linearregintercept: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + linearregintercept: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + linearregslope: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + linearregslope: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + ln: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ln: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + log10: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + log10: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + ma: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ma: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + macd: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + macd: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + macd_hist: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + macd_signal: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + signal_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + slow_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + macd_slope: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + macd_hist_slope: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + macd_signal_slope: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + macd_slope: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + signal_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + slow_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + macdext: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + macd: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + macd_hist: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + macd_signal: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + fast_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + signal_ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + signal_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + slow_ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + slow_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + mama: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + fama: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + mama: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_limit: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + slow_limit: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + mavp: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + mavp: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + max_period: + type: + - object + - "null" + properties: + default: + type: + - string + - "null" + min_period: + type: + - object + - "null" + properties: + default: + type: + - string + - "null" + periods: + type: + - object + - "null" + properties: + default: + type: + - string + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + max: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + max: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + maxindex: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + maxidx: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + mcginley_dynamic: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + mcginley_dynamic: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + medprice: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + medprice: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + mfi: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + mfi: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - number + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - number + - "null" + midpoint: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + midpoint: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + midprice: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + midprice: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + min: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + min: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + minindex: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + minidx: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + minmax: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + max: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + min: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + minmaxindex: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + maxidx: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + minidx: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + minus_di: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + minus_di: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + minus_dm: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + minus_dm: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + mom: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + mom: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + mult: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + mult: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type_1: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + series_type_2: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + natr: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + natr: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + obv: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + obv: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + percent_b: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + percent_b: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + sd: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - number + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - number + - "null" + pivot_points_hl: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + pivot_point_h: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + pivot_point_l: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + plus_di: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + plus_di: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + plus_dm: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + plus_dm: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + ppo: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ppo: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + ma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + slow_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + roc: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + roc: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + rocp: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + rocp: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + rocr: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + rocr: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + rocr100: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + rocr100: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + rsi: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + rsi: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - number + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - number + - "null" + rvol: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + rvol: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + sar: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + sar: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + acceleration: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + maximum: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + sarext: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + sarext: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + acceleration_limit_long: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + acceleration_limit_short: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + acceleration_long: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + acceleration_max_long: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + acceleration_max_short: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + acceleration_short: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + offset_on_reverse: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + start_value: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + sin: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + sin: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + sinh: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + sinh: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + sma: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + sma: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + sqrt: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + sqrt: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + stddev: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + stddev: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + sd: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + stoch: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + slow_d: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + slow_k: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_k_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + slow_d_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + slow_dma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + slow_k_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + slow_kma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - number + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - number + - "null" + stochf: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + fast_d: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + fast_k: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_d_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + fast_dma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + fast_k_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - number + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - number + - "null" + stochrsi: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + fast_d: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + fast_k: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + fast_d_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + fast_dma_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + fast_k_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - number + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - number + - "null" + sub: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + sub: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type_1: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + series_type_2: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + sum: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + sum: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + supertrend: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + supertrend: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + multiplier: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + supertrend_heikinashicandles: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + heikincloses: + type: + - object + - "null" + properties: + display: + type: + - string + - "null" + heikinhighs: + type: + - object + - "null" + properties: + display: + type: + - string + - "null" + heikinlows: + type: + - object + - "null" + properties: + display: + type: + - string + - "null" + heikinopens: + type: + - object + - "null" + properties: + display: + type: + - string + - "null" + supertrend: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + multiplier: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + t3ma: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + t3ma: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + v_factor: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tan: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + tan: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + tanh: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + tanh: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + tema: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + tema: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + trange: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + trange: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + trima: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + trima: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tsf: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + tsf: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + typprice: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + typprice: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + ultosc: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + ultosc: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period_1: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + time_period_2: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + time_period_3: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + var: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + var: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + vwap: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + vwap: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + sd: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + sd_time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + wclprice: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + wclprice: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + willr: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + willr: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + max_range: + type: + - number + - "null" + min_range: + type: + - number + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + tinting: + type: + - object + - "null" + properties: + area: + type: + - object + - "null" + properties: + color: + type: + - string + - "null" + display: + type: + - string + - "null" + lower_bound: + type: + - number + - "null" + transparency: + type: + - number + - "null" + upper_bound: + type: + - number + - "null" + wma: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + enable: + type: + - boolean + - "null" + full_name: + type: + - string + - "null" + output_values: + type: + - object + - "null" + properties: + wma: + type: + - object + - "null" + properties: + default_color: + type: + - string + - "null" + display: + type: + - string + - "null" + overlay: + type: + - boolean + - "null" + parameters: + type: + - object + - "null" + properties: + series_type: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - string + - "null" + range: + type: + - array + - "null" + items: + type: + - string + - "null" + time_period: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + default: + type: + - number + - "null" + min_range: + type: + - number + - "null" + time_series: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + close: + type: + - string + - "null" + datetime: + type: + - string + - "null" + high: + type: + - string + - "null" + low: + type: + - string + - "null" + open: + type: + - string + - "null" + symbol: + type: + - string + - "null" + volume: + type: + - string + - "null" + exchange_rate: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + rate: + type: + - number + - "null" + symbol: + type: + - string + - "null" + timestamp: + type: + - number + - "null" + quote: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + average_volume: + type: + - string + - "null" + change: + type: + - string + - "null" + close: + type: + - string + - "null" + currency: + type: + - string + - "null" + datetime: + type: + - string + - "null" + exchange: + type: + - string + - "null" + fifty_two_week: + type: + - object + - "null" + properties: + high: + type: + - string + - "null" + high_change: + type: + - string + - "null" + high_change_percent: + type: + - string + - "null" + low: + type: + - string + - "null" + low_change: + type: + - string + - "null" + low_change_percent: + type: + - string + - "null" + range: + type: + - string + - "null" + high: + type: + - string + - "null" + is_market_open: + type: + - boolean + - "null" + low: + type: + - string + - "null" + mic_code: + type: + - string + - "null" + name: + type: + - string + - "null" + open: + type: + - string + - "null" + percent_change: + type: + - string + - "null" + previous_close: + type: + - string + - "null" + symbol: + type: + - string + - "null" + timestamp: + type: + - number + - "null" + volume: + type: + - string + - "null" + price: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + price: + type: + - string + - "null" + symbol: + type: + - string + - "null" + timestamp: + type: + - string + - "null" + eod_price: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + close: + type: + - string + - "null" + currency: + type: + - string + - "null" + datetime: + type: + - string + - "null" + exchange: + type: + - string + - "null" + mic_code: + type: + - string + - "null" + symbol: + type: + - string + - "null" + timestamp: + type: + - number + - "null" + mutual_funds: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + exchange: + type: + - string + - "null" + fund_family: + type: + - string + - "null" + fund_type: + type: + - string + - "null" + mic_code: + type: + - string + - "null" + name: + type: + - string + - "null" + performance_rating: + type: + - number + - "null" + risk_rating: + type: + - number + - "null" + symbol: + type: string + required: + - symbol diff --git a/airbyte-integrations/connectors/source-twelve-data/metadata.yaml b/airbyte-integrations/connectors/source-twelve-data/metadata.yaml new file mode 100644 index 000000000000..ff28af0008b5 --- /dev/null +++ b/airbyte-integrations/connectors/source-twelve-data/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.twelvedata.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-twelve-data + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 162f084d-3a9f-42c0-8785-81aa18abf339 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-twelve-data + githubIssueLabel: source-twelve-data + icon: icon.svg + license: MIT + name: Twelve Data + releaseDate: 2024-10-20 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/twelve-data + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/twelve-data.md b/docs/integrations/sources/twelve-data.md new file mode 100644 index 000000000000..f7cf5f5a2a11 --- /dev/null +++ b/docs/integrations/sources/twelve-data.md @@ -0,0 +1,49 @@ +# Twelve Data +Twelve data can be used to access the data of world financial markets including stocks, forex, ETFs, indices, and cryptocurrencies. +This connector has various streams including but not limited to Stocks , Forex Pairs , Crypto Currencies , Time Series and Techical Indicators + +Docs : https://twelvedata.com/docs + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. | | +| `country` | `string` | Country. Where instrument is traded | | +| `exchange` | `string` | Exchange. Where instrument is traded | | +| `symbol` | `string` | Symbol. Ticker of the instrument | | +| `interval` | `enum` | Interval. Between two consecutive points in time series Supports: 1min, 5min, 15min, 30min, 45min, 1h, 2h, 4h, 1day, 1week, 1month | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| Stocks | symbol | No pagination | ✅ | ❌ | +| Forex Pairs | symbol | No pagination | ✅ | ❌ | +| Crypto Currencies | | No pagination | ✅ | ❌ | +| Funds | symbol | No pagination | ✅ | ❌ | +| Bonds | symbol | No pagination | ✅ | ❌ | +| ETFs | symbol | No pagination | ✅ | ❌ | +| Commodities | symbol | No pagination | ✅ | ❌ | +| Exchanges | code | No pagination | ✅ | ❌ | +| Cryptocurrency Exchanges | | No pagination | ✅ | ❌ | +| Market State | code | No pagination | ✅ | ❌ | +| Instrument Type | | No pagination | ✅ | ❌ | +| Countries | | No pagination | ✅ | ❌ | +| Technical Indicators | | No pagination | ✅ | ❌ | +| Time Series | | No pagination | ✅ | ❌ | +| Exchange Rate | | No pagination | ✅ | ❌ | +| Quote | | No pagination | ✅ | ❌ | +| Price | | No pagination | ✅ | ❌ | +| EOD Price | | No pagination | ✅ | ❌ | +| Mutual Funds | symbol | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-20 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | + +
From ed18e993b65c13ee25ee00ee684901a59d0f10f9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:11:09 +0200 Subject: [PATCH 463/808] =?UTF-8?q?=F0=9F=90=99=20source-onesignal:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47667)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-onesignal/metadata.yaml | 4 ++-- docs/integrations/sources/onesignal.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-onesignal/metadata.yaml b/airbyte-integrations/connectors/source-onesignal/metadata.yaml index 3c7df552c62e..72cb7a2fd6a1 100644 --- a/airbyte-integrations/connectors/source-onesignal/metadata.yaml +++ b/airbyte-integrations/connectors/source-onesignal/metadata.yaml @@ -3,7 +3,7 @@ data: hosts: - onesignal.com connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorTestSuitesOptions: - suite: liveTests @@ -19,7 +19,7 @@ data: type: GSM connectorType: source definitionId: bb6afd81-87d5-47e3-97c4-e2c2901b1cf8 - dockerImageTag: 1.2.0 + dockerImageTag: 1.2.1 dockerRepository: airbyte/source-onesignal documentationUrl: https://docs.airbyte.com/integrations/sources/onesignal githubIssueLabel: source-onesignal diff --git a/docs/integrations/sources/onesignal.md b/docs/integrations/sources/onesignal.md index 8efeb4f7b694..7d8e00369dbf 100644 --- a/docs/integrations/sources/onesignal.md +++ b/docs/integrations/sources/onesignal.md @@ -78,6 +78,7 @@ The connector is restricted by normal OneSignal [rate limits](https://documentat | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------- | +| 1.2.1 | 2024-10-29 | [47667](https://github.com/airbytehq/airbyte/pull/47667) | Update dependencies | | 1.2.0 | 2024-10-05 | [46372](https://github.com/airbytehq/airbyte/pull/46372) | Converting to manifest-only format | | 1.1.14 | 2024-09-28 | [46184](https://github.com/airbytehq/airbyte/pull/46184) | Update dependencies | | 1.1.13 | 2024-09-21 | [45788](https://github.com/airbytehq/airbyte/pull/45788) | Update dependencies | From e3885e6d0a2c76d6accad9c5b82764dbf37171c4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:11:12 +0200 Subject: [PATCH 464/808] =?UTF-8?q?=F0=9F=90=99=20source-appfigures:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47661)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-appfigures/metadata.yaml | 4 ++-- docs/integrations/sources/appfigures.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-appfigures/metadata.yaml b/airbyte-integrations/connectors/source-appfigures/metadata.yaml index 710ceb4cc159..41e877f37103 100644 --- a/airbyte-integrations/connectors/source-appfigures/metadata.yaml +++ b/airbyte-integrations/connectors/source-appfigures/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-appfigures connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: e2fcf0a0-3f99-4938-ba34-3a6dd51fd4a4 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-appfigures githubIssueLabel: source-appfigures icon: icon.svg diff --git a/docs/integrations/sources/appfigures.md b/docs/integrations/sources/appfigures.md index 868f838201b8..22eb6d2a3a04 100644 --- a/docs/integrations/sources/appfigures.md +++ b/docs/integrations/sources/appfigures.md @@ -39,6 +39,7 @@ Refer `https://docs.appfigures.com/api/reference/v2/authentication` for more det | Version | Date | Pull Request | Subject | | ------------------ | ------------ | -- | ---------------- | +| 0.0.2 | 2024-10-29 | [47661](https://github.com/airbytehq/airbyte/pull/47661) | Update dependencies | | 0.0.1 | 2024-09-08 | [45332](https://github.com/airbytehq/airbyte/pull/45332) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 75acc3264fbfb7c673ea22bfd3f165fd64103d76 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:11:15 +0200 Subject: [PATCH 465/808] =?UTF-8?q?=F0=9F=90=99=20source-algolia:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47659)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-algolia/metadata.yaml | 4 ++-- docs/integrations/sources/algolia.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-algolia/metadata.yaml b/airbyte-integrations/connectors/source-algolia/metadata.yaml index 05036d8b198f..40adb570a99d 100644 --- a/airbyte-integrations/connectors/source-algolia/metadata.yaml +++ b/airbyte-integrations/connectors/source-algolia/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-algolia connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: a20aa64a-bb59-4782-97bf-afd6a241c737 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-algolia githubIssueLabel: source-algolia icon: icon.svg diff --git a/docs/integrations/sources/algolia.md b/docs/integrations/sources/algolia.md index 67a037b4d593..714040af133b 100644 --- a/docs/integrations/sources/algolia.md +++ b/docs/integrations/sources/algolia.md @@ -35,6 +35,7 @@ Visit `https://www.algolia.com/doc/rest-api/search/#section/Authentication` for | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-29 | [47659](https://github.com/airbytehq/airbyte/pull/47659) | Update dependencies | | 0.0.1 | 2024-09-16 | [45605](https://github.com/airbytehq/airbyte/pull/45605) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From c41f7ee57a8c670fee35d719379dbeb40e41a097 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:11:24 +0200 Subject: [PATCH 466/808] =?UTF-8?q?=F0=9F=90=99=20source-ringcentral:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47611)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-ringcentral/metadata.yaml | 4 ++-- docs/integrations/sources/ringcentral.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-ringcentral/metadata.yaml b/airbyte-integrations/connectors/source-ringcentral/metadata.yaml index f408b7e92c31..b790db0aaba3 100644 --- a/airbyte-integrations/connectors/source-ringcentral/metadata.yaml +++ b/airbyte-integrations/connectors/source-ringcentral/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 213d69b9-da66-419e-af29-c23142d4af5f - dockerImageTag: 0.2.0 + dockerImageTag: 0.2.1 dockerRepository: airbyte/source-ringcentral githubIssueLabel: source-ringcentral icon: icon.svg @@ -38,5 +38,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.5.2@sha256:efe8a454f740dc6a07252c4a457777e7c81d95f0d2ea8e9d68114d3610e9a602 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/ringcentral.md b/docs/integrations/sources/ringcentral.md index 206069a66a7c..01d429396736 100644 --- a/docs/integrations/sources/ringcentral.md +++ b/docs/integrations/sources/ringcentral.md @@ -80,6 +80,7 @@ RingCentral [API reference](https://platform.devtest.ringcentral.com/restapi/v1. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------- | :------------- | +| 0.2.1 | 2024-10-29 | [47611](https://github.com/airbytehq/airbyte/pull/47611) | Update dependencies | | 0.2.0 | 2024-08-20 | [44448](https://github.com/airbytehq/airbyte/pull/44448) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-17 | [44247](https://github.com/airbytehq/airbyte/pull/44247) | Update dependencies | | 0.1.14 | 2024-08-12 | [43830](https://github.com/airbytehq/airbyte/pull/43830) | Update dependencies | From 1a1ffc14d7e8c84f2e34d22e48cc5b3ddb170bec Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:11:35 +0200 Subject: [PATCH 467/808] =?UTF-8?q?=F0=9F=90=99=20source-segment:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47546)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-segment/metadata.yaml | 4 ++-- docs/integrations/sources/segment.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-segment/metadata.yaml b/airbyte-integrations/connectors/source-segment/metadata.yaml index 13a95a310d0d..6694baaa4bca 100644 --- a/airbyte-integrations/connectors/source-segment/metadata.yaml +++ b/airbyte-integrations/connectors/source-segment/metadata.yaml @@ -14,11 +14,11 @@ data: enabled: false packageName: airbyte-source-segment connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: b17132d0-4108-4a76-ae5e-639c15beae47 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-segment githubIssueLabel: source-segment icon: icon.svg diff --git a/docs/integrations/sources/segment.md b/docs/integrations/sources/segment.md index fef155165e0c..cf0c5e210862 100644 --- a/docs/integrations/sources/segment.md +++ b/docs/integrations/sources/segment.md @@ -34,6 +34,7 @@ Connector that pulls from Segment's Public API. | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-10-29 | [47546](https://github.com/airbytehq/airbyte/pull/47546) | Update dependencies | | 0.0.1 | 2024-10-04 | | Initial release by [@zckymc](https://github.com/zckymc) via Connector Builder | From 875abda6a69b92c8797f3b0cdd3e137350314d1b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:11:45 +0200 Subject: [PATCH 468/808] =?UTF-8?q?=F0=9F=90=99=20source-buildkite:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47476)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-buildkite/metadata.yaml | 4 ++-- docs/integrations/sources/buildkite.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-buildkite/metadata.yaml b/airbyte-integrations/connectors/source-buildkite/metadata.yaml index e60932cb9dfa..ec08ef637f74 100644 --- a/airbyte-integrations/connectors/source-buildkite/metadata.yaml +++ b/airbyte-integrations/connectors/source-buildkite/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-buildkite connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 9b0d6e72-5c85-40a3-af88-3a8f7c65746f - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-buildkite githubIssueLabel: source-buildkite icon: icon.svg diff --git a/docs/integrations/sources/buildkite.md b/docs/integrations/sources/buildkite.md index 76908ab72a04..df3f663c4bd2 100644 --- a/docs/integrations/sources/buildkite.md +++ b/docs/integrations/sources/buildkite.md @@ -38,6 +38,7 @@ Visit `https://buildkite.com/user/api-access-tokens` for getting your bearer tok | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-10-29 | [47476](https://github.com/airbytehq/airbyte/pull/47476) | Update dependencies | | 0.0.1 | 2024-09-11 | [45384](https://github.com/airbytehq/airbyte/pull/45384) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | - \ No newline at end of file + From 19942421326788cdafdd318496b8c9563939eec2 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:11:56 +0200 Subject: [PATCH 469/808] =?UTF-8?q?=F0=9F=90=99=20source-amplitude:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-29]=20(#47097)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-amplitude/metadata.yaml | 2 +- .../connectors/source-amplitude/poetry.lock | 273 +++++++++--------- .../source-amplitude/pyproject.toml | 2 +- docs/integrations/sources/amplitude.md | 1 + 4 files changed, 140 insertions(+), 138 deletions(-) diff --git a/airbyte-integrations/connectors/source-amplitude/metadata.yaml b/airbyte-integrations/connectors/source-amplitude/metadata.yaml index e6e434de2b4f..fb6e248d81ab 100644 --- a/airbyte-integrations/connectors/source-amplitude/metadata.yaml +++ b/airbyte-integrations/connectors/source-amplitude/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: fa9f58c6-2d03-4237-aaa4-07d75e0c1396 - dockerImageTag: 0.6.12 + dockerImageTag: 0.6.13 dockerRepository: airbyte/source-amplitude documentationUrl: https://docs.airbyte.com/integrations/sources/amplitude githubIssueLabel: source-amplitude diff --git a/airbyte-integrations/connectors/source-amplitude/poetry.lock b/airbyte-integrations/connectors/source-amplitude/poetry.lock index 7cb8a62fa9b1..8556f6cae6fd 100644 --- a/airbyte-integrations/connectors/source-amplitude/poetry.lock +++ b/airbyte-integrations/connectors/source-amplitude/poetry.lock @@ -69,13 +69,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +86,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -717,13 +717,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -735,72 +735,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -830,68 +830,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1512,23 +1513,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1580,13 +1581,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-amplitude/pyproject.toml b/airbyte-integrations/connectors/source-amplitude/pyproject.toml index 7f0969d64289..0010e5c43126 100644 --- a/airbyte-integrations/connectors/source-amplitude/pyproject.toml +++ b/airbyte-integrations/connectors/source-amplitude/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.12" +version = "0.6.13" name = "source-amplitude" description = "Source implementation for Amplitude." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/amplitude.md b/docs/integrations/sources/amplitude.md index d2991d46ae8d..e166b4ed7dc5 100644 --- a/docs/integrations/sources/amplitude.md +++ b/docs/integrations/sources/amplitude.md @@ -58,6 +58,7 @@ The Amplitude connector ideally should gracefully handle Amplitude API limitatio | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------- | +| 0.6.13 | 2024-10-29 | [47097](https://github.com/airbytehq/airbyte/pull/47097) | Update dependencies | | 0.6.12 | 2024-10-12 | [46771](https://github.com/airbytehq/airbyte/pull/46771) | Update dependencies | | 0.6.11 | 2024-10-11 | [46736](https://github.com/airbytehq/airbyte/pull/46736) | Added possibility to toggle groupping by `Country` for `Active Users` stream | | 0.6.10 | 2024-10-05 | [46489](https://github.com/airbytehq/airbyte/pull/46489) | Update dependencies | From 0c5025b18f3a098e11fff5bcd5d9809eb553e7ae Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:12:04 +0200 Subject: [PATCH 470/808] =?UTF-8?q?=F0=9F=90=99=20destination-chroma:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-10-29]=20(#47053)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-chroma/metadata.yaml | 2 +- .../connectors/destination-chroma/poetry.lock | 1315 +++++++++-------- .../destination-chroma/pyproject.toml | 2 +- docs/integrations/destinations/chroma.md | 1 + 4 files changed, 672 insertions(+), 648 deletions(-) diff --git a/airbyte-integrations/connectors/destination-chroma/metadata.yaml b/airbyte-integrations/connectors/destination-chroma/metadata.yaml index 984fffb93b98..da91459d91d9 100644 --- a/airbyte-integrations/connectors/destination-chroma/metadata.yaml +++ b/airbyte-integrations/connectors/destination-chroma/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 0b75218b-f702-4a28-85ac-34d3d84c0fc2 - dockerImageTag: 0.0.32 + dockerImageTag: 0.0.33 dockerRepository: airbyte/destination-chroma githubIssueLabel: destination-chroma icon: chroma.svg diff --git a/airbyte-integrations/connectors/destination-chroma/poetry.lock b/airbyte-integrations/connectors/destination-chroma/poetry.lock index 97816a07ea85..c6ef4d42d3f1 100644 --- a/airbyte-integrations/connectors/destination-chroma/poetry.lock +++ b/airbyte-integrations/connectors/destination-chroma/poetry.lock @@ -194,13 +194,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -211,7 +211,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -553,13 +553,13 @@ numpy = "*" [[package]] name = "chromadb" -version = "0.5.13" +version = "0.5.16" description = "Chroma." optional = false python-versions = ">=3.8" files = [ - {file = "chromadb-0.5.13-py3-none-any.whl", hash = "sha256:090134cb8a9bd35622175a8a9bb93a7b56ace413697489e9d2f43a5299a6b7bc"}, - {file = "chromadb-0.5.13.tar.gz", hash = "sha256:fb1f44b5425976ef2bdf7403d365986ee5a224e5d8108fcd86472ff64de216a0"}, + {file = "chromadb-0.5.16-py3-none-any.whl", hash = "sha256:ae96f1c81fa691a163a2d625dc769c5c1afa3219d1ac26796fbf9d60d7924d71"}, + {file = "chromadb-0.5.16.tar.gz", hash = "sha256:ab947065125908b228cc343e7d9f21bcea5036dcd237d993caa66e5fc262dd9e"}, ] [package.dependencies] @@ -808,13 +808,13 @@ files = [ [[package]] name = "et-xmlfile" -version = "1.1.0" +version = "2.0.0" description = "An implementation of lxml.xmlfile for the standard library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, + {file = "et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa"}, + {file = "et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54"}, ] [[package]] @@ -833,18 +833,18 @@ test = ["pytest (>=6)"] [[package]] name = "fastapi" -version = "0.115.2" +version = "0.115.4" description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" optional = false python-versions = ">=3.8" files = [ - {file = "fastapi-0.115.2-py3-none-any.whl", hash = "sha256:61704c71286579cc5a598763905928f24ee98bfcc07aabe84cfefb98812bbc86"}, - {file = "fastapi-0.115.2.tar.gz", hash = "sha256:3995739e0b09fa12f984bce8fa9ae197b35d433750d3d312422d846e283697ee"}, + {file = "fastapi-0.115.4-py3-none-any.whl", hash = "sha256:0b504a063ffb3cf96a5e27dc1bc32c80ca743a2528574f9cdc77daa2d31b4742"}, + {file = "fastapi-0.115.4.tar.gz", hash = "sha256:db653475586b091cb8b2fec2ac54a680ac6a158e07406e1abae31679e8826349"}, ] [package.dependencies] pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0 || >2.0.0,<2.0.1 || >2.0.1,<2.1.0 || >2.1.0,<3.0.0" -starlette = ">=0.37.2,<0.41.0" +starlette = ">=0.40.0,<0.42.0" typing-extensions = ">=4.8.0" [package.extras] @@ -991,99 +991,114 @@ woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] [[package]] name = "frozenlist" -version = "1.4.1" +version = "1.5.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = false python-versions = ">=3.8" files = [ - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, - {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, - {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, - {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, - {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, - {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, - {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, - {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, - {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, - {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, - {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, - {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, - {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, ] [[package]] name = "fsspec" -version = "2024.9.0" +version = "2024.10.0" description = "File-system specification" optional = false python-versions = ">=3.8" files = [ - {file = "fsspec-2024.9.0-py3-none-any.whl", hash = "sha256:a0947d552d8a6efa72cc2c730b12c41d043509156966cca4fb157b0f2a0c574b"}, - {file = "fsspec-2024.9.0.tar.gz", hash = "sha256:4b0afb90c2f21832df142f292649035d80b421f60a9e1c027802e5a0da2b04e8"}, + {file = "fsspec-2024.10.0-py3-none-any.whl", hash = "sha256:03b9a6785766a4de40368b88906366755e2819e758b83705c88cd7cb5fe81871"}, + {file = "fsspec-2024.10.0.tar.gz", hash = "sha256:eda2d8a4116d4f2429db8550f2457da57279247dd930bb12f821b58391359493"}, ] [package.extras] @@ -1252,70 +1267,70 @@ test = ["objgraph", "psutil"] [[package]] name = "grpcio" -version = "1.66.2" +version = "1.67.1" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.66.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:fe96281713168a3270878255983d2cb1a97e034325c8c2c25169a69289d3ecfa"}, - {file = "grpcio-1.66.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:73fc8f8b9b5c4a03e802b3cd0c18b2b06b410d3c1dcbef989fdeb943bd44aff7"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:03b0b307ba26fae695e067b94cbb014e27390f8bc5ac7a3a39b7723fed085604"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d69ce1f324dc2d71e40c9261d3fdbe7d4c9d60f332069ff9b2a4d8a257c7b2b"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05bc2ceadc2529ab0b227b1310d249d95d9001cd106aa4d31e8871ad3c428d73"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ac475e8da31484efa25abb774674d837b343afb78bb3bcdef10f81a93e3d6bf"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0be4e0490c28da5377283861bed2941d1d20ec017ca397a5df4394d1c31a9b50"}, - {file = "grpcio-1.66.2-cp310-cp310-win32.whl", hash = "sha256:4e504572433f4e72b12394977679161d495c4c9581ba34a88d843eaf0f2fbd39"}, - {file = "grpcio-1.66.2-cp310-cp310-win_amd64.whl", hash = "sha256:2018b053aa15782db2541ca01a7edb56a0bf18c77efed975392583725974b249"}, - {file = "grpcio-1.66.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:2335c58560a9e92ac58ff2bc5649952f9b37d0735608242973c7a8b94a6437d8"}, - {file = "grpcio-1.66.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45a3d462826f4868b442a6b8fdbe8b87b45eb4f5b5308168c156b21eca43f61c"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:a9539f01cb04950fd4b5ab458e64a15f84c2acc273670072abe49a3f29bbad54"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce89f5876662f146d4c1f695dda29d4433a5d01c8681fbd2539afff535da14d4"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d25a14af966438cddf498b2e338f88d1c9706f3493b1d73b93f695c99c5f0e2a"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6001e575b8bbd89eee11960bb640b6da6ae110cf08113a075f1e2051cc596cae"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ea1d062c9230278793820146c95d038dc0f468cbdd172eec3363e42ff1c7d01"}, - {file = "grpcio-1.66.2-cp311-cp311-win32.whl", hash = "sha256:38b68498ff579a3b1ee8f93a05eb48dc2595795f2f62716e797dc24774c1aaa8"}, - {file = "grpcio-1.66.2-cp311-cp311-win_amd64.whl", hash = "sha256:6851de821249340bdb100df5eacfecfc4e6075fa85c6df7ee0eb213170ec8e5d"}, - {file = "grpcio-1.66.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:802d84fd3d50614170649853d121baaaa305de7b65b3e01759247e768d691ddf"}, - {file = "grpcio-1.66.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:80fd702ba7e432994df208f27514280b4b5c6843e12a48759c9255679ad38db8"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:12fda97ffae55e6526825daf25ad0fa37483685952b5d0f910d6405c87e3adb6"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:950da58d7d80abd0ea68757769c9db0a95b31163e53e5bb60438d263f4bed7b7"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e636ce23273683b00410f1971d209bf3689238cf5538d960adc3cdfe80dd0dbd"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a917d26e0fe980b0ac7bfcc1a3c4ad6a9a4612c911d33efb55ed7833c749b0ee"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49f0ca7ae850f59f828a723a9064cadbed90f1ece179d375966546499b8a2c9c"}, - {file = "grpcio-1.66.2-cp312-cp312-win32.whl", hash = "sha256:31fd163105464797a72d901a06472860845ac157389e10f12631025b3e4d0453"}, - {file = "grpcio-1.66.2-cp312-cp312-win_amd64.whl", hash = "sha256:ff1f7882e56c40b0d33c4922c15dfa30612f05fb785074a012f7cda74d1c3679"}, - {file = "grpcio-1.66.2-cp313-cp313-linux_armv7l.whl", hash = "sha256:3b00efc473b20d8bf83e0e1ae661b98951ca56111feb9b9611df8efc4fe5d55d"}, - {file = "grpcio-1.66.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1caa38fb22a8578ab8393da99d4b8641e3a80abc8fd52646f1ecc92bcb8dee34"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c408f5ef75cfffa113cacd8b0c0e3611cbfd47701ca3cdc090594109b9fcbaed"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c806852deaedee9ce8280fe98955c9103f62912a5b2d5ee7e3eaa284a6d8d8e7"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f145cc21836c332c67baa6fc81099d1d27e266401565bf481948010d6ea32d46"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:73e3b425c1e155730273f73e419de3074aa5c5e936771ee0e4af0814631fb30a"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9c509a4f78114cbc5f0740eb3d7a74985fd2eff022971bc9bc31f8bc93e66a3b"}, - {file = "grpcio-1.66.2-cp313-cp313-win32.whl", hash = "sha256:20657d6b8cfed7db5e11b62ff7dfe2e12064ea78e93f1434d61888834bc86d75"}, - {file = "grpcio-1.66.2-cp313-cp313-win_amd64.whl", hash = "sha256:fb70487c95786e345af5e854ffec8cb8cc781bcc5df7930c4fbb7feaa72e1cdf"}, - {file = "grpcio-1.66.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:a18e20d8321c6400185b4263e27982488cb5cdd62da69147087a76a24ef4e7e3"}, - {file = "grpcio-1.66.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:02697eb4a5cbe5a9639f57323b4c37bcb3ab2d48cec5da3dc2f13334d72790dd"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:99a641995a6bc4287a6315989ee591ff58507aa1cbe4c2e70d88411c4dcc0839"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ed71e81782966ffead60268bbda31ea3f725ebf8aa73634d5dda44f2cf3fb9c"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbd27c24a4cc5e195a7f56cfd9312e366d5d61b86e36d46bbe538457ea6eb8dd"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d9a9724a156c8ec6a379869b23ba3323b7ea3600851c91489b871e375f710bc8"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d8d4732cc5052e92cea2f78b233c2e2a52998ac40cd651f40e398893ad0d06ec"}, - {file = "grpcio-1.66.2-cp38-cp38-win32.whl", hash = "sha256:7b2c86457145ce14c38e5bf6bdc19ef88e66c5fee2c3d83285c5aef026ba93b3"}, - {file = "grpcio-1.66.2-cp38-cp38-win_amd64.whl", hash = "sha256:e88264caad6d8d00e7913996030bac8ad5f26b7411495848cc218bd3a9040b6c"}, - {file = "grpcio-1.66.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:c400ba5675b67025c8a9f48aa846f12a39cf0c44df5cd060e23fda5b30e9359d"}, - {file = "grpcio-1.66.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:66a0cd8ba6512b401d7ed46bb03f4ee455839957f28b8d61e7708056a806ba6a"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:06de8ec0bd71be123eec15b0e0d457474931c2c407869b6c349bd9bed4adbac3"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb57870449dfcfac428afbb5a877829fcb0d6db9d9baa1148705739e9083880e"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b672abf90a964bfde2d0ecbce30f2329a47498ba75ce6f4da35a2f4532b7acbc"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad2efdbe90c73b0434cbe64ed372e12414ad03c06262279b104a029d1889d13e"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9c3a99c519f4638e700e9e3f83952e27e2ea10873eecd7935823dab0c1c9250e"}, - {file = "grpcio-1.66.2-cp39-cp39-win32.whl", hash = "sha256:78fa51ebc2d9242c0fc5db0feecc57a9943303b46664ad89921f5079e2e4ada7"}, - {file = "grpcio-1.66.2-cp39-cp39-win_amd64.whl", hash = "sha256:728bdf36a186e7f51da73be7f8d09457a03061be848718d0edf000e709418987"}, - {file = "grpcio-1.66.2.tar.gz", hash = "sha256:563588c587b75c34b928bc428548e5b00ea38c46972181a4d8b75ba7e3f24231"}, + {file = "grpcio-1.67.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:8b0341d66a57f8a3119b77ab32207072be60c9bf79760fa609c5609f2deb1f3f"}, + {file = "grpcio-1.67.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:f5a27dddefe0e2357d3e617b9079b4bfdc91341a91565111a21ed6ebbc51b22d"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:43112046864317498a33bdc4797ae6a268c36345a910de9b9c17159d8346602f"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9b929f13677b10f63124c1a410994a401cdd85214ad83ab67cc077fc7e480f0"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7d1797a8a3845437d327145959a2c0c47c05947c9eef5ff1a4c80e499dcc6fa"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0489063974d1452436139501bf6b180f63d4977223ee87488fe36858c5725292"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9fd042de4a82e3e7aca44008ee2fb5da01b3e5adb316348c21980f7f58adc311"}, + {file = "grpcio-1.67.1-cp310-cp310-win32.whl", hash = "sha256:638354e698fd0c6c76b04540a850bf1db27b4d2515a19fcd5cf645c48d3eb1ed"}, + {file = "grpcio-1.67.1-cp310-cp310-win_amd64.whl", hash = "sha256:608d87d1bdabf9e2868b12338cd38a79969eaf920c89d698ead08f48de9c0f9e"}, + {file = "grpcio-1.67.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:7818c0454027ae3384235a65210bbf5464bd715450e30a3d40385453a85a70cb"}, + {file = "grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ea33986b70f83844cd00814cee4451055cd8cab36f00ac64a31f5bb09b31919e"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c7a01337407dd89005527623a4a72c5c8e2894d22bead0895306b23c6695698f"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b866f73224b0634f4312a4674c1be21b2b4afa73cb20953cbbb73a6b36c3cc"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fff78ba10d4250bfc07a01bd6254a6d87dc67f9627adece85c0b2ed754fa96"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8a23cbcc5bb11ea7dc6163078be36c065db68d915c24f5faa4f872c573bb400f"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1a65b503d008f066e994f34f456e0647e5ceb34cfcec5ad180b1b44020ad4970"}, + {file = "grpcio-1.67.1-cp311-cp311-win32.whl", hash = "sha256:e29ca27bec8e163dca0c98084040edec3bc49afd10f18b412f483cc68c712744"}, + {file = "grpcio-1.67.1-cp311-cp311-win_amd64.whl", hash = "sha256:786a5b18544622bfb1e25cc08402bd44ea83edfb04b93798d85dca4d1a0b5be5"}, + {file = "grpcio-1.67.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:267d1745894200e4c604958da5f856da6293f063327cb049a51fe67348e4f953"}, + {file = "grpcio-1.67.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:85f69fdc1d28ce7cff8de3f9c67db2b0ca9ba4449644488c1e0303c146135ddb"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:f26b0b547eb8d00e195274cdfc63ce64c8fc2d3e2d00b12bf468ece41a0423a0"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4422581cdc628f77302270ff839a44f4c24fdc57887dc2a45b7e53d8fc2376af"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7616d2ded471231c701489190379e0c311ee0a6c756f3c03e6a62b95a7146e"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8a00efecde9d6fcc3ab00c13f816313c040a28450e5e25739c24f432fc6d3c75"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:699e964923b70f3101393710793289e42845791ea07565654ada0969522d0a38"}, + {file = "grpcio-1.67.1-cp312-cp312-win32.whl", hash = "sha256:4e7b904484a634a0fff132958dabdb10d63e0927398273917da3ee103e8d1f78"}, + {file = "grpcio-1.67.1-cp312-cp312-win_amd64.whl", hash = "sha256:5721e66a594a6c4204458004852719b38f3d5522082be9061d6510b455c90afc"}, + {file = "grpcio-1.67.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:aa0162e56fd10a5547fac8774c4899fc3e18c1aa4a4759d0ce2cd00d3696ea6b"}, + {file = "grpcio-1.67.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:beee96c8c0b1a75d556fe57b92b58b4347c77a65781ee2ac749d550f2a365dc1"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:a93deda571a1bf94ec1f6fcda2872dad3ae538700d94dc283c672a3b508ba3af"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6f255980afef598a9e64a24efce87b625e3e3c80a45162d111a461a9f92955"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e838cad2176ebd5d4a8bb03955138d6589ce9e2ce5d51c3ada34396dbd2dba8"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a6703916c43b1d468d0756c8077b12017a9fcb6a1ef13faf49e67d20d7ebda62"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:917e8d8994eed1d86b907ba2a61b9f0aef27a2155bca6cbb322430fc7135b7bb"}, + {file = "grpcio-1.67.1-cp313-cp313-win32.whl", hash = "sha256:e279330bef1744040db8fc432becc8a727b84f456ab62b744d3fdb83f327e121"}, + {file = "grpcio-1.67.1-cp313-cp313-win_amd64.whl", hash = "sha256:fa0c739ad8b1996bd24823950e3cb5152ae91fca1c09cc791190bf1627ffefba"}, + {file = "grpcio-1.67.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:178f5db771c4f9a9facb2ab37a434c46cb9be1a75e820f187ee3d1e7805c4f65"}, + {file = "grpcio-1.67.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0f3e49c738396e93b7ba9016e153eb09e0778e776df6090c1b8c91877cc1c426"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:24e8a26dbfc5274d7474c27759b54486b8de23c709d76695237515bc8b5baeab"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b6c16489326d79ead41689c4b84bc40d522c9a7617219f4ad94bc7f448c5085"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e6a4dcf5af7bbc36fd9f81c9f372e8ae580870a9e4b6eafe948cd334b81cf3"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:95b5f2b857856ed78d72da93cd7d09b6db8ef30102e5e7fe0961fe4d9f7d48e8"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b49359977c6ec9f5d0573ea4e0071ad278ef905aa74e420acc73fd28ce39e9ce"}, + {file = "grpcio-1.67.1-cp38-cp38-win32.whl", hash = "sha256:f5b76ff64aaac53fede0cc93abf57894ab2a7362986ba22243d06218b93efe46"}, + {file = "grpcio-1.67.1-cp38-cp38-win_amd64.whl", hash = "sha256:804c6457c3cd3ec04fe6006c739579b8d35c86ae3298ffca8de57b493524b771"}, + {file = "grpcio-1.67.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:a25bdea92b13ff4d7790962190bf6bf5c4639876e01c0f3dda70fc2769616335"}, + {file = "grpcio-1.67.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cdc491ae35a13535fd9196acb5afe1af37c8237df2e54427be3eecda3653127e"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:85f862069b86a305497e74d0dc43c02de3d1d184fc2c180993aa8aa86fbd19b8"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec74ef02010186185de82cc594058a3ccd8d86821842bbac9873fd4a2cf8be8d"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01f616a964e540638af5130469451cf580ba8c7329f45ca998ab66e0c7dcdb04"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:299b3d8c4f790c6bcca485f9963b4846dd92cf6f1b65d3697145d005c80f9fe8"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:60336bff760fbb47d7e86165408126f1dded184448e9a4c892189eb7c9d3f90f"}, + {file = "grpcio-1.67.1-cp39-cp39-win32.whl", hash = "sha256:5ed601c4c6008429e3d247ddb367fe8c7259c355757448d7c1ef7bd4a6739e8e"}, + {file = "grpcio-1.67.1-cp39-cp39-win_amd64.whl", hash = "sha256:5db70d32d6703b89912af16d6d45d78406374a8b8ef0d28140351dd0ec610e98"}, + {file = "grpcio-1.67.1.tar.gz", hash = "sha256:3dc2ed4cabea4dc14d5e708c2b426205956077cc5de419b4d4079315017e9732"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.66.2)"] +protobuf = ["grpcio-tools (>=1.67.1)"] [[package]] name = "h11" @@ -1351,51 +1366,58 @@ trio = ["trio (>=0.22.0,<1.0)"] [[package]] name = "httptools" -version = "0.6.1" +version = "0.6.4" description = "A collection of framework independent HTTP protocol utils." optional = false python-versions = ">=3.8.0" files = [ - {file = "httptools-0.6.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d2f6c3c4cb1948d912538217838f6e9960bc4a521d7f9b323b3da579cd14532f"}, - {file = "httptools-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:00d5d4b68a717765b1fabfd9ca755bd12bf44105eeb806c03d1962acd9b8e563"}, - {file = "httptools-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:639dc4f381a870c9ec860ce5c45921db50205a37cc3334e756269736ff0aac58"}, - {file = "httptools-0.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e57997ac7fb7ee43140cc03664de5f268813a481dff6245e0075925adc6aa185"}, - {file = "httptools-0.6.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0ac5a0ae3d9f4fe004318d64b8a854edd85ab76cffbf7ef5e32920faef62f142"}, - {file = "httptools-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3f30d3ce413088a98b9db71c60a6ada2001a08945cb42dd65a9a9fe228627658"}, - {file = "httptools-0.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:1ed99a373e327f0107cb513b61820102ee4f3675656a37a50083eda05dc9541b"}, - {file = "httptools-0.6.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7a7ea483c1a4485c71cb5f38be9db078f8b0e8b4c4dc0210f531cdd2ddac1ef1"}, - {file = "httptools-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:85ed077c995e942b6f1b07583e4eb0a8d324d418954fc6af913d36db7c05a5a0"}, - {file = "httptools-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b0bb634338334385351a1600a73e558ce619af390c2b38386206ac6a27fecfc"}, - {file = "httptools-0.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d9ceb2c957320def533671fc9c715a80c47025139c8d1f3797477decbc6edd2"}, - {file = "httptools-0.6.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4f0f8271c0a4db459f9dc807acd0eadd4839934a4b9b892f6f160e94da309837"}, - {file = "httptools-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6a4f5ccead6d18ec072ac0b84420e95d27c1cdf5c9f1bc8fbd8daf86bd94f43d"}, - {file = "httptools-0.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:5cceac09f164bcba55c0500a18fe3c47df29b62353198e4f37bbcc5d591172c3"}, - {file = "httptools-0.6.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:75c8022dca7935cba14741a42744eee13ba05db00b27a4b940f0d646bd4d56d0"}, - {file = "httptools-0.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:48ed8129cd9a0d62cf4d1575fcf90fb37e3ff7d5654d3a5814eb3d55f36478c2"}, - {file = "httptools-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f58e335a1402fb5a650e271e8c2d03cfa7cea46ae124649346d17bd30d59c90"}, - {file = "httptools-0.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93ad80d7176aa5788902f207a4e79885f0576134695dfb0fefc15b7a4648d503"}, - {file = "httptools-0.6.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9bb68d3a085c2174c2477eb3ffe84ae9fb4fde8792edb7bcd09a1d8467e30a84"}, - {file = "httptools-0.6.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b512aa728bc02354e5ac086ce76c3ce635b62f5fbc32ab7082b5e582d27867bb"}, - {file = "httptools-0.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:97662ce7fb196c785344d00d638fc9ad69e18ee4bfb4000b35a52efe5adcc949"}, - {file = "httptools-0.6.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:8e216a038d2d52ea13fdd9b9c9c7459fb80d78302b257828285eca1c773b99b3"}, - {file = "httptools-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3e802e0b2378ade99cd666b5bffb8b2a7cc8f3d28988685dc300469ea8dd86cb"}, - {file = "httptools-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd3e488b447046e386a30f07af05f9b38d3d368d1f7b4d8f7e10af85393db97"}, - {file = "httptools-0.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe467eb086d80217b7584e61313ebadc8d187a4d95bb62031b7bab4b205c3ba3"}, - {file = "httptools-0.6.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3c3b214ce057c54675b00108ac42bacf2ab8f85c58e3f324a4e963bbc46424f4"}, - {file = "httptools-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8ae5b97f690badd2ca27cbf668494ee1b6d34cf1c464271ef7bfa9ca6b83ffaf"}, - {file = "httptools-0.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:405784577ba6540fa7d6ff49e37daf104e04f4b4ff2d1ac0469eaa6a20fde084"}, - {file = "httptools-0.6.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:95fb92dd3649f9cb139e9c56604cc2d7c7bf0fc2e7c8d7fbd58f96e35eddd2a3"}, - {file = "httptools-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dcbab042cc3ef272adc11220517278519adf8f53fd3056d0e68f0a6f891ba94e"}, - {file = "httptools-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cf2372e98406efb42e93bfe10f2948e467edfd792b015f1b4ecd897903d3e8d"}, - {file = "httptools-0.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:678fcbae74477a17d103b7cae78b74800d795d702083867ce160fc202104d0da"}, - {file = "httptools-0.6.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e0b281cf5a125c35f7f6722b65d8542d2e57331be573e9e88bc8b0115c4a7a81"}, - {file = "httptools-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:95658c342529bba4e1d3d2b1a874db16c7cca435e8827422154c9da76ac4e13a"}, - {file = "httptools-0.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ebaec1bf683e4bf5e9fbb49b8cc36da482033596a415b3e4ebab5a4c0d7ec5e"}, - {file = "httptools-0.6.1.tar.gz", hash = "sha256:c6e26c30455600b95d94b1b836085138e82f177351454ee841c148f93a9bad5a"}, + {file = "httptools-0.6.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3c73ce323711a6ffb0d247dcd5a550b8babf0f757e86a52558fe5b86d6fefcc0"}, + {file = "httptools-0.6.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:345c288418f0944a6fe67be8e6afa9262b18c7626c3ef3c28adc5eabc06a68da"}, + {file = "httptools-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deee0e3343f98ee8047e9f4c5bc7cedbf69f5734454a94c38ee829fb2d5fa3c1"}, + {file = "httptools-0.6.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca80b7485c76f768a3bc83ea58373f8db7b015551117375e4918e2aa77ea9b50"}, + {file = "httptools-0.6.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:90d96a385fa941283ebd231464045187a31ad932ebfa541be8edf5b3c2328959"}, + {file = "httptools-0.6.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:59e724f8b332319e2875efd360e61ac07f33b492889284a3e05e6d13746876f4"}, + {file = "httptools-0.6.4-cp310-cp310-win_amd64.whl", hash = "sha256:c26f313951f6e26147833fc923f78f95604bbec812a43e5ee37f26dc9e5a686c"}, + {file = "httptools-0.6.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f47f8ed67cc0ff862b84a1189831d1d33c963fb3ce1ee0c65d3b0cbe7b711069"}, + {file = "httptools-0.6.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0614154d5454c21b6410fdf5262b4a3ddb0f53f1e1721cfd59d55f32138c578a"}, + {file = "httptools-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8787367fbdfccae38e35abf7641dafc5310310a5987b689f4c32cc8cc3ee975"}, + {file = "httptools-0.6.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40b0f7fe4fd38e6a507bdb751db0379df1e99120c65fbdc8ee6c1d044897a636"}, + {file = "httptools-0.6.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40a5ec98d3f49904b9fe36827dcf1aadfef3b89e2bd05b0e35e94f97c2b14721"}, + {file = "httptools-0.6.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:dacdd3d10ea1b4ca9df97a0a303cbacafc04b5cd375fa98732678151643d4988"}, + {file = "httptools-0.6.4-cp311-cp311-win_amd64.whl", hash = "sha256:288cd628406cc53f9a541cfaf06041b4c71d751856bab45e3702191f931ccd17"}, + {file = "httptools-0.6.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:df017d6c780287d5c80601dafa31f17bddb170232d85c066604d8558683711a2"}, + {file = "httptools-0.6.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:85071a1e8c2d051b507161f6c3e26155b5c790e4e28d7f236422dbacc2a9cc44"}, + {file = "httptools-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69422b7f458c5af875922cdb5bd586cc1f1033295aa9ff63ee196a87519ac8e1"}, + {file = "httptools-0.6.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16e603a3bff50db08cd578d54f07032ca1631450ceb972c2f834c2b860c28ea2"}, + {file = "httptools-0.6.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ec4f178901fa1834d4a060320d2f3abc5c9e39766953d038f1458cb885f47e81"}, + {file = "httptools-0.6.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f9eb89ecf8b290f2e293325c646a211ff1c2493222798bb80a530c5e7502494f"}, + {file = "httptools-0.6.4-cp312-cp312-win_amd64.whl", hash = "sha256:db78cb9ca56b59b016e64b6031eda5653be0589dba2b1b43453f6e8b405a0970"}, + {file = "httptools-0.6.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ade273d7e767d5fae13fa637f4d53b6e961fb7fd93c7797562663f0171c26660"}, + {file = "httptools-0.6.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:856f4bc0478ae143bad54a4242fccb1f3f86a6e1be5548fecfd4102061b3a083"}, + {file = "httptools-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:322d20ea9cdd1fa98bd6a74b77e2ec5b818abdc3d36695ab402a0de8ef2865a3"}, + {file = "httptools-0.6.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d87b29bd4486c0093fc64dea80231f7c7f7eb4dc70ae394d70a495ab8436071"}, + {file = "httptools-0.6.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:342dd6946aa6bda4b8f18c734576106b8a31f2fe31492881a9a160ec84ff4bd5"}, + {file = "httptools-0.6.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b36913ba52008249223042dca46e69967985fb4051951f94357ea681e1f5dc0"}, + {file = "httptools-0.6.4-cp313-cp313-win_amd64.whl", hash = "sha256:28908df1b9bb8187393d5b5db91435ccc9c8e891657f9cbb42a2541b44c82fc8"}, + {file = "httptools-0.6.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d3f0d369e7ffbe59c4b6116a44d6a8eb4783aae027f2c0b366cf0aa964185dba"}, + {file = "httptools-0.6.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:94978a49b8f4569ad607cd4946b759d90b285e39c0d4640c6b36ca7a3ddf2efc"}, + {file = "httptools-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40dc6a8e399e15ea525305a2ddba998b0af5caa2566bcd79dcbe8948181eeaff"}, + {file = "httptools-0.6.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab9ba8dcf59de5181f6be44a77458e45a578fc99c31510b8c65b7d5acc3cf490"}, + {file = "httptools-0.6.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:fc411e1c0a7dcd2f902c7c48cf079947a7e65b5485dea9decb82b9105ca71a43"}, + {file = "httptools-0.6.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:d54efd20338ac52ba31e7da78e4a72570cf729fac82bc31ff9199bedf1dc7440"}, + {file = "httptools-0.6.4-cp38-cp38-win_amd64.whl", hash = "sha256:df959752a0c2748a65ab5387d08287abf6779ae9165916fe053e68ae1fbdc47f"}, + {file = "httptools-0.6.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:85797e37e8eeaa5439d33e556662cc370e474445d5fab24dcadc65a8ffb04003"}, + {file = "httptools-0.6.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:db353d22843cf1028f43c3651581e4bb49374d85692a85f95f7b9a130e1b2cab"}, + {file = "httptools-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1ffd262a73d7c28424252381a5b854c19d9de5f56f075445d33919a637e3547"}, + {file = "httptools-0.6.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:703c346571fa50d2e9856a37d7cd9435a25e7fd15e236c397bf224afaa355fe9"}, + {file = "httptools-0.6.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:aafe0f1918ed07b67c1e838f950b1c1fabc683030477e60b335649b8020e1076"}, + {file = "httptools-0.6.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0e563e54979e97b6d13f1bbc05a96109923e76b901f786a5eae36e99c01237bd"}, + {file = "httptools-0.6.4-cp39-cp39-win_amd64.whl", hash = "sha256:b799de31416ecc589ad79dd85a0b2657a8fe39327944998dea368c1d4c9e55e6"}, + {file = "httptools-0.6.4.tar.gz", hash = "sha256:4e93eee4add6493b59a5c514da98c939b244fce4a0d8879cd3f466562f4b7d5c"}, ] [package.extras] -test = ["Cython (>=0.29.24,<0.30.0)"] +test = ["Cython (>=0.29.24)"] [[package]] name = "httpx" @@ -1424,13 +1446,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "huggingface-hub" -version = "0.25.2" +version = "0.26.2" description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" optional = false python-versions = ">=3.8.0" files = [ - {file = "huggingface_hub-0.25.2-py3-none-any.whl", hash = "sha256:1897caf88ce7f97fe0110603d8f66ac264e3ba6accdf30cd66cc0fed5282ad25"}, - {file = "huggingface_hub-0.25.2.tar.gz", hash = "sha256:a1014ea111a5f40ccd23f7f7ba8ac46e20fa3b658ced1f86a00c75c06ec6423c"}, + {file = "huggingface_hub-0.26.2-py3-none-any.whl", hash = "sha256:98c2a5a8e786c7b2cb6fdeb2740893cba4d53e312572ed3d8afafda65b128c46"}, + {file = "huggingface_hub-0.26.2.tar.gz", hash = "sha256:b100d853465d965733964d123939ba287da60a547087783ddff8a323f340332b"}, ] [package.dependencies] @@ -1443,16 +1465,16 @@ tqdm = ">=4.42.1" typing-extensions = ">=3.7.4.3" [package.extras] -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio", "jedi", "minijinja (>=1.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "libcst (==1.4.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio", "jedi", "minijinja (>=1.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "libcst (==1.4.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"] fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] hf-transfer = ["hf-transfer (>=0.1.4)"] -inference = ["aiohttp", "minijinja (>=1.0)"] -quality = ["mypy (==1.5.1)", "ruff (>=0.5.0)"] +inference = ["aiohttp"] +quality = ["libcst (==1.4.0)", "mypy (==1.5.1)", "ruff (>=0.5.0)"] tensorflow = ["graphviz", "pydot", "tensorflow"] tensorflow-testing = ["keras (<3.0)", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio", "jedi", "minijinja (>=1.0)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] torch = ["safetensors[torch]", "torch"] typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)"] @@ -1893,13 +1915,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -1935,92 +1957,92 @@ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.22.0" +version = "3.23.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, - {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, + {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, + {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "matplotlib" @@ -2344,38 +2366,43 @@ typing-extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} [[package]] name = "mypy" -version = "1.11.2" +version = "1.13.0" description = "Optional static typing for Python" optional = false python-versions = ">=3.8" files = [ - {file = "mypy-1.11.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d42a6dd818ffce7be66cce644f1dff482f1d97c53ca70908dff0b9ddc120b77a"}, - {file = "mypy-1.11.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:801780c56d1cdb896eacd5619a83e427ce436d86a3bdf9112527f24a66618fef"}, - {file = "mypy-1.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41ea707d036a5307ac674ea172875f40c9d55c5394f888b168033177fce47383"}, - {file = "mypy-1.11.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6e658bd2d20565ea86da7d91331b0eed6d2eee22dc031579e6297f3e12c758c8"}, - {file = "mypy-1.11.2-cp310-cp310-win_amd64.whl", hash = "sha256:478db5f5036817fe45adb7332d927daa62417159d49783041338921dcf646fc7"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75746e06d5fa1e91bfd5432448d00d34593b52e7e91a187d981d08d1f33d4385"}, - {file = "mypy-1.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a976775ab2256aadc6add633d44f100a2517d2388906ec4f13231fafbb0eccca"}, - {file = "mypy-1.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cd953f221ac1379050a8a646585a29574488974f79d8082cedef62744f0a0104"}, - {file = "mypy-1.11.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:57555a7715c0a34421013144a33d280e73c08df70f3a18a552938587ce9274f4"}, - {file = "mypy-1.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:36383a4fcbad95f2657642a07ba22ff797de26277158f1cc7bd234821468b1b6"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e8960dbbbf36906c5c0b7f4fbf2f0c7ffb20f4898e6a879fcf56a41a08b0d318"}, - {file = "mypy-1.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06d26c277962f3fb50e13044674aa10553981ae514288cb7d0a738f495550b36"}, - {file = "mypy-1.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6e7184632d89d677973a14d00ae4d03214c8bc301ceefcdaf5c474866814c987"}, - {file = "mypy-1.11.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3a66169b92452f72117e2da3a576087025449018afc2d8e9bfe5ffab865709ca"}, - {file = "mypy-1.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:969ea3ef09617aff826885a22ece0ddef69d95852cdad2f60c8bb06bf1f71f70"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:37c7fa6121c1cdfcaac97ce3d3b5588e847aa79b580c1e922bb5d5d2902df19b"}, - {file = "mypy-1.11.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a8a53bc3ffbd161b5b2a4fff2f0f1e23a33b0168f1c0778ec70e1a3d66deb86"}, - {file = "mypy-1.11.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2ff93107f01968ed834f4256bc1fc4475e2fecf6c661260066a985b52741ddce"}, - {file = "mypy-1.11.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:edb91dded4df17eae4537668b23f0ff6baf3707683734b6a818d5b9d0c0c31a1"}, - {file = "mypy-1.11.2-cp38-cp38-win_amd64.whl", hash = "sha256:ee23de8530d99b6db0573c4ef4bd8f39a2a6f9b60655bf7a1357e585a3486f2b"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:801ca29f43d5acce85f8e999b1e431fb479cb02d0e11deb7d2abb56bdaf24fd6"}, - {file = "mypy-1.11.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af8d155170fcf87a2afb55b35dc1a0ac21df4431e7d96717621962e4b9192e70"}, - {file = "mypy-1.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7821776e5c4286b6a13138cc935e2e9b6fde05e081bdebf5cdb2bb97c9df81d"}, - {file = "mypy-1.11.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:539c570477a96a4e6fb718b8d5c3e0c0eba1f485df13f86d2970c91f0673148d"}, - {file = "mypy-1.11.2-cp39-cp39-win_amd64.whl", hash = "sha256:3f14cd3d386ac4d05c5a39a51b84387403dadbd936e17cb35882134d4f8f0d24"}, - {file = "mypy-1.11.2-py3-none-any.whl", hash = "sha256:b499bc07dbdcd3de92b0a8b29fdf592c111276f6a12fe29c30f6c417dd546d12"}, - {file = "mypy-1.11.2.tar.gz", hash = "sha256:7f9993ad3e0ffdc95c2a14b66dee63729f021968bff8ad911867579c65d13a79"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, ] [package.dependencies] @@ -2385,6 +2412,7 @@ typing-extensions = ">=4.6.0" [package.extras] dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] install-types = ["pip"] mypyc = ["setuptools (>=50)"] reports = ["lxml"] @@ -2713,68 +2741,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -2935,95 +2964,90 @@ pytzdata = ">=2020.1" [[package]] name = "pillow" -version = "10.4.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, - {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, - {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, - {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, - {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, - {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, - {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, - {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, - {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, - {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, - {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, - {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, - {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, - {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, - {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, - {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, - {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, - {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, - {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, - {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -3326,13 +3350,13 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyparsing" -version = "3.1.4" +version = "3.2.0" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.9" files = [ - {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, - {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, + {file = "pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84"}, + {file = "pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c"}, ] [package.extras] @@ -3751,13 +3775,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "rich" -version = "13.9.2" +version = "13.9.3" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" optional = false python-versions = ">=3.8.0" files = [ - {file = "rich-13.9.2-py3-none-any.whl", hash = "sha256:8c82a3d3f8dcfe9e734771313e606b39d8247bb6b826e196f4914b333b743cf1"}, - {file = "rich-13.9.2.tar.gz", hash = "sha256:51a2c62057461aaf7152b4d611168f93a9fc73068f8ded2790f29fe2b5366d0c"}, + {file = "rich-13.9.3-py3-none-any.whl", hash = "sha256:9836f5096eb2172c9e77df411c1b009bace4193d6a481d534fea75ebba758283"}, + {file = "rich-13.9.3.tar.gz", hash = "sha256:bc1e01b899537598cf02579d2b9f4a415104d3fc439313a7a2c165d76557a08e"}, ] [package.dependencies] @@ -3902,23 +3926,23 @@ test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "po [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "shellingham" @@ -3955,60 +3979,68 @@ files = [ [[package]] name = "sqlalchemy" -version = "2.0.35" +version = "2.0.36" description = "Database Abstraction Library" optional = false python-versions = ">=3.7" files = [ - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:67219632be22f14750f0d1c70e62f204ba69d28f62fd6432ba05ab295853de9b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4668bd8faf7e5b71c0319407b608f278f279668f358857dbfd10ef1954ac9f90"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb8bea573863762bbf45d1e13f87c2d2fd32cee2dbd50d050f83f87429c9e1ea"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f552023710d4b93d8fb29a91fadf97de89c5926c6bd758897875435f2a939f33"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:016b2e665f778f13d3c438651dd4de244214b527a275e0acf1d44c05bc6026a9"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7befc148de64b6060937231cbff8d01ccf0bfd75aa26383ffdf8d82b12ec04ff"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win32.whl", hash = "sha256:22b83aed390e3099584b839b93f80a0f4a95ee7f48270c97c90acd40ee646f0b"}, - {file = "SQLAlchemy-2.0.35-cp310-cp310-win_amd64.whl", hash = "sha256:a29762cd3d116585278ffb2e5b8cc311fb095ea278b96feef28d0b423154858e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e21f66748ab725ade40fa7af8ec8b5019c68ab00b929f6643e1b1af461eddb60"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8a6219108a15fc6d24de499d0d515c7235c617b2540d97116b663dade1a54d62"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:042622a5306c23b972192283f4e22372da3b8ddf5f7aac1cc5d9c9b222ab3ff6"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:627dee0c280eea91aed87b20a1f849e9ae2fe719d52cbf847c0e0ea34464b3f7"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4fdcd72a789c1c31ed242fd8c1bcd9ea186a98ee8e5408a50e610edfef980d71"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:89b64cd8898a3a6f642db4eb7b26d1b28a497d4022eccd7717ca066823e9fb01"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win32.whl", hash = "sha256:6a93c5a0dfe8d34951e8a6f499a9479ffb9258123551fa007fc708ae2ac2bc5e"}, - {file = "SQLAlchemy-2.0.35-cp311-cp311-win_amd64.whl", hash = "sha256:c68fe3fcde03920c46697585620135b4ecfdfc1ed23e75cc2c2ae9f8502c10b8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:eb60b026d8ad0c97917cb81d3662d0b39b8ff1335e3fabb24984c6acd0c900a2"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6921ee01caf375363be5e9ae70d08ce7ca9d7e0e8983183080211a062d299468"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cdf1a0dbe5ced887a9b127da4ffd7354e9c1a3b9bb330dce84df6b70ccb3a8d"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93a71c8601e823236ac0e5d087e4f397874a421017b3318fd92c0b14acf2b6db"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e04b622bb8a88f10e439084486f2f6349bf4d50605ac3e445869c7ea5cf0fa8c"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1b56961e2d31389aaadf4906d453859f35302b4eb818d34a26fab72596076bb8"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win32.whl", hash = "sha256:0f9f3f9a3763b9c4deb8c5d09c4cc52ffe49f9876af41cc1b2ad0138878453cf"}, - {file = "SQLAlchemy-2.0.35-cp312-cp312-win_amd64.whl", hash = "sha256:25b0f63e7fcc2a6290cb5f7f5b4fc4047843504983a28856ce9b35d8f7de03cc"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f021d334f2ca692523aaf7bbf7592ceff70c8594fad853416a81d66b35e3abf9"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05c3f58cf91683102f2f0265c0db3bd3892e9eedabe059720492dbaa4f922da1"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:032d979ce77a6c2432653322ba4cbeabf5a6837f704d16fa38b5a05d8e21fa00"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:2e795c2f7d7249b75bb5f479b432a51b59041580d20599d4e112b5f2046437a3"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:cc32b2990fc34380ec2f6195f33a76b6cdaa9eecf09f0c9404b74fc120aef36f"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win32.whl", hash = "sha256:9509c4123491d0e63fb5e16199e09f8e262066e58903e84615c301dde8fa2e87"}, - {file = "SQLAlchemy-2.0.35-cp37-cp37m-win_amd64.whl", hash = "sha256:3655af10ebcc0f1e4e06c5900bb33e080d6a1fa4228f502121f28a3b1753cde5"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4c31943b61ed8fdd63dfd12ccc919f2bf95eefca133767db6fbbd15da62078ec"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a62dd5d7cc8626a3634208df458c5fe4f21200d96a74d122c83bc2015b333bc1"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0630774b0977804fba4b6bbea6852ab56c14965a2b0c7fc7282c5f7d90a1ae72"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d625eddf7efeba2abfd9c014a22c0f6b3796e0ffb48f5d5ab106568ef01ff5a"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ada603db10bb865bbe591939de854faf2c60f43c9b763e90f653224138f910d9"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c41411e192f8d3ea39ea70e0fae48762cd11a2244e03751a98bd3c0ca9a4e936"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win32.whl", hash = "sha256:d299797d75cd747e7797b1b41817111406b8b10a4f88b6e8fe5b5e59598b43b0"}, - {file = "SQLAlchemy-2.0.35-cp38-cp38-win_amd64.whl", hash = "sha256:0375a141e1c0878103eb3d719eb6d5aa444b490c96f3fedab8471c7f6ffe70ee"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ccae5de2a0140d8be6838c331604f91d6fafd0735dbdcee1ac78fc8fbaba76b4"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2a275a806f73e849e1c309ac11108ea1a14cd7058577aba962cd7190e27c9e3c"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:732e026240cdd1c1b2e3ac515c7a23820430ed94292ce33806a95869c46bd139"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890da8cd1941fa3dab28c5bac3b9da8502e7e366f895b3b8e500896f12f94d11"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c0d8326269dbf944b9201911b0d9f3dc524d64779a07518199a58384c3d37a44"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b76d63495b0508ab9fc23f8152bac63205d2a704cd009a2b0722f4c8e0cba8e0"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win32.whl", hash = "sha256:69683e02e8a9de37f17985905a5eca18ad651bf592314b4d3d799029797d0eb3"}, - {file = "SQLAlchemy-2.0.35-cp39-cp39-win_amd64.whl", hash = "sha256:aee110e4ef3c528f3abbc3c2018c121e708938adeeff9006428dd7c8555e9b3f"}, - {file = "SQLAlchemy-2.0.35-py3-none-any.whl", hash = "sha256:2ab3f0336c0387662ce6221ad30ab3a5e6499aab01b9790879b6578fd9b8faa1"}, - {file = "sqlalchemy-2.0.35.tar.gz", hash = "sha256:e11d7ea4d24f0a262bccf9a7cd6284c976c5369dac21db237cff59586045ab9f"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:59b8f3adb3971929a3e660337f5dacc5942c2cdb760afcabb2614ffbda9f9f72"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37350015056a553e442ff672c2d20e6f4b6d0b2495691fa239d8aa18bb3bc908"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8318f4776c85abc3f40ab185e388bee7a6ea99e7fa3a30686580b209eaa35c08"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c245b1fbade9c35e5bd3b64270ab49ce990369018289ecfde3f9c318411aaa07"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69f93723edbca7342624d09f6704e7126b152eaed3cdbb634cb657a54332a3c5"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f9511d8dd4a6e9271d07d150fb2f81874a3c8c95e11ff9af3a2dfc35fe42ee44"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win32.whl", hash = "sha256:c3f3631693003d8e585d4200730616b78fafd5a01ef8b698f6967da5c605b3fa"}, + {file = "SQLAlchemy-2.0.36-cp310-cp310-win_amd64.whl", hash = "sha256:a86bfab2ef46d63300c0f06936bd6e6c0105faa11d509083ba8f2f9d237fb5b5"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fd3a55deef00f689ce931d4d1b23fa9f04c880a48ee97af488fd215cf24e2a6c"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4f5e9cd989b45b73bd359f693b935364f7e1f79486e29015813c338450aa5a71"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0ddd9db6e59c44875211bc4c7953a9f6638b937b0a88ae6d09eb46cced54eff"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2519f3a5d0517fc159afab1015e54bb81b4406c278749779be57a569d8d1bb0d"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59b1ee96617135f6e1d6f275bbe988f419c5178016f3d41d3c0abb0c819f75bb"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:39769a115f730d683b0eb7b694db9789267bcd027326cccc3125e862eb03bfd8"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win32.whl", hash = "sha256:66bffbad8d6271bb1cc2f9a4ea4f86f80fe5e2e3e501a5ae2a3dc6a76e604e6f"}, + {file = "SQLAlchemy-2.0.36-cp311-cp311-win_amd64.whl", hash = "sha256:23623166bfefe1487d81b698c423f8678e80df8b54614c2bf4b4cfcd7c711959"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f7b64e6ec3f02c35647be6b4851008b26cff592a95ecb13b6788a54ef80bbdd4"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:46331b00096a6db1fdc052d55b101dbbfc99155a548e20a0e4a8e5e4d1362855"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdf3386a801ea5aba17c6410dd1dc8d39cf454ca2565541b5ac42a84e1e28f53"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac9dfa18ff2a67b09b372d5db8743c27966abf0e5344c555d86cc7199f7ad83a"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:90812a8933df713fdf748b355527e3af257a11e415b613dd794512461eb8a686"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1bc330d9d29c7f06f003ab10e1eaced295e87940405afe1b110f2eb93a233588"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win32.whl", hash = "sha256:79d2e78abc26d871875b419e1fd3c0bca31a1cb0043277d0d850014599626c2e"}, + {file = "SQLAlchemy-2.0.36-cp312-cp312-win_amd64.whl", hash = "sha256:b544ad1935a8541d177cb402948b94e871067656b3a0b9e91dbec136b06a2ff5"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b5cc79df7f4bc3d11e4b542596c03826063092611e481fcf1c9dfee3c94355ef"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3c01117dd36800f2ecaa238c65365b7b16497adc1522bf84906e5710ee9ba0e8"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bc633f4ee4b4c46e7adcb3a9b5ec083bf1d9a97c1d3854b92749d935de40b9b"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e46ed38affdfc95d2c958de328d037d87801cfcbea6d421000859e9789e61c2"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b2985c0b06e989c043f1dc09d4fe89e1616aadd35392aea2844f0458a989eacf"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a121d62ebe7d26fec9155f83f8be5189ef1405f5973ea4874a26fab9f1e262c"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win32.whl", hash = "sha256:0572f4bd6f94752167adfd7c1bed84f4b240ee6203a95e05d1e208d488d0d436"}, + {file = "SQLAlchemy-2.0.36-cp313-cp313-win_amd64.whl", hash = "sha256:8c78ac40bde930c60e0f78b3cd184c580f89456dd87fc08f9e3ee3ce8765ce88"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:be9812b766cad94a25bc63bec11f88c4ad3629a0cec1cd5d4ba48dc23860486b"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aae840ebbd6cdd41af1c14590e5741665e5272d2fee999306673a1bb1fdb4d"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4557e1f11c5f653ebfdd924f3f9d5ebfc718283b0b9beebaa5dd6b77ec290971"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07b441f7d03b9a66299ce7ccf3ef2900abc81c0db434f42a5694a37bd73870f2"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:28120ef39c92c2dd60f2721af9328479516844c6b550b077ca450c7d7dc68575"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win32.whl", hash = "sha256:b81ee3d84803fd42d0b154cb6892ae57ea6b7c55d8359a02379965706c7efe6c"}, + {file = "SQLAlchemy-2.0.36-cp37-cp37m-win_amd64.whl", hash = "sha256:f942a799516184c855e1a32fbc7b29d7e571b52612647866d4ec1c3242578fcb"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3d6718667da04294d7df1670d70eeddd414f313738d20a6f1d1f379e3139a545"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:72c28b84b174ce8af8504ca28ae9347d317f9dba3999e5981a3cd441f3712e24"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b11d0cfdd2b095e7b0686cf5fabeb9c67fae5b06d265d8180715b8cfa86522e3"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e32092c47011d113dc01ab3e1d3ce9f006a47223b18422c5c0d150af13a00687"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6a440293d802d3011028e14e4226da1434b373cbaf4a4bbb63f845761a708346"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c54a1e53a0c308a8e8a7dffb59097bff7facda27c70c286f005327f21b2bd6b1"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win32.whl", hash = "sha256:1e0d612a17581b6616ff03c8e3d5eff7452f34655c901f75d62bd86449d9750e"}, + {file = "SQLAlchemy-2.0.36-cp38-cp38-win_amd64.whl", hash = "sha256:8958b10490125124463095bbdadda5aa22ec799f91958e410438ad6c97a7b793"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc022184d3e5cacc9579e41805a681187650e170eb2fd70e28b86192a479dcaa"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b817d41d692bf286abc181f8af476c4fbef3fd05e798777492618378448ee689"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4e46a888b54be23d03a89be510f24a7652fe6ff660787b96cd0e57a4ebcb46d"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4ae3005ed83f5967f961fd091f2f8c5329161f69ce8480aa8168b2d7fe37f06"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:03e08af7a5f9386a43919eda9de33ffda16b44eb11f3b313e6822243770e9763"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3dbb986bad3ed5ceaf090200eba750b5245150bd97d3e67343a3cfed06feecf7"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win32.whl", hash = "sha256:9fe53b404f24789b5ea9003fc25b9a3988feddebd7e7b369c8fac27ad6f52f28"}, + {file = "SQLAlchemy-2.0.36-cp39-cp39-win_amd64.whl", hash = "sha256:af148a33ff0349f53512a049c6406923e4e02bf2f26c5fb285f143faf4f0e46a"}, + {file = "SQLAlchemy-2.0.36-py3-none-any.whl", hash = "sha256:fddbe92b4760c6f5d48162aef14824add991aeda8ddadb3c31d56eb15ca69f8e"}, + {file = "sqlalchemy-2.0.36.tar.gz", hash = "sha256:7f2767680b6d2398aea7082e45a774b2b0767b5c8d8ffb9c8b683088ea9b29c5"}, ] [package.dependencies] @@ -4021,7 +4053,7 @@ aioodbc = ["aioodbc", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5,!=1.1.10)"] mssql = ["pyodbc"] mssql-pymssql = ["pymssql"] mssql-pyodbc = ["pyodbc"] @@ -4042,13 +4074,13 @@ sqlcipher = ["sqlcipher3_binary"] [[package]] name = "starlette" -version = "0.39.2" +version = "0.41.2" description = "The little ASGI library that shines." optional = false python-versions = ">=3.8" files = [ - {file = "starlette-0.39.2-py3-none-any.whl", hash = "sha256:134dd6deb655a9775991d352312d53f1879775e5cc8a481f966e83416a2c3f71"}, - {file = "starlette-0.39.2.tar.gz", hash = "sha256:caaa3b87ef8518ef913dac4f073dea44e85f73343ad2bdc17941931835b2a26a"}, + {file = "starlette-0.41.2-py3-none-any.whl", hash = "sha256:fbc189474b4731cf30fcef52f18a8d070e3f3b46c6a04c97579e85e6ffca942d"}, + {file = "starlette-0.41.2.tar.gz", hash = "sha256:9834fd799d1a87fd346deb76158668cfa0b0d56f85caefe8268e2d97c3468b62"}, ] [package.dependencies] @@ -4276,13 +4308,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] @@ -4392,13 +4424,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "uvicorn" -version = "0.31.1" +version = "0.32.0" description = "The lightning-fast ASGI server." optional = false python-versions = ">=3.8" files = [ - {file = "uvicorn-0.31.1-py3-none-any.whl", hash = "sha256:adc42d9cac80cf3e51af97c1851648066841e7cfb6993a4ca8de29ac1548ed41"}, - {file = "uvicorn-0.31.1.tar.gz", hash = "sha256:f5167919867b161b7bcaf32646c6a94cdbd4c3aa2eb5c17d36bb9aa5cfd8c493"}, + {file = "uvicorn-0.32.0-py3-none-any.whl", hash = "sha256:60b8f3a5ac027dcd31448f411ced12b5ef452c646f76f02f8cc3f25d8d26fd82"}, + {file = "uvicorn-0.32.0.tar.gz", hash = "sha256:f78b36b143c16f54ccdb8190d0a26b5f1901fe5a3c777e1ab29f26391af8551e"}, ] [package.dependencies] @@ -4418,47 +4450,54 @@ standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", [[package]] name = "uvloop" -version = "0.20.0" +version = "0.21.0" description = "Fast implementation of asyncio event loop on top of libuv" optional = false python-versions = ">=3.8.0" files = [ - {file = "uvloop-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:9ebafa0b96c62881d5cafa02d9da2e44c23f9f0cd829f3a32a6aff771449c996"}, - {file = "uvloop-0.20.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:35968fc697b0527a06e134999eef859b4034b37aebca537daeb598b9d45a137b"}, - {file = "uvloop-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b16696f10e59d7580979b420eedf6650010a4a9c3bd8113f24a103dfdb770b10"}, - {file = "uvloop-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b04d96188d365151d1af41fa2d23257b674e7ead68cfd61c725a422764062ae"}, - {file = "uvloop-0.20.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:94707205efbe809dfa3a0d09c08bef1352f5d3d6612a506f10a319933757c006"}, - {file = "uvloop-0.20.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:89e8d33bb88d7263f74dc57d69f0063e06b5a5ce50bb9a6b32f5fcbe655f9e73"}, - {file = "uvloop-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e50289c101495e0d1bb0bfcb4a60adde56e32f4449a67216a1ab2750aa84f037"}, - {file = "uvloop-0.20.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e237f9c1e8a00e7d9ddaa288e535dc337a39bcbf679f290aee9d26df9e72bce9"}, - {file = "uvloop-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:746242cd703dc2b37f9d8b9f173749c15e9a918ddb021575a0205ec29a38d31e"}, - {file = "uvloop-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82edbfd3df39fb3d108fc079ebc461330f7c2e33dbd002d146bf7c445ba6e756"}, - {file = "uvloop-0.20.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:80dc1b139516be2077b3e57ce1cb65bfed09149e1d175e0478e7a987863b68f0"}, - {file = "uvloop-0.20.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4f44af67bf39af25db4c1ac27e82e9665717f9c26af2369c404be865c8818dcf"}, - {file = "uvloop-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4b75f2950ddb6feed85336412b9a0c310a2edbcf4cf931aa5cfe29034829676d"}, - {file = "uvloop-0.20.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:77fbc69c287596880ecec2d4c7a62346bef08b6209749bf6ce8c22bbaca0239e"}, - {file = "uvloop-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6462c95f48e2d8d4c993a2950cd3d31ab061864d1c226bbf0ee2f1a8f36674b9"}, - {file = "uvloop-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:649c33034979273fa71aa25d0fe120ad1777c551d8c4cd2c0c9851d88fcb13ab"}, - {file = "uvloop-0.20.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3a609780e942d43a275a617c0839d85f95c334bad29c4c0918252085113285b5"}, - {file = "uvloop-0.20.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:aea15c78e0d9ad6555ed201344ae36db5c63d428818b4b2a42842b3870127c00"}, - {file = "uvloop-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0e94b221295b5e69de57a1bd4aeb0b3a29f61be6e1b478bb8a69a73377db7ba"}, - {file = "uvloop-0.20.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fee6044b64c965c425b65a4e17719953b96e065c5b7e09b599ff332bb2744bdf"}, - {file = "uvloop-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:265a99a2ff41a0fd56c19c3838b29bf54d1d177964c300dad388b27e84fd7847"}, - {file = "uvloop-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b10c2956efcecb981bf9cfb8184d27d5d64b9033f917115a960b83f11bfa0d6b"}, - {file = "uvloop-0.20.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e7d61fe8e8d9335fac1bf8d5d82820b4808dd7a43020c149b63a1ada953d48a6"}, - {file = "uvloop-0.20.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2beee18efd33fa6fdb0976e18475a4042cd31c7433c866e8a09ab604c7c22ff2"}, - {file = "uvloop-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d8c36fdf3e02cec92aed2d44f63565ad1522a499c654f07935c8f9d04db69e95"}, - {file = "uvloop-0.20.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0fac7be202596c7126146660725157d4813aa29a4cc990fe51346f75ff8fde7"}, - {file = "uvloop-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d0fba61846f294bce41eb44d60d58136090ea2b5b99efd21cbdf4e21927c56a"}, - {file = "uvloop-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95720bae002ac357202e0d866128eb1ac82545bcf0b549b9abe91b5178d9b541"}, - {file = "uvloop-0.20.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:36c530d8fa03bfa7085af54a48f2ca16ab74df3ec7108a46ba82fd8b411a2315"}, - {file = "uvloop-0.20.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e97152983442b499d7a71e44f29baa75b3b02e65d9c44ba53b10338e98dedb66"}, - {file = "uvloop-0.20.0.tar.gz", hash = "sha256:4603ca714a754fc8d9b197e325db25b2ea045385e8a3ad05d3463de725fdf469"}, + {file = "uvloop-0.21.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ec7e6b09a6fdded42403182ab6b832b71f4edaf7f37a9a0e371a01db5f0cb45f"}, + {file = "uvloop-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:196274f2adb9689a289ad7d65700d37df0c0930fd8e4e743fa4834e850d7719d"}, + {file = "uvloop-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f38b2e090258d051d68a5b14d1da7203a3c3677321cf32a95a6f4db4dd8b6f26"}, + {file = "uvloop-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87c43e0f13022b998eb9b973b5e97200c8b90823454d4bc06ab33829e09fb9bb"}, + {file = "uvloop-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:10d66943def5fcb6e7b37310eb6b5639fd2ccbc38df1177262b0640c3ca68c1f"}, + {file = "uvloop-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:67dd654b8ca23aed0a8e99010b4c34aca62f4b7fce88f39d452ed7622c94845c"}, + {file = "uvloop-0.21.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c0f3fa6200b3108919f8bdabb9a7f87f20e7097ea3c543754cabc7d717d95cf8"}, + {file = "uvloop-0.21.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0878c2640cf341b269b7e128b1a5fed890adc4455513ca710d77d5e93aa6d6a0"}, + {file = "uvloop-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9fb766bb57b7388745d8bcc53a359b116b8a04c83a2288069809d2b3466c37e"}, + {file = "uvloop-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a375441696e2eda1c43c44ccb66e04d61ceeffcd76e4929e527b7fa401b90fb"}, + {file = "uvloop-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:baa0e6291d91649c6ba4ed4b2f982f9fa165b5bbd50a9e203c416a2797bab3c6"}, + {file = "uvloop-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4509360fcc4c3bd2c70d87573ad472de40c13387f5fda8cb58350a1d7475e58d"}, + {file = "uvloop-0.21.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:359ec2c888397b9e592a889c4d72ba3d6befba8b2bb01743f72fffbde663b59c"}, + {file = "uvloop-0.21.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f7089d2dc73179ce5ac255bdf37c236a9f914b264825fdaacaded6990a7fb4c2"}, + {file = "uvloop-0.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:baa4dcdbd9ae0a372f2167a207cd98c9f9a1ea1188a8a526431eef2f8116cc8d"}, + {file = "uvloop-0.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86975dca1c773a2c9864f4c52c5a55631038e387b47eaf56210f873887b6c8dc"}, + {file = "uvloop-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:461d9ae6660fbbafedd07559c6a2e57cd553b34b0065b6550685f6653a98c1cb"}, + {file = "uvloop-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:183aef7c8730e54c9a3ee3227464daed66e37ba13040bb3f350bc2ddc040f22f"}, + {file = "uvloop-0.21.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:bfd55dfcc2a512316e65f16e503e9e450cab148ef11df4e4e679b5e8253a5281"}, + {file = "uvloop-0.21.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:787ae31ad8a2856fc4e7c095341cccc7209bd657d0e71ad0dc2ea83c4a6fa8af"}, + {file = "uvloop-0.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ee4d4ef48036ff6e5cfffb09dd192c7a5027153948d85b8da7ff705065bacc6"}, + {file = "uvloop-0.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3df876acd7ec037a3d005b3ab85a7e4110422e4d9c1571d4fc89b0fc41b6816"}, + {file = "uvloop-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd53ecc9a0f3d87ab847503c2e1552b690362e005ab54e8a48ba97da3924c0dc"}, + {file = "uvloop-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a5c39f217ab3c663dc699c04cbd50c13813e31d917642d459fdcec07555cc553"}, + {file = "uvloop-0.21.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:17df489689befc72c39a08359efac29bbee8eee5209650d4b9f34df73d22e414"}, + {file = "uvloop-0.21.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bc09f0ff191e61c2d592a752423c767b4ebb2986daa9ed62908e2b1b9a9ae206"}, + {file = "uvloop-0.21.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0ce1b49560b1d2d8a2977e3ba4afb2414fb46b86a1b64056bc4ab929efdafbe"}, + {file = "uvloop-0.21.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e678ad6fe52af2c58d2ae3c73dc85524ba8abe637f134bf3564ed07f555c5e79"}, + {file = "uvloop-0.21.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:460def4412e473896ef179a1671b40c039c7012184b627898eea5072ef6f017a"}, + {file = "uvloop-0.21.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:10da8046cc4a8f12c91a1c39d1dd1585c41162a15caaef165c2174db9ef18bdc"}, + {file = "uvloop-0.21.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c097078b8031190c934ed0ebfee8cc5f9ba9642e6eb88322b9958b649750f72b"}, + {file = "uvloop-0.21.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:46923b0b5ee7fc0020bef24afe7836cb068f5050ca04caf6b487c513dc1a20b2"}, + {file = "uvloop-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53e420a3afe22cdcf2a0f4846e377d16e718bc70103d7088a4f7623567ba5fb0"}, + {file = "uvloop-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88cb67cdbc0e483da00af0b2c3cdad4b7c61ceb1ee0f33fe00e09c81e3a6cb75"}, + {file = "uvloop-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:221f4f2a1f46032b403bf3be628011caf75428ee3cc204a22addf96f586b19fd"}, + {file = "uvloop-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2d1f581393673ce119355d56da84fe1dd9d2bb8b3d13ce792524e1607139feff"}, + {file = "uvloop-0.21.0.tar.gz", hash = "sha256:3bf12b0fda68447806a7ad847bfa591613177275d35b6724b1ee573faa3704e3"}, ] [package.extras] +dev = ["Cython (>=3.0,<4.0)", "setuptools (>=60)"] docs = ["Sphinx (>=4.1.2,<4.2.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] -test = ["Cython (>=0.29.36,<0.30.0)", "aiohttp (==3.9.0b0)", "aiohttp (>=3.8.1)", "flake8 (>=5.0,<6.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=23.0.0,<23.1.0)", "pycodestyle (>=2.9.0,<2.10.0)"] +test = ["aiohttp (>=3.10.5)", "flake8 (>=5.0,<6.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=23.0.0,<23.1.0)", "pycodestyle (>=2.9.0,<2.10.0)"] [[package]] name = "watchfiles" @@ -4761,109 +4800,93 @@ files = [ [[package]] name = "yarl" -version = "1.15.0" +version = "1.17.0" description = "Yet another URL library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61"}, - {file = "yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29"}, - {file = "yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1"}, - {file = "yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19"}, - {file = "yarl-1.15.0-cp310-cp310-win32.whl", hash = "sha256:4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9"}, - {file = "yarl-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b"}, - {file = "yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6"}, - {file = "yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf"}, - {file = "yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1"}, - {file = "yarl-1.15.0-cp311-cp311-win32.whl", hash = "sha256:a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb"}, - {file = "yarl-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b"}, - {file = "yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a"}, - {file = "yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15"}, - {file = "yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d"}, - {file = "yarl-1.15.0-cp312-cp312-win32.whl", hash = "sha256:e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4"}, - {file = "yarl-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f"}, - {file = "yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0"}, - {file = "yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5"}, - {file = "yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e"}, - {file = "yarl-1.15.0-cp313-cp313-win32.whl", hash = "sha256:eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53"}, - {file = "yarl-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60"}, - {file = "yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631"}, - {file = "yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f"}, - {file = "yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738"}, - {file = "yarl-1.15.0-cp38-cp38-win32.whl", hash = "sha256:d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95"}, - {file = "yarl-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496"}, - {file = "yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7"}, - {file = "yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234"}, - {file = "yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9"}, - {file = "yarl-1.15.0-cp39-cp39-win32.whl", hash = "sha256:a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb"}, - {file = "yarl-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0"}, - {file = "yarl-1.15.0-py3-none-any.whl", hash = "sha256:1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5"}, - {file = "yarl-1.15.0.tar.gz", hash = "sha256:efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, + {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, + {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, + {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, + {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, + {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, + {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, + {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, + {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, + {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, + {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, + {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, + {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, + {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, + {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, + {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, + {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, + {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, + {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, + {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, + {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, + {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, + {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, + {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, + {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, + {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, + {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, + {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-chroma/pyproject.toml b/airbyte-integrations/connectors/destination-chroma/pyproject.toml index 91e6c49fff86..721fd47b43cb 100644 --- a/airbyte-integrations/connectors/destination-chroma/pyproject.toml +++ b/airbyte-integrations/connectors/destination-chroma/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-chroma" -version = "0.0.32" +version = "0.0.33" description = "Airbyte destination implementation for Chroma." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/chroma.md b/docs/integrations/destinations/chroma.md index 9b4791360587..020c33a3f289 100644 --- a/docs/integrations/destinations/chroma.md +++ b/docs/integrations/destinations/chroma.md @@ -77,6 +77,7 @@ You should now have all the requirements needed to configure Chroma as a destina | Version | Date | Pull Request | Subject | |:--------|:-----------| :-------------------------------------------------------- |:-------------------------------------------------------------| +| 0.0.33 | 2024-10-29 | [47053](https://github.com/airbytehq/airbyte/pull/47053) | Update dependencies | | 0.0.32 | 2024-10-12 | [46434](https://github.com/airbytehq/airbyte/pull/46434) | Update dependencies | | 0.0.31 | 2024-09-28 | [46192](https://github.com/airbytehq/airbyte/pull/46192) | Update dependencies | | 0.0.30 | 2024-09-21 | [45553](https://github.com/airbytehq/airbyte/pull/45553) | Update dependencies | From 0e096db52e72d61ac9f2c442ac096ebe5670a693 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 29 Oct 2024 22:12:10 +0200 Subject: [PATCH 471/808] =?UTF-8?q?=F0=9F=90=99=20source-hubspot:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-10-29]=20(#47028)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-hubspot/metadata.yaml | 2 +- .../connectors/source-hubspot/poetry.lock | 267 +++++++++--------- .../connectors/source-hubspot/pyproject.toml | 2 +- docs/integrations/sources/hubspot.md | 1 + 4 files changed, 137 insertions(+), 135 deletions(-) diff --git a/airbyte-integrations/connectors/source-hubspot/metadata.yaml b/airbyte-integrations/connectors/source-hubspot/metadata.yaml index 3709b404cda9..e82812a6ce59 100644 --- a/airbyte-integrations/connectors/source-hubspot/metadata.yaml +++ b/airbyte-integrations/connectors/source-hubspot/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 36c891d9-4bd9-43ac-bad2-10e12756272c - dockerImageTag: 4.2.24 + dockerImageTag: 4.2.25 dockerRepository: airbyte/source-hubspot documentationUrl: https://docs.airbyte.com/integrations/sources/hubspot erdUrl: https://dbdocs.io/airbyteio/source-hubspot?view=relationships diff --git a/airbyte-integrations/connectors/source-hubspot/poetry.lock b/airbyte-integrations/connectors/source-hubspot/poetry.lock index 6313851979fa..848eb250eb78 100644 --- a/airbyte-integrations/connectors/source-hubspot/poetry.lock +++ b/airbyte-integrations/connectors/source-hubspot/poetry.lock @@ -67,13 +67,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -84,7 +84,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -705,13 +705,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -723,72 +723,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -809,68 +809,69 @@ test = ["pytest", "pytest-cov"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1388,23 +1389,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-hubspot/pyproject.toml b/airbyte-integrations/connectors/source-hubspot/pyproject.toml index 7bac3f668600..76073d22a5ce 100644 --- a/airbyte-integrations/connectors/source-hubspot/pyproject.toml +++ b/airbyte-integrations/connectors/source-hubspot/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.2.24" +version = "4.2.25" name = "source-hubspot" description = "Source implementation for HubSpot." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/hubspot.md b/docs/integrations/sources/hubspot.md index 3a34d29132b3..b7c3da361c9b 100644 --- a/docs/integrations/sources/hubspot.md +++ b/docs/integrations/sources/hubspot.md @@ -336,6 +336,7 @@ The connector is restricted by normal HubSpot [rate limitations](https://legacyd | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 4.2.25 | 2024-10-29 | [47028](https://github.com/airbytehq/airbyte/pull/47028) | Update dependencies | | 4.2.24 | 2024-10-12 | [46827](https://github.com/airbytehq/airbyte/pull/46827) | Update dependencies | | 4.2.23 | 2024-10-05 | [46494](https://github.com/airbytehq/airbyte/pull/46494) | Update dependencies | | 4.2.22 | 2024-09-28 | [46160](https://github.com/airbytehq/airbyte/pull/46160) | Update dependencies | From 226962832ca2911f1bba3ebe82b25d55dd950c64 Mon Sep 17 00:00:00 2001 From: Krishnan <68746496+gemsteam@users.noreply.github.com> Date: Wed, 30 Oct 2024 01:42:22 +0530 Subject: [PATCH 472/808] source-clarif-ai contribution from gemsteam (#47135) Co-authored-by: Marcos Marx --- .../connectors/source-clarif-ai/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-clarif-ai/icon.svg | 4 + .../connectors/source-clarif-ai/manifest.yaml | 2772 +++++++++++++++++ .../connectors/source-clarif-ai/metadata.yaml | 35 + docs/integrations/sources/clarif-ai.md | 36 + 6 files changed, 2897 insertions(+) create mode 100644 airbyte-integrations/connectors/source-clarif-ai/README.md create mode 100644 airbyte-integrations/connectors/source-clarif-ai/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-clarif-ai/icon.svg create mode 100644 airbyte-integrations/connectors/source-clarif-ai/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-clarif-ai/metadata.yaml create mode 100644 docs/integrations/sources/clarif-ai.md diff --git a/airbyte-integrations/connectors/source-clarif-ai/README.md b/airbyte-integrations/connectors/source-clarif-ai/README.md new file mode 100644 index 000000000000..82f52a15a007 --- /dev/null +++ b/airbyte-integrations/connectors/source-clarif-ai/README.md @@ -0,0 +1,33 @@ +# Clarif-ai +This directory contains the manifest-only connector for `source-clarif-ai`. + +API Documentation: https://docs.clarifai.com/api-guide/api-overview/helpful-api-resources/using-postman-with-clarifai-apis + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-clarif-ai:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-clarif-ai build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-clarif-ai test +``` + diff --git a/airbyte-integrations/connectors/source-clarif-ai/acceptance-test-config.yml b/airbyte-integrations/connectors/source-clarif-ai/acceptance-test-config.yml new file mode 100644 index 000000000000..5ad0d4f14b7c --- /dev/null +++ b/airbyte-integrations/connectors/source-clarif-ai/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-clarif-ai:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-clarif-ai/icon.svg b/airbyte-integrations/connectors/source-clarif-ai/icon.svg new file mode 100644 index 000000000000..224e350aa5a5 --- /dev/null +++ b/airbyte-integrations/connectors/source-clarif-ai/icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/airbyte-integrations/connectors/source-clarif-ai/manifest.yaml b/airbyte-integrations/connectors/source-clarif-ai/manifest.yaml new file mode 100644 index 000000000000..0f8abe8c2c82 --- /dev/null +++ b/airbyte-integrations/connectors/source-clarif-ai/manifest.yaml @@ -0,0 +1,2772 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + API Documentation: + https://docs.clarifai.com/api-guide/api-overview/helpful-api-resources/using-postman-with-clarifai-apis + +check: + type: CheckStream + stream_names: + - applications + +definitions: + streams: + applications: + type: DeclarativeStream + name: applications + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v2/users/{{config.user_id}}/apps + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 3 + backoff_strategies: + - type: ExponentialBackoffStrategy + factor: 2 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - apps + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20 + start_from_page: 1 + inject_on_first_request: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: modified_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/applications" + datasets: + type: DeclarativeStream + name: datasets + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + v2/users/{{config.user_id}}/apps/{{stream_partition.app_id}}/datasets + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 3 + backoff_strategies: + - type: ExponentialBackoffStrategy + factor: 2 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - datasets + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: app_id + stream: + $ref: "#/definitions/streams/applications" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: modified_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/datasets" + models: + type: DeclarativeStream + name: models + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v2/users/{{config.user_id}}/apps/{{stream_partition.app_id}}/models + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 3 + backoff_strategies: + - type: ExponentialBackoffStrategy + factor: 2 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - models + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: app_id + stream: + $ref: "#/definitions/streams/applications" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: modified_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/models" + model_versions: + type: DeclarativeStream + name: model_versions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + v2/users/{{config.user_id}}/apps/{{stream_partition.app_id}}/models/{{stream_partition.model_id}}/versions + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 3 + backoff_strategies: + - type: ExponentialBackoffStrategy + factor: 2 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - model_versions + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: app_id + stream: + $ref: "#/definitions/streams/applications" + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: model_id + stream: + $ref: "#/definitions/streams/models" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/model_versions" + worklows: + type: DeclarativeStream + name: worklows + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + v2/users/{{config.user_id}}/apps/{{stream_partition.app_id}}/workflows + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 3 + backoff_strategies: + - type: ExponentialBackoffStrategy + factor: 2 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - workflows + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: app_id + stream: + $ref: "#/definitions/streams/applications" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/worklows" + app_inputs: + type: DeclarativeStream + name: app_inputs + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v2/users/{{config.user_id}}/apps/{{stream_partition.app_id}}/inputs + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 3 + backoff_strategies: + - type: ExponentialBackoffStrategy + factor: 2 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - inputs + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: app_id + stream: + $ref: "#/definitions/streams/applications" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/app_inputs" + app_inputs_jobs: + type: DeclarativeStream + name: app_inputs_jobs + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + v2/users/{{config.user_id}}/apps/{{stream_partition.app_id}}/inputs/jobs/add + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 3 + backoff_strategies: + - type: ExponentialBackoffStrategy + factor: 2 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - inputs_add_jobs + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: app_id + stream: + $ref: "#/definitions/streams/applications" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/app_inputs_jobs" + app_concepts: + type: DeclarativeStream + name: app_concepts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + v2/users/{{config.user_id}}/apps/{{stream_partition.app_id}}/concepts + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 3 + backoff_strategies: + - type: ExponentialBackoffStrategy + factor: 2 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - concepts + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: app_id + stream: + $ref: "#/definitions/streams/applications" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/app_concepts" + base_requester: + type: HttpRequester + url_base: https://api.clarifai.com + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/applications" + - $ref: "#/definitions/streams/datasets" + - $ref: "#/definitions/streams/models" + - $ref: "#/definitions/streams/model_versions" + - $ref: "#/definitions/streams/worklows" + - $ref: "#/definitions/streams/app_inputs" + - $ref: "#/definitions/streams/app_inputs_jobs" + - $ref: "#/definitions/streams/app_concepts" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - user_id + - start_date + properties: + api_key: + type: string + title: API Key + airbyte_secret: true + order: 0 + user_id: + type: string + description: User ID found in settings + order: 1 + title: User ID + start_date: + type: string + order: 2 + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + additionalProperties: true + +metadata: + autoImportSchema: + applications: true + datasets: true + models: true + model_versions: true + worklows: true + app_inputs: true + app_inputs_jobs: true + app_concepts: true + testedStreams: + applications: + streamHash: 7e2444a1eb9792a977b9b4d29b3efaad631dbb5b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + datasets: + streamHash: 277102714313efee407ed87ca217b0974557e87a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + models: + streamHash: d04e9cb6340029639dd7b7ea1b10fe211655dfa7 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + model_versions: + streamHash: 3f6242e411f00bf0fe8f21d8c1fadf40b82986fc + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + worklows: + streamHash: 28467564977f3092be217f2c6f96db9bdafc7ee4 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + app_inputs: + streamHash: cf291760c7b92a410463c0408c3a85e32a8c699c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + app_inputs_jobs: + streamHash: a746c75b17c51a1d0f626c14b9af98ae0d390e99 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + app_concepts: + streamHash: b3e2aba813f4f40de4470e38e55320020153ba91 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: {} + +schemas: + applications: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + properties: + app_duplication: + type: + - object + - "null" + properties: + source_app_id: + type: + - string + - "null" + source_user_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + default_language: + type: + - string + - "null" + default_workflow: + type: + - object + - "null" + properties: + app_id: + type: + - string + - "null" + check_consents: + type: + - array + - "null" + created_at: + type: + - string + - "null" + id: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + use_cases: + type: + - array + - "null" + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + default_workflow_id: + type: + - string + - "null" + id: + type: string + image: + type: + - object + - "null" + properties: + hosted: + type: + - object + - "null" + properties: + crossorigin: + type: + - string + - "null" + prefix: + type: + - string + - "null" + sizes: + type: + - array + - "null" + items: + type: + - string + - "null" + suffix: + type: + - string + - "null" + url: + type: + - string + - "null" + is_template: + type: + - boolean + - "null" + modified_at: + type: string + name: + type: + - string + - "null" + notes: + type: + - string + - "null" + sample_ms: + type: + - number + - "null" + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + required: + - id + - modified_at + datasets: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + annotation_filter_config: + type: + - object + - "null" + properties: + annotation_filter: + type: + - object + - "null" + properties: + app_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + user_id: + type: + - string + - "null" + app_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + dataset_id: + type: + - string + - "null" + id: + type: + - string + - "null" + metrics: + type: + - object + - "null" + properties: + /: + type: + - object + - "null" + properties: + bounding_boxes_count: + type: + - string + - "null" + embeddings_count: + type: + - string + - "null" + frames_count: + type: + - string + - "null" + inputs_count: + type: + - string + - "null" + inputs_with_geo_count: + type: + - string + - "null" + inputs_with_metadata_count: + type: + - string + - "null" + masks_count: + type: + - string + - "null" + points_count: + type: + - string + - "null" + polygons_count: + type: + - string + - "null" + positive_frame_tags_count: + type: + - string + - "null" + positive_input_tags_count: + type: + - string + - "null" + positive_region_tags_count: + type: + - string + - "null" + regions_count: + type: + - string + - "null" + unlabeled_inputs_count: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + request_origin: + type: + - number + - "null" + status: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + code: + type: + - number + - "null" + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + description: + type: + - string + - "null" + app_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + default_annotation_filter: + type: + - object + - "null" + properties: + app_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + user_id: + type: + - string + - "null" + id: + type: string + modified_at: + type: string + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + required: + - id + - modified_at + models: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + properties: + presetInputs: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + alt: + type: + - string + - "null" + url: + type: + - string + - "null" + app_id: + type: + - string + - "null" + check_consents: + type: + - array + - "null" + items: + type: + - string + - "null" + created_at: + type: + - string + - "null" + creator: + type: + - string + - "null" + display_name: + type: + - string + - "null" + id: + type: string + image: + type: + - object + - "null" + properties: + hosted: + type: + - object + - "null" + properties: + crossorigin: + type: + - string + - "null" + prefix: + type: + - string + - "null" + sizes: + type: + - array + - "null" + items: + type: + - string + - "null" + suffix: + type: + - string + - "null" + url: + type: + - string + - "null" + languages: + type: + - array + - "null" + languages_full: + type: + - array + - "null" + license_type: + type: + - number + - "null" + model_type_id: + type: + - string + - "null" + model_version: + type: + - object + - "null" + properties: + metadata: + type: + - object + - "null" + properties: + asymmetric_search_prompt: + type: + - string + - "null" + active_concept_count: + type: + - number + - "null" + app_id: + type: + - string + - "null" + completed_at: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: + - string + - "null" + import_info: + type: + - object + - "null" + properties: + params: + type: + - object + - "null" + properties: + model_name: + type: + - string + - "null" + pipeline_name: + type: + - string + - "null" + tokenizer_name: + type: + - string + - "null" + toolkit: + type: + - string + - "null" + inference_compute_info: + type: + - object + - "null" + input_info: + type: + - object + - "null" + properties: + base_embed_model: + type: + - object + - "null" + properties: + app_id: + type: + - string + - "null" + check_consents: + type: + - array + - "null" + id: + type: + - string + - "null" + languages: + type: + - array + - "null" + languages_full: + type: + - array + - "null" + model_type_id: + type: + - string + - "null" + model_version: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + toolkits: + type: + - array + - "null" + use_cases: + type: + - array + - "null" + user_id: + type: + - string + - "null" + fields_map: + type: + - object + - "null" + properties: + image: + type: + - string + - "null" + text: + type: + - string + - "null" + params: + type: + - object + - "null" + properties: + text_token_max_count_warning: + type: + - number + - "null" + text_token_warning_limit: + type: + - number + - "null" + license: + type: + - string + - "null" + metrics: + type: + - object + - "null" + properties: + status: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + code: + type: + - number + - "null" + summary: + type: + - object + - "null" + properties: + lopq_metrics: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + brute_force_ndcg: + type: + - number + - "null" + k: + type: + - number + - "null" + kendall_tau_vs_brute_force: + type: + - number + - "null" + lopq_ndcg: + type: + - number + - "null" + most_frequent_code_percent: + type: + - number + - "null" + recall_vs_brute_force: + type: + - number + - "null" + macro_avg_f1_score: + type: + - number + - "null" + macro_avg_precision: + type: + - number + - "null" + macro_avg_recall: + type: + - number + - "null" + macro_avg_roc_auc: + type: + - number + - "null" + macro_std_f1_score: + type: + - number + - "null" + macro_std_roc_auc: + type: + - number + - "null" + top1_accuracy: + type: + - number + - "null" + top5_accuracy: + type: + - number + - "null" + output_info: + type: + - object + - "null" + properties: + fields_map: + type: + - object + - "null" + properties: + "": + type: + - string + - "null" + concepts: + type: + - string + - "null" + embeddings: + type: + - string + - "null" + regions[...].data.concepts,regions[...].region_info.keypoint_locations: + type: + - string + - "null" + regions[...].data.concepts[...].id: + type: + - string + - "null" + regions[...].data.concepts[...].value: + type: + - string + - "null" + regions[...].data.text: + type: + - string + - "null" + regions[...].region_info.bounding_box: + type: + - string + - "null" + regions[...].region_info.mask,regions[...].data.concepts: + type: + - string + - "null" + regions[...].value: + type: + - string + - "null" + text: + type: + - string + - "null" + message: + type: + - string + - "null" + output_config: + type: + - object + - "null" + properties: + concepts_mutually_exclusive: + type: + - boolean + - "null" + max_concepts: + type: + - number + - "null" + min_value: + type: + - number + - "null" + params: + type: + - object + - "null" + properties: + alignment_type: + type: + - string + - "null" + detection_threshold: + type: + - number + - "null" + margin: + type: + - number + - "null" + max_concepts: + type: + - number + - "null" + max_disappeared: + type: + - number + - "null" + max_distance: + type: + - number + - "null" + min_confidence: + type: + - number + - "null" + min_value: + type: + - number + - "null" + min_visible_frames: + type: + - number + - "null" + output_size: + type: + - number + - "null" + select_concepts: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + status: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + code: + type: + - number + - "null" + total_input_count: + type: + - number + - "null" + train_info: + type: + - object + - "null" + properties: + dataset: + type: + - object + - "null" + properties: + version: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + annotation_filter_config: + type: + - object + - "null" + properties: + annotation_filter: + type: + - object + - "null" + properties: + app_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + user_id: + type: + - string + - "null" + app_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + dataset_id: + type: + - string + - "null" + embed_model_version_ids: + type: + - array + - "null" + items: + type: + - string + - "null" + id: + type: + - string + - "null" + metrics: + type: + - object + - "null" + properties: + /: + type: + - object + - "null" + properties: + bounding_boxes_count: + type: + - string + - "null" + embeddings_count: + type: + - string + - "null" + frames_count: + type: + - string + - "null" + inputs_count: + type: + - string + - "null" + inputs_with_geo_count: + type: + - string + - "null" + inputs_with_metadata_count: + type: + - string + - "null" + masks_count: + type: + - string + - "null" + points_count: + type: + - string + - "null" + polygons_count: + type: + - string + - "null" + positive_frame_tags_count: + type: + - string + - "null" + positive_input_tags_count: + type: + - string + - "null" + positive_region_tags_count: + type: + - string + - "null" + regions_count: + type: + - string + - "null" + unlabeled_inputs_count: + type: + - string + - "null" + /INPUT_TYPE:image: + type: + - object + - "null" + properties: + bounding_boxes_count: + type: + - string + - "null" + embeddings_count: + type: + - string + - "null" + frames_count: + type: + - string + - "null" + inputs_count: + type: + - string + - "null" + inputs_with_geo_count: + type: + - string + - "null" + inputs_with_metadata_count: + type: + - string + - "null" + masks_count: + type: + - string + - "null" + points_count: + type: + - string + - "null" + polygons_count: + type: + - string + - "null" + positive_frame_tags_count: + type: + - string + - "null" + positive_input_tags_count: + type: + - string + - "null" + positive_region_tags_count: + type: + - string + - "null" + regions_count: + type: + - string + - "null" + unlabeled_inputs_count: + type: + - string + - "null" + /INPUT_TYPE:text: + type: + - object + - "null" + properties: + bounding_boxes_count: + type: + - string + - "null" + embeddings_count: + type: + - string + - "null" + frames_count: + type: + - string + - "null" + inputs_count: + type: + - string + - "null" + inputs_with_geo_count: + type: + - string + - "null" + inputs_with_metadata_count: + type: + - string + - "null" + masks_count: + type: + - string + - "null" + points_count: + type: + - string + - "null" + polygons_count: + type: + - string + - "null" + positive_frame_tags_count: + type: + - string + - "null" + positive_input_tags_count: + type: + - string + - "null" + positive_region_tags_count: + type: + - string + - "null" + regions_count: + type: + - string + - "null" + unlabeled_inputs_count: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + request_origin: + type: + - number + - "null" + status: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + code: + type: + - number + - "null" + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + properties: + split: + type: + - string + - "null" + app_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + params: + type: + - object + - "null" + properties: + beta: + type: + - number + - "null" + coarse_clusters: + type: + - number + - "null" + dataset_id: + type: + - string + - "null" + dataset_version_id: + type: + - string + - "null" + eval_holdout_fraction: + type: + - number + - "null" + max_num_query_embeddings: + type: + - number + - "null" + max_visited: + type: + - number + - "null" + model_config: + type: + - object + - "null" + properties: + _name_or_path: + type: + - string + - "null" + _num_labels: + type: + - number + - "null" + architectures: + type: + - array + - "null" + items: + type: + - string + - "null" + attention_probs_dropout_prob: + type: + - number + - "null" + directionality: + type: + - string + - "null" + gradient_checkpointing: + type: + - boolean + - "null" + hidden_act: + type: + - string + - "null" + hidden_dropout_prob: + type: + - number + - "null" + hidden_size: + type: + - number + - "null" + id2label: + type: + - object + - "null" + properties: + "0": + type: + - string + - "null" + "1": + type: + - string + - "null" + "2": + type: + - string + - "null" + "3": + type: + - string + - "null" + "4": + type: + - string + - "null" + "5": + type: + - string + - "null" + "6": + type: + - string + - "null" + "7": + type: + - string + - "null" + "8": + type: + - string + - "null" + initializer_range: + type: + - number + - "null" + intermediate_size: + type: + - number + - "null" + label2id: + type: + - object + - "null" + properties: + B-LOC: + type: + - number + - "null" + B-MISC: + type: + - number + - "null" + B-ORG: + type: + - number + - "null" + B-PER: + type: + - number + - "null" + I-LOC: + type: + - number + - "null" + I-MISC: + type: + - number + - "null" + I-ORG: + type: + - number + - "null" + I-PER: + type: + - number + - "null" + LABEL_0: + type: + - number + - "null" + O: + type: + - number + - "null" + layer_norm_eps: + type: + - number + - "null" + max_position_embeddings: + type: + - number + - "null" + model_type: + type: + - string + - "null" + num_attention_heads: + type: + - number + - "null" + num_hidden_layers: + type: + - number + - "null" + pad_token_id: + type: + - number + - "null" + pooler_fc_size: + type: + - number + - "null" + pooler_num_attention_heads: + type: + - number + - "null" + pooler_num_fc_layers: + type: + - number + - "null" + pooler_size_per_head: + type: + - number + - "null" + pooler_type: + type: + - string + - "null" + position_embedding_type: + type: + - string + - "null" + torch_dtype: + type: + - string + - "null" + transformers_version: + type: + - string + - "null" + type_vocab_size: + type: + - number + - "null" + use_cache: + type: + - boolean + - "null" + vocab_size: + type: + - number + - "null" + num_results_per_query: + type: + - array + - "null" + items: + type: + - number + - "null" + query_holdout_fraction: + type: + - number + - "null" + quota: + type: + - number + - "null" + test_split_percent: + type: + - number + - "null" + to_be_indexed_queries_fraction: + type: + - number + - "null" + tokenizer_config: + type: + - object + - "null" + properties: + clean_up_tokenization_spaces: + type: + - boolean + - "null" + cls_token: + type: + - string + - "null" + do_basic_tokenize: + type: + - boolean + - "null" + do_lower_case: + type: + - boolean + - "null" + mask_token: + type: + - string + - "null" + max_len: + type: + - number + - "null" + model_max_length: + type: + - number + - "null" + name_or_path: + type: + - string + - "null" + pad_token: + type: + - string + - "null" + sep_token: + type: + - string + - "null" + tokenize_chinese_chars: + type: + - boolean + - "null" + tokenizer_class: + type: + - string + - "null" + unk_token: + type: + - string + - "null" + train_iters: + type: + - number + - "null" + training_timeout: + type: + - number + - "null" + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + modified_at: + type: string + name: + type: + - string + - "null" + notes: + type: + - string + - "null" + source: + type: + - number + - "null" + task: + type: + - string + - "null" + toolkits: + type: + - array + - "null" + items: + type: + - string + - "null" + use_cases: + type: + - array + - "null" + items: + type: + - string + - "null" + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + workflow_recommended: + type: + - boolean + - "null" + required: + - id + - modified_at + model_versions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + active_concept_count: + type: + - number + - "null" + app_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: string + import_info: + type: + - object + - "null" + input_info: + type: + - object + - "null" + properties: + fields_map: + type: + - object + - "null" + properties: + image: + type: + - string + - "null" + output_info: + type: + - object + - "null" + properties: + fields_map: + type: + - object + - "null" + properties: + concepts: + type: + - string + - "null" + regions[...].data.concepts[...].id: + type: + - string + - "null" + regions[...].data.concepts[...].value: + type: + - string + - "null" + regions[...].region_info.bounding_box: + type: + - string + - "null" + message: + type: + - string + - "null" + output_config: + type: + - object + - "null" + properties: + max_concepts: + type: + - number + - "null" + min_value: + type: + - number + - "null" + params: + type: + - object + - "null" + properties: + detection_threshold: + type: + - number + - "null" + max_concepts: + type: + - number + - "null" + min_value: + type: + - number + - "null" + select_concepts: + type: + - array + - "null" + status: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + code: + type: + - number + - "null" + train_info: + type: + - object + - "null" + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + required: + - id + worklows: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + description: + type: + - string + - "null" + metadata: + type: + - object + - "null" + properties: + presetInputs: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + url: + type: + - string + - "null" + app_id: + type: + - string + - "null" + check_consents: + type: + - array + - "null" + created_at: + type: + - string + - "null" + id: + type: string + image: + type: + - object + - "null" + properties: + hosted: + type: + - object + - "null" + properties: + crossorigin: + type: + - string + - "null" + prefix: + type: + - string + - "null" + sizes: + type: + - array + - "null" + items: + type: + - string + - "null" + suffix: + type: + - string + - "null" + url: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + nodes: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + model: + type: + - object + - "null" + properties: + app_id: + type: + - string + - "null" + check_consents: + type: + - array + - "null" + id: + type: + - string + - "null" + languages: + type: + - array + - "null" + languages_full: + type: + - array + - "null" + model_type_id: + type: + - string + - "null" + model_version: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + toolkits: + type: + - array + - "null" + use_cases: + type: + - array + - "null" + user_id: + type: + - string + - "null" + node_inputs: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + node_id: + type: + - string + - "null" + output_info_override: + type: + - object + - "null" + properties: + params: + type: + - object + - "null" + notes: + type: + - string + - "null" + use_cases: + type: + - array + - "null" + user_id: + type: + - string + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + required: + - id + app_inputs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + concepts: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + app_id: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + value: + type: + - number + - "null" + text: + type: + - object + - "null" + properties: + hosted: + type: + - object + - "null" + properties: + crossorigin: + type: + - string + - "null" + prefix: + type: + - string + - "null" + sizes: + type: + - array + - "null" + items: + type: + - string + - "null" + suffix: + type: + - string + - "null" + text_info: + type: + - object + - "null" + properties: + char_count: + type: + - number + - "null" + encoding: + type: + - string + - "null" + url: + type: + - string + - "null" + id: + type: string + modified_at: + type: + - string + - "null" + status: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + code: + type: + - number + - "null" + required: + - id + app_inputs_jobs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: string + modified_at: + type: + - string + - "null" + progress: + type: + - object + - "null" + properties: + success_count: + type: + - string + - "null" + status: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + code: + type: + - number + - "null" + required: + - id + app_concepts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + app_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: string + language: + type: + - string + - "null" + name: + type: + - string + - "null" + user_id: + type: + - string + - "null" + value: + type: + - number + - "null" + visibility: + type: + - object + - "null" + properties: + gettable: + type: + - number + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml b/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml new file mode 100644 index 000000000000..9f3a713be047 --- /dev/null +++ b/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.clarifai.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-clarif-ai + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 7fbeaeea-2d0d-4f13-8200-fa228494d91c + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-clarif-ai + githubIssueLabel: source-clarif-ai + icon: icon.svg + license: MIT + name: Clarif-ai + releaseDate: 2024-10-21 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/clarif-ai + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/clarif-ai.md b/docs/integrations/sources/clarif-ai.md new file mode 100644 index 000000000000..366ad168b13f --- /dev/null +++ b/docs/integrations/sources/clarif-ai.md @@ -0,0 +1,36 @@ +# Clarifai + +Clarifai is the leading computer vision platform to quickly build and deploy AI on-prem, air-gapped, at the edge, or in the cloud. + +API Documentation: https://docs.clarifai.com/api-guide/api-overview/helpful-api-resources/using-postman-with-clarifai-apis + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. The personal access token found at `https://clarifai.com/settings/security` | | +| `user_id` | `string` | User ID. User ID found in settings | | +| `start_date` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| applications | id | DefaultPaginator | ✅ | ❌ | +| datasets | id | DefaultPaginator | ✅ | ❌ | +| models | id | DefaultPaginator | ✅ | ❌ | +| model_versions | id | DefaultPaginator | ✅ | ❌ | +| worklows | id | DefaultPaginator | ✅ | ❌ | +| app_inputs | id | DefaultPaginator | ✅ | ❌ | +| app_inputs_jobs | id | DefaultPaginator | ✅ | ❌ | +| app_concepts | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-21 | | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | + +
From 2a749a4754cbc6e0d89826b53f457c9f4c897d5c Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Tue, 29 Oct 2024 13:12:30 -0700 Subject: [PATCH 473/808] Bulk Load CDK: Missing test coverage for Path Factory (#47696) --- .../command/MockDestinationCatalogFactory.kt | 15 --- .../airbyte/cdk/load/file/MockTimeProvider.kt | 2 +- .../ObjectStoragePathFactory.kt | 75 +++++------- .../ObjectStoragePathFactoryTest.kt | 112 ++++++++++++++++++ 4 files changed, 144 insertions(+), 60 deletions(-) rename airbyte-cdk/bulk/core/load/src/{test => testFixtures}/kotlin/io/airbyte/cdk/load/command/MockDestinationCatalogFactory.kt (81%) rename airbyte-cdk/bulk/core/load/src/{test => testFixtures}/kotlin/io/airbyte/cdk/load/file/MockTimeProvider.kt (93%) create mode 100644 airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/command/MockDestinationCatalogFactory.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/command/MockDestinationCatalogFactory.kt similarity index 81% rename from airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/command/MockDestinationCatalogFactory.kt rename to airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/command/MockDestinationCatalogFactory.kt index 7076f46b81df..743b9a6b63e9 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/command/MockDestinationCatalogFactory.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/command/MockDestinationCatalogFactory.kt @@ -13,21 +13,6 @@ import io.micronaut.context.annotation.Primary import io.micronaut.context.annotation.Requires import jakarta.inject.Singleton -/** - * In order to make sure test implementors are aware of the catalog they're using, force a failure - * if nothing is either injected or opted-in. - */ -@Factory -class DefaultMockDestinationCatalogFactory { - @Singleton - @Requires(env = ["test"]) - fun make(): DestinationCatalog { - throw RuntimeException( - "Test implementors should inject a destination catalog or include a mock (ie, @MicronautTest(environments = [ ..., \"MockDestinationCatalog\"]))" - ) - } -} - /** * Basic two-stream catalog, good for most testing purposes. Inject with * `@MicronautTest(environments = [ ..., MockDestinationCatalog])`. diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/file/MockTimeProvider.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/file/MockTimeProvider.kt similarity index 93% rename from airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/file/MockTimeProvider.kt rename to airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/file/MockTimeProvider.kt index 7909f2bfdf24..f51bdccb7478 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/file/MockTimeProvider.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/file/MockTimeProvider.kt @@ -12,7 +12,7 @@ import java.util.concurrent.atomic.AtomicLong @Singleton @Primary @Requires(env = ["MockTimeProvider"]) -class MockTimeProvider : TimeProvider { +open class MockTimeProvider : TimeProvider { private var currentTime = AtomicLong(0) override fun currentTimeMillis(): Long { diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt index a40a0b8ea44e..c7f051dede0b 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt @@ -8,6 +8,7 @@ import io.airbyte.cdk.load.command.DestinationStream import io.airbyte.cdk.load.command.object_storage.ObjectStorageCompressionConfigurationProvider import io.airbyte.cdk.load.command.object_storage.ObjectStorageFormatConfigurationProvider import io.airbyte.cdk.load.command.object_storage.ObjectStoragePathConfigurationProvider +import io.airbyte.cdk.load.file.DefaultTimeProvider import io.airbyte.cdk.load.file.TimeProvider import io.micronaut.context.annotation.Secondary import jakarta.inject.Singleton @@ -25,9 +26,9 @@ class ObjectStoragePathFactory( pathConfigProvider: ObjectStoragePathConfigurationProvider, formatConfigProvider: ObjectStorageFormatConfigurationProvider? = null, compressionConfigProvider: ObjectStorageCompressionConfigurationProvider<*>? = null, - timeProvider: TimeProvider? = null, + timeProvider: TimeProvider, ) { - private val loadedAt = timeProvider?.let { Instant.ofEpochMilli(it.currentTimeMillis()) } + private val loadedAt = timeProvider.let { Instant.ofEpochMilli(it.currentTimeMillis()) } private val pathConfig = pathConfigProvider.objectStoragePathConfiguration private val fileFormatExtension = formatConfigProvider?.objectStorageFormatConfiguration?.extension @@ -42,7 +43,7 @@ class ObjectStoragePathFactory( inner class VariableContext( val stream: DestinationStream, - val time: Instant? = loadedAt, + val time: Instant = loadedAt, val extension: String? = null, val partNumber: Long? = null ) @@ -75,73 +76,56 @@ class ObjectStoragePathFactory( companion object { private val DATE_FORMATTER: DateTimeFormatter = - DateTimeFormatter.ofPattern("yyyy-MM-dd").withZone(ZoneId.systemDefault()) - private val TIMESTAMP_FORMATTER: DateTimeFormatter = - DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSSX").withZone(ZoneId.of("UTC")) + DateTimeFormatter.ofPattern("yyyy_MM_dd").withZone(ZoneId.systemDefault()) const val DEFAULT_STAGING_PREFIX_SUFFIX = "__airbyte_tmp" const val DEFAULT_PATH_FORMAT = "\${NAMESPACE}/\${STREAM_NAME}/\${YEAR}_\${MONTH}_\${DAY}_\${EPOCH}_" const val DEFAULT_FILE_FORMAT = "{part_number}{format_extension}" val PATH_VARIABLES = - // TODO: Vet that these match the past format exactly (eg day = 5 versus 05, etc) - listOf( + listOf( PathVariable("NAMESPACE") { it.stream.descriptor.namespace ?: "" }, PathVariable("STREAM_NAME") { it.stream.descriptor.name }, PathVariable("YEAR") { - it.time?.let { t -> - ZonedDateTime.ofInstant(t, ZoneId.of("UTC")).year.toString() - } - ?: throw IllegalArgumentException("time is required when {YEAR} is present") + ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).year.toString() }, PathVariable("MONTH") { - it.time?.let { t -> - ZonedDateTime.ofInstant(t, ZoneId.of("UTC")).monthValue.toString() - } - ?: throw IllegalArgumentException( - "time is required when {MONTH} is present" - ) + String.format( + "%02d", + ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).monthValue + ) }, PathVariable("DAY") { - it.time?.let { t -> - ZonedDateTime.ofInstant(t, ZoneId.of("UTC")).dayOfMonth.toString() - } - ?: throw IllegalArgumentException("time is required when {DAY} is present") + String.format( + "%02d", + ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).dayOfMonth + ) }, PathVariable("HOUR") { - it.time?.toEpochMilli()?.let { t -> t / 1000 / 60 / 60 }?.toString() - ?: throw IllegalArgumentException("time is required when {HOUR} is present") + String.format("%02d", ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).hour) }, PathVariable("MINUTE") { - (it.time?.toEpochMilli()?.let { t -> t / 1000 / 60 }?.toString() - ?: throw IllegalArgumentException( - "time is required when {MINUTE} is present" - )) + String.format("%02d", ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).minute) }, PathVariable("SECOND") { - (it.time?.toEpochMilli()?.div(1000)?.toString() - ?: throw IllegalArgumentException( - "time is required when {SECOND} is present" - )) + String.format("%02d", ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).second) }, PathVariable("MILLISECOND") { - it.time?.toEpochMilli()?.toString() - ?: throw IllegalArgumentException( - "time is required when {MILLISECOND} is present" - ) - }, - PathVariable("EPOCH") { - it.time?.toEpochMilli()?.toString() - ?: throw IllegalArgumentException( - "time is required when {EPOCH} is present" - ) + // Unclear why this is %04d, but that's what it was in the old code + String.format( + "%04d", + ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")) + .toLocalTime() + .toNanoOfDay() / 1_000_000 % 1_000 + ) }, + PathVariable("EPOCH") { it.time.toEpochMilli().toString() }, PathVariable("UUID") { UUID.randomUUID().toString() } ) val FILENAME_VARIABLES = listOf( FileVariable("date") { DATE_FORMATTER.format(it.time) }, - FileVariable("timestamp") { TIMESTAMP_FORMATTER.format(it.time) }, + FileVariable("timestamp") { it.time.toEpochMilli().toString() }, FileVariable("part_number") { it.partNumber?.toString() ?: throw IllegalArgumentException( @@ -152,7 +136,10 @@ class ObjectStoragePathFactory( FileVariable("format_extension") { it.extension?.let { ext -> ".$ext" } ?: "" } ) - fun from(config: T, timeProvider: TimeProvider? = null): ObjectStoragePathFactory where + fun from( + config: T, + timeProvider: TimeProvider = DefaultTimeProvider() + ): ObjectStoragePathFactory where T : ObjectStoragePathConfigurationProvider, T : ObjectStorageFormatConfigurationProvider, T : ObjectStorageCompressionConfigurationProvider<*> { diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt new file mode 100644 index 000000000000..9f3fa27fbac9 --- /dev/null +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt @@ -0,0 +1,112 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.file.object_storage + +import io.airbyte.cdk.load.command.MockDestinationCatalogFactory +import io.airbyte.cdk.load.command.object_storage.JsonFormatConfiguration +import io.airbyte.cdk.load.command.object_storage.ObjectStorageCompressionConfiguration +import io.airbyte.cdk.load.command.object_storage.ObjectStorageCompressionConfigurationProvider +import io.airbyte.cdk.load.command.object_storage.ObjectStorageFormatConfiguration +import io.airbyte.cdk.load.command.object_storage.ObjectStorageFormatConfigurationProvider +import io.airbyte.cdk.load.command.object_storage.ObjectStoragePathConfiguration +import io.airbyte.cdk.load.command.object_storage.ObjectStoragePathConfigurationProvider +import io.airbyte.cdk.load.file.GZIPProcessor +import io.airbyte.cdk.load.file.MockTimeProvider +import io.airbyte.cdk.load.file.TimeProvider +import io.micronaut.context.annotation.Primary +import io.micronaut.context.annotation.Requires +import io.micronaut.test.extensions.junit5.annotation.MicronautTest +import jakarta.inject.Inject +import jakarta.inject.Singleton +import java.time.LocalDateTime +import java.time.ZoneId +import java.time.format.DateTimeFormatter +import java.util.zip.GZIPOutputStream +import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Test + +@MicronautTest( + environments = + [ + "ObjectStoragePathFactoryTest", + "MockDestinationCatalog", + ] +) +class ObjectStoragePathFactoryTest { + @Inject lateinit var timeProvider: TimeProvider + + @Singleton + @Primary + @Requires(env = ["ObjectStoragePathFactoryTest"]) + class PathTimeProvider : MockTimeProvider() { + init { + val dateTime = + LocalDateTime.parse( + "2020-01-02T03:04:05.6789", + DateTimeFormatter.ISO_LOCAL_DATE_TIME + ) + val epochMilli = + dateTime.toInstant(ZoneId.of("UTC").rules.getOffset(dateTime)).toEpochMilli() + setCurrentTime(epochMilli) + } + } + + @Singleton + @Primary + @Requires(env = ["ObjectStoragePathFactoryTest"]) + class MockPathConfigProvider : ObjectStoragePathConfigurationProvider { + override val objectStoragePathConfiguration: ObjectStoragePathConfiguration = + ObjectStoragePathConfiguration( + prefix = "prefix", + stagingPrefix = "staging/prefix", + pathSuffixPattern = + "\${NAMESPACE}/\${STREAM_NAME}/\${YEAR}/\${MONTH}/\${DAY}/\${HOUR}/\${MINUTE}/\${SECOND}/\${MILLISECOND}/\${EPOCH}/", + fileNamePattern = "{date}-{timestamp}-{part_number}-{sync_id}{format_extension}" + ) + } + + @Singleton + @Primary + @Requires(env = ["ObjectStoragePathFactoryTest"]) + class MockFormatConfigProvider : ObjectStorageFormatConfigurationProvider { + override val objectStorageFormatConfiguration: ObjectStorageFormatConfiguration = + JsonFormatConfiguration() + } + + @Singleton + @Primary + @Requires(env = ["ObjectStoragePathFactoryTest"]) + class MockCompressionConfigProvider : + ObjectStorageCompressionConfigurationProvider { + override val objectStorageCompressionConfiguration: + ObjectStorageCompressionConfiguration = + ObjectStorageCompressionConfiguration(compressor = GZIPProcessor) + } + + @Test + fun testBasicBehavior(pathFactory: ObjectStoragePathFactory) { + val epochMilli = timeProvider.currentTimeMillis() + val stream1 = MockDestinationCatalogFactory.stream1 + val (namespace, name) = stream1.descriptor + val prefixOnly = "prefix/$namespace/$name/2020/01/02/03/04/05/0678/$epochMilli" + val fileName = "2020_01_02-1577934245678-173-42.jsonl.gz" + Assertions.assertEquals( + "staging/$prefixOnly", + pathFactory.getStagingDirectory(stream1).toString(), + ) + Assertions.assertEquals( + prefixOnly, + pathFactory.getFinalDirectory(stream1).toString(), + ) + Assertions.assertEquals( + "staging/$prefixOnly/$fileName", + pathFactory.getPathToFile(stream1, 173, true).toString(), + ) + Assertions.assertEquals( + "$prefixOnly/$fileName", + pathFactory.getPathToFile(stream1, 173, false).toString(), + ) + } +} From 3b6f858a7cdd0f677c61eeff63b96861f8461a47 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Tue, 29 Oct 2024 13:47:09 -0700 Subject: [PATCH 474/808] Destination-MotherDuck: Add state counts and other fixes (#47958) --- .../destination_motherduck/destination.py | 76 +++++++++++++++---- .../processors/duckdb.py | 6 +- .../destination_motherduck/spec.json | 2 +- .../integration_tests/config.json | 5 +- .../destination-motherduck/metadata.yaml | 6 +- .../destination-motherduck/pyproject.toml | 2 +- docs/integrations/destinations/motherduck.md | 1 + 7 files changed, 76 insertions(+), 22 deletions(-) diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py index 83f32539e762..15e36de261e8 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py @@ -14,7 +14,7 @@ from airbyte_cdk import AirbyteStream, ConfiguredAirbyteStream, SyncMode from airbyte_cdk.destinations import Destination -from airbyte_cdk.models import AirbyteConnectionStatus, AirbyteMessage, ConfiguredAirbyteCatalog, DestinationSyncMode, Status, Type +from airbyte_cdk.models import AirbyteConnectionStatus, AirbyteMessage, AirbyteStateStats, ConfiguredAirbyteCatalog, Status, Type from airbyte_cdk.sql._util.name_normalizers import LowerCaseNormalizer from airbyte_cdk.sql.constants import AB_EXTRACTED_AT_COLUMN, AB_INTERNAL_COLUMNS, AB_META_COLUMN, AB_RAW_ID_COLUMN from airbyte_cdk.sql.secrets import SecretString @@ -138,14 +138,36 @@ def write( processor.prepare_stream_table(stream_name=configured_stream.stream.name, sync_mode=configured_stream.destination_sync_mode) buffer: dict[str, dict[str, list[Any]]] = defaultdict(lambda: defaultdict(list)) - records_buffered = 0 - records_processed = 0 + records_buffered: dict[str, int] = defaultdict(int) + records_processed: dict[str, int] = defaultdict(int) + records_since_last_checkpoint: dict[str, int] = defaultdict(int) + legacy_state_messages: list[AirbyteMessage] = [] for message in input_messages: - if message.type == Type.STATE: + if message.type == Type.STATE and message.state is not None: + if message.state.stream is None: + logger.warning("Cannot process legacy state message, skipping.") + # Hold until the end of the stream, and then yield them all at once. + legacy_state_messages.append(message) + continue + stream_name = message.state.stream.stream_descriptor.name + _ = message.state.stream.stream_descriptor.namespace # Unused currently # flush the buffer - self._flush_buffer(buffer, configured_catalog, path, schema_name, motherduck_api_key) + self._flush_buffer( + buffer=buffer, + configured_catalog=configured_catalog, + db_path=path, + schema_name=schema_name, + motherduck_api_key=motherduck_api_key, + stream_name=stream_name, + ) buffer = defaultdict(lambda: defaultdict(list)) - records_buffered = 0 + records_buffered[stream_name] = 0 + + # Annotate the state message with the number of records processed + message.state.destinationStats = AirbyteStateStats( + recordCount=records_since_last_checkpoint[stream_name], + ) + records_since_last_checkpoint[stream_name] = 0 yield message elif message.type == Type.RECORD and message.record is not None: @@ -165,20 +187,36 @@ def write( buffer[stream_name][AB_RAW_ID_COLUMN].append(str(uuid.uuid4())) buffer[stream_name][AB_EXTRACTED_AT_COLUMN].append(datetime.datetime.now().isoformat()) buffer[stream_name][AB_META_COLUMN].append(json.dumps(record_meta)) - records_buffered += 1 - if records_buffered >= MAX_STREAM_BATCH_SIZE: - logger.info(f"Loading {records_buffered:,} from buffer...") - self._flush_buffer(buffer, configured_catalog, path, schema_name, motherduck_api_key) + records_buffered[stream_name] += 1 + records_since_last_checkpoint[stream_name] += 1 + + if records_buffered[stream_name] >= MAX_STREAM_BATCH_SIZE: + logger.info( + f"Loading {records_buffered[stream_name]:,} records from '{stream_name}' stream buffer...", + ) + self._flush_buffer( + buffer=buffer, + configured_catalog=configured_catalog, + db_path=path, + schema_name=schema_name, + motherduck_api_key=motherduck_api_key, + stream_name=stream_name, + ) buffer = defaultdict(lambda: defaultdict(list)) - records_processed += records_buffered - records_buffered = 0 - logger.info(f"Records loaded successfully. Total records processed: {records_processed:,}") + records_processed[stream_name] += records_buffered[stream_name] + records_buffered[stream_name] = 0 + logger.info( + f"Records loaded successfully. Total '{stream_name}' records processed: {records_processed[stream_name]:,}", + ) else: logger.info(f"Message type {message.type} not supported, skipping") # flush any remaining messages self._flush_buffer(buffer, configured_catalog, path, schema_name, motherduck_api_key) + if legacy_state_messages: + # Save to emit these now, since we've finished processing the stream. + yield from legacy_state_messages def _flush_buffer( self, @@ -187,12 +225,20 @@ def _flush_buffer( db_path: str, schema_name: str, motherduck_api_key: str, + stream_name: str | None = None, ) -> None: """ - Flush the buffer to the destination + Flush the buffer to the destination. + + If no stream name is provided, then all streams will be flushed. """ for configured_stream in configured_catalog.streams: - stream_name = configured_stream.stream.name + if stream_name is not None and stream_name != configured_stream.stream.name: + # Skip this stream. + continue + + # Else, we're flushing this stream or all streams. + if stream_name in buffer: processor = self._get_sql_processor( configured_catalog=configured_catalog, schema_name=schema_name, db_path=db_path, motherduck_token=motherduck_api_key diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py index 9f976481a44e..ff7d44c62392 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py @@ -116,7 +116,7 @@ def _create_table_if_not_exists( primary_keys: list[str] | None = None, ) -> None: if primary_keys: - pk_str = ", ".join(primary_keys) + pk_str = ", ".join(map(self._quote_identifier, primary_keys)) column_definition_str += f",\n PRIMARY KEY ({pk_str})" cmd = f""" @@ -164,12 +164,12 @@ def _executemany(self, sql: str | TextClause | Executable, params: list[list[Any def _write_with_executemany(self, buffer: Dict[str, Dict[str, List[Any]]], stream_name: str, table_name: str) -> None: column_names_list = list(buffer[stream_name].keys()) - column_names = ", ".join(column_names_list) + column_names_str = ", ".join(map(self._quote_identifier, column_names_list)) params = ", ".join(["?"] * len(column_names_list)) sql = f""" -- Write with executemany INSERT INTO {self._fully_qualified(table_name)} - ({column_names}) + ({column_names_str}) VALUES ({params}) """ entries_to_write = buffer[stream_name] diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/spec.json b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/spec.json index d11e44742db5..03e0b949344c 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/spec.json +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/spec.json @@ -16,7 +16,7 @@ "destination_path": { "title": "Destination DB", "type": "string", - "description": "Path to the .duckdb file, or the text 'md:' to connect to MotherDuck. The file will be placed inside that local mount. For more information check out our docs", + "description": "Path to the .duckdb file, or the text 'md:' to connect to MotherDuck. The file will be placed inside that local mount. For more information check out our docs", "examples": ["/local/destination.duckdb", "md:", "motherduck:"], "default": "md:" }, diff --git a/airbyte-integrations/connectors/destination-motherduck/integration_tests/config.json b/airbyte-integrations/connectors/destination-motherduck/integration_tests/config.json index 6ff20b5e462f..c54a2ae18727 100644 --- a/airbyte-integrations/connectors/destination-motherduck/integration_tests/config.json +++ b/airbyte-integrations/connectors/destination-motherduck/integration_tests/config.json @@ -1 +1,4 @@ -{ "destination_path": "/local/destination.duckdb" } +{ + "destination_path": "/local/destination.duckdb", + "motherduck_api_key": "dummy" +} diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index 1d80d2f444b3..cb1fa55a967b 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg @@ -18,6 +18,10 @@ data: releaseStage: alpha releases: breakingChanges: [] + remoteRegistries: + pypi: + enabled: true + packageName: airbyte-destination-motherduck resourceRequirements: jobSpecific: - jobType: check_connection diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index cd5f6ebb0a84..7ce1404b9bda 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-motherduck" -version = "0.1.9" +version = "0.1.10" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index a06816fb5a73..f3cc72881ac9 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.10 | 2024-10-29 | [47958](https://github.com/airbytehq/airbyte/pull/47958) | Add state counts and other fixes. | | 0.1.9 | 2024-10-29 | [47950](https://github.com/airbytehq/airbyte/pull/47950) | Fix bug: add double quotes to column names that are reserved keywords. | | 0.1.8 | 2024-10-29 | [47952](https://github.com/airbytehq/airbyte/pull/47952) | Fix: Add max batch size for loads. | | 0.1.7 | 2024-10-29 | [47706](https://github.com/airbytehq/airbyte/pull/47706) | Fix bug: incorrect column names were used to create new stream table when using multiple streams. | From 120c139b118dd19acd736543deb5b4c71021c521 Mon Sep 17 00:00:00 2001 From: Krishnan <68746496+gemsteam@users.noreply.github.com> Date: Wed, 30 Oct 2024 02:36:49 +0530 Subject: [PATCH 475/808] source-ticketmaster contribution from gemsteam (#47139) Co-authored-by: Marcos Marx --- .../connectors/source-ticketmaster/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-ticketmaster/icon.svg | 1 + .../source-ticketmaster/manifest.yaml | 2621 +++++++++++++++++ .../source-ticketmaster/metadata.yaml | 35 + docs/integrations/sources/ticketmaster.md | 31 + 6 files changed, 2738 insertions(+) create mode 100644 airbyte-integrations/connectors/source-ticketmaster/README.md create mode 100644 airbyte-integrations/connectors/source-ticketmaster/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-ticketmaster/icon.svg create mode 100644 airbyte-integrations/connectors/source-ticketmaster/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-ticketmaster/metadata.yaml create mode 100644 docs/integrations/sources/ticketmaster.md diff --git a/airbyte-integrations/connectors/source-ticketmaster/README.md b/airbyte-integrations/connectors/source-ticketmaster/README.md new file mode 100644 index 000000000000..2457925edddf --- /dev/null +++ b/airbyte-integrations/connectors/source-ticketmaster/README.md @@ -0,0 +1,33 @@ +# Ticketmaster +This directory contains the manifest-only connector for `source-ticketmaster`. + +API Documentation: https://developer.ticketmaster.com/products-and-docs/apis/discovery-api/v2/#search-classifications-v2 + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-ticketmaster:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-ticketmaster build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-ticketmaster test +``` + diff --git a/airbyte-integrations/connectors/source-ticketmaster/acceptance-test-config.yml b/airbyte-integrations/connectors/source-ticketmaster/acceptance-test-config.yml new file mode 100644 index 000000000000..e897f0de7eb5 --- /dev/null +++ b/airbyte-integrations/connectors/source-ticketmaster/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-ticketmaster:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-ticketmaster/icon.svg b/airbyte-integrations/connectors/source-ticketmaster/icon.svg new file mode 100644 index 000000000000..0acbdc5e4ab8 --- /dev/null +++ b/airbyte-integrations/connectors/source-ticketmaster/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-ticketmaster/manifest.yaml b/airbyte-integrations/connectors/source-ticketmaster/manifest.yaml new file mode 100644 index 000000000000..c088de90fd04 --- /dev/null +++ b/airbyte-integrations/connectors/source-ticketmaster/manifest.yaml @@ -0,0 +1,2621 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + API Documentation: + https://developer.ticketmaster.com/products-and-docs/apis/discovery-api/v2/#search-classifications-v2 + +check: + type: CheckStream + stream_names: + - events + +definitions: + streams: + events: + type: DeclarativeStream + name: events + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: discovery/v2/events + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - events + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: size + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/events" + attractions: + type: DeclarativeStream + name: attractions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: discovery/v2/attractions + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - attractions + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: size + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/attractions" + venues: + type: DeclarativeStream + name: venues + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: discovery/v2/venues + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - venues + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: size + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/venues" + suggest: + type: DeclarativeStream + name: suggest + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: discovery/v2/suggest + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - venues + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/suggest" + event_images: + type: DeclarativeStream + name: event_images + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: discovery/v2/events/{{ stream_partition.event_id }}/images + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limits has been hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: size + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: event_id + stream: + $ref: "#/definitions/streams/events" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/event_images" + base_requester: + type: HttpRequester + url_base: https://app.ticketmaster.com/ + authenticator: + type: ApiKeyAuthenticator + inject_into: + type: RequestOption + inject_into: request_parameter + field_name: apikey + api_token: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/events" + - $ref: "#/definitions/streams/attractions" + - $ref: "#/definitions/streams/venues" + - $ref: "#/definitions/streams/suggest" + - $ref: "#/definitions/streams/event_images" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + properties: + api_key: + type: string + title: API Key + airbyte_secret: true + order: 0 + additionalProperties: true + +metadata: + autoImportSchema: + events: true + attractions: true + venues: true + suggest: true + event_images: true + testedStreams: + events: + streamHash: 82aec0bbb08425b1fea8dfe49fb6140d2cca883c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + attractions: + streamHash: 7955de5f9451ba35f47be99da70685e93c6cfd2b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + venues: + streamHash: 5900d00fb19fb08217b70e1e0ceb599cc1292a52 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + suggest: + streamHash: 2161af44a6271f8fb34dd4bb58d3d51ad541ddba + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + event_images: + streamHash: 0acc38ba028868f165eeba0f99603814562df148 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: {} + +schemas: + events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + _embedded: + type: + - object + - "null" + properties: + attractions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + aliases: + type: + - array + - "null" + items: + type: + - string + - "null" + classifications: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + family: + type: + - boolean + - "null" + genre: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + primary: + type: + - boolean + - "null" + segment: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + subGenre: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + subType: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + externalLinks: + type: + - object + - "null" + properties: + facebook: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + homepage: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + instagram: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + itunes: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + lastfm: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + musicbrainz: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + url: + type: + - string + - "null" + spotify: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + twitter: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + wiki: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + youtube: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + id: + type: + - string + - "null" + images: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribution: + type: + - string + - "null" + fallback: + type: + - boolean + - "null" + height: + type: + - number + - "null" + ratio: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + locale: + type: + - string + - "null" + name: + type: + - string + - "null" + test: + type: + - boolean + - "null" + upcomingEvents: + type: + - object + - "null" + properties: + _filtered: + type: + - number + - "null" + _total: + type: + - number + - "null" + mfx-be: + type: + - number + - "null" + mfx-cz: + type: + - number + - "null" + mfx-de: + type: + - number + - "null" + mfx-dk: + type: + - number + - "null" + mfx-es: + type: + - number + - "null" + mfx-fi: + type: + - number + - "null" + mfx-it: + type: + - number + - "null" + mfx-nl: + type: + - number + - "null" + mfx-no: + type: + - number + - "null" + mfx-pl: + type: + - number + - "null" + mfx-se: + type: + - number + - "null" + ticketmaster: + type: + - number + - "null" + ticketnet: + type: + - number + - "null" + tmr: + type: + - number + - "null" + url: + type: + - string + - "null" + venues: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + accessibleSeatingDetail: + type: + - string + - "null" + ada: + type: + - object + - "null" + properties: + adaCustomCopy: + type: + - string + - "null" + adaHours: + type: + - string + - "null" + adaPhones: + type: + - string + - "null" + address: + type: + - object + - "null" + properties: + line1: + type: + - string + - "null" + line2: + type: + - string + - "null" + aliases: + type: + - array + - "null" + items: + type: + - string + - "null" + boxOfficeInfo: + type: + - object + - "null" + properties: + acceptedPaymentDetail: + type: + - string + - "null" + openHoursDetail: + type: + - string + - "null" + phoneNumberDetail: + type: + - string + - "null" + willCallDetail: + type: + - string + - "null" + city: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + country: + type: + - object + - "null" + properties: + countryCode: + type: + - string + - "null" + name: + type: + - string + - "null" + dmas: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + externalLinks: + type: + - object + - "null" + properties: + appDeepLink: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + generalInfo: + type: + - object + - "null" + properties: + childRule: + type: + - string + - "null" + generalRule: + type: + - string + - "null" + id: + type: + - string + - "null" + images: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + fallback: + type: + - boolean + - "null" + height: + type: + - number + - "null" + ratio: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + locale: + type: + - string + - "null" + location: + type: + - object + - "null" + properties: + latitude: + type: + - string + - "null" + longitude: + type: + - string + - "null" + markets: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + name: + type: + - string + - "null" + parkingDetail: + type: + - string + - "null" + postalCode: + type: + - string + - "null" + social: + type: + - object + - "null" + properties: + twitter: + type: + - object + - "null" + properties: + handle: + type: + - string + - "null" + state: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + stateCode: + type: + - string + - "null" + test: + type: + - boolean + - "null" + timezone: + type: + - string + - "null" + upcomingEvents: + type: + - object + - "null" + properties: + _filtered: + type: + - number + - "null" + _total: + type: + - number + - "null" + archtics: + type: + - number + - "null" + ticketmaster: + type: + - number + - "null" + tmr: + type: + - number + - "null" + universe: + type: + - number + - "null" + url: + type: + - string + - "null" + _links: + type: + - object + - "null" + properties: + attractions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + venues: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + accessibility: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + info: + type: + - string + - "null" + ticketLimit: + type: + - number + - "null" + url: + type: + - string + - "null" + urlText: + type: + - string + - "null" + ageRestrictions: + type: + - object + - "null" + properties: + ageRuleDescription: + type: + - string + - "null" + id: + type: + - string + - "null" + legalAgeEnforced: + type: + - boolean + - "null" + classifications: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + family: + type: + - boolean + - "null" + genre: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + primary: + type: + - boolean + - "null" + segment: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + subGenre: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + subType: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + dates: + type: + - object + - "null" + properties: + initialStartDate: + type: + - object + - "null" + properties: + dateTime: + type: + - string + - "null" + localDate: + type: + - string + - "null" + localTime: + type: + - string + - "null" + spanMultipleDays: + type: + - boolean + - "null" + start: + type: + - object + - "null" + properties: + dateTBA: + type: + - boolean + - "null" + dateTBD: + type: + - boolean + - "null" + dateTime: + type: + - string + - "null" + localDate: + type: + - string + - "null" + localTime: + type: + - string + - "null" + noSpecificTime: + type: + - boolean + - "null" + timeTBA: + type: + - boolean + - "null" + status: + type: + - object + - "null" + properties: + code: + type: + - string + - "null" + timezone: + type: + - string + - "null" + doorsTimes: + type: + - object + - "null" + properties: + dateTime: + type: + - string + - "null" + id: + type: + - string + - "null" + localDate: + type: + - string + - "null" + localTime: + type: + - string + - "null" + id: + type: string + images: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribution: + type: + - string + - "null" + fallback: + type: + - boolean + - "null" + height: + type: + - number + - "null" + ratio: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + info: + type: + - string + - "null" + locale: + type: + - string + - "null" + name: + type: + - string + - "null" + outlets: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + url: + type: + - string + - "null" + pleaseNote: + type: + - string + - "null" + priceRanges: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + currency: + type: + - string + - "null" + max: + type: + - number + - "null" + min: + type: + - number + - "null" + products: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + classifications: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + family: + type: + - boolean + - "null" + genre: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + primary: + type: + - boolean + - "null" + segment: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + subGenre: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + subType: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + url: + type: + - string + - "null" + promoter: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + promoters: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sales: + type: + - object + - "null" + properties: + presales: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + endDateTime: + type: + - string + - "null" + linkDescriptions: + type: + - object + - "null" + properties: + en-au: + type: + - string + - "null" + en-ca: + type: + - string + - "null" + en-mx: + type: + - string + - "null" + en-nz: + type: + - string + - "null" + en-us: + type: + - string + - "null" + es-br: + type: + - string + - "null" + es-mx: + type: + - string + - "null" + es-us: + type: + - string + - "null" + fr-ca: + type: + - string + - "null" + pt-br: + type: + - string + - "null" + name: + type: + - string + - "null" + startDateTime: + type: + - string + - "null" + url: + type: + - string + - "null" + public: + type: + - object + - "null" + properties: + endDateTime: + type: + - string + - "null" + startDateTime: + type: + - string + - "null" + startTBA: + type: + - boolean + - "null" + startTBD: + type: + - boolean + - "null" + seatmap: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + staticUrl: + type: + - string + - "null" + test: + type: + - boolean + - "null" + ticketLimit: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + info: + type: + - string + - "null" + ticketing: + type: + - object + - "null" + properties: + allInclusivePricing: + type: + - object + - "null" + properties: + enabled: + type: + - boolean + - "null" + id: + type: + - string + - "null" + safeTix: + type: + - object + - "null" + properties: + enabled: + type: + - boolean + - "null" + inAppOnlyEnabled: + type: + - boolean + - "null" + url: + type: + - string + - "null" + required: + - id + attractions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + aliases: + type: + - array + - "null" + items: + type: + - string + - "null" + classifications: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + family: + type: + - boolean + - "null" + genre: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + primary: + type: + - boolean + - "null" + segment: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + subGenre: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + subType: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + draftStatus: + type: + - string + - "null" + externalLinks: + type: + - object + - "null" + properties: + facebook: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + homepage: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + instagram: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + itunes: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + lastfm: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + musicbrainz: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + url: + type: + - string + - "null" + spotify: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + twitter: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + wiki: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + youtube: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + url: + type: + - string + - "null" + id: + type: string + images: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribution: + type: + - string + - "null" + fallback: + type: + - boolean + - "null" + height: + type: + - number + - "null" + ratio: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + locale: + type: + - string + - "null" + name: + type: + - string + - "null" + test: + type: + - boolean + - "null" + upcomingEvents: + type: + - object + - "null" + properties: + _filtered: + type: + - number + - "null" + _total: + type: + - number + - "null" + crowder: + type: + - number + - "null" + mfx-ae: + type: + - number + - "null" + mfx-at: + type: + - number + - "null" + mfx-be: + type: + - number + - "null" + mfx-ch: + type: + - number + - "null" + mfx-cz: + type: + - number + - "null" + mfx-de: + type: + - number + - "null" + mfx-dk: + type: + - number + - "null" + mfx-es: + type: + - number + - "null" + mfx-fi: + type: + - number + - "null" + mfx-it: + type: + - number + - "null" + mfx-nl: + type: + - number + - "null" + mfx-no: + type: + - number + - "null" + mfx-pl: + type: + - number + - "null" + mfx-se: + type: + - number + - "null" + mfx-za: + type: + - number + - "null" + moshtix: + type: + - number + - "null" + ticketmaster: + type: + - number + - "null" + ticketnet: + type: + - number + - "null" + ticketweb: + type: + - number + - "null" + tmc: + type: + - number + - "null" + tmr: + type: + - number + - "null" + universe: + type: + - number + - "null" + veeps: + type: + - number + - "null" + url: + type: + - string + - "null" + required: + - id + venues: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + accessibleSeatingDetail: + type: + - string + - "null" + ada: + type: + - object + - "null" + properties: + adaCustomCopy: + type: + - string + - "null" + adaHours: + type: + - string + - "null" + adaPhones: + type: + - string + - "null" + address: + type: + - object + - "null" + properties: + line1: + type: + - string + - "null" + line2: + type: + - string + - "null" + aliases: + type: + - array + - "null" + items: + type: + - string + - "null" + boxOfficeInfo: + type: + - object + - "null" + properties: + acceptedPaymentDetail: + type: + - string + - "null" + openHoursDetail: + type: + - string + - "null" + phoneNumberDetail: + type: + - string + - "null" + willCallDetail: + type: + - string + - "null" + city: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + country: + type: + - object + - "null" + properties: + countryCode: + type: + - string + - "null" + name: + type: + - string + - "null" + dmas: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + generalInfo: + type: + - object + - "null" + properties: + childRule: + type: + - string + - "null" + generalRule: + type: + - string + - "null" + id: + type: string + images: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + fallback: + type: + - boolean + - "null" + height: + type: + - number + - "null" + ratio: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + locale: + type: + - string + - "null" + location: + type: + - object + - "null" + properties: + latitude: + type: + - string + - "null" + longitude: + type: + - string + - "null" + markets: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + name: + type: + - string + - "null" + parkingDetail: + type: + - string + - "null" + postalCode: + type: + - string + - "null" + social: + type: + - object + - "null" + properties: + twitter: + type: + - object + - "null" + properties: + handle: + type: + - string + - "null" + state: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + stateCode: + type: + - string + - "null" + test: + type: + - boolean + - "null" + timezone: + type: + - string + - "null" + upcomingEvents: + type: + - object + - "null" + properties: + _filtered: + type: + - number + - "null" + _total: + type: + - number + - "null" + archtics: + type: + - number + - "null" + mfx-it: + type: + - number + - "null" + ticketmaster: + type: + - number + - "null" + ticketweb: + type: + - number + - "null" + tmr: + type: + - number + - "null" + universe: + type: + - number + - "null" + veeps: + type: + - number + - "null" + url: + type: + - string + - "null" + required: + - id + suggest: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + address: + type: + - object + - "null" + aliases: + type: + - array + - "null" + items: + type: + - string + - "null" + city: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + country: + type: + - object + - "null" + properties: + countryCode: + type: + - string + - "null" + name: + type: + - string + - "null" + id: + type: string + images: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + fallback: + type: + - boolean + - "null" + height: + type: + - number + - "null" + ratio: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + locale: + type: + - string + - "null" + location: + type: + - object + - "null" + properties: + latitude: + type: + - string + - "null" + longitude: + type: + - string + - "null" + name: + type: + - string + - "null" + state: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + stateCode: + type: + - string + - "null" + timezone: + type: + - string + - "null" + upcomingEvents: + type: + - object + - "null" + properties: + _filtered: + type: + - number + - "null" + _total: + type: + - number + - "null" + archtics: + type: + - number + - "null" + ticketmaster: + type: + - number + - "null" + tmr: + type: + - number + - "null" + url: + type: + - string + - "null" + required: + - id + event_images: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + id: + type: string + images: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + fallback: + type: + - boolean + - "null" + height: + type: + - number + - "null" + ratio: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-ticketmaster/metadata.yaml b/airbyte-integrations/connectors/source-ticketmaster/metadata.yaml new file mode 100644 index 000000000000..2ee4f84c3774 --- /dev/null +++ b/airbyte-integrations/connectors/source-ticketmaster/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "app.ticketmaster.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-ticketmaster + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 053eb2fe-5c44-49fc-a1e4-2dc82b09318e + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-ticketmaster + githubIssueLabel: source-ticketmaster + icon: icon.svg + license: MIT + name: Ticketmaster + releaseDate: 2024-10-21 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/ticketmaster + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/ticketmaster.md b/docs/integrations/sources/ticketmaster.md new file mode 100644 index 000000000000..440f106b81fc --- /dev/null +++ b/docs/integrations/sources/ticketmaster.md @@ -0,0 +1,31 @@ +# Ticketmaster + +Buy and sell tickets online for concerts, sports, theater, family and other events near you from Ticketmaster. + +[TicketMaster API Documentation](https://developer.ticketmaster.com/products-and-docs/apis/discovery-api/v2/#search-classifications-v2) + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| events | id | DefaultPaginator | ✅ | ❌ | +| attractions | id | DefaultPaginator | ✅ | ❌ | +| venues | id | DefaultPaginator | ✅ | ❌ | +| suggest | id | No pagination | ✅ | ❌ | +| event_images | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-21 | | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | + +
From f6e7695049d278e183f501b5ad41c49ea216607e Mon Sep 17 00:00:00 2001 From: "Ryan Br..." Date: Tue, 29 Oct 2024 14:25:11 -0700 Subject: [PATCH 476/808] chore: update docs workloads mono pod (#47698) --- docs/.gitbook/assets/connector_pod.png | Bin 0 -> 17239 bytes docs/.gitbook/assets/replication_mono_pod.png | Bin 0 -> 24099 bytes .../configuring-connector-resources.md | 13 +- docs/operator-guides/scaling-airbyte.md | 14 +- docs/understanding-airbyte/high-level-view.md | 22 +- docs/understanding-airbyte/jobs.md | 198 ++++++------------ 6 files changed, 85 insertions(+), 162 deletions(-) create mode 100644 docs/.gitbook/assets/connector_pod.png create mode 100644 docs/.gitbook/assets/replication_mono_pod.png diff --git a/docs/.gitbook/assets/connector_pod.png b/docs/.gitbook/assets/connector_pod.png new file mode 100644 index 0000000000000000000000000000000000000000..1eae515a8dcf124fd93ec256f606f1941ce08514 GIT binary patch literal 17239 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 literal 0 HcmV?d00001 diff --git a/docs/.gitbook/assets/replication_mono_pod.png b/docs/.gitbook/assets/replication_mono_pod.png new file mode 100644 index 0000000000000000000000000000000000000000..8832981853d1c3db3042c8ef5e2a2175a7a48ad0 GIT binary patch literal 24099 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

LZ7d;951h;sLI0e0T^}?!WPHo7 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,cpuLimit=,memoryRequest=200Mi,memoryLimit=200Mi] -``` - On Kubernetes, the log will look something like this: ``` -2022-08-12 01:22:20 INFO i.a.w.p.KubeProcessFactory(create):100 - Attempting to start pod = source-intercom-check-480195-0-abvnr for airbyte/source-intercom:0.1.24 with resources io.airbyte.config.ResourceRequirements@11cc9fb9[cpuRequest=2,cpuLimit=2,memoryRequest=200Mi,memoryLimit=200Mi] +2024-10-28 23:58:10 platform > Launching replication pod: replication-job-20154943-attempt-0 with containers: +2024-10-28 23:58:10 platform > [source] image: airbyte/source-sftp:1.2.0-dev.54744ff04b resources: ResourceRequirements(claims=[], limits={memory=2Gi, ephemeral-storage=5G, cpu=1}, requests={memory=1Gi, ephemeral-storage=5G, cpu=0.5}, additionalProperties={}) +2024-10-28 23:58:10 platform > [destination] image: airbyte/destination-s3:1.4.0-dev.6b9d2e4595 resources: ResourceRequirements(claims=[], limits={memory=2Gi, cpu=1}, requests={memory=2Gi, cpu=0.5}, additionalProperties={}) +2024-10-28 23:58:10 platform > [orchestrator] image: airbyte/container-orchestrator:build-256f73c6c2-20488-master resources: ResourceRequirements(claims=[], limits={memory=2Gi, cpu=1}, requests={memory=2Gi, cpu=1}, additionalProperties={}) ``` diff --git a/docs/operator-guides/scaling-airbyte.md b/docs/operator-guides/scaling-airbyte.md index 9d70a0c28cd4..6d8c2b2b243f 100644 --- a/docs/operator-guides/scaling-airbyte.md +++ b/docs/operator-guides/scaling-airbyte.md @@ -12,11 +12,11 @@ As a reference point, the typical Airbyte user has 5 - 20 connectors and 10 - 10 ## What To Scale -[Workers](../understanding-airbyte/jobs.md) do all the heavy lifting within Airbyte. A worker is responsible for executing Airbyte operations \(e.g. Discover, Read, Sync etc\), and is created on demand whenever these operations are requested. Thus, every job has a corresponding worker executing its work. +[Workloads](../understanding-airbyte/jobs.md) do all the heavy lifting within Airbyte. The workload system is responsible for launching the pods that execute Airbyte operations \(e.g. Discover, Read, Sync etc\). -How a worker executes work depends on the Airbyte deployment. In the Docker deployment, an Airbyte worker spins up at least one Docker container. In the Kubernetes deployment, an Airbyte worker will create at least one Kubernetes pod. The created resource \(Docker container or Kubernetes pod\) does all the actual work. +The workload launcher will create one Kubernetes pod. The connector and sidecar images then do all the actual work. -Thus, scaling Airbyte is a matter of ensuring that the Docker container or Kubernetes Pod running the jobs has sufficient resources to execute its work. +Thus, scaling Airbyte is a matter of ensuring that the Kubernetes cluster Airbyte runs on has sufficient resources to schedule its various job pods. Jobs-wise, we are mainly concerned with Sync jobs when thinking about scale. Sync jobs sync data from sources to destinations and are the majority of jobs run. Sync jobs use two workers. One worker reads from the source; the other worker writes to the destination. @@ -30,7 +30,7 @@ As mentioned above, we are mainly concerned with scaling Sync jobs. Within a Syn This is because the Source worker reads up to 10,000 records in memory. This can present problems for database sources with tables that have large row sizes. e.g. a table with an average row size of 0.5MBs will require 0.5 \* 10000 / 1000 = 5GBs of RAM. See [this issue](https://github.com/airbytehq/airbyte/issues/3439) for more information. -Our Java connectors currently follow Java's default behaviour with container memory and will only use up to 1/4 of the host's allocated memory. e.g. On a Docker agent with 8GBs of RAM configured, a Java connector limits itself to 2Gbs of RAM and will see Out-of-Memory exceptions if this goes higher. The same applies to Kubernetes pods. +Our Java connectors currently follow Java's default behaviour with container memory and will only use up to 1/4 of the host's allocated memory. e.g. On a Kubernetes cluster with 8GBs of RAM configured, a Java connector limits itself to 2Gbs of RAM and will see Out-of-Memory exceptions if this goes higher. You may want to customize this by setting `JOB_MAIN_CONTAINER_MEMORY_REQUEST` and `JOB_MAIN_CONTAINER_MEMORY_LIMIT` environment variables to custom values. Note that all Source database connectors are Java connectors. This means that users currently need to over-specify memory resource for Java connectors. @@ -41,7 +41,7 @@ Airbyte uses backpressure to try to read the minimal amount of logs required. In However, disk space might become an issue for the following reasons: -1. Long-running syncs can produce a fair amount of logs from the Docker agent and Airbyte on Docker deployments. Some work has been done to minimize accidental logging, so this should no longer be an acute problem, but is still an open issue. +1. Long-running syncs can produce a fair amount of logs. Some work has been done to minimize accidental logging, so this should no longer be an acute problem, but is still an open issue. 2. Although Airbyte connector images aren't massive, they aren't exactly small either. The typical connector image is ~300MB. An Airbyte deployment with multiple connectors can easily use up to 10GBs of disk space. Because of this, we recommend allocating a minimum of 30GBs of disk space per node. Since storage is on the cheaper side, we'd recommend you be safe than sorry, so err on the side of over-provisioning. @@ -52,12 +52,10 @@ Users running Airbyte Kubernetes also have to make sure the Kubernetes cluster c To be safe, make sure the Kubernetes cluster can schedule up to `2 x ` pods at once. This is the worse case estimate, and most users should be fine with `2 x ` as a rule of thumb. -This is a **non-issue** for users running Airbyte Docker. - ### Temporal DB Temporal maintains multiple idle connections. By the default value is `20` and you may want to lower or increase this number. One issue we noticed is -that temporal creates multiple pools and the number specified in the `SQL_MAX_IDLE_CONNS` environment variable of the `docker.compose.yaml` file +that temporal creates multiple pools and the number specified in the `SQL_MAX_IDLE_CONNS` environment variable and might end up allowing 4-5 times more connections than expected. If you want to increase the amount of allowed idle connections, you will also need to increase `SQL_MAX_CONNS` as well because `SQL_MAX_IDLE_CONNS` diff --git a/docs/understanding-airbyte/high-level-view.md b/docs/understanding-airbyte/high-level-view.md index d8b6e9e784f3..990d566fbca1 100644 --- a/docs/understanding-airbyte/high-level-view.md +++ b/docs/understanding-airbyte/high-level-view.md @@ -22,7 +22,7 @@ flowchart LR S[fa:fa-server Config API Server] D[(fa:fa-table Config & Jobs)] L[(fa:fa-server Launcher)] - O[(fa:fa-superpowers Orchestrator)] + OP[(fa:fa-superpowers Operation pod)] Q[(fa:fa-superpowers Queue)] T(fa:fa-calendar Temporal/Scheduler) W2[1..n Airbyte Workers] @@ -36,23 +36,21 @@ flowchart LR W2 -->|creates job| WL WL -->|queues workload| Q Q -->|reads from| L - L -->|launches| O - O -->|launches/reads from| Source - O -->|launches/reads from/writes to| Destination + L -->|launches| OP O -->|reports status to| WL ``` -- **Web App/UI** [`airbyte-webapp`, `airbyte-proxy`]: An easy-to-use graphical interface for interacting with the Airbyte API. -- **Config API Server** [`airbyte-server`, `airbyte-server-api`]: Handles connection between UI and API. Airbyte's main control plane. All operations in Airbyte such as creating sources, destinations, connections, managing configurations, etc.. are configured and invoked from the API. -- **Database Config & Jobs** [`airbyte-db`]: Stores all the connections information \(credentials, frequency...\). -- **Temporal Service** [`airbyte-temporal`]: Manages the task queue and workflows. -- **Worker** [`airbyte-worker`]: The worker connects to a source connector, pulls the data and writes it to a destination. -- **Workload API** [`airbyte-workload-api-server`]: Manages workloads, Airbyte's internal job abstraction. -- **Launcher** [`airbyte-workload-launcher`]: Launches workloads. +- **Web App/UI** [`airbyte-webapp`]: An easy-to-use graphical interface for interacting with the Airbyte Server. +- **Config API Server** [`airbyte-server`, `airbyte-server-api`]: Airbyte's main controller. All operations in Airbyte such as creating sources, destinations, connections, managing configurations, etc.. are configured and invoked from the API. +- **Database Config & Jobs** [`airbyte-db`]: Stores all the configuration \(credentials, frequency...\) and job history. +- **Temporal Service** [`airbyte-temporal`]: Manages the scheduling and sequencing task queues and workflows. +- **Worker** [`airbyte-worker`]: Reads from the task queues and executes the connection scheduling and sequencing logic, making calls to the workload API. +- **Workload API** [`airbyte-workload-api-server`]: The HTTP interface for enqueuing workloads — the discrete pods that run the connector operations. +- **Launcher** [`airbyte-workload-launcher`]: Consumes events from the workload API and interfaces with k8s to launch workloads. The diagram shows the steady-state operation of Airbyte, there are components not described you'll see in your deployment: -- **Cron** [`airbyte-cron`]: Clean the server and sync logs (when using local logs). Regularly updates connector definitions and sweeps old workloads. +- **Cron** [`airbyte-cron`]: Clean the server and sync logs (when using local logs). Regularly updates connector definitions and sweeps old workloads ensuring eventual consenus. - **Bootloader** [`airbyte-bootloader`]: Upgrade and Migrate the Database tables and confirm the enviroment is ready to work. This is a holistic high-level description of each component. For Airbyte deployed in Kubernetes the structure is very similar with a few changes. diff --git a/docs/understanding-airbyte/jobs.md b/docs/understanding-airbyte/jobs.md index dedf4d8814dd..5587230efe61 100644 --- a/docs/understanding-airbyte/jobs.md +++ b/docs/understanding-airbyte/jobs.md @@ -1,15 +1,71 @@ -# Workers & Jobs +# Workloads & Jobs -In Airbyte, all interactions with connectors are run as jobs performed by a Worker. Each job has a corresponding worker: +In Airbyte, all connector operations are run as 'workloads' — a pod encapsulating the discrete invocation of one or more connectors' interface method(s) (READ, WRITE, CHECK, DISCOVER, SPEC). -- Spec worker: retrieves the specification of a connector \(the inputs needed to run this connector\) -- Check connection worker: verifies that the inputs to a connector are valid and can be used to run a sync -- Discovery worker: retrieves the schema of the source underlying a connector -- Sync worker, used to sync data between a source and destination +Generally, there are 2 types of workload pods: -Thus, there are generally 4 types of workers. +- Replication (SYNC) pods + - Calls READ on the source and WRITE on the destination docker images +- Connector Job (CHECK, DISCOVER, SPEC) pods + - Calls the specified interface method on the connector image -**Note: Workers here refers to Airbyte workers. Temporal, which Airbyte uses under the hood for scheduling, has its own worker concept. This distinction is important.** +| ![](../.gitbook/assets/replication_mono_pod.png) | ![](../.gitbook/assets/connector_pod.png) | +|:-------------------------------------------------------------------------:|:----------------------------------------------------------------------------------------------------:| +| The source, destination and orchestrator all run in a single pod | The sidecar processes the output of the connector and forwards it back to the core platform | + +## Airbyte Middleware and Bookkeeping Containers + +Inside any connector operation pod, a special airbyte controlled container will run alongside the connector container(s) to process and interpret the results as well as perform necessary side effects. + +There are two types of middleware containers: +* The Container Orchestrator +* The Connector Sidecar + +#### Container Orchestrator + +An airbyte controlled container that sits between the source and destination connector containers inside a Replication Pod. + +Responsibilities: +* Hosts middleware capabilities such as scrubbing PPI, aggregating stats, transforming data, and checkpointing progress. +* Interprets and records connector operation results +* Handles miscellaneous side effects (e.g. logging, auth token refresh flows, etc. ) + +#### Connector Sidecar + +An airbyte controlled container that reads the output of a connector container inside a Connector Pod (CHECK, DISCOVER, SPEC). + +Responsibilities: +* Interprets and records connector operation results +* Handles miscellaneous side effects (e.g. logging, auth token refresh flows, etc. ) + + +## Workload launching architecture + +Workloads is Airbyte's next generation architecture. It is designed to be more scalable, reliable and maintainable than the previous Worker architecture. It performs particularly +well in low-resource environments. + +One big flaw of pre-Workloads architecture was the coupling of scheduling a job with starting a job. This complicated configuration, and created thundering herd situations for +resource-constrained environments with spiky job scheduling. + +Workloads is an Airbyte-internal job abstraction decoupling the number of running jobs (including those in queue), from the number of jobs that can be started. Jobs stay queued +until more resources are available or canceled. This allows for better back pressure and self-healing in resource constrained environments. + +Dumb workers now communicate with the Workload API Server to create a Workload instead of directly starting jobs. + +The **Workload API Server** places the job in a queue. The **Launcher** picks up the job and launches the resources needed to run the job e.g. Kuberenetes pods. It throttles +job creation based on available resources, minimising deadlock situations. + +With this set up, Airbyte now supports: +- configuring the maximum number of concurrent jobs via `MAX_CHECK_WORKERS` and `MAX_SYNC_WORKERS` environment variables.` +- configuring the maximum number of jobs that can be started at once via `` +- differentiating between job schedule time & job start time via the Workload API, though this is not exposed to the UI. + +This also unlocks future work to turn Workers asynchronous, which allows for more efficient steady-state resource usage. See +[this blogpost](https://airbyte.com/blog/introducing-workloads-how-airbyte-1-0-orchestrates-data-movement-jobs) for more detailed information. + +## Further configuring Jobs & Workloads + +Details on configuring jobs & workloads can be found [here](../operator-guides/configuring-airbyte.md). ## Sync Jobs @@ -222,130 +278,4 @@ To help illustrate what is possible, below are a couple examples of how the retr -## Worker Responsibilities - -The worker has the following responsibilities. - -1. Handle the process lifecycle for job-related processes. This includes starting, monitoring and shutting down processes. -2. Facilitate message passing to or from various processes, if required. \(more on this [below](jobs.md#worker-types)\). -3. Handle job-relation operational work such as: - 1. Basic schema validation. - 2. Returning job output, including any error messages. \(See [Airbyte Specification](airbyte-protocol.md) to understand the output of each worker type.\) - 3. Telemetry work e.g. tracking the number and size of records within a sync. - -Conceptually, **workers contain the complexity of all non-connector-related job operations**. This lets each connector be as simple as possible. - -### Worker Types - -There are 2 flavors of workers: - -1. **Synchronous Job Worker** - Workers that interact with a single connector \(e.g. spec, check, discover\). - - The worker extracts data from the connector and reports it to the scheduler. It does this by listening to the connector's STDOUT. - These jobs are synchronous as they are part of the configuration process and need to be immediately run to provide a good user experience. These are also all lightweight operations. - -2. **Asynchronous Job Worker** - Workers that interact with 2 connectors \(e.g. sync, clear\) - - The worker passes data \(via record messages\) from the source to the destination. It does this by listening on STDOUT of the source and writing to STDIN on the destination. - These jobs are asynchronous as they are often long-running resource-intensive processes. They are decoupled from the rest of the platform to simplify development and operation. - -For more information on the schema of the messages that are passed, refer to [Airbyte Specification](airbyte-protocol.md). - -### Worker-Job Architecture - -This section will depict the worker-job architecture as discussed above. Only the 2-connector version is shown. The single connector version is the same with one side removed. - -The source process should automatically exit after passing all of its messages. Similarly, the destination process shutdowns after receiving all records. Each process is given a shutdown grace period. The worker forces shutdown if this is exceeded. - -```mermaid -sequenceDiagram - Worker->>Source: docker run - Worker->>Destination: docker run - Source->>Worker: STDOUT - Worker->>Destination: STDIN - Worker->>Source: exit* - Worker->>Destination: exit* - Worker->>Result: json output -``` - -See the [architecture overview](high-level-view.md) for more information about workers. - -## Deployment Types - -Up to now, the term 'processes' has been used loosely. This section will describe this in more detail. - -Airbyte offers two deployment types. The underlying process implementations differ accordingly. - -1. The Docker deployment - Each process is a local process backed by a Docker container. As all processes are local, process communication is per standard unix pipes. -2. The Kubernetes deployment - Each process is a backed by a Kubernetes pod. As Kubernetes does not make process-locality guarantees, Airbyte has implemented mechanisms to hide the remote process execution. - See [this blogpost](https://airbyte.com/blog/scaling-data-pipelines-kubernetes) for more details. - -### Decoupling Worker and Job Processes - -Workers being responsible for all non-connector-related job operations means multiple jobs are operationally dependent on a single worker process. - -There are two downsides to this: - -1. Any issues to the parent worker process affects all job processes launched by the worker. -2. Unnecessary complexity of vertically scaling the worker process to deal with IO and processing requirements from multiple jobs. - -This gives us a potentially brittle system component that can be operationally tricky to manage. For example, since redeploying Airbyte terminates all worker processes, all running jobs are also terminated. - -The Container Orchestrator was introduced to solve this. - -#### Container Orchestrator - -When enabled, workers launch the Container Orchestrator process. - -The worker process delegates the [above listed responsibilities](#worker-responsibilities) to the orchestrator process. - -This decoupling introduces a new need for workers to track the orchestrator's, and the job's, state. This is done via a shared Cloud Storage store. - -Brief description of how this works, - -1. Workers constantly poll the Cloud Storage location for job state. -2. As an Orchestrator process executes, it writes status marker files to the Cloud Storage location i.e. `NOT_STARTED`, `INITIALIZING`, `RUNNING`, `SUCCESS`, `FAILURE`. -3. If the Orchestrator process runs into issues at any point, it writes a `FAILURE`. -4. If the Orchestrator process succeeds, it writes a job summary as part of the `SUCCESS` marker file. - -The Cloud Storage store is treated as the source-of-truth of execution state. - -The Container Orchestrator is only available for Airbyte Kubernetes today and automatically enabled when running the Airbyte Helm Charts deploys. - -Users running Airbyte Docker should be aware of the above pitfalls. - -## Workloads - -Workloads is Airbyte's next generation Worker architecture. It is designed to be more scalable, reliable and maintainable than the current Worker architecture. It performs particularly -well in low-resource environments. - -One big flaw of pre-Workloads architecture was the coupling of scheduling a job with starting a job. This complicated configuration, and created thundering herd situations for -resource-constrained environments with spiky job scheduling. - -Workloads is an Airbyte-internal job abstraction decoupling the number of running jobs (including those in queue), from the number of jobs that can be started. Jobs stay queued -until more resources are available or canceled. This allows for better back pressure and self-healing in resource constrained environments. - -Workers now communicate with the Workload API Server to create a Workload instead of directly starting jobs. - -The **Workload API Server** places the job in a queue. The **Launcher** picks up the job and launches the resources needed to run the job e.g. Kuberenetes pods. It throttles -job creation based on available resources, minimising deadlock situations. - -With this set up, Airbyte now supports: -- configuring the maximum number of concurrent jobs via `MAX_CHECK_WORKERS` and `MAX_SYNC_WORKERS` environment variables.` -- configuring the maximum number of jobs that can be started at once via `` -- differentiating between job schedule time & job start time via the Workload API, though this is not exposed to the UI. - -This also unlocks future work to turn Workers asynchronous, which allows for more efficient steady-state resource usage. See -[this blogpost](https://airbyte.com/blog/introducing-workloads-how-airbyte-1-0-orchestrates-data-movement-jobs) for more detailed information. - -## Configuring Jobs & Workers - -Details on configuring jobs & workers can be found [here](../operator-guides/configuring-airbyte.md). - -### Worker Parallization - -Airbyte exposes the following environment variable to change the maximum number of each type of worker allowed to run in parallel. -Tweaking these values might help you run more jobs in parallel and increase the workload of your Airbyte instance: -- `MAX_CHECK_WORKERS`: Maximum number of _Non-Sync_ workers allowed to run in parallel. Default to **5**. -- `MAX_SYNC_WORKERS`: Maximum number of _Sync_ workers allowed to run in parallel. Defaults to **10**. From 3219b1197f58a20982c66857935b428e6b92137d Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Wed, 30 Oct 2024 03:49:09 +0530 Subject: [PATCH 477/808] Source Orb: Migrate to manifest-only format with components (#47288) Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-orb/README.md | 80 +- .../source-orb/acceptance-test-config.yml | 2 +- .../connectors/source-orb/bootstrap.md | 29 - .../source-orb/{source_orb => }/components.py | 0 .../integration_tests/abnormal_state.json | 52 +- .../connectors/source-orb/main.py | 8 - .../connectors/source-orb/manifest.yaml | 3368 +++++++++++++++++ .../connectors/source-orb/metadata.yaml | 12 +- .../connectors/source-orb/poetry.lock | 1112 ------ .../connectors/source-orb/pyproject.toml | 33 - .../source-orb/source_orb/__init__.py | 8 - .../source-orb/source_orb/manifest.yaml | 871 ----- .../connectors/source-orb/source_orb/run.py | 15 - .../source-orb/source_orb/source.py | 18 - .../source-orb/unit_tests/__init__.py | 3 - .../source-orb/unit_tests/conftest.py | 330 -- .../unit_tests/test_incremental_streams.py | 62 - .../source-orb/unit_tests/test_source.py | 41 - .../source-orb/unit_tests/test_streams.py | 76 - docs/integrations/sources/orb.md | 39 +- 20 files changed, 3465 insertions(+), 2694 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-orb/bootstrap.md rename airbyte-integrations/connectors/source-orb/{source_orb => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-orb/main.py create mode 100644 airbyte-integrations/connectors/source-orb/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-orb/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-orb/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-orb/source_orb/__init__.py delete mode 100644 airbyte-integrations/connectors/source-orb/source_orb/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-orb/source_orb/run.py delete mode 100644 airbyte-integrations/connectors/source-orb/source_orb/source.py delete mode 100644 airbyte-integrations/connectors/source-orb/unit_tests/__init__.py delete mode 100644 airbyte-integrations/connectors/source-orb/unit_tests/conftest.py delete mode 100644 airbyte-integrations/connectors/source-orb/unit_tests/test_incremental_streams.py delete mode 100644 airbyte-integrations/connectors/source-orb/unit_tests/test_source.py delete mode 100644 airbyte-integrations/connectors/source-orb/unit_tests/test_streams.py diff --git a/airbyte-integrations/connectors/source-orb/README.md b/airbyte-integrations/connectors/source-orb/README.md index 6fba4ce53be9..e77a5faa3c25 100644 --- a/airbyte-integrations/connectors/source-orb/README.md +++ b/airbyte-integrations/connectors/source-orb/README.md @@ -1,89 +1,63 @@ # Orb source connector +This directory contains the manifest-only connector for `source-orb`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -This is the repository for the Orb configuration based source connector. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/orb). +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/orb). ## Local development -### Prerequisites -* Python (~=3.9) -* Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! +If you prefer to develop locally, you can follow the instructions below. -### Installing the connector -From this connector directory, run: -```bash -poetry install --with dev -``` - - -### Create credentials -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/orb) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_orb/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `integration_tests/sample_config.json` for a sample config file. - - -### Locally running the connector -``` -poetry run source-orb spec -poetry run source-orb check --config secrets/config.json -poetry run source-orb discover --config secrets/config.json -poetry run source-orb read --config secrets/config.json --catalog integration_tests/configured_catalog.json -``` +### Building the docker image -### Running unit tests -To run unit tests locally, from the connector directory run: -``` -poetry run pytest unit_tests -``` +You can build any manifest-only connector with `airbyte-ci`: -### Building the docker image 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: + ```bash airbyte-ci connectors --name=source-orb build ``` An image will be available on your host with the tag `airbyte/source-orb:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/orb) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. ### Running as a docker container -Then run any of the connector commands as follows: -``` + +Then run any of the standard source connector commands: + +```bash docker run --rm airbyte/source-orb:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-orb:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-orb:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-orb:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite -You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): -```bash -airbyte-ci connectors --name=source-orb test -``` +### Running the CI test suite -### Customizing acceptance Tests -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. +You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): -### Dependency Management -All of your dependencies should be managed via Poetry. -To add a new dependency, run: ```bash -poetry add +airbyte-ci connectors --name=source-orb test ``` -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-orb test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + +If you want to contribute changes to `source-orb`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-orb test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/orb.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. diff --git a/airbyte-integrations/connectors/source-orb/acceptance-test-config.yml b/airbyte-integrations/connectors/source-orb/acceptance-test-config.yml index 4080daab6166..695e5467ba61 100644 --- a/airbyte-integrations/connectors/source-orb/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-orb/acceptance-test-config.yml @@ -3,7 +3,7 @@ connector_image: airbyte/source-orb:dev tests: spec: - - spec_path: "source_orb/spec.json" + - spec_path: "manifest.yaml" backward_compatibility_tests_config: disable_for_version: "0.1.4" connection: diff --git a/airbyte-integrations/connectors/source-orb/bootstrap.md b/airbyte-integrations/connectors/source-orb/bootstrap.md deleted file mode 100644 index 84b5a9bf260a..000000000000 --- a/airbyte-integrations/connectors/source-orb/bootstrap.md +++ /dev/null @@ -1,29 +0,0 @@ -## Streams - -Orb is a REST API. Connector has the following streams, and all of them support incremental refresh. - -- [Subscriptions](https://docs.withorb.com/reference/list-subscriptions) -- [Plans](https://docs.withorb.com/reference/list-plans) -- [Customers](https://docs.withorb.com/reference/list-customers) -- [Credits Ledger Entries](https://docs.withorb.com/reference/view-credits-ledger) -- [Invoices](https://docs.withorb.com/docs/orb-docs/api-reference/schemas/invoice) - -Note that the Credits Ledger Entries must read all Customers for an incremental sync, but will only incrementally return new ledger entries for each customer. - -Since the Orb API does not allow querying objects based on `updated_at`, these incremental syncs will capture updates to newly created objects but not resources updated after object creation. Use a full resync in order to capture newly updated entries. - -## Pagination - -Orb's API uses cursor-based pagination, which is documented [here](https://docs.withorb.com/reference/pagination). - -## Enriching Credit Ledger entries - -The connector configuration includes two properties: `numeric_event_properties_keys` and `string_event_properties_keys`. - -When a ledger entry has an `event_id` attached to it (e.g. an automated decrement), the connector will make a follow-up request to enrich those entries with event properties corresponding to the keys provided. The connector assumes (and generates schema) that property values corresponding to the keys listed in `numeric_event_properties_keys` are numeric, and the property values corresponding to the keys listed in `string_event_properties_keys` are string typed. - -## Authentication - -This connector authenticates against the Orb API with an API key that can be issued via the Orb Admin Console. - -Please reach out to the Orb team at [team@withorb.com](mailto:team@withorb.com) to request an Orb Account and API Key. diff --git a/airbyte-integrations/connectors/source-orb/source_orb/components.py b/airbyte-integrations/connectors/source-orb/components.py similarity index 100% rename from airbyte-integrations/connectors/source-orb/source_orb/components.py rename to airbyte-integrations/connectors/source-orb/components.py diff --git a/airbyte-integrations/connectors/source-orb/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-orb/integration_tests/abnormal_state.json index 4d16164bd3e0..07a961d21360 100644 --- a/airbyte-integrations/connectors/source-orb/integration_tests/abnormal_state.json +++ b/airbyte-integrations/connectors/source-orb/integration_tests/abnormal_state.json @@ -1,14 +1,46 @@ -{ - "customers": { - "created_at": "2122-01-01T00:00:00+00:00" +[ + { + "type": "STREAM", + "stream": { + "stream_state": { + "created_at": "2122-01-01T00:00:00+00:00" + }, + "stream_descriptor": { + "name": "customers" + } + } }, - "plans": { - "created_at": "2122-01-01T00:00:00+00:00" + { + "type": "STREAM", + "stream": { + "stream_state": { + "created_at": "2122-01-01T00:00:00+00:00" + }, + "stream_descriptor": { + "name": "plans" + } + } }, - "subscriptions": { - "created_at": "2122-01-01T00:00:00+00:00" + { + "type": "STREAM", + "stream": { + "stream_state": { + "created_at": "2122-01-01T00:00:00+00:00" + }, + "stream_descriptor": { + "name": "subscriptions" + } + } }, - "invoices": { - "invoice_date": "2122-01-01T00:00:00+00:00" + { + "type": "STREAM", + "stream": { + "stream_state": { + "invoice_date": "2122-01-01T00:00:00+00:00" + }, + "stream_descriptor": { + "name": "invoices" + } + } } -} +] diff --git a/airbyte-integrations/connectors/source-orb/main.py b/airbyte-integrations/connectors/source-orb/main.py deleted file mode 100644 index 55d51ff75b4a..000000000000 --- a/airbyte-integrations/connectors/source-orb/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from source_orb.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-orb/manifest.yaml b/airbyte-integrations/connectors/source-orb/manifest.yaml new file mode 100644 index 000000000000..e3fb4e919fad --- /dev/null +++ b/airbyte-integrations/connectors/source-orb/manifest.yaml @@ -0,0 +1,3368 @@ +version: 4.3.2 +type: DeclarativeSource +check: + type: CheckStream + stream_names: + - subscriptions +definitions: + selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) }} + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + customers_stream: + type: DeclarativeStream + name: customers + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: customers + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) + }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the customer. + type: string + external_customer_id: + description: The ID of the customer in an external system. + type: + - string + - "null" + name: + description: The name of the customer. + type: string + email: + description: The email address of the customer. + type: + - string + - "null" + created_at: + description: The date and time when the customer account was created. + type: + - "null" + - string + format: date-time + payment_provider: + description: The payment provider used by the customer. + type: + - "null" + - string + payment_provider_id: + description: The ID of the customer in the payment provider's system. + type: + - "null" + - string + timezone: + description: The timezone setting of the customer. + type: + - "null" + - string + shipping_address: + description: The shipping address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the shipping address. + type: + - "null" + - string + country: + description: The country of the shipping address. + type: + - "null" + - string + line1: + description: The first line in the shipping address. + type: + - "null" + - string + line2: + description: The second line in the shipping address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the shipping address. + type: + - "null" + - string + state: + description: The state or region of the shipping address. + type: + - "null" + - string + billing_address: + description: The billing address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the billing address. + type: + - "null" + - string + country: + description: The country of the billing address. + type: + - "null" + - string + line1: + description: The first line in the billing address. + type: + - "null" + - string + line2: + description: The second line in the billing address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the billing address. + type: + - "null" + - string + state: + description: The state or region of the billing address. + type: + - "null" + - string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + subscriptions_stream: + type: DeclarativeStream + name: subscriptions + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: subscriptions + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) + }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the subscription. + type: string + created_at: + description: The date and time when the subscription was created. + type: + - "null" + - string + format: date-time + customer_id: + description: The unique identifier of the customer associated with the + subscription. + type: string + external_customer_id: + description: The external identifier of the customer associated with the + subscription. + type: + - "null" + - string + start_date: + description: The date and time when the subscription is set to start. + type: + - "null" + - string + format: date-time + end_date: + description: The date and time when the subscription is set to end. + type: + - "null" + - string + format: date-time + plan_id: + description: >- + The unique identifier of the subscription plan assigned to the + subscription. + type: string + status: + description: The current status of the subscription. + type: string + required: + - id + - created_at + transformations: + - type: AddFields + fields: + - path: + - customer_id + value: "{{ record['customer']['id'] }}" + - type: AddFields + fields: + - path: + - external_customer_id + value: "{{ record['customer']['external_customer_id'] }}" + - type: RemoveFields + field_pointers: + - - customer + - type: AddFields + fields: + - path: + - plan_id + value: "{{ record['plan']['id'] }}" + - type: RemoveFields + field_pointers: + - - plan + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + plans_stream: + type: DeclarativeStream + name: plans + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: plans + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) + }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique identifier of the plan + type: string + created_at: + description: The timestamp of when the plan was created + type: + - "null" + - string + format: date-time + description: + description: A short description of the plan + type: + - "null" + - string + name: + description: The name of the plan + type: + - "null" + - string + prices: + description: An array of pricing options for the plan + type: + - array + items: + type: object + properties: + id: + description: The unique identifier of the price option + type: string + product: + description: The product to which the plan belongs + type: object + properties: + id: + description: The unique identifier of the product + type: string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + invoices_stream: + type: DeclarativeStream + name: invoices + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: invoices + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) + }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique identifier of the invoice. + type: string + created_at: + description: The date and time when the invoice was created. + type: + - "null" + - string + format: date-time + invoice_date: + description: The date when the invoice was issued. + type: + - string + format: date-time + due_date: + description: The due date for the payment of the invoice. + type: + - string + format: date-time + invoice_pdf: + description: The URL to download the PDF version of the invoice. + type: + - "null" + - string + subtotal: + description: The subtotal amount before applying taxes or discounts. + type: + - string + total: + description: The total amount of the invoice including all charges. + type: + - string + amount_due: + description: The total amount due on the invoice. + type: + - string + status: + description: "The current status of the invoice (e.g., pending, paid, + voided)." + type: + - string + memo: + description: Any additional notes or comments associated with the invoice. + type: + - "null" + - string + issue_failed_at: + description: The date and time when issuing the invoice failed. + type: + - "null" + - string + format: date-time + sync_failed_at: + description: The date and time when syncing the invoice data failed. + type: + - "null" + - string + format: date-time + payment_failed_at: + description: The date and time when the payment for the invoice failed. + type: + - "null" + - string + format: date-time + payment_started_at: + description: The date and time when the payment process started for the + invoice. + type: + - "null" + - string + format: date-time + voided_at: + description: The date and time when the invoice was voided. + type: + - "null" + - string + format: date-time + paid_at: + description: The date and time when the invoice was paid. + type: + - "null" + - string + format: date-time + issued_at: + description: The date and time when the invoice was issued. + type: + - "null" + - string + format: date-time + hosted_invoice_url: + description: The URL to view the hosted invoice online. + type: + - "null" + - string + line_items: + description: The line items included in the invoice. + type: + - array + items: + type: object + properties: + id: + description: The unique identifier of the line item. + type: string + quantity: + description: The quantity of the item included in the invoice. + type: number + amount: + description: The amount for the line item. + type: string + name: + description: The name or description of the line item. + type: string + start_date: + description: The start date of the service period for the line item. + type: + - "null" + - string + format: date-time + end_date: + description: The end date of the service period for the line item. + type: + - "null" + - string + format: date-time + subscription: + description: Information about the subscription associated with the invoice. + type: + - object + - "null" + properties: + id: + description: The unique identifier of the subscription. + type: string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: invoice_date + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S+00:00" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: invoice_date[gte] + inject_into: request_parameter + partition_router: + - type: ListPartitionRouter + values: + - void + - paid + - issued + - synced + cursor_field: status + request_option: + type: RequestOption + inject_into: request_parameter + field_name: status[] + credits_ledger_entries_stream: + type: DeclarativeStream + name: credits_ledger_entries + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: customers/{{ stream_partition.customer_id }}/credits/ledger + request_parameters: + entry_status: committed + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) + }} + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: customer_id + stream: + type: DeclarativeStream + name: customers + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: customers + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", + {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the customer. + type: string + external_customer_id: + description: The ID of the customer in an external system. + type: + - string + - "null" + name: + description: The name of the customer. + type: string + email: + description: The email address of the customer. + type: + - string + - "null" + created_at: + description: The date and time when the customer account was created. + type: + - "null" + - string + format: date-time + payment_provider: + description: The payment provider used by the customer. + type: + - "null" + - string + payment_provider_id: + description: The ID of the customer in the payment provider's + system. + type: + - "null" + - string + timezone: + description: The timezone setting of the customer. + type: + - "null" + - string + shipping_address: + description: The shipping address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the shipping address. + type: + - "null" + - string + country: + description: The country of the shipping address. + type: + - "null" + - string + line1: + description: The first line in the shipping address. + type: + - "null" + - string + line2: + description: The second line in the shipping address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the shipping address. + type: + - "null" + - string + state: + description: The state or region of the shipping address. + type: + - "null" + - string + billing_address: + description: The billing address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the billing address. + type: + - "null" + - string + country: + description: The country of the billing address. + type: + - "null" + - string + line1: + description: The first line in the billing address. + type: + - "null" + - string + line2: + description: The second line in the billing address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the billing address. + type: + - "null" + - string + state: + description: The state or region of the billing address. + type: + - "null" + - string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique ID of the ledger entry + type: string + starting_balance: + description: The starting balance before the ledger entry + type: number + ending_balance: + description: The ending balance after the ledger entry + type: number + amount: + description: The amount of credits involved in the ledger entry + type: + - "null" + - number + block_expiry_date: + description: The date and time when the credit block will expire + type: + - "null" + - string + format: date-time + created_at: + description: The date and time when the ledger entry was created + type: + - "null" + - string + format: date-time + entry_type: + description: "The type of ledger entry (e.g., debit, credit)" + type: string + new_block_expiry_date: + description: The new expiry date and time of the credit block after the + ledger entry + type: + - "null" + - string + format: date-time + customer_id: + description: The ID of the customer associated with the ledger entry + type: string + credit_block_per_unit_cost_basis: + description: The cost per unit of the credit block + type: + - "null" + - number + description: + description: A description of the ledger entry + type: + - "null" + - string + credit_block_id: + description: The ID of the associated credit block + type: + - "null" + - string + required: + - id + - created_at + - customer_id + - credit_block_id + transformations: + - type: AddFields + fields: + - path: + - customer_id + value: "{{ record['customer']['id'] }}" + - type: RemoveFields + field_pointers: + - - customer + - type: AddFields + fields: + - path: + - block_expiry_date + value: "{{ record['credit_block']['expiry_date'] }}" + - type: AddFields + fields: + - path: + - credit_block_id + value: "{{ record['credit_block']['id'] }}" + - type: AddFields + fields: + - path: + - credit_block_per_unit_cost_basis + value: "{{ record['credit_block']['per_unit_cost_basis'] }}" + - type: RemoveFields + field_pointers: + - - credit_block + - type: AddFields + fields: + - path: + - event + - id + value: "{{ record['event_id'] }}" + - type: RemoveFields + field_pointers: + - - event_id + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + subscription_usage_stream: + type: DeclarativeStream + name: subscription_usage + primary_key: + - subscription_id + - billable_metric_id + - timeframe_start + - grouping_key + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: subscriptions/{{ stream_partition.subscription_id }}/usage + request_parameters: + group_by: "{{ config.get('subscription_usage_grouping_key', '') }}" + granularity: day + billable_metric_id: "{{ stream_partition.billable_metric_id }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.SubscriptionUsagePartitionRouter + plans_stream: + type: DeclarativeStream + name: plans + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: plans + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", + {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique identifier of the plan + type: string + created_at: + description: The timestamp of when the plan was created + type: + - "null" + - string + format: date-time + description: + description: A short description of the plan + type: + - "null" + - string + name: + description: The name of the plan + type: + - "null" + - string + prices: + description: An array of pricing options for the plan + type: + - array + items: + type: object + properties: + id: + description: The unique identifier of the price option + type: string + product: + description: The product to which the plan belongs + type: object + properties: + id: + description: The unique identifier of the product + type: string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + subscriptions_stream: + type: DeclarativeStream + name: subscriptions + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: subscriptions + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", + {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the subscription. + type: string + created_at: + description: The date and time when the subscription was created. + type: + - "null" + - string + format: date-time + customer_id: + description: The unique identifier of the customer associated with + the subscription. + type: string + external_customer_id: + description: The external identifier of the customer associated + with the subscription. + type: + - "null" + - string + start_date: + description: The date and time when the subscription is set to start. + type: + - "null" + - string + format: date-time + end_date: + description: The date and time when the subscription is set to end. + type: + - "null" + - string + format: date-time + plan_id: + description: >- + The unique identifier of the subscription plan assigned to the + subscription. + type: string + status: + description: The current status of the subscription. + type: string + required: + - id + - created_at + transformations: + - type: AddFields + fields: + - path: + - customer_id + value: "{{ record['customer']['id'] }}" + - type: AddFields + fields: + - path: + - external_customer_id + value: "{{ record['customer']['external_customer_id'] }}" + - type: RemoveFields + field_pointers: + - - customer + - type: AddFields + fields: + - path: + - plan_id + value: "{{ record['plan']['id'] }}" + - type: RemoveFields + field_pointers: + - - plan + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + quantity: + description: Quantity of the billable metric used during the specified + timeframe + type: number + timeframe_start: + description: Start timestamp of the timeframe during which the usage data + is captured + type: string + format: date-time + timeframe_end: + description: End timestamp of the timeframe during which the usage data + is captured + type: string + format: date-time + billable_metric_name: + description: Name of the billable metric associated with the subscription + usage + type: string + billable_metric_id: + description: >- + Unique identifier for the billable metric associated with the subscription + usage + type: string + subscription_id: + description: Unique identifier for the subscription the usage data belongs + to + type: string + grouping_key: + type: + - "null" + - string + required: + - timeframe_start + - timeframe_end + - billable_metric_id + - subscription_id + transformations: + - type: RemoveFields + field_pointers: + - - usage + - type: CustomTransformation + class_name: source_declarative_manifest.components.SubscriptionUsageTransformation + subscription_id: "{{ stream_partition.subscription_id }}" + - type: AddFields + fields: + - path: + - grouping_key + value: "{{ config.get('subscription_usage_grouping_key', '') }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: timeframe_start + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: timeframe_start + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: timeframe_end + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +streams: +- type: DeclarativeStream + name: subscriptions + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: subscriptions + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the subscription. + type: string + created_at: + description: The date and time when the subscription was created. + type: + - "null" + - string + format: date-time + customer_id: + description: The unique identifier of the customer associated with the subscription. + type: string + external_customer_id: + description: The external identifier of the customer associated with the + subscription. + type: + - "null" + - string + start_date: + description: The date and time when the subscription is set to start. + type: + - "null" + - string + format: date-time + end_date: + description: The date and time when the subscription is set to end. + type: + - "null" + - string + format: date-time + plan_id: + description: >- + The unique identifier of the subscription plan assigned to the + subscription. + type: string + status: + description: The current status of the subscription. + type: string + required: + - id + - created_at + transformations: + - type: AddFields + fields: + - path: + - customer_id + value: "{{ record['customer']['id'] }}" + type: AddedFieldDefinition + - type: AddFields + fields: + - path: + - external_customer_id + value: "{{ record['customer']['external_customer_id'] }}" + type: AddedFieldDefinition + - type: RemoveFields + field_pointers: + - - customer + - type: AddFields + fields: + - path: + - plan_id + value: "{{ record['plan']['id'] }}" + type: AddedFieldDefinition + - type: RemoveFields + field_pointers: + - - plan + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter +- type: DeclarativeStream + name: customers + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: customers + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the customer. + type: string + external_customer_id: + description: The ID of the customer in an external system. + type: + - string + - "null" + name: + description: The name of the customer. + type: string + email: + description: The email address of the customer. + type: + - string + - "null" + created_at: + description: The date and time when the customer account was created. + type: + - "null" + - string + format: date-time + payment_provider: + description: The payment provider used by the customer. + type: + - "null" + - string + payment_provider_id: + description: The ID of the customer in the payment provider's system. + type: + - "null" + - string + timezone: + description: The timezone setting of the customer. + type: + - "null" + - string + shipping_address: + description: The shipping address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the shipping address. + type: + - "null" + - string + country: + description: The country of the shipping address. + type: + - "null" + - string + line1: + description: The first line in the shipping address. + type: + - "null" + - string + line2: + description: The second line in the shipping address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the shipping address. + type: + - "null" + - string + state: + description: The state or region of the shipping address. + type: + - "null" + - string + billing_address: + description: The billing address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the billing address. + type: + - "null" + - string + country: + description: The country of the billing address. + type: + - "null" + - string + line1: + description: The first line in the billing address. + type: + - "null" + - string + line2: + description: The second line in the billing address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the billing address. + type: + - "null" + - string + state: + description: The state or region of the billing address. + type: + - "null" + - string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter +- type: DeclarativeStream + name: subscription_usage + primary_key: + - subscription_id + - billable_metric_id + - timeframe_start + - grouping_key + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: subscriptions/{{ stream_partition.subscription_id }}/usage + request_parameters: + group_by: "{{ config.get('subscription_usage_grouping_key', '') }}" + granularity: day + billable_metric_id: "{{ stream_partition.billable_metric_id }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + - type: CustomPartitionRouter + class_name: source_declarative_manifest.components.SubscriptionUsagePartitionRouter + plans_stream: + type: DeclarativeStream + name: plans + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: plans + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", + {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique identifier of the plan + type: string + created_at: + description: The timestamp of when the plan was created + type: + - "null" + - string + format: date-time + description: + description: A short description of the plan + type: + - "null" + - string + name: + description: The name of the plan + type: + - "null" + - string + prices: + description: An array of pricing options for the plan + type: + - array + items: + type: object + properties: + id: + description: The unique identifier of the price option + type: string + product: + description: The product to which the plan belongs + type: object + properties: + id: + description: The unique identifier of the product + type: string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + subscriptions_stream: + type: DeclarativeStream + name: subscriptions + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: subscriptions + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", + {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the subscription. + type: string + created_at: + description: The date and time when the subscription was created. + type: + - "null" + - string + format: date-time + customer_id: + description: The unique identifier of the customer associated with + the subscription. + type: string + external_customer_id: + description: The external identifier of the customer associated with + the subscription. + type: + - "null" + - string + start_date: + description: The date and time when the subscription is set to start. + type: + - "null" + - string + format: date-time + end_date: + description: The date and time when the subscription is set to end. + type: + - "null" + - string + format: date-time + plan_id: + description: >- + The unique identifier of the subscription plan assigned to the + subscription. + type: string + status: + description: The current status of the subscription. + type: string + required: + - id + - created_at + transformations: + - type: AddFields + fields: + - path: + - customer_id + value: "{{ record['customer']['id'] }}" + type: AddedFieldDefinition + - type: AddFields + fields: + - path: + - external_customer_id + value: "{{ record['customer']['external_customer_id'] }}" + type: AddedFieldDefinition + - type: RemoveFields + field_pointers: + - - customer + - type: AddFields + fields: + - path: + - plan_id + value: "{{ record['plan']['id'] }}" + type: AddedFieldDefinition + - type: RemoveFields + field_pointers: + - - plan + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + quantity: + description: Quantity of the billable metric used during the specified timeframe + type: number + timeframe_start: + description: Start timestamp of the timeframe during which the usage data + is captured + type: string + format: date-time + timeframe_end: + description: End timestamp of the timeframe during which the usage data + is captured + type: string + format: date-time + billable_metric_name: + description: Name of the billable metric associated with the subscription + usage + type: string + billable_metric_id: + description: >- + Unique identifier for the billable metric associated with the subscription + usage + type: string + subscription_id: + description: Unique identifier for the subscription the usage data belongs + to + type: string + grouping_key: + type: + - "null" + - string + required: + - timeframe_start + - timeframe_end + - billable_metric_id + - subscription_id + transformations: + - type: RemoveFields + field_pointers: + - - usage + - type: CustomTransformation + class_name: source_declarative_manifest.components.SubscriptionUsageTransformation + subscription_id: "{{ stream_partition.subscription_id }}" + - type: AddFields + fields: + - path: + - grouping_key + value: "{{ config.get('subscription_usage_grouping_key', '') }}" + type: AddedFieldDefinition + incremental_sync: + type: DatetimeBasedCursor + cursor_field: timeframe_start + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: timeframe_start + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: timeframe_end + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: plans + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: plans + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique identifier of the plan + type: string + created_at: + description: The timestamp of when the plan was created + type: + - "null" + - string + format: date-time + description: + description: A short description of the plan + type: + - "null" + - string + name: + description: The name of the plan + type: + - "null" + - string + prices: + description: An array of pricing options for the plan + type: + - array + items: + type: object + properties: + id: + description: The unique identifier of the price option + type: string + product: + description: The product to which the plan belongs + type: object + properties: + id: + description: The unique identifier of the product + type: string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter +- type: DeclarativeStream + name: invoices + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: invoices + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique identifier of the invoice. + type: string + created_at: + description: The date and time when the invoice was created. + type: + - "null" + - string + format: date-time + invoice_date: + description: The date when the invoice was issued. + type: + - string + format: date-time + due_date: + description: The due date for the payment of the invoice. + type: + - string + format: date-time + invoice_pdf: + description: The URL to download the PDF version of the invoice. + type: + - "null" + - string + subtotal: + description: The subtotal amount before applying taxes or discounts. + type: + - string + total: + description: The total amount of the invoice including all charges. + type: + - string + amount_due: + description: The total amount due on the invoice. + type: + - string + status: + description: "The current status of the invoice (e.g., pending, paid, voided)." + type: + - string + memo: + description: Any additional notes or comments associated with the invoice. + type: + - "null" + - string + issue_failed_at: + description: The date and time when issuing the invoice failed. + type: + - "null" + - string + format: date-time + sync_failed_at: + description: The date and time when syncing the invoice data failed. + type: + - "null" + - string + format: date-time + payment_failed_at: + description: The date and time when the payment for the invoice failed. + type: + - "null" + - string + format: date-time + payment_started_at: + description: The date and time when the payment process started for the + invoice. + type: + - "null" + - string + format: date-time + voided_at: + description: The date and time when the invoice was voided. + type: + - "null" + - string + format: date-time + paid_at: + description: The date and time when the invoice was paid. + type: + - "null" + - string + format: date-time + issued_at: + description: The date and time when the invoice was issued. + type: + - "null" + - string + format: date-time + hosted_invoice_url: + description: The URL to view the hosted invoice online. + type: + - "null" + - string + line_items: + description: The line items included in the invoice. + type: + - array + items: + type: object + properties: + id: + description: The unique identifier of the line item. + type: string + quantity: + description: The quantity of the item included in the invoice. + type: number + amount: + description: The amount for the line item. + type: string + name: + description: The name or description of the line item. + type: string + start_date: + description: The start date of the service period for the line item. + type: + - "null" + - string + format: date-time + end_date: + description: The end date of the service period for the line item. + type: + - "null" + - string + format: date-time + subscription: + description: Information about the subscription associated with the invoice. + type: + - object + - "null" + properties: + id: + description: The unique identifier of the subscription. + type: string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: invoice_date + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S+00:00" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: invoice_date[gte] + inject_into: request_parameter + partition_router: + - type: ListPartitionRouter + values: + - void + - paid + - issued + - synced + cursor_field: status + request_option: + type: RequestOption + inject_into: request_parameter + field_name: status[] +- type: DeclarativeStream + name: credits_ledger_entries + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: customers/{{ stream_partition.customer_id }}/credits/ledger + request_parameters: + entry_status: committed + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) }} + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: customer_id + stream: + type: DeclarativeStream + name: customers + primary_key: id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.billwithorb.com/v1/ + http_method: GET + request_headers: {} + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + request_body_json: {} + path: customers + request_parameters: {} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 50 + cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", + {}) }}' + stop_condition: >- + {{ not response.get("pagination_metadata", {}).get("next_cursor", + {}) }} + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the customer. + type: string + external_customer_id: + description: The ID of the customer in an external system. + type: + - string + - "null" + name: + description: The name of the customer. + type: string + email: + description: The email address of the customer. + type: + - string + - "null" + created_at: + description: The date and time when the customer account was created. + type: + - "null" + - string + format: date-time + payment_provider: + description: The payment provider used by the customer. + type: + - "null" + - string + payment_provider_id: + description: The ID of the customer in the payment provider's system. + type: + - "null" + - string + timezone: + description: The timezone setting of the customer. + type: + - "null" + - string + shipping_address: + description: The shipping address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the shipping address. + type: + - "null" + - string + country: + description: The country of the shipping address. + type: + - "null" + - string + line1: + description: The first line in the shipping address. + type: + - "null" + - string + line2: + description: The second line in the shipping address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the shipping address. + type: + - "null" + - string + state: + description: The state or region of the shipping address. + type: + - "null" + - string + billing_address: + description: The billing address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the billing address. + type: + - "null" + - string + country: + description: The country of the billing address. + type: + - "null" + - string + line1: + description: The first line in the billing address. + type: + - "null" + - string + line2: + description: The second line in the billing address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the billing address. + type: + - "null" + - string + state: + description: The state or region of the billing address. + type: + - "null" + - string + required: + - id + - created_at + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique ID of the ledger entry + type: string + starting_balance: + description: The starting balance before the ledger entry + type: number + ending_balance: + description: The ending balance after the ledger entry + type: number + amount: + description: The amount of credits involved in the ledger entry + type: + - "null" + - number + block_expiry_date: + description: The date and time when the credit block will expire + type: + - "null" + - string + format: date-time + created_at: + description: The date and time when the ledger entry was created + type: + - "null" + - string + format: date-time + entry_type: + description: "The type of ledger entry (e.g., debit, credit)" + type: string + new_block_expiry_date: + description: The new expiry date and time of the credit block after the + ledger entry + type: + - "null" + - string + format: date-time + customer_id: + description: The ID of the customer associated with the ledger entry + type: string + credit_block_per_unit_cost_basis: + description: The cost per unit of the credit block + type: + - "null" + - number + description: + description: A description of the ledger entry + type: + - "null" + - string + credit_block_id: + description: The ID of the associated credit block + type: + - "null" + - string + required: + - id + - created_at + - customer_id + - credit_block_id + transformations: + - type: AddFields + fields: + - path: + - customer_id + value: "{{ record['customer']['id'] }}" + type: AddedFieldDefinition + - type: RemoveFields + field_pointers: + - - customer + - type: AddFields + fields: + - path: + - block_expiry_date + value: "{{ record['credit_block']['expiry_date'] }}" + type: AddedFieldDefinition + - type: AddFields + fields: + - path: + - credit_block_id + value: "{{ record['credit_block']['id'] }}" + type: AddedFieldDefinition + - type: AddFields + fields: + - path: + - credit_block_per_unit_cost_basis + value: "{{ record['credit_block']['per_unit_cost_basis'] }}" + type: AddedFieldDefinition + - type: RemoveFields + field_pointers: + - - credit_block + - type: AddFields + fields: + - path: + - event + - id + value: "{{ record['event_id'] }}" + type: AddedFieldDefinition + - type: RemoveFields + field_pointers: + - - event_id + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + lookback_window: P{{ config.get('lookback_window_days', 0) }}D + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%dT%H:%M:%S.%fZ" + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: created_at[gte] + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: created_at[lte] + inject_into: request_parameter +schemas: + subscriptions: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the subscription. + type: string + created_at: + description: The date and time when the subscription was created. + type: + - "null" + - string + format: date-time + customer_id: + description: The unique identifier of the customer associated with the subscription. + type: string + external_customer_id: + description: The external identifier of the customer associated with the subscription. + type: + - "null" + - string + start_date: + description: The date and time when the subscription is set to start. + type: + - "null" + - string + format: date-time + end_date: + description: The date and time when the subscription is set to end. + type: + - "null" + - string + format: date-time + plan_id: + description: >- + The unique identifier of the subscription plan assigned to the + subscription. + type: string + status: + description: The current status of the subscription. + type: string + required: + - id + - created_at + customers: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + id: + description: The unique identifier of the customer. + type: string + external_customer_id: + description: The ID of the customer in an external system. + type: + - string + - "null" + name: + description: The name of the customer. + type: string + email: + description: The email address of the customer. + type: + - string + - "null" + created_at: + description: The date and time when the customer account was created. + type: + - "null" + - string + format: date-time + payment_provider: + description: The payment provider used by the customer. + type: + - "null" + - string + payment_provider_id: + description: The ID of the customer in the payment provider's system. + type: + - "null" + - string + timezone: + description: The timezone setting of the customer. + type: + - "null" + - string + shipping_address: + description: The shipping address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the shipping address. + type: + - "null" + - string + country: + description: The country of the shipping address. + type: + - "null" + - string + line1: + description: The first line in the shipping address. + type: + - "null" + - string + line2: + description: The second line in the shipping address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the shipping address. + type: + - "null" + - string + state: + description: The state or region of the shipping address. + type: + - "null" + - string + billing_address: + description: The billing address of the customer. + type: + - "null" + - object + properties: + city: + description: The city of the billing address. + type: + - "null" + - string + country: + description: The country of the billing address. + type: + - "null" + - string + line1: + description: The first line in the billing address. + type: + - "null" + - string + line2: + description: The second line in the billing address if applicable. + type: + - "null" + - string + postal_code: + description: The postal code of the billing address. + type: + - "null" + - string + state: + description: The state or region of the billing address. + type: + - "null" + - string + required: + - id + - created_at + subscription_usage: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + additionalProperties: true + properties: + quantity: + description: Quantity of the billable metric used during the specified timeframe + type: number + timeframe_start: + description: Start timestamp of the timeframe during which the usage data + is captured + type: string + format: date-time + timeframe_end: + description: End timestamp of the timeframe during which the usage data is + captured + type: string + format: date-time + billable_metric_name: + description: Name of the billable metric associated with the subscription + usage + type: string + billable_metric_id: + description: >- + Unique identifier for the billable metric associated with the subscription + usage + type: string + subscription_id: + description: Unique identifier for the subscription the usage data belongs + to + type: string + grouping_key: + type: + - "null" + - string + required: + - billable_metric_id + - subscription_id + plans: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique identifier of the plan + type: string + created_at: + description: The timestamp of when the plan was created + type: + - "null" + - string + format: date-time + description: + description: A short description of the plan + type: + - "null" + - string + name: + description: The name of the plan + type: + - "null" + - string + prices: + description: An array of pricing options for the plan + type: + - array + items: + type: object + properties: + id: + description: The unique identifier of the price option + type: string + product: + description: The product to which the plan belongs + type: object + properties: + id: + description: The unique identifier of the product + type: string + required: + - id + - created_at + invoices: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique identifier of the invoice. + type: string + created_at: + description: The date and time when the invoice was created. + type: + - "null" + - string + format: date-time + invoice_date: + description: The date when the invoice was issued. + type: + - string + format: date-time + due_date: + description: The due date for the payment of the invoice. + type: + - string + format: date-time + invoice_pdf: + description: The URL to download the PDF version of the invoice. + type: + - "null" + - string + subtotal: + description: The subtotal amount before applying taxes or discounts. + type: + - string + total: + description: The total amount of the invoice including all charges. + type: + - string + amount_due: + description: The total amount due on the invoice. + type: + - string + status: + description: "The current status of the invoice (e.g., pending, paid, voided)." + type: + - string + memo: + description: Any additional notes or comments associated with the invoice. + type: + - "null" + - string + issue_failed_at: + description: The date and time when issuing the invoice failed. + type: + - "null" + - string + format: date-time + sync_failed_at: + description: The date and time when syncing the invoice data failed. + type: + - "null" + - string + format: date-time + payment_failed_at: + description: The date and time when the payment for the invoice failed. + type: + - "null" + - string + format: date-time + payment_started_at: + description: The date and time when the payment process started for the invoice. + type: + - "null" + - string + format: date-time + voided_at: + description: The date and time when the invoice was voided. + type: + - "null" + - string + format: date-time + paid_at: + description: The date and time when the invoice was paid. + type: + - "null" + - string + format: date-time + issued_at: + description: The date and time when the invoice was issued. + type: + - "null" + - string + format: date-time + hosted_invoice_url: + description: The URL to view the hosted invoice online. + type: + - "null" + - string + line_items: + description: The line items included in the invoice. + type: + - array + items: + type: object + properties: + id: + description: The unique identifier of the line item. + type: string + quantity: + description: The quantity of the item included in the invoice. + type: number + amount: + description: The amount for the line item. + type: string + name: + description: The name or description of the line item. + type: string + start_date: + description: The start date of the service period for the line item. + type: + - "null" + - string + format: date-time + end_date: + description: The end date of the service period for the line item. + type: + - "null" + - string + format: date-time + subscription: + description: Information about the subscription associated with the invoice. + type: + - object + - "null" + properties: + id: + description: The unique identifier of the subscription. + type: string + required: + - id + - created_at + credits_ledger_entries: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + description: The unique ID of the ledger entry + type: string + starting_balance: + description: The starting balance before the ledger entry + type: number + ending_balance: + description: The ending balance after the ledger entry + type: number + amount: + description: The amount of credits involved in the ledger entry + type: + - "null" + - number + block_expiry_date: + description: The date and time when the credit block will expire + type: + - "null" + - string + format: date-time + created_at: + description: The date and time when the ledger entry was created + type: + - "null" + - string + format: date-time + entry_type: + description: "The type of ledger entry (e.g., debit, credit)" + type: string + new_block_expiry_date: + description: The new expiry date and time of the credit block after the ledger + entry + type: + - "null" + - string + format: date-time + customer_id: + description: The ID of the customer associated with the ledger entry + type: string + credit_block_per_unit_cost_basis: + description: The cost per unit of the credit block + type: + - "null" + - number + description: + description: A description of the ledger entry + type: + - "null" + - string + credit_block_id: + description: The ID of the associated credit block + type: + - "null" + - string + required: + - id + - created_at + - customer_id + - credit_block_id +spec: + type: Spec + documentation_url: https://docs.withorb.com/ + connection_specification: + $schema: http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + required: + - start_date + - api_key + properties: + api_key: + type: string + title: Orb API Key + description: Orb API Key, issued from the Orb admin console. + airbyte_secret: true + order: 0 + start_date: + type: string + title: Start Date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + description: UTC date and time in the format 2022-03-01T00:00:00Z. Any data + with created_at before this data will not be synced. For Subscription Usage, + this becomes the `timeframe_start` API parameter. + examples: + - "2022-03-01T00:00:00Z" + order: 1 + end_date: + type: string + title: End Date + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + description: UTC date and time in the format 2022-03-01T00:00:00Z. Any data + with created_at after this data will not be synced. For Subscription Usage, + this becomes the `timeframe_start` API parameter. + examples: + - "2024-03-01T00:00:00Z" + order: 2 + lookback_window_days: + type: integer + title: Lookback Window (in days) + default: 0 + minimum: 0 + description: When set to N, the connector will always refresh resources created + within the past N days. By default, updated objects that are not newly created + are not incrementally synced. + order: 3 + string_event_properties_keys: + type: array + items: + type: string + title: Event properties keys (string values) + description: Property key names to extract from all events, in order to enrich + ledger entries corresponding to an event deduction. + order: 4 + numeric_event_properties_keys: + type: array + items: + type: string + title: Event properties keys (numeric values) + description: Property key names to extract from all events, in order to enrich + ledger entries corresponding to an event deduction. + order: 5 + subscription_usage_grouping_key: + type: string + title: Subscription usage grouping key (string value) + description: Property key name to group subscription usage by. + order: 6 + plan_id: + type: string + title: Orb Plan ID for Subscription Usage (string value) + description: Orb Plan ID to filter subscriptions that should have usage fetched. + order: 7 diff --git a/airbyte-integrations/connectors/source-orb/metadata.yaml b/airbyte-integrations/connectors/source-orb/metadata.yaml index 8effe1fbcfa3..fd5a3f7acee4 100644 --- a/airbyte-integrations/connectors/source-orb/metadata.yaml +++ b/airbyte-integrations/connectors/source-orb/metadata.yaml @@ -1,10 +1,10 @@ data: connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: 7f0455fb-4518-4ec0-b7a3-d808bf8081cc - dockerImageTag: 2.0.14 + dockerImageTag: 2.1.0 dockerRepository: airbyte/source-orb githubIssueLabel: source-orb icon: orb.svg @@ -12,7 +12,7 @@ data: name: Orb remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-orb registryOverrides: cloud: @@ -22,13 +22,15 @@ data: releases: breakingChanges: 2.0.0: - message: This version changes the datatype of the `credit_block_per_unit_cost_basis` field in the `credits_ledger_entries` from `string` to `number`. + message: + This version changes the datatype of the `credit_block_per_unit_cost_basis` + field in the `credits_ledger_entries` from `string` to `number`. upgradeDeadline: "2024-12-30" releaseStage: alpha documentationUrl: https://docs.airbyte.com/integrations/sources/orb tags: - - language:python - cdk:low-code + - language:manifest-only ab_internal: sl: 100 ql: 100 diff --git a/airbyte-integrations/connectors/source-orb/poetry.lock b/airbyte-integrations/connectors/source-orb/poetry.lock deleted file mode 100644 index fde056326f1b..000000000000 --- a/airbyte-integrations/connectors/source-orb/poetry.lock +++ /dev/null @@ -1,1112 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "0.80.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-0.80.0-py3-none-any.whl", hash = "sha256:060e92323a73674fa4e9e2e4a1eb312b9b9d072c9bbe5fa28f54ef21cb4974f3"}, - {file = "airbyte_cdk-0.80.0.tar.gz", hash = "sha256:1383512a83917fecca5b24cea4c72aa5c561cf96dd464485fbcefda48fe574c5"}, -] - -[package.dependencies] -airbyte-protocol-models = "0.5.1" -backoff = "*" -cachetools = "*" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.0.271)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.5.1" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.5.1-py3-none-any.whl", hash = "sha256:dfe84e130e51ce2ae81a06d5aa36f6c5ce3152b9e36e6f0195fad6c3dab0927e"}, - {file = "airbyte_protocol_models-0.5.1.tar.gz", hash = "sha256:7c8b16c7c1c7956b1996052e40585a3a93b1e44cb509c4e97c1ee4fe507ea086"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "faker" -version = "30.8.1" -description = "Faker is a Python package that generates fake data for you." -optional = false -python-versions = ">=3.8" -files = [ - {file = "Faker-30.8.1-py3-none-any.whl", hash = "sha256:4f7f133560b9d4d2a915581f4ba86f9a6a83421b89e911f36c4c96cff58135a5"}, - {file = "faker-30.8.1.tar.gz", hash = "sha256:93e8b70813f76d05d98951154681180cb795cfbcff3eced7680d963bcc0da2a9"}, -] - -[package.dependencies] -python-dateutil = ">=2.4" -typing-extensions = "*" - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "packaging" -version = "24.1" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-faker" -version = "2.0.0" -description = "Faker integration with the pytest framework." -optional = false -python-versions = "*" -files = [ - {file = "pytest-faker-2.0.0.tar.gz", hash = "sha256:6b37bb89d94f96552bfa51f8e8b89d32addded8ddb58a331488299ef0137d9b6"}, -] - -[package.dependencies] -Faker = ">=0.7.3" - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "responses" -version = "0.13.4" -description = "A utility library for mocking out the `requests` Python library." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "responses-0.13.4-py2.py3-none-any.whl", hash = "sha256:d8d0f655710c46fd3513b9202a7f0dcedd02ca0f8cf4976f27fa8ab5b81e656d"}, - {file = "responses-0.13.4.tar.gz", hash = "sha256:9476775d856d3c24ae660bbebe29fb6d789d4ad16acd723efbfb6ee20990b899"}, -] - -[package.dependencies] -requests = ">=2.0" -six = "*" -urllib3 = ">=1.25.10" - -[package.extras] -tests = ["coverage (>=3.7.1,<6.0.0)", "flake8", "mypy", "pytest (>=4.6)", "pytest (>=4.6,<5.0)", "pytest-cov", "pytest-localserver", "types-mock", "types-requests", "types-six"] - -[[package]] -name = "setuptools" -version = "75.3.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, - {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "a2e250b05457b6d6d79c1c658812df875ea2a40eb372a76e13c57347f0744a18" diff --git a/airbyte-integrations/connectors/source-orb/pyproject.toml b/airbyte-integrations/connectors/source-orb/pyproject.toml deleted file mode 100644 index abf1c1ac1d86..000000000000 --- a/airbyte-integrations/connectors/source-orb/pyproject.toml +++ /dev/null @@ -1,33 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "2.0.14" -name = "source-orb" -description = "Source implementation for Orb." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/orb" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_orb" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "0.80.0" -pendulum = "==2.1.2" - -[tool.poetry.scripts] -source-orb = "source_orb.run:run" - -[tool.poetry.group.dev.dependencies] -pytest = "^6.1" -requests-mock = "^1.11.0" -pytest-faker = "==2.0.0" -pytest-mock = "^3.6.1" -pendulum = "==2.1.2" -responses = "^0.13.3" - diff --git a/airbyte-integrations/connectors/source-orb/source_orb/__init__.py b/airbyte-integrations/connectors/source-orb/source_orb/__init__.py deleted file mode 100644 index 0444e121319c..000000000000 --- a/airbyte-integrations/connectors/source-orb/source_orb/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceOrb - -__all__ = ["SourceOrb"] diff --git a/airbyte-integrations/connectors/source-orb/source_orb/manifest.yaml b/airbyte-integrations/connectors/source-orb/source_orb/manifest.yaml deleted file mode 100644 index 6de482574aae..000000000000 --- a/airbyte-integrations/connectors/source-orb/source_orb/manifest.yaml +++ /dev/null @@ -1,871 +0,0 @@ -version: 0.51.2 - -type: DeclarativeSource - -check: - type: CheckStream - stream_names: - - subscriptions - -definitions: - selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: cursor - page_size_option: - type: RequestOption - field_name: limit - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 50 - cursor_value: '{{ response.get("pagination_metadata", {}).get("next_cursor", {}) }}' - stop_condition: >- - {{ not response.get("pagination_metadata", {}).get("next_cursor", {}) }} - requester: - type: HttpRequester - url_base: https://api.billwithorb.com/v1/ - http_method: GET - request_headers: {} - authenticator: - type: BearerAuthenticator - api_token: "{{ config['api_key'] }}" - request_body_json: {} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: created_at - lookback_window: P{{ config.get('lookback_window_days', 0) }}D - cursor_datetime_formats: - - "%Y-%m-%d %H:%M:%S.%f+00:00" - - "%Y-%m-%dT%H:%M:%S.%fZ" - - "%Y-%m-%dT%H:%M:%SZ" - datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - start_time_option: - type: RequestOption - field_name: created_at[gte] - inject_into: request_parameter - end_datetime: - type: MinMaxDatetime - datetime: "{{ config['end_date'] if config['end_date'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - end_time_option: - type: RequestOption - field_name: created_at[lte] - inject_into: request_parameter - customers_stream: - type: DeclarativeStream - name: customers - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: customers - request_parameters: {} - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/customers" - incremental_sync: - $ref: "#/definitions/incremental_sync" - subscriptions_stream: - type: DeclarativeStream - name: subscriptions - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: subscriptions - request_parameters: {} - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/subscriptions" - transformations: - - type: AddFields - fields: - - path: - - customer_id - value: "{{ record['customer']['id'] }}" - - type: AddFields - fields: - - path: - - external_customer_id - value: "{{ record['customer']['external_customer_id'] }}" - - type: RemoveFields - field_pointers: - - - customer - - type: AddFields - fields: - - path: - - plan_id - value: "{{ record['plan']['id'] }}" - - type: RemoveFields - field_pointers: - - - plan - incremental_sync: - $ref: "#/definitions/incremental_sync" - plans_stream: - type: DeclarativeStream - name: plans - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: plans - request_parameters: {} - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/plans" - incremental_sync: - $ref: "#/definitions/incremental_sync" - invoices_stream: - type: DeclarativeStream - name: invoices - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: invoices - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/invoices" - incremental_sync: - type: DatetimeBasedCursor - cursor_field: invoice_date - lookback_window: P{{ config.get('lookback_window_days', 0) }}D - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S+00:00" - datetime_format: "%Y-%m-%dT%H:%M:%S+00:00" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - start_time_option: - type: RequestOption - field_name: invoice_date[gte] - inject_into: request_parameter - partition_router: - - type: ListPartitionRouter - values: - - void - - paid - - issued - - synced - cursor_field: status - request_option: - type: RequestOption - inject_into: request_parameter - field_name: status[] - credits_ledger_entries_stream: - type: DeclarativeStream - name: credits_ledger_entries - primary_key: id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: customers/{{ stream_partition.customer_id }}/credits/ledger - request_parameters: - entry_status: committed - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - partition_router: - - type: SubstreamPartitionRouter - parent_stream_configs: - - type: ParentStreamConfig - parent_key: id - partition_field: customer_id - stream: - $ref: "#/definitions/customers_stream" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/credits_ledger_entries" - transformations: - - type: AddFields - fields: - - path: - - customer_id - value: "{{ record['customer']['id'] }}" - - type: RemoveFields - field_pointers: - - - customer - - type: AddFields - fields: - - path: - - block_expiry_date - value: "{{ record['credit_block']['expiry_date'] }}" - - type: AddFields - fields: - - path: - - credit_block_id - value: "{{ record['credit_block']['id'] }}" - - type: AddFields - fields: - - path: - - credit_block_per_unit_cost_basis - value: "{{ record['credit_block']['per_unit_cost_basis'] }}" - - type: RemoveFields - field_pointers: - - - credit_block - - type: AddFields - fields: - - path: - - event - - id - value: "{{ record['event_id'] }}" - - type: RemoveFields - field_pointers: - - - event_id - incremental_sync: - $ref: "#/definitions/incremental_sync" - subscription_usage_stream: - type: DeclarativeStream - name: subscription_usage - primary_key: - - subscription_id - - billable_metric_id - - timeframe_start - - grouping_key - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: subscriptions/{{ stream_partition.subscription_id }}/usage - request_parameters: - group_by: "{{ config.get('subscription_usage_grouping_key', '') }}" - granularity: day - billable_metric_id: "{{ stream_partition.billable_metric_id }}" - record_selector: - $ref: "#/definitions/selector" - partition_router: - - type: CustomPartitionRouter - class_name: source_orb.components.SubscriptionUsagePartitionRouter - plans_stream: - $ref: "#/definitions/plans_stream" - subscriptions_stream: - $ref: "#/definitions/subscriptions_stream" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/subscription_usage" - transformations: - - type: RemoveFields - field_pointers: - - - usage - - type: CustomTransformation - class_name: source_orb.components.SubscriptionUsageTransformation - subscription_id: "{{ stream_partition.subscription_id }}" - - type: AddFields - fields: - - path: - - grouping_key - value: "{{ config.get('subscription_usage_grouping_key', '') }}" - incremental_sync: - type: DatetimeBasedCursor - cursor_field: timeframe_start - lookback_window: P{{ config.get('lookback_window_days', 0) }}D - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - start_time_option: - type: RequestOption - field_name: timeframe_start - inject_into: request_parameter - end_time_option: - type: RequestOption - field_name: timeframe_end - inject_into: request_parameter - end_datetime: - type: MinMaxDatetime - datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - -streams: - - "#/definitions/subscriptions_stream" - - "#/definitions/customers_stream" - - "#/definitions/subscription_usage_stream" - - "#/definitions/plans_stream" - - "#/definitions/invoices_stream" - - "#/definitions/credits_ledger_entries_stream" - -schemas: - subscriptions: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - additionalProperties: true - properties: - id: - description: The unique identifier of the subscription. - type: string - created_at: - description: The date and time when the subscription was created. - type: - - "null" - - string - format: date-time - customer_id: - description: The unique identifier of the customer associated with the subscription. - type: string - external_customer_id: - description: The external identifier of the customer associated with the subscription. - type: - - "null" - - string - start_date: - description: The date and time when the subscription is set to start. - type: - - "null" - - string - format: date-time - end_date: - description: The date and time when the subscription is set to end. - type: - - "null" - - string - format: date-time - plan_id: - description: >- - The unique identifier of the subscription plan assigned to the - subscription. - type: string - status: - description: The current status of the subscription. - type: string - required: - - id - - created_at - - status - - customers: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - additionalProperties: true - properties: - id: - description: The unique identifier of the customer. - type: string - external_customer_id: - description: The ID of the customer in an external system. - type: - - string - - "null" - name: - description: The name of the customer. - type: string - email: - description: The email address of the customer. - type: - - string - - "null" - created_at: - description: The date and time when the customer account was created. - type: - - "null" - - string - format: date-time - payment_provider: - description: The payment provider used by the customer. - type: - - "null" - - string - payment_provider_id: - description: The ID of the customer in the payment provider's system. - type: - - "null" - - string - timezone: - description: The timezone setting of the customer. - type: - - "null" - - string - shipping_address: - description: The shipping address of the customer. - type: - - "null" - - object - properties: - city: - description: The city of the shipping address. - type: - - "null" - - string - country: - description: The country of the shipping address. - type: - - "null" - - string - line1: - description: The first line in the shipping address. - type: - - "null" - - string - line2: - description: The second line in the shipping address if applicable. - type: - - "null" - - string - postal_code: - description: The postal code of the shipping address. - type: - - "null" - - string - state: - description: The state or region of the shipping address. - type: - - "null" - - string - billing_address: - description: The billing address of the customer. - type: - - "null" - - object - properties: - city: - description: The city of the billing address. - type: - - "null" - - string - country: - description: The country of the billing address. - type: - - "null" - - string - line1: - description: The first line in the billing address. - type: - - "null" - - string - line2: - description: The second line in the billing address if applicable. - type: - - "null" - - string - postal_code: - description: The postal code of the billing address. - type: - - "null" - - string - state: - description: The state or region of the billing address. - type: - - "null" - - string - required: - - id - - created_at - - subscription_usage: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - additionalProperties: true - properties: - quantity: - description: Quantity of the billable metric used during the specified timeframe - type: number - timeframe_start: - description: Start timestamp of the timeframe during which the usage data is captured - type: string - format: date-time - timeframe_end: - description: End timestamp of the timeframe during which the usage data is captured - type: string - format: date-time - billable_metric_name: - description: Name of the billable metric associated with the subscription usage - type: string - billable_metric_id: - description: >- - Unique identifier for the billable metric associated with the subscription - usage - type: string - subscription_id: - description: Unique identifier for the subscription the usage data belongs to - type: string - grouping_key: - type: - - "null" - - string - required: - - quantity - - timeframe_start - - timeframe_end - - billable_metric_name - - billable_metric_id - - subscription_id - - plans: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - properties: - id: - description: The unique identifier of the plan - type: string - created_at: - description: The timestamp of when the plan was created - type: - - "null" - - string - format: date-time - description: - description: A short description of the plan - type: - - "null" - - string - name: - description: The name of the plan - type: - - "null" - - string - prices: - description: An array of pricing options for the plan - type: - - array - items: - type: object - properties: - id: - description: The unique identifier of the price option - type: string - product: - description: The product to which the plan belongs - type: object - properties: - id: - description: The unique identifier of the product - type: string - required: - - id - - created_at - - invoices: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - properties: - id: - description: The unique identifier of the invoice. - type: string - created_at: - description: The date and time when the invoice was created. - type: - - "null" - - string - format: date-time - invoice_date: - description: The date when the invoice was issued. - type: - - string - format: date-time - due_date: - description: The due date for the payment of the invoice. - type: - - string - format: date-time - invoice_pdf: - description: The URL to download the PDF version of the invoice. - type: - - "null" - - string - subtotal: - description: The subtotal amount before applying taxes or discounts. - type: - - string - total: - description: The total amount of the invoice including all charges. - type: - - string - amount_due: - description: The total amount due on the invoice. - type: - - string - status: - description: "The current status of the invoice (e.g., pending, paid, voided)." - type: - - string - memo: - description: Any additional notes or comments associated with the invoice. - type: - - "null" - - string - issue_failed_at: - description: The date and time when issuing the invoice failed. - type: - - "null" - - string - format: date-time - sync_failed_at: - description: The date and time when syncing the invoice data failed. - type: - - "null" - - string - format: date-time - payment_failed_at: - description: The date and time when the payment for the invoice failed. - type: - - "null" - - string - format: date-time - payment_started_at: - description: The date and time when the payment process started for the invoice. - type: - - "null" - - string - format: date-time - voided_at: - description: The date and time when the invoice was voided. - type: - - "null" - - string - format: date-time - paid_at: - description: The date and time when the invoice was paid. - type: - - "null" - - string - format: date-time - issued_at: - description: The date and time when the invoice was issued. - type: - - "null" - - string - format: date-time - hosted_invoice_url: - description: The URL to view the hosted invoice online. - type: - - "null" - - string - line_items: - description: The line items included in the invoice. - type: - - array - items: - type: object - properties: - id: - description: The unique identifier of the line item. - type: string - quantity: - description: The quantity of the item included in the invoice. - type: number - amount: - description: The amount for the line item. - type: string - name: - description: The name or description of the line item. - type: string - start_date: - description: The start date of the service period for the line item. - type: - - "null" - - string - format: date-time - end_date: - description: The end date of the service period for the line item. - type: - - "null" - - string - format: date-time - subscription: - description: Information about the subscription associated with the invoice. - type: - - object - - "null" - properties: - id: - description: The unique identifier of the subscription. - type: string - required: - - id - - created_at - - invoice_date - - due_date - - subtotal - - total - - amount_due - - status - - credits_ledger_entries: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - properties: - id: - description: The unique ID of the ledger entry - type: string - starting_balance: - description: The starting balance before the ledger entry - type: number - ending_balance: - description: The ending balance after the ledger entry - type: number - amount: - description: The amount of credits involved in the ledger entry - type: - - "null" - - number - block_expiry_date: - description: The date and time when the credit block will expire - type: - - "null" - - string - format: date-time - created_at: - description: The date and time when the ledger entry was created - type: - - "null" - - string - format: date-time - entry_type: - description: "The type of ledger entry (e.g., debit, credit)" - type: string - new_block_expiry_date: - description: The new expiry date and time of the credit block after the ledger entry - type: - - "null" - - string - format: date-time - customer_id: - description: The ID of the customer associated with the ledger entry - type: string - credit_block_per_unit_cost_basis: - description: The cost per unit of the credit block - type: - - "null" - - number - description: - description: A description of the ledger entry - type: - - "null" - - string - credit_block_id: - description: The ID of the associated credit block - type: - - "null" - - string - required: - - id - - starting_balance - - ending_balance - - amount - - created_at - - customer_id - - entry_type - - credit_block_per_unit_cost_basis - - description - - credit_block_id - -spec: - type: Spec - documentation_url: https://docs.withorb.com/ - connection_specification: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - required: - - start_date - - api_key - properties: - api_key: - type: string - title: Orb API Key - description: Orb API Key, issued from the Orb admin console. - airbyte_secret: true - order: 0 - start_date: - type: string - title: Start Date - format: date-time - pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ - description: UTC date and time in the format 2022-03-01T00:00:00Z. Any data with created_at before this data will not be synced. For Subscription Usage, this becomes the `timeframe_start` API parameter. - examples: - - "2022-03-01T00:00:00Z" - order: 1 - end_date: - type: string - title: End Date - pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ - description: UTC date and time in the format 2022-03-01T00:00:00Z. Any data with created_at after this data will not be synced. For Subscription Usage, this becomes the `timeframe_start` API parameter. - examples: ["2024-03-01T00:00:00Z"] - order: 2 - lookback_window_days: - type: integer - title: Lookback Window (in days) - default: 0 - minimum: 0 - description: When set to N, the connector will always refresh resources created within the past N days. By default, updated objects that are not newly created are not incrementally synced. - order: 3 - string_event_properties_keys: - type: array - items: - type: string - title: Event properties keys (string values) - description: Property key names to extract from all events, in order to enrich ledger entries corresponding to an event deduction. - order: 4 - numeric_event_properties_keys: - type: array - items: - type: string - title: Event properties keys (numeric values) - description: Property key names to extract from all events, in order to enrich ledger entries corresponding to an event deduction. - order: 5 - subscription_usage_grouping_key: - type: string - title: Subscription usage grouping key (string value) - description: Property key name to group subscription usage by. - order: 6 - plan_id: - type: string - title: Orb Plan ID for Subscription Usage (string value) - description: Orb Plan ID to filter subscriptions that should have usage fetched. - order: 7 diff --git a/airbyte-integrations/connectors/source-orb/source_orb/run.py b/airbyte-integrations/connectors/source-orb/source_orb/run.py deleted file mode 100644 index 3b45f9dc03d8..000000000000 --- a/airbyte-integrations/connectors/source-orb/source_orb/run.py +++ /dev/null @@ -1,15 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch - -from .source import SourceOrb - - -def run(): - source = SourceOrb() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-orb/source_orb/source.py b/airbyte-integrations/connectors/source-orb/source_orb/source.py deleted file mode 100644 index 6c12618e25f2..000000000000 --- a/airbyte-integrations/connectors/source-orb/source_orb/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceOrb(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-orb/unit_tests/__init__.py b/airbyte-integrations/connectors/source-orb/unit_tests/__init__.py deleted file mode 100644 index 66f6de8cb2bb..000000000000 --- a/airbyte-integrations/connectors/source-orb/unit_tests/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-orb/unit_tests/conftest.py b/airbyte-integrations/connectors/source-orb/unit_tests/conftest.py deleted file mode 100644 index fe2358763db8..000000000000 --- a/airbyte-integrations/connectors/source-orb/unit_tests/conftest.py +++ /dev/null @@ -1,330 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# -from pytest import fixture - - -@fixture -def config_pass(): - return {"api_key": "test-token", "start_date": "2023-01-25T00:00:00Z"} - - -@fixture -def subscriptions_url(): - return "https://api.billwithorb.com/v1/subscriptions" - - -@fixture -def mock_subscriptions_response(): - return { - "data": [ - { - "metadata": {}, - "id": "string", - "customer": { - "metadata": {}, - "id": "string", - "external_customer_id": "string", - "name": "string", - "email": "string", - "timezone": "string", - "payment_provider_id": "string", - "payment_provider": "quickbooks", - "created_at": "2024-06-21T22:27:22.230Z", - "shipping_address": { - "line1": "string", - "line2": "string", - "city": "string", - "state": "string", - "postal_code": "string", - "country": "string" - }, - "billing_address": { - "line1": "string", - "line2": "string", - "city": "string", - "state": "string", - "postal_code": "string", - "country": "string" - }, - "balance": "string", - "currency": "string", - "tax_id": { - "country": "AD", - "type": "ad_nrt", - "value": "string" - }, - "auto_collection": True, - "email_delivery": True, - "additional_emails": [ - "string" - ], - "portal_url": "string", - "accounting_sync_configuration": { - "excluded": True, - "accounting_providers": [ - { - "provider_type": "quickbooks", - "external_provider_id": "string" - } - ] - }, - "reporting_configuration": { - "exempt": True - } - }, - "plan": { - "metadata": {}, - "id": "string", - "name": "string", - "description": "string", - "maximum_amount": "string", - "minimum_amount": "string", - "created_at": "2024-06-21T22:27:22.233Z", - "status": "active", - "maximum": { - "maximum_amount": "string", - "applies_to_price_ids": [ - "string" - ] - }, - "minimum": { - "minimum_amount": "string", - "applies_to_price_ids": [ - "string" - ] - }, - "discount": { - "discount_type": "percentage", - "applies_to_price_ids": [ - "h74gfhdjvn7ujokd", - "7hfgtgjnbvc3ujkl" - ], - "reason": "string", - "percentage_discount": 0.15 - }, - "product": { - "created_at": "2024-06-21T22:27:22.234Z", - "id": "string", - "name": "string" - }, - "version": 0, - "trial_config": { - "trial_period": 0, - "trial_period_unit": "days" - }, - "plan_phases": [ - { - "id": "string", - "description": "string", - "duration": 0, - "duration_unit": "daily", - "name": "string", - "order": 0, - "minimum": { - "minimum_amount": "string", - "applies_to_price_ids": [ - "string" - ] - }, - "maximum": { - "maximum_amount": "string", - "applies_to_price_ids": [ - "string" - ] - }, - "maximum_amount": "string", - "minimum_amount": "string", - "discount": { - "discount_type": "percentage", - "applies_to_price_ids": [ - "h74gfhdjvn7ujokd", - "7hfgtgjnbvc3ujkl" - ], - "reason": "string", - "percentage_discount": 0.15 - } - } - ], - "base_plan": { - "id": "m2t5akQeh2obwxeU", - "external_plan_id": "m2t5akQeh2obwxeU", - "name": "Example plan" - }, - "base_plan_id": "string", - "external_plan_id": "string", - "currency": "string", - "invoicing_currency": "string", - "net_terms": 0, - "default_invoice_memo": "string", - "prices": [ - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {}, - {} - ] - }, - "start_date": "2024-06-21T22:27:22.237Z", - "end_date": "2024-06-21T22:27:22.237Z", - "created_at": "2024-06-21T22:27:22.237Z", - "current_billing_period_start_date": "2024-06-21T22:27:22.237Z", - "current_billing_period_end_date": "2024-06-21T22:27:22.237Z", - "status": "active", - "trial_info": { - "end_date": "2024-06-21T22:27:22.237Z" - }, - "active_plan_phase_order": 0, - "fixed_fee_quantity_schedule": [ - { - "price_id": "string", - "start_date": "2024-06-21T22:27:22.237Z", - "end_date": "2024-06-21T22:27:22.237Z", - "quantity": 0 - } - ], - "default_invoice_memo": "string", - "auto_collection": True, - "net_terms": 0, - "redeemed_coupon": { - "coupon_id": "string", - "start_date": "2024-06-21T22:27:22.237Z", - "end_date": "2024-06-21T22:27:22.237Z" - }, - "billing_cycle_day": 0, - "invoicing_threshold": "string", - "price_intervals": [ - { - "id": "string", - "start_date": "2024-06-21T22:27:22.245Z", - "end_date": "2024-06-21T22:27:22.245Z", - "price": { - "id": "string", - "name": "string", - "external_price_id": "string", - "price_type": "usage_price", - "model_type": "unit", - "created_at": "2024-06-21T22:27:22.245Z", - "cadence": "one_time", - "billable_metric": { - "id": "string" - }, - "fixed_price_quantity": 0, - "plan_phase_order": 0, - "currency": "string", - "conversion_rate": 0, - "item": { - "id": "string", - "name": "string" - }, - "credit_allocation": { - "currency": "string", - "allows_rollover": True - }, - "discount": { - "discount_type": "percentage", - "applies_to_price_ids": [ - "h74gfhdjvn7ujokd", - "7hfgtgjnbvc3ujkl" - ], - "reason": "string", - "percentage_discount": 0.15 - }, - "minimum": { - "minimum_amount": "string", - "applies_to_price_ids": [ - "string" - ] - }, - "minimum_amount": "string", - "maximum": { - "maximum_amount": "string", - "applies_to_price_ids": [ - "string" - ] - }, - "maximum_amount": "string", - "unit_config": { - "unit_amount": "string" - } - }, - "billing_cycle_day": 0, - "fixed_fee_quantity_transitions": [ - { - "price_id": "string", - "effective_date": "2024-06-21T22:27:22.246Z", - "quantity": 0 - } - ], - "current_billing_period_start_date": "2024-06-21T22:27:22.246Z", - "current_billing_period_end_date": "2024-06-21T22:27:22.246Z" - } - ], - "adjustment_intervals": [ - { - "id": "string", - "adjustment": { - "applies_to_price_ids": [ - "string" - ], - "reason": "string", - "adjustment_type": "amount_discount", - "amount_discount": "string" - }, - "start_date": "2024-06-21T22:27:22.246Z", - "end_date": "2024-06-21T22:27:22.246Z", - "applies_to_price_interval_ids": [ - "string" - ] - } - ], - "discount_intervals": [ - {}, - {}, - {} - ], - "minimum_intervals": [ - { - "start_date": "2024-06-21T22:27:22.246Z", - "end_date": "2024-06-21T22:27:22.246Z", - "applies_to_price_ids": [ - "string" - ], - "applies_to_price_interval_ids": [ - "string" - ], - "minimum_amount": "string" - } - ], - "maximum_intervals": [ - { - "start_date": "2024-06-21T22:27:22.246Z", - "end_date": "2024-06-21T22:27:22.246Z", - "applies_to_price_ids": [ - "string" - ], - "applies_to_price_interval_ids": [ - "string" - ], - "maximum_amount": "string" - } - ] - } - ], - "pagination_metadata": { - "has_more": False, - } -} diff --git a/airbyte-integrations/connectors/source-orb/unit_tests/test_incremental_streams.py b/airbyte-integrations/connectors/source-orb/unit_tests/test_incremental_streams.py deleted file mode 100644 index 3c7766a3baf8..000000000000 --- a/airbyte-integrations/connectors/source-orb/unit_tests/test_incremental_streams.py +++ /dev/null @@ -1,62 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from typing import Any, Mapping - -import pytest -from airbyte_cdk.models import SyncMode -from airbyte_cdk.sources.streams import Stream -from source_orb.source import SourceOrb - - -def get_stream_by_name(stream_name: str, config: Mapping[str, Any]) -> Stream: - source = SourceOrb() - matches_by_name = [stream_config for stream_config in source.streams(config) if stream_config.name == stream_name] - if not matches_by_name: - raise ValueError("Please provide a valid stream name.") - return matches_by_name[0] - - -def test_cursor_field(config_pass): - stream = get_stream_by_name("subscriptions", config_pass) - expected_cursor_field = "created_at" - assert stream.cursor_field == expected_cursor_field - - -def test_get_updated_state(requests_mock, config_pass, subscriptions_url, mock_subscriptions_response): - requests_mock.get(url=subscriptions_url, status_code=200, json=mock_subscriptions_response) - stream = get_stream_by_name("subscriptions", config_pass) - stream.state = {"created_at": "2020-01-10T00:00:00.000Z"} - records = [] - for stream_slice in stream.stream_slices(sync_mode=SyncMode.incremental): - for record in stream.read_records(sync_mode=SyncMode.incremental, stream_slice=stream_slice): - record_dict = dict(record) - records.append(record_dict) - new_stream_state = record_dict.get("created_at") - stream.state = {"created_at": new_stream_state} - expected_state = {"created_at": "2024-06-21T22:27:22.237Z"} - assert stream.state == expected_state - - -def test_stream_slices(requests_mock, config_pass, subscriptions_url, mock_subscriptions_response): - requests_mock.get(url=subscriptions_url, status_code=200, json=mock_subscriptions_response) - stream = get_stream_by_name("subscriptions", config_pass) - inputs = {"sync_mode": SyncMode.incremental, "cursor_field": ["created_at"], "stream_state": {"updatedAt": "2020-01-10T00:00:00.000Z"}} - assert stream.stream_slices(**inputs) is not None - - -def test_supports_incremental(config_pass): - stream = get_stream_by_name("subscriptions", config_pass) - assert stream.supports_incremental - - -def test_source_defined_cursor(config_pass): - stream = get_stream_by_name("subscriptions", config_pass) - assert stream.source_defined_cursor - - -def test_stream_checkpoint_interval(config_pass): - stream = get_stream_by_name("subscriptions", config_pass) - expected_checkpoint_interval = None - assert stream.state_checkpoint_interval == expected_checkpoint_interval diff --git a/airbyte-integrations/connectors/source-orb/unit_tests/test_source.py b/airbyte-integrations/connectors/source-orb/unit_tests/test_source.py deleted file mode 100644 index 22d93fb177aa..000000000000 --- a/airbyte-integrations/connectors/source-orb/unit_tests/test_source.py +++ /dev/null @@ -1,41 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from datetime import datetime, timedelta -from unittest.mock import MagicMock -from urllib import parse - -from source_orb.source import SourceOrb - - -def get_mocked_url(base_url, config_pass): - start_datetime = datetime.strptime(config_pass.get("start_date"), "%Y-%m-%dT%H:%M:%SZ").strftime('%Y-%m-%dT%H:%M:%S+00:00') - encoded_start_datetime = parse.quote(start_datetime, safe='') - # Add an offset because the time changes by the time python makes the request - end_datetime = (datetime.utcnow() + timedelta(milliseconds=400)).strftime('%Y-%m-%dT%H:%M:%S+00:00') - encoded_end_datetime = parse.quote(end_datetime, safe='') - return base_url + "?limit=50&created_at%5Bgte%5D=" + encoded_start_datetime + "&created_at%5Blte%5D=" + encoded_end_datetime - -def test_check_connection(requests_mock, config_pass, subscriptions_url, mock_subscriptions_response): - requests_mock.get(url=get_mocked_url(subscriptions_url, config_pass), status_code=200, json=mock_subscriptions_response) - source = SourceOrb() - logger_mock = MagicMock() - assert source.check_connection(logger_mock, config_pass) == (True, None) - - -def test_check_connection_fail(requests_mock, config_pass, subscriptions_url): - print(get_mocked_url(subscriptions_url, config_pass)) - requests_mock.get(url=get_mocked_url(subscriptions_url, config_pass), status_code=401, json={"error": "Unauthorized"}) - source = SourceOrb() - logger_mock = MagicMock() - (status, message) = source.check_connection(logger_mock, config_pass) - assert (status, message.split('-')[0].strip()) == (False, "Unable to connect to stream subscriptions") - - -def test_streams(requests_mock, config_pass, subscriptions_url, mock_subscriptions_response): - requests_mock.get(url=get_mocked_url(subscriptions_url, config_pass), status_code=200, json=mock_subscriptions_response) - source = SourceOrb() - streams = source.streams(config_pass) - expected_streams_number = 6 - assert len(streams) == expected_streams_number diff --git a/airbyte-integrations/connectors/source-orb/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-orb/unit_tests/test_streams.py deleted file mode 100644 index 1385ba2b9a1a..000000000000 --- a/airbyte-integrations/connectors/source-orb/unit_tests/test_streams.py +++ /dev/null @@ -1,76 +0,0 @@ -# -# Copyright (c) 2024s Airbyte, Inc., all rights reserved. -# - -from typing import Any, Mapping - -import pytest -from airbyte_cdk.sources.streams import Stream -from airbyte_protocol.models import SyncMode -from jsonref import requests -from source_orb.source import SourceOrb - - -def get_stream_by_name(stream_name: str, config: Mapping[str, Any]) -> Stream: - source = SourceOrb() - matches_by_name = [stream_config for stream_config in source.streams(config) if stream_config.name == stream_name] - if not matches_by_name: - raise ValueError("Please provide a valid stream name.") - return matches_by_name[0] - - -def test_request_params(config_pass): - stream = get_stream_by_name("subscriptions", config_pass) - expected_params = {} - assert stream.retriever.requester.get_request_params() == expected_params - - -@pytest.mark.parametrize( - ("mock_response", "expected_token"), - [ - ({}, None), - (dict(pagination_metadata=dict(has_more=True, next_cursor="orb-test-cursor")), dict(next_page_token="orb-test-cursor")), - (dict(pagination_metadata=dict(has_more=False)), None), - ], -) -def test_next_page_token(requests_mock, config_pass, subscriptions_url, mock_response, expected_token): - requests_mock.get(url=subscriptions_url, status_code=200, json=mock_response) - stream = get_stream_by_name("subscriptions", config_pass) - inputs = {"response": requests.get(subscriptions_url)} - assert stream.retriever._next_page_token(**inputs) == expected_token - - -@pytest.mark.parametrize( - ("mock_response", "expected_parsed_records"), - [ - ({}, []), - (dict(data=[]), []), - (dict(data=[{"id": "test-customer-id", "customer": {"id": "1", "external_customer_id": "2"}, "plan": {"id": "3"}}]), - [{"id": "test-customer-id", "customer_id": "1", "external_customer_id": "2", "plan_id": "3"}]), - (dict(data=[{"id": "test-customer-id", "customer": {"id": "7", "external_customer_id": "8"}, "plan": {"id": "9"}}, - {"id": "test-customer-id-2", "customer": {"id": "10", "external_customer_id": "11"}, "plan": {"id": "12"}}]), - [{"id": "test-customer-id", "customer_id": "7", "external_customer_id": "8", "plan_id": "9"}, - {"id": "test-customer-id-2", "customer_id": "10", "external_customer_id": "11", "plan_id": "9"}]), - ], -) -def test_parse_response(requests_mock, config_pass, subscriptions_url, mock_response, expected_parsed_records): - requests_mock.get(url=subscriptions_url, status_code=200, json=mock_response) - stream = get_stream_by_name("subscriptions", config_pass) - records = [] - for stream_slice in stream.stream_slices(sync_mode=SyncMode.full_refresh): - records.extend(list(stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream_slice))) - assert len(records) == len(expected_parsed_records) - for i in range(len(records)): - assert sorted(records[i].keys()) == sorted(expected_parsed_records[i].keys()) - - -def test_http_method(config_pass): - stream = get_stream_by_name("subscriptions", config_pass) - expected_method = "GET" - assert stream.retriever.requester.http_method.value == expected_method - - -def test_subscription_usage_schema(config_pass): - stream = get_stream_by_name("subscription_usage", config_pass) - json_schema = stream.get_json_schema() - assert len(json_schema["properties"]) == 7 diff --git a/docs/integrations/sources/orb.md b/docs/integrations/sources/orb.md index 8f957b1a62e9..b5df1130b5d1 100644 --- a/docs/integrations/sources/orb.md +++ b/docs/integrations/sources/orb.md @@ -65,25 +65,26 @@ an Orb Account and API Key. | Version | Date | Pull Request | Subject | |---------|------------| -------------------------------------------------------- |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 2.0.14 | 2024-10-29 | [46770](https://github.com/airbytehq/airbyte/pull/46770) | Update dependencies | -| 2.0.13 | 2024-10-05 | [46395](https://github.com/airbytehq/airbyte/pull/46395) | Update dependencies | -| 2.0.12 | 2024-09-28 | [45785](https://github.com/airbytehq/airbyte/pull/45785) | Update dependencies | -| 2.0.11 | 2024-09-14 | [45472](https://github.com/airbytehq/airbyte/pull/45472) | Update dependencies | -| 2.0.10 | 2024-09-07 | [45212](https://github.com/airbytehq/airbyte/pull/45212) | Update dependencies | -| 2.0.9 | 2024-08-24 | [44626](https://github.com/airbytehq/airbyte/pull/44626) | Update dependencies | -| 2.0.8 | 2024-08-10 | [43601](https://github.com/airbytehq/airbyte/pull/43601) | Update dependencies | -| 2.0.7 | 2024-08-03 | [43163](https://github.com/airbytehq/airbyte/pull/43163) | Update dependencies | -| 2.0.6 | 2024-07-20 | [42198](https://github.com/airbytehq/airbyte/pull/42198) | Update dependencies | -| 2.0.5 | 2024-07-13 | [41720](https://github.com/airbytehq/airbyte/pull/41720) | Update dependencies | -| 2.0.4 | 2024-07-10 | [41386](https://github.com/airbytehq/airbyte/pull/41386) | Update dependencies | -| 2.0.3 | 2024-07-09 | [41090](https://github.com/airbytehq/airbyte/pull/41090) | Update dependencies | -| 2.0.2 | 2024-07-06 | [40826](https://github.com/airbytehq/airbyte/pull/40826) | Update dependencies | -| 2.0.1 | 2024-06-29 | [40541](https://github.com/airbytehq/airbyte/pull/40541) | Update dependencies | -| 2.0.0 | 2024-06-24 | [40227](https://github.com/airbytehq/airbyte/pull/40227) | Migrate connector to Low Code. Update data type of credit_block_per_unit_cost_basis field in credits_ledger_entries stream to match return type from the upstream API | -| 1.2.4 | 2024-06-22 | [40004](https://github.com/airbytehq/airbyte/pull/40004) | Update dependencies | -| 1.2.3 | 2024-06-04 | [39015](https://github.com/airbytehq/airbyte/pull/39015) | [autopull] Upgrade base image to v1.2.1 | -| 1.2.2 | 2024-04-19 | [37211](https://github.com/airbytehq/airbyte/pull/37211) | Updating to 0.80.0 CDK | -| 1.2.1 | 2024-04-12 | [37211](https://github.com/airbytehq/airbyte/pull/37211) | schema descriptions | +| 2.1.0 | 2024-10-23 | [47288](https://github.com/airbytehq/airbyte/pull/47288) | Migrate to manifest only format | +| 2.0.14 | 2024-10-29 | [46770](https://github.com/airbytehq/airbyte/pull/46770) | Update dependencies | +| 2.0.13 | 2024-10-05 | [46395](https://github.com/airbytehq/airbyte/pull/46395) | Update dependencies | +| 2.0.12 | 2024-09-28 | [45785](https://github.com/airbytehq/airbyte/pull/45785) | Update dependencies | +| 2.0.11 | 2024-09-14 | [45472](https://github.com/airbytehq/airbyte/pull/45472) | Update dependencies | +| 2.0.10 | 2024-09-07 | [45212](https://github.com/airbytehq/airbyte/pull/45212) | Update dependencies | +| 2.0.9 | 2024-08-24 | [44626](https://github.com/airbytehq/airbyte/pull/44626) | Update dependencies | +| 2.0.8 | 2024-08-10 | [43601](https://github.com/airbytehq/airbyte/pull/43601) | Update dependencies | +| 2.0.7 | 2024-08-03 | [43163](https://github.com/airbytehq/airbyte/pull/43163) | Update dependencies | +| 2.0.6 | 2024-07-20 | [42198](https://github.com/airbytehq/airbyte/pull/42198) | Update dependencies | +| 2.0.5 | 2024-07-13 | [41720](https://github.com/airbytehq/airbyte/pull/41720) | Update dependencies | +| 2.0.4 | 2024-07-10 | [41386](https://github.com/airbytehq/airbyte/pull/41386) | Update dependencies | +| 2.0.3 | 2024-07-09 | [41090](https://github.com/airbytehq/airbyte/pull/41090) | Update dependencies | +| 2.0.2 | 2024-07-06 | [40826](https://github.com/airbytehq/airbyte/pull/40826) | Update dependencies | +| 2.0.1 | 2024-06-29 | [40541](https://github.com/airbytehq/airbyte/pull/40541) | Update dependencies | +| 2.0.0 | 2024-06-24 | [40227](https://github.com/airbytehq/airbyte/pull/40227) | Migrate connector to Low Code. Update data type of credit_block_per_unit_cost_basis field in credits_ledger_entries stream to match return type from the upstream API | +| 1.2.4 | 2024-06-22 | [40004](https://github.com/airbytehq/airbyte/pull/40004) | Update dependencies | +| 1.2.3 | 2024-06-04 | [39015](https://github.com/airbytehq/airbyte/pull/39015) | [autopull] Upgrade base image to v1.2.1 | +| 1.2.2 | 2024-04-19 | [37211](https://github.com/airbytehq/airbyte/pull/37211) | Updating to 0.80.0 CDK | +| 1.2.1 | 2024-04-12 | [37211](https://github.com/airbytehq/airbyte/pull/37211) | schema descriptions | | 1.2.0 | 2024-03-19 | [x](https://github.com/airbytehq/airbyte/pull/x) | Expose `end_date`parameter | | 1.1.2 | 2024-03-13 | [x](https://github.com/airbytehq/airbyte/pull/x) | Fix window to 30 days for events query timesframe start and query | | 1.1.1 | 2024-02-07 | [35005](https://github.com/airbytehq/airbyte/pull/35005) | Pass timeframe_start, timeframe_end to events query | From d6e50b7f14cf8ead3462ac7fbba9561e5fb0667c Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Wed, 30 Oct 2024 04:15:29 +0530 Subject: [PATCH 478/808] Source Aws-cloudtrail: Migrate to manifest-only format with components (#47287) Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../source-aws-cloudtrail/README.md | 94 +- .../source-aws-cloudtrail/__init__.py | 3 - .../acceptance-test-config.yml | 2 +- .../{source_aws_cloudtrail => }/components.py | 0 .../connectors/source-aws-cloudtrail/main.py | 8 - .../source-aws-cloudtrail/manifest.yaml | 422 +++++ .../source-aws-cloudtrail/metadata.yaml | 16 +- .../source-aws-cloudtrail/poetry.lock | 1469 ----------------- .../source-aws-cloudtrail/pyproject.toml | 27 - .../source_aws_cloudtrail/__init__.py | 8 - .../source_aws_cloudtrail/manifest.yaml | 218 --- .../source_aws_cloudtrail/run.py | 15 - .../source_aws_cloudtrail/source.py | 18 - docs/integrations/sources/aws-cloudtrail.md | 69 +- 14 files changed, 491 insertions(+), 1878 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-aws-cloudtrail/__init__.py rename airbyte-integrations/connectors/source-aws-cloudtrail/{source_aws_cloudtrail => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-aws-cloudtrail/main.py create mode 100644 airbyte-integrations/connectors/source-aws-cloudtrail/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/__init__.py delete mode 100644 airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/run.py delete mode 100644 airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/source.py diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/README.md b/airbyte-integrations/connectors/source-aws-cloudtrail/README.md index 495ea1871042..9af9b3a6753b 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/README.md +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/README.md @@ -1,111 +1,65 @@ -# Aws-Cloudtrail source connector +# AWS Cloudtrail source connector +This directory contains the manifest-only connector for `source-aws-cloudtrail`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -This is the repository for the Aws Cloudtrail configuration based source connector. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/aws-cloudtrail). +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/aws-cloudtrail). ## Local development -### Prerequisites +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -* Python (`^3.9`) -* Poetry (`^1.7`) - installation instructions [here](https://python-poetry.org/docs/#installation) +If you prefer to develop locally, you can follow the instructions below. +### Building the docker image +You can build any manifest-only connector with `airbyte-ci`: -### Installing the connector +1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) +2. Run the following command to build the docker image: -From this connector directory, run: ```bash -poetry install --with dev +airbyte-ci connectors --name=source-aws-cloudtrail build ``` +An image will be available on your host with the tag `airbyte/source-aws-cloudtrail:dev`. -### Create credentials +### Creating credentials **If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/aws-cloudtrail) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` inside `manifest.yaml` file. +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `integration_tests/sample_config.json` for a sample config file. - - -### Locally running the connector - - -``` -poetry run source-aws-cloudtrail spec -poetry run source-aws-cloudtrail check --config secrets/config.json -poetry run source-aws-cloudtrail discover --config secrets/config.json -poetry run source-aws-cloudtrail read --config secrets/config.json --catalog integration_tests/configured_catalog.json -``` -### Running tests +### Running as a docker container -To run tests locally, from the connector directory run: +Then run any of the standard source connector commands: -``` -poetry run pytest tests -``` - -### Building the docker image - -1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) -2. Run the following command to build the docker image: ```bash -airbyte-ci connectors --name source-aws-cloudtrail build -``` - -An image will be available on your host with the tag `airbyte/source-aws-cloudtrail:dev`. - - -### Running as a docker container - -### Running as a docker container -Then run any of the connector commands as follows: -``` docker run --rm airbyte/source-aws-cloudtrail:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-aws-cloudtrail:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-aws-cloudtrail:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-aws-cloudtrail:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): -```bash -airbyte-ci connectors --name=source-aws-cloudtrail test -``` - -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -### Dependency Management -All of your dependencies should be managed via Poetry. -To add a new dependency, run: ```bash -poetry add +airbyte-ci connectors --name=source-aws-cloudtrail test ``` -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-aws-cloudtrail test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): +If you want to contribute changes to `source-aws-cloudtrail`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-aws-cloudtrail test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. -4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/aws-cloudtrail.md`). 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/aws-cloudtrail.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. 8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. -8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/__init__.py b/airbyte-integrations/connectors/source-aws-cloudtrail/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/acceptance-test-config.yml b/airbyte-integrations/connectors/source-aws-cloudtrail/acceptance-test-config.yml index 8618350c4f35..a576348ee455 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/acceptance-test-config.yml @@ -4,7 +4,7 @@ connector_image: airbyte/source-aws-cloudtrail:dev acceptance_tests: spec: tests: - - spec_path: "source_aws_cloudtrail/spec.yaml" + - spec_path: "manifest.yaml" backward_compatibility_tests_config: disable_for_version: 0.1.11 # The spec has additional filtering property connection: diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/components.py b/airbyte-integrations/connectors/source-aws-cloudtrail/components.py similarity index 100% rename from airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/components.py rename to airbyte-integrations/connectors/source-aws-cloudtrail/components.py diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/main.py b/airbyte-integrations/connectors/source-aws-cloudtrail/main.py deleted file mode 100644 index f2324dfe8812..000000000000 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_aws_cloudtrail.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/manifest.yaml b/airbyte-integrations/connectors/source-aws-cloudtrail/manifest.yaml new file mode 100644 index 000000000000..86146b1c23ed --- /dev/null +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/manifest.yaml @@ -0,0 +1,422 @@ +version: "4.3.2" +definitions: + selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - "{{ parameters.extractor_path }}" + requester: + type: HttpRequester + url_base: "https://cloudtrail.{{ config['aws_region_name'] }}.amazonaws.com" + http_method: "POST" + authenticator: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.CustomAuthenticator + aws_key_id: "{{config['aws_key_id']}}" + aws_secret_key: "{{config['aws_secret_key']}}" + aws_region_name: "{{config['aws_region_name']}}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ExponentialBackoffStrategy + response_filters: + - type: HttpResponseFilter + action: RETRY + http_codes: + - 400 + incremental_sync_base: + type: DatetimeBasedCursor + datetime_format: "%s" + cursor_field: "EventTime" + start_time_option: + inject_into: body_json + field_name: StartTime + type: RequestOption + end_time_option: + inject_into: body_json + field_name: EndTime + type: RequestOption + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] or now_utc().strftime('%Y-%m-%d') }}" + datetime_format: "%Y-%m-%d" + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%s') }}" + datetime_format: "%s" + paginator_base: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: body_json + field_name: "NextToken" + pagination_strategy: + type: CursorPagination + cursor_value: '{{ response.get("NextToken", {}) }}' + stop_condition: '{{ not response.get("NextToken", {}) }}' + management_events_stream: + type: DeclarativeStream + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + AccessKeyId: + type: + - "null" + - string + CloudTrailEvent: + type: + - "null" + - string + EventId: + type: + - "null" + - string + EventName: + type: + - "null" + - string + EventSource: + type: + - "null" + - string + EventTime: + type: + - "null" + - number + ReadOnly: + type: + - "null" + - string + Resources: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + ResourceName: + type: + - "null" + - string + ResourceType: + type: + - "null" + - string + Username: + type: + - "null" + - string + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - "{{ parameters.extractor_path }}" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: body_json + field_name: "NextToken" + pagination_strategy: + type: CursorPagination + cursor_value: '{{ response.get("NextToken", {}) }}' + stop_condition: '{{ not response.get("NextToken", {}) }}' + requester: + type: HttpRequester + url_base: "https://cloudtrail.{{ config['aws_region_name'] }}.amazonaws.com" + http_method: "POST" + authenticator: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.CustomAuthenticator + aws_key_id: "{{config['aws_key_id']}}" + aws_secret_key: "{{config['aws_secret_key']}}" + aws_region_name: "{{config['aws_region_name']}}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ExponentialBackoffStrategy + response_filters: + - type: HttpResponseFilter + action: RETRY + http_codes: + - 400 + request_headers: + x-amz-target: "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.LookupEvents" + request_body_json: + MaxResults: 50 + incremental_sync: + type: DatetimeBasedCursor + datetime_format: "%s" + cursor_field: "EventTime" + start_time_option: + inject_into: body_json + field_name: StartTime + type: RequestOption + end_time_option: + inject_into: body_json + field_name: EndTime + type: RequestOption + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] or now_utc().strftime('%Y-%m-%d') }}" + datetime_format: "%Y-%m-%d" + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%s') }}" + datetime_format: "%s" + management_events_schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + AccessKeyId: + type: + - "null" + - string + CloudTrailEvent: + type: + - "null" + - string + EventId: + type: + - "null" + - string + EventName: + type: + - "null" + - string + EventSource: + type: + - "null" + - string + EventTime: + type: + - "null" + - number + ReadOnly: + type: + - "null" + - string + Resources: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + ResourceName: + type: + - "null" + - string + ResourceType: + type: + - "null" + - string + Username: + type: + - "null" + - string +streams: +- type: DeclarativeStream + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + AccessKeyId: + type: + - "null" + - string + CloudTrailEvent: + type: + - "null" + - string + EventId: + type: + - "null" + - string + EventName: + type: + - "null" + - string + EventSource: + type: + - "null" + - string + EventTime: + type: + - "null" + - number + ReadOnly: + type: + - "null" + - string + Resources: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + ResourceName: + type: + - "null" + - string + ResourceType: + type: + - "null" + - string + Username: + type: + - "null" + - string + retriever: + type: SimpleRetriever + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - "{{ parameters.extractor_path }}" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: body_json + field_name: "NextToken" + pagination_strategy: + type: CursorPagination + cursor_value: '{{ response.get("NextToken", {}) }}' + stop_condition: '{{ not response.get("NextToken", {}) }}' + requester: + type: HttpRequester + url_base: "https://cloudtrail.{{ config['aws_region_name'] }}.amazonaws.com" + http_method: "POST" + authenticator: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.CustomAuthenticator + aws_key_id: "{{config['aws_key_id']}}" + aws_secret_key: "{{config['aws_secret_key']}}" + aws_region_name: "{{config['aws_region_name']}}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ExponentialBackoffStrategy + response_filters: + - type: HttpResponseFilter + action: RETRY + http_codes: + - 400 + request_headers: + x-amz-target: "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.LookupEvents" + request_body_json: + MaxResults: 50 + path: "/" + incremental_sync: + type: DatetimeBasedCursor + datetime_format: "%s" + cursor_field: "EventTime" + start_time_option: + inject_into: body_json + field_name: StartTime + type: RequestOption + end_time_option: + inject_into: body_json + field_name: EndTime + type: RequestOption + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] or now_utc().strftime('%Y-%m-%d') }}" + datetime_format: "%Y-%m-%d" + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%s') }}" + datetime_format: "%s" + name: "management_events" + primary_key: "EventId" +check: + type: CheckStream + stream_names: + - "management_events" +spec: + type: Spec + documentation_url: https://docs.airbyte.com/integrations/sources/aws-cloudtrail + connection_specification: + $schema: http://json-schema.org/draft-07/schema# + title: Aws CloudTrail Spec + type: object + required: + - aws_key_id + - aws_secret_key + - aws_region_name + additionalProperties: true + properties: + aws_key_id: + type: string + title: Key ID + description: AWS CloudTrail Access Key ID. See the docs + for more information on how to obtain this key. + airbyte_secret: true + aws_secret_key: + type: string + title: Secret Key + description: AWS CloudTrail Access Key ID. See the docs + for more information on how to obtain this key. + airbyte_secret: true + aws_region_name: + type: string + title: Region Name + description: The default AWS Region to use, for example, us-west-1 or us-west-2. + When specifying a Region inline during client initialization, this property + is named region_name. + default: "us-east-1" + start_date: + type: string + title: Start Date + description: "The date you would like to replicate data. Data in AWS CloudTrail + is available for last 90 days only. Format: YYYY-MM-DD." + examples: + - "2021-01-01" + pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" + format: date + lookup_attributes_filter: + title: Filter applied while fetching records based on AttributeKey and AttributeValue + which will be appended on the request body + type: object + required: + - attribute_key + - attribute_value + properties: + attribute_key: + type: string + title: Attribute Key from the response to filter + examples: + - "EventName" + default: "EventName" + attribute_value: + type: string + title: Corresponding value to the given attribute key + examples: + - "ListInstanceAssociations" + - "ConsoleLogin" + default: "ListInstanceAssociations" +type: DeclarativeSource diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml b/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml index 4b1370ce4d1c..4a05990c5824 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml @@ -12,19 +12,21 @@ data: 1.0.0: upgradeDeadline: "2024-07-30" message: - "The verison migrates the Aws CloudTrail connector to the low-code framework for greater maintainability. - !! Important: The management_events stream changed it's EventTime field from integer to float. - The `start_date` parameter is now optional and the connector now takes current date as default start date " + "The verison migrates the Aws CloudTrail connector to the low-code + framework for greater maintainability. !! Important: The management_events + stream changed it's EventTime field from integer to float. The `start_date` + parameter is now optional and the connector now takes current date as default + start date " remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-aws-cloudtrail connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: 6ff047c0-f5d5-4ce5-8c81-204a830fa7e1 - dockerImageTag: 1.0.20 + dockerImageTag: 1.1.0 dockerRepository: airbyte/source-aws-cloudtrail githubIssueLabel: source-aws-cloudtrail icon: aws-cloudtrail.svg @@ -35,8 +37,8 @@ data: supportLevel: community documentationUrl: https://docs.airbyte.com/integrations/sources/aws-cloudtrail tags: - - language:python - cdk:low-code + - language:manifest-only connectorTestSuitesOptions: - suite: liveTests testConnections: diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock b/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock deleted file mode 100644 index 4f716568ca0c..000000000000 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock +++ /dev/null @@ -1,1469 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "0.90.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-0.90.0-py3-none-any.whl", hash = "sha256:bd0aa5843cdc4901f2e482f0e86695ca4e6db83b65c5017799255dd20535cf56"}, - {file = "airbyte_cdk-0.90.0.tar.gz", hash = "sha256:25cefc010718bada5cce3f87e7ae93068630732c0d34ce5145f8ddf7457d4d3c"}, -] - -[package.dependencies] -airbyte-protocol-models = ">=0.9.0,<1.0" -backoff = "*" -cachetools = "*" -cryptography = ">=42.0.5,<43.0.0" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -langchain_core = "0.1.42" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyjwt = ">=2.8.0,<3.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -pytz = "2024.1" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.13.0" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.13.0-py3-none-any.whl", hash = "sha256:fa8b7e1a85f9ae171c50b30d23b317da1740d051994fd3ed648f9dfba00250e2"}, - {file = "airbyte_protocol_models-0.13.0.tar.gz", hash = "sha256:09d8900ba8674a9315fa1799d17026f6b38d2187c08160449540ee93331ed2e7"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "anyio" -version = "4.6.2.post1" -description = "High level compatibility layer for multiple asynchronous event loop implementations" -optional = false -python-versions = ">=3.9" -files = [ - {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, - {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, -] - -[package.dependencies] -exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} -idna = ">=2.8" -sniffio = ">=1.1" -typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} - -[package.extras] -doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] -trio = ["trio (>=0.26.1)"] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "cffi" -version = "1.17.1" -description = "Foreign Function Interface for Python calling C code." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, - {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, - {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, - {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, - {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, - {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, - {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, - {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, - {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, - {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, - {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, - {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, - {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, - {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, - {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, - {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, -] - -[package.dependencies] -pycparser = "*" - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "cryptography" -version = "42.0.8" -description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -optional = false -python-versions = ">=3.7" -files = [ - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e"}, - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7"}, - {file = "cryptography-42.0.8-cp37-abi3-win32.whl", hash = "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2"}, - {file = "cryptography-42.0.8-cp37-abi3-win_amd64.whl", hash = "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba"}, - {file = "cryptography-42.0.8-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14"}, - {file = "cryptography-42.0.8-cp39-abi3-win32.whl", hash = "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c"}, - {file = "cryptography-42.0.8-cp39-abi3-win_amd64.whl", hash = "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad"}, - {file = "cryptography-42.0.8.tar.gz", hash = "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2"}, -] - -[package.dependencies] -cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} - -[package.extras] -docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] -docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] -nox = ["nox"] -pep8test = ["check-sdist", "click", "mypy", "ruff"] -sdist = ["build"] -ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] -test-randomorder = ["pytest-randomly"] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "h11" -version = "0.14.0" -description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -optional = false -python-versions = ">=3.7" -files = [ - {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, - {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, -] - -[[package]] -name = "httpcore" -version = "1.0.6" -description = "A minimal low-level HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, - {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, -] - -[package.dependencies] -certifi = "*" -h11 = ">=0.13,<0.15" - -[package.extras] -asyncio = ["anyio (>=4.0,<5.0)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<1.0)"] - -[[package]] -name = "httpx" -version = "0.27.2" -description = "The next generation HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, - {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, -] - -[package.dependencies] -anyio = "*" -certifi = "*" -httpcore = "==1.*" -idna = "*" -sniffio = "*" - -[package.extras] -brotli = ["brotli", "brotlicffi"] -cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonpatch" -version = "1.33" -description = "Apply JSON-Patches (RFC 6902)" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" -files = [ - {file = "jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade"}, - {file = "jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c"}, -] - -[package.dependencies] -jsonpointer = ">=1.9" - -[[package]] -name = "jsonpointer" -version = "3.0.0" -description = "Identify specific nodes in a JSON document (RFC 6901)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, - {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, -] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "langchain-core" -version = "0.1.42" -description = "Building applications with LLMs through composability" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_core-0.1.42-py3-none-any.whl", hash = "sha256:c5653ffa08a44f740295c157a24c0def4a753333f6a2c41f76bf431cd00be8b5"}, - {file = "langchain_core-0.1.42.tar.gz", hash = "sha256:40751bf60ea5d8e2b2efe65290db434717ee3834870c002e40e2811f09d814e6"}, -] - -[package.dependencies] -jsonpatch = ">=1.33,<2.0" -langsmith = ">=0.1.0,<0.2.0" -packaging = ">=23.2,<24.0" -pydantic = ">=1,<3" -PyYAML = ">=5.3" -tenacity = ">=8.1.0,<9.0.0" - -[package.extras] -extended-testing = ["jinja2 (>=3,<4)"] - -[[package]] -name = "langsmith" -version = "0.1.137" -description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, -] - -[package.dependencies] -httpx = ">=0.23.0,<1" -orjson = ">=3.9.14,<4.0.0" -pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} -requests = ">=2,<3" -requests-toolbelt = ">=1.0.0,<2.0.0" - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "orjson" -version = "3.10.10" -description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -optional = false -python-versions = ">=3.8" -files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, -] - -[[package]] -name = "packaging" -version = "23.2" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "pycparser" -version = "2.22" -description = "C parser in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, - {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyjwt" -version = "2.9.0" -description = "JSON Web Token implementation in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, - {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, -] - -[package.extras] -crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] -tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "8.3.3" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, - {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, -] - -[package.dependencies] -colorama = {version = "*", markers = "sys_platform == \"win32\""} -exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=1.5,<2" -tomli = {version = ">=1", markers = "python_version < \"3.11\""} - -[package.extras] -dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytz" -version = "2024.1" -description = "World timezone definitions, modern and historical" -optional = false -python-versions = "*" -files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, -] - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "requests-toolbelt" -version = "1.0.0" -description = "A utility belt for advanced users of python-requests" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, - {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, -] - -[package.dependencies] -requests = ">=2.0.1,<3.0.0" - -[[package]] -name = "setuptools" -version = "75.3.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, - {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "sniffio" -version = "1.3.1" -description = "Sniff out which async library your code is running under" -optional = false -python-versions = ">=3.7" -files = [ - {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, - {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, -] - -[[package]] -name = "tenacity" -version = "8.5.0" -description = "Retry code until it succeeds" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, - {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, -] - -[package.extras] -doc = ["reno", "sphinx"] -test = ["pytest", "tornado (>=4.5)", "typeguard"] - -[[package]] -name = "tomli" -version = "2.0.2" -description = "A lil' TOML parser" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, - {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "acd5908c82765b55ec5859799db1bcbb616d044db689a3ba94346d8b1d2f9b5c" diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml b/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml deleted file mode 100644 index 5594a26293ab..000000000000 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml +++ /dev/null @@ -1,27 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "1.0.20" -name = "source-aws-cloudtrail" -description = "Source implementation for aws-cloudtrail." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/aws-cloudtrail" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -packages = [ { include = "source_aws_cloudtrail" }, {include = "main.py" } ] - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "^0" - -[tool.poetry.scripts] -source-aws-cloudtrail = "source_aws_cloudtrail.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "*" -pytest-mock = "*" -pytest = "*" diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/__init__.py b/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/__init__.py deleted file mode 100644 index 96885851ecf4..000000000000 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceAwsCloudtrail - -__all__ = ["SourceAwsCloudtrail"] diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/manifest.yaml b/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/manifest.yaml deleted file mode 100644 index 2ca8fa07d4c9..000000000000 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/manifest.yaml +++ /dev/null @@ -1,218 +0,0 @@ -version: "0.71.0" - -definitions: - selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: ["{{ parameters.extractor_path }}"] - - requester: - type: HttpRequester - url_base: "https://cloudtrail.{{ config['aws_region_name'] }}.amazonaws.com" - http_method: "POST" - authenticator: - type: CustomAuthenticator - class_name: source_aws_cloudtrail.components.CustomAuthenticator - aws_key_id: "{{config['aws_key_id']}}" - aws_secret_key: "{{config['aws_secret_key']}}" - aws_region_name: "{{config['aws_region_name']}}" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - backoff_strategies: - - type: ExponentialBackoffStrategy - response_filters: - - type: HttpResponseFilter - action: RETRY - http_codes: - - 400 - - incremental_sync_base: - type: DatetimeBasedCursor - datetime_format: "%s" - cursor_field: "EventTime" - start_time_option: - inject_into: body_json - field_name: StartTime - type: RequestOption - end_time_option: - inject_into: body_json - field_name: EndTime - type: RequestOption - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] or now_utc().strftime('%Y-%m-%d') }}" - datetime_format: "%Y-%m-%d" - end_datetime: - type: MinMaxDatetime - datetime: "{{ now_utc().strftime('%s') }}" - datetime_format: "%s" - - paginator_base: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: body_json - field_name: "NextToken" - pagination_strategy: - type: CursorPagination - cursor_value: '{{ response.get("NextToken", {}) }}' - stop_condition: '{{ not response.get("NextToken", {}) }}' - - management_events_stream: - type: DeclarativeStream - $parameters: - name: "management_events" - primary_key: "EventId" - path: "/" - extractor_path: "Events" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/definitions/management_events_schema" - retriever: - type: SimpleRetriever - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator_base" - requester: - $ref: "#/definitions/requester" - authenticator: - $ref: "#/definitions/requester/authenticator" - request_headers: - x-amz-target: "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.LookupEvents" - request_body_json: - MaxResults: 50 - incremental_sync: - $ref: "#/definitions/incremental_sync_base" - - management_events_schema: - $schema: http://json-schema.org/draft-07/schema# - type: object - properties: - AccessKeyId: - type: - - "null" - - string - CloudTrailEvent: - type: - - "null" - - string - EventId: - type: - - "null" - - string - EventName: - type: - - "null" - - string - EventSource: - type: - - "null" - - string - EventTime: - type: - - "null" - - number - ReadOnly: - type: - - "null" - - string - Resources: - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - ResourceName: - type: - - "null" - - string - ResourceType: - type: - - "null" - - string - Username: - type: - - "null" - - string - -streams: - - "#/definitions/management_events_stream" #Ref: https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_LookupEvents.html - -check: - type: CheckStream - stream_names: - - "management_events" - -spec: - type: Spec - documentation_url: https://docs.airbyte.com/integrations/sources/aws-cloudtrail - connection_specification: - $schema: http://json-schema.org/draft-07/schema# - title: Aws CloudTrail Spec - type: object - required: - - aws_key_id - - aws_secret_key - - aws_region_name - additionalProperties: true - properties: - aws_key_id: - type: string - title: Key ID - description: - AWS CloudTrail Access Key ID. See the docs - for more information on how to obtain this key. - airbyte_secret: true - aws_secret_key: - type: string - title: Secret Key - description: - AWS CloudTrail Access Key ID. See the docs - for more information on how to obtain this key. - airbyte_secret: true - aws_region_name: - type: string - title: Region Name - description: - The default AWS Region to use, for example, us-west-1 or us-west-2. - When specifying a Region inline during client initialization, this property - is named region_name. - default: "us-east-1" - start_date: - type: string - title: Start Date - description: - "The date you would like to replicate data. Data in AWS CloudTrail - is available for last 90 days only. Format: YYYY-MM-DD." - examples: - - "2021-01-01" - pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" - format: date - lookup_attributes_filter: - title: Filter applied while fetching records based on AttributeKey and AttributeValue which will be appended on the request body - type: object - required: - - attribute_key - - attribute_value - properties: - attribute_key: - type: string - title: Attribute Key from the response to filter - examples: - - "EventName" - default: "EventName" - attribute_value: - type: string - title: Corresponding value to the given attribute key - examples: - - "ListInstanceAssociations" - - "ConsoleLogin" - default: "ListInstanceAssociations" diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/run.py b/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/run.py deleted file mode 100644 index 2a7629d84eab..000000000000 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/run.py +++ /dev/null @@ -1,15 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch - -from .source import SourceAwsCloudtrail - - -def run(): - source = SourceAwsCloudtrail() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/source.py b/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/source.py deleted file mode 100644 index bcbfb5dd0a3e..000000000000 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/source_aws_cloudtrail/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceAwsCloudtrail(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/docs/integrations/sources/aws-cloudtrail.md b/docs/integrations/sources/aws-cloudtrail.md index 78e96a96e84b..2b2288495f0b 100644 --- a/docs/integrations/sources/aws-cloudtrail.md +++ b/docs/integrations/sources/aws-cloudtrail.md @@ -54,39 +54,40 @@ Please, follow this [steps](https://docs.aws.amazon.com/powershell/latest/usergu | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | -| 1.0.20 | 2024-10-29 | [47768](https://github.com/airbytehq/airbyte/pull/47768) | Update dependencies | -| 1.0.19 | 2024-10-28 | [47096](https://github.com/airbytehq/airbyte/pull/47096) | Update dependencies | -| 1.0.18 | 2024-10-12 | [46761](https://github.com/airbytehq/airbyte/pull/46761) | Update dependencies | -| 1.0.17 | 2024-10-05 | [46498](https://github.com/airbytehq/airbyte/pull/46498) | Update dependencies | -| 1.0.16 | 2024-09-28 | [46156](https://github.com/airbytehq/airbyte/pull/46156) | Update dependencies | -| 1.0.15 | 2024-09-21 | [45819](https://github.com/airbytehq/airbyte/pull/45819) | Update dependencies | -| 1.0.14 | 2024-09-14 | [45574](https://github.com/airbytehq/airbyte/pull/45574) | Update dependencies | -| 1.0.13 | 2024-09-07 | [45304](https://github.com/airbytehq/airbyte/pull/45304) | Update dependencies | -| 1.0.12 | 2024-08-31 | [45000](https://github.com/airbytehq/airbyte/pull/45000) | Update dependencies | -| 1.0.11 | 2024-08-24 | [44361](https://github.com/airbytehq/airbyte/pull/44361) | Update dependencies | -| 1.0.10 | 2024-08-12 | [43756](https://github.com/airbytehq/airbyte/pull/43756) | Update dependencies | -| 1.0.9 | 2024-08-10 | [43627](https://github.com/airbytehq/airbyte/pull/43627) | Update dependencies | -| 1.0.8 | 2024-08-03 | [43140](https://github.com/airbytehq/airbyte/pull/43140) | Update dependencies | -| 1.0.7 | 2024-07-27 | [42642](https://github.com/airbytehq/airbyte/pull/42642) | Update dependencies | -| 1.0.6 | 2024-07-20 | [42286](https://github.com/airbytehq/airbyte/pull/42286) | Update dependencies | -| 1.0.5 | 2024-07-13 | [41846](https://github.com/airbytehq/airbyte/pull/41846) | Update dependencies | -| 1.0.4 | 2024-07-10 | [41435](https://github.com/airbytehq/airbyte/pull/41435) | Update dependencies | -| 1.0.3 | 2024-07-09 | [41230](https://github.com/airbytehq/airbyte/pull/41230) | Update dependencies | -| 1.0.2 | 2024-07-06 | [40995](https://github.com/airbytehq/airbyte/pull/40995) | Update dependencies | -| 1.0.1 | 2024-06-26 | [40419](https://github.com/airbytehq/airbyte/pull/40419) | Update dependencies | -| 1.0.0 | 2024-07-02 | [36562](https://github.com/airbytehq/airbyte/pull/36562) | Migrate to low code CDK, Add filtering capability | -| 0.1.12 | 2024-06-22 | [39960](https://github.com/airbytehq/airbyte/pull/39960) | Update dependencies | -| 0.1.11 | 2024-06-06 | [39246](https://github.com/airbytehq/airbyte/pull/39246) | [autopull] Upgrade base image to v1.2.2 | -| 0.1.10 | 2024-06-03 | [38911](https://github.com/airbytehq/airbyte/pull/38911) | Replace AirbyteLogger with logging.Logger | -| 0.1.9 | 2024-06-03 | [38911](https://github.com/airbytehq/airbyte/pull/38911) | Replace AirbyteLogger with logging.Logger | -| 0.1.8 | 2024-05-20 | [38448](https://github.com/airbytehq/airbyte/pull/38448) | [autopull] base image + poetry + up_to_date | -| 0.1.7 | 2024-04-15 | [37122](https://github.com/airbytehq/airbyte/pull/37122) | Base image migration: remove Dockerfile and use the python-connector-base image | -| 0.1.6 | 2024-04-12 | [37122](https://github.com/airbytehq/airbyte/pull/37122) | schema descriptions | -| 0.1.5 | 2023-02-15 | [23083](https://github.com/airbytehq/airbyte/pull/23083) | Specified date formatting in specification | -| 0.1.4 | 2022-04-11 | [11763](https://github.com/airbytehq/airbyte/pull/11763) | Upgrade to Python 3.9 | -| 0.1.3 | 2021-12-23 | [8434](https://github.com/airbytehq/airbyte/pull/8434) | Update fields in source-connectors specifications | -| 0.1.2 | 2021-08-04 | [5152](https://github.com/airbytehq/airbyte/pull/5152) | Fix connector spec.json | -| 0.1.1 | 2021-07-06 | [4539](https://github.com/airbytehq/airbyte/pull/4539) | Add `AIRBYTE_ENTRYPOINT` for Kubernetes support | -| 0.1.0 | 2021-06-23 | [4122](https://github.com/airbytehq/airbyte/pull/4122) | Initial release supporting the LookupEvent API | +| 1.1.0 | 2024-10-29 | [47287](https://github.com/airbytehq/airbyte/pull/47287) | Migrate to manifest only format | +| 1.0.20 | 2024-10-29 | [47768](https://github.com/airbytehq/airbyte/pull/47768) | Update dependencies | +| 1.0.19 | 2024-10-28 | [47096](https://github.com/airbytehq/airbyte/pull/47096) | Update dependencies | +| 1.0.18 | 2024-10-12 | [46761](https://github.com/airbytehq/airbyte/pull/46761) | Update dependencies | +| 1.0.17 | 2024-10-05 | [46498](https://github.com/airbytehq/airbyte/pull/46498) | Update dependencies | +| 1.0.16 | 2024-09-28 | [46156](https://github.com/airbytehq/airbyte/pull/46156) | Update dependencies | +| 1.0.15 | 2024-09-21 | [45819](https://github.com/airbytehq/airbyte/pull/45819) | Update dependencies | +| 1.0.14 | 2024-09-14 | [45574](https://github.com/airbytehq/airbyte/pull/45574) | Update dependencies | +| 1.0.13 | 2024-09-07 | [45304](https://github.com/airbytehq/airbyte/pull/45304) | Update dependencies | +| 1.0.12 | 2024-08-31 | [45000](https://github.com/airbytehq/airbyte/pull/45000) | Update dependencies | +| 1.0.11 | 2024-08-24 | [44361](https://github.com/airbytehq/airbyte/pull/44361) | Update dependencies | +| 1.0.10 | 2024-08-12 | [43756](https://github.com/airbytehq/airbyte/pull/43756) | Update dependencies | +| 1.0.9 | 2024-08-10 | [43627](https://github.com/airbytehq/airbyte/pull/43627) | Update dependencies | +| 1.0.8 | 2024-08-03 | [43140](https://github.com/airbytehq/airbyte/pull/43140) | Update dependencies | +| 1.0.7 | 2024-07-27 | [42642](https://github.com/airbytehq/airbyte/pull/42642) | Update dependencies | +| 1.0.6 | 2024-07-20 | [42286](https://github.com/airbytehq/airbyte/pull/42286) | Update dependencies | +| 1.0.5 | 2024-07-13 | [41846](https://github.com/airbytehq/airbyte/pull/41846) | Update dependencies | +| 1.0.4 | 2024-07-10 | [41435](https://github.com/airbytehq/airbyte/pull/41435) | Update dependencies | +| 1.0.3 | 2024-07-09 | [41230](https://github.com/airbytehq/airbyte/pull/41230) | Update dependencies | +| 1.0.2 | 2024-07-06 | [40995](https://github.com/airbytehq/airbyte/pull/40995) | Update dependencies | +| 1.0.1 | 2024-06-26 | [40419](https://github.com/airbytehq/airbyte/pull/40419) | Update dependencies | +| 1.0.0 | 2024-07-02 | [36562](https://github.com/airbytehq/airbyte/pull/36562) | Migrate to low code CDK, Add filtering capability | +| 0.1.12 | 2024-06-22 | [39960](https://github.com/airbytehq/airbyte/pull/39960) | Update dependencies | +| 0.1.11 | 2024-06-06 | [39246](https://github.com/airbytehq/airbyte/pull/39246) | [autopull] Upgrade base image to v1.2.2 | +| 0.1.10 | 2024-06-03 | [38911](https://github.com/airbytehq/airbyte/pull/38911) | Replace AirbyteLogger with logging.Logger | +| 0.1.9 | 2024-06-03 | [38911](https://github.com/airbytehq/airbyte/pull/38911) | Replace AirbyteLogger with logging.Logger | +| 0.1.8 | 2024-05-20 | [38448](https://github.com/airbytehq/airbyte/pull/38448) | [autopull] base image + poetry + up_to_date | +| 0.1.7 | 2024-04-15 | [37122](https://github.com/airbytehq/airbyte/pull/37122) | Base image migration: remove Dockerfile and use the python-connector-base image | +| 0.1.6 | 2024-04-12 | [37122](https://github.com/airbytehq/airbyte/pull/37122) | schema descriptions | +| 0.1.5 | 2023-02-15 | [23083](https://github.com/airbytehq/airbyte/pull/23083) | Specified date formatting in specification | +| 0.1.4 | 2022-04-11 | [11763](https://github.com/airbytehq/airbyte/pull/11763) | Upgrade to Python 3.9 | +| 0.1.3 | 2021-12-23 | [8434](https://github.com/airbytehq/airbyte/pull/8434) | Update fields in source-connectors specifications | +| 0.1.2 | 2021-08-04 | [5152](https://github.com/airbytehq/airbyte/pull/5152) | Fix connector spec.json | +| 0.1.1 | 2021-07-06 | [4539](https://github.com/airbytehq/airbyte/pull/4539) | Add `AIRBYTE_ENTRYPOINT` for Kubernetes support | +| 0.1.0 | 2021-06-23 | [4122](https://github.com/airbytehq/airbyte/pull/4122) | Initial release supporting the LookupEvent API | From 41680b9870364934004409e2262606f7e31a60c0 Mon Sep 17 00:00:00 2001 From: prashant-mittal9 <168704883+prashant-mittal9@users.noreply.github.com> Date: Wed, 30 Oct 2024 04:34:45 +0530 Subject: [PATCH 479/808] source-clazar: updated logo as the logo of company has changed (#46949) Co-authored-by: Marcos Marx Co-authored-by: marcosmarxm --- .../connectors/source-clazar/icon.svg | 12 +++++-- .../connectors/source-clazar/metadata.yaml | 2 +- docs/integrations/sources/clazar.md | 33 ++++++++++--------- 3 files changed, 28 insertions(+), 19 deletions(-) diff --git a/airbyte-integrations/connectors/source-clazar/icon.svg b/airbyte-integrations/connectors/source-clazar/icon.svg index e7c2546fccd4..7f8043898a3e 100644 --- a/airbyte-integrations/connectors/source-clazar/icon.svg +++ b/airbyte-integrations/connectors/source-clazar/icon.svg @@ -1,3 +1,11 @@ - - + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-clazar/metadata.yaml b/airbyte-integrations/connectors/source-clazar/metadata.yaml index feaeedca6651..2d552b5d5bb2 100644 --- a/airbyte-integrations/connectors/source-clazar/metadata.yaml +++ b/airbyte-integrations/connectors/source-clazar/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: d7df7b64-6266-45b5-ad83-e1515578f371 - dockerImageTag: 0.4.2 + dockerImageTag: 0.4.3 dockerRepository: airbyte/source-clazar githubIssueLabel: source-clazar icon: clazar.svg diff --git a/docs/integrations/sources/clazar.md b/docs/integrations/sources/clazar.md index eaba21fd6581..992b7d3a6573 100644 --- a/docs/integrations/sources/clazar.md +++ b/docs/integrations/sources/clazar.md @@ -112,22 +112,23 @@ Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------| -| 0.4.2 | 2024-10-29 | [47843](https://github.com/airbytehq/airbyte/pull/47843) | Update dependencies | -| 0.4.1 | 2024-10-28 | [47598](https://github.com/airbytehq/airbyte/pull/47598) | Update dependencies | -| 0.4.0 | 2024-08-30 | [44855](https://github.com/airbytehq/airbyte/pull/44855) | Using incremental APIs for online data | -| 0.3.0 | 2024-08-21 | [44523](https://github.com/airbytehq/airbyte/pull/44523) | Refactor connector to manifest-only format | -| 0.2.6 | 2024-08-17 | [44217](https://github.com/airbytehq/airbyte/pull/44217) | Update dependencies | -| 0.2.5 | 2024-08-12 | [43768](https://github.com/airbytehq/airbyte/pull/43768) | Update dependencies | -| 0.2.4 | 2024-08-05 | [42851](https://github.com/airbytehq/airbyte/pull/42851) | Updated schema of Analytics AWS opportunities table | -| 0.2.3 | 2024-08-03 | [43155](https://github.com/airbytehq/airbyte/pull/43155) | Update dependencies | -| 0.2.2 | 2024-07-27 | [42617](https://github.com/airbytehq/airbyte/pull/42617) | Update dependencies | -| 0.2.1 | 2024-07-20 | [42315](https://github.com/airbytehq/airbyte/pull/42315) | Update dependencies | -| 0.2.0 | 2024-07-18 | [41657](https://github.com/airbytehq/airbyte/pull/41657) | removed redundant columns from streams, added documentation for analytics | -| 0.1.4 | 2024-07-13 | [41759](https://github.com/airbytehq/airbyte/pull/41759) | Update dependencies | -| 0.1.3 | 2024-07-10 | [41351](https://github.com/airbytehq/airbyte/pull/41351) | Update dependencies | -| 0.1.2 | 2024-07-09 | [41123](https://github.com/airbytehq/airbyte/pull/41123) | Update dependencies | -| 0.1.1 | 2024-07-06 | [40922](https://github.com/airbytehq/airbyte/pull/40922) | Update dependencies | -| 0.1.0 | 2024-07-02 | [40562](https://github.com/airbytehq/airbyte/pull/40562) | New Source: Clazar | +| 0.4.3 | 2024-10-30 | [46949](https://github.com/airbytehq/airbyte/pull/46949) | Updated the logo | +| 0.4.2 | 2024-10-29 | [47843](https://github.com/airbytehq/airbyte/pull/47843) | Update dependencies | +| 0.4.1 | 2024-10-28 | [47598](https://github.com/airbytehq/airbyte/pull/47598) | Update dependencies | +| 0.4.0 | 2024-08-30 | [44855](https://github.com/airbytehq/airbyte/pull/44855) | Using incremental APIs for online data | +| 0.3.0 | 2024-08-21 | [44523](https://github.com/airbytehq/airbyte/pull/44523) | Refactor connector to manifest-only format | +| 0.2.6 | 2024-08-17 | [44217](https://github.com/airbytehq/airbyte/pull/44217) | Update dependencies | +| 0.2.5 | 2024-08-12 | [43768](https://github.com/airbytehq/airbyte/pull/43768) | Update dependencies | +| 0.2.4 | 2024-08-05 | [42851](https://github.com/airbytehq/airbyte/pull/42851) | Updated schema of Analytics AWS opportunities table | +| 0.2.3 | 2024-08-03 | [43155](https://github.com/airbytehq/airbyte/pull/43155) | Update dependencies | +| 0.2.2 | 2024-07-27 | [42617](https://github.com/airbytehq/airbyte/pull/42617) | Update dependencies | +| 0.2.1 | 2024-07-20 | [42315](https://github.com/airbytehq/airbyte/pull/42315) | Update dependencies | +| 0.2.0 | 2024-07-18 | [41657](https://github.com/airbytehq/airbyte/pull/41657) | removed redundant columns from streams, added documentation for analytics | +| 0.1.4 | 2024-07-13 | [41759](https://github.com/airbytehq/airbyte/pull/41759) | Update dependencies | +| 0.1.3 | 2024-07-10 | [41351](https://github.com/airbytehq/airbyte/pull/41351) | Update dependencies | +| 0.1.2 | 2024-07-09 | [41123](https://github.com/airbytehq/airbyte/pull/41123) | Update dependencies | +| 0.1.1 | 2024-07-06 | [40922](https://github.com/airbytehq/airbyte/pull/40922) | Update dependencies | +| 0.1.0 | 2024-07-02 | [40562](https://github.com/airbytehq/airbyte/pull/40562) | New Source: Clazar | From 874f786a5a60319e6ccef3303b39308a965873d6 Mon Sep 17 00:00:00 2001 From: Xiaohan Song Date: Tue, 29 Oct 2024 16:25:39 -0700 Subject: [PATCH 480/808] [source-mysql-v2] Add datatype test for CDC and fix some conversion logic (#47695) --- .../connectors/source-mysql-v2/metadata.yaml | 2 +- .../mysql/cdc/MySqlDebeziumOperations.kt | 8 +- .../cdc/converters/MySQLBooleanConverter.kt | 54 ++ .../cdc/converters/MySQLNumbericConverter.kt | 53 ++ .../mysql/MysqlCdcDatatypeIntegrationTest.kt | 464 ++++++++++++++++++ .../source/mysql/MysqlContainerFactory.kt | 14 + 6 files changed, 592 insertions(+), 3 deletions(-) create mode 100644 airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/converters/MySQLBooleanConverter.kt create mode 100644 airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/converters/MySQLNumbericConverter.kt create mode 100644 airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcDatatypeIntegrationTest.kt diff --git a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml index bad0e5851898..2f6b898a1759 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml +++ b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: database connectorType: source definitionId: 561393ed-7e3a-4d0d-8b8b-90ded371754c - dockerImageTag: 0.0.28 + dockerImageTag: 0.0.29 dockerRepository: airbyte/source-mysql-v2 documentationUrl: https://docs.airbyte.com/integrations/sources/mysql githubIssueLabel: source-mysql-v2 diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt index 33e9bb228494..7efdbfac8e0c 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt @@ -34,7 +34,9 @@ import io.airbyte.integrations.source.mysql.CdcIncrementalConfiguration import io.airbyte.integrations.source.mysql.InvalidCdcCursorPositionBehavior import io.airbyte.integrations.source.mysql.MysqlCdcMetaFields import io.airbyte.integrations.source.mysql.MysqlSourceConfiguration +import io.airbyte.integrations.source.mysql.cdc.converters.MySQLBooleanConverter import io.airbyte.integrations.source.mysql.cdc.converters.MySQLDateTimeConverter +import io.airbyte.integrations.source.mysql.cdc.converters.MySQLNumericConverter import io.airbyte.protocol.models.v0.StreamDescriptor import io.debezium.connector.mysql.MySqlConnector import io.debezium.connector.mysql.gtid.MySqlGtidSet @@ -134,7 +136,7 @@ class MySqlDebeziumOperations( val newGtidSet = availableGtidSet.subtract(savedGtidSet) if (!newGtidSet.isEmpty) { val purgedGtidSet = queryPurgedIds() - if (!newGtidSet.subtract(purgedGtidSet).equals(newGtidSet)) { + if (!purgedGtidSet.isEmpty && !newGtidSet.subtract(purgedGtidSet).equals(newGtidSet)) { log.info { "Connector has not seen GTIDs $newGtidSet, but MySQL server has purged $purgedGtidSet" } @@ -368,11 +370,13 @@ class MySqlDebeziumOperations( .withDatabase("include.list", databaseName) .withOffset() .withSchemaHistory() - .with("converters", "datetime") + .with("converters", "datetime,numeric,boolean") .with( "datetime.type", MySQLDateTimeConverter::class.java.getName(), ) + .with("numeric.type", MySQLNumericConverter::class.java.getName()) + .with("boolean.type", MySQLBooleanConverter::class.java.getName()) // TODO: add missing properties, like MySQL converters, etc. Do a full audit. .buildMap() } diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/converters/MySQLBooleanConverter.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/converters/MySQLBooleanConverter.kt new file mode 100644 index 000000000000..6351696a56af --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/converters/MySQLBooleanConverter.kt @@ -0,0 +1,54 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.integrations.source.mysql.cdc.converters + +import io.debezium.spi.converter.CustomConverter +import io.debezium.spi.converter.RelationalColumn +import java.util.* +import org.apache.kafka.connect.data.SchemaBuilder + +class MySQLBooleanConverter : CustomConverter { + override fun configure(props: Properties?) {} + + private val BOOLEAN_TYPES = arrayOf("BOOLEAN", "BOOL", "TINYINT") + + override fun converterFor( + field: RelationalColumn?, + registration: CustomConverter.ConverterRegistration? + ) { + if ( + Arrays.stream(BOOLEAN_TYPES).anyMatch { s: String -> + field!!.typeName().contains(s, ignoreCase = true) && + field.length().isPresent && + field.length().asInt == 1 + } + ) { + registerBoolean(field, registration) + } + } + + private fun registerBoolean( + field: RelationalColumn?, + registration: CustomConverter.ConverterRegistration? + ) { + registration?.register(SchemaBuilder.bool()) { x -> + if (x == null) { + return@register if (field!!.isOptional) { + null + } else if (field.hasDefaultValue()) { + field.defaultValue() + } else { + null + } + } + when (x) { + is Boolean -> x + is String -> x.toBoolean() + is Int -> x != 0 + else -> throw IllegalArgumentException("Unsupported type: ${x::class}") + } + } + } +} diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/converters/MySQLNumbericConverter.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/converters/MySQLNumbericConverter.kt new file mode 100644 index 000000000000..0764f6a06ade --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/converters/MySQLNumbericConverter.kt @@ -0,0 +1,53 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.integrations.source.mysql.cdc.converters + +import io.debezium.spi.converter.CustomConverter +import io.debezium.spi.converter.RelationalColumn +import java.util.* +import org.apache.kafka.connect.data.SchemaBuilder + +class MySQLNumericConverter : CustomConverter { + override fun configure(props: Properties?) {} + + private val NUMERIC_TYPES = arrayOf("FLOAT", "DOUBLE", "DECIMAL") + + override fun converterFor( + field: RelationalColumn?, + registration: CustomConverter.ConverterRegistration? + ) { + if ( + Arrays.stream(NUMERIC_TYPES).anyMatch { s: String -> + field!!.typeName().contains(s, ignoreCase = true) + } + ) { + registerNumber(field, registration) + } + } + + private fun registerNumber( + field: RelationalColumn?, + registration: CustomConverter.ConverterRegistration? + ) { + registration?.register(SchemaBuilder.float64()) { x -> + if (x == null) { + return@register if (field!!.isOptional) { + null + } else if (field.hasDefaultValue()) { + field.defaultValue() + } else { + null + } + } + when (x) { + is String -> x.toDouble() + is Float -> x.toString().toDouble() + is java.math.BigDecimal -> x.stripTrailingZeros().toDouble() + is Number -> x.toDouble() + else -> throw IllegalArgumentException("Unsupported type: ${x::class}") + } + } + } +} diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcDatatypeIntegrationTest.kt b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcDatatypeIntegrationTest.kt new file mode 100644 index 000000000000..de98f82776f1 --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcDatatypeIntegrationTest.kt @@ -0,0 +1,464 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.integrations.source.mysql + +import com.fasterxml.jackson.databind.JsonNode +import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.ClockFactory +import io.airbyte.cdk.command.CliRunner +import io.airbyte.cdk.data.AirbyteSchemaType +import io.airbyte.cdk.data.LeafAirbyteSchemaType +import io.airbyte.cdk.jdbc.JdbcConnectionFactory +import io.airbyte.cdk.output.BufferingOutputConsumer +import io.airbyte.cdk.util.Jsons +import io.airbyte.integrations.source.mysql.MysqlContainerFactory.execAsRoot +import io.airbyte.protocol.models.v0.AirbyteMessage +import io.airbyte.protocol.models.v0.AirbyteRecordMessage +import io.airbyte.protocol.models.v0.AirbyteStream +import io.airbyte.protocol.models.v0.CatalogHelpers +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog +import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream +import io.airbyte.protocol.models.v0.SyncMode +import io.github.oshai.kotlinlogging.KotlinLogging +import java.sql.Connection +import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.BeforeAll +import org.junit.jupiter.api.DynamicContainer +import org.junit.jupiter.api.DynamicNode +import org.junit.jupiter.api.DynamicTest +import org.junit.jupiter.api.TestFactory +import org.junit.jupiter.api.Timeout +import org.testcontainers.containers.MySQLContainer + +private val log = KotlinLogging.logger {} + +class MysqlCdcDatatypeIntegrationTest { + @TestFactory + @Timeout(300) + fun syncTests(): Iterable { + val read: DynamicNode = + DynamicTest.dynamicTest("read") { + Assertions.assertFalse(LazyValues.actualReads.isEmpty()) + } + val cases: List = + allStreamNamesAndRecordData.keys.map { streamName: String -> + DynamicContainer.dynamicContainer( + streamName, + listOf( + DynamicTest.dynamicTest("records") { records(streamName) }, + ), + ) + } + return listOf(read) + cases + } + + object LazyValues { + val actualStreams: Map by lazy { + val output: BufferingOutputConsumer = CliRunner.source("discover", config()).run() + output.catalogs().firstOrNull()?.streams?.filterNotNull()?.associateBy { it.name } + ?: mapOf() + } + + val configuredCatalog: ConfiguredAirbyteCatalog by lazy { + val configuredStreams: List = + allStreamNamesAndRecordData.keys + .mapNotNull { actualStreams[it] } + .map { + CatalogHelpers.toDefaultConfiguredStream(it) + .withCursorField( + listOf(MysqlCdcMetaFields.CDC_CURSOR.id), + ) + } + + for (configuredStream in configuredStreams) { + if (configuredStream.stream.supportedSyncModes.contains(SyncMode.INCREMENTAL)) { + configuredStream.syncMode = SyncMode.INCREMENTAL + } + } + ConfiguredAirbyteCatalog().withStreams(configuredStreams) + } + + val allReadMessages: List by lazy { + // only get messsages from the 2nd run + val lastStateMessageFromFirstRun = + CliRunner.source("read", config(), configuredCatalog).run().states().last() + + // insert + connectionFactory + .get() + .also { it.isReadOnly = false } + .use { connection: Connection -> + for (case in testCases) { + for (sql in case.sqlInsertStatements) { + log.info { "test case ${case.id}: executing $sql" } + connection.createStatement().use { stmt -> stmt.execute(sql) } + } + } + } + + // Run it in dbz mode on 2nd time: + CliRunner.source( + "read", + config(), + configuredCatalog, + listOf(lastStateMessageFromFirstRun) + ) + .run() + .messages() + } + + val actualReads: Map by lazy { + val result: Map = + allStreamNamesAndRecordData.keys.associateWith { + BufferingOutputConsumer(ClockFactory().fixed()) + } + for (msg in allReadMessages) { + result[streamName(msg) ?: continue]?.accept(msg) + } + result + } + + fun streamName(msg: AirbyteMessage): String? = + when (msg.type) { + AirbyteMessage.Type.RECORD -> msg.record?.stream + else -> null + } + } + + private fun records(streamName: String) { + val actualRead: BufferingOutputConsumer? = LazyValues.actualReads[streamName] + Assertions.assertNotNull(actualRead) + + fun sortedRecordData(data: List): JsonNode = + Jsons.createArrayNode().apply { addAll(data.sortedBy { it.toString() }) } + + val actualRecords: List = actualRead?.records() ?: listOf() + + val records = actualRecords.mapNotNull { it.data } + + records.forEach { jsonNode -> + if (jsonNode is ObjectNode) { + // Remove unwanted fields + jsonNode.remove("_ab_cdc_updated_at") + jsonNode.remove("_ab_cdc_deleted_at") + jsonNode.remove("_ab_cdc_cursor") + jsonNode.remove("_ab_cdc_log_file") + jsonNode.remove("_ab_cdc_log_pos") + } + } + val actual: JsonNode = sortedRecordData(records) + + log.info { "test case $streamName: emitted records $actual" } + val expected: JsonNode = sortedRecordData(allStreamNamesAndRecordData[streamName]!!) + + Assertions.assertEquals(expected, actual) + } + + companion object { + lateinit var dbContainer: MySQLContainer<*> + + fun config(): MysqlSourceConfigurationSpecification = + MysqlContainerFactory.cdcConfig(dbContainer) + + val connectionFactory: JdbcConnectionFactory by lazy { + JdbcConnectionFactory(MysqlSourceConfigurationFactory().make(config())) + } + + val bitValues = + mapOf( + "b'1'" to "true", + "b'0'" to "false", + ) + + val longBitValues = + mapOf( + "b'10101010'" to """"qg=="""", + ) + + val stringValues = + mapOf( + "'abcdef'" to """"abcdef"""", + "'ABCD'" to """"ABCD"""", + "'OXBEEF'" to """"OXBEEF"""", + ) + + val yearValues = + mapOf( + "1992" to """1992""", + "2002" to """2002""", + "70" to """1970""", + ) + + val precisionTwoDecimalValues = + mapOf( + "0.2" to """0.2""", + ) + + val floatValues = + mapOf( + "123.4567" to """123.4567""", + ) + + val zeroPrecisionDecimalValues = + mapOf( + "2" to """2.0""", + ) + + val tinyintValues = + mapOf( + "10" to "10", + "4" to "4", + "2" to "2", + ) + + val intValues = + mapOf( + "10" to "10", + "100000000" to "100000000", + "200000000" to "200000000", + ) + + val dateValues = + mapOf( + "'2022-01-01'" to """"2022-01-01"""", + ) + + val timeValues = + mapOf( + "'14:30:00'" to """"14:30:00.000000"""", + ) + + val dateTimeValues = + mapOf( + "'2024-09-13 14:30:00'" to """"2024-09-13T14:30:00.000000"""", + "'2024-09-13T14:40:00+00:00'" to """"2024-09-13T14:40:00.000000"""", + ) + + val timestampValues = + mapOf( + "'2024-09-12 14:30:00'" to """"2024-09-12T14:30:00.000000Z"""", + "CONVERT_TZ('2024-09-12 14:30:00', 'America/Los_Angeles', 'UTC')" to + """"2024-09-12T21:30:00.000000Z"""", + ) + + val booleanValues = + mapOf( + "TRUE" to "true", + "FALSE" to "false", + ) + + val testCases: List = + listOf( + TestCase( + "BOOLEAN", + booleanValues, + airbyteSchemaType = LeafAirbyteSchemaType.BOOLEAN, + cursor = false, + ), + TestCase( + "VARCHAR(10)", + stringValues, + airbyteSchemaType = LeafAirbyteSchemaType.STRING, + ), + TestCase( + "DECIMAL(10,2)", + precisionTwoDecimalValues, + airbyteSchemaType = LeafAirbyteSchemaType.NUMBER, + ), + TestCase( + "DECIMAL(10,2) UNSIGNED", + precisionTwoDecimalValues, + airbyteSchemaType = LeafAirbyteSchemaType.NUMBER, + ), + TestCase( + "DECIMAL UNSIGNED", + zeroPrecisionDecimalValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + TestCase( + "FLOAT", + precisionTwoDecimalValues, + airbyteSchemaType = LeafAirbyteSchemaType.NUMBER + ), + TestCase( + "FLOAT(7,4)", + floatValues, + airbyteSchemaType = LeafAirbyteSchemaType.NUMBER, + ), + TestCase( + "FLOAT(53,8)", + floatValues, + airbyteSchemaType = LeafAirbyteSchemaType.NUMBER, + ), + TestCase( + "DOUBLE", + precisionTwoDecimalValues, + airbyteSchemaType = LeafAirbyteSchemaType.NUMBER + ), + TestCase( + "DOUBLE UNSIGNED", + precisionTwoDecimalValues, + airbyteSchemaType = LeafAirbyteSchemaType.NUMBER, + ), + TestCase( + "TINYINT", + tinyintValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + TestCase( + "TINYINT UNSIGNED", + tinyintValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + TestCase( + "SMALLINT", + tinyintValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + TestCase( + "MEDIUMINT", + tinyintValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + TestCase("BIGINT", intValues, airbyteSchemaType = LeafAirbyteSchemaType.INTEGER), + TestCase( + "SMALLINT UNSIGNED", + tinyintValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + TestCase( + "MEDIUMINT UNSIGNED", + tinyintValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + TestCase( + "BIGINT UNSIGNED", + intValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + TestCase("INT", intValues, airbyteSchemaType = LeafAirbyteSchemaType.INTEGER), + TestCase( + "INT UNSIGNED", + intValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + TestCase("DATE", dateValues, airbyteSchemaType = LeafAirbyteSchemaType.DATE), + TestCase( + "TIMESTAMP", + timestampValues, + airbyteSchemaType = LeafAirbyteSchemaType.TIMESTAMP_WITH_TIMEZONE, + ), + TestCase( + "DATETIME", + dateTimeValues, + airbyteSchemaType = LeafAirbyteSchemaType.TIMESTAMP_WITHOUT_TIMEZONE, + ), + TestCase( + "TIME", + timeValues, + airbyteSchemaType = LeafAirbyteSchemaType.TIME_WITHOUT_TIMEZONE, + ), + TestCase("YEAR", yearValues, airbyteSchemaType = LeafAirbyteSchemaType.INTEGER), + TestCase( + "BIT", + bitValues, + airbyteSchemaType = LeafAirbyteSchemaType.BOOLEAN, + cursor = false, + ), + TestCase( + "BIT(8)", + longBitValues, + airbyteSchemaType = LeafAirbyteSchemaType.INTEGER, + ), + ) + + val allStreamNamesAndRecordData: Map> = + testCases.flatMap { it.streamNamesToRecordData.toList() }.toMap() + + @JvmStatic + @BeforeAll + @Timeout(value = 300) + fun startAndProvisionTestContainer() { + dbContainer = + MysqlContainerFactory.exclusive( + "mysql:8.0", + MysqlContainerFactory.WithNetwork, + ) + + val gtidOn = + "SET @@GLOBAL.ENFORCE_GTID_CONSISTENCY = 'ON';" + + "SET @@GLOBAL.GTID_MODE = 'OFF_PERMISSIVE';" + + "SET @@GLOBAL.GTID_MODE = 'ON_PERMISSIVE';" + + "SET @@GLOBAL.GTID_MODE = 'ON';" + val grant = + "GRANT SELECT, RELOAD, SHOW DATABASES, REPLICATION SLAVE, REPLICATION CLIENT " + + "ON *.* TO '${dbContainer.username}'@'%';" + + dbContainer.execAsRoot(gtidOn) + dbContainer.execAsRoot(grant) + dbContainer.execAsRoot("FLUSH PRIVILEGES;") + connectionFactory + .get() + .also { it.isReadOnly = false } + .use { connection: Connection -> + for (case in testCases) { + for (sql in case.sqlStatements) { + log.info { "test case ${case.id}: executing $sql" } + connection.createStatement().use { stmt -> stmt.execute(sql) } + } + } + } + } + } + + data class TestCase( + val sqlType: String, + val sqlToAirbyte: Map, + val airbyteSchemaType: AirbyteSchemaType = LeafAirbyteSchemaType.STRING, + val cursor: Boolean = true, + val customDDL: List? = null, + ) { + val id: String + get() = + sqlType + .replace("[^a-zA-Z0-9]".toRegex(), " ") + .trim() + .replace(" +".toRegex(), "_") + .lowercase() + + val tableName: String + get() = "tbl_$id" + + val columnName: String + get() = "col_$id" + + val sqlStatements: List + get() { + return listOf( + "CREATE DATABASE IF NOT EXISTS test", + "USE test", + "CREATE TABLE IF NOT EXISTS $tableName " + "($columnName $sqlType PRIMARY KEY)", + "TRUNCATE TABLE $tableName", + ) + } + + val sqlInsertStatements: List + get() { + val result = + listOf("USE test;") + + sqlToAirbyte.keys.map { + "INSERT INTO $tableName ($columnName) VALUES ($it)" + } + return result + } + + val streamNamesToRecordData: Map> + get() { + val recordData: List = + sqlToAirbyte.values.map { Jsons.readTree("""{"${columnName}":$it}""") } + return mapOf(tableName to recordData) + } + } +} diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlContainerFactory.kt b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlContainerFactory.kt index 13f8d439371b..ab092fe53967 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlContainerFactory.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlContainerFactory.kt @@ -63,6 +63,20 @@ object MysqlContainerFactory { setMethodValue(UserDefinedCursor) } + @JvmStatic + fun cdcConfig(mySQLContainer: MySQLContainer<*>): MysqlSourceConfigurationSpecification = + MysqlSourceConfigurationSpecification().apply { + host = mySQLContainer.host + port = mySQLContainer.getMappedPort(MySQLContainer.MYSQL_PORT) + username = mySQLContainer.username + password = mySQLContainer.password + jdbcUrlParams = "" + database = "test" + checkpointTargetIntervalSeconds = 60 + concurrency = 1 + setMethodValue(CdcCursor()) + } + fun MySQLContainer<*>.execAsRoot(sql: String) { val cleanSql: String = sql.trim().removeSuffix(";") + ";" log.info { "Executing SQL as root: $cleanSql" } From 1765dcd5a81b5c528d005cfa863828a33b25afaa Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Wed, 30 Oct 2024 05:25:28 +0530 Subject: [PATCH 481/808] Source Zoom: Migrate to manifest-only format with components (#47299) Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-zoom/README.md | 128 +- .../connectors/source-zoom/__init__.py | 3 - .../source-zoom/acceptance-test-config.yml | 6 +- .../{source_zoom => }/components.py | 0 .../connectors/source-zoom/main.py | 8 - .../connectors/source-zoom/manifest.yaml | 14184 ++++++++++++++++ .../connectors/source-zoom/metadata.yaml | 13 +- .../connectors/source-zoom/poetry.lock | 1066 -- .../connectors/source-zoom/pyproject.toml | 28 - .../source-zoom/source_zoom/__init__.py | 8 - .../source-zoom/source_zoom/manifest.yaml | 795 - .../connectors/source-zoom/source_zoom/run.py | 14 - .../schemas/meeting_poll_results.json | 44 - .../source_zoom/schemas/meeting_polls.json | 94 - .../schemas/meeting_registrants.json | 83 - .../meeting_registration_questions.json | 46 - .../source_zoom/schemas/meetings.json | 485 - .../schemas/meetings_list_tmp.json | 5 - .../schemas/report_meeting_participants.json | 54 - .../source_zoom/schemas/report_meetings.json | 76 - .../schemas/report_webinar_participants.json | 42 - .../source_zoom/schemas/report_webinars.json | 73 - .../source_zoom/schemas/users.json | 92 - .../schemas/webinar_absentees.json | 83 - .../schemas/webinar_panelists.json | 36 - .../schemas/webinar_poll_results.json | 35 - .../source_zoom/schemas/webinar_polls.json | 94 - .../schemas/webinar_qna_results.json | 29 - .../schemas/webinar_registrants.json | 83 - .../webinar_registration_questions.json | 46 - .../schemas/webinar_tracking_sources.json | 24 - .../source_zoom/schemas/webinars.json | 311 - .../schemas/webinars_list_tmp.json | 5 - .../source-zoom/source_zoom/source.py | 18 - .../source-zoom/source_zoom/spec.yaml | 29 - .../unit_tests/test_zoom_authenticator.py | 60 - docs/integrations/sources/zoom.md | 1 + 37 files changed, 14227 insertions(+), 3974 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-zoom/__init__.py rename airbyte-integrations/connectors/source-zoom/{source_zoom => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-zoom/main.py create mode 100644 airbyte-integrations/connectors/source-zoom/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-zoom/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-zoom/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/__init__.py delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/run.py delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_poll_results.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_polls.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_registrants.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_registration_questions.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meetings.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meetings_list_tmp.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_meeting_participants.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_meetings.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_webinar_participants.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_webinars.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/users.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_absentees.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_panelists.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_poll_results.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_polls.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_qna_results.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_registrants.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_registration_questions.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_tracking_sources.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinars.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinars_list_tmp.json delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/source.py delete mode 100644 airbyte-integrations/connectors/source-zoom/source_zoom/spec.yaml delete mode 100755 airbyte-integrations/connectors/source-zoom/unit_tests/test_zoom_authenticator.py diff --git a/airbyte-integrations/connectors/source-zoom/README.md b/airbyte-integrations/connectors/source-zoom/README.md index 4b79a68fd3d6..633cc9023d00 100644 --- a/airbyte-integrations/connectors/source-zoom/README.md +++ b/airbyte-integrations/connectors/source-zoom/README.md @@ -1,105 +1,49 @@ -# Zoom Source +# Zoom source connector -This is the repository for the Zoom configuration based source connector. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/sources/zoom). +This directory contains the manifest-only connector for `source-zoom`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/zoom). -#### Create credentials +## Local development -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/sources/zoom) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_survey_sparrow/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `integration_tests/sample_config.json` for a sample config file. +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -**If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `source zoom test creds` -and place them into `secrets/config.json`. +If you prefer to develop locally, you can follow the instructions below. -### Locally running the connector docker image +### Building the docker image -#### Use `airbyte-ci` to build your connector +You can build any manifest-only connector with `airbyte-ci`: -The Airbyte way of building this connector is to use our `airbyte-ci` tool. -You can follow install instructions [here](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md#L1). -Then running the following command will build your connector: +1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) +2. Run the following command to build the docker image: ```bash -airbyte-ci connectors --name source-zoom build -``` - -Once the command is done, you will find your connector image in your local docker registry: `airbyte/source-zoom:dev`. - -##### Customizing our build process - -When contributing on our connector you might need to customize the build process to add a system dependency or set an env var. -You can customize our build process by adding a `build_customization.py` module to your connector. -This module should contain a `pre_connector_install` and `post_connector_install` async function that will mutate the base image and the connector container respectively. -It will be imported at runtime by our build process and the functions will be called if they exist. - -Here is an example of a `build_customization.py` module: - -```python -from __future__ import annotations - -from typing import TYPE_CHECKING - -if TYPE_CHECKING: - # Feel free to check the dagger documentation for more information on the Container object and its methods. - # https://dagger-io.readthedocs.io/en/sdk-python-v0.6.4/ - from dagger import Container - - -async def pre_connector_install(base_image_container: Container) -> Container: - return await base_image_container.with_env_variable("MY_PRE_BUILD_ENV_VAR", "my_pre_build_env_var_value") - -async def post_connector_install(connector_container: Container) -> Container: - return await connector_container.with_env_variable("MY_POST_BUILD_ENV_VAR", "my_post_build_env_var_value") +airbyte-ci connectors --name=source-zoom build ``` -#### Build your own connector image - -This connector is built using our dynamic built process in `airbyte-ci`. -The base image used to build it is defined within the metadata.yaml file under the `connectorBuildOptions`. -The build logic is defined using [Dagger](https://dagger.io/) [here](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/pipelines/builds/python_connectors.py). -It does not rely on a Dockerfile. - -If you would like to patch our connector and build your own a simple approach would be to: +An image will be available on your host with the tag `airbyte/source-zoom:dev`. -1. Create your own Dockerfile based on the latest version of the connector image. +### Creating credentials -```Dockerfile -FROM airbyte/source-zoom:latest - -COPY . ./airbyte/integration_code -RUN pip install ./airbyte/integration_code - -# The entrypoint and default env vars are already set in the base image -# ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" -# ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -``` +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/zoom) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -Please use this as an example. This is not optimized. +### Running as a docker container -2. Build your image: +Then run any of the standard source connector commands: ```bash -docker build -t airbyte/source-zoom:dev . -# Running the spec command against your patched connector -docker run airbyte/source-zoom:dev spec -``` - -#### Run - -Then run any of the connector commands as follows: - -``` docker run --rm airbyte/source-zoom:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-zoom:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-zoom:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-zoom:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -## Testing +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): @@ -107,27 +51,15 @@ You can run our full test suite locally using [`airbyte-ci`](https://github.com/ airbyte-ci connectors --name=source-zoom test ``` -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -## Dependency Management - -All of your dependencies should go in `setup.py`, NOT `requirements.txt`. The requirements file is only used to connect internal Airbyte dependencies in the monorepo for local development. -We split dependencies between two groups, dependencies that are: - -- required for your connector to work need to go to `MAIN_REQUIREMENTS` list. -- required for the testing need to go to `TEST_REQUIREMENTS` list - -### Publishing a new version of the connector - -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? +## Publishing a new version of the connector -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-zoom test` -2. Bump the connector version in `metadata.yaml`: increment the `dockerImageTag` value. Please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors). -3. Make sure the `metadata.yaml` content is up to date. -4. Make the connector documentation and its changelog is up to date (`docs/integrations/sources/zoom.md`). +If you want to contribute changes to `source-zoom`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-zoom test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + - bump the `dockerImageTag` value in in `metadata.yaml` +4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/zoom.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. +8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-zoom/__init__.py b/airbyte-integrations/connectors/source-zoom/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-zoom/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-zoom/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zoom/acceptance-test-config.yml index 55fa9e4ac247..a632bedd3cf8 100644 --- a/airbyte-integrations/connectors/source-zoom/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-zoom/acceptance-test-config.yml @@ -4,7 +4,7 @@ connector_image: airbyte/source-zoom:dev acceptance_tests: spec: tests: - - spec_path: "source_zoom/spec.yaml" + - spec_path: "manifest.yaml" connection: tests: - config_path: "secrets/config.json" @@ -51,5 +51,7 @@ acceptance_tests: ignored_fields: meetings: - name: "start_url" - bypass_reason: "Causes sequential_read test to fail as the value is unique upon each read" + bypass_reason: + "Causes sequential_read test to fail as the value is unique + upon each read" timeout_seconds: 3600 diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/components.py b/airbyte-integrations/connectors/source-zoom/components.py similarity index 100% rename from airbyte-integrations/connectors/source-zoom/source_zoom/components.py rename to airbyte-integrations/connectors/source-zoom/components.py diff --git a/airbyte-integrations/connectors/source-zoom/main.py b/airbyte-integrations/connectors/source-zoom/main.py deleted file mode 100644 index 137aea5931e6..000000000000 --- a/airbyte-integrations/connectors/source-zoom/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_zoom.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-zoom/manifest.yaml b/airbyte-integrations/connectors/source-zoom/manifest.yaml new file mode 100644 index 000000000000..efdb8eb14634 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoom/manifest.yaml @@ -0,0 +1,14184 @@ +version: 5.14.0 +definitions: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + zoom_paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + users_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + meetings_list_tmp_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/meetings" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + meetings_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/meetings/{{ stream_partition.parent_id }}" + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/meetings" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + assistant_id: + type: + - 'null' + - string + host_email: + type: + - 'null' + - string + host_id: + type: + - 'null' + - string + id: + type: + - 'null' + - number + uuid: + type: + - 'null' + - string + agenda: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + encrypted_password: + type: + - 'null' + - string + h323_password: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + chat_join_url: + type: + - 'null' + - string + occurrences: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + duration: + type: + - 'null' + - number + occurrence_id: + type: + - 'null' + - string + start_time: + type: + - 'null' + - string + status: + type: + - 'null' + - string + password: + type: + - 'null' + - string + pmi: + type: + - 'null' + - string + pre_schedule: + type: + - 'null' + - boolean + pstn_password: + type: + - 'null' + - string + recurrence: + type: + - 'null' + - object + properties: + end_date_time: + type: + - 'null' + - string + end_times: + type: + - 'null' + - number + monthly_day: + type: + - 'null' + - number + monthly_week: + type: + - 'null' + - number + monthly_week_day: + type: + - 'null' + - number + repeat_interval: + type: + - 'null' + - number + type: + type: + - 'null' + - number + weekly_days: + type: + - 'null' + - string + settings: + type: + - 'null' + - object + properties: + allow_multiple_devices: + type: + - 'null' + - boolean + alternative_hosts: + type: + - 'null' + - string + alternative_hosts_email_notification: + type: + - 'null' + - boolean + alternative_host_update_polls: + type: + - 'null' + - boolean + approval_type: + type: + - 'null' + - number + approved_or_denied_countries_or_regions: + type: + - 'null' + - object + properties: + approved_list: + type: + - 'null' + - array + items: + type: + - 'null' + - string + denied_list: + type: + - 'null' + - array + items: + type: + - 'null' + - string + enable: + type: + - 'null' + - boolean + method: + type: + - 'null' + - string + audio: + type: + - 'null' + - string + audio_conference_info: + type: + - 'null' + - string + authentication_domains: + type: + - 'null' + - string + authentication_exception: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + authentication_name: + type: + - 'null' + - string + authentication_option: + type: + - 'null' + - string + auto_recording: + type: + - 'null' + - string + breakout_room: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + rooms: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + participants: + type: + - 'null' + - array + items: + type: + - 'null' + - string + calendar_type: + type: + - 'null' + - number + close_registration: + type: + - 'null' + - boolean + cn_meeting: + type: + - 'null' + - boolean + contact_email: + type: + - 'null' + - string + contact_name: + type: + - 'null' + - string + custom_keys: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + key: + type: + - 'null' + - string + value: + type: + - 'null' + - string + email_notification: + type: + - 'null' + - boolean + device_testing: + type: + - 'null' + - boolean + email_in_attendee_report: + type: + - 'null' + - boolean + enable_dedicated_group_chat: + type: + - 'null' + - boolean + encryption_type: + type: + - 'null' + - string + enforce_login: + type: + - 'null' + - boolean + enforce_login_domains: + type: + - 'null' + - string + focus_mode: + type: + - 'null' + - boolean + global_dial_in_countries: + type: + - 'null' + - array + items: + type: + - 'null' + - string + global_dial_in_numbers: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + city: + type: + - 'null' + - string + country: + type: + - 'null' + - string + country_name: + type: + - 'null' + - string + number: + type: + - 'null' + - string + type: + type: + - 'null' + - string + host_video: + type: + - 'null' + - boolean + in_meeting: + type: + - 'null' + - boolean + jbh_time: + type: + - 'null' + - number + join_before_host: + type: + - 'null' + - boolean + language_interpretation: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + interpreters: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + email: + type: + - 'null' + - string + languages: + type: + - 'null' + - string + meeting_authentication: + type: + - 'null' + - boolean + mute_upon_entry: + type: + - 'null' + - boolean + participant_video: + type: + - 'null' + - boolean + private_meeting: + type: + - 'null' + - boolean + resources: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + resource_type: + type: + - 'null' + - string + resource_id: + type: + - 'null' + - string + permission_level: + type: + - 'null' + - string + registrants_confirmation_email: + type: + - 'null' + - boolean + registrants_email_notification: + type: + - 'null' + - boolean + registration_type: + type: + - 'null' + - number + request_permission_to_unmute_participants: + type: + - 'null' + - boolean + show_join_info: + type: + - 'null' + - boolean + show_share_button: + type: + - 'null' + - boolean + sign_language_interpretation: + type: + - 'null' + - object + additionalProperties: true + properties: + enable: + type: + - 'null' + - boolean + use_pmi: + type: + - 'null' + - boolean + waiting_room: + type: + - 'null' + - boolean + waiting_room_options: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + admit_type: + type: + - 'null' + - number + auto_admit: + type: + - 'null' + - number + internal_user_auto_admit: + type: + - 'null' + - number + watermark: + type: + - 'null' + - boolean + host_save_video_order: + type: + - 'null' + - boolean + internal_meeting: + type: + - 'null' + - boolean + continuous_meeting_chat: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + auto_add_invited_external_users: + type: + - 'null' + - boolean + channel_id: + type: + - 'null' + - string + participant_focused_meeting: + type: + - 'null' + - boolean + push_change_to_calendar: + type: + - 'null' + - boolean + registration_url: + type: + - 'null' + - string + resources: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + resource_type: + type: + - 'null' + - string + resource_id: + type: + - 'null' + - string + permission_level: + type: + - 'null' + - string + start_time: + type: + - 'null' + - string + start_url: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + topic: + type: + - 'null' + - string + tracking_fields: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field: + type: + - 'null' + - string + value: + type: + - 'null' + - string + visible: + type: + - 'null' + - boolean + type: + type: + - 'null' + - number + meeting_registrants_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/meetings/{{ stream_partition.parent_id }}/registrants" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - predicate: "{{ response.code == 300 }}" + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "registrants" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/meetings" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_id: + type: + - 'null' + - number + id: + type: + - 'null' + - string + address: + type: + - 'null' + - string + city: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + country: + type: + - 'null' + - string + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + title: + type: + - 'null' + - string + value: + type: + - 'null' + - string + email: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + industry: + type: + - 'null' + - string + job_title: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + no_of_employees: + type: + - 'null' + - string + org: + type: + - 'null' + - string + phone: + type: + - 'null' + - string + purchasing_time_frame: + type: + - 'null' + - string + role_in_purchase_process: + type: + - 'null' + - string + state: + type: + - 'null' + - string + status: + type: + - 'null' + - string + zip: + type: + - 'null' + - string + create_time: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + meeting_polls_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/meetings/{{ stream_partition.parent_id }}/polls" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "polls" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/meetings" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + meeting_id: + type: + - 'null' + - number + status: + type: + - 'null' + - string + anonymous: + type: + - 'null' + - boolean + poll_type: + type: + - 'null' + - number + questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer_max_character: + type: + - 'null' + - number + answer_min_character: + type: + - 'null' + - number + answer_required: + type: + - 'null' + - boolean + answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + case_sensitive: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + prompts: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + prompt_question: + type: + - 'null' + - string + prompt_right_answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + rating_max_label: + type: + - 'null' + - string + rating_max_value: + type: + - 'null' + - number + rating_min_label: + type: + - 'null' + - string + rating_min_value: + type: + - 'null' + - number + right_answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + show_as_dropdown: + type: + - 'null' + - boolean + type: + type: + - 'null' + - string + title: + type: + - 'null' + - string + meeting_poll_results_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/past_meetings/{{ stream_partition.parent_id }}/polls" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "questions" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/meetings" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_uuid: + type: + - 'null' + - string + meeting_id: + type: + - 'null' + - integer + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + question_details: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer: + type: + - 'null' + - string + date_time: + type: + - 'null' + - string + polling_id: + type: + - 'null' + - string + question: + type: + - 'null' + - string + meeting_registration_questions_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/meetings/{{ stream_partition.parent_id }}/registrants/questions" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/meetings" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_id: + type: + - 'null' + - integer + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + required: + type: + - 'null' + - boolean + title: + type: + - 'null' + - string + type: + type: + - 'null' + - string + questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field_name: + type: + - 'null' + - string + required: + type: + - 'null' + - boolean + webinars_list_tmp_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + webinars_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/webinars/{{ stream_partition.parent_id }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + host_email: + type: + - 'null' + - string + host_id: + type: + - 'null' + - string + id: + type: + - 'null' + - number + uuid: + type: + - 'null' + - string + agenda: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + join_url: + type: + - 'null' + - string + occurrences: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + duration: + type: + - 'null' + - number + occurrence_id: + type: + - 'null' + - string + start_time: + type: + - 'null' + - string + status: + type: + - 'null' + - string + password: + type: + - 'null' + - string + recurrence: + type: + - 'null' + - object + properties: + end_date_time: + type: + - 'null' + - string + end_times: + type: + - 'null' + - number + monthly_day: + type: + - 'null' + - number + monthly_week: + type: + - 'null' + - number + monthly_week_day: + type: + - 'null' + - number + repeat_interval: + type: + - 'null' + - number + type: + type: + - 'null' + - number + weekly_days: + type: + - 'null' + - string + settings: + type: + - 'null' + - object + properties: + allow_multiple_devices: + type: + - 'null' + - boolean + alternative_hosts: + type: + - 'null' + - string + alternative_host_update_polls: + type: + - 'null' + - boolean + approval_type: + type: + - 'null' + - number + attendees_and_panelists_reminder_email_notification: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + type: + type: + - 'null' + - number + audio: + type: + - 'null' + - string + authentication_domains: + type: + - 'null' + - string + authentication_name: + type: + - 'null' + - string + authentication_option: + type: + - 'null' + - string + auto_recording: + type: + - 'null' + - string + close_registration: + type: + - 'null' + - boolean + contact_email: + type: + - 'null' + - string + contact_name: + type: + - 'null' + - string + email_language: + type: + - 'null' + - string + follow_up_absentees_email_notification: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + type: + type: + - 'null' + - number + follow_up_attendees_email_notification: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + type: + type: + - 'null' + - number + global_dial_in_countries: + type: + - 'null' + - array + items: + type: + - 'null' + - string + hd_video: + type: + - 'null' + - boolean + hd_video_for_attendees: + type: + - 'null' + - boolean + host_video: + type: + - 'null' + - boolean + language_interpretation: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + interpreters: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + email: + type: + - 'null' + - string + languages: + type: + - 'null' + - string + panelist_authentication: + type: + - 'null' + - boolean + meeting_authentication: + type: + - 'null' + - boolean + add_watermark: + type: + - 'null' + - boolean + add_audio_watermark: + type: + - 'null' + - boolean + notify_registrants: + type: + - 'null' + - boolean + on_demand: + type: + - 'null' + - boolean + panelists_invitation_email_notification: + type: + - 'null' + - boolean + panelists_video: + type: + - 'null' + - boolean + post_webinar_survey: + type: + - 'null' + - boolean + practice_session: + type: + - 'null' + - boolean + question_and_answer: + type: + - 'null' + - object + properties: + allow_anonymous_questions: + type: + - 'null' + - boolean + answer_questions: + type: + - 'null' + - string + attendees_can_comment: + type: + - 'null' + - boolean + attendees_can_upvote: + type: + - 'null' + - boolean + allow_auto_reply: + type: + - 'null' + - boolean + auto_reply_text: + type: + - 'null' + - string + enable: + type: + - 'null' + - boolean + registrants_confirmation_email: + type: + - 'null' + - boolean + registrants_email_notification: + type: + - 'null' + - boolean + registrants_restrict_number: + type: + - 'null' + - number + registration_type: + type: + - 'null' + - number + send_1080p_video_to_attendees: + type: + - 'null' + - boolean + show_share_button: + type: + - 'null' + - boolean + survey_url: + type: + - 'null' + - string + enable_session_branding: + type: + - 'null' + - boolean + start_time: + type: + - 'null' + - string + start_url: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + topic: + type: + - 'null' + - string + tracking_fields: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field: + type: + - 'null' + - string + value: + type: + - 'null' + - string + type: + type: + - 'null' + - number + is_simulive: + type: + - 'null' + - boolean + record_file_id: + type: + - 'null' + - string + webinar_panelists_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/webinars/{{ stream_partition.parent_id }}/panelists" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "panelists" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - number + id: + type: + - 'null' + - string + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + virtual_background_id: + type: + - 'null' + - string + name_tag_id: + type: + - 'null' + - string + name_tag_name: + type: + - 'null' + - string + name_tag_pronouns: + type: + - 'null' + - string + name_tag_description: + type: + - 'null' + - string + webinar_registrants_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/webinars/{{ stream_partition.parent_id }}/registrants" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "registrants" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - string + id: + type: + - 'null' + - string + address: + type: + - 'null' + - string + city: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + country: + type: + - 'null' + - string + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + title: + type: + - 'null' + - string + value: + type: + - 'null' + - string + email: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + industry: + type: + - 'null' + - string + job_title: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + no_of_employees: + type: + - 'null' + - string + org: + type: + - 'null' + - string + phone: + type: + - 'null' + - string + purchasing_time_frame: + type: + - 'null' + - string + role_in_purchase_process: + type: + - 'null' + - string + state: + type: + - 'null' + - string + status: + type: + - 'null' + - string + zip: + type: + - 'null' + - string + create_time: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + webinar_absentees_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/past_webinars/{{ stream_partition.parent_uuid }}/absentees" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "registrants" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "uuid" + partition_field: "parent_uuid" + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_uuid }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + id: + type: + - 'null' + - string + address: + type: + - 'null' + - string + city: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + country: + type: + - 'null' + - string + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + title: + type: + - 'null' + - string + value: + type: + - 'null' + - string + email: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + industry: + type: + - 'null' + - string + job_title: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + no_of_employees: + type: + - 'null' + - string + org: + type: + - 'null' + - string + phone: + type: + - 'null' + - string + purchasing_time_frame: + type: + - 'null' + - string + role_in_purchase_process: + type: + - 'null' + - string + state: + type: + - 'null' + - string + status: + type: + - 'null' + - string + zip: + type: + - 'null' + - string + create_time: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + webinar_polls_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/webinars/{{ stream_partition.parent_id }}/polls" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "polls" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - string + id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + anonymous: + type: + - 'null' + - boolean + poll_type: + type: + - 'null' + - number + questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer_max_character: + type: + - 'null' + - number + answer_min_character: + type: + - 'null' + - number + answer_required: + type: + - 'null' + - boolean + answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + case_sensitive: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + prompts: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + prompt_question: + type: + - 'null' + - string + prompt_right_answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + rating_max_label: + type: + - 'null' + - string + rating_max_value: + type: + - 'null' + - number + rating_min_label: + type: + - 'null' + - string + rating_min_value: + type: + - 'null' + - number + right_answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + show_as_dropdown: + type: + - 'null' + - boolean + type: + type: + - 'null' + - string + title: + type: + - 'null' + - string + webinar_poll_results_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/past_webinars/{{ stream_partition.parent_id }}/polls" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "questions" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "uuid" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + question_details: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer: + type: + - 'null' + - string + date_time: + type: + - 'null' + - string + polling_id: + type: + - 'null' + - string + question: + type: + - 'null' + - string + webinar_registration_questions_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/webinars/{{ stream_partition.parent_id }}/registrants/questions" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - string + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + required: + type: + - 'null' + - boolean + title: + type: + - 'null' + - string + type: + type: + - 'null' + - string + questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field_name: + type: + - 'null' + - string + required: + type: + - 'null' + - boolean + webinar_tracking_sources_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/webinars/{{ stream_partition.parent_id }}/tracking_sources" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "tracking_sources" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - string + id: + type: + - 'null' + - string + registration_count: + type: + - 'null' + - number + source_name: + type: + - 'null' + - string + tracking_url: + type: + - 'null' + - string + visitor_count: + type: + - 'null' + - number + webinar_qna_results_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/past_webinars/{{ stream_partition.parent_id }}/qa" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "questions" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "uuid" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + question_details: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer: + type: + - 'null' + - string + question: + type: + - 'null' + - string + report_meetings_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/report/meetings/{{ stream_partition.parent_id }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/meetings" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_uuid: + type: + - 'null' + - string + custom_keys: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + key: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + end_time: + type: + - 'null' + - string + host_id: + type: + - 'null' + - string + id: + type: + - 'null' + - number + participants_count: + type: + - 'null' + - number + start_time: + type: + - 'null' + - string + topic: + type: + - 'null' + - string + total_minutes: + type: + - 'null' + - number + tracking_fields: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field: + type: + - 'null' + - string + value: + type: + - 'null' + - string + type: + type: + - 'null' + - number + user_email: + type: + - 'null' + - string + user_name: + type: + - 'null' + - string + uuid: + type: + - 'null' + - string + report_meeting_participants_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/report/meetings/{{ stream_partition.parent_id }}/participants" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "participants" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/meetings" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "id" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_uuid: + type: + - 'null' + - string + meeting_id: + type: + - 'null' + - integer + customer_key: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + failover: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + join_time: + type: + - 'null' + - string + leave_time: + type: + - 'null' + - string + name: + type: + - 'null' + - string + registrant_id: + type: + - 'null' + - string + user_email: + type: + - 'null' + - string + user_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + bo_mtg_id: + type: + - 'null' + - string + participant_user_id: + type: + - 'null' + - string + attentiveness_score: + type: + - 'null' + - string + report_webinars_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/report/webinars/{{ stream_partition.parent_id }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "uuid" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + custom_keys: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + key: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + end_time: + type: + - 'null' + - string + id: + type: + - 'null' + - number + participants_count: + type: + - 'null' + - number + start_time: + type: + - 'null' + - string + topic: + type: + - 'null' + - string + total_minutes: + type: + - 'null' + - number + tracking_fields: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field: + type: + - 'null' + - string + value: + type: + - 'null' + - string + type: + type: + - 'null' + - number + user_email: + type: + - 'null' + - string + user_name: + type: + - 'null' + - string + uuid: + type: + - 'null' + - string + report_webinar_participants_stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/report/webinars/{{ stream_partition.parent_id }}/participants" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "participants" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + - type: DefaultErrorHandler + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + parent_key: "id" + partition_field: "parent_id" + parent_key: "uuid" + partition_field: "parent_id" + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + customer_key: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + failover: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + join_time: + type: + - 'null' + - string + leave_time: + type: + - 'null' + - string + name: + type: + - 'null' + - string + registrant_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + user_email: + type: + - 'null' + - string + user_id: + type: + - 'null' + - string +streams: +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/meetings/{{ stream_partition.parent_id }}" + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/meetings" + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "meetings_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + assistant_id: + type: + - 'null' + - string + host_email: + type: + - 'null' + - string + host_id: + type: + - 'null' + - string + id: + type: + - 'null' + - number + uuid: + type: + - 'null' + - string + agenda: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + encrypted_password: + type: + - 'null' + - string + h323_password: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + chat_join_url: + type: + - 'null' + - string + occurrences: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + duration: + type: + - 'null' + - number + occurrence_id: + type: + - 'null' + - string + start_time: + type: + - 'null' + - string + status: + type: + - 'null' + - string + password: + type: + - 'null' + - string + pmi: + type: + - 'null' + - string + pre_schedule: + type: + - 'null' + - boolean + pstn_password: + type: + - 'null' + - string + recurrence: + type: + - 'null' + - object + properties: + end_date_time: + type: + - 'null' + - string + end_times: + type: + - 'null' + - number + monthly_day: + type: + - 'null' + - number + monthly_week: + type: + - 'null' + - number + monthly_week_day: + type: + - 'null' + - number + repeat_interval: + type: + - 'null' + - number + type: + type: + - 'null' + - number + weekly_days: + type: + - 'null' + - string + settings: + type: + - 'null' + - object + properties: + allow_multiple_devices: + type: + - 'null' + - boolean + alternative_hosts: + type: + - 'null' + - string + alternative_hosts_email_notification: + type: + - 'null' + - boolean + alternative_host_update_polls: + type: + - 'null' + - boolean + approval_type: + type: + - 'null' + - number + approved_or_denied_countries_or_regions: + type: + - 'null' + - object + properties: + approved_list: + type: + - 'null' + - array + items: + type: + - 'null' + - string + denied_list: + type: + - 'null' + - array + items: + type: + - 'null' + - string + enable: + type: + - 'null' + - boolean + method: + type: + - 'null' + - string + audio: + type: + - 'null' + - string + audio_conference_info: + type: + - 'null' + - string + authentication_domains: + type: + - 'null' + - string + authentication_exception: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + authentication_name: + type: + - 'null' + - string + authentication_option: + type: + - 'null' + - string + auto_recording: + type: + - 'null' + - string + breakout_room: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + rooms: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + name: + type: + - 'null' + - string + participants: + type: + - 'null' + - array + items: + type: + - 'null' + - string + calendar_type: + type: + - 'null' + - number + close_registration: + type: + - 'null' + - boolean + cn_meeting: + type: + - 'null' + - boolean + contact_email: + type: + - 'null' + - string + contact_name: + type: + - 'null' + - string + custom_keys: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + key: + type: + - 'null' + - string + value: + type: + - 'null' + - string + email_notification: + type: + - 'null' + - boolean + device_testing: + type: + - 'null' + - boolean + email_in_attendee_report: + type: + - 'null' + - boolean + enable_dedicated_group_chat: + type: + - 'null' + - boolean + encryption_type: + type: + - 'null' + - string + enforce_login: + type: + - 'null' + - boolean + enforce_login_domains: + type: + - 'null' + - string + focus_mode: + type: + - 'null' + - boolean + global_dial_in_countries: + type: + - 'null' + - array + items: + type: + - 'null' + - string + global_dial_in_numbers: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + city: + type: + - 'null' + - string + country: + type: + - 'null' + - string + country_name: + type: + - 'null' + - string + number: + type: + - 'null' + - string + type: + type: + - 'null' + - string + host_video: + type: + - 'null' + - boolean + in_meeting: + type: + - 'null' + - boolean + jbh_time: + type: + - 'null' + - number + join_before_host: + type: + - 'null' + - boolean + language_interpretation: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + interpreters: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + email: + type: + - 'null' + - string + languages: + type: + - 'null' + - string + meeting_authentication: + type: + - 'null' + - boolean + mute_upon_entry: + type: + - 'null' + - boolean + participant_video: + type: + - 'null' + - boolean + private_meeting: + type: + - 'null' + - boolean + resources: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + resource_type: + type: + - 'null' + - string + resource_id: + type: + - 'null' + - string + permission_level: + type: + - 'null' + - string + registrants_confirmation_email: + type: + - 'null' + - boolean + registrants_email_notification: + type: + - 'null' + - boolean + registration_type: + type: + - 'null' + - number + request_permission_to_unmute_participants: + type: + - 'null' + - boolean + show_join_info: + type: + - 'null' + - boolean + show_share_button: + type: + - 'null' + - boolean + sign_language_interpretation: + type: + - 'null' + - object + additionalProperties: true + properties: + enable: + type: + - 'null' + - boolean + use_pmi: + type: + - 'null' + - boolean + waiting_room: + type: + - 'null' + - boolean + waiting_room_options: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + admit_type: + type: + - 'null' + - number + auto_admit: + type: + - 'null' + - number + internal_user_auto_admit: + type: + - 'null' + - number + watermark: + type: + - 'null' + - boolean + host_save_video_order: + type: + - 'null' + - boolean + internal_meeting: + type: + - 'null' + - boolean + continuous_meeting_chat: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + auto_add_invited_external_users: + type: + - 'null' + - boolean + channel_id: + type: + - 'null' + - string + participant_focused_meeting: + type: + - 'null' + - boolean + push_change_to_calendar: + type: + - 'null' + - boolean + registration_url: + type: + - 'null' + - string + resources: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + resource_type: + type: + - 'null' + - string + resource_id: + type: + - 'null' + - string + permission_level: + type: + - 'null' + - string + start_time: + type: + - 'null' + - string + start_url: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + topic: + type: + - 'null' + - string + tracking_fields: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field: + type: + - 'null' + - string + value: + type: + - 'null' + - string + visible: + type: + - 'null' + - boolean + type: + type: + - 'null' + - number + type: DeclarativeStream + name: "meetings" + primary_key: "id" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/meetings/{{ stream_partition.parent_id }}/registrants" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - predicate: "{{ response.code == 300 }}" + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "registrants" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/meetings" + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "meetings_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_id: + type: + - 'null' + - number + id: + type: + - 'null' + - string + address: + type: + - 'null' + - string + city: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + country: + type: + - 'null' + - string + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + title: + type: + - 'null' + - string + value: + type: + - 'null' + - string + email: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + industry: + type: + - 'null' + - string + job_title: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + no_of_employees: + type: + - 'null' + - string + org: + type: + - 'null' + - string + phone: + type: + - 'null' + - string + purchasing_time_frame: + type: + - 'null' + - string + role_in_purchase_process: + type: + - 'null' + - string + state: + type: + - 'null' + - string + status: + type: + - 'null' + - string + zip: + type: + - 'null' + - string + create_time: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + type: DeclarativeStream + name: "meeting_registrants" + primary_key: "id" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/meetings/{{ stream_partition.parent_id }}/polls" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "polls" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/meetings" + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "meetings_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + id: + type: + - 'null' + - string + meeting_id: + type: + - 'null' + - number + status: + type: + - 'null' + - string + anonymous: + type: + - 'null' + - boolean + poll_type: + type: + - 'null' + - number + questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer_max_character: + type: + - 'null' + - number + answer_min_character: + type: + - 'null' + - number + answer_required: + type: + - 'null' + - boolean + answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + case_sensitive: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + prompts: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + prompt_question: + type: + - 'null' + - string + prompt_right_answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + rating_max_label: + type: + - 'null' + - string + rating_max_value: + type: + - 'null' + - number + rating_min_label: + type: + - 'null' + - string + rating_min_value: + type: + - 'null' + - number + right_answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + show_as_dropdown: + type: + - 'null' + - boolean + type: + type: + - 'null' + - string + title: + type: + - 'null' + - string + type: DeclarativeStream + name: "meeting_polls" + primary_key: "id" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/past_meetings/{{ stream_partition.parent_id }}/polls" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "questions" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/meetings" + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "meetings_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_uuid: + type: + - 'null' + - string + meeting_id: + type: + - 'null' + - integer + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + question_details: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer: + type: + - 'null' + - string + date_time: + type: + - 'null' + - string + polling_id: + type: + - 'null' + - string + question: + type: + - 'null' + - string + type: DeclarativeStream + name: "meeting_poll_results" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/meetings/{{ stream_partition.parent_id }}/registrants/questions" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/meetings" + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "meetings_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_id: + type: + - 'null' + - integer + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + required: + type: + - 'null' + - boolean + title: + type: + - 'null' + - string + type: + type: + - 'null' + - string + questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field_name: + type: + - 'null' + - string + required: + type: + - 'null' + - boolean + type: DeclarativeStream + name: "meeting_registration_questions" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/webinars/{{ stream_partition.parent_id }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + host_email: + type: + - 'null' + - string + host_id: + type: + - 'null' + - string + id: + type: + - 'null' + - number + uuid: + type: + - 'null' + - string + agenda: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + join_url: + type: + - 'null' + - string + occurrences: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + duration: + type: + - 'null' + - number + occurrence_id: + type: + - 'null' + - string + start_time: + type: + - 'null' + - string + status: + type: + - 'null' + - string + password: + type: + - 'null' + - string + recurrence: + type: + - 'null' + - object + properties: + end_date_time: + type: + - 'null' + - string + end_times: + type: + - 'null' + - number + monthly_day: + type: + - 'null' + - number + monthly_week: + type: + - 'null' + - number + monthly_week_day: + type: + - 'null' + - number + repeat_interval: + type: + - 'null' + - number + type: + type: + - 'null' + - number + weekly_days: + type: + - 'null' + - string + settings: + type: + - 'null' + - object + properties: + allow_multiple_devices: + type: + - 'null' + - boolean + alternative_hosts: + type: + - 'null' + - string + alternative_host_update_polls: + type: + - 'null' + - boolean + approval_type: + type: + - 'null' + - number + attendees_and_panelists_reminder_email_notification: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + type: + type: + - 'null' + - number + audio: + type: + - 'null' + - string + authentication_domains: + type: + - 'null' + - string + authentication_name: + type: + - 'null' + - string + authentication_option: + type: + - 'null' + - string + auto_recording: + type: + - 'null' + - string + close_registration: + type: + - 'null' + - boolean + contact_email: + type: + - 'null' + - string + contact_name: + type: + - 'null' + - string + email_language: + type: + - 'null' + - string + follow_up_absentees_email_notification: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + type: + type: + - 'null' + - number + follow_up_attendees_email_notification: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + type: + type: + - 'null' + - number + global_dial_in_countries: + type: + - 'null' + - array + items: + type: + - 'null' + - string + hd_video: + type: + - 'null' + - boolean + hd_video_for_attendees: + type: + - 'null' + - boolean + host_video: + type: + - 'null' + - boolean + language_interpretation: + type: + - 'null' + - object + properties: + enable: + type: + - 'null' + - boolean + interpreters: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + email: + type: + - 'null' + - string + languages: + type: + - 'null' + - string + panelist_authentication: + type: + - 'null' + - boolean + meeting_authentication: + type: + - 'null' + - boolean + add_watermark: + type: + - 'null' + - boolean + add_audio_watermark: + type: + - 'null' + - boolean + notify_registrants: + type: + - 'null' + - boolean + on_demand: + type: + - 'null' + - boolean + panelists_invitation_email_notification: + type: + - 'null' + - boolean + panelists_video: + type: + - 'null' + - boolean + post_webinar_survey: + type: + - 'null' + - boolean + practice_session: + type: + - 'null' + - boolean + question_and_answer: + type: + - 'null' + - object + properties: + allow_anonymous_questions: + type: + - 'null' + - boolean + answer_questions: + type: + - 'null' + - string + attendees_can_comment: + type: + - 'null' + - boolean + attendees_can_upvote: + type: + - 'null' + - boolean + allow_auto_reply: + type: + - 'null' + - boolean + auto_reply_text: + type: + - 'null' + - string + enable: + type: + - 'null' + - boolean + registrants_confirmation_email: + type: + - 'null' + - boolean + registrants_email_notification: + type: + - 'null' + - boolean + registrants_restrict_number: + type: + - 'null' + - number + registration_type: + type: + - 'null' + - number + send_1080p_video_to_attendees: + type: + - 'null' + - boolean + show_share_button: + type: + - 'null' + - boolean + survey_url: + type: + - 'null' + - string + enable_session_branding: + type: + - 'null' + - boolean + start_time: + type: + - 'null' + - string + start_url: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + topic: + type: + - 'null' + - string + tracking_fields: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field: + type: + - 'null' + - string + value: + type: + - 'null' + - string + type: + type: + - 'null' + - number + is_simulive: + type: + - 'null' + - boolean + record_file_id: + type: + - 'null' + - string + type: DeclarativeStream + name: "webinars" + primary_key: "id" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/webinars/{{ stream_partition.parent_id }}/panelists" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "panelists" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - number + id: + type: + - 'null' + - string + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + virtual_background_id: + type: + - 'null' + - string + name_tag_id: + type: + - 'null' + - string + name_tag_name: + type: + - 'null' + - string + name_tag_pronouns: + type: + - 'null' + - string + name_tag_description: + type: + - 'null' + - string + type: DeclarativeStream + name: "webinar_panelists" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/webinars/{{ stream_partition.parent_id }}/registrants" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "registrants" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - string + id: + type: + - 'null' + - string + address: + type: + - 'null' + - string + city: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + country: + type: + - 'null' + - string + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + title: + type: + - 'null' + - string + value: + type: + - 'null' + - string + email: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + industry: + type: + - 'null' + - string + job_title: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + no_of_employees: + type: + - 'null' + - string + org: + type: + - 'null' + - string + phone: + type: + - 'null' + - string + purchasing_time_frame: + type: + - 'null' + - string + role_in_purchase_process: + type: + - 'null' + - string + state: + type: + - 'null' + - string + status: + type: + - 'null' + - string + zip: + type: + - 'null' + - string + create_time: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + type: DeclarativeStream + name: "webinar_registrants" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/past_webinars/{{ stream_partition.parent_uuid }}/absentees" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "registrants" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "uuid" + partition_field: "parent_uuid" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_uuid }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + id: + type: + - 'null' + - string + address: + type: + - 'null' + - string + city: + type: + - 'null' + - string + comments: + type: + - 'null' + - string + country: + type: + - 'null' + - string + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + title: + type: + - 'null' + - string + value: + type: + - 'null' + - string + email: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + industry: + type: + - 'null' + - string + job_title: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + no_of_employees: + type: + - 'null' + - string + org: + type: + - 'null' + - string + phone: + type: + - 'null' + - string + purchasing_time_frame: + type: + - 'null' + - string + role_in_purchase_process: + type: + - 'null' + - string + state: + type: + - 'null' + - string + status: + type: + - 'null' + - string + zip: + type: + - 'null' + - string + create_time: + type: + - 'null' + - string + join_url: + type: + - 'null' + - string + type: DeclarativeStream + name: "webinar_absentees" + primary_key: "id" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/webinars/{{ stream_partition.parent_id }}/polls" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "polls" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - string + id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + anonymous: + type: + - 'null' + - boolean + poll_type: + type: + - 'null' + - number + questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer_max_character: + type: + - 'null' + - number + answer_min_character: + type: + - 'null' + - number + answer_required: + type: + - 'null' + - boolean + answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + case_sensitive: + type: + - 'null' + - boolean + name: + type: + - 'null' + - string + prompts: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + prompt_question: + type: + - 'null' + - string + prompt_right_answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + rating_max_label: + type: + - 'null' + - string + rating_max_value: + type: + - 'null' + - number + rating_min_label: + type: + - 'null' + - string + rating_min_value: + type: + - 'null' + - number + right_answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + show_as_dropdown: + type: + - 'null' + - boolean + type: + type: + - 'null' + - string + title: + type: + - 'null' + - string + type: DeclarativeStream + name: "webinar_polls" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/past_webinars/{{ stream_partition.parent_id }}/polls" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "questions" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "uuid" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + question_details: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer: + type: + - 'null' + - string + date_time: + type: + - 'null' + - string + polling_id: + type: + - 'null' + - string + question: + type: + - 'null' + - string + type: DeclarativeStream + name: "webinar_poll_results" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/webinars/{{ stream_partition.parent_id }}/registrants/questions" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - string + custom_questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answers: + type: + - 'null' + - array + items: + type: + - 'null' + - string + required: + type: + - 'null' + - boolean + title: + type: + - 'null' + - string + type: + type: + - 'null' + - string + questions: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field_name: + type: + - 'null' + - string + required: + type: + - 'null' + - boolean + type: DeclarativeStream + name: "webinar_registration_questions" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/webinars/{{ stream_partition.parent_id }}/tracking_sources" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "tracking_sources" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_id: + type: + - 'null' + - string + id: + type: + - 'null' + - string + registration_count: + type: + - 'null' + - number + source_name: + type: + - 'null' + - string + tracking_url: + type: + - 'null' + - string + visitor_count: + type: + - 'null' + - number + type: DeclarativeStream + name: "webinar_tracking_sources" + primary_key: "id" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/past_webinars/{{ stream_partition.parent_id }}/qa" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: + - "questions" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "uuid" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + email: + type: + - 'null' + - string + name: + type: + - 'null' + - string + question_details: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + answer: + type: + - 'null' + - string + question: + type: + - 'null' + - string + type: DeclarativeStream + name: "webinar_qna_results" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/report/meetings/{{ stream_partition.parent_id }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/meetings" + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "meetings_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_uuid: + type: + - 'null' + - string + custom_keys: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + key: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + end_time: + type: + - 'null' + - string + host_id: + type: + - 'null' + - string + id: + type: + - 'null' + - number + participants_count: + type: + - 'null' + - number + start_time: + type: + - 'null' + - string + topic: + type: + - 'null' + - string + total_minutes: + type: + - 'null' + - number + tracking_fields: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field: + type: + - 'null' + - string + value: + type: + - 'null' + - string + type: + type: + - 'null' + - number + user_email: + type: + - 'null' + - string + user_name: + type: + - 'null' + - string + uuid: + type: + - 'null' + - string + type: DeclarativeStream + name: "report_meetings" + primary_key: "id" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/report/meetings/{{ stream_partition.parent_id }}/participants" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + - 404 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "participants" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/meetings" + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "meetings" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "meetings_list_tmp" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "meeting_id" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + meeting_uuid: + type: + - 'null' + - string + meeting_id: + type: + - 'null' + - integer + customer_key: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + failover: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + join_time: + type: + - 'null' + - string + leave_time: + type: + - 'null' + - string + name: + type: + - 'null' + - string + registrant_id: + type: + - 'null' + - string + user_email: + type: + - 'null' + - string + user_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + bo_mtg_id: + type: + - 'null' + - string + participant_user_id: + type: + - 'null' + - string + attentiveness_score: + type: + - 'null' + - string + type: DeclarativeStream + name: "report_meeting_participants" + primary_key: "id" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/report/webinars/{{ stream_partition.parent_id }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: NoPagination + record_selector: + extractor: + type: DpathExtractor + field_path: [] + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "uuid" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + custom_keys: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + key: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + end_time: + type: + - 'null' + - string + id: + type: + - 'null' + - number + participants_count: + type: + - 'null' + - number + start_time: + type: + - 'null' + - string + topic: + type: + - 'null' + - string + total_minutes: + type: + - 'null' + - number + tracking_fields: + type: + - 'null' + - array + items: + type: + - 'null' + - object + properties: + field: + type: + - 'null' + - string + value: + type: + - 'null' + - string + type: + type: + - 'null' + - number + user_email: + type: + - 'null' + - string + user_name: + type: + - 'null' + - string + uuid: + type: + - 'null' + - string + type: DeclarativeStream + name: "report_webinars" +- retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/report/webinars/{{ stream_partition.parent_id }}/participants" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "participants" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] }}" + grant_type: "account_credentials" + type: CustomAuthenticator + path: "/users/{{ stream_partition.parent_id }}/webinars" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - http_codes: + - 400 + action: IGNORE + type: HttpResponseFilter + - type: DefaultErrorHandler + type: HttpRequester + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "webinars" + type: RecordSelector + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - stream: + retriever: + requester: + url_base: "https://api.zoom.us/v2" + http_method: "GET" + authenticator: + class_name: source_declarative_manifest.components.ServerToServerOauthAuthenticator + client_id: "{{ config['client_id'] }}" + account_id: "{{ config['account_id'] }}" + client_secret: "{{ config['client_secret'] }}" + authorization_endpoint: "{{ config['authorization_endpoint'] + }}" + grant_type: "account_credentials" + type: CustomAuthenticator + type: HttpRequester + path: "/users" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.next_page_token }}" + stop_condition: "{{ response.next_page_token == '' }}" + page_size: 30 + page_size_option: + field_name: "page_size" + inject_into: "request_parameter" + type: RequestOption + page_token_option: + type: RequestOption + field_name: "next_page_token" + inject_into: "request_parameter" + record_selector: + extractor: + type: DpathExtractor + field_path: + - "users" + type: RecordSelector + type: SimpleRetriever + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + properties: + user_created_at: + type: + - 'null' + - string + created_at: + type: + - 'null' + - string + custom_attributes: + type: + - 'null' + - array + items: + type: object + properties: + key: + type: + - 'null' + - string + name: + type: + - 'null' + - string + value: + type: + - 'null' + - string + dept: + type: + - 'null' + - string + email: + type: + - 'null' + - string + employee_unique_id: + type: + - 'null' + - string + first_name: + type: + - 'null' + - string + group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + id: + type: + - 'null' + - string + im_group_ids: + type: + - 'null' + - array + items: + type: + - 'null' + - string + language: + type: + - 'null' + - string + last_client_version: + type: + - 'null' + - string + last_login_time: + type: + - 'null' + - string + last_name: + type: + - 'null' + - string + phone_number: + type: + - 'null' + - string + plan_united_type: + type: + - 'null' + - string + pmi: + type: + - 'null' + - number + role_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + timezone: + type: + - 'null' + - string + type: + type: + - 'null' + - number + verified: + type: + - 'null' + - number + display_name: + type: + - 'null' + - string + type: DeclarativeStream + name: "users" + primary_key: "id" + parent_key: "id" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + type: DeclarativeStream + name: "webinars_list_tmp" + primary_key: "id" + parent_key: "uuid" + partition_field: "parent_id" + type: ParentStreamConfig + type: SimpleRetriever + transformations: + - type: AddFields + fields: + - path: + - "webinar_uuid" + value: "{{ stream_partition.parent_id }}" + type: AddedFieldDefinition + schema_loader: + type: InlineSchemaLoader + schema: + $schema: http://json-schema.org/draft-07/schema# + type: object + properties: + webinar_uuid: + type: + - 'null' + - string + customer_key: + type: + - 'null' + - string + duration: + type: + - 'null' + - number + failover: + type: + - 'null' + - boolean + id: + type: + - 'null' + - string + join_time: + type: + - 'null' + - string + leave_time: + type: + - 'null' + - string + name: + type: + - 'null' + - string + registrant_id: + type: + - 'null' + - string + status: + type: + - 'null' + - string + user_email: + type: + - 'null' + - string + user_id: + type: + - 'null' + - string + type: DeclarativeStream + name: "report_webinar_participants" +check: + stream_names: + - "users" + type: CheckStream +type: DeclarativeSource +spec: + type: Spec + documentation_url: https://docs.airbyte.com/integrations/sources/zoom + connection_specification: + $schema: http://json-schema.org/draft-07/schema# + title: Zoom Spec + type: object + required: + - account_id + - client_id + - client_secret + - authorization_endpoint + additionalProperties: true + properties: + account_id: + type: string + order: 0 + description: 'The account ID for your Zoom account. You can find this in the + Zoom Marketplace under the "Manage" tab for your app.' + client_id: + type: string + order: 1 + description: 'The client ID for your Zoom app. You can find this in the Zoom + Marketplace under the "Manage" tab for your app.' + client_secret: + type: string + order: 2 + description: 'The client secret for your Zoom app. You can find this in the + Zoom Marketplace under the "Manage" tab for your app.' + airbyte_secret: true + authorization_endpoint: + type: string + order: 3 + default: "https://zoom.us/oauth/token" diff --git a/airbyte-integrations/connectors/source-zoom/metadata.yaml b/airbyte-integrations/connectors/source-zoom/metadata.yaml index 91392850bfd6..4f4e8d58fc47 100644 --- a/airbyte-integrations/connectors/source-zoom/metadata.yaml +++ b/airbyte-integrations/connectors/source-zoom/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 200 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: cbfd9856-1322-44fb-bcf1-0b39b7a8e92e - dockerImageTag: 1.1.22 + dockerImageTag: 1.2.0 dockerRepository: airbyte/source-zoom documentationUrl: https://docs.airbyte.com/integrations/sources/zoom githubIssueLabel: source-zoom @@ -23,19 +23,22 @@ data: releases: breakingChanges: 1.1.0: - message: Zoom has deprecated JWT authentication in favor of OAuth. To successfully migrate, users will need to create a new server-to-server OAuth app and update their credentials in the Airbyte UI. + message: + Zoom has deprecated JWT authentication in favor of OAuth. To successfully + migrate, users will need to create a new server-to-server OAuth app and + update their credentials in the Airbyte UI. upgradeDeadline: 2023-09-08 scopedImpact: - scopeType: stream impactedScopes: ["meeting_registration_questions"] remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-zoom supportLevel: community tags: - - language:python - cdk:low-code + - language:manifest-only connectorTestSuitesOptions: - suite: liveTests testConnections: diff --git a/airbyte-integrations/connectors/source-zoom/poetry.lock b/airbyte-integrations/connectors/source-zoom/poetry.lock deleted file mode 100644 index cb16738a481e..000000000000 --- a/airbyte-integrations/connectors/source-zoom/poetry.lock +++ /dev/null @@ -1,1066 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "0.67.3" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte-cdk-0.67.3.tar.gz", hash = "sha256:ef242cf2bc461e6790811d0cd64e87aa47559af942cd0cc70b09d4f860831ce1"}, - {file = "airbyte_cdk-0.67.3-py3-none-any.whl", hash = "sha256:de2353430180bdbc852f336745c95506908dda67a2d4949fb538401d3c7fa40a"}, -] - -[package.dependencies] -airbyte-protocol-models = "0.5.1" -backoff = "*" -cachetools = "*" -Deprecated = ">=1.2,<2.0" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<1.0" -jsonschema = ">=3.2.0,<3.3.0" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -PyYAML = ">=6.0.1" -requests = "*" -requests-cache = "*" -wcmatch = "8.4" - -[package.extras] -dev = ["avro (>=1.11.2,<1.12.0)", "cohere (==4.21)", "fastavro (>=1.8.0,<1.9.0)", "freezegun", "langchain (==0.0.271)", "markdown", "mypy", "openai[embeddings] (==0.27.9)", "pandas (==2.0.3)", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "pytest", "pytest-cov", "pytest-httpserver", "pytest-mock", "requests-mock", "tiktoken (==0.4.0)", "unstructured (==0.10.27)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured (==0.10.27)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<5.0)", "sphinx-rtd-theme (>=1.0,<2.0)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.0.271)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.5.1" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.5.1-py3-none-any.whl", hash = "sha256:dfe84e130e51ce2ae81a06d5aa36f6c5ce3152b9e36e6f0195fad6c3dab0927e"}, - {file = "airbyte_protocol_models-0.5.1.tar.gz", hash = "sha256:7c8b16c7c1c7956b1996052e40585a3a93b1e44cb509c4e97c1ee4fe507ea086"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonref" -version = "0.3.0" -description = "jsonref is a library for automatic dereferencing of JSON Reference objects for Python." -optional = false -python-versions = ">=3.3,<4.0" -files = [ - {file = "jsonref-0.3.0-py3-none-any.whl", hash = "sha256:9480ad1b500f7e795daeb0ef29f9c55ae3a9ab38fb8d6659b6f4868acb5a5bc8"}, - {file = "jsonref-0.3.0.tar.gz", hash = "sha256:68b330c6815dc0d490dbb3d65ccda265ddde9f7856fd2f3322f971d456ea7549"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "packaging" -version = "24.1" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "setuptools" -version = "75.3.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, - {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "64656b30b207f0f046c259a3688f501d0e4de944131c28d2ec60e06ff7efd57e" diff --git a/airbyte-integrations/connectors/source-zoom/pyproject.toml b/airbyte-integrations/connectors/source-zoom/pyproject.toml deleted file mode 100644 index 1649620043d0..000000000000 --- a/airbyte-integrations/connectors/source-zoom/pyproject.toml +++ /dev/null @@ -1,28 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "1.1.22" -name = "source-zoom" -description = "Source implementation for Zoom." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/zoom" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_zoom" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "^0.67.1" - -[tool.poetry.scripts] -source-zoom = "source_zoom.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "^1.9.3" -pytest-mock = "^3.6.1" -pytest = "^6.1" diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/__init__.py b/airbyte-integrations/connectors/source-zoom/source_zoom/__init__.py deleted file mode 100644 index 5d5733ca7209..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceZoom - -__all__ = ["SourceZoom"] diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/manifest.yaml b/airbyte-integrations/connectors/source-zoom/source_zoom/manifest.yaml deleted file mode 100644 index 808f4405e78f..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/manifest.yaml +++ /dev/null @@ -1,795 +0,0 @@ -version: 0.67.1 - -definitions: - # Server to Server Oauth Authenticator - requester: - url_base: "https://api.zoom.us/v2" - http_method: "GET" - authenticator: - class_name: source_zoom.components.ServerToServerOauthAuthenticator - client_id: "{{ config['client_id'] }}" - account_id: "{{ config['account_id'] }}" - client_secret: "{{ config['client_secret'] }}" - authorization_endpoint: "{{ config['authorization_endpoint'] }}" - grant_type: "account_credentials" - - zoom_paginator: - type: DefaultPaginator - pagination_strategy: - type: "CursorPagination" - cursor_value: "{{ response.next_page_token }}" - stop_condition: "{{ response.next_page_token == '' }}" - page_size: 30 - page_size_option: - field_name: "page_size" - inject_into: "request_parameter" - page_token_option: - type: RequestOption - field_name: "next_page_token" - inject_into: "request_parameter" - - retriever: - requester: - $ref: "#/definitions/requester" - - schema_loader: - type: JsonFileSchemaLoader - file_path: "./source_zoom/schemas/{{ parameters['name'] }}.json" - - users_stream: - # Endpoint docs: https://developers.zoom.us/docs/api/rest/reference/user/methods/#operation/users - schema_loader: - $ref: "#/definitions/schema_loader" - retriever: - paginator: - $ref: "#/definitions/zoom_paginator" - record_selector: - extractor: - type: DpathExtractor - field_path: ["users"] - $ref: "#/definitions/retriever" - $parameters: - name: "users" - primary_key: "id" - path: "/users" - - meetings_list_tmp_stream: - # This stream is used to fetch parent_ids for the meetings stream and all its substreams. No data is synced from this stream. - # Endpoint docs: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meetings - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "meetings_list_tmp" - primary_key: "id" - retriever: - paginator: - $ref: "#/definitions/zoom_paginator" - record_selector: - extractor: - type: DpathExtractor - field_path: ["meetings"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/users/{{ stream_partition.parent_id }}/meetings" - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/users_stream" - parent_key: "id" - partition_field: "parent_id" - - meetings_stream: - # Endpoint docs: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meeting - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "meetings" - primary_key: "id" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: [] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/meetings/{{ stream_partition.parent_id }}" - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/meetings_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - - meeting_registrants_stream: - # Endpoint docs: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meetingRegistrants - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "meeting_registrants" - primary_key: "id" - retriever: - paginator: - $ref: "#/definitions/zoom_paginator" - record_selector: - extractor: - type: DpathExtractor - field_path: ["registrants"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/meetings/{{ stream_partition.parent_id }}/registrants" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - # Meeting {meetingId} is not found or has expired. This meeting has not set registration as required: {meetingId}. - - predicate: "{{ response.code == 300 }}" - action: IGNORE - - type: DefaultErrorHandler # we're adding this DefaultErrorHandler for 429, 5XX errors etc; - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/meetings_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["meeting_id"] - value: "{{ stream_partition.parent_id }}" - - meeting_polls_stream: - # Endpoint docs: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meetingPolls - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "meeting_polls" - primary_key: "id" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: ["polls"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/meetings/{{ stream_partition.parent_id }}/polls" - error_handler: - type: CompositeErrorHandler - # ignore 400 error; We get this error if Meeting poll is not enabled for the meeting, or scheduling capabilities aren't in the account - error_handlers: - - type: DefaultErrorHandler - response_filters: - - http_codes: [400] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/meetings_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["meeting_id"] - value: "{{ stream_partition.parent_id }}" - - meeting_poll_results_stream: - # Endpoint docs: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/listPastMeetingPolls - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "meeting_poll_results" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: ["questions"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/past_meetings/{{ stream_partition.parent_id }}/polls" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - # 400 error is thrown for meetings created an year ago - # 404 error is thrown if the meeting has not enabled polls (from observation, not written in docs) - - http_codes: [400, 404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/meetings_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["meeting_id"] - value: "{{ stream_partition.parent_id }}" - - meeting_registration_questions_stream: - # Endpoint docs: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meetingRegistrantsQuestionsGet - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "meeting_registration_questions" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: [] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/meetings/{{ stream_partition.parent_id }}/registrants/questions" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - # ignore 400 error; We get this error if Bad Request or Meeting hosting and scheduling capabilities are not allowed for your user account. - - http_codes: [400] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/meetings_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["meeting_id"] - value: "{{ stream_partition.parent_id }}" - - webinars_list_tmp_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinars_list_tmp" - primary_key: "id" - retriever: - paginator: - $ref: "#/definitions/zoom_paginator" - record_selector: - extractor: - type: DpathExtractor - field_path: ["webinars"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/users/{{ stream_partition.parent_id }}/webinars" - error_handler: - type: CompositeErrorHandler - # ignore 400 error; We get this error if Meeting is more than created an year ago - error_handlers: - - type: DefaultErrorHandler - response_filters: - - http_codes: [400] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/users_stream" - parent_key: "id" - partition_field: "parent_id" - - webinars_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinars" - primary_key: "id" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: [] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/webinars/{{ stream_partition.parent_id }}" - error_handler: - type: CompositeErrorHandler - # ignore 400 error - error_handlers: - - type: DefaultErrorHandler - response_filters: - # When parent stream throws error; then ideally we should have an empty array, and no /webinars/{id} should be called. But somehow we're calling it right now with None. :( - # More context: https://github.com/airbytehq/airbyte/issues/18046 - - http_codes: [400, 404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - - webinar_panelists_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinar_panelists" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: ["panelists"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/webinars/{{ stream_partition.parent_id }}/panelists" - error_handler: - type: CompositeErrorHandler - # ignore 400 error - error_handlers: - - type: DefaultErrorHandler - response_filters: - # Same problem as "webinars_stream" for 404! and we get 400 error if the account isn't PRO. - - http_codes: [400, 404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["webinar_id"] - value: "{{ stream_partition.parent_id }}" - - webinar_registrants_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinar_registrants" - retriever: - paginator: - $ref: "#/definitions/zoom_paginator" - record_selector: - extractor: - type: DpathExtractor - field_path: ["registrants"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/webinars/{{ stream_partition.parent_id }}/registrants" - error_handler: - type: CompositeErrorHandler - # ignore 400 error - error_handlers: - - type: DefaultErrorHandler - response_filters: - # Same problem as "webinars_stream" for 404! 400 is for non PRO accounts. - - http_codes: [400, 404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["webinar_id"] - value: "{{ stream_partition.parent_id }}" - - webinar_absentees_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinar_absentees" - primary_key: "id" - retriever: - paginator: - $ref: "#/definitions/zoom_paginator" - record_selector: - extractor: - type: DpathExtractor - field_path: ["registrants"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/past_webinars/{{ stream_partition.parent_uuid }}/absentees" - error_handler: - type: CompositeErrorHandler - # ignore 400 error - error_handlers: - - type: DefaultErrorHandler - response_filters: - # Same problem as "webinars_stream" for 404! 400 is for non PRO accounts. - - http_codes: [400, 404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "uuid" - partition_field: "parent_uuid" - transformations: - - type: AddFields - fields: - - path: ["webinar_uuid"] - value: "{{ stream_partition.parent_uuid }}" - - webinar_polls_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinar_polls" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: ["polls"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/webinars/{{ stream_partition.parent_id }}/polls" - error_handler: - type: CompositeErrorHandler - # ignore 400 error; We get this error if Webinar poll is disabled - error_handlers: - - type: DefaultErrorHandler - response_filters: - # Same problem as "webinars_stream" for 404! 400 is for non PRO accounts. - - http_codes: [400, 404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["webinar_id"] - value: "{{ stream_partition.parent_id }}" - - webinar_poll_results_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinar_poll_results" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: ["questions"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/past_webinars/{{ stream_partition.parent_id }}/polls" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - - http_codes: [404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "uuid" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["webinar_uuid"] - value: "{{ stream_partition.parent_id }}" - - webinar_registration_questions_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinar_registration_questions" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: [] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/webinars/{{ stream_partition.parent_id }}/registrants/questions" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - # the docs says 404 code, but that's incorrect (from observation); - - http_codes: [400] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["webinar_id"] - value: "{{ stream_partition.parent_id }}" - - webinar_tracking_sources_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinar_tracking_sources" - primary_key: "id" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: ["tracking_sources"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/webinars/{{ stream_partition.parent_id }}/tracking_sources" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - - http_codes: [400] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["webinar_id"] - value: "{{ stream_partition.parent_id }}" - - webinar_qna_results_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "webinar_qna_results" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: ["questions"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/past_webinars/{{ stream_partition.parent_id }}/qa" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - - http_codes: [400, 404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "uuid" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["webinar_uuid"] - value: "{{ stream_partition.parent_id }}" - - report_meetings_stream: - # Endpoint docs: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/reportMeetingDetails - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "report_meetings" - primary_key: "id" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: [] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/report/meetings/{{ stream_partition.parent_id }}" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - - http_codes: [400, 404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/meetings_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - - report_meeting_participants_stream: - # Endpoint docs: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/reportMeetingParticipants - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "report_meeting_participants" - primary_key: "id" - retriever: - paginator: - $ref: "#/definitions/zoom_paginator" - record_selector: - extractor: - type: DpathExtractor - field_path: ["participants"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/report/meetings/{{ stream_partition.parent_id }}/participants" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - - http_codes: [400, 404] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/meetings_list_tmp_stream" - parent_key: "id" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["meeting_id"] - value: "{{ stream_partition.parent_id }}" - - report_webinars_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "report_webinars" - retriever: - paginator: - type: NoPagination - record_selector: - extractor: - type: DpathExtractor - field_path: [] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/report/webinars/{{ stream_partition.parent_id }}" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - - http_codes: [400] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "uuid" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["webinar_uuid"] - value: "{{ stream_partition.parent_id }}" - - report_webinar_participants_stream: - schema_loader: - $ref: "#/definitions/schema_loader" - $parameters: - name: "report_webinar_participants" - retriever: - paginator: - $ref: "#/definitions/zoom_paginator" - record_selector: - extractor: - type: DpathExtractor - field_path: ["participants"] - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "/report/webinars/{{ stream_partition.parent_id }}/participants" - error_handler: - type: CompositeErrorHandler - error_handlers: - - type: DefaultErrorHandler - response_filters: - - http_codes: [400] - action: IGNORE - - type: DefaultErrorHandler - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/webinars_list_tmp_stream" - parent_key: "uuid" - partition_field: "parent_id" - transformations: - - type: AddFields - fields: - - path: ["webinar_uuid"] - value: "{{ stream_partition.parent_id }}" - -streams: - - "#/definitions/users_stream" - - "#/definitions/meetings_stream" - - "#/definitions/meeting_registrants_stream" - - "#/definitions/meeting_polls_stream" - - "#/definitions/meeting_poll_results_stream" - - "#/definitions/meeting_registration_questions_stream" - - "#/definitions/webinars_stream" - - "#/definitions/webinar_panelists_stream" - - "#/definitions/webinar_registrants_stream" - - "#/definitions/webinar_absentees_stream" - - "#/definitions/webinar_polls_stream" - - "#/definitions/webinar_poll_results_stream" - - "#/definitions/webinar_registration_questions_stream" - - "#/definitions/webinar_tracking_sources_stream" - - "#/definitions/webinar_qna_results_stream" - - "#/definitions/report_meetings_stream" - - "#/definitions/report_meeting_participants_stream" - - "#/definitions/report_webinars_stream" - - "#/definitions/report_webinar_participants_stream" - -check: - stream_names: - - "users" diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/run.py b/airbyte-integrations/connectors/source-zoom/source_zoom/run.py deleted file mode 100644 index e663e8441844..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/run.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch -from source_zoom import SourceZoom - - -def run(): - source = SourceZoom() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_poll_results.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_poll_results.json deleted file mode 100644 index 3c9ea605ecd3..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_poll_results.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "meeting_uuid": { - "type": ["null", "string"] - }, - "meeting_id": { - "type": ["null", "integer"] - }, - "email": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "question_details": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "answer": { - "type": ["null", "string"] - }, - "date_time": { - "type": ["null", "string"] - }, - "polling_id": { - "type": ["null", "string"] - }, - "question": { - "type": ["null", "string"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_polls.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_polls.json deleted file mode 100644 index d9cbaccf720d..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_polls.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "string"] - }, - "meeting_id": { - "type": ["null", "number"] - }, - "status": { - "type": ["null", "string"] - }, - "anonymous": { - "type": ["null", "boolean"] - }, - "poll_type": { - "type": ["null", "number"] - }, - "questions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "answer_max_character": { - "type": ["null", "number"] - }, - "answer_min_character": { - "type": ["null", "number"] - }, - "answer_required": { - "type": ["null", "boolean"] - }, - "answers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "case_sensitive": { - "type": ["null", "boolean"] - }, - "name": { - "type": ["null", "string"] - }, - "prompts": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "prompt_question": { - "type": ["null", "string"] - }, - "prompt_right_answers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - } - } - } - }, - "rating_max_label": { - "type": ["null", "string"] - }, - "rating_max_value": { - "type": ["null", "number"] - }, - "rating_min_label": { - "type": ["null", "string"] - }, - "rating_min_value": { - "type": ["null", "number"] - }, - "right_answers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "show_as_dropdown": { - "type": ["null", "boolean"] - }, - "type": { - "type": ["null", "string"] - } - } - } - }, - "title": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_registrants.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_registrants.json deleted file mode 100644 index e881cb099190..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_registrants.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "meeting_id": { - "type": ["null", "number"] - }, - "id": { - "type": ["null", "string"] - }, - "address": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "comments": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "custom_questions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "title": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "email": { - "type": ["null", "string"] - }, - "first_name": { - "type": ["null", "string"] - }, - "industry": { - "type": ["null", "string"] - }, - "job_title": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "no_of_employees": { - "type": ["null", "string"] - }, - "org": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - }, - "purchasing_time_frame": { - "type": ["null", "string"] - }, - "role_in_purchase_process": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "zip": { - "type": ["null", "string"] - }, - "create_time": { - "type": ["null", "string"] - }, - "join_url": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_registration_questions.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_registration_questions.json deleted file mode 100644 index 39fb68f6f587..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meeting_registration_questions.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "meeting_id": { - "type": ["null", "integer"] - }, - "custom_questions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "answers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "required": { - "type": ["null", "boolean"] - }, - "title": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "string"] - } - } - } - }, - "questions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "field_name": { - "type": ["null", "string"] - }, - "required": { - "type": ["null", "boolean"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meetings.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meetings.json deleted file mode 100644 index 194f626121ba..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meetings.json +++ /dev/null @@ -1,485 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "assistant_id": { - "type": ["null", "string"] - }, - "host_email": { - "type": ["null", "string"] - }, - "host_id": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "number"] - }, - "uuid": { - "type": ["null", "string"] - }, - "agenda": { - "type": ["null", "string"] - }, - "created_at": { - "type": ["null", "string"] - }, - "duration": { - "type": ["null", "number"] - }, - "encrypted_password": { - "type": ["null", "string"] - }, - "h323_password": { - "type": ["null", "string"] - }, - "join_url": { - "type": ["null", "string"] - }, - "chat_join_url": { - "type": ["null", "string"] - }, - "occurrences": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "duration": { - "type": ["null", "number"] - }, - "occurrence_id": { - "type": ["null", "string"] - }, - "start_time": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - } - } - } - }, - "password": { - "type": ["null", "string"] - }, - "pmi": { - "type": ["null", "string"] - }, - "pre_schedule": { - "type": ["null", "boolean"] - }, - "pstn_password": { - "type": ["null", "string"] - }, - "recurrence": { - "type": ["null", "object"], - "properties": { - "end_date_time": { - "type": ["null", "string"] - }, - "end_times": { - "type": ["null", "number"] - }, - "monthly_day": { - "type": ["null", "number"] - }, - "monthly_week": { - "type": ["null", "number"] - }, - "monthly_week_day": { - "type": ["null", "number"] - }, - "repeat_interval": { - "type": ["null", "number"] - }, - "type": { - "type": ["null", "number"] - }, - "weekly_days": { - "type": ["null", "string"] - } - } - }, - "settings": { - "type": ["null", "object"], - "properties": { - "allow_multiple_devices": { - "type": ["null", "boolean"] - }, - "alternative_hosts": { - "type": ["null", "string"] - }, - "alternative_hosts_email_notification": { - "type": ["null", "boolean"] - }, - "alternative_host_update_polls": { - "type": ["null", "boolean"] - }, - "approval_type": { - "type": ["null", "number"] - }, - "approved_or_denied_countries_or_regions": { - "type": ["null", "object"], - "properties": { - "approved_list": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "denied_list": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "enable": { - "type": ["null", "boolean"] - }, - "method": { - "type": ["null", "string"] - } - } - }, - "audio": { - "type": ["null", "string"] - }, - "audio_conference_info": { - "type": ["null", "string"] - }, - "authentication_domains": { - "type": ["null", "string"] - }, - "authentication_exception": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "email": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "join_url": { - "type": ["null", "string"] - } - } - } - }, - "authentication_name": { - "type": ["null", "string"] - }, - "authentication_option": { - "type": ["null", "string"] - }, - "auto_recording": { - "type": ["null", "string"] - }, - "breakout_room": { - "type": ["null", "object"], - "properties": { - "enable": { - "type": ["null", "boolean"] - }, - "rooms": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "name": { - "type": ["null", "string"] - }, - "participants": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - } - } - } - } - } - }, - "calendar_type": { - "type": ["null", "number"] - }, - "close_registration": { - "type": ["null", "boolean"] - }, - "cn_meeting": { - "type": ["null", "boolean"] - }, - "contact_email": { - "type": ["null", "string"] - }, - "contact_name": { - "type": ["null", "string"] - }, - "custom_keys": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "email_notification": { - "type": ["null", "boolean"] - }, - "device_testing": { - "type": ["null", "boolean"] - }, - "email_in_attendee_report": { - "type": ["null", "boolean"] - }, - "enable_dedicated_group_chat": { - "type": ["null", "boolean"] - }, - "encryption_type": { - "type": ["null", "string"] - }, - "enforce_login": { - "type": ["null", "boolean"] - }, - "enforce_login_domains": { - "type": ["null", "string"] - }, - "focus_mode": { - "type": ["null", "boolean"] - }, - "global_dial_in_countries": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "global_dial_in_numbers": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "city": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "country_name": { - "type": ["null", "string"] - }, - "number": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "string"] - } - } - } - }, - "host_video": { - "type": ["null", "boolean"] - }, - "in_meeting": { - "type": ["null", "boolean"] - }, - "jbh_time": { - "type": ["null", "number"] - }, - "join_before_host": { - "type": ["null", "boolean"] - }, - "language_interpretation": { - "type": ["null", "object"], - "properties": { - "enable": { - "type": ["null", "boolean"] - }, - "interpreters": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "email": { - "type": ["null", "string"] - }, - "languages": { - "type": ["null", "string"] - } - } - } - } - } - }, - "meeting_authentication": { - "type": ["null", "boolean"] - }, - "mute_upon_entry": { - "type": ["null", "boolean"] - }, - "participant_video": { - "type": ["null", "boolean"] - }, - "private_meeting": { - "type": ["null", "boolean"] - }, - "resources": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "resource_type": { - "type": ["null", "string"] - }, - "resource_id": { - "type": ["null", "string"] - }, - "permission_level": { - "type": ["null", "string"] - } - } - } - }, - "registrants_confirmation_email": { - "type": ["null", "boolean"] - }, - "registrants_email_notification": { - "type": ["null", "boolean"] - }, - "registration_type": { - "type": ["null", "number"] - }, - "request_permission_to_unmute_participants": { - "type": ["null", "boolean"] - }, - "show_join_info": { - "type": ["null", "boolean"] - }, - "show_share_button": { - "type": ["null", "boolean"] - }, - "sign_language_interpretation": { - "type": ["null", "object"], - "additionalProperties": true, - "properties": { - "enable": { - "type": ["null", "boolean"] - } - } - }, - "use_pmi": { - "type": ["null", "boolean"] - }, - "waiting_room": { - "type": ["null", "boolean"] - }, - "waiting_room_options": { - "type": ["null", "object"], - "properties": { - "enable": { - "type": ["null", "boolean"] - }, - "admit_type": { - "type": ["null", "number"] - }, - "auto_admit": { - "type": ["null", "number"] - }, - "internal_user_auto_admit": { - "type": ["null", "number"] - } - } - }, - "watermark": { - "type": ["null", "boolean"] - }, - "host_save_video_order": { - "type": ["null", "boolean"] - }, - "internal_meeting": { - "type": ["null", "boolean"] - }, - "continuous_meeting_chat": { - "type": ["null", "object"], - "properties": { - "enable": { - "type": ["null", "boolean"] - }, - "auto_add_invited_external_users": { - "type": ["null", "boolean"] - }, - "channel_id": { - "type": ["null", "string"] - } - } - }, - "participant_focused_meeting": { - "type": ["null", "boolean"] - }, - "push_change_to_calendar": { - "type": ["null", "boolean"] - } - } - }, - "registration_url": { - "type": ["null", "string"] - }, - "resources": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "resource_type": { - "type": ["null", "string"] - }, - "resource_id": { - "type": ["null", "string"] - }, - "permission_level": { - "type": ["null", "string"] - } - } - } - }, - "start_time": { - "type": ["null", "string"] - }, - "start_url": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "timezone": { - "type": ["null", "string"] - }, - "topic": { - "type": ["null", "string"] - }, - "tracking_fields": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "field": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - }, - "visible": { - "type": ["null", "boolean"] - } - } - } - }, - "type": { - "type": ["null", "number"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meetings_list_tmp.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meetings_list_tmp.json deleted file mode 100644 index c74e6c5a5915..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/meetings_list_tmp.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "additionalProperties": true -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_meeting_participants.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_meeting_participants.json deleted file mode 100644 index 6ac1210c943a..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_meeting_participants.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "meeting_uuid": { - "type": ["null", "string"] - }, - "meeting_id": { - "type": ["null", "integer"] - }, - "customer_key": { - "type": ["null", "string"] - }, - "duration": { - "type": ["null", "number"] - }, - "failover": { - "type": ["null", "boolean"] - }, - "id": { - "type": ["null", "string"] - }, - "join_time": { - "type": ["null", "string"] - }, - "leave_time": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "registrant_id": { - "type": ["null", "string"] - }, - "user_email": { - "type": ["null", "string"] - }, - "user_id": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "bo_mtg_id": { - "type": ["null", "string"] - }, - "participant_user_id": { - "type": ["null", "string"] - }, - "attentiveness_score": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_meetings.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_meetings.json deleted file mode 100644 index 96bb88296539..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_meetings.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "meeting_uuid": { - "type": ["null", "string"] - }, - "custom_keys": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "dept": { - "type": ["null", "string"] - }, - "duration": { - "type": ["null", "number"] - }, - "end_time": { - "type": ["null", "string"] - }, - "host_id": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "number"] - }, - "participants_count": { - "type": ["null", "number"] - }, - "start_time": { - "type": ["null", "string"] - }, - "topic": { - "type": ["null", "string"] - }, - "total_minutes": { - "type": ["null", "number"] - }, - "tracking_fields": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "field": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "type": { - "type": ["null", "number"] - }, - "user_email": { - "type": ["null", "string"] - }, - "user_name": { - "type": ["null", "string"] - }, - "uuid": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_webinar_participants.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_webinar_participants.json deleted file mode 100644 index 97728b61a0da..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_webinar_participants.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_uuid": { - "type": ["null", "string"] - }, - "customer_key": { - "type": ["null", "string"] - }, - "duration": { - "type": ["null", "number"] - }, - "failover": { - "type": ["null", "boolean"] - }, - "id": { - "type": ["null", "string"] - }, - "join_time": { - "type": ["null", "string"] - }, - "leave_time": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "registrant_id": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "user_email": { - "type": ["null", "string"] - }, - "user_id": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_webinars.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_webinars.json deleted file mode 100644 index 785c07bdc9ba..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/report_webinars.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_uuid": { - "type": ["null", "string"] - }, - "custom_keys": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "key": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "dept": { - "type": ["null", "string"] - }, - "duration": { - "type": ["null", "number"] - }, - "end_time": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "number"] - }, - "participants_count": { - "type": ["null", "number"] - }, - "start_time": { - "type": ["null", "string"] - }, - "topic": { - "type": ["null", "string"] - }, - "total_minutes": { - "type": ["null", "number"] - }, - "tracking_fields": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "field": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "type": { - "type": ["null", "number"] - }, - "user_email": { - "type": ["null", "string"] - }, - "user_name": { - "type": ["null", "string"] - }, - "uuid": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/users.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/users.json deleted file mode 100644 index a2f1fce04692..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/users.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "properties": { - "user_created_at": { - "type": ["null", "string"] - }, - "created_at": { - "type": ["null", "string"] - }, - "custom_attributes": { - "type": ["null", "array"], - "items": { - "type": "object", - "properties": { - "key": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "dept": { - "type": ["null", "string"] - }, - "email": { - "type": ["null", "string"] - }, - "employee_unique_id": { - "type": ["null", "string"] - }, - "first_name": { - "type": ["null", "string"] - }, - "group_ids": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "id": { - "type": ["null", "string"] - }, - "im_group_ids": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "language": { - "type": ["null", "string"] - }, - "last_client_version": { - "type": ["null", "string"] - }, - "last_login_time": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "phone_number": { - "type": ["null", "string"] - }, - "plan_united_type": { - "type": ["null", "string"] - }, - "pmi": { - "type": ["null", "number"] - }, - "role_id": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "timezone": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "number"] - }, - "verified": { - "type": ["null", "number"] - }, - "display_name": { "type": ["null", "string"] } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_absentees.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_absentees.json deleted file mode 100644 index c56de977fb97..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_absentees.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_uuid": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "string"] - }, - "address": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "comments": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "custom_questions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "title": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "email": { - "type": ["null", "string"] - }, - "first_name": { - "type": ["null", "string"] - }, - "industry": { - "type": ["null", "string"] - }, - "job_title": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "no_of_employees": { - "type": ["null", "string"] - }, - "org": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - }, - "purchasing_time_frame": { - "type": ["null", "string"] - }, - "role_in_purchase_process": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "zip": { - "type": ["null", "string"] - }, - "create_time": { - "type": ["null", "string"] - }, - "join_url": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_panelists.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_panelists.json deleted file mode 100644 index 65a7dbff19e2..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_panelists.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_id": { - "type": ["null", "number"] - }, - "id": { - "type": ["null", "string"] - }, - "email": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "join_url": { - "type": ["null", "string"] - }, - "virtual_background_id": { - "type": ["null", "string"] - }, - "name_tag_id": { - "type": ["null", "string"] - }, - "name_tag_name": { - "type": ["null", "string"] - }, - "name_tag_pronouns": { - "type": ["null", "string"] - }, - "name_tag_description": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_poll_results.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_poll_results.json deleted file mode 100644 index d405339cea2c..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_poll_results.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_uuid": { - "type": ["null", "string"] - }, - "email": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "question_details": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "answer": { - "type": ["null", "string"] - }, - "date_time": { - "type": ["null", "string"] - }, - "polling_id": { - "type": ["null", "string"] - }, - "question": { - "type": ["null", "string"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_polls.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_polls.json deleted file mode 100644 index 1c30b07f1dee..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_polls.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_id": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "anonymous": { - "type": ["null", "boolean"] - }, - "poll_type": { - "type": ["null", "number"] - }, - "questions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "answer_max_character": { - "type": ["null", "number"] - }, - "answer_min_character": { - "type": ["null", "number"] - }, - "answer_required": { - "type": ["null", "boolean"] - }, - "answers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "case_sensitive": { - "type": ["null", "boolean"] - }, - "name": { - "type": ["null", "string"] - }, - "prompts": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "prompt_question": { - "type": ["null", "string"] - }, - "prompt_right_answers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - } - } - } - }, - "rating_max_label": { - "type": ["null", "string"] - }, - "rating_max_value": { - "type": ["null", "number"] - }, - "rating_min_label": { - "type": ["null", "string"] - }, - "rating_min_value": { - "type": ["null", "number"] - }, - "right_answers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "show_as_dropdown": { - "type": ["null", "boolean"] - }, - "type": { - "type": ["null", "string"] - } - } - } - }, - "title": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_qna_results.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_qna_results.json deleted file mode 100644 index 175b6dcd633e..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_qna_results.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_uuid": { - "type": ["null", "string"] - }, - "email": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "question_details": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "answer": { - "type": ["null", "string"] - }, - "question": { - "type": ["null", "string"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_registrants.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_registrants.json deleted file mode 100644 index 7fda1561c4ab..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_registrants.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_id": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "string"] - }, - "address": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "comments": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "custom_questions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "title": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "email": { - "type": ["null", "string"] - }, - "first_name": { - "type": ["null", "string"] - }, - "industry": { - "type": ["null", "string"] - }, - "job_title": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "no_of_employees": { - "type": ["null", "string"] - }, - "org": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - }, - "purchasing_time_frame": { - "type": ["null", "string"] - }, - "role_in_purchase_process": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "zip": { - "type": ["null", "string"] - }, - "create_time": { - "type": ["null", "string"] - }, - "join_url": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_registration_questions.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_registration_questions.json deleted file mode 100644 index a7ba8b6985c5..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_registration_questions.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_id": { - "type": ["null", "string"] - }, - "custom_questions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "answers": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "required": { - "type": ["null", "boolean"] - }, - "title": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "string"] - } - } - } - }, - "questions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "field_name": { - "type": ["null", "string"] - }, - "required": { - "type": ["null", "boolean"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_tracking_sources.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_tracking_sources.json deleted file mode 100644 index b97d71e40147..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinar_tracking_sources.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "webinar_id": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "string"] - }, - "registration_count": { - "type": ["null", "number"] - }, - "source_name": { - "type": ["null", "string"] - }, - "tracking_url": { - "type": ["null", "string"] - }, - "visitor_count": { - "type": ["null", "number"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinars.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinars.json deleted file mode 100644 index 383818e6b57e..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinars.json +++ /dev/null @@ -1,311 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "host_email": { - "type": ["null", "string"] - }, - "host_id": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "number"] - }, - "uuid": { - "type": ["null", "string"] - }, - "agenda": { - "type": ["null", "string"] - }, - "created_at": { - "type": ["null", "string"] - }, - "duration": { - "type": ["null", "number"] - }, - "join_url": { - "type": ["null", "string"] - }, - "occurrences": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "duration": { - "type": ["null", "number"] - }, - "occurrence_id": { - "type": ["null", "string"] - }, - "start_time": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - } - } - } - }, - "password": { - "type": ["null", "string"] - }, - "recurrence": { - "type": ["null", "object"], - "properties": { - "end_date_time": { - "type": ["null", "string"] - }, - "end_times": { - "type": ["null", "number"] - }, - "monthly_day": { - "type": ["null", "number"] - }, - "monthly_week": { - "type": ["null", "number"] - }, - "monthly_week_day": { - "type": ["null", "number"] - }, - "repeat_interval": { - "type": ["null", "number"] - }, - "type": { - "type": ["null", "number"] - }, - "weekly_days": { - "type": ["null", "string"] - } - } - }, - "settings": { - "type": ["null", "object"], - "properties": { - "allow_multiple_devices": { - "type": ["null", "boolean"] - }, - "alternative_hosts": { - "type": ["null", "string"] - }, - "alternative_host_update_polls": { - "type": ["null", "boolean"] - }, - "approval_type": { - "type": ["null", "number"] - }, - "attendees_and_panelists_reminder_email_notification": { - "type": ["null", "object"], - "properties": { - "enable": { - "type": ["null", "boolean"] - }, - "type": { - "type": ["null", "number"] - } - } - }, - "audio": { - "type": ["null", "string"] - }, - "authentication_domains": { - "type": ["null", "string"] - }, - "authentication_name": { - "type": ["null", "string"] - }, - "authentication_option": { - "type": ["null", "string"] - }, - "auto_recording": { - "type": ["null", "string"] - }, - "close_registration": { - "type": ["null", "boolean"] - }, - "contact_email": { - "type": ["null", "string"] - }, - "contact_name": { - "type": ["null", "string"] - }, - "email_language": { - "type": ["null", "string"] - }, - "follow_up_absentees_email_notification": { - "type": ["null", "object"], - "properties": { - "enable": { - "type": ["null", "boolean"] - }, - "type": { - "type": ["null", "number"] - } - } - }, - "follow_up_attendees_email_notification": { - "type": ["null", "object"], - "properties": { - "enable": { - "type": ["null", "boolean"] - }, - "type": { - "type": ["null", "number"] - } - } - }, - "global_dial_in_countries": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "hd_video": { - "type": ["null", "boolean"] - }, - "hd_video_for_attendees": { - "type": ["null", "boolean"] - }, - "host_video": { - "type": ["null", "boolean"] - }, - "language_interpretation": { - "type": ["null", "object"], - "properties": { - "enable": { - "type": ["null", "boolean"] - }, - "interpreters": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "email": { - "type": ["null", "string"] - }, - "languages": { - "type": ["null", "string"] - } - } - } - } - } - }, - "panelist_authentication": { - "type": ["null", "boolean"] - }, - "meeting_authentication": { - "type": ["null", "boolean"] - }, - "add_watermark": { - "type": ["null", "boolean"] - }, - "add_audio_watermark": { - "type": ["null", "boolean"] - }, - "notify_registrants": { - "type": ["null", "boolean"] - }, - "on_demand": { - "type": ["null", "boolean"] - }, - "panelists_invitation_email_notification": { - "type": ["null", "boolean"] - }, - "panelists_video": { - "type": ["null", "boolean"] - }, - "post_webinar_survey": { - "type": ["null", "boolean"] - }, - "practice_session": { - "type": ["null", "boolean"] - }, - "question_and_answer": { - "type": ["null", "object"], - "properties": { - "allow_anonymous_questions": { - "type": ["null", "boolean"] - }, - "answer_questions": { - "type": ["null", "string"] - }, - "attendees_can_comment": { - "type": ["null", "boolean"] - }, - "attendees_can_upvote": { - "type": ["null", "boolean"] - }, - "allow_auto_reply": { - "type": ["null", "boolean"] - }, - "auto_reply_text": { - "type": ["null", "string"] - }, - "enable": { - "type": ["null", "boolean"] - } - } - }, - "registrants_confirmation_email": { - "type": ["null", "boolean"] - }, - "registrants_email_notification": { - "type": ["null", "boolean"] - }, - "registrants_restrict_number": { - "type": ["null", "number"] - }, - "registration_type": { - "type": ["null", "number"] - }, - "send_1080p_video_to_attendees": { - "type": ["null", "boolean"] - }, - "show_share_button": { - "type": ["null", "boolean"] - }, - "survey_url": { - "type": ["null", "string"] - }, - "enable_session_branding": { - "type": ["null", "boolean"] - } - } - }, - "start_time": { - "type": ["null", "string"] - }, - "start_url": { - "type": ["null", "string"] - }, - "timezone": { - "type": ["null", "string"] - }, - "topic": { - "type": ["null", "string"] - }, - "tracking_fields": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "field": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "type": { - "type": ["null", "number"] - }, - "is_simulive": { - "type": ["null", "boolean"] - }, - "record_file_id": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinars_list_tmp.json b/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinars_list_tmp.json deleted file mode 100644 index c74e6c5a5915..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/schemas/webinars_list_tmp.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "additionalProperties": true -} diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/source.py b/airbyte-integrations/connectors/source-zoom/source_zoom/source.py deleted file mode 100644 index a851fa38c8a3..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceZoom(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-zoom/source_zoom/spec.yaml b/airbyte-integrations/connectors/source-zoom/source_zoom/spec.yaml deleted file mode 100644 index d91cbe0bd6c9..000000000000 --- a/airbyte-integrations/connectors/source-zoom/source_zoom/spec.yaml +++ /dev/null @@ -1,29 +0,0 @@ -documentationUrl: https://docs.airbyte.com/integrations/sources/zoom -connectionSpecification: - $schema: http://json-schema.org/draft-07/schema# - title: Zoom Spec - type: object - required: - - account_id - - client_id - - client_secret - - authorization_endpoint - additionalProperties: true - properties: - account_id: - type: string - order: 0 - description: 'The account ID for your Zoom account. You can find this in the Zoom Marketplace under the "Manage" tab for your app.' - client_id: - type: string - order: 1 - description: 'The client ID for your Zoom app. You can find this in the Zoom Marketplace under the "Manage" tab for your app.' - client_secret: - type: string - order: 2 - description: 'The client secret for your Zoom app. You can find this in the Zoom Marketplace under the "Manage" tab for your app.' - airbyte_secret: true - authorization_endpoint: - type: string - order: 3 - default: "https://zoom.us/oauth/token" diff --git a/airbyte-integrations/connectors/source-zoom/unit_tests/test_zoom_authenticator.py b/airbyte-integrations/connectors/source-zoom/unit_tests/test_zoom_authenticator.py deleted file mode 100755 index 3e2b27319383..000000000000 --- a/airbyte-integrations/connectors/source-zoom/unit_tests/test_zoom_authenticator.py +++ /dev/null @@ -1,60 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -import base64 -import unittest -from http import HTTPStatus - -import requests -import requests_mock -from source_zoom.components import ServerToServerOauthAuthenticator - - -class TestOAuthClient(unittest.TestCase): - def test_generate_access_token(self): - except_access_token = "rc-test-token" - except_token_response = {"access_token": except_access_token} - - config = { - "account_id": "rc-asdfghjkl", - "client_id": "rc-123456789", - "client_secret": "rc-test-secret", - "authorization_endpoint": "https://example.zoom.com/oauth/token" - } - parameters = config - client = ServerToServerOauthAuthenticator( - config=config, - account_id=config["account_id"], - client_id=config["client_id"], - client_secret=config["client_secret"], - authorization_endpoint=config["authorization_endpoint"], - parameters=parameters, - ) - - # Encode the client credentials in base64 - token = base64.b64encode(f'{config.get("client_id")}:{config.get("client_secret")}'.encode("ascii")).decode("utf-8") - - # Define the headers that should be sent in the request - headers = {"Authorization": f"Basic {token}", "Content-type": "application/json"} - - # Define the URL containing the grant_type and account_id as query parameters - url = f'{config.get("authorization_endpoint")}?grant_type=account_credentials&account_id={config.get("account_id")}' - - with requests_mock.Mocker() as m: - # Mock the requests.post call with the expected URL, headers and token response - m.post(url, json=except_token_response, request_headers=headers, status_code=HTTPStatus.OK) - - # Call the generate_access_token function and assert it returns the expected access token - self.assertEqual(client.generate_access_token(), except_access_token) - - # Test case when the endpoint has some error, like a timeout - with requests_mock.Mocker() as m: - m.post(url, exc=requests.exceptions.RequestException) - with self.assertRaises(Exception) as cm: - client.generate_access_token() - self.assertIn("Error while generating access token", str(cm.exception)) - - -if __name__ == "__main__": - unittest.main() diff --git a/docs/integrations/sources/zoom.md b/docs/integrations/sources/zoom.md index cbd10a9738af..a6d8fe5acf78 100644 --- a/docs/integrations/sources/zoom.md +++ b/docs/integrations/sources/zoom.md @@ -71,6 +71,7 @@ JWT Tokens are deprecated, only Server-to-Server works now. [link to Zoom](https | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------- | +| 1.2.0 | 2024-10-29 | [47299](https://github.com/airbytehq/airbyte/pull/47299) | Migrate to manifest only format | | 1.1.22 | 2024-10-29 | [47755](https://github.com/airbytehq/airbyte/pull/47755) | Update dependencies | | 1.1.21 | 2024-10-28 | [47094](https://github.com/airbytehq/airbyte/pull/47094) | Update dependencies | | 1.1.20 | 2024-10-12 | [46824](https://github.com/airbytehq/airbyte/pull/46824) | Update dependencies | From 6e2cbb4bb089f605318e448ca6bd665ecb4cf7f2 Mon Sep 17 00:00:00 2001 From: Brian Lai <51336873+brianjlai@users.noreply.github.com> Date: Tue, 29 Oct 2024 21:09:08 -0400 Subject: [PATCH 482/808] [Concurrent Low-Code] ConcurrentDeclarativeSource class that low-code connectors can inherit from to uptake Concurrent CDK (#46662) Co-authored-by: Maxime Carbonneau-Leclerc <3360483+maxi297@users.noreply.github.com> --- .../declarative/checks/check_stream.py | 6 +- .../declarative/checks/connection_checker.py | 4 +- .../concurrent_declarative_source.py | 281 ++++ .../incremental/datetime_based_cursor.py | 9 +- .../interpolation/interpolated_string.py | 2 +- .../manifest_declarative_source.py | 4 +- .../parsers/model_to_component_factory.py | 148 ++- .../interpolated_request_options_provider.py | 33 + .../declarative/yaml_declarative_source.py | 24 +- .../sources/streams/concurrent/adapters.py | 23 +- .../concurrent/availability_strategy.py | 1 + .../sources/streams/concurrent/cursor.py | 50 +- .../streams/concurrent/default_stream.py | 1 + .../abstract_stream_state_converter.py | 14 +- .../datetime_stream_state_converter.py | 14 + .../airbyte_cdk/test/mock_http/matcher.py | 6 + .../airbyte_cdk/test/mock_http/mocker.py | 2 + .../airbyte_cdk/test/mock_http/request.py | 10 + airbyte-cdk/python/cdk-migrations.md | 99 ++ .../incremental/test_datetime_based_cursor.py | 10 +- .../test_model_to_component_factory.py | 241 ++++ ...t_interpolated_request_options_provider.py | 30 + .../requesters/test_http_job_repository.py | 9 +- .../test_concurrent_declarative_source.py | 1125 +++++++++++++++++ .../test_yaml_declarative_source.py | 1 + ...hread_based_concurrent_stream_scenarios.py | 1 + .../streams/concurrent/test_adapters.py | 23 +- .../sources/streams/concurrent/test_cursor.py | 158 ++- .../streams/concurrent/test_default_stream.py | 1 + .../unit_tests/test/mock_http/test_mocker.py | 17 + 30 files changed, 2290 insertions(+), 57 deletions(-) create mode 100644 airbyte-cdk/python/airbyte_cdk/sources/declarative/concurrent_declarative_source.py create mode 100644 airbyte-cdk/python/unit_tests/sources/declarative/test_concurrent_declarative_source.py diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/checks/check_stream.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/checks/check_stream.py index f2e6ad5461c5..baf056d3c799 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/checks/check_stream.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/checks/check_stream.py @@ -7,8 +7,8 @@ from dataclasses import InitVar, dataclass from typing import Any, List, Mapping, Tuple +from airbyte_cdk import AbstractSource from airbyte_cdk.sources.declarative.checks.connection_checker import ConnectionChecker -from airbyte_cdk.sources.source import Source from airbyte_cdk.sources.streams.http.availability_strategy import HttpAvailabilityStrategy @@ -27,8 +27,8 @@ class CheckStream(ConnectionChecker): def __post_init__(self, parameters: Mapping[str, Any]) -> None: self._parameters = parameters - def check_connection(self, source: Source, logger: logging.Logger, config: Mapping[str, Any]) -> Tuple[bool, Any]: - streams = source.streams(config) # type: ignore # source is always a DeclarativeSource, but this parameter type adheres to the outer interface + def check_connection(self, source: AbstractSource, logger: logging.Logger, config: Mapping[str, Any]) -> Tuple[bool, Any]: + streams = source.streams(config=config) stream_name_to_stream = {s.name: s for s in streams} if len(streams) == 0: return False, f"No streams to connect to from source {source}" diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/checks/connection_checker.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/checks/connection_checker.py index ede15537f38b..908e659b2a9d 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/checks/connection_checker.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/checks/connection_checker.py @@ -6,7 +6,7 @@ from abc import ABC, abstractmethod from typing import Any, Mapping, Tuple -from airbyte_cdk.sources.source import Source +from airbyte_cdk import AbstractSource class ConnectionChecker(ABC): @@ -15,7 +15,7 @@ class ConnectionChecker(ABC): """ @abstractmethod - def check_connection(self, source: Source, logger: logging.Logger, config: Mapping[str, Any]) -> Tuple[bool, Any]: + def check_connection(self, source: AbstractSource, logger: logging.Logger, config: Mapping[str, Any]) -> Tuple[bool, Any]: """ Tests if the input configuration can be used to successfully connect to the integration e.g: if a provided Stripe API token can be used to connect to the Stripe API. diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/concurrent_declarative_source.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/concurrent_declarative_source.py new file mode 100644 index 000000000000..a64da4758743 --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/concurrent_declarative_source.py @@ -0,0 +1,281 @@ +# +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. +# + +import logging +from typing import Any, Generic, Iterator, List, Mapping, Optional, Tuple, Union + +from airbyte_cdk.models import AirbyteCatalog, AirbyteMessage, AirbyteStateMessage, ConfiguredAirbyteCatalog +from airbyte_cdk.sources.concurrent_source.concurrent_source import ConcurrentSource +from airbyte_cdk.sources.connector_state_manager import ConnectorStateManager +from airbyte_cdk.sources.declarative.concurrency_level import ConcurrencyLevel +from airbyte_cdk.sources.declarative.declarative_stream import DeclarativeStream +from airbyte_cdk.sources.declarative.extractors import RecordSelector +from airbyte_cdk.sources.declarative.interpolation import InterpolatedString +from airbyte_cdk.sources.declarative.manifest_declarative_source import ManifestDeclarativeSource +from airbyte_cdk.sources.declarative.models.declarative_component_schema import ConcurrencyLevel as ConcurrencyLevelModel +from airbyte_cdk.sources.declarative.models.declarative_component_schema import DatetimeBasedCursor as DatetimeBasedCursorModel +from airbyte_cdk.sources.declarative.parsers.model_to_component_factory import ModelToComponentFactory +from airbyte_cdk.sources.declarative.requesters import HttpRequester +from airbyte_cdk.sources.declarative.retrievers import SimpleRetriever +from airbyte_cdk.sources.declarative.transformations.add_fields import AddFields +from airbyte_cdk.sources.declarative.types import ConnectionDefinition +from airbyte_cdk.sources.source import TState +from airbyte_cdk.sources.streams import Stream +from airbyte_cdk.sources.streams.concurrent.abstract_stream import AbstractStream +from airbyte_cdk.sources.streams.concurrent.adapters import CursorPartitionGenerator +from airbyte_cdk.sources.streams.concurrent.availability_strategy import AlwaysAvailableAvailabilityStrategy +from airbyte_cdk.sources.streams.concurrent.default_stream import DefaultStream +from airbyte_cdk.sources.streams.concurrent.helpers import get_primary_key_from_stream + + +class ConcurrentDeclarativeSource(ManifestDeclarativeSource, Generic[TState]): + + # By default, we defer to a value of 1 which represents running a connector using the Concurrent CDK engine on only one thread. + SINGLE_THREADED_CONCURRENCY_LEVEL = 1 + + def __init__( + self, + catalog: Optional[ConfiguredAirbyteCatalog], + config: Optional[Mapping[str, Any]], + state: TState, + source_config: ConnectionDefinition, + debug: bool = False, + emit_connector_builder_messages: bool = False, + component_factory: Optional[ModelToComponentFactory] = None, + **kwargs: Any, + ) -> None: + super().__init__( + source_config=source_config, + debug=debug, + emit_connector_builder_messages=emit_connector_builder_messages, + component_factory=component_factory, + ) + + self._state = state + + self._concurrent_streams: Optional[List[AbstractStream]] + self._synchronous_streams: Optional[List[Stream]] + + # If the connector command was SPEC, there is no incoming config, and we cannot instantiate streams because + # they might depend on it. Ideally we want to have a static method on this class to get the spec without + # any other arguments, but the existing entrypoint.py isn't designed to support this. Just noting this + # for our future improvements to the CDK. + if config: + self._concurrent_streams, self._synchronous_streams = self._group_streams(config=config or {}) + else: + self._concurrent_streams = None + self._synchronous_streams = None + + concurrency_level_from_manifest = self._source_config.get("concurrency_level") + if concurrency_level_from_manifest: + concurrency_level_component = self._constructor.create_component( + model_type=ConcurrencyLevelModel, component_definition=concurrency_level_from_manifest, config=config or {} + ) + if not isinstance(concurrency_level_component, ConcurrencyLevel): + raise ValueError(f"Expected to generate a ConcurrencyLevel component, but received {concurrency_level_component.__class__}") + + concurrency_level = concurrency_level_component.get_concurrency_level() + initial_number_of_partitions_to_generate = max( + concurrency_level // 2, 1 + ) # Partition_generation iterates using range based on this value. If this is floored to zero we end up in a dead lock during start up + else: + concurrency_level = self.SINGLE_THREADED_CONCURRENCY_LEVEL + initial_number_of_partitions_to_generate = self.SINGLE_THREADED_CONCURRENCY_LEVEL + + self._concurrent_source = ConcurrentSource.create( + num_workers=concurrency_level, + initial_number_of_partitions_to_generate=initial_number_of_partitions_to_generate, + logger=self.logger, + slice_logger=self._slice_logger, + message_repository=self.message_repository, # type: ignore # message_repository is always instantiated with a value by factory + ) + + def read( + self, + logger: logging.Logger, + config: Mapping[str, Any], + catalog: ConfiguredAirbyteCatalog, + state: Optional[Union[List[AirbyteStateMessage]]] = None, + ) -> Iterator[AirbyteMessage]: + + # ConcurrentReadProcessor pops streams that are finished being read so before syncing, the names of the concurrent + # streams must be saved so that they can be removed from the catalog before starting synchronous streams + if self._concurrent_streams: + concurrent_stream_names = set([concurrent_stream.name for concurrent_stream in self._concurrent_streams]) + + selected_concurrent_streams = self._select_streams(streams=self._concurrent_streams, configured_catalog=catalog) + # It would appear that passing in an empty set of streams causes an infinite loop in ConcurrentReadProcessor. + # This is also evident in concurrent_source_adapter.py so I'll leave this out of scope to fix for now + if selected_concurrent_streams: + yield from self._concurrent_source.read(selected_concurrent_streams) + + # Sync all streams that are not concurrent compatible. We filter out concurrent streams because the + # existing AbstractSource.read() implementation iterates over the catalog when syncing streams. Many + # of which were already synced using the Concurrent CDK + filtered_catalog = self._remove_concurrent_streams_from_catalog( + catalog=catalog, concurrent_stream_names=concurrent_stream_names + ) + else: + filtered_catalog = catalog + + yield from super().read(logger, config, filtered_catalog, state) + + def discover(self, logger: logging.Logger, config: Mapping[str, Any]) -> AirbyteCatalog: + concurrent_streams = self._concurrent_streams or [] + synchronous_streams = self._synchronous_streams or [] + return AirbyteCatalog(streams=[stream.as_airbyte_stream() for stream in concurrent_streams + synchronous_streams]) + + def streams(self, config: Mapping[str, Any]) -> List[Stream]: + """ + The `streams` method is used as part of the AbstractSource in the following cases: + * ConcurrentDeclarativeSource.check -> ManifestDeclarativeSource.check -> AbstractSource.check -> DeclarativeSource.check_connection -> CheckStream.check_connection -> streams + * ConcurrentDeclarativeSource.read -> AbstractSource.read -> streams (note that we filter for a specific catalog which excludes concurrent streams so not all streams actually read from all the streams returned by `streams`) + Note that `super.streams(config)` is also called when splitting the streams between concurrent or not in `_group_streams`. + + In both case, we will assume that calling the DeclarativeStream is perfectly fine as the result for these is the same regardless of if it is a DeclarativeStream or a DefaultStream (concurrent). This should simply be removed once we have moved away from the mentioned code paths above. + """ + return super().streams(config) + + def _group_streams(self, config: Mapping[str, Any]) -> Tuple[List[AbstractStream], List[Stream]]: + concurrent_streams: List[AbstractStream] = [] + synchronous_streams: List[Stream] = [] + + state_manager = ConnectorStateManager(state=self._state) # type: ignore # state is always in the form of List[AirbyteStateMessage]. The ConnectorStateManager should use generics, but this can be done later + + name_to_stream_mapping = {stream["name"]: stream for stream in self.resolved_manifest["streams"]} + + for declarative_stream in super().streams(config=config): + # Some low-code sources use a combination of DeclarativeStream and regular Python streams. We can't inspect + # these legacy Python streams the way we do low-code streams to determine if they are concurrent compatible, + # so we need to treat them as synchronous + if isinstance(declarative_stream, DeclarativeStream): + datetime_based_cursor_component_definition = name_to_stream_mapping[declarative_stream.name].get("incremental_sync") + + if ( + datetime_based_cursor_component_definition + and datetime_based_cursor_component_definition.get("type", "") == DatetimeBasedCursorModel.__name__ + and self._stream_supports_concurrent_partition_processing(declarative_stream=declarative_stream) + ): + stream_state = state_manager.get_stream_state( + stream_name=declarative_stream.name, namespace=declarative_stream.namespace + ) + + cursor, connector_state_converter = self._constructor.create_concurrent_cursor_from_datetime_based_cursor( + state_manager=state_manager, + model_type=DatetimeBasedCursorModel, + component_definition=datetime_based_cursor_component_definition, + stream_name=declarative_stream.name, + stream_namespace=declarative_stream.namespace, + config=config or {}, + stream_state=stream_state, + ) + + # This is an optimization so that we don't invoke any cursor or state management flows within the + # low-code framework because state management is handled through the ConcurrentCursor. + if declarative_stream and declarative_stream.retriever and isinstance(declarative_stream.retriever, SimpleRetriever): + # Also a temporary hack. In the legacy Stream implementation, as part of the read, set_initial_state() is + # called to instantiate incoming state on the cursor. Although we no longer rely on the legacy low-code cursor + # for concurrent checkpointing, low-code components like StopConditionPaginationStrategyDecorator and + # ClientSideIncrementalRecordFilterDecorator still rely on a DatetimeBasedCursor that is properly initialized + # with state. + if declarative_stream.retriever.cursor: + declarative_stream.retriever.cursor.set_initial_state(stream_state=stream_state) + declarative_stream.retriever.cursor = None + + partition_generator = CursorPartitionGenerator( + stream=declarative_stream, + message_repository=self.message_repository, # type: ignore # message_repository is always instantiated with a value by factory + cursor=cursor, + connector_state_converter=connector_state_converter, + cursor_field=[cursor.cursor_field.cursor_field_key], + slice_boundary_fields=cursor.slice_boundary_fields, + ) + + concurrent_streams.append( + DefaultStream( + partition_generator=partition_generator, + name=declarative_stream.name, + json_schema=declarative_stream.get_json_schema(), + availability_strategy=AlwaysAvailableAvailabilityStrategy(), + primary_key=get_primary_key_from_stream(declarative_stream.primary_key), + cursor_field=cursor.cursor_field.cursor_field_key, + logger=self.logger, + cursor=cursor, + ) + ) + else: + synchronous_streams.append(declarative_stream) + else: + synchronous_streams.append(declarative_stream) + + return concurrent_streams, synchronous_streams + + def _stream_supports_concurrent_partition_processing(self, declarative_stream: DeclarativeStream) -> bool: + """ + Many connectors make use of stream_state during interpolation on a per-partition basis under the assumption that + state is updated sequentially. Because the concurrent CDK engine processes different partitions in parallel, + stream_state is no longer a thread-safe interpolation context. It would be a race condition because a cursor's + stream_state can be updated in any order depending on which stream partition's finish first. + + We should start to move away from depending on the value of stream_state for low-code components that operate + per-partition, but we need to gate this otherwise some connectors will be blocked from publishing. See the + cdk-migrations.md for the full list of connectors. + """ + + if isinstance(declarative_stream.retriever, SimpleRetriever) and isinstance(declarative_stream.retriever.requester, HttpRequester): + http_requester = declarative_stream.retriever.requester + if "stream_state" in http_requester._path.string: + self.logger.warning( + f"Low-code stream '{declarative_stream.name}' uses interpolation of stream_state in the HttpRequester which is not thread-safe. Defaulting to synchronous processing" + ) + return False + + request_options_provider = http_requester._request_options_provider + if request_options_provider.request_options_contain_stream_state(): + self.logger.warning( + f"Low-code stream '{declarative_stream.name}' uses interpolation of stream_state in the HttpRequester which is not thread-safe. Defaulting to synchronous processing" + ) + return False + + record_selector = declarative_stream.retriever.record_selector + if isinstance(record_selector, RecordSelector): + if record_selector.record_filter and "stream_state" in record_selector.record_filter.condition: + self.logger.warning( + f"Low-code stream '{declarative_stream.name}' uses interpolation of stream_state in the RecordFilter which is not thread-safe. Defaulting to synchronous processing" + ) + return False + + for add_fields in [ + transformation for transformation in record_selector.transformations if isinstance(transformation, AddFields) + ]: + for field in add_fields.fields: + if isinstance(field.value, str) and "stream_state" in field.value: + self.logger.warning( + f"Low-code stream '{declarative_stream.name}' uses interpolation of stream_state in the AddFields which is not thread-safe. Defaulting to synchronous processing" + ) + return False + if isinstance(field.value, InterpolatedString) and "stream_state" in field.value.string: + self.logger.warning( + f"Low-code stream '{declarative_stream.name}' uses interpolation of stream_state in the AddFields which is not thread-safe. Defaulting to synchronous processing" + ) + return False + return True + + @staticmethod + def _select_streams(streams: List[AbstractStream], configured_catalog: ConfiguredAirbyteCatalog) -> List[AbstractStream]: + stream_name_to_instance: Mapping[str, AbstractStream] = {s.name: s for s in streams} + abstract_streams: List[AbstractStream] = [] + for configured_stream in configured_catalog.streams: + stream_instance = stream_name_to_instance.get(configured_stream.stream.name) + if stream_instance: + abstract_streams.append(stream_instance) + + return abstract_streams + + @staticmethod + def _remove_concurrent_streams_from_catalog( + catalog: ConfiguredAirbyteCatalog, + concurrent_stream_names: set[str], + ) -> ConfiguredAirbyteCatalog: + return ConfiguredAirbyteCatalog(streams=[stream for stream in catalog.streams if stream.stream.name not in concurrent_stream_names]) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py index fafdabae03b1..6505260c72df 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py @@ -178,8 +178,13 @@ def select_state(self, stream_slice: Optional[StreamSlice] = None) -> Optional[S def _calculate_earliest_possible_value(self, end_datetime: datetime.datetime) -> datetime.datetime: lookback_delta = self._parse_timedelta(self._lookback_window.eval(self.config) if self._lookback_window else "P0D") earliest_possible_start_datetime = min(self._start_datetime.get_datetime(self.config), end_datetime) - cursor_datetime = self._calculate_cursor_datetime_from_state(self.get_stream_state()) - return max(earliest_possible_start_datetime, cursor_datetime) - lookback_delta + try: + cursor_datetime = self._calculate_cursor_datetime_from_state(self.get_stream_state()) - lookback_delta + except OverflowError: + # cursor_datetime defers to the minimum date if it does not exist in the state. Trying to subtract + # a timedelta from the minimum datetime results in an OverflowError + cursor_datetime = self._calculate_cursor_datetime_from_state(self.get_stream_state()) + return max(earliest_possible_start_datetime, cursor_datetime) def select_best_end_datetime(self) -> datetime.datetime: """ diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/interpolation/interpolated_string.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/interpolation/interpolated_string.py index 52b3401559fb..393abc9483b8 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/interpolation/interpolated_string.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/interpolation/interpolated_string.py @@ -44,7 +44,7 @@ def eval(self, config: Config, **kwargs: Any) -> Any: return self.string if self._is_plain_string is None: # Let's check whether output from evaluation is the same as input. - # This indicates occurence of a plain string, not a template and we can skip Jinja in subsequent runs. + # This indicates occurrence of a plain string, not a template and we can skip Jinja in subsequent runs. evaluated = self._interpolation.eval(self.string, config, self.default, parameters=self._parameters, **kwargs) self._is_plain_string = self.string == evaluated return evaluated diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/manifest_declarative_source.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/manifest_declarative_source.py index 7fe268f600a8..842d4e944454 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/manifest_declarative_source.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/manifest_declarative_source.py @@ -8,7 +8,7 @@ import re from copy import deepcopy from importlib import metadata -from typing import Any, Dict, Iterator, List, Mapping, MutableMapping, Optional, Tuple, Union +from typing import Any, Dict, Iterator, List, Mapping, Optional, Tuple, Union import yaml from airbyte_cdk.models import ( @@ -159,7 +159,7 @@ def read( logger: logging.Logger, config: Mapping[str, Any], catalog: ConfiguredAirbyteCatalog, - state: Optional[Union[List[AirbyteStateMessage], MutableMapping[str, Any]]] = None, + state: Optional[List[AirbyteStateMessage]] = None, ) -> Iterator[AirbyteMessage]: self._configure_logger_level(logger) yield from super().read(logger, config, catalog, state) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py index 8d1b2a6d200f..db20ffd8db0e 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py @@ -4,13 +4,15 @@ from __future__ import annotations +import datetime import importlib import inspect import re from functools import partial -from typing import Any, Callable, Dict, List, Mapping, Optional, Type, Union, get_args, get_origin, get_type_hints +from typing import Any, Callable, Dict, List, Mapping, MutableMapping, Optional, Tuple, Type, Union, get_args, get_origin, get_type_hints from airbyte_cdk.models import FailureType, Level +from airbyte_cdk.sources.connector_state_manager import ConnectorStateManager from airbyte_cdk.sources.declarative.async_job.job_orchestrator import AsyncJobOrchestrator from airbyte_cdk.sources.declarative.async_job.job_tracker import JobTracker from airbyte_cdk.sources.declarative.async_job.repository import AsyncJobRepository @@ -168,6 +170,12 @@ from airbyte_cdk.sources.declarative.transformations.add_fields import AddedFieldDefinition from airbyte_cdk.sources.declarative.transformations.keys_to_lower_transformation import KeysToLowerTransformation from airbyte_cdk.sources.message import InMemoryMessageRepository, LogAppenderMessageRepositoryDecorator, MessageRepository +from airbyte_cdk.sources.streams.concurrent.cursor import ConcurrentCursor, CursorField +from airbyte_cdk.sources.streams.concurrent.state_converters.datetime_stream_state_converter import ( + CustomOutputFormatConcurrentStreamStateConverter, + DateTimeStreamStateConverter, + EpochValueConcurrentStreamStateConverter, +) from airbyte_cdk.sources.streams.http.error_handlers.response_models import ResponseAction from airbyte_cdk.sources.types import Config from airbyte_cdk.sources.utils.transform import TransformConfig, TypeTransformer @@ -178,6 +186,9 @@ class ModelToComponentFactory: + + EPOCH_DATETIME_FORMAT = "%s" + def __init__( self, limit_pages_fetched_per_slice: Optional[int] = None, @@ -462,6 +473,141 @@ def create_concurrency_level(model: ConcurrencyLevelModel, config: Config, **kwa parameters={}, ) + def create_concurrent_cursor_from_datetime_based_cursor( + self, + state_manager: ConnectorStateManager, + model_type: Type[BaseModel], + component_definition: ComponentDefinition, + stream_name: str, + stream_namespace: Optional[str], + config: Config, + stream_state: MutableMapping[str, Any], + **kwargs: Any, + ) -> Tuple[ConcurrentCursor, DateTimeStreamStateConverter]: + + component_type = component_definition.get("type") + if component_definition.get("type") != model_type.__name__: + raise ValueError(f"Expected manifest component of type {model_type.__name__}, but received {component_type} instead") + + datetime_based_cursor_model = model_type.parse_obj(component_definition) + + if not isinstance(datetime_based_cursor_model, DatetimeBasedCursorModel): + raise ValueError(f"Expected {model_type.__name__} component, but received {datetime_based_cursor_model.__class__.__name__}") + + interpolated_cursor_field = InterpolatedString.create( + datetime_based_cursor_model.cursor_field, parameters=datetime_based_cursor_model.parameters or {} + ) + cursor_field = CursorField(interpolated_cursor_field.eval(config=config)) + + interpolated_partition_field_start = InterpolatedString.create( + datetime_based_cursor_model.partition_field_start or "start_time", parameters=datetime_based_cursor_model.parameters or {} + ) + interpolated_partition_field_end = InterpolatedString.create( + datetime_based_cursor_model.partition_field_end or "end_time", parameters=datetime_based_cursor_model.parameters or {} + ) + + slice_boundary_fields = ( + interpolated_partition_field_start.eval(config=config), + interpolated_partition_field_end.eval(config=config), + ) + + datetime_format = datetime_based_cursor_model.datetime_format + + cursor_granularity = ( + parse_duration(datetime_based_cursor_model.cursor_granularity) if datetime_based_cursor_model.cursor_granularity else None + ) + + lookback_window = None + interpolated_lookback_window = ( + InterpolatedString.create(datetime_based_cursor_model.lookback_window, parameters=datetime_based_cursor_model.parameters or {}) + if datetime_based_cursor_model.lookback_window + else None + ) + if interpolated_lookback_window: + evaluated_lookback_window = interpolated_lookback_window.eval(config=config) + if evaluated_lookback_window: + lookback_window = parse_duration(evaluated_lookback_window) + + connector_state_converter: DateTimeStreamStateConverter + if datetime_format == self.EPOCH_DATETIME_FORMAT: + connector_state_converter = EpochValueConcurrentStreamStateConverter(is_sequential_state=True) + else: + connector_state_converter = CustomOutputFormatConcurrentStreamStateConverter( + datetime_format=datetime_format, + is_sequential_state=True, + cursor_granularity=cursor_granularity, + # type: ignore # Having issues w/ inspection for GapType and CursorValueType as shown in existing tests. Confirmed functionality is working in practice + ) + + start_date_runtime_value: Union[InterpolatedString, str, MinMaxDatetime] + if isinstance(datetime_based_cursor_model.start_datetime, MinMaxDatetimeModel): + start_date_runtime_value = self.create_min_max_datetime(model=datetime_based_cursor_model.start_datetime, config=config) + else: + start_date_runtime_value = datetime_based_cursor_model.start_datetime + + end_date_runtime_value: Optional[Union[InterpolatedString, str, MinMaxDatetime]] + if isinstance(datetime_based_cursor_model.end_datetime, MinMaxDatetimeModel): + end_date_runtime_value = self.create_min_max_datetime(model=datetime_based_cursor_model.end_datetime, config=config) + else: + end_date_runtime_value = datetime_based_cursor_model.end_datetime + + interpolated_start_date = MinMaxDatetime.create( + interpolated_string_or_min_max_datetime=start_date_runtime_value, parameters=datetime_based_cursor_model.parameters + ) + interpolated_end_date = ( + None if not end_date_runtime_value else MinMaxDatetime.create(end_date_runtime_value, datetime_based_cursor_model.parameters) + ) + + # If datetime format is not specified then start/end datetime should inherit it from the stream slicer + if not interpolated_start_date.datetime_format: + interpolated_start_date.datetime_format = datetime_format + if interpolated_end_date and not interpolated_end_date.datetime_format: + interpolated_end_date.datetime_format = datetime_format + + start_date = interpolated_start_date.get_datetime(config=config) + end_date_provider = ( + partial(interpolated_end_date.get_datetime, config) if interpolated_end_date else connector_state_converter.get_end_provider() + ) + + if (datetime_based_cursor_model.step and not datetime_based_cursor_model.cursor_granularity) or ( + not datetime_based_cursor_model.step and datetime_based_cursor_model.cursor_granularity + ): + raise ValueError( + f"If step is defined, cursor_granularity should be as well and vice-versa. " + f"Right now, step is `{datetime_based_cursor_model.step}` and cursor_granularity is `{datetime_based_cursor_model.cursor_granularity}`" + ) + + # When step is not defined, default to a step size from the starting date to the present moment + step_length = datetime.datetime.now(tz=datetime.timezone.utc) - start_date + interpolated_step = ( + InterpolatedString.create(datetime_based_cursor_model.step, parameters=datetime_based_cursor_model.parameters or {}) + if datetime_based_cursor_model.step + else None + ) + if interpolated_step: + evaluated_step = interpolated_step.eval(config) + if evaluated_step: + step_length = parse_duration(evaluated_step) + + return ( + ConcurrentCursor( + stream_name=stream_name, + stream_namespace=stream_namespace, + stream_state=stream_state, + message_repository=self._message_repository, # type: ignore # message_repository is always instantiated with a value by factory + connector_state_manager=state_manager, + connector_state_converter=connector_state_converter, + cursor_field=cursor_field, + slice_boundary_fields=slice_boundary_fields, + start=start_date, # type: ignore # Having issues w/ inspection for GapType and CursorValueType as shown in existing tests. Confirmed functionality is working in practice + end_provider=end_date_provider, # type: ignore # Having issues w/ inspection for GapType and CursorValueType as shown in existing tests. Confirmed functionality is working in practice + lookback_window=lookback_window, + slice_range=step_length, + cursor_granularity=cursor_granularity, + ), + connector_state_converter, + ) + @staticmethod def create_constant_backoff_strategy(model: ConstantBackoffStrategyModel, config: Config, **kwargs: Any) -> ConstantBackoffStrategy: return ConstantBackoffStrategy( diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py index 6fe995bc7677..413a8bb1f632 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py @@ -11,7 +11,9 @@ ) from airbyte_cdk.sources.declarative.requesters.request_options.interpolated_request_input_provider import InterpolatedRequestInputProvider from airbyte_cdk.sources.declarative.requesters.request_options.request_options_provider import RequestOptionsProvider +from airbyte_cdk.sources.source import ExperimentalClassWarning from airbyte_cdk.sources.types import Config, StreamSlice, StreamState +from deprecated import deprecated RequestInput = Union[str, Mapping[str, str]] ValidRequestTypes = (str, list) @@ -109,3 +111,34 @@ def get_request_body_json( next_page_token: Optional[Mapping[str, Any]] = None, ) -> Mapping[str, Any]: return self._body_json_interpolator.eval_request_inputs(stream_state, stream_slice, next_page_token) + + @deprecated("This class is temporary and used to incrementally deliver low-code to concurrent", category=ExperimentalClassWarning) + def request_options_contain_stream_state(self) -> bool: + """ + Temporary helper method used as we move low-code streams to the concurrent framework. This method determines if + the InterpolatedRequestOptionsProvider has is a dependency on a non-thread safe interpolation context such as + stream_state. + """ + + return ( + self._check_if_interpolation_uses_stream_state(self.request_parameters) + or self._check_if_interpolation_uses_stream_state(self.request_headers) + or self._check_if_interpolation_uses_stream_state(self.request_body_data) + or self._check_if_interpolation_uses_stream_state(self.request_body_json) + ) + + @staticmethod + def _check_if_interpolation_uses_stream_state(request_input: Optional[Union[RequestInput, NestedMapping]]) -> bool: + if not request_input: + return False + elif isinstance(request_input, str): + return "stream_state" in request_input + else: + for key, val in request_input.items(): + # Covers the case of RequestInput in the form of a string or Mapping[str, str]. It also covers the case + # of a NestedMapping where the value is a string. + # Note: Doesn't account for nested mappings for request_body_json, but I don't see stream_state used in that way + # in our code + if "stream_state" in key or (isinstance(val, str) and "stream_state" in val): + return True + return False diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/yaml_declarative_source.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/yaml_declarative_source.py index 9632df6cf7ed..a0443b037f10 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/yaml_declarative_source.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/yaml_declarative_source.py @@ -3,23 +3,37 @@ # import pkgutil -from typing import Any +from typing import Any, List, Mapping, Optional import yaml -from airbyte_cdk.sources.declarative.manifest_declarative_source import ManifestDeclarativeSource +from airbyte_cdk.models import AirbyteStateMessage, ConfiguredAirbyteCatalog +from airbyte_cdk.sources.declarative.concurrent_declarative_source import ConcurrentDeclarativeSource from airbyte_cdk.sources.types import ConnectionDefinition -class YamlDeclarativeSource(ManifestDeclarativeSource): +class YamlDeclarativeSource(ConcurrentDeclarativeSource[List[AirbyteStateMessage]]): """Declarative source defined by a yaml file""" - def __init__(self, path_to_yaml: str, debug: bool = False) -> None: + def __init__( + self, + path_to_yaml: str, + debug: bool = False, + catalog: Optional[ConfiguredAirbyteCatalog] = None, + config: Optional[Mapping[str, Any]] = None, + state: Optional[List[AirbyteStateMessage]] = None, + ) -> None: """ :param path_to_yaml: Path to the yaml file describing the source """ self._path_to_yaml = path_to_yaml source_config = self._read_and_parse_yaml_file(path_to_yaml) - super().__init__(source_config, debug) + + super().__init__( + catalog=catalog or ConfiguredAirbyteCatalog(streams=[]), + config=config or {}, + state=state or [], + source_config=source_config, + ) def _read_and_parse_yaml_file(self, path_to_yaml_file: str) -> ConnectionDefinition: package = self.__class__.__module__.split(".")[0] diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/adapters.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/adapters.py index df1ec1b62aff..5fc775a1a1e1 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/adapters.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/adapters.py @@ -24,6 +24,7 @@ from airbyte_cdk.sources.streams.concurrent.partitions.partition import Partition from airbyte_cdk.sources.streams.concurrent.partitions.partition_generator import PartitionGenerator from airbyte_cdk.sources.streams.concurrent.partitions.record import Record +from airbyte_cdk.sources.streams.concurrent.state_converters.datetime_stream_state_converter import DateTimeStreamStateConverter from airbyte_cdk.sources.streams.core import StreamData from airbyte_cdk.sources.types import StreamSlice from airbyte_cdk.sources.utils.schema_helpers import InternalConfig @@ -203,6 +204,7 @@ class SliceEncoder(json.JSONEncoder): def default(self, obj: Any) -> Any: if hasattr(obj, "__json_serializable__"): return obj.__json_serializable__() + # Let the base class default method raise the TypeError return super().default(obj) @@ -341,12 +343,17 @@ class CursorPartitionGenerator(PartitionGenerator): across partitions. Each partition represents a subset of the stream's data and is determined by the cursor's state. """ + _START_BOUNDARY = 0 + _END_BOUNDARY = 1 + def __init__( self, stream: Stream, message_repository: MessageRepository, cursor: Cursor, + connector_state_converter: DateTimeStreamStateConverter, cursor_field: Optional[List[str]], + slice_boundary_fields: Optional[Tuple[str, str]], ): """ Initialize the CursorPartitionGenerator with a stream, sync mode, and cursor. @@ -362,6 +369,8 @@ def __init__( self._cursor = cursor self._cursor_field = cursor_field self._state = self._cursor.state + self._slice_boundary_fields = slice_boundary_fields + self._connector_state_converter = connector_state_converter def generate(self) -> Iterable[Partition]: """ @@ -372,8 +381,18 @@ def generate(self) -> Iterable[Partition]: :return: An iterable of StreamPartition objects. """ + + start_boundary = self._slice_boundary_fields[self._START_BOUNDARY] if self._slice_boundary_fields else "start" + end_boundary = self._slice_boundary_fields[self._END_BOUNDARY] if self._slice_boundary_fields else "end" + for slice_start, slice_end in self._cursor.generate_slices(): - stream_slice = StreamSlice(partition={}, cursor_slice={"start": slice_start, "end": slice_end}) + stream_slice = StreamSlice( + partition={}, + cursor_slice={ + start_boundary: self._connector_state_converter.output_format(slice_start), + end_boundary: self._connector_state_converter.output_format(slice_end), + }, + ) yield StreamPartition( self._stream, @@ -386,7 +405,7 @@ def generate(self) -> Iterable[Partition]: ) -@deprecated("This class is experimental. Use at your own risk.", category=ExperimentalClassWarning) +@deprecated("Availability strategy has been soft deprecated. Do not use. Class is subject to removal", category=ExperimentalClassWarning) class AvailabilityStrategyFacade(AvailabilityStrategy): def __init__(self, abstract_availability_strategy: AbstractAvailabilityStrategy): self._abstract_availability_strategy = abstract_availability_strategy diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/availability_strategy.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/availability_strategy.py index a97b70009001..098b24cef17d 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/availability_strategy.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/availability_strategy.py @@ -67,6 +67,7 @@ def check_availability(self, logger: logging.Logger) -> StreamAvailability: """ +@deprecated("This class is experimental. Use at your own risk.", category=ExperimentalClassWarning) class AlwaysAvailableAvailabilityStrategy(AbstractAvailabilityStrategy): """ An availability strategy that always indicates a stream is available. diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/cursor.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/cursor.py index 523e8af7deaa..6864d563666a 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/cursor.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/cursor.py @@ -160,7 +160,7 @@ def __init__( self._connector_state_manager = connector_state_manager self._cursor_field = cursor_field # To see some example where the slice boundaries might not be defined, check https://github.com/airbytehq/airbyte/blob/1ce84d6396e446e1ac2377362446e3fb94509461/airbyte-integrations/connectors/source-stripe/source_stripe/streams.py#L363-L379 - self._slice_boundary_fields = slice_boundary_fields if slice_boundary_fields else tuple() + self._slice_boundary_fields = slice_boundary_fields self._start = start self._end_provider = end_provider self.start, self._concurrent_state = self._get_concurrent_state(stream_state) @@ -174,6 +174,14 @@ def __init__( def state(self) -> MutableMapping[str, Any]: return self._concurrent_state + @property + def cursor_field(self) -> CursorField: + return self._cursor_field + + @property + def slice_boundary_fields(self) -> Optional[Tuple[str, str]]: + return self._slice_boundary_fields + def _get_concurrent_state(self, state: MutableMapping[str, Any]) -> Tuple[CursorValueType, MutableMapping[str, Any]]: if self._connector_state_converter.is_state_message_compatible(state): return self._start or self._connector_state_converter.zero_value, self._connector_state_converter.deserialize(state) @@ -213,7 +221,7 @@ def _add_slice_to_state(self, partition: Partition) -> None: self._connector_state_converter.END_KEY: self._extract_from_slice( partition, self._slice_boundary_fields[self._END_BOUNDARY] ), - "most_recent_cursor_value": most_recent_cursor_value, + self._connector_state_converter.MOST_RECENT_RECORD_KEY: most_recent_cursor_value, } ) elif most_recent_cursor_value: @@ -237,7 +245,7 @@ def _add_slice_to_state(self, partition: Partition) -> None: { self._connector_state_converter.START_KEY: self.start, self._connector_state_converter.END_KEY: most_recent_cursor_value, - "most_recent_cursor_value": most_recent_cursor_value, + self._connector_state_converter.MOST_RECENT_RECORD_KEY: most_recent_cursor_value, } ) @@ -284,22 +292,36 @@ def generate_slices(self) -> Iterable[Tuple[CursorValueType, CursorValueType]]: self._merge_partitions() if self._start is not None and self._is_start_before_first_slice(): - yield from self._split_per_slice_range(self._start, self.state["slices"][0][self._connector_state_converter.START_KEY]) + yield from self._split_per_slice_range( + self._start, + self.state["slices"][0][self._connector_state_converter.START_KEY], + False, + ) if len(self.state["slices"]) == 1: yield from self._split_per_slice_range( self._calculate_lower_boundary_of_last_slice(self.state["slices"][0][self._connector_state_converter.END_KEY]), self._end_provider(), + True, ) elif len(self.state["slices"]) > 1: for i in range(len(self.state["slices"]) - 1): - yield from self._split_per_slice_range( - self.state["slices"][i][self._connector_state_converter.END_KEY], - self.state["slices"][i + 1][self._connector_state_converter.START_KEY], - ) + if self._cursor_granularity: + yield from self._split_per_slice_range( + self.state["slices"][i][self._connector_state_converter.END_KEY] + self._cursor_granularity, + self.state["slices"][i + 1][self._connector_state_converter.START_KEY], + False, + ) + else: + yield from self._split_per_slice_range( + self.state["slices"][i][self._connector_state_converter.END_KEY], + self.state["slices"][i + 1][self._connector_state_converter.START_KEY], + False, + ) yield from self._split_per_slice_range( self._calculate_lower_boundary_of_last_slice(self.state["slices"][-1][self._connector_state_converter.END_KEY]), self._end_provider(), + True, ) else: raise ValueError("Expected at least one slice") @@ -312,7 +334,9 @@ def _calculate_lower_boundary_of_last_slice(self, lower_boundary: CursorValueTyp return lower_boundary - self._lookback_window return lower_boundary - def _split_per_slice_range(self, lower: CursorValueType, upper: CursorValueType) -> Iterable[Tuple[CursorValueType, CursorValueType]]: + def _split_per_slice_range( + self, lower: CursorValueType, upper: CursorValueType, upper_is_end: bool + ) -> Iterable[Tuple[CursorValueType, CursorValueType]]: if lower >= upper: return @@ -321,13 +345,17 @@ def _split_per_slice_range(self, lower: CursorValueType, upper: CursorValueType) lower = max(lower, self._start) if self._start else lower if not self._slice_range or lower + self._slice_range >= upper: - yield lower, upper + if self._cursor_granularity and not upper_is_end: + yield lower, upper - self._cursor_granularity + else: + yield lower, upper else: stop_processing = False current_lower_boundary = lower while not stop_processing: current_upper_boundary = min(current_lower_boundary + self._slice_range, upper) - if self._cursor_granularity: + has_reached_upper_boundary = current_upper_boundary >= upper + if self._cursor_granularity and (not upper_is_end or not has_reached_upper_boundary): yield current_lower_boundary, current_upper_boundary - self._cursor_granularity else: yield current_lower_boundary, current_upper_boundary diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/default_stream.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/default_stream.py index 6cf4a694118e..16b1c2777a6b 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/default_stream.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/default_stream.py @@ -67,6 +67,7 @@ def as_airbyte_stream(self) -> AirbyteStream: if self._cursor_field: stream.source_defined_cursor = True + stream.is_resumable = True stream.supported_sync_modes.append(SyncMode.incremental) stream.default_cursor_field = [self._cursor_field] diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py index 6211f886c7cf..e80def360f27 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py @@ -17,6 +17,7 @@ class ConcurrencyCompatibleStateType(Enum): class AbstractStreamStateConverter(ABC): START_KEY = "start" END_KEY = "end" + MOST_RECENT_RECORD_KEY = "most_recent_cursor_value" @abstractmethod def _from_state_message(self, value: Any) -> Any: @@ -71,12 +72,13 @@ def serialize(self, state: MutableMapping[str, Any], state_type: ConcurrencyComp """ serialized_slices = [] for stream_slice in state.get("slices", []): - serialized_slices.append( - { - self.START_KEY: self._to_state_message(stream_slice[self.START_KEY]), - self.END_KEY: self._to_state_message(stream_slice[self.END_KEY]), - } - ) + serialized_slice = { + self.START_KEY: self._to_state_message(stream_slice[self.START_KEY]), + self.END_KEY: self._to_state_message(stream_slice[self.END_KEY]), + } + if stream_slice.get(self.MOST_RECENT_RECORD_KEY): + serialized_slice[self.MOST_RECENT_RECORD_KEY] = self._to_state_message(stream_slice[self.MOST_RECENT_RECORD_KEY]) + serialized_slices.append(serialized_slice) return {"slices": serialized_slices, "state_type": state_type.value} @staticmethod diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py index 6e50d6b2bcf7..398093204e7c 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py @@ -157,3 +157,17 @@ def parse_timestamp(self, timestamp: str) -> datetime: if not isinstance(dt_object, DateTime): raise ValueError(f"DateTime object was expected but got {type(dt_object)} from pendulum.parse({timestamp})") return dt_object # type: ignore # we are manually type checking because pendulum.parse may return different types + + +class CustomOutputFormatConcurrentStreamStateConverter(IsoMillisConcurrentStreamStateConverter): + """ + Datetime State converter that emits state according to the supplied datetime format. The converter supports reading + incoming state in any valid datetime format via Pendulum. + """ + + def __init__(self, datetime_format: str, is_sequential_state: bool = True, cursor_granularity: Optional[timedelta] = None): + super().__init__(is_sequential_state=is_sequential_state, cursor_granularity=cursor_granularity) + self._datetime_format = datetime_format + + def output_format(self, timestamp: datetime) -> str: + return timestamp.strftime(self._datetime_format) diff --git a/airbyte-cdk/python/airbyte_cdk/test/mock_http/matcher.py b/airbyte-cdk/python/airbyte_cdk/test/mock_http/matcher.py index 441a765b7321..d07cec3ec8b2 100644 --- a/airbyte-cdk/python/airbyte_cdk/test/mock_http/matcher.py +++ b/airbyte-cdk/python/airbyte_cdk/test/mock_http/matcher.py @@ -1,4 +1,5 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. +from typing import Any from airbyte_cdk.test.mock_http.request import HttpRequest @@ -33,3 +34,8 @@ def __str__(self) -> str: f"minimum_number_of_expected_match={self._minimum_number_of_expected_match}, " f"actual_number_of_matches={self._actual_number_of_matches})" ) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, HttpRequestMatcher): + return self._request_to_match == other._request_to_match + return False diff --git a/airbyte-cdk/python/airbyte_cdk/test/mock_http/mocker.py b/airbyte-cdk/python/airbyte_cdk/test/mock_http/mocker.py index 90d4745372b3..5287c7451d2d 100644 --- a/airbyte-cdk/python/airbyte_cdk/test/mock_http/mocker.py +++ b/airbyte-cdk/python/airbyte_cdk/test/mock_http/mocker.py @@ -57,6 +57,8 @@ def _mock_request_method( responses = [responses] matcher = HttpRequestMatcher(request, len(responses)) + if matcher in self._matchers: + raise ValueError(f"Request {matcher.request} already mocked") self._matchers.append(matcher) getattr(self._mocker, method)( diff --git a/airbyte-cdk/python/airbyte_cdk/test/mock_http/request.py b/airbyte-cdk/python/airbyte_cdk/test/mock_http/request.py index a2b6bdb9430a..756be23edd06 100644 --- a/airbyte-cdk/python/airbyte_cdk/test/mock_http/request.py +++ b/airbyte-cdk/python/airbyte_cdk/test/mock_http/request.py @@ -85,3 +85,13 @@ def __str__(self) -> str: def __repr__(self) -> str: return f"HttpRequest(request={self._parsed_url}, headers={self._headers}, body={self._body!r})" + + def __eq__(self, other: Any) -> bool: + if isinstance(other, HttpRequest): + return ( + self._parsed_url == other._parsed_url + and self._query_params == other._query_params + and self._headers == other._headers + and self._body == other._body + ) + return False diff --git a/airbyte-cdk/python/cdk-migrations.md b/airbyte-cdk/python/cdk-migrations.md index 62685f78093a..d94726263ff9 100644 --- a/airbyte-cdk/python/cdk-migrations.md +++ b/airbyte-cdk/python/cdk-migrations.md @@ -1,5 +1,104 @@ # CDK Migration Guide +## Upgrading to 6.x.x + +Version 6.x.x of the CDK introduces concurrent processing of low-code incremental streams. This is breaking because non-manifest only connectors must update their self-managed `run.py` and `source.py` files. This section is intended to clarify how to upgrade a low-code connector to use the Concurrent CDK to sync incremental streams. + +> [!NOTE] +> This version introduces parallel processing of only incremental streams. +> It does not include the parallel processing of substreams that rely on a parent stream +> It also does not include processing of full-refresh streams in parallel. + +Low-code incremental streams that match any of the following criteria are not supported by concurrent as of this version: +- Uses a custom implementation of the `DatetimeBasedCursor` component +- The `DatetimeBasedCursor` defines a `step` which will partition a stream's request into time intervals AND a + `AddedField` / `HttpRequester` / `RecordFilter` that relies on interpolation of the `stream_state` value. See below + for the complete list + +In order to enable concurrency for a low-code connector, the following changes must be made: +- In the connector's `source.py`, change the method signature to accept catalog, config, and state parameters. Change the invocation of `super()` to pass in those new parameters + +```python3 +class SourceName(YamlDeclarativeSource): + def __init__(self, catalog: Optional[ConfiguredAirbyteCatalog], config: Optional[Mapping[str, Any]], state: TState, **kwargs): + super().__init__(catalog=catalog, config=config, state=state, **{"path_to_yaml": "manifest.yaml"}) +``` +- In the connector's `run.py`, update it to pass variables + +```python3 +def _get_source(args: List[str]): + catalog_path = AirbyteEntrypoint.extract_catalog(args) + config_path = AirbyteEntrypoint.extract_config(args) + state_path = AirbyteEntrypoint.extract_state(args) + try: + return SourceName( + SourceName.read_catalog(catalog_path) if catalog_path else None, + SourceName.read_config(config_path) if config_path else None, + SourceName.read_state(state_path) if state_path else None, + ) + except Exception as error: + print( + orjson.dumps( + AirbyteMessageSerializer.dump( + AirbyteMessage( + type=Type.TRACE, + trace=AirbyteTraceMessage( + type=TraceType.ERROR, + emitted_at=int(datetime.now().timestamp() * 1000), + error=AirbyteErrorTraceMessage( + message=f"Error starting the sync. This could be due to an invalid configuration or catalog. Please contact Support for assistance. Error: {error}", + stack_trace=traceback.format_exc(), + ), + ), + ) + ) + ).decode() + ) + return None + + +def run(): + _args = sys.argv[1:] + source = _get_source(_args) + if source: + launch(source, _args) +``` + +- Add the `ConcurrencyLevel` component to the connector's `manifest.yaml` file + +```yaml +concurrency_level: + type: ConcurrencyLevel + default_concurrency: "{{ config['num_workers'] or 10 }}" + max_concurrency: 20 +``` + +### Connectors that have streams that cannot be processed concurrently + +Connectors that have streams that use `stream_state` during interpolation and must be run synchronously until they are fixed or updated: +- Http Requester + - `source-insightly`: Uses an DatetimeBasedCursor with a step interval and the HttpRequester has request_parameters relying on `stream_state`. This should be replaced by `step_interval` + - `source-intercom`: Uses a custom `incremental_sync` component and `stream_state` used as part of the HttpRequester request_body_json. However, because this processed on a single slice, `stream_interval` can be used +- Record Filter + - `source-chargebee`: Uses a custom `incremental_sync` component and `stream_state` in the RecordFilter condition. However, because this processed on a single slice, `stream_interval` can be used + - `source-intercom`: Uses a custom `incremental_sync` component and `stream_state` used as part of the RecordFilter condition. However, because this processed on a single slice, `stream_interval` can be used + - `source-railz`: Uses a custom `incremental_sync` component and `stream_state` used as part of the RecordFilter condition. This also uses multiple one month time intervals and is not currently compatible for concurrent + - `source-tiktok-marketing`: Contains DatetimeBasedCursor with a step interval and relies on a CustomRecordFilter with a condition relying on `stream_state`. This should be replaced by `stream_interval` +- `AddFields`: No connectors use `stream_state` when performing an additive transformation for a record + +To enable concurrency on these streams, `stream_state` should be removed from the interpolated value and replaced +by a thread safe interpolation context like `stream_interval` or `stream_partition`. + +### Upgrading manifest-only sources to process incremental streams concurrently + +All manifest-only sources are run using the `source-declarative-manifest` which serves as the base image with the common code and flows for connectors that only define a `manifest.yaml` file. + +Within this package, to enable concurrent processing: +- Modify `airbyte-cdk` package in `pyproject.toml` to the current version +- In `run.py`, parse all entrypoint arguments into the respective config, catalog, and state objects +- In `run.py`, modify the flow that instantiates a `ManifestDeclarativeSource` from the `__injected_declarative_manifest` to instantiate a `ConcurrentDeclarativeSource` +- In `run.py` modify the `SourceLocalYaml` class to accept config, catalog, and state. And use that in the `YamlDeclarativeSource.__init__`. This should look similar to the migration of sources that are not manifest-only + ## Upgrading to 5.0.0 Version 5.0.0 of the CDK updates the `airbyte_cdk.models` dependency to replace Pydantic v2 models with Python `dataclasses`. It also diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/incremental/test_datetime_based_cursor.py b/airbyte-cdk/python/unit_tests/sources/declarative/incremental/test_datetime_based_cursor.py index 33bd6786c152..5b89e04fe640 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/incremental/test_datetime_based_cursor.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/incremental/test_datetime_based_cursor.py @@ -247,7 +247,7 @@ def mock_datetime_now(monkeypatch): "test_with_lookback_window_from_start_date", NO_STATE, MinMaxDatetime(datetime="2021-01-05", datetime_format="%Y-%m-%d", parameters={}), - MinMaxDatetime(datetime="2021-01-05", datetime_format="%Y-%m-%d", parameters={}), + MinMaxDatetime(datetime="2021-01-08", datetime_format="%Y-%m-%d", parameters={}), "P1D", cursor_field, "P3D", @@ -255,10 +255,10 @@ def mock_datetime_now(monkeypatch): cursor_granularity, None, [ - {"start_time": "2021-01-02T00:00:00.000000+0000", "end_time": "2021-01-02T23:59:59.999999+0000"}, - {"start_time": "2021-01-03T00:00:00.000000+0000", "end_time": "2021-01-03T23:59:59.999999+0000"}, - {"start_time": "2021-01-04T00:00:00.000000+0000", "end_time": "2021-01-04T23:59:59.999999+0000"}, - {"start_time": "2021-01-05T00:00:00.000000+0000", "end_time": "2021-01-05T00:00:00.000000+0000"}, + {"start_time": "2021-01-05T00:00:00.000000+0000", "end_time": "2021-01-05T23:59:59.999999+0000"}, + {"start_time": "2021-01-06T00:00:00.000000+0000", "end_time": "2021-01-06T23:59:59.999999+0000"}, + {"start_time": "2021-01-07T00:00:00.000000+0000", "end_time": "2021-01-07T23:59:59.999999+0000"}, + {"start_time": "2021-01-08T00:00:00.000000+0000", "end_time": "2021-01-08T00:00:00.000000+0000"}, ], ), ( diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py b/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py index 9b3789050287..84083a0c9d44 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py @@ -7,9 +7,11 @@ from typing import Any, Mapping import freezegun +import pendulum import pytest from airbyte_cdk import AirbyteTracedException from airbyte_cdk.models import FailureType, Level +from airbyte_cdk.sources.connector_state_manager import ConnectorStateManager from airbyte_cdk.sources.declarative.auth import DeclarativeOauth2Authenticator, JwtAuthenticator from airbyte_cdk.sources.declarative.auth.token import ( ApiKeyAuthenticator, @@ -92,6 +94,10 @@ from airbyte_cdk.sources.declarative.transformations import AddFields, RemoveFields from airbyte_cdk.sources.declarative.transformations.add_fields import AddedFieldDefinition from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource +from airbyte_cdk.sources.streams.concurrent.cursor import ConcurrentCursor +from airbyte_cdk.sources.streams.concurrent.state_converters.datetime_stream_state_converter import ( + CustomOutputFormatConcurrentStreamStateConverter, +) from airbyte_cdk.sources.streams.http.error_handlers.response_models import ResponseAction from airbyte_cdk.sources.streams.http.requests_native_auth.oauth import SingleUseRefreshTokenOauth2Authenticator from unit_tests.sources.declarative.parsers.testing_components import TestingCustomSubstreamPartitionRouter, TestingSomeComponent @@ -2549,3 +2555,238 @@ def test_use_default_request_options_provider(): assert isinstance(retriever.stream_slicer, SinglePartitionRouter) assert isinstance(retriever.request_option_provider, DefaultRequestOptionsProvider) + + +@pytest.mark.parametrize( + "stream_state,expected_start", + [ + pytest.param({}, "2024-08-01T00:00:00.000000Z", id="test_create_concurrent_cursor_without_state"), + pytest.param({"updated_at": "2024-10-01T00:00:00.000000Z"}, "2024-10-01T00:00:00.000000Z", id="test_create_concurrent_cursor_with_state"), + ] +) +def test_create_concurrent_cursor_from_datetime_based_cursor_all_fields(stream_state, expected_start): + config = { + "start_time": "2024-08-01T00:00:00.000000Z", + "end_time": "2024-10-15T00:00:00.000000Z" + } + + expected_cursor_field = "updated_at" + expected_start_boundary = "custom_start" + expected_end_boundary = "custom_end" + expected_step = datetime.timedelta(days=10) + expected_lookback_window = datetime.timedelta(days=3) + expected_datetime_format = "%Y-%m-%dT%H:%M:%S.%fZ" + expected_cursor_granularity = datetime.timedelta(microseconds=1) + + expected_start = pendulum.parse(expected_start) + expected_end = datetime.datetime(year=2024, month=10, day=15, second=0, microsecond=0, tzinfo=datetime.timezone.utc) + if stream_state: + # Using incoming state, the resulting already completed partition is the start_time up to the last successful + # partition indicated by the legacy sequential state + expected_concurrent_state = { + "slices": [ + { + "start": pendulum.parse(config["start_time"]), + "end": pendulum.parse(stream_state["updated_at"]), + }, + ], + "state_type": "date-range", + "legacy": {"updated_at": "2024-10-01T00:00:00.000000Z"}, + } + else: + expected_concurrent_state = { + "slices": [ + { + "start": pendulum.parse(config["start_time"]), + "end": pendulum.parse(config["start_time"]), + }, + ], + "state_type": "date-range", + "legacy": {}, + } + + connector_state_manager = ConnectorStateManager() + + connector_builder_factory = ModelToComponentFactory(emit_connector_builder_messages=True) + + stream_name = "test" + + cursor_component_definition = { + "type": "DatetimeBasedCursor", + "cursor_field": "updated_at", + "datetime_format": "%Y-%m-%dT%H:%M:%S.%fZ", + "start_datetime": "{{ config['start_time'] }}", + "end_datetime": "{{ config['end_time'] }}", + "partition_field_start": "custom_start", + "partition_field_end": "custom_end", + "step": "P10D", + "cursor_granularity": "PT0.000001S", + "lookback_window": "P3D" + } + + concurrent_cursor, stream_state_converter = connector_builder_factory.create_concurrent_cursor_from_datetime_based_cursor( + state_manager=connector_state_manager, + model_type=DatetimeBasedCursorModel, + component_definition=cursor_component_definition, + stream_name=stream_name, + stream_namespace=None, + config=config, + stream_state=stream_state, + ) + + assert concurrent_cursor._stream_name == stream_name + assert not concurrent_cursor._stream_namespace + assert concurrent_cursor._connector_state_manager == connector_state_manager + assert concurrent_cursor.cursor_field.cursor_field_key == expected_cursor_field + assert concurrent_cursor._slice_range == expected_step + assert concurrent_cursor._lookback_window == expected_lookback_window + + assert concurrent_cursor.slice_boundary_fields[ConcurrentCursor._START_BOUNDARY] == expected_start_boundary + assert concurrent_cursor.slice_boundary_fields[ConcurrentCursor._END_BOUNDARY] == expected_end_boundary + + assert concurrent_cursor.start == expected_start + assert concurrent_cursor._end_provider() == expected_end + assert concurrent_cursor._concurrent_state == expected_concurrent_state + + assert isinstance(stream_state_converter, CustomOutputFormatConcurrentStreamStateConverter) + assert stream_state_converter._datetime_format == expected_datetime_format + assert stream_state_converter._is_sequential_state + assert stream_state_converter._cursor_granularity == expected_cursor_granularity + + +@pytest.mark.parametrize( + "cursor_fields_to_replace,assertion_field,expected_value,expected_error", + [ + pytest.param({"partition_field_start": None}, "slice_boundary_fields", ('start_time', 'custom_end'), None, id="test_no_partition_field_start"), + pytest.param({"partition_field_end": None}, "slice_boundary_fields", ('custom_start', 'end_time'), None, id="test_no_partition_field_end"), + pytest.param({"lookback_window": None}, "_lookback_window", None, None, id="test_no_lookback_window"), + pytest.param({"lookback_window": "{{ config.does_not_exist }}"}, "_lookback_window", None, None, id="test_no_lookback_window"), + pytest.param({"step": None}, None, None, ValueError, id="test_no_step_raises_exception"), + pytest.param({"cursor_granularity": None}, None, None, ValueError, id="test_no_cursor_granularity_exception"), + pytest.param({ + "end_time": None, + "cursor_granularity": None, + "step": None, + }, "_slice_range", datetime.timedelta(days=61), None, id="test_uses_a_single_time_interval_when_no_specified_step_and_granularity"), + ] +) +@freezegun.freeze_time("2024-10-01T00:00:00") +def test_create_concurrent_cursor_from_datetime_based_cursor(cursor_fields_to_replace, assertion_field, expected_value, expected_error): + connector_state_manager = ConnectorStateManager() + + config = { + "start_time": "2024-08-01T00:00:00.000000Z", + "end_time": "2024-09-01T00:00:00.000000Z" + } + + stream_name = "test" + + cursor_component_definition = { + "type": "DatetimeBasedCursor", + "cursor_field": "updated_at", + "datetime_format": "%Y-%m-%dT%H:%M:%S.%fZ", + "start_datetime": "{{ config['start_time'] }}", + "end_datetime": "{{ config['end_time'] }}", + "partition_field_start": "custom_start", + "partition_field_end": "custom_end", + "step": "P10D", + "cursor_granularity": "PT0.000001S", + "lookback_window": "P3D", + } + + for cursor_field_to_replace, value in cursor_fields_to_replace.items(): + if value is None: + cursor_component_definition[cursor_field_to_replace] = value + else: + del cursor_component_definition[cursor_field_to_replace] + + connector_builder_factory = ModelToComponentFactory(emit_connector_builder_messages=True) + + if expected_error: + with pytest.raises(expected_error): + connector_builder_factory.create_concurrent_cursor_from_datetime_based_cursor( + state_manager=connector_state_manager, + model_type=DatetimeBasedCursorModel, + component_definition=cursor_component_definition, + stream_name=stream_name, + stream_namespace=None, + config=config, + stream_state={}, + ) + else: + concurrent_cursor, stream_state_converter = connector_builder_factory.create_concurrent_cursor_from_datetime_based_cursor( + state_manager=connector_state_manager, + model_type=DatetimeBasedCursorModel, + component_definition=cursor_component_definition, + stream_name=stream_name, + stream_namespace=None, + config=config, + stream_state={}, + ) + + assert getattr(concurrent_cursor, assertion_field) == expected_value + + +def test_create_concurrent_cursor_uses_min_max_datetime_format_if_defined(): + """ + Validates a special case for when the start_time.datetime_format and end_time.datetime_format are defined, the date to + string parser should not inherit from the parent DatetimeBasedCursor.datetime_format. The parent which uses an incorrect + precision would fail if it were used by the dependent children. + """ + expected_start = datetime.datetime(year=2024, month=8, day=1, second=0, microsecond=0, tzinfo=datetime.timezone.utc) + expected_end = datetime.datetime(year=2024, month=9, day=1, second=0, microsecond=0, tzinfo=datetime.timezone.utc) + + connector_state_manager = ConnectorStateManager() + + config = { + "start_time": "2024-08-01T00:00:00Z", + "end_time": "2024-09-01T00:00:00Z" + } + + connector_builder_factory = ModelToComponentFactory(emit_connector_builder_messages=True) + + stream_name = "test" + + cursor_component_definition = { + "type": "DatetimeBasedCursor", + "cursor_field": "updated_at", + "datetime_format": "%Y-%m-%dT%H:%MZ", + "start_datetime": { + "type": "MinMaxDatetime", + "datetime": "{{ config.start_time }}", + "datetime_format": "%Y-%m-%dT%H:%M:%SZ" + }, + "end_datetime": { + "type": "MinMaxDatetime", + "datetime": "{{ config.end_time }}", + "datetime_format": "%Y-%m-%dT%H:%M:%SZ" + }, + "partition_field_start": "custom_start", + "partition_field_end": "custom_end", + "step": "P10D", + "cursor_granularity": "PT0.000001S", + "lookback_window": "P3D" + } + + concurrent_cursor, stream_state_converter = connector_builder_factory.create_concurrent_cursor_from_datetime_based_cursor( + state_manager=connector_state_manager, + model_type=DatetimeBasedCursorModel, + component_definition=cursor_component_definition, + stream_name=stream_name, + stream_namespace=None, + config=config, + stream_state={}, + ) + + assert concurrent_cursor.start == expected_start + assert concurrent_cursor._end_provider() == expected_end + assert concurrent_cursor._concurrent_state == { + "slices": [ + { + "start": expected_start, + "end": expected_start, + }, + ], + "state_type": "date-range", + "legacy": {}, + } diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/requesters/request_options/test_interpolated_request_options_provider.py b/airbyte-cdk/python/unit_tests/sources/declarative/requesters/request_options/test_interpolated_request_options_provider.py index 19759832452b..b8239d43e0a1 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/requesters/request_options/test_interpolated_request_options_provider.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/requesters/request_options/test_interpolated_request_options_provider.py @@ -99,3 +99,33 @@ def test_error_on_create_for_both_request_json_and_data(): request_data = "interpolate_me=5&invalid={{ config['option'] }}" with pytest.raises(ValueError): InterpolatedRequestOptionsProvider(config=config, request_body_json=request_json, request_body_data=request_data, parameters={}) + + +@pytest.mark.parametrize( + "request_option_type,request_input,contains_state", + [ + pytest.param("request_parameter", {"start": "{{ stream_state.get('start_date') }}"}, True, id="test_request_parameter_has_state"), + pytest.param("request_parameter", {"start": "{{ slice_interval.get('start_date') }}"}, False, id="test_request_parameter_no_state"), + pytest.param("request_header", {"start": "{{ stream_state.get('start_date') }}"}, True, id="test_request_header_has_state"), + pytest.param("request_header", {"start": "{{ slice_interval.get('start_date') }}"}, False, id="test_request_header_no_state"), + pytest.param("request_body_data", "[{'query': {'type': 'timestamp', 'value': stream_state.get('start_date')}}]", True, id="test_request_body_data_has_state"), + pytest.param("request_body_data", "[{'query': {'type': 'timestamp', 'value': stream_interval.get('start_date')}}]", False, id="test_request_body_data_no_state"), + pytest.param("request_body_json", {"start": "{{ stream_state.get('start_date') }}"}, True, id="test_request_body_json_has_state"), + pytest.param("request_body_json", {"start": "{{ slice_interval.get('start_date') }}"}, False, id="test_request_request_body_json_no_state"), + ] +) +def test_request_options_contain_stream_state(request_option_type, request_input, contains_state): + request_options_provider: InterpolatedRequestOptionsProvider + match request_option_type: + case "request_parameter": + request_options_provider = InterpolatedRequestOptionsProvider(config=config, request_parameters=request_input, parameters={}) + case "request_header": + request_options_provider = InterpolatedRequestOptionsProvider(config=config, request_headers=request_input, parameters={}) + case "request_body_data": + request_options_provider = InterpolatedRequestOptionsProvider(config=config, request_body_data=request_input, parameters={}) + case "request_body_json": + request_options_provider = InterpolatedRequestOptionsProvider(config=config, request_body_json=request_input, parameters={}) + case _: + request_options_provider = InterpolatedRequestOptionsProvider(config=config, parameters={}) + + assert request_options_provider.request_options_contain_stream_state() == contains_state diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/requesters/test_http_job_repository.py b/airbyte-cdk/python/unit_tests/sources/declarative/requesters/test_http_job_repository.py index 90c1f9854baf..90768d8bbb60 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/requesters/test_http_job_repository.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/requesters/test_http_job_repository.py @@ -168,12 +168,17 @@ def test_given_unknown_status_when_update_jobs_status_then_raise_error(self) -> self._repository.update_jobs_status([job]) def test_given_multiple_jobs_when_update_jobs_status_then_all_the_jobs_are_updated(self) -> None: - self._mock_create_response(_A_JOB_ID) + self._http_mocker.post( + HttpRequest(url=_EXPORT_URL), + [ + HttpResponse(body=json.dumps({"id": _A_JOB_ID})), + HttpResponse(body=json.dumps({"id": _ANOTHER_JOB_ID})), + ], + ) self._http_mocker.get( HttpRequest(url=f"{_EXPORT_URL}/{_A_JOB_ID}"), HttpResponse(body=json.dumps({"id": _A_JOB_ID, "status": "ready"})), ) - self._mock_create_response(_ANOTHER_JOB_ID) self._http_mocker.get( HttpRequest(url=f"{_EXPORT_URL}/{_ANOTHER_JOB_ID}"), HttpResponse(body=json.dumps({"id": _A_JOB_ID, "status": "ready"})), diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/test_concurrent_declarative_source.py b/airbyte-cdk/python/unit_tests/sources/declarative/test_concurrent_declarative_source.py new file mode 100644 index 000000000000..f5718bcb351f --- /dev/null +++ b/airbyte-cdk/python/unit_tests/sources/declarative/test_concurrent_declarative_source.py @@ -0,0 +1,1125 @@ +# +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. +# + +import copy +import json +from datetime import datetime, timedelta, timezone +from typing import Any, Dict, Iterable, List, Mapping, Optional, Tuple, Union + +import freezegun +import isodate +import pendulum +from airbyte_cdk.models import ( + AirbyteMessage, + AirbyteRecordMessage, + AirbyteStateBlob, + AirbyteStateMessage, + AirbyteStateType, + AirbyteStream, + AirbyteStreamState, + ConfiguredAirbyteCatalog, + ConfiguredAirbyteStream, + DestinationSyncMode, + FailureType, + Status, + StreamDescriptor, + SyncMode, +) +from airbyte_cdk.sources.declarative.concurrent_declarative_source import ConcurrentDeclarativeSource +from airbyte_cdk.sources.declarative.declarative_stream import DeclarativeStream +from airbyte_cdk.sources.streams import Stream +from airbyte_cdk.sources.streams.checkpoint import Cursor +from airbyte_cdk.sources.streams.concurrent.cursor import ConcurrentCursor +from airbyte_cdk.sources.streams.concurrent.default_stream import DefaultStream +from airbyte_cdk.sources.streams.core import StreamData +from airbyte_cdk.sources.types import Record, StreamSlice +from airbyte_cdk.test.mock_http import HttpMocker, HttpRequest, HttpResponse +from airbyte_cdk.utils import AirbyteTracedException +from deprecated.classic import deprecated + +_CONFIG = { + "start_date": "2024-07-01T00:00:00.000Z" +} + +_CATALOG = ConfiguredAirbyteCatalog( + streams=[ + ConfiguredAirbyteStream( + stream=AirbyteStream(name="party_members", json_schema={}, supported_sync_modes=[SyncMode.incremental]), + sync_mode=SyncMode.incremental, + destination_sync_mode=DestinationSyncMode.append, + ), + ConfiguredAirbyteStream( + stream=AirbyteStream(name="palaces", json_schema={}, supported_sync_modes=[SyncMode.full_refresh]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ), + ConfiguredAirbyteStream( + stream=AirbyteStream(name="locations", json_schema={}, supported_sync_modes=[SyncMode.incremental]), + sync_mode=SyncMode.incremental, + destination_sync_mode=DestinationSyncMode.append, + ), + ConfiguredAirbyteStream( + stream=AirbyteStream(name="party_members_skills", json_schema={}, supported_sync_modes=[SyncMode.full_refresh]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ) + ] +) +_LOCATIONS_RESPONSE = HttpResponse(json.dumps([ + {"id": "444", "name": "Yongen-jaya", "updated_at": "2024-08-10"}, + {"id": "scramble", "name": "Shibuya", "updated_at": "2024-08-10"}, + {"id": "aoyama", "name": "Aoyama-itchome", "updated_at": "2024-08-10"}, + {"id": "shin123", "name": "Shinjuku", "updated_at": "2024-08-10"}, +])) +_PALACES_RESPONSE = HttpResponse(json.dumps([ + {"id": "0", "world": "castle", "owner": "kamoshida"}, + {"id": "1", "world": "museum", "owner": "madarame"}, + {"id": "2", "world": "bank", "owner": "kaneshiro"}, + {"id": "3", "world": "pyramid", "owner": "futaba"}, + {"id": "4", "world": "spaceport", "owner": "okumura"}, + {"id": "5", "world": "casino", "owner": "nijima"}, + {"id": "6", "world": "cruiser", "owner": "shido"}, +])) +_PARTY_MEMBERS_SKILLS_RESPONSE = HttpResponse(json.dumps([ + {"id": "0", "name": "hassou tobi"}, + {"id": "1", "name": "mafreidyne"}, + {"id": "2", "name": "myriad truths"}, +])) +_EMPTY_RESPONSE = HttpResponse(json.dumps([])) +_NOW = "2024-09-10T00:00:00" +_NO_STATE_PARTY_MEMBERS_SLICES_AND_RESPONSES = [ + ({"start": "2024-07-01", "end": "2024-07-15"}, HttpResponse(json.dumps([{"id": "amamiya", "first_name": "ren", "last_name": "amamiya", "updated_at": "2024-07-10"}]))), + ({"start": "2024-07-16", "end": "2024-07-30"}, _EMPTY_RESPONSE), + ({"start": "2024-07-31", "end": "2024-08-14"}, HttpResponse(json.dumps([{"id": "nijima", "first_name": "makoto", "last_name": "nijima", "updated_at": "2024-08-10"}, ]))), + ({"start": "2024-08-15", "end": "2024-08-29"}, _EMPTY_RESPONSE), + ({"start": "2024-08-30", "end": "2024-09-10"}, HttpResponse(json.dumps([{"id": "yoshizawa", "first_name": "sumire", "last_name": "yoshizawa", "updated_at": "2024-09-10"}]))), +] +_MANIFEST = { + "version": "5.0.0", + "definitions": { + "selector": { + "type": "RecordSelector", + "extractor": { + "type": "DpathExtractor", + "field_path": [] + } + }, + "requester": { + "type": "HttpRequester", + "url_base": "https://persona.metaverse.com", + "http_method": "GET", + "authenticator": { + "type": "BasicHttpAuthenticator", + "username": "{{ config['api_key'] }}", + "password": "{{ config['secret_key'] }}" + }, + "error_handler": { + "type": "DefaultErrorHandler", + "response_filters": [ + { + "http_codes": [403], + "action": "FAIL", + "failure_type": "config_error", + "error_message": "Access denied due to lack of permission or invalid API/Secret key or wrong data region." + }, + { + "http_codes": [404], + "action": "IGNORE", + "error_message": "No data available for the time range requested." + } + ] + }, + }, + "retriever": { + "type": "SimpleRetriever", + "record_selector": { + "$ref": "#/definitions/selector" + }, + "paginator": { + "type": "NoPagination" + }, + "requester": { + "$ref": "#/definitions/requester" + } + }, + "incremental_cursor": { + "type": "DatetimeBasedCursor", + "start_datetime": { + "datetime": "{{ format_datetime(config['start_date'], '%Y-%m-%d') }}" + }, + "end_datetime": { + "datetime": "{{ now_utc().strftime('%Y-%m-%d') }}" + }, + "datetime_format": "%Y-%m-%d", + "cursor_datetime_formats": ["%Y-%m-%d", "%Y-%m-%dT%H:%M:%S"], + "cursor_granularity": "P1D", + "step": "P15D", + "cursor_field": "updated_at", + "lookback_window": "P5D", + "start_time_option": { + "type": "RequestOption", + "field_name": "start", + "inject_into": "request_parameter" + }, + "end_time_option": { + "type": "RequestOption", + "field_name": "end", + "inject_into": "request_parameter" + } + }, + "base_stream": { + "retriever": { + "$ref": "#/definitions/retriever" + } + }, + "base_incremental_stream": { + "retriever": { + "$ref": "#/definitions/retriever", + "requester": { + "$ref": "#/definitions/requester" + } + }, + "incremental_sync": { + "$ref": "#/definitions/incremental_cursor" + } + }, + "party_members_stream": { + "$ref": "#/definitions/base_incremental_stream", + "retriever": { + "$ref": "#/definitions/base_incremental_stream/retriever", + "record_selector": { + "$ref": "#/definitions/selector" + } + }, + "$parameters": { + "name": "party_members", + "primary_key": "id", + "path": "/party_members" + }, + "schema_loader": { + "type": "InlineSchemaLoader", + "schema": { + "$schema": "https://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "description": "The identifier", + "type": ["null", "string"], + }, + "name": { + "description": "The name of the party member", + "type": ["null", "string"] + } + } + } + } + }, + "palaces_stream": { + "$ref": "#/definitions/base_stream", + "$parameters": { + "name": "palaces", + "primary_key": "id", + "path": "/palaces" + }, + "schema_loader": { + "type": "InlineSchemaLoader", + "schema": { + "$schema": "https://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "description": "The identifier", + "type": ["null", "string"], + }, + "name": { + "description": "The name of the metaverse palace", + "type": ["null", "string"] + } + } + } + } + }, + "locations_stream": { + "$ref": "#/definitions/base_incremental_stream", + "retriever": { + "$ref": "#/definitions/base_incremental_stream/retriever", + "requester": { + "$ref": "#/definitions/base_incremental_stream/retriever/requester", + "request_parameters": { + "m": "active", + "i": "1", + "g": "country" + } + }, + "record_selector": { + "$ref": "#/definitions/selector" + } + }, + "incremental_sync": { + "$ref": "#/definitions/incremental_cursor", + "step": "P1M", + "cursor_field": "updated_at" + }, + "$parameters": { + "name": "locations", + "primary_key": "id", + "path": "/locations" + }, + "schema_loader": { + "type": "InlineSchemaLoader", + "schema": { + "$schema": "https://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "description": "The identifier", + "type": ["null", "string"], + }, + "name": { + "description": "The name of the neighborhood location", + "type": ["null", "string"] + } + } + } + } + }, + "party_members_skills_stream": { + "$ref": "#/definitions/base_stream", + "retriever": { + "$ref": "#/definitions/base_incremental_stream/retriever", + "record_selector": { + "$ref": "#/definitions/selector" + }, + "partition_router": { + "type": "SubstreamPartitionRouter", + "parent_stream_configs": [ + { + "type": "ParentStreamConfig", + "stream": "#/definitions/party_members_stream", + "parent_key": "id", + "partition_field": "party_member_id", + } + ] + } + }, + "$parameters": { + "name": "party_members_skills", + "primary_key": "id", + "path": "/party_members/{{stream_slice.party_member_id}}/skills" + }, + "schema_loader": { + "type": "InlineSchemaLoader", + "schema": { + "$schema": "https://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "description": "The identifier", + "type": ["null", "string"], + }, + "name": { + "description": "The name of the party member", + "type": ["null", "string"] + } + } + } + } + }, + }, + "streams": [ + "#/definitions/party_members_stream", + "#/definitions/palaces_stream", + "#/definitions/locations_stream", + "#/definitions/party_members_skills_stream" + ], + "check": { + "stream_names": ["party_members", "palaces", "locations"] + }, + "concurrency_level": { + "type": "ConcurrencyLevel", + "default_concurrency": "{{ config['num_workers'] or 10 }}", + "max_concurrency": 25, + } +} + + +@deprecated("See note in docstring for more information") +class DeclarativeStreamDecorator(Stream): + """ + Helper class that wraps an existing DeclarativeStream but allows for overriding the output of read_records() to + make it easier to mock behavior and test how low-code streams integrate with the Concurrent CDK. + + NOTE: We are not using that for now but the intent was to scope the tests to only testing that streams were properly instantiated and + interacted together properly. However in practice, we had a couple surprises like `get_cursor` and `stream_slices` needed to be + re-implemented as well. Because of that, we've move away from that in favour of doing tests that integrate up until the HTTP request. + The drawback of that is that we are dependent on any change later (like if the DatetimeBasedCursor changes, this will affect those + tests) but it feels less flaky than this. If we have new information in the future to infirm that, feel free to re-use this class as + necessary. + """ + + def __init__(self, declarative_stream: DeclarativeStream, slice_to_records_mapping: Mapping[tuple[str, str], List[Mapping[str, Any]]]): + self._declarative_stream = declarative_stream + self._slice_to_records_mapping = slice_to_records_mapping + + @property + def name(self) -> str: + return self._declarative_stream.name + + @property + def primary_key(self) -> Optional[Union[str, List[str], List[List[str]]]]: + return self._declarative_stream.primary_key + + def read_records( + self, + sync_mode: SyncMode, + cursor_field: Optional[List[str]] = None, + stream_slice: Optional[Mapping[str, Any]] = None, + stream_state: Optional[Mapping[str, Any]] = None, + ) -> Iterable[Mapping[str, Any]]: + if isinstance(stream_slice, StreamSlice): + slice_key = (stream_slice.get("start_time"), stream_slice.get("end_time")) + + # Extra logic to simulate raising an error during certain partitions to validate error handling + if slice_key == ("2024-08-05", "2024-09-04"): + raise AirbyteTracedException( + message=f"Received an unexpected error during interval with start: {slice_key[0]} and end: {slice_key[1]}.", + failure_type=FailureType.config_error) + + if slice_key in self._slice_to_records_mapping: + yield from self._slice_to_records_mapping.get(slice_key) + else: + yield from [] + else: + raise ValueError(f"stream_slice should be of type StreamSlice, but received {type(stream_slice)}") + + def get_json_schema(self) -> Mapping[str, Any]: + return self._declarative_stream.get_json_schema() + + def get_cursor(self) -> Optional[Cursor]: + return self._declarative_stream.get_cursor() + + +def test_group_streams(): + """ + Tests the grouping of low-code streams into ones that can be processed concurrently vs ones that must be processed concurrently + """ + + catalog = ConfiguredAirbyteCatalog( + streams=[ + ConfiguredAirbyteStream( + stream=AirbyteStream(name="party_members", json_schema={}, supported_sync_modes=[SyncMode.incremental]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ), + ConfiguredAirbyteStream( + stream=AirbyteStream(name="palaces", json_schema={}, supported_sync_modes=[SyncMode.full_refresh]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ), + ConfiguredAirbyteStream( + stream=AirbyteStream(name="locations", json_schema={}, supported_sync_modes=[SyncMode.incremental]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ), + ConfiguredAirbyteStream( + stream=AirbyteStream(name="party_members_skills", json_schema={}, supported_sync_modes=[SyncMode.full_refresh]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ) + ] + ) + + state = [] + + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=_CONFIG, catalog=catalog, state=state) + concurrent_streams = source._concurrent_streams + synchronous_streams = source._synchronous_streams + + # 2 incremental streams + assert len(concurrent_streams) == 2 + concurrent_stream_0, concurrent_stream_1 = concurrent_streams + assert isinstance(concurrent_stream_0, DefaultStream) + assert concurrent_stream_0.name == "party_members" + assert isinstance(concurrent_stream_1, DefaultStream) + assert concurrent_stream_1.name == "locations" + + # 1 full refresh stream, 1 substream + assert len(synchronous_streams) == 2 + synchronous_stream_0, synchronous_stream_1 = synchronous_streams + assert isinstance(synchronous_stream_0, DeclarativeStream) + assert synchronous_stream_0.name == "palaces" + assert isinstance(synchronous_stream_1, DeclarativeStream) + assert synchronous_stream_1.name == "party_members_skills" + + +@freezegun.freeze_time(time_to_freeze=datetime(2024, 9, 1, 0, 0, 0, 0, tzinfo=timezone.utc)) +def test_create_concurrent_cursor(): + """ + Validate that the ConcurrentDeclarativeSource properly instantiates a ConcurrentCursor from the + low-code DatetimeBasedCursor component + """ + + incoming_locations_state = { + "slices": [ + {"start": "2024-07-01T00:00:00.000Z", "end": "2024-07-31T00:00:00.000Z"}, + ], + "state_type": "date-range" + } + + state = [ + AirbyteStateMessage( + type=AirbyteStateType.STREAM, + stream=AirbyteStreamState( + stream_descriptor=StreamDescriptor(name="locations", namespace=None), + stream_state=AirbyteStateBlob(**incoming_locations_state) + ), + ), + ] + + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=_CONFIG, catalog=_CATALOG, state=state) + + party_members_stream = source._concurrent_streams[0] + assert isinstance(party_members_stream, DefaultStream) + party_members_cursor = party_members_stream.cursor + + assert isinstance(party_members_cursor, ConcurrentCursor) + assert party_members_cursor._stream_name == "party_members" + assert party_members_cursor._cursor_field.cursor_field_key == "updated_at" + assert party_members_cursor._start == pendulum.parse(_CONFIG.get("start_date")) + assert party_members_cursor._end_provider() == datetime(year=2024, month=9, day=1, tzinfo=timezone.utc) + assert party_members_cursor._slice_boundary_fields == ("start_time", "end_time") + assert party_members_cursor._slice_range == timedelta(days=15) + assert party_members_cursor._lookback_window == timedelta(days=5) + assert party_members_cursor._cursor_granularity == timedelta(days=1) + + locations_stream = source._concurrent_streams[1] + assert isinstance(locations_stream, DefaultStream) + locations_cursor = locations_stream.cursor + + assert isinstance(locations_cursor, ConcurrentCursor) + assert locations_cursor._stream_name == "locations" + assert locations_cursor._cursor_field.cursor_field_key == "updated_at" + assert locations_cursor._start == pendulum.parse(_CONFIG.get("start_date")) + assert locations_cursor._end_provider() == datetime(year=2024, month=9, day=1, tzinfo=timezone.utc) + assert locations_cursor._slice_boundary_fields == ("start_time", "end_time") + assert locations_cursor._slice_range == isodate.Duration(months=1) + assert locations_cursor._lookback_window == timedelta(days=5) + assert locations_cursor._cursor_granularity == timedelta(days=1) + assert locations_cursor.state == { + "slices": [ + { + "start": datetime(2024, 7, 1, 0, 0, 0, 0, tzinfo=timezone.utc), + "end": datetime(2024, 7, 31, 0, 0, 0, 0, tzinfo=timezone.utc), + } + ], + "state_type": "date-range" + } + + +def test_check(): + """ + Verifies that the ConcurrentDeclarativeSource check command is run against synchronous streams + """ + with HttpMocker() as http_mocker: + http_mocker.get( + HttpRequest("https://persona.metaverse.com/party_members?start=2024-07-01&end=2024-07-15"), + HttpResponse(json.dumps({"id": "amamiya", "first_name": "ren", "last_name": "amamiya", "updated_at": "2024-07-10"})), + ) + http_mocker.get( + HttpRequest("https://persona.metaverse.com/palaces"), + HttpResponse(json.dumps({"id": "palace_1"})), + ) + http_mocker.get( + HttpRequest("https://persona.metaverse.com/locations?m=active&i=1&g=country&start=2024-07-01&end=2024-07-31"), + HttpResponse(json.dumps({"id": "location_1"})), + ) + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=_CONFIG, catalog=None, state=None) + + connection_status = source.check(logger=source.logger, config=_CONFIG) + + assert connection_status.status == Status.SUCCEEDED + + +def test_discover(): + """ + Verifies that the ConcurrentDeclarativeSource discover command returns concurrent and synchronous catalog definitions + """ + expected_stream_names = ["party_members", "palaces", "locations", "party_members_skills"] + + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=_CONFIG, catalog=None, state=None) + + actual_catalog = source.discover(logger=source.logger, config=_CONFIG) + + assert len(actual_catalog.streams) == 4 + assert actual_catalog.streams[0].name in expected_stream_names + assert actual_catalog.streams[1].name in expected_stream_names + assert actual_catalog.streams[2].name in expected_stream_names + assert actual_catalog.streams[3].name in expected_stream_names + + +def _mock_requests(http_mocker: HttpMocker, url: str, query_params: List[Dict[str, str]], responses: List[HttpResponse]) -> None: + assert len(query_params) == len(responses), "Expecting as many slices as response" + + for i in range(len(query_params)): + http_mocker.get(HttpRequest(url, query_params=query_params[i]), responses[i]) + + +def _mock_party_members_requests(http_mocker: HttpMocker, slices_and_responses: List[Tuple[Dict[str, str], HttpResponse]]) -> None: + slices = list(map(lambda slice_and_response: slice_and_response[0], slices_and_responses)) + responses = list(map(lambda slice_and_response: slice_and_response[1], slices_and_responses)) + + _mock_requests( + http_mocker, + "https://persona.metaverse.com/party_members", + slices, + responses, + ) + + +def _mock_locations_requests(http_mocker: HttpMocker, slices: List[Dict[str, str]]) -> None: + locations_query_params = list(map(lambda _slice: _slice | {"m": "active", "i": "1", "g": "country"}, slices)) + _mock_requests( + http_mocker, + "https://persona.metaverse.com/locations", + locations_query_params, + [_LOCATIONS_RESPONSE] * len(slices), + ) + + +def _mock_party_members_skills_requests(http_mocker: HttpMocker) -> None: + """ + This method assumes _mock_party_members_requests has been called before else the stream won't work. + """ + http_mocker.get(HttpRequest("https://persona.metaverse.com/party_members/amamiya/skills"), _PARTY_MEMBERS_SKILLS_RESPONSE) + http_mocker.get(HttpRequest("https://persona.metaverse.com/party_members/nijima/skills"), _PARTY_MEMBERS_SKILLS_RESPONSE) + http_mocker.get(HttpRequest("https://persona.metaverse.com/party_members/yoshizawa/skills"), _PARTY_MEMBERS_SKILLS_RESPONSE) + + +@freezegun.freeze_time(_NOW) +def test_read_with_concurrent_and_synchronous_streams(): + """ + Verifies that a ConcurrentDeclarativeSource processes concurrent streams followed by synchronous streams + """ + location_slices = [ + {"start": "2024-07-01", "end": "2024-07-31"}, + {"start": "2024-08-01", "end": "2024-08-31"}, + {"start": "2024-09-01", "end": "2024-09-10"}, + ] + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=_CONFIG, catalog=_CATALOG, state=None) + disable_emitting_sequential_state_messages(source=source) + + with HttpMocker() as http_mocker: + _mock_party_members_requests(http_mocker, _NO_STATE_PARTY_MEMBERS_SLICES_AND_RESPONSES) + _mock_locations_requests(http_mocker, location_slices) + http_mocker.get(HttpRequest("https://persona.metaverse.com/palaces"), _PALACES_RESPONSE) + _mock_party_members_skills_requests(http_mocker) + + messages = list(source.read(logger=source.logger, config=_CONFIG, catalog=_CATALOG, state=[])) + + # See _mock_party_members_requests + party_members_records = get_records_for_stream("party_members", messages) + assert len(party_members_records) == 3 + + party_members_states = get_states_for_stream(stream_name="party_members", messages=messages) + assert len(party_members_states) == 6 + assert party_members_states[5].stream.stream_state.__dict__ == AirbyteStateBlob( + state_type="date-range", + slices=[{"start": "2024-07-01", "end": "2024-09-10", "most_recent_cursor_value": "2024-09-10"}] + ).__dict__ + + # Expects 12 records, 3 slices, 4 records each slice + locations_records = get_records_for_stream(stream_name="locations", messages=messages) + assert len(locations_records) == 12 + + # 3 partitions == 3 state messages + final state message + # Because we cannot guarantee the order partitions finish, we only validate that the final state has the latest checkpoint value + locations_states = get_states_for_stream(stream_name="locations", messages=messages) + assert len(locations_states) == 4 + assert locations_states[3].stream.stream_state.__dict__ == AirbyteStateBlob( + state_type="date-range", + slices=[{"start": "2024-07-01", "end": "2024-09-10", "most_recent_cursor_value": "2024-08-10"}] + ).__dict__ + + # Expects 7 records, 1 empty slice, 7 records in slice + palaces_records = get_records_for_stream("palaces", messages) + assert len(palaces_records) == 7 + + palaces_states = get_states_for_stream(stream_name="palaces", messages=messages) + assert len(palaces_states) == 1 + assert palaces_states[0].stream.stream_state.__dict__ == AirbyteStateBlob(__ab_full_refresh_sync_complete=True).__dict__ + + # Expects 3 records, 3 slices, 3 records in slice + party_members_skills_records = get_records_for_stream("party_members_skills", messages) + assert len(party_members_skills_records) == 9 + + party_members_skills_states = get_states_for_stream(stream_name="party_members_skills", messages=messages) + assert len(party_members_skills_states) == 3 + assert party_members_skills_states[0].stream.stream_state.__dict__ == { + "states": [ + {"partition": {"parent_slice": {}, "party_member_id": "amamiya"}, "cursor": {"__ab_full_refresh_sync_complete": True}}, + ] + } + assert party_members_skills_states[1].stream.stream_state.__dict__ == { + "states": [ + {"partition": {"parent_slice": {}, "party_member_id": "amamiya"}, "cursor": {"__ab_full_refresh_sync_complete": True}}, + {"partition": {"parent_slice": {}, "party_member_id": "nijima"}, "cursor": {"__ab_full_refresh_sync_complete": True}}, + ] + } + assert party_members_skills_states[2].stream.stream_state.__dict__ == { + "states": [ + {"partition": {"parent_slice": {}, "party_member_id": "amamiya"}, "cursor": {"__ab_full_refresh_sync_complete": True}}, + {"partition": {"parent_slice": {}, "party_member_id": "nijima"}, "cursor": {"__ab_full_refresh_sync_complete": True}}, + {"partition": {"parent_slice": {}, "party_member_id": "yoshizawa"}, "cursor": {"__ab_full_refresh_sync_complete": True}} + ] + } + + +@freezegun.freeze_time(_NOW) +def test_read_with_concurrent_and_synchronous_streams_with_concurrent_state(): + """ + Verifies that a ConcurrentDeclarativeSource processes concurrent streams correctly using the incoming + concurrent state format + """ + state = [ + AirbyteStateMessage( + type=AirbyteStateType.STREAM, + stream=AirbyteStreamState( + stream_descriptor=StreamDescriptor(name="locations", namespace=None), + stream_state=AirbyteStateBlob( + state_type="date-range", + slices=[{"start": "2024-07-01", "end": "2024-07-31"}], + ), + ), + ), + AirbyteStateMessage( + type=AirbyteStateType.STREAM, + stream=AirbyteStreamState( + stream_descriptor=StreamDescriptor(name="party_members", namespace=None), + stream_state=AirbyteStateBlob( + state_type="date-range", + slices=[ + {"start": "2024-07-16", "end": "2024-07-30"}, + {"start": "2024-07-31", "end": "2024-08-14"}, + {"start": "2024-08-30", "end": "2024-09-09"}, + ] + ), + ), + ), + ] + + party_members_slices_and_responses = _NO_STATE_PARTY_MEMBERS_SLICES_AND_RESPONSES + [ + ( + {"start": "2024-09-04", "end": "2024-09-10"}, # considering lookback window + HttpResponse( + json.dumps([{"id": "yoshizawa", "first_name": "sumire", "last_name": "yoshizawa", "updated_at": "2024-09-10"}]) + ), + ) + ] + location_slices = [ + {"start": "2024-07-26", "end": "2024-08-25"}, + {"start": "2024-08-26", "end": "2024-09-10"}, + ] + + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=_CONFIG, catalog=_CATALOG, state=state) + disable_emitting_sequential_state_messages(source=source) + + with HttpMocker() as http_mocker: + _mock_party_members_requests(http_mocker, party_members_slices_and_responses) + _mock_locations_requests(http_mocker, location_slices) + http_mocker.get(HttpRequest("https://persona.metaverse.com/palaces"), _PALACES_RESPONSE) + _mock_party_members_skills_requests(http_mocker) + + messages = list(source.read(logger=source.logger, config=_CONFIG, catalog=_CATALOG, state=state)) + + # Expects 8 records, skip successful intervals and are left with 2 slices, 4 records each slice + locations_records = get_records_for_stream("locations", messages) + assert len(locations_records) == 8 + + locations_states = get_states_for_stream(stream_name="locations", messages=messages) + assert len(locations_states) == 3 + assert locations_states[2].stream.stream_state.__dict__ == AirbyteStateBlob( + state_type="date-range", + slices=[{"start": "2024-07-01", "end": "2024-09-10", "most_recent_cursor_value": "2024-08-10"}] + ).__dict__ + + # slices to sync are: + # * {"start": "2024-07-01", "end": "2024-07-15"}: one record in _NO_STATE_PARTY_MEMBERS_SLICES_AND_RESPONSES + # * {"start": "2024-09-04", "end": "2024-09-10"}: one record from the lookback window defined in this test + party_members_records = get_records_for_stream("party_members", messages) + assert len(party_members_records) == 2 + + party_members_states = get_states_for_stream(stream_name="party_members", messages=messages) + assert len(party_members_states) == 4 + assert party_members_states[3].stream.stream_state.__dict__ == AirbyteStateBlob( + state_type="date-range", + slices=[{"start": "2024-07-01", "end": "2024-09-10", "most_recent_cursor_value": "2024-09-10"}] + ).__dict__ + + # Expects 7 records, 1 empty slice, 7 records in slice + palaces_records = get_records_for_stream("palaces", messages) + assert len(palaces_records) == 7 + + # Expects 3 records, 3 slices, 3 records in slice + party_members_skills_records = get_records_for_stream("party_members_skills", messages) + assert len(party_members_skills_records) == 9 + + +@freezegun.freeze_time(_NOW) +def test_read_with_concurrent_and_synchronous_streams_with_sequential_state(): + """ + Verifies that a ConcurrentDeclarativeSource processes concurrent streams correctly using the incoming + legacy state format + """ + state = [ + AirbyteStateMessage( + type=AirbyteStateType.STREAM, + stream=AirbyteStreamState( + stream_descriptor=StreamDescriptor(name="locations", namespace=None), + stream_state=AirbyteStateBlob(updated_at="2024-08-06"), + ), + ), + AirbyteStateMessage( + type=AirbyteStateType.STREAM, + stream=AirbyteStreamState( + stream_descriptor=StreamDescriptor(name="party_members", namespace=None), + stream_state=AirbyteStateBlob(updated_at="2024-08-21"), + ), + ) + ] + + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=_CONFIG, catalog=_CATALOG, state=state) + disable_emitting_sequential_state_messages(source=source) + + party_members_slices_and_responses = _NO_STATE_PARTY_MEMBERS_SLICES_AND_RESPONSES + [ + ({"start": "2024-08-16", "end": "2024-08-30"}, HttpResponse(json.dumps([{"id": "nijima", "first_name": "makoto", "last_name": "nijima", "updated_at": "2024-08-10"}]))), # considering lookback window + ({"start": "2024-08-31", "end": "2024-09-10"}, HttpResponse(json.dumps([{"id": "yoshizawa", "first_name": "sumire", "last_name": "yoshizawa", "updated_at": "2024-09-10"}]))), + ] + location_slices = [ + {"start": "2024-08-01", "end": "2024-08-31"}, + {"start": "2024-09-01", "end": "2024-09-10"}, + ] + + with HttpMocker() as http_mocker: + _mock_party_members_requests(http_mocker, party_members_slices_and_responses) + _mock_locations_requests(http_mocker, location_slices) + http_mocker.get(HttpRequest("https://persona.metaverse.com/palaces"), _PALACES_RESPONSE) + _mock_party_members_skills_requests(http_mocker) + + messages = list(source.read(logger=source.logger, config=_CONFIG, catalog=_CATALOG, state=state)) + + # Expects 8 records, skip successful intervals and are left with 2 slices, 4 records each slice + locations_records = get_records_for_stream("locations", messages) + assert len(locations_records) == 8 + + locations_states = get_states_for_stream(stream_name="locations", messages=messages) + assert len(locations_states) == 3 + assert locations_states[2].stream.stream_state.__dict__ == AirbyteStateBlob( + state_type="date-range", + slices=[{"start": "2024-07-01", "end": "2024-09-10", "most_recent_cursor_value": "2024-08-10"}] + ).__dict__ + + # From extra slices defined in party_members_slices_and_responses + party_members_records = get_records_for_stream("party_members", messages) + assert len(party_members_records) == 2 + + party_members_states = get_states_for_stream(stream_name="party_members", messages=messages) + assert len(party_members_states) == 3 + assert party_members_states[2].stream.stream_state.__dict__ == AirbyteStateBlob( + state_type="date-range", + slices=[{"start": "2024-07-01", "end": "2024-09-10", "most_recent_cursor_value": "2024-09-10"}] + ).__dict__ + + # Expects 7 records, 1 empty slice, 7 records in slice + palaces_records = get_records_for_stream("palaces", messages) + assert len(palaces_records) == 7 + + # Expects 3 records, 3 slices, 3 records in slice + party_members_skills_records = get_records_for_stream("party_members_skills", messages) + assert len(party_members_skills_records) == 9 + + +@freezegun.freeze_time(_NOW) +def test_read_concurrent_with_failing_partition_in_the_middle(): + """ + Verify that partial state is emitted when only some partitions are successful during a concurrent sync attempt + """ + location_slices = [ + {"start": "2024-07-01", "end": "2024-07-31"}, + # missing slice `{"start": "2024-08-01", "end": "2024-08-31"}` here + {"start": "2024-09-01", "end": "2024-09-10"}, + ] + expected_stream_state = { + "state_type": "date-range", + "slices": [location_slice | {"most_recent_cursor_value": "2024-08-10"} for location_slice in location_slices], + } + + catalog = ConfiguredAirbyteCatalog( + streams=[ + ConfiguredAirbyteStream( + stream=AirbyteStream(name="locations", json_schema={}, supported_sync_modes=[SyncMode.incremental]), + sync_mode=SyncMode.incremental, + destination_sync_mode=DestinationSyncMode.append, + ), + ] + ) + + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=_CONFIG, catalog=catalog, state=[]) + disable_emitting_sequential_state_messages(source=source) + + location_slices = [ + {"start": "2024-07-01", "end": "2024-07-31"}, + # missing slice `{"start": "2024-08-01", "end": "2024-08-31"}` here + {"start": "2024-09-01", "end": "2024-09-10"}, + ] + + with HttpMocker() as http_mocker: + _mock_locations_requests(http_mocker, location_slices) + + messages = [] + try: + for message in source.read(logger=source.logger, config=_CONFIG, catalog=catalog, state=[]): + messages.append(message) + except AirbyteTracedException: + assert get_states_for_stream(stream_name="locations", messages=messages)[-1].stream.stream_state.__dict__ == expected_stream_state + + +@freezegun.freeze_time(_NOW) +def test_read_concurrent_skip_streams_not_in_catalog(): + """ + Verifies that the ConcurrentDeclarativeSource only syncs streams that are specified in the incoming ConfiguredCatalog + """ + with HttpMocker() as http_mocker: + catalog = ConfiguredAirbyteCatalog( + streams=[ + ConfiguredAirbyteStream( + stream=AirbyteStream(name="palaces", json_schema={}, supported_sync_modes=[SyncMode.full_refresh]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ), + ConfiguredAirbyteStream( + stream=AirbyteStream(name="locations", json_schema={}, supported_sync_modes=[SyncMode.incremental]), + sync_mode=SyncMode.incremental, + destination_sync_mode=DestinationSyncMode.append, + ), + ] + ) + + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=_CONFIG, catalog=catalog, state=None) + # locations requests + location_slices = [ + {"start": "2024-07-01", "end": "2024-07-31"}, + {"start": "2024-08-01", "end": "2024-08-31"}, + {"start": "2024-09-01", "end": "2024-09-10"}, + ] + locations_query_params = list(map(lambda _slice: _slice | {"m": "active", "i": "1", "g": "country"}, location_slices)) + _mock_requests( + http_mocker, + "https://persona.metaverse.com/locations", + locations_query_params, + [_LOCATIONS_RESPONSE] * len(location_slices), + ) + + # palaces requests + http_mocker.get(HttpRequest("https://persona.metaverse.com/palaces"), _PALACES_RESPONSE) + + disable_emitting_sequential_state_messages(source=source) + + messages = list(source.read(logger=source.logger, config=_CONFIG, catalog=catalog, state=[])) + + locations_records = get_records_for_stream(stream_name="locations", messages=messages) + assert len(locations_records) == 12 + locations_states = get_states_for_stream(stream_name="locations", messages=messages) + assert len(locations_states) == 4 + + palaces_records = get_records_for_stream("palaces", messages) + assert len(palaces_records) == 7 + palaces_states = get_states_for_stream(stream_name="palaces", messages=messages) + assert len(palaces_states) == 1 + + assert len(get_records_for_stream(stream_name="party_members", messages=messages)) == 0 + assert len(get_states_for_stream(stream_name="party_members", messages=messages)) == 0 + + assert len(get_records_for_stream(stream_name="party_members_skills", messages=messages)) == 0 + assert len(get_states_for_stream(stream_name="party_members_skills", messages=messages)) == 0 + + +def test_default_perform_interpolation_on_concurrency_level(): + config = { + "start_date": "2024-07-01T00:00:00.000Z", + "num_workers": 20 + } + catalog = ConfiguredAirbyteCatalog( + streams=[ + ConfiguredAirbyteStream( + stream=AirbyteStream(name="palaces", json_schema={}, supported_sync_modes=[SyncMode.full_refresh]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ), + ] + ) + + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=config, catalog=catalog, state=[]) + assert source._concurrent_source._initial_number_partitions_to_generate == 10 # We floor the number of initial partitions on creation + + +def test_default_to_single_threaded_when_no_concurrency_level(): + catalog = ConfiguredAirbyteCatalog( + streams=[ + ConfiguredAirbyteStream( + stream=AirbyteStream(name="palaces", json_schema={}, supported_sync_modes=[SyncMode.full_refresh]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ), + ] + ) + + manifest = copy.deepcopy(_MANIFEST) + del manifest["concurrency_level"] + + source = ConcurrentDeclarativeSource(source_config=manifest, config=_CONFIG, catalog=catalog, state=[]) + assert source._concurrent_source._initial_number_partitions_to_generate == 1 + + +def test_concurrency_level_initial_number_partitions_to_generate_is_always_one_or_more(): + config = { + "start_date": "2024-07-01T00:00:00.000Z", + "num_workers": 1 + } + catalog = ConfiguredAirbyteCatalog( + streams=[ + ConfiguredAirbyteStream( + stream=AirbyteStream(name="palaces", json_schema={}, supported_sync_modes=[SyncMode.full_refresh]), + sync_mode=SyncMode.full_refresh, + destination_sync_mode=DestinationSyncMode.append, + ), + ] + ) + + manifest = copy.deepcopy(_MANIFEST) + manifest["concurrency_level"] = { + "type": "ConcurrencyLevel", + "default_concurrency": "{{ config.get('num_workers', 1) }}", + "max_concurrency": 25, + } + + source = ConcurrentDeclarativeSource(source_config=_MANIFEST, config=config, catalog=catalog, state=[]) + assert source._concurrent_source._initial_number_partitions_to_generate == 1 + + +def test_streams_with_stream_state_interpolation_should_be_synchronous(): + manifest_with_stream_state_interpolation = copy.deepcopy(_MANIFEST) + + # Add stream_state interpolation to the location stream's HttpRequester + manifest_with_stream_state_interpolation["definitions"]["locations_stream"]["retriever"]["requester"]["request_parameters"] = { + "after": "{{ stream_state['updated_at'] }}", + } + + # Add a RecordFilter component that uses stream_state interpolation to the party member stream + manifest_with_stream_state_interpolation["definitions"]["party_members_stream"]["retriever"]["record_selector"]["record_filter"] = { + "type": "RecordFilter", + "condition": "{{ record.updated_at > stream_state['updated_at'] }}" + } + + source = ConcurrentDeclarativeSource( + source_config=manifest_with_stream_state_interpolation, + config=_CONFIG, + catalog=_CATALOG, + state=None + ) + + assert len(source._concurrent_streams) == 0 + assert len(source._synchronous_streams) == 4 + + +def create_wrapped_stream(stream: DeclarativeStream) -> Stream: + slice_to_records_mapping = get_mocked_read_records_output(stream_name=stream.name) + + return DeclarativeStreamDecorator(declarative_stream=stream, slice_to_records_mapping=slice_to_records_mapping) + + +def get_mocked_read_records_output(stream_name: str) -> Mapping[tuple[str, str], List[StreamData]]: + match stream_name: + case "locations": + slices = [ + # Slices used during first incremental sync + StreamSlice(cursor_slice={"start": "2024-07-01", "end": "2024-07-31"}, partition={}), + StreamSlice(cursor_slice={"start": "2024-08-01", "end": "2024-08-31"}, partition={}), + StreamSlice(cursor_slice={"start": "2024-09-01", "end": "2024-09-09"}, partition={}), + + # Slices used during incremental checkpoint sync + StreamSlice(cursor_slice={'start': '2024-07-26', 'end': '2024-08-25'}, partition={}), + StreamSlice(cursor_slice={'start': '2024-08-26', 'end': '2024-09-09'}, partition={}), + + # Slices used during incremental sync with some partitions that exit with an error + StreamSlice(cursor_slice={"start": "2024-07-05", "end": "2024-08-04"}, partition={}), + StreamSlice(cursor_slice={"start": "2024-08-05", "end": "2024-09-04"}, partition={}), + StreamSlice(cursor_slice={"start": "2024-09-05", "end": "2024-09-09"}, partition={}), + ] + + records = [ + {"id": "444", "name": "Yongen-jaya", "updated_at": "2024-08-10"}, + {"id": "scramble", "name": "Shibuya", "updated_at": "2024-08-10"}, + {"id": "aoyama", "name": "Aoyama-itchome", "updated_at": "2024-08-10"}, + {"id": "shin123", "name": "Shinjuku", "updated_at": "2024-08-10"}, + ] + case "party_members": + slices = [ + # Slices used during first incremental sync + StreamSlice(cursor_slice={"start": "2024-07-01", "end": "2024-07-15"}, partition={}), + StreamSlice(cursor_slice={"start": "2024-07-16", "end": "2024-07-30"}, partition={}), + StreamSlice(cursor_slice={"start": "2024-07-31", "end": "2024-08-14"}, partition={}), + StreamSlice(cursor_slice={"start": "2024-08-15", "end": "2024-08-29"}, partition={}), + StreamSlice(cursor_slice={"start": "2024-08-30", "end": "2024-09-09"}, partition={}), + + # Slices used during incremental checkpoint sync. Unsuccessful partitions use the P5D lookback window which explains + # the skew of records midway through + StreamSlice(cursor_slice={"start": "2024-07-01", "end": "2024-07-16"}, partition={}), + StreamSlice(cursor_slice={'start': '2024-07-30', 'end': '2024-08-13'}, partition={}), + StreamSlice(cursor_slice={'start': '2024-08-14', 'end': '2024-08-14'}, partition={}), + StreamSlice(cursor_slice={'start': '2024-09-04', 'end': '2024-09-09'}, partition={}), + ] + + records = [ + {"id": "amamiya", "first_name": "ren", "last_name": "amamiya", "updated_at": "2024-07-10"}, + {"id": "nijima", "first_name": "makoto", "last_name": "nijima", "updated_at": "2024-08-10"}, + {"id": "yoshizawa", "first_name": "sumire", "last_name": "yoshizawa", "updated_at": "2024-09-10"}, + ] + case "palaces": + slices = [StreamSlice(cursor_slice={}, partition={})] + + records = [ + {"id": "0", "world": "castle", "owner": "kamoshida"}, + {"id": "1", "world": "museum", "owner": "madarame"}, + {"id": "2", "world": "bank", "owner": "kaneshiro"}, + {"id": "3", "world": "pyramid", "owner": "futaba"}, + {"id": "4", "world": "spaceport", "owner": "okumura"}, + {"id": "5", "world": "casino", "owner": "nijima"}, + {"id": "6", "world": "cruiser", "owner": "shido"}, + ] + + case "party_members_skills": + slices = [StreamSlice(cursor_slice={}, partition={})] + + records = [ + {"id": "0", "name": "hassou tobi"}, + {"id": "1", "name": "mafreidyne"}, + {"id": "2", "name": "myriad truths"}, + ] + case _: + raise ValueError(f"Stream '{stream_name}' does not have associated mocked records") + + return {(_slice.get("start"), _slice.get("end")): [Record(data=stream_data, associated_slice=_slice) for stream_data in records] for _slice in slices} + + +def get_records_for_stream(stream_name: str, messages: List[AirbyteMessage]) -> List[AirbyteRecordMessage]: + return [message.record for message in messages if message.record and message.record.stream == stream_name] + + +def get_states_for_stream(stream_name: str, messages: List[AirbyteMessage]) -> List[AirbyteStateMessage]: + return [message.state for message in messages if message.state and message.state.stream.stream_descriptor.name == stream_name] + + +def disable_emitting_sequential_state_messages(source: ConcurrentDeclarativeSource) -> None: + for concurrent_streams in source._concurrent_streams: # type: ignore # This is the easiest way to disable behavior from the test + concurrent_streams.cursor._connector_state_converter._is_sequential_state = False # type: ignore # see above diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/test_yaml_declarative_source.py b/airbyte-cdk/python/unit_tests/sources/declarative/test_yaml_declarative_source.py index 9f5ead4db775..fc35f5b3d3f2 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/test_yaml_declarative_source.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/test_yaml_declarative_source.py @@ -62,6 +62,7 @@ def test_source_is_created_if_toplevel_fields_are_known(self): pagination_strategy: type: "CursorPagination" cursor_value: "{{ response._metadata.next }}" + page_size: 10 requester: url_base: "https://api.sendgrid.com" path: "/v3/marketing/lists" diff --git a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/scenarios/thread_based_concurrent_stream_scenarios.py b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/scenarios/thread_based_concurrent_stream_scenarios.py index 919b88d61cc7..b8ed5e72ddd9 100644 --- a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/scenarios/thread_based_concurrent_stream_scenarios.py +++ b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/scenarios/thread_based_concurrent_stream_scenarios.py @@ -1,6 +1,7 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # + import logging from airbyte_cdk.sources.message import InMemoryMessageRepository diff --git a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_adapters.py b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_adapters.py index b8cd21b5cd71..7a4ece0c0a9f 100644 --- a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_adapters.py +++ b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_adapters.py @@ -1,6 +1,7 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +import datetime import logging import unittest from unittest.mock import Mock @@ -20,6 +21,9 @@ from airbyte_cdk.sources.streams.concurrent.cursor import Cursor from airbyte_cdk.sources.streams.concurrent.exceptions import ExceptionWithDisplayMessage from airbyte_cdk.sources.streams.concurrent.partitions.record import Record +from airbyte_cdk.sources.streams.concurrent.state_converters.datetime_stream_state_converter import ( + CustomOutputFormatConcurrentStreamStateConverter, +) from airbyte_cdk.sources.streams.core import Stream from airbyte_cdk.sources.types import StreamSlice from airbyte_cdk.sources.utils.slice_logger import SliceLogger @@ -373,12 +377,21 @@ def test_cursor_partition_generator(): stream = Mock() cursor = Mock() message_repository = Mock() + connector_state_converter = CustomOutputFormatConcurrentStreamStateConverter(datetime_format="%Y-%m-%dT%H:%M:%S") cursor_field = Mock() - - expected_slices = [StreamSlice(partition={}, cursor_slice={"start": 1, "end": 2})] - cursor.generate_slices.return_value = [(1, 2)] - - partition_generator = CursorPartitionGenerator(stream, message_repository, cursor, cursor_field) + slice_boundary_fields = ("start", "end") + + expected_slices = [StreamSlice(partition={}, cursor_slice={"start": "2024-01-01T00:00:00", "end": "2024-01-02T00:00:00"})] + cursor.generate_slices.return_value = [(datetime.datetime(year=2024, month=1, day=1), datetime.datetime(year=2024, month=1, day=2))] + + partition_generator = CursorPartitionGenerator( + stream, + message_repository, + cursor, + connector_state_converter, + cursor_field, + slice_boundary_fields + ) partitions = list(partition_generator.generate()) generated_slices = [partition.to_slice() for partition in partitions] diff --git a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_cursor.py b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_cursor.py index 1327bafda7ea..3b255844214c 100644 --- a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_cursor.py +++ b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_cursor.py @@ -343,6 +343,73 @@ def test_given_difference_between_slices_match_slice_range_when_generate_slices_ (datetime.fromtimestamp(30, timezone.utc), datetime.fromtimestamp(40, timezone.utc)), ] + @freezegun.freeze_time(time_to_freeze=datetime.fromtimestamp(50, timezone.utc)) + def test_given_small_slice_range_with_granularity_when_generate_slices_then_create_many_slices(self): + start = datetime.fromtimestamp(1, timezone.utc) + small_slice_range = timedelta(seconds=10) + granularity = timedelta(seconds=1) + cursor = ConcurrentCursor( + _A_STREAM_NAME, + _A_STREAM_NAMESPACE, + { + "state_type": ConcurrencyCompatibleStateType.date_range.value, + "slices": [ + {EpochValueConcurrentStreamStateConverter.START_KEY: 1, EpochValueConcurrentStreamStateConverter.END_KEY: 20}, + ], + }, + self._message_repository, + self._state_manager, + EpochValueConcurrentStreamStateConverter(is_sequential_state=False), + CursorField(_A_CURSOR_FIELD_KEY), + _SLICE_BOUNDARY_FIELDS, + start, + EpochValueConcurrentStreamStateConverter.get_end_provider(), + _NO_LOOKBACK_WINDOW, + small_slice_range, + granularity, + ) + + slices = list(cursor.generate_slices()) + + assert slices == [ + (datetime.fromtimestamp(20, timezone.utc), datetime.fromtimestamp(29, timezone.utc)), + (datetime.fromtimestamp(30, timezone.utc), datetime.fromtimestamp(39, timezone.utc)), + (datetime.fromtimestamp(40, timezone.utc), datetime.fromtimestamp(50, timezone.utc)), + ] + + @freezegun.freeze_time(time_to_freeze=datetime.fromtimestamp(50, timezone.utc)) + def test_given_difference_between_slices_match_slice_range_and_cursor_granularity_when_generate_slices_then_create_one_slice(self): + start = datetime.fromtimestamp(1, timezone.utc) + small_slice_range = timedelta(seconds=10) + granularity = timedelta(seconds=1) + cursor = ConcurrentCursor( + _A_STREAM_NAME, + _A_STREAM_NAMESPACE, + { + "state_type": ConcurrencyCompatibleStateType.date_range.value, + "slices": [ + {EpochValueConcurrentStreamStateConverter.START_KEY: 1, EpochValueConcurrentStreamStateConverter.END_KEY: 30}, + {EpochValueConcurrentStreamStateConverter.START_KEY: 41, EpochValueConcurrentStreamStateConverter.END_KEY: 50}, + ], + }, + self._message_repository, + self._state_manager, + EpochValueConcurrentStreamStateConverter(is_sequential_state=False), + CursorField(_A_CURSOR_FIELD_KEY), + _SLICE_BOUNDARY_FIELDS, + start, + EpochValueConcurrentStreamStateConverter.get_end_provider(), + _NO_LOOKBACK_WINDOW, + small_slice_range, + granularity, + ) + + slices = list(cursor.generate_slices()) + + assert slices == [ + (datetime.fromtimestamp(31, timezone.utc), datetime.fromtimestamp(40, timezone.utc)), # FIXME there should probably be the granularity at the beginning too + ] + @freezegun.freeze_time(time_to_freeze=datetime.fromtimestamp(50, timezone.utc)) def test_given_non_continuous_state_when_generate_slices_then_create_slices_between_gaps_and_after(self): cursor = ConcurrentCursor( @@ -434,6 +501,78 @@ def test_given_start_is_before_first_slice_lower_boundary_when_generate_slices_t (datetime.fromtimestamp(20, timezone.utc), datetime.fromtimestamp(50, timezone.utc)), ] + def test_slices_with_records_when_close_then_most_recent_cursor_value_from_most_recent_slice(self) -> None: + cursor = self._cursor_with_slice_boundary_fields(is_sequential_state=False) + first_partition = _partition({_LOWER_SLICE_BOUNDARY_FIELD: 0, _UPPER_SLICE_BOUNDARY_FIELD: 10}) + second_partition = _partition({_LOWER_SLICE_BOUNDARY_FIELD: 10, _UPPER_SLICE_BOUNDARY_FIELD: 20}) + cursor.observe(_record(5, partition=first_partition)) + cursor.close_partition(first_partition) + + cursor.observe(_record(15, partition=second_partition)) + cursor.close_partition(second_partition) + + assert self._state_manager.update_state_for_stream.call_args_list[-1].args[2] == { + "slices": [ + {"end": 20, "start": 0, "most_recent_cursor_value": 15} + ], + "state_type": "date-range", + } + + def test_last_slice_without_records_when_close_then_most_recent_cursor_value_is_from_previous_slice(self) -> None: + cursor = self._cursor_with_slice_boundary_fields(is_sequential_state=False) + first_partition = _partition({_LOWER_SLICE_BOUNDARY_FIELD: 0, _UPPER_SLICE_BOUNDARY_FIELD: 10}) + second_partition = _partition({_LOWER_SLICE_BOUNDARY_FIELD: 10, _UPPER_SLICE_BOUNDARY_FIELD: 20}) + cursor.observe(_record(5, partition=first_partition)) + cursor.close_partition(first_partition) + + cursor.close_partition(second_partition) + + assert self._state_manager.update_state_for_stream.call_args_list[-1].args[2] == { + "slices": [ + {"end": 20, "start": 0, "most_recent_cursor_value": 5} + ], + "state_type": "date-range", + } + + def test_most_recent_cursor_value_outside_of_boundaries_when_close_then_most_recent_cursor_value_still_considered(self) -> None: + """ + Not sure what is the value of this behavior but I'm simply documenting how it is today + """ + cursor = self._cursor_with_slice_boundary_fields(is_sequential_state=False) + partition = _partition({_LOWER_SLICE_BOUNDARY_FIELD: 0, _UPPER_SLICE_BOUNDARY_FIELD: 10}) + cursor.observe(_record(15, partition=partition)) + cursor.close_partition(partition) + + assert self._state_manager.update_state_for_stream.call_args_list[-1].args[2] == { + "slices": [ + {"end": 10, "start": 0, "most_recent_cursor_value": 15} + ], + "state_type": "date-range", + } + + def test_most_recent_cursor_value_on_sequential_state_when_close_then_cursor_value_is_most_recent_cursor_value(self) -> None: + cursor = self._cursor_with_slice_boundary_fields(is_sequential_state=True) + partition = _partition({_LOWER_SLICE_BOUNDARY_FIELD: 0, _UPPER_SLICE_BOUNDARY_FIELD: 10}) + cursor.observe(_record(7, partition=partition)) + cursor.close_partition(partition) + + assert self._state_manager.update_state_for_stream.call_args_list[-1].args[2] == { + _A_CURSOR_FIELD_KEY: 7 + } + + def test_non_continuous_slices_on_sequential_state_when_close_then_cursor_value_is_most_recent_cursor_value_of_first_slice(self) -> None: + cursor = self._cursor_with_slice_boundary_fields(is_sequential_state=True) + first_partition = _partition({_LOWER_SLICE_BOUNDARY_FIELD: 0, _UPPER_SLICE_BOUNDARY_FIELD: 10}) + third_partition = _partition({_LOWER_SLICE_BOUNDARY_FIELD: 20, _UPPER_SLICE_BOUNDARY_FIELD: 30}) # second partition has failed + cursor.observe(_record(7, partition=first_partition)) + cursor.close_partition(first_partition) + + cursor.close_partition(third_partition) + + assert self._state_manager.update_state_for_stream.call_args_list[-1].args[2] == { + _A_CURSOR_FIELD_KEY: 7 + } + @freezegun.freeze_time(time_to_freeze=datetime(2024, 4, 1, 0, 0, 0, 0, tzinfo=timezone.utc)) @pytest.mark.parametrize( @@ -452,7 +591,7 @@ def test_given_start_is_before_first_slice_lower_boundary_when_generate_slices_t (datetime(2024, 1, 21, 0, 0, tzinfo=timezone.utc), datetime(2024, 1, 30, 23, 59, 59, tzinfo=timezone.utc)), (datetime(2024, 1, 31, 0, 0, tzinfo=timezone.utc), datetime(2024, 2, 9, 23, 59, 59, tzinfo=timezone.utc)), (datetime(2024, 2, 10, 0, 0, tzinfo=timezone.utc), datetime(2024, 2, 19, 23, 59, 59, tzinfo=timezone.utc)), - (datetime(2024, 2, 20, 0, 0, tzinfo=timezone.utc), datetime(2024, 2, 29, 23, 59, 59, tzinfo=timezone.utc)) + (datetime(2024, 2, 20, 0, 0, tzinfo=timezone.utc), datetime(2024, 3, 1, 0, 0, 0, tzinfo=timezone.utc)) ], id="test_datetime_based_cursor_all_fields", ), @@ -474,7 +613,7 @@ def test_given_start_is_before_first_slice_lower_boundary_when_generate_slices_t [ (datetime(2024, 2, 5, 0, 0, 0, tzinfo=timezone.utc), datetime(2024, 2, 14, 23, 59, 59, tzinfo=timezone.utc)), (datetime(2024, 2, 15, 0, 0, 0, tzinfo=timezone.utc), datetime(2024, 2, 24, 23, 59, 59, tzinfo=timezone.utc)), - (datetime(2024, 2, 25, 0, 0, 0, tzinfo=timezone.utc), datetime(2024, 2, 29, 23, 59, 59, tzinfo=timezone.utc)) + (datetime(2024, 2, 25, 0, 0, 0, tzinfo=timezone.utc), datetime(2024, 3, 1, 0, 0, 0, tzinfo=timezone.utc)) ], id="test_datetime_based_cursor_with_state", ), @@ -497,7 +636,7 @@ def test_given_start_is_before_first_slice_lower_boundary_when_generate_slices_t (datetime(2024, 1, 20, 0, 0, tzinfo=timezone.utc), datetime(2024, 2, 8, 23, 59, 59, tzinfo=timezone.utc)), (datetime(2024, 2, 9, 0, 0, tzinfo=timezone.utc), datetime(2024, 2, 28, 23, 59, 59, tzinfo=timezone.utc)), (datetime(2024, 2, 29, 0, 0, tzinfo=timezone.utc), datetime(2024, 3, 19, 23, 59, 59, tzinfo=timezone.utc)), - (datetime(2024, 3, 20, 0, 0, tzinfo=timezone.utc), datetime(2024, 3, 31, 23, 59, 59, tzinfo=timezone.utc)), + (datetime(2024, 3, 20, 0, 0, tzinfo=timezone.utc), datetime(2024, 4, 1, 0, 0, 0, tzinfo=timezone.utc)), ], id="test_datetime_based_cursor_with_state_and_end_date", ), @@ -510,7 +649,7 @@ def test_given_start_is_before_first_slice_lower_boundary_when_generate_slices_t {}, [ (datetime(2024, 1, 1, 0, 0, 0, tzinfo=timezone.utc), datetime(2024, 1, 31, 23, 59, 59, tzinfo=timezone.utc)), - (datetime(2024, 2, 1, 0, 0, 0, tzinfo=timezone.utc), datetime(2024, 2, 29, 23, 59, 59, tzinfo=timezone.utc)), + (datetime(2024, 2, 1, 0, 0, 0, tzinfo=timezone.utc), datetime(2024, 3, 1, 0, 0, 0, tzinfo=timezone.utc)), ], id="test_datetime_based_cursor_using_large_step_duration", ), @@ -717,7 +856,7 @@ def test_close_partition_concurrent_cursor_from_datetime_based_cursor(): "gods", _A_STREAM_NAMESPACE, { - "slices": [{"end": "2024-08-23T00:00:00.000Z", "start": "2024-08-01T00:00:00.000Z"}], + "slices": [{"end": "2024-08-23T00:00:00.000Z", "start": "2024-08-01T00:00:00.000Z", "most_recent_cursor_value": "2024-08-23T00:00:00.000Z"}], "state_type": "date-range" }, ) @@ -795,9 +934,8 @@ def test_close_partition_with_slice_range_concurrent_cursor_from_datetime_based_ _A_STREAM_NAMESPACE, { "slices": [ - {"start": "2024-07-01T00:00:00.000Z", "end": "2024-07-16T00:00:00.000Z"}, - {"start": "2024-08-15T00:00:00.000Z", "end": "2024-08-30T00:00:00.000Z"} - + {"start": "2024-07-01T00:00:00.000Z", "end": "2024-07-16T00:00:00.000Z", "most_recent_cursor_value": "2024-07-05T00:00:00.000Z"}, + {"start": "2024-08-15T00:00:00.000Z", "end": "2024-08-30T00:00:00.000Z", "most_recent_cursor_value": "2024-08-20T00:00:00.000Z"}, ], "state_type": "date-range" }, @@ -887,8 +1025,8 @@ def test_close_partition_with_slice_range_granularity_concurrent_cursor_from_dat _A_STREAM_NAMESPACE, { "slices": [ - {"start": "2024-07-01T00:00:00.000Z", "end": "2024-07-31T00:00:00.000Z"}, - {"start": "2024-08-15T00:00:00.000Z", "end": "2024-08-29T00:00:00.000Z"} + {"start": "2024-07-01T00:00:00.000Z", "end": "2024-07-31T00:00:00.000Z", "most_recent_cursor_value": "2024-07-25T00:00:00.000Z"}, + {"start": "2024-08-15T00:00:00.000Z", "end": "2024-08-29T00:00:00.000Z", "most_recent_cursor_value": "2024-08-20T00:00:00.000Z"} ], "state_type": "date-range" diff --git a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_default_stream.py b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_default_stream.py index eef8c9fd6bb2..a0d36e1683e4 100644 --- a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_default_stream.py +++ b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_default_stream.py @@ -166,6 +166,7 @@ def test_as_airbyte_stream_with_a_cursor(self): default_cursor_field=["date"], source_defined_primary_key=None, namespace=None, + is_resumable=True, ) airbyte_stream = stream.as_airbyte_stream() diff --git a/airbyte-cdk/python/unit_tests/test/mock_http/test_mocker.py b/airbyte-cdk/python/unit_tests/test/mock_http/test_mocker.py index 2df549e2bb9f..2b086a1748c6 100644 --- a/airbyte-cdk/python/unit_tests/test/mock_http/test_mocker.py +++ b/airbyte-cdk/python/unit_tests/test/mock_http/test_mocker.py @@ -240,3 +240,20 @@ def decorated_function(http_mocker): with pytest.raises(ValueError): decorated_function() + + def test_given_unknown_request_when_assert_number_of_calls_then_raise(self): + @HttpMocker() + def decorated_function(http_mocker): + http_mocker.get(HttpRequest(_A_URL), _A_RESPONSE) + http_mocker.assert_number_of_calls(HttpRequest(_ANOTHER_URL), 1) + + with pytest.raises(ValueError): + decorated_function() + + def test_given_request_already_mocked_when_decorate_then_raise(self): + with HttpMocker() as http_mocker: + a_request = HttpRequest(_A_URL, _SOME_QUERY_PARAMS, _SOME_HEADERS) + http_mocker.get(a_request, _A_RESPONSE) + + with pytest.raises(ValueError): + http_mocker.get(a_request, _A_RESPONSE) From d8ef4d104059c1a3597f4348fef30207fd654ce8 Mon Sep 17 00:00:00 2001 From: brianjlai Date: Wed, 30 Oct 2024 03:22:25 +0000 Subject: [PATCH 483/808] =?UTF-8?q?=F0=9F=A4=96=20major=20bump=20Python=20?= =?UTF-8?q?CDK=20to=20version=206.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-cdk/python/CHANGELOG.md | 3 +++ airbyte-cdk/python/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index 4b0993edc2d6..ff366e4bf120 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 6.0.0 +Introduce support for low-code incremental streams to be run within the concurrent CDK framework + ## 5.17.0 Add Per Partition with Global fallback Cursor diff --git a/airbyte-cdk/python/pyproject.toml b/airbyte-cdk/python/pyproject.toml index 7bec56cb0f13..06888387fee7 100644 --- a/airbyte-cdk/python/pyproject.toml +++ b/airbyte-cdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-cdk" -version = "5.17.0" +version = "6.0.0" description = "A framework for writing Airbyte Connectors." authors = ["Airbyte "] license = "MIT" From 7f6310c0c3af9be0fe85d3d4061d43bfa11ac72d Mon Sep 17 00:00:00 2001 From: brianjlai Date: Wed, 30 Oct 2024 03:28:30 +0000 Subject: [PATCH 484/808] =?UTF-8?q?=F0=9F=A4=96=20Cut=20version=206.0.0=20?= =?UTF-8?q?of=20source-declarative-manifest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-declarative-manifest/metadata.yaml | 2 +- .../connectors/source-declarative-manifest/poetry.lock | 8 ++++---- .../connectors/source-declarative-manifest/pyproject.toml | 4 ++-- docs/integrations/sources/low-code.md | 1 + 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml index 8d5634b416ac..66566ea98b42 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml +++ b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml @@ -8,7 +8,7 @@ data: connectorType: source definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436 # This version should not be updated manually - it is updated by the CDK release workflow. - dockerImageTag: 5.17.0 + dockerImageTag: 6.0.0 dockerRepository: airbyte/source-declarative-manifest # This page is hidden from the docs for now, since the connector is not in any Airbyte registries. documentationUrl: https://docs.airbyte.com/integrations/sources/low-code diff --git a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock index 061d388c6034..3d6dddf18c7b 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock +++ b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "5.17.0" +version = "6.0.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, - {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, + {file = "airbyte_cdk-6.0.0-py3-none-any.whl", hash = "sha256:c0d317202b73655307089fd43571444fcd14e68a97c826763bf0b76fb018d5a4"}, + {file = "airbyte_cdk-6.0.0.tar.gz", hash = "sha256:ebedcfb431cc229427f0526b16a639ffafb3e153fbacadf4c859415d702c7e85"}, ] [package.dependencies] @@ -1747,4 +1747,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10,<3.12" -content-hash = "70df7684faebd836c644dce4dca63ec92b77c85cc443ae5a1e52034c1285e086" +content-hash = "3646a321683a198f1329a135d1c372bd95bef85b35093fb2cb3f4611c873d2a8" diff --git a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml index 40398f12f6ef..71ac69b22bb7 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml +++ b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "5.17.0" +version = "6.0.0" name = "source-declarative-manifest" description = "Base source implementation for low-code sources." authors = ["Airbyte "] @@ -17,7 +17,7 @@ include = "source_declarative_manifest" [tool.poetry.dependencies] python = "^3.10,<3.12" -airbyte-cdk = "5.17.0" +airbyte-cdk = "6.0.0" [tool.poetry.scripts] source-declarative-manifest = "source_declarative_manifest.run:run" diff --git a/docs/integrations/sources/low-code.md b/docs/integrations/sources/low-code.md index b830b4ef1f39..4f8f3ec75abb 100644 --- a/docs/integrations/sources/low-code.md +++ b/docs/integrations/sources/low-code.md @@ -9,6 +9,7 @@ The changelog below is automatically updated by the `bump_version` command as pa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 6.0.0 | 2024-10-30 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.0.0 | | 5.17.0 | 2024-10-28 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.17.0 | | 5.16.0 | 2024-10-23 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.16.0 | | 5.15.0 | 2024-10-23 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.15.0 | From a0e204c05ed1dffb0e9828760d239f4cc42aef7b Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Tue, 29 Oct 2024 22:10:06 -0700 Subject: [PATCH 485/808] Destination-MotherDuck: Rename package (#47979) --- .../connectors/destination-motherduck/metadata.yaml | 2 +- .../connectors/destination-motherduck/pyproject.toml | 4 ++-- docs/integrations/destinations/motherduck.md | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index cb1fa55a967b..29ceebea0d06 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index 7ce1404b9bda..3d80cfbefb89 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] -name = "destination-motherduck" -version = "0.1.10" +name = "airbyte-destination-motherduck" +version = "0.1.11" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index f3cc72881ac9..a9b2f776428a 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.11 | 2024-10-30 | [47979](https://github.com/airbytehq/airbyte/pull/47979) | Rename package. | | 0.1.10 | 2024-10-29 | [47958](https://github.com/airbytehq/airbyte/pull/47958) | Add state counts and other fixes. | | 0.1.9 | 2024-10-29 | [47950](https://github.com/airbytehq/airbyte/pull/47950) | Fix bug: add double quotes to column names that are reserved keywords. | | 0.1.8 | 2024-10-29 | [47952](https://github.com/airbytehq/airbyte/pull/47952) | Fix: Add max batch size for loads. | From 1cf8b5884edc585d908cc0c21fe4f8d8e30e829b Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Tue, 29 Oct 2024 22:33:21 -0700 Subject: [PATCH 486/808] Destination-MotherDuck: Disable PyPi publish; Add package declaration (#47987) Co-authored-by: Octavia Squidington III --- .../connectors/destination-motherduck/metadata.yaml | 4 ++-- .../connectors/destination-motherduck/pyproject.toml | 5 ++++- docs/integrations/destinations/motherduck.md | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index 29ceebea0d06..f931b0dbaf43 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.11 + dockerImageTag: 0.1.12 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg @@ -20,7 +20,7 @@ data: breakingChanges: [] remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-destination-motherduck resourceRequirements: jobSpecific: diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index 3d80cfbefb89..f2d42f1d639c 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,11 +1,14 @@ [tool.poetry] name = "airbyte-destination-motherduck" -version = "0.1.11" +version = "0.1.12" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" readme = "README.md" +[[tool.poetry.packages]] +include = "destination_motherduck" + [tool.poetry.dependencies] python = "^3.10" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index a9b2f776428a..cb3bac2d1964 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.12 | 2024-10-30 | [47987](https://github.com/airbytehq/airbyte/pull/47987) | Disable PyPi publish. | | 0.1.11 | 2024-10-30 | [47979](https://github.com/airbytehq/airbyte/pull/47979) | Rename package. | | 0.1.10 | 2024-10-29 | [47958](https://github.com/airbytehq/airbyte/pull/47958) | Add state counts and other fixes. | | 0.1.9 | 2024-10-29 | [47950](https://github.com/airbytehq/airbyte/pull/47950) | Fix bug: add double quotes to column names that are reserved keywords. | From 5358e3d84f1b387c0cb1e1f0189ec92c5b1ecc46 Mon Sep 17 00:00:00 2001 From: Artem Inzhyyants <36314070+artem1205@users.noreply.github.com> Date: Wed, 30 Oct 2024 16:22:49 +0100 Subject: [PATCH 487/808] ref(source-amazon-ads): migrate stream `SponsoredDisplayReportStream` to amazon ads reports V3 (#47366) Signed-off-by: Artem Inzhyyants Co-authored-by: maxi297 Co-authored-by: Natalie Kwong <38087517+nataliekwong@users.noreply.github.com> --- .../acceptance-test-config.yml | 40 +- .../source-amazon-ads/metadata.yaml | 14 +- .../connectors/source-amazon-ads/poetry.lock | 89 +-- .../source-amazon-ads/pyproject.toml | 10 +- .../declarative_source_adapter.py | 3 +- .../source_amazon_ads/source.py | 4 - .../source_amazon_ads/streams/__init__.py | 4 - .../source_amazon_ads/streams/common.py | 1 - .../streams/report_streams/__init__.py | 5 +- .../streams/report_streams/brands_report.py | 121 ---- .../report_streams/brands_video_report.py | 146 ----- .../streams/report_streams/display_report.py | 540 +++++++++++------- .../streams/report_streams/products_report.py | 3 +- .../report_streams/report_stream_models.py | 42 ++ .../streams/report_streams/report_streams.py | 38 +- .../streams/sponsored_products.py | 2 +- .../integrations/ad_requests/__init__.py | 2 - .../report_check_status_request_builer.py | 14 +- ...sponsored_brands_report_request_builder.py | 66 --- ...red_brands_video_report_request_builder.py | 67 --- ...ponsored_display_report_request_builder.py | 89 ++- .../test_attribution_report_streams.py | 4 +- .../integrations/test_report_streams.py | 247 ++------ .../integrations/test_sponsored_streams.py | 4 +- .../unit_tests/integrations/utils.py | 2 +- .../unit_tests/test_report_streams.py | 203 +++---- .../unit_tests/test_source.py | 4 +- .../sources/amazon-ads-migrations.md | 39 ++ docs/integrations/sources/amazon-ads.md | 63 +- 29 files changed, 716 insertions(+), 1150 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_video_report.py create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_stream_models.py delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_brands_report_request_builder.py delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_brands_video_report_request_builder.py diff --git a/airbyte-integrations/connectors/source-amazon-ads/acceptance-test-config.yml b/airbyte-integrations/connectors/source-amazon-ads/acceptance-test-config.yml index 2fda08b5232d..145492740f21 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-amazon-ads/acceptance-test-config.yml @@ -1,4 +1,22 @@ +connector_image: airbyte/source-amazon-ads:dev +test_strictness_level: high acceptance_tests: + spec: + tests: + - spec_path: integration_tests/spec.json + backward_compatibility_tests_config: + disable_for_version: 5.0.0 + connection: + tests: + - config_path: secrets/config.json + status: succeed + - config_path: integration_tests/invalid_config.json + status: exception + discovery: + tests: + - config_path: secrets/config.json + backward_compatibility_tests_config: + disable_for_version: 3.4.3 basic_read: tests: - config_path: secrets/config.json @@ -19,12 +37,8 @@ acceptance_tests: bypass_reason: "can't populate stream because it requires real ad campaign" - name: sponsored_display_report_stream bypass_reason: "can't populate stream because it requires real ad campaign" - - name: sponsored_brands_report_stream - bypass_reason: "can't populate stream because it requires real ad campaign" - name: sponsored_brands_v3_report_stream bypass_reason: "can't populate stream because it requires real ad campaign" - - name: sponsored_brands_video_report_stream - bypass_reason: "can't populate stream because it requires real ad campaign" - name: sponsored_products_report_stream bypass_reason: "can't populate stream because it requires real ad campaign" - name: sponsored_display_creatives @@ -34,17 +48,6 @@ acceptance_tests: timeout_seconds: 2400 expect_records: path: integration_tests/expected_records.jsonl - connection: - tests: - - config_path: secrets/config.json - status: succeed - - config_path: integration_tests/invalid_config.json - status: exception - discovery: - tests: - - config_path: secrets/config.json - backward_compatibility_tests_config: - disable_for_version: 3.4.3 full_refresh: tests: - config_path: secrets/config.json @@ -52,10 +55,3 @@ acceptance_tests: timeout_seconds: 3600 incremental: bypass_reason: "can't populate stream because it requires real ad campaign" - spec: - tests: - - spec_path: integration_tests/spec.json - backward_compatibility_tests_config: - disable_for_version: 5.0.0 -connector_image: airbyte/source-amazon-ads:dev -test_strictness_level: high diff --git a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml index be3c1c29ceb3..4aaafc13b796 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: c6b0a29e-1da9-4512-9002-7bfd0cba2246 - dockerImageTag: 5.0.20 + dockerImageTag: 6.0.0 dockerRepository: airbyte/source-amazon-ads documentationUrl: https://docs.airbyte.com/integrations/sources/amazon-ads githubIssueLabel: source-amazon-ads @@ -33,6 +33,18 @@ data: releaseStage: generally_available releases: breakingChanges: + 6.0.0: + message: + "The Report API V2 is being deprecated in favor of V3. Given this change, fields available through the sponsoredDisplayReportStream stream will change, + and streams `SponsoredBrandsReportStream` `SponsoredBrandsVideoReportStream` will become unavailable. We recommend using `SponsoredBrandsV3ReportStream` as an alternative stream with the same dataset." + upgradeDeadline: "2024-11-01" + deadlineAction: "auto_upgrade" + scopedImpact: + - scopeType: stream + impactedScopes: + - "sponsored_display_report_stream" + - "sponsored_brands_report_stream" + - "sponsored_brands_video_report_stream" 5.0.0: message: "`SponsoredBrandCampaigns`, `SponsoredBrandsAdGroups`, `SponsoredProductCampaigns`, and `SponsoredProductAdGroupBidRecommendations` streams have updated schemas and must be reset." upgradeDeadline: "2024-03-27" diff --git a/airbyte-integrations/connectors/source-amazon-ads/poetry.lock b/airbyte-integrations/connectors/source-amazon-ads/poetry.lock index d543f3a347cc..714fa302e666 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-amazon-ads/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "airbyte-cdk" @@ -76,16 +76,6 @@ doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - [[package]] name = "attrs" version = "24.2.0" @@ -779,22 +769,6 @@ files = [ {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] -[[package]] -name = "oauthlib" -version = "3.2.2" -description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" -optional = false -python-versions = ">=3.6" -files = [ - {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, - {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, -] - -[package.extras] -rsa = ["cryptography (>=3.0.0)"] -signals = ["blinker (>=1.4.0)"] -signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] - [[package]] name = "orjson" version = "3.10.10" @@ -938,17 +912,6 @@ files = [ dev = ["pre-commit", "tox"] testing = ["pytest", "pytest-benchmark"] -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - [[package]] name = "pycparser" version = "2.22" @@ -1094,27 +1057,25 @@ files = [ [[package]] name = "pytest" -version = "6.2.5" +version = "8.3.3" description = "pytest: simple powerful testing with Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, + {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, + {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, ] [package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" colorama = {version = "*", markers = "sys_platform == \"win32\""} +exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" +pluggy = ">=1.5,<2" +tomli = {version = ">=1", markers = "python_version < \"3.11\""} [package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] +dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] [[package]] name = "pytest-mock" @@ -1299,24 +1260,6 @@ requests = ">=2.22,<3" [package.extras] fixture = ["fixtures"] -[[package]] -name = "requests-oauthlib" -version = "1.3.1" -description = "OAuthlib authentication support for Requests." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "requests-oauthlib-1.3.1.tar.gz", hash = "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a"}, - {file = "requests_oauthlib-1.3.1-py2.py3-none-any.whl", hash = "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5"}, -] - -[package.dependencies] -oauthlib = ">=3.0.0" -requests = ">=2.0.0" - -[package.extras] -rsa = ["oauthlib[signedtoken] (>=3.0.0)"] - [[package]] name = "requests-toolbelt" version = "1.0.0" @@ -1409,14 +1352,14 @@ doc = ["reno", "sphinx"] test = ["pytest", "tornado (>=4.5)", "typeguard"] [[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" +name = "tomli" +version = "2.0.2" +description = "A lil' TOML parser" optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +python-versions = ">=3.8" files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, + {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, + {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, ] [[package]] @@ -1568,4 +1511,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9,<3.12" -content-hash = "c1d7d10e74c03b6519d821cb3006edf3dacb1540e35960f1fdbbef10d2c5334e" +content-hash = "f9cc9aa4f9fd49406de4d61d63aec486504655fcb1f7f996d633d78ee4183a03" diff --git a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml index 848e63533431..cf80c4716fd3 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "5.0.20" +version = "6.0.0" name = "source-amazon-ads" description = "Source implementation for Amazon Ads." authors = [ "Airbyte ",] @@ -17,7 +17,6 @@ include = "source_amazon_ads" [tool.poetry.dependencies] python = "^3.9,<3.12" -requests-oauthlib = "==1.3.1" airbyte-cdk = "0.90.0" pendulum = "==2.1.2" @@ -26,7 +25,6 @@ source-amazon-ads = "source_amazon_ads.run:run" [tool.poetry.group.dev.dependencies] responses = "^0.23.1" -freezegun = "^1.2.0" -requests-mock = "^1.9.3" -pytest-mock = "^3.7.0" -pytest = "^6.1" +freezegun = "*" +requests-mock = "*" +pytest-mock = "*" diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/declarative_source_adapter.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/declarative_source_adapter.py index 6b46127b0b6b..5772e3ba862d 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/declarative_source_adapter.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/declarative_source_adapter.py @@ -6,11 +6,10 @@ from logging import Logger from typing import Any, List, Mapping -from airbyte_cdk.models import AirbyteConnectionStatus +from airbyte_cdk.models import AirbyteConnectionStatus, ConnectorSpecification from airbyte_cdk.sources import AbstractSource from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource from airbyte_cdk.sources.streams import Stream -from airbyte_protocol.models import ConnectorSpecification class DeclarativeSourceAdapter(YamlDeclarativeSource): diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/source.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/source.py index d65a949e48d5..cca9dfcd088e 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/source.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/source.py @@ -22,9 +22,7 @@ SponsoredBrandsAdGroups, SponsoredBrandsCampaigns, SponsoredBrandsKeywords, - SponsoredBrandsReportStream, SponsoredBrandsV3ReportStream, - SponsoredBrandsVideoReportStream, SponsoredDisplayAdGroups, SponsoredDisplayBudgetRules, SponsoredDisplayCampaigns, @@ -127,9 +125,7 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: SponsoredBrandsCampaigns, SponsoredBrandsAdGroups, SponsoredBrandsKeywords, - SponsoredBrandsReportStream, SponsoredBrandsV3ReportStream, - SponsoredBrandsVideoReportStream, AttributionReportPerformanceAdgroup, AttributionReportPerformanceCampaign, AttributionReportPerformanceCreative, diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/__init__.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/__init__.py index caa39bccfc91..fab14b99912d 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/__init__.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/__init__.py @@ -10,9 +10,7 @@ from .portfolios import Portfolios from .profiles import Profiles from .report_streams import ( - SponsoredBrandsReportStream, SponsoredBrandsV3ReportStream, - SponsoredBrandsVideoReportStream, SponsoredDisplayReportStream, SponsoredProductsReportStream, ) @@ -64,9 +62,7 @@ "SponsoredBrandsKeywords", "SponsoredDisplayReportStream", "SponsoredProductsReportStream", - "SponsoredBrandsReportStream", "SponsoredBrandsV3ReportStream", - "SponsoredBrandsVideoReportStream", "AttributionReportPerformanceAdgroup", "AttributionReportPerformanceCampaign", "AttributionReportPerformanceCreative", diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/common.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/common.py index 9ad9bb481f94..824b739977b5 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/common.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/common.py @@ -42,7 +42,6 @@ class to provide explanation why it had been done in this way. │ | └── SponsoredBrandsAdGroups │ └── SponsoredBrandsKeywords └── ReportStream - ├── SponsoredBrandsReportStream ├── SponsoredBrandsV3ReportStream ├── SponsoredDisplayReportStream └── SponsoredProductsReportStream diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/__init__.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/__init__.py index 314d3770336b..130750e8ecc1 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/__init__.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/__init__.py @@ -1,15 +1,12 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # -from .brands_report import SponsoredBrandsReportStream, SponsoredBrandsV3ReportStream -from .brands_video_report import SponsoredBrandsVideoReportStream +from .brands_report import SponsoredBrandsV3ReportStream from .display_report import SponsoredDisplayReportStream from .products_report import SponsoredProductsReportStream __all__ = [ "SponsoredDisplayReportStream", "SponsoredProductsReportStream", - "SponsoredBrandsReportStream", "SponsoredBrandsV3ReportStream", - "SponsoredBrandsVideoReportStream", ] diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_report.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_report.py index fbe14a4bc118..2a57ef1c3aba 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_report.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_report.py @@ -7,127 +7,6 @@ from .products_report import SponsoredProductsReportStream from .report_streams import ReportStream -METRICS_MAP = { - "keywords": [ - "campaignName", - "campaignId", - "campaignStatus", - "campaignBudget", - "campaignBudgetType", - "campaignRuleBasedBudget", - "applicableBudgetRuleId", - "applicableBudgetRuleName", - "adGroupName", - "adGroupId", - "keywordText", - "keywordBid", - "keywordStatus", - "searchTermImpressionRank", - "matchType", - "impressions", - "clicks", - "cost", - "attributedDetailPageViewsClicks14d", - "attributedSales14d", - "attributedSales14dSameSKU", - "attributedConversions14d", - "attributedConversions14dSameSKU", - "attributedOrdersNewToBrand14d", - "attributedOrdersNewToBrandPercentage14d", - "attributedOrderRateNewToBrand14d", - "attributedSalesNewToBrand14d", - "attributedSalesNewToBrandPercentage14d", - "attributedUnitsOrderedNewToBrand14d", - "attributedUnitsOrderedNewToBrandPercentage14d", - "unitsSold14d", - "dpv14d", - "attributedBrandedSearches14d", - "keywordId", - "searchTermImpressionShare", - ], - "adGroups": [ - "campaignName", - "campaignId", - "campaignStatus", - "campaignBudget", - "campaignBudgetType", - "adGroupName", - "adGroupId", - "impressions", - "clicks", - "cost", - "attributedDetailPageViewsClicks14d", - "attributedSales14d", - "attributedSales14dSameSKU", - "attributedConversions14d", - "attributedConversions14dSameSKU", - "attributedOrdersNewToBrand14d", - "attributedOrdersNewToBrandPercentage14d", - "attributedOrderRateNewToBrand14d", - "attributedSalesNewToBrand14d", - "attributedSalesNewToBrandPercentage14d", - "attributedUnitsOrderedNewToBrand14d", - "attributedUnitsOrderedNewToBrandPercentage14d", - "unitsSold14d", - "dpv14d", - "attributedBrandedSearches14d", - ], - "campaigns": [ - "campaignName", - "campaignId", - "campaignStatus", - "campaignBudget", - "campaignBudgetType", - "campaignRuleBasedBudget", - "applicableBudgetRuleId", - "applicableBudgetRuleName", - "impressions", - "clicks", - "cost", - "attributedDetailPageViewsClicks14d", - "attributedSales14d", - "attributedSales14dSameSKU", - "attributedConversions14d", - "attributedConversions14dSameSKU", - "attributedOrdersNewToBrand14d", - "attributedOrdersNewToBrandPercentage14d", - "attributedOrderRateNewToBrand14d", - "attributedSalesNewToBrand14d", - "attributedSalesNewToBrandPercentage14d", - "attributedUnitsOrderedNewToBrand14d", - "attributedUnitsOrderedNewToBrandPercentage14d", - "unitsSold14d", - "dpv14d", - "attributedBrandedSearches14d", - ], -} - -METRICS_TYPE_TO_ID_MAP = { - "keywords": "keywordBid", - "adGroups": "adGroupId", - "campaigns": "campaignId", -} - - -class SponsoredBrandsReportStream(ReportStream): - """ - https://advertising.amazon.com/API/docs/en-us/reference/sponsored-brands/2/reports - """ - - def report_init_endpoint(self, record_type: str) -> str: - return f"/v2/hsa/{record_type}/report" - - metrics_map = METRICS_MAP - metrics_type_to_id_map = METRICS_TYPE_TO_ID_MAP - - def _get_init_report_body(self, report_date: str, record_type: str, profile): - metrics_list = self.metrics_map[record_type] - body = { - "reportDate": report_date, - } - yield {**body, "metrics": ",".join(metrics_list)} - - METRICS_MAP_V3 = { "purchasedAsin": [ "campaignBudgetCurrencyCode", diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_video_report.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_video_report.py deleted file mode 100644 index b5da376396cd..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_video_report.py +++ /dev/null @@ -1,146 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from .report_streams import ReportStream - -METRICS_MAP = { - "keywords": [ - "campaignName", - "campaignId", - "campaignStatus", - "campaignBudget", - "campaignBudgetType", - "adGroupName", - "adGroupId", - "keywordText", - "keywordBid", - "keywordStatus", - "matchType", - "impressions", - "clicks", - "cost", - "attributedSales14d", - "attributedSales14dSameSKU", - "attributedConversions14d", - "attributedConversions14dSameSKU", - "attributedBrandedSearches14d", - "attributedDetailPageViewsClicks14d", - "attributedOrderRateNewToBrand14d", - "attributedOrdersNewToBrand14d", - "attributedOrdersNewToBrandPercentage14d", - "attributedSalesNewToBrand14d", - "attributedSalesNewToBrandPercentage14d", - "attributedUnitsOrderedNewToBrand14d", - "attributedUnitsOrderedNewToBrandPercentage14d", - "dpv14d", - "keywordId", - "vctr", - "video5SecondViewRate", - "video5SecondViews", - "videoCompleteViews", - "videoFirstQuartileViews", - "videoMidpointViews", - "videoThirdQuartileViews", - "videoUnmutes", - "viewableImpressions", - "vtr", - ], - "adGroups": [ - "campaignName", - "campaignId", - "campaignStatus", - "campaignBudget", - "campaignBudgetType", - "adGroupName", - "adGroupId", - "impressions", - "clicks", - "cost", - "attributedSales14d", - "attributedSales14dSameSKU", - "attributedConversions14d", - "attributedConversions14dSameSKU", - "vctr", - "video5SecondViewRate", - "video5SecondViews", - "videoCompleteViews", - "videoFirstQuartileViews", - "videoMidpointViews", - "videoThirdQuartileViews", - "videoUnmutes", - "viewableImpressions", - "vtr", - "dpv14d", - "attributedDetailPageViewsClicks14d", - "attributedOrderRateNewToBrand14d", - "attributedOrdersNewToBrand14d", - "attributedOrdersNewToBrandPercentage14d", - "attributedSalesNewToBrand14d", - "attributedSalesNewToBrandPercentage14d", - "attributedUnitsOrderedNewToBrand14d", - "attributedUnitsOrderedNewToBrandPercentage14d", - "attributedBrandedSearches14d", - ], - "campaigns": [ - "campaignName", - "campaignId", - "campaignStatus", - "campaignBudget", - "campaignBudgetType", - "impressions", - "clicks", - "cost", - "attributedSales14d", - "attributedSales14dSameSKU", - "attributedConversions14d", - "attributedConversions14dSameSKU", - "attributedSalesNewToBrand14d", - "attributedSalesNewToBrandPercentage14d", - "attributedUnitsOrderedNewToBrand14d", - "attributedUnitsOrderedNewToBrandPercentage14d", - "attributedBrandedSearches14d", - "attributedDetailPageViewsClicks14d", - "attributedOrderRateNewToBrand14d", - "attributedOrdersNewToBrand14d", - "attributedOrdersNewToBrandPercentage14d", - "dpv14d", - "vctr", - "video5SecondViewRate", - "video5SecondViews", - "videoCompleteViews", - "videoFirstQuartileViews", - "videoMidpointViews", - "videoThirdQuartileViews", - "videoUnmutes", - "viewableImpressions", - "vtr", - ], -} - - -METRICS_TYPE_TO_ID_MAP = { - "keywords": "keywordBid", - "adGroups": "adGroupId", - "campaigns": "campaignId", -} - - -class SponsoredBrandsVideoReportStream(ReportStream): - """ - https://advertising.amazon.com/API/docs/en-us/reference/sponsored-brands/2/reports - """ - - def report_init_endpoint(self, record_type: str) -> str: - return f"/v2/hsa/{record_type}/report" - - metrics_map = METRICS_MAP - metrics_type_to_id_map = METRICS_TYPE_TO_ID_MAP - - def _get_init_report_body(self, report_date: str, record_type: str, profile): - metrics_list = self.metrics_map[record_type] - body = { - "reportDate": report_date, - "creativeType": "video", - } - yield {**body, "metrics": ",".join(metrics_list)} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/display_report.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/display_report.py index de158949addc..f81f4978fd74 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/display_report.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/display_report.py @@ -2,241 +2,381 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +from http import HTTPStatus +from typing import Any, List, Mapping -from .report_streams import RecordType, ReportStream +import requests +from airbyte_cdk.sources.streams.http.requests_native_auth import Oauth2Authenticator +from source_amazon_ads.schemas import Profile +from source_amazon_ads.streams.report_streams.report_stream_models import RecordType, ReportInfo +from source_amazon_ads.streams.report_streams.report_streams import ReportStream -METRICS_MAP = { +METRICS_MAP_V3 = { "campaigns": [ - "campaignName", + "addToCart", + "addToCartClicks", + "addToCartRate", + "addToCartViews", + "addToList", + "addToListFromClicks", + "addToListFromViews", + "qualifiedBorrows", + "qualifiedBorrowsFromClicks", + "qualifiedBorrowsFromViews", + "royaltyQualifiedBorrows", + "royaltyQualifiedBorrowsFromClicks", + "royaltyQualifiedBorrowsFromViews", + "brandedSearches", + "brandedSearchesClicks", + "brandedSearchesViews", + "brandedSearchRate", + "campaignBudgetCurrencyCode", "campaignId", - "impressions", + "campaignName", "clicks", "cost", - "currency", - "attributedConversions1d", - "attributedConversions7d", - "attributedConversions14d", - "attributedConversions30d", - "attributedConversions1dSameSKU", - "attributedConversions7dSameSKU", - "attributedConversions14dSameSKU", - "attributedConversions30dSameSKU", - "attributedUnitsOrdered1d", - "attributedUnitsOrdered7d", - "attributedUnitsOrdered14d", - "attributedUnitsOrdered30d", - "attributedSales1d", - "attributedSales7d", - "attributedSales14d", - "attributedSales30d", - "attributedSales1dSameSKU", - "attributedSales7dSameSKU", - "attributedSales14dSameSKU", - "attributedSales30dSameSKU", - "attributedOrdersNewToBrand14d", - "attributedSalesNewToBrand14d", - "attributedUnitsOrderedNewToBrand14d", - "costType", - "campaignBudget", + "detailPageViews", + "detailPageViewsClicks", + "eCPAddToCart", + "eCPBrandSearch", + "endDate", + "impressions", + "impressionsViews", + "leadFormOpens", + "leads", + "linkOuts", + "newToBrandPurchases", + "newToBrandPurchasesClicks", + "newToBrandSalesClicks", + "newToBrandUnitsSold", + "newToBrandUnitsSoldClicks", + "purchases", + "purchasesClicks", + "purchasesPromotedClicks", + "sales", + "salesClicks", + "salesPromotedClicks", + "startDate", + "unitsSold", + "unitsSoldClicks", + "videoCompleteViews", + "videoFirstQuartileViews", + "videoMidpointViews", + "videoThirdQuartileViews", + "videoUnmutes", + "viewabilityRate", + "viewClickThroughRate", + ] + + [ # Group-by metrics + "campaignBudgetAmount", "campaignStatus", - "attributedBrandedSearches14d", - "attributedDetailPageView14d", - "viewAttributedBrandedSearches14d", - "viewAttributedConversions14d", - "viewAttributedDetailPageView14d", - "viewAttributedOrdersNewToBrand14d", - "viewAttributedSales14d", - "viewAttributedSalesNewToBrand14d", - "viewAttributedUnitsOrdered14d", - "viewAttributedUnitsOrderedNewToBrand14d", - "viewImpressions", - ], + "costType", + "cumulativeReach", + "impressionsFrequencyAverage", + "newToBrandDetailPageViewClicks", + "newToBrandDetailPageViewRate", + "newToBrandDetailPageViews", + "newToBrandDetailPageViewViews", + "newToBrandECPDetailPageView", + "newToBrandSales", + ], # 'date', "adGroups": [ - "campaignName", - "campaignId", - "adGroupName", + "addToCart", + "addToCartClicks", + "addToCartRate", + "addToCartViews", "adGroupId", - "impressions", + "adGroupName", + "addToList", + "addToListFromClicks", + "addToListFromViews", + "qualifiedBorrows", + "qualifiedBorrowsFromClicks", + "qualifiedBorrowsFromViews", + "royaltyQualifiedBorrows", + "royaltyQualifiedBorrowsFromClicks", + "royaltyQualifiedBorrowsFromViews", + "bidOptimization", + "brandedSearches", + "brandedSearchesClicks", + "brandedSearchesViews", + "brandedSearchRate", + "campaignBudgetCurrencyCode", + "campaignId", + "campaignName", "clicks", "cost", - "currency", - "attributedConversions1d", - "attributedConversions7d", - "attributedConversions14d", - "attributedConversions30d", - "attributedConversions1dSameSKU", - "attributedConversions7dSameSKU", - "attributedConversions14dSameSKU", - "attributedConversions30dSameSKU", - "attributedUnitsOrdered1d", - "attributedUnitsOrdered7d", - "attributedUnitsOrdered14d", - "attributedUnitsOrdered30d", - "attributedSales1d", - "attributedSales7d", - "attributedSales14d", - "attributedSales30d", - "attributedSales1dSameSKU", - "attributedSales7dSameSKU", - "attributedSales14dSameSKU", - "attributedSales30dSameSKU", - "attributedOrdersNewToBrand14d", - "attributedUnitsOrderedNewToBrand14d", - "attributedBrandedSearches14d", - "attributedDetailPageView14d", - "bidOptimization", - "viewAttributedBrandedSearches14d", - "viewAttributedConversions14d", - "viewAttributedDetailPageView14d", - "viewAttributedOrdersNewToBrand14d", - "viewAttributedSales14d", - "viewAttributedSalesNewToBrand14d", - "viewAttributedUnitsOrdered14d", - "viewAttributedUnitsOrderedNewToBrand14d", - "viewImpressions", - ], + "detailPageViews", + "detailPageViewsClicks", + "eCPAddToCart", + "eCPBrandSearch", + "endDate", + "impressions", + "impressionsViews", + "leadFormOpens", + "leads", + "linkOuts", + "newToBrandPurchases", + "newToBrandPurchasesClicks", + "newToBrandSales", + "newToBrandSalesClicks", + "newToBrandUnitsSold", + "newToBrandUnitsSoldClicks", + "purchases", + "purchasesClicks", + "purchasesPromotedClicks", + "sales", + "salesClicks", + "salesPromotedClicks", + "startDate", + "unitsSold", + "unitsSoldClicks", + "videoCompleteViews", + "videoFirstQuartileViews", + "videoMidpointViews", + "videoThirdQuartileViews", + "videoUnmutes", + "viewabilityRate", + "viewClickThroughRate", + ] + + [ # Group-by metrics + "cumulativeReach", + "impressionsFrequencyAverage", + "newToBrandDetailPageViewClicks", + "newToBrandDetailPageViewRate", + "newToBrandDetailPageViews", + "newToBrandDetailPageViewViews", + "newToBrandECPDetailPageView", + ], # 'date', "productAds": [ - "campaignName", - "campaignId", - "adGroupName", + "addToCart", + "addToCartRate", + "addToCartViews", + "addToCartClicks", "adGroupId", - "asin", - "sku", # Available for seller accounts only. + "adGroupName", "adId", - "impressions", + "addToList", + "addToListFromClicks", + "qualifiedBorrows", + "royaltyQualifiedBorrows", + "addToListFromViews", + "qualifiedBorrowsFromClicks", + "qualifiedBorrowsFromViews", + "royaltyQualifiedBorrowsFromClicks", + "royaltyQualifiedBorrowsFromViews", + "bidOptimization", + "brandedSearches", + "brandedSearchesClicks", + "brandedSearchesViews", + "brandedSearchRate", + "campaignBudgetCurrencyCode", + "campaignId", + "campaignName", "clicks", "cost", - "currency", - "attributedConversions1d", - "attributedConversions7d", - "attributedConversions14d", - "attributedConversions30d", - "attributedConversions1dSameSKU", - "attributedConversions7dSameSKU", - "attributedConversions14dSameSKU", - "attributedConversions30dSameSKU", - "attributedUnitsOrdered1d", - "attributedUnitsOrdered7d", - "attributedUnitsOrdered14d", - "attributedUnitsOrdered30d", - "attributedSales1d", - "attributedSales7d", - "attributedSales14d", - "attributedSales30d", - "attributedSales1dSameSKU", - "attributedSales7dSameSKU", - "attributedSales14dSameSKU", - "attributedSales30dSameSKU", - "attributedOrdersNewToBrand14d", - "attributedSalesNewToBrand14d", - "attributedUnitsOrderedNewToBrand14d", - "attributedBrandedSearches14d", - "attributedDetailPageView14d", - "viewAttributedBrandedSearches14d", - "viewAttributedConversions14d", - "viewAttributedDetailPageView14d", - "viewAttributedOrdersNewToBrand14d", - "viewAttributedSales14d", - "viewAttributedSalesNewToBrand14d", - "viewAttributedUnitsOrdered14d", - "viewAttributedUnitsOrderedNewToBrand14d", - "viewImpressions", - ], + "cumulativeReach", + "detailPageViews", + "detailPageViewsClicks", + "eCPAddToCart", + "eCPBrandSearch", + "endDate", + "impressions", + "impressionsFrequencyAverage", + "impressionsViews", + "leadFormOpens", + "leads", + "linkOuts", + "newToBrandDetailPageViewClicks", + "newToBrandDetailPageViewRate", + "newToBrandDetailPageViews", + "newToBrandDetailPageViewViews", + "newToBrandECPDetailPageView", + "newToBrandPurchases", + "newToBrandPurchasesClicks", + "newToBrandSales", + "newToBrandSalesClicks", + "newToBrandUnitsSold", + "newToBrandUnitsSoldClicks", + "promotedAsin", + "promotedSku", + "purchases", + "purchasesClicks", + "purchasesPromotedClicks", + "sales", + "salesClicks", + "salesPromotedClicks", + "startDate", + "unitsSold", + "unitsSoldClicks", + "videoCompleteViews", + "videoFirstQuartileViews", + "videoMidpointViews", + "videoThirdQuartileViews", + "videoUnmutes", + "viewabilityRate", + "viewClickThroughRate", + ], # 'date', "targets": [ - "campaignName", - "campaignId", - "adGroupName", + "addToCart", + "addToCartClicks", + "addToCartRate", + "addToCartViews", "adGroupId", - "targetId", - "targetingExpression", - "targetingText", - "targetingType", - "impressions", + "adGroupName", + "addToList", + "addToListFromClicks", + "addToListFromViews", + "qualifiedBorrows", + "qualifiedBorrowsFromClicks", + "qualifiedBorrowsFromViews", + "royaltyQualifiedBorrows", + "royaltyQualifiedBorrowsFromClicks", + "royaltyQualifiedBorrowsFromViews", + "brandedSearches", + "brandedSearchesClicks", + "brandedSearchesViews", + "brandedSearchRate", + "campaignBudgetCurrencyCode", + "campaignId", + "campaignName", "clicks", "cost", - "currency", - "attributedConversions1d", - "attributedConversions7d", - "attributedConversions14d", - "attributedConversions30d", - "attributedConversions1dSameSKU", - "attributedConversions7dSameSKU", - "attributedConversions14dSameSKU", - "attributedConversions30dSameSKU", - "attributedUnitsOrdered1d", - "attributedUnitsOrdered7d", - "attributedUnitsOrdered14d", - "attributedUnitsOrdered30d", - "attributedSales1d", - "attributedSales7d", - "attributedSales14d", - "attributedSales30d", - "attributedSales1dSameSKU", - "attributedSales7dSameSKU", - "attributedSales14dSameSKU", - "attributedSales30dSameSKU", - "attributedOrdersNewToBrand14d", - "attributedSalesNewToBrand14d", - "attributedUnitsOrderedNewToBrand14d", - "attributedBrandedSearches14d", - "attributedDetailPageView14d", - "viewAttributedBrandedSearches14d", - "viewAttributedConversions14d", - "viewAttributedDetailPageView14d", - "viewAttributedOrdersNewToBrand14d", - "viewAttributedSales14d", - "viewAttributedSalesNewToBrand14d", - "viewAttributedUnitsOrdered14d", - "viewAttributedUnitsOrderedNewToBrand14d", - "viewImpressions", - ], + "detailPageViews", + "detailPageViewsClicks", + "eCPAddToCart", + "eCPBrandSearch", + "endDate", + "impressions", + "impressionsViews", + "leadFormOpens", + "leads", + "linkOuts", + "newToBrandPurchases", + "newToBrandPurchasesClicks", + "newToBrandSales", + "newToBrandSalesClicks", + "newToBrandUnitsSold", + "newToBrandUnitsSoldClicks", + "purchases", + "purchasesClicks", + "purchasesPromotedClicks", + "sales", + "salesClicks", + "salesPromotedClicks", + "startDate", + "targetingExpression", + "targetingId", + "targetingText", + "unitsSold", + "unitsSoldClicks", + "videoCompleteViews", + "videoFirstQuartileViews", + "videoMidpointViews", + "videoThirdQuartileViews", + "videoUnmutes", + "viewabilityRate", + "viewClickThroughRate", + ], # 'date', "asins": [ - "campaignName", - "campaignId", - "adGroupName", "adGroupId", - "asin", - "otherAsin", - "sku", # Available for seller accounts only. - "currency", - "attributedUnitsOrdered1dOtherSKU", - "attributedUnitsOrdered7dOtherSKU", - "attributedUnitsOrdered14dOtherSKU", - "attributedUnitsOrdered30dOtherSKU", - "attributedSales1dOtherSKU", - "attributedSales7dOtherSKU", - "attributedSales14dOtherSKU", - "attributedSales30dOtherSKU", + "adGroupName", + "asinBrandHalo", + "addToList", + "addToListFromClicks", + "qualifiedBorrowsFromClicks", + "royaltyQualifiedBorrowsFromClicks", + "addToListFromViews", + "qualifiedBorrows", + "qualifiedBorrowsFromViews", + "royaltyQualifiedBorrows", + "royaltyQualifiedBorrowsFromViews", + "campaignBudgetCurrencyCode", + "campaignId", + "campaignName", + "conversionsBrandHalo", + "conversionsBrandHaloClicks", + "endDate", + "promotedAsin", + "promotedSku", + "salesBrandHalo", + "salesBrandHaloClicks", + "startDate", + "unitsSoldBrandHalo", + "unitsSoldBrandHaloClicks", ], } METRICS_TYPE_TO_ID_MAP = {"campaigns": "campaignId", "adGroups": "adGroupId", "productAds": "adId", "targets": "targetId", "asins": "asin"} -TACTICS = ["T00020", "T00030"] - class SponsoredDisplayReportStream(ReportStream): """ https://advertising.amazon.com/API/docs/en-us/sponsored-display/3-0/openapi#/Reports """ + API_VERSION = "reporting" # v3 + REPORT_DATE_FORMAT = "YYYY-MM-DD" + ad_product = "SPONSORED_DISPLAY" + report_is_created = HTTPStatus.OK + metrics_map = METRICS_MAP_V3 + metrics_type_to_id_map = METRICS_TYPE_TO_ID_MAP + + def __init__(self, config: Mapping[str, Any], profiles: List[Profile], authenticator: Oauth2Authenticator): + super().__init__(config, profiles, authenticator) + # using session without auth as API returns 400 bad request if Authorization header presents in request + # X-Amz-Algorithm and X-Amz-Signature query params already present in the url, that is enough to make proper request + self._report_download_session = requests.Session() + def report_init_endpoint(self, record_type: str) -> str: - return f"/sd/{record_type}/report" + return f"/{self.API_VERSION}/reports" - metrics_map = METRICS_MAP - metrics_type_to_id_map = METRICS_TYPE_TO_ID_MAP + def _download_report(self, report_info: ReportInfo, url: str) -> List[dict]: + """ + Download and parse report result + """ + return super()._download_report(None, url) def _get_init_report_body(self, report_date: str, record_type: str, profile): - for tactic in TACTICS: - metrics_list = self.metrics_map[record_type] - if record_type == RecordType.ASINS and profile.accountInfo.type == "vendor": - return None - elif record_type == RecordType.PRODUCTADS and profile.accountInfo.type != "seller": - # Remove SKU from metrics since it is only available for seller accounts in Product Ad report - metrics_list = [m for m in metrics_list if m != "sku"] - yield { - "reportDate": report_date, - "tactic": tactic, - "metrics": ",".join(metrics_list), - } + metrics_list = self.metrics_map[record_type] + + reportTypeId = "sdCampaigns" # SponsoredDisplayCampaigns + group_by = ["campaign"] + filters = [] + + if record_type == "adGroups": + reportTypeId = "sdAdGroup" + group_by = ["adGroup"] + + elif record_type == "productAds": + reportTypeId = "sdAdvertisedProduct" + group_by = ["advertiser"] + + elif record_type == "asins": + reportTypeId = "sdPurchasedProduct" + group_by = ["asin"] + + elif record_type == "keywords" or record_type == "targets": + group_by = ["targeting"] + reportTypeId = "sdTargeting" + + if record_type == "keywords": + filters = [{"field": "keywordType", "values": ["BROAD", "PHRASE", "EXACT"]}] + + body = { + "name": f"{record_type} report {report_date}", + "startDate": report_date, + "endDate": report_date, + "configuration": { + "adProduct": self.ad_product, + "groupBy": group_by, + "columns": metrics_list, + "reportTypeId": reportTypeId, + "filters": filters, + "timeUnit": "SUMMARY", + "format": "GZIP_JSON", + }, + } + + yield body diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/products_report.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/products_report.py index c39d18b7490c..6d4a8b937525 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/products_report.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/products_report.py @@ -6,12 +6,11 @@ from http import HTTPStatus from typing import Any, List, Mapping -import backoff import requests from airbyte_cdk.sources.streams.http.requests_native_auth import Oauth2Authenticator from source_amazon_ads.schemas import Profile -from .report_streams import ReportInfo, ReportStream, TooManyRequests +from .report_streams import ReportInfo, ReportStream METRICS_MAP = { "campaigns": [ diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_stream_models.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_stream_models.py new file mode 100644 index 000000000000..d79bacf08fd5 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_stream_models.py @@ -0,0 +1,42 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. + +from dataclasses import dataclass +from enum import Enum +from typing import List, Optional + +from pydantic import BaseModel + + +class RecordType(str, Enum): + CAMPAIGNS = "campaigns" + ADGROUPS = "adGroups" + PRODUCTADS = "productAds" + TARGETS = "targets" + ASINS = "asins" + + +class Status(str, Enum): + IN_PROGRESS = "IN_PROGRESS" + SUCCESS = "SUCCESS" + COMPLETED = "COMPLETED" + FAILURE = "FAILURE" + + +class ReportInitResponse(BaseModel): + reportId: str + status: str + + +class ReportStatus(BaseModel): + status: str + location: Optional[str] = None + url: Optional[str] + + +@dataclass +class ReportInfo: + report_id: str + profile_id: int + record_type: Optional[str] + status: Status + metric_objects: List[dict] diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py index f8e65950f58f..a2325ca38aba 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py @@ -7,8 +7,6 @@ import uuid from abc import ABC, abstractmethod from copy import deepcopy -from dataclasses import dataclass -from enum import Enum from gzip import decompress from http import HTTPStatus from typing import Any, Dict, Iterable, List, Mapping, Optional, Tuple @@ -21,45 +19,11 @@ from airbyte_cdk.sources.streams.availability_strategy import AvailabilityStrategy from airbyte_cdk.sources.streams.http.requests_native_auth import Oauth2Authenticator from pendulum import Date -from pydantic import BaseModel from source_amazon_ads.schemas import CatalogModel, MetricsReport, Profile from source_amazon_ads.streams.common import BasicAmazonAdsStream from source_amazon_ads.utils import get_typed_env, iterate_one_by_one - -class RecordType(str, Enum): - CAMPAIGNS = "campaigns" - ADGROUPS = "adGroups" - PRODUCTADS = "productAds" - TARGETS = "targets" - ASINS = "asins" - - -class Status(str, Enum): - IN_PROGRESS = "IN_PROGRESS" - SUCCESS = "SUCCESS" - COMPLETED = "COMPLETED" - FAILURE = "FAILURE" - - -class ReportInitResponse(BaseModel): - reportId: str - status: str - - -class ReportStatus(BaseModel): - status: str - location: Optional[str] - url: Optional[str] - - -@dataclass -class ReportInfo: - report_id: str - profile_id: int - record_type: str - status: Status - metric_objects: List[dict] +from .report_stream_models import ReportInfo, ReportInitResponse, ReportStatus, Status class RetryableException(Exception): diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_products.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_products.py index 3b465e9ce2b6..e90467a49d77 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_products.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_products.py @@ -7,7 +7,7 @@ from http import HTTPStatus from typing import Any, Iterable, List, Mapping, MutableMapping, Optional -from airbyte_protocol.models import SyncMode +from airbyte_cdk.models import SyncMode from requests import Response from source_amazon_ads.schemas import ( ProductAd, diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/__init__.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/__init__.py index aabf455a3389..405206b533aa 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/__init__.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/__init__.py @@ -6,6 +6,4 @@ from .report_check_status_request_builer import ReportCheckStatusRequestBuilder from .report_download_request_builder import ReportDownloadRequestBuilder from .sponsored_products_report_request_builder import SponsoredProductsReportRequestBuilder -from .sponsored_brands_video_report_request_builder import SponsoredBrandsVideoReportRequestBuilder -from .sponsored_brands_report_request_builder import SponsoredBrandsReportRequestBuilder from .sponsored_brands_report_v3_request_builder import SponsoredBrandsV3ReportRequestBuilder diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/report_check_status_request_builer.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/report_check_status_request_builer.py index fcbd1ed257fc..48b323f422cf 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/report_check_status_request_builer.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/report_check_status_request_builer.py @@ -29,19 +29,7 @@ def check_v3_report_status_endpoint( def check_sponsored_display_report_status_endpoint( cls, client_id: str, client_access_token: str, profile_id: str, report_id: str ) -> "ReportCheckStatusRequestBuilder": - return cls.check_v2_report_status_endpoint(client_id, client_access_token, profile_id, report_id) - - @classmethod - def check_sponsored_brands_video_report_status_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, report_id: str - ) -> "ReportCheckStatusRequestBuilder": - return cls.check_v2_report_status_endpoint(client_id, client_access_token, profile_id, report_id) - - @classmethod - def check_sponsored_brands_report_status_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, report_id: str - ) -> "ReportCheckStatusRequestBuilder": - return cls.check_v2_report_status_endpoint(client_id, client_access_token, profile_id, report_id) + return cls.check_v3_report_status_endpoint(client_id, client_access_token, profile_id, report_id) @classmethod def check_sponsored_products_report_status_endpoint( diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_brands_report_request_builder.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_brands_report_request_builder.py deleted file mode 100644 index c81423442747..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_brands_report_request_builder.py +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. - -import json -from collections import OrderedDict -from typing import Any, Dict, List, Optional - -import pendulum - -from .base_request_builder import AmazonAdsBaseRequestBuilder - - -class SponsoredBrandsReportRequestBuilder(AmazonAdsBaseRequestBuilder): - @classmethod - def _init_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, report_type: str, metrics: List[str], report_date: Optional[str] = None - ) -> "SponsoredBrandsReportRequestBuilder": - return cls(f"v2/hsa/{report_type}/report") \ - .with_client_id(client_id) \ - .with_client_access_token(client_access_token) \ - .with_profile_id(profile_id) \ - .with_metrics(metrics) \ - .with_report_date(report_date) - - @classmethod - def init_campaigns_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, metrics: List[str], report_date: Optional[str] - ) -> "SponsoredBrandsReportRequestBuilder": - return cls._init_report_endpoint(client_id, client_access_token, profile_id, "campaigns", report_date, metrics) - - @classmethod - def init_ad_groups_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, metrics: List[str], report_date: Optional[str] - ) -> "SponsoredBrandsReportRequestBuilder": - return cls._init_report_endpoint(client_id, client_access_token, profile_id, "adGroups", report_date, metrics) - - @classmethod - def init_keywords_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, metrics: List[str], report_date: Optional[str] - ) -> "SponsoredBrandsReportRequestBuilder": - return cls._init_report_endpoint(client_id, client_access_token, profile_id, "keywords", report_date, metrics) - - def __init__(self, resource: str) -> None: - super().__init__(resource) - self._metrics: List[str] = None - self._report_date: str = None - - @property - def query_params(self) -> Dict[str, Any]: - return None - - @property - def request_body(self) ->Optional[str]: - body: dict = OrderedDict() - if self._report_date: - body["reportDate"] = self._report_date - if self._metrics: - body["metrics"] = self._metrics - return json.dumps(body) - - def with_report_date(self, report_date: pendulum.date) -> "SponsoredBrandsReportRequestBuilder": - self._report_date = report_date.format("YYYYMMDD") - return self - - def with_metrics(self, metrics: List[str]) -> "SponsoredBrandsReportRequestBuilder": - self._metrics = ",".join(metrics) - return self diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_brands_video_report_request_builder.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_brands_video_report_request_builder.py deleted file mode 100644 index 21a9d59a828d..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_brands_video_report_request_builder.py +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. - -import json -from collections import OrderedDict -from typing import Any, Dict, List, Optional - -import pendulum - -from .base_request_builder import AmazonAdsBaseRequestBuilder - - -class SponsoredBrandsVideoReportRequestBuilder(AmazonAdsBaseRequestBuilder): - @classmethod - def _init_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, report_type: str, metrics: List[str], report_date: Optional[str] = None - ) -> "SponsoredBrandsVideoReportRequestBuilder": - return cls(f"v2/hsa/{report_type}/report") \ - .with_client_id(client_id) \ - .with_client_access_token(client_access_token) \ - .with_profile_id(profile_id) \ - .with_metrics(metrics) \ - .with_report_date(report_date) - - @classmethod - def init_campaigns_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, metrics: List[str], report_date: Optional[str] - ) -> "SponsoredBrandsVideoReportRequestBuilder": - return cls.init_report_endpoint(client_id, client_access_token, profile_id, "campaigns", report_date, metrics) - - @classmethod - def init_ad_groups_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, metrics: List[str], report_date: Optional[str] - ) -> "SponsoredBrandsVideoReportRequestBuilder": - return cls.init_report_endpoint(client_id, client_access_token, profile_id, "adGroups", report_date, metrics) - - @classmethod - def init_keywords_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, metrics: List[str], report_date: Optional[str] - ) -> "SponsoredBrandsVideoReportRequestBuilder": - return cls.init_report_endpoint(client_id, client_access_token, profile_id, "keywords", report_date, metrics) - - def __init__(self, resource: str) -> None: - super().__init__(resource) - self._metrics: List[str] = None - self._report_date: str = None - - @property - def query_params(self) -> Dict[str, Any]: - return None - - @property - def request_body(self) ->Optional[str]: - body: dict = OrderedDict() - if self._report_date: - body["reportDate"] = self._report_date - body["creativeType"] = "video" - if self._metrics: - body["metrics"] = self._metrics - return json.dumps(body) - - def with_report_date(self, report_date: pendulum.date) -> "SponsoredBrandsVideoReportRequestBuilder": - self._report_date = report_date.format("YYYYMMDD") - return self - - def with_metrics(self, metrics: List[str]) -> "SponsoredBrandsVideoReportRequestBuilder": - self._metrics = ",".join(metrics) - return self diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_display_report_request_builder.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_display_report_request_builder.py index cfa25f28aa3b..70c6a0bb2150 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_display_report_request_builder.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/ad_requests/sponsored_display_report_request_builder.py @@ -12,21 +12,21 @@ class SponsoredDisplayReportRequestBuilder(AmazonAdsBaseRequestBuilder): @classmethod def _init_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, report_type: str, tactics: str, metrics: List[str], report_date: Optional[str] = None + cls, client_id: str, client_access_token: str, profile_id: str, report_type: str, metrics: List[str], report_date: Optional[str] = None ) -> "SponsoredDisplayReportRequestBuilder": - return cls(f"sd/{report_type}/report") \ + return cls(f"reporting/reports") \ .with_client_id(client_id) \ .with_client_access_token(client_access_token) \ .with_profile_id(profile_id) \ - .with_tactics(tactics) \ .with_metrics(metrics) \ - .with_report_date(report_date) + .with_report_date(report_date) \ + .with_report_type(report_type) @classmethod def init_campaigns_report_endpoint( - cls, client_id: str, client_access_token: str, profile_id: str, tactics: str, metrics: List[str], report_date: Optional[str] + cls, client_id: str, client_access_token: str, profile_id: str, metrics: List[str], report_date: Optional[str] ) -> "SponsoredDisplayReportRequestBuilder": - return cls._init_report_endpoint(client_id, client_access_token, profile_id, "campaigns", report_date, tactics, metrics) + return cls._init_report_endpoint(client_id, client_access_token, profile_id, "campaigns", report_date, metrics) @classmethod def init_ad_groups_report_endpoint( @@ -56,6 +56,46 @@ def __init__(self, resource: str) -> None: super().__init__(resource) self._metrics: List[str] = None self._report_date: str = None + self._report_type: str = None + + @property + def _report_config_group_by(self) -> List[str]: + return { + "campaigns": ["campaign"], + "adGroups": ["adGroup"], + "keywords": ["targeting"], + "targets": ["targeting"], + "productAds": ["advertiser"], + "asins_keywords": ["asin"], + "asins_targets": ["asin"], + "asins": ["asin"], + }[self._report_type] + + @property + def _report_config_report_type_id(self) -> str: + return { + "campaigns": "sdCampaigns", + "adGroups": "sdAdGroup", + "keywords": "sdTargeting", + "targets": "sdTargeting", + "productAds": "sdAdvertisedProduct", + "asins_keywords": "sdPurchasedProduct", + "asins_targets": "sdPurchasedProduct", + "asins": "sdPurchasedProduct", + }[self._report_type] + + @property + def _report_config_filters(self) -> List[str]: + return { + "campaigns": [], + "adGroups": [], + "keywords": [{"field": "keywordType", "values": ["BROAD", "PHRASE", "EXACT"]}], + "targets": [], + "productAds": [], + "asins_keywords": [], + "asins_targets": [], + "asins": [], + }[self._report_type] @property def query_params(self) -> Dict[str, Any]: @@ -64,22 +104,39 @@ def query_params(self) -> Dict[str, Any]: @property def request_body(self) ->Optional[str]: body: dict = OrderedDict() + if self._report_type and self._report_date: + body["name"] = f"{self._report_type} report {self._report_date}" + if self._report_date: - body["reportDate"] = self._report_date - if self._tactics: - body["tactic"] = self._tactics + body["startDate"] = self._report_date + body["endDate"] = self._report_date + + if self._report_type: + body["configuration"] = { + "adProduct": "SPONSORED_DISPLAY", + "groupBy": self._report_config_group_by + } + if self._metrics: - body["metrics"] = self._metrics + body["configuration"]["columns"] = self._metrics + + if self._report_type: + body["configuration"]["reportTypeId"] = self._report_config_report_type_id + body["configuration"]["filters"] = self._report_config_filters + + body["configuration"]["timeUnit"] = "SUMMARY" + body["configuration"]["format"] = "GZIP_JSON" + return json.dumps(body) def with_report_date(self, report_date: pendulum.date) -> "SponsoredDisplayReportRequestBuilder": - self._report_date = report_date.format("YYYYMMDD") - return self - - def with_tactics(self, tactics: str) -> "SponsoredDisplayReportRequestBuilder": - self._tactics = tactics + self._report_date = report_date.format("YYYY-MM-DD") return self def with_metrics(self, metrics: List[str]) -> "SponsoredDisplayReportRequestBuilder": - self._metrics = ",".join(metrics) + self._metrics = metrics return self + + def with_report_type(self, report_type: str) -> "SponsoredDisplayReportRequestBuilder": + self._report_type = report_type + return self \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_attribution_report_streams.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_attribution_report_streams.py index 6548c3a39c9f..945635c39ae8 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_attribution_report_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_attribution_report_streams.py @@ -6,9 +6,9 @@ from zoneinfo import ZoneInfo import freezegun +from airbyte_cdk.models import Level as LogLevel +from airbyte_cdk.models import SyncMode from airbyte_cdk.test.mock_http import HttpMocker -from airbyte_protocol.models import Level as LogLevel -from airbyte_protocol.models import SyncMode from .ad_requests import AttributionReportRequestBuilder, OAuthRequestBuilder, ProfilesRequestBuilder from .ad_responses import AttributionReportResponseBuilder, ErrorResponseBuilder, OAuthResponseBuilder, ProfilesResponseBuilder diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_report_streams.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_report_streams.py index 2d377a047928..90f5c8aecb9a 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_report_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_report_streams.py @@ -6,19 +6,17 @@ import pendulum import requests_mock +from airbyte_cdk.models import Level as LogLevel +from airbyte_cdk.models import SyncMode from airbyte_cdk.test.mock_http import HttpMocker, HttpRequestMatcher -from airbyte_protocol.models import Level as LogLevel -from airbyte_protocol.models import SyncMode -from source_amazon_ads.streams.report_streams import brands_report, brands_video_report, display_report, products_report +from source_amazon_ads.streams.report_streams import brands_report, display_report, products_report from .ad_requests import ( OAuthRequestBuilder, ProfilesRequestBuilder, ReportCheckStatusRequestBuilder, ReportDownloadRequestBuilder, - SponsoredBrandsReportRequestBuilder, SponsoredBrandsV3ReportRequestBuilder, - SponsoredBrandsVideoReportRequestBuilder, SponsoredDisplayReportRequestBuilder, SponsoredProductsReportRequestBuilder, ) @@ -51,7 +49,8 @@ def _given_oauth_and_profiles(self, http_mocker: HttpMocker, config: dict) -> No Authenticate and get profiles """ http_mocker.post( - OAuthRequestBuilder.oauth_endpoint(client_id=config["client_id"], client_secred=config["client_secret"], refresh_token=config["refresh_token"]).build(), + OAuthRequestBuilder.oauth_endpoint(client_id=config["client_id"], client_secred=config["client_secret"], + refresh_token=config["refresh_token"]).build(), OAuthResponseBuilder.token_response().build() ) http_mocker.get( @@ -74,61 +73,10 @@ def test_given_file_when_read_display_report_then_return_records(self, http_mock profile_timezone = ProfilesRecordBuilder.profiles_record().build().get("timezone") start_date = pendulum.today(tz=profile_timezone).date() - for report_type, metrics in display_report.METRICS_MAP.items(): - for tactic in display_report.TACTICS: - report_id = str(uuid.uuid4()) - http_mocker.post( - SponsoredDisplayReportRequestBuilder._init_report_endpoint( - self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_type, tactic, metrics, start_date - ).build(), - ReportInitResponseBuilder.report_init_response().with_record( - ReportInitResponseRecordBuilder.init_response_record().with_status("PENDING").with_id(report_id) - ).with_status_code(202).build() - ) - download_request_builder = ReportDownloadRequestBuilder.download_endpoint(report_id) - http_mocker.get( - ReportCheckStatusRequestBuilder.check_sponsored_display_report_status_endpoint( - self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_id - ).build(), - ReportCheckStatusResponseBuilder.check_status_response().with_record( - ReportCheckStatusRecordBuilder.status_record().with_status("COMPLETED").with_url(download_request_builder.url) - ).build() - ) - - # a workaround to pass compressed document to the mocked response - gzip_file_report_response = ReportDownloadResponseBuilder.download_report().with_record(ReportFileRecordBuilder.report_file_record()).build() - request_matcher = HttpRequestMatcher(download_request_builder.build(), minimum_number_of_expected_match=1) - http_mocker._matchers.append(request_matcher) - - http_mocker._mocker.get( - requests_mock.ANY, - additional_matcher=http_mocker._matches_wrapper(request_matcher), - response_list=[{"content": gzip_file_report_response.body, "status_code": gzip_file_report_response.status_code}], - ) - - output = read_stream("sponsored_display_report_stream", SyncMode.full_refresh, self._config) - assert len(output.records) == 10 - - @HttpMocker() - def test_given_file_when_read_products_report_then_return_records(self, http_mocker): - """ - Check products report stream: normal stream read flow. - In this test we prepare http mocker to handle all report types based on metrics defined for the report stream - as well as workaround to handle gzipped file content. - Request structure: - 1. Request report for start processing - 2. Check status and get a download link - 3. Download report file using the link - """ - self._given_oauth_and_profiles(http_mocker, self._config) - - profile_timezone = ProfilesRecordBuilder.profiles_record().build().get("timezone") - start_date = pendulum.today(tz=profile_timezone).date() - - for report_type, metrics in products_report.METRICS_MAP.items(): + for report_type, metrics in display_report.METRICS_MAP_V3.items(): report_id = str(uuid.uuid4()) http_mocker.post( - SponsoredProductsReportRequestBuilder._init_report_endpoint( + SponsoredDisplayReportRequestBuilder._init_report_endpoint( self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_type, metrics, start_date ).build(), ReportInitResponseBuilder.report_init_response().with_record( @@ -137,7 +85,7 @@ def test_given_file_when_read_products_report_then_return_records(self, http_moc ) download_request_builder = ReportDownloadRequestBuilder.download_endpoint(report_id) http_mocker.get( - ReportCheckStatusRequestBuilder.check_sponsored_products_report_status_endpoint( + ReportCheckStatusRequestBuilder.check_sponsored_display_report_status_endpoint( self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_id ).build(), ReportCheckStatusResponseBuilder.check_status_response().with_record( @@ -147,8 +95,7 @@ def test_given_file_when_read_products_report_then_return_records(self, http_moc # a workaround to pass compressed document to the mocked response gzip_file_report_response = ReportDownloadResponseBuilder.download_report().with_record( - ReportFileRecordBuilder.report_file_record() - ).build() + ReportFileRecordBuilder.report_file_record()).build() request_matcher = HttpRequestMatcher(download_request_builder.build(), minimum_number_of_expected_match=1) http_mocker._matchers.append(request_matcher) @@ -158,65 +105,13 @@ def test_given_file_when_read_products_report_then_return_records(self, http_moc response_list=[{"content": gzip_file_report_response.body, "status_code": gzip_file_report_response.status_code}], ) - output = read_stream("sponsored_products_report_stream", SyncMode.full_refresh, self._config) - assert len(output.records) == 7 - - @HttpMocker() - def test_given_file_when_read_brands_video_report_then_return_records(self, http_mocker): - """ - Check brands video report stream: normal stream read flow. - In this test we prepare http mocker to handle all report types based on metrics defined for the report stream - as well as workaround to handle gzipped file content - Request structure: - 1. Request report for start processing - 2. Check status and get a download link - 3. Download report file using the link - """ - self._given_oauth_and_profiles(http_mocker, self._config) - - profile_timezone = ProfilesRecordBuilder.profiles_record().build().get("timezone") - start_date = pendulum.today(tz=profile_timezone).date() - - for report_type, metrics in brands_video_report.METRICS_MAP.items(): - report_id = str(uuid.uuid4()) - http_mocker.post( - SponsoredBrandsVideoReportRequestBuilder._init_report_endpoint( - self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_type, metrics, start_date - ).build(), - ReportInitResponseBuilder.report_init_response().with_record( - ReportInitResponseRecordBuilder.init_response_record().with_status("PENDING").with_id(report_id) - ).with_status_code(202).build() - ) - download_request_builder = ReportDownloadRequestBuilder.download_endpoint(report_id) - http_mocker.get( - ReportCheckStatusRequestBuilder.check_sponsored_brands_video_report_status_endpoint( - self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_id - ).build(), - ReportCheckStatusResponseBuilder.check_status_response().with_record( - ReportCheckStatusRecordBuilder.status_record().with_status("COMPLETED").with_url(download_request_builder.url) - ).build() - ) - - # a workaround to pass compressed document to the mocked response - gzip_file_report_response = ReportDownloadResponseBuilder.download_report().with_record( - ReportFileRecordBuilder.report_file_record() - ).build() - request_matcher = HttpRequestMatcher(download_request_builder.build(), minimum_number_of_expected_match=1) - http_mocker._matchers.append(request_matcher) - - http_mocker._mocker.get( - requests_mock.ANY, - additional_matcher=http_mocker._matches_wrapper(request_matcher), - response_list=[{"content": gzip_file_report_response.body, "status_code": gzip_file_report_response.status_code}], - ) - - output = read_stream("sponsored_brands_video_report_stream", SyncMode.full_refresh, self._config) - assert len(output.records) == 3 + output = read_stream("sponsored_display_report_stream", SyncMode.full_refresh, self._config) + assert len(output.records) == 5 @HttpMocker() - def test_given_file_when_read_brands_report_then_return_records(self, http_mocker): + def test_given_file_when_read_products_report_then_return_records(self, http_mocker): """ - Check brands report stream: normal stream read flow. + Check products report stream: normal stream read flow. In this test we prepare http mocker to handle all report types based on metrics defined for the report stream as well as workaround to handle gzipped file content. Request structure: @@ -229,19 +124,19 @@ def test_given_file_when_read_brands_report_then_return_records(self, http_mocke profile_timezone = ProfilesRecordBuilder.profiles_record().build().get("timezone") start_date = pendulum.today(tz=profile_timezone).date() - for report_type, metrics in brands_report.METRICS_MAP.items(): + for report_type, metrics in products_report.METRICS_MAP.items(): report_id = str(uuid.uuid4()) http_mocker.post( - SponsoredBrandsReportRequestBuilder._init_report_endpoint( + SponsoredProductsReportRequestBuilder._init_report_endpoint( self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_type, metrics, start_date ).build(), ReportInitResponseBuilder.report_init_response().with_record( ReportInitResponseRecordBuilder.init_response_record().with_status("PENDING").with_id(report_id) - ).with_status_code(202).build() + ).with_status_code(200).build() ) download_request_builder = ReportDownloadRequestBuilder.download_endpoint(report_id) http_mocker.get( - ReportCheckStatusRequestBuilder.check_sponsored_brands_report_status_endpoint( + ReportCheckStatusRequestBuilder.check_sponsored_products_report_status_endpoint( self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_id ).build(), ReportCheckStatusResponseBuilder.check_status_response().with_record( @@ -262,8 +157,9 @@ def test_given_file_when_read_brands_report_then_return_records(self, http_mocke response_list=[{"content": gzip_file_report_response.body, "status_code": gzip_file_report_response.status_code}], ) - output = read_stream("sponsored_brands_report_stream", SyncMode.full_refresh, self._config) - assert len(output.records) == 3 + output = read_stream("sponsored_products_report_stream", SyncMode.full_refresh, self._config) + assert len(output.records) == 7 + @HttpMocker() def test_given_file_when_read_brands_v3_report_then_return_records(self, http_mocker): @@ -340,9 +236,11 @@ def test_given_known_error_when_read_brands_v3_report_then_skip_report(self, htt for report_type, metrics in brands_report.METRICS_MAP_V3.items(): http_mocker.post( SponsoredBrandsV3ReportRequestBuilder._init_report_endpoint( - self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_type, metrics, start_date + self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_type, metrics, + start_date ).build(), - ErrorResponseBuilder.non_breaking_error_response().with_record(non_breaking_error).with_status_code(status_code).build(), + ErrorResponseBuilder.non_breaking_error_response().with_record(non_breaking_error).with_status_code( + status_code).build(), ) output = read_stream("sponsored_brands_v3_report_stream", SyncMode.full_refresh, self._config) @@ -358,75 +256,48 @@ def test_given_known_error_when_read_brands_v3_report_then_skip_report(self, htt @HttpMocker() def test_given_known_error_when_read_display_report_then_partially_skip_records(self, http_mocker): """ - Check brands v3 stream: non-breaking errors are ignored. + Check display v3 stream: non-breaking errors are ignored. When error of this kind happen, we warn and then keep syncing another reports if possible. In this test half of report init requests are failed with known error and skipped while another half of reports successfully processed """ self._given_oauth_and_profiles(http_mocker, self._config) - ERRORS = [ - (400, "Tactic T00030 is not supported for report API in marketplace ABC00030."), - ] + profile_timezone = ProfilesRecordBuilder.profiles_record().build().get("timezone") + start_date = pendulum.today(tz=profile_timezone).date() - for status_code, msg in ERRORS: - profile_timezone = ProfilesRecordBuilder.profiles_record().build().get("timezone") - start_date = pendulum.today(tz=profile_timezone).date() - non_breaking_error = ErrorRecordBuilder.non_breaking_error().with_error_message(msg) - - for report_type, metrics in display_report.METRICS_MAP.items(): - report_id = str(uuid.uuid4()) - tactic = display_report.TACTICS[0] - http_mocker.post( - SponsoredDisplayReportRequestBuilder._init_report_endpoint( - self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_type, tactic, metrics, start_date - ).build(), - ReportInitResponseBuilder.report_init_response().with_record( - ReportInitResponseRecordBuilder.init_response_record().with_status("PENDING").with_id(report_id) - ).with_status_code(202).build() - ) - download_request_builder = ReportDownloadRequestBuilder.download_endpoint(report_id) - http_mocker.get( - ReportCheckStatusRequestBuilder.check_sponsored_display_report_status_endpoint( - self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_id - ).build(), - ReportCheckStatusResponseBuilder.check_status_response().with_record( - ReportCheckStatusRecordBuilder.status_record().with_status("COMPLETED").with_url(download_request_builder.url) - ).build() - ) + for report_type, metrics in display_report.METRICS_MAP_V3.items(): + report_id = str(uuid.uuid4()) + http_mocker.post( + SponsoredDisplayReportRequestBuilder._init_report_endpoint( + self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_type, metrics, + start_date + ).build(), + ReportInitResponseBuilder.report_init_response().with_record( + ReportInitResponseRecordBuilder.init_response_record().with_status("PENDING").with_id(report_id) + ).with_status_code(200).build() + ) + download_request_builder = ReportDownloadRequestBuilder.download_endpoint(report_id) + http_mocker.get( + ReportCheckStatusRequestBuilder.check_sponsored_display_report_status_endpoint( + self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_id + ).build(), + ReportCheckStatusResponseBuilder.check_status_response().with_record( + ReportCheckStatusRecordBuilder.status_record().with_status("COMPLETED").with_url(download_request_builder.url) + ).build() + ) - # a workaround to pass compressed document to the mocked response - gzip_file_report_response = ReportDownloadResponseBuilder.download_report().with_record(ReportFileRecordBuilder.report_file_record()).build() - request_matcher = HttpRequestMatcher(download_request_builder.build(), minimum_number_of_expected_match=1) - http_mocker._matchers.append(request_matcher) + # a workaround to pass compressed document to the mocked response + gzip_file_report_response = ReportDownloadResponseBuilder.download_report().with_record( + ReportFileRecordBuilder.report_file_record()).build() + request_matcher = HttpRequestMatcher(download_request_builder.build(), minimum_number_of_expected_match=1) + http_mocker._matchers.append(request_matcher) - http_mocker._mocker.get( - requests_mock.ANY, - additional_matcher=http_mocker._matches_wrapper(request_matcher), - response_list=[{"content": gzip_file_report_response.body, "status_code": gzip_file_report_response.status_code}], - ) + http_mocker._mocker.get( + requests_mock.ANY, + additional_matcher=http_mocker._matches_wrapper(request_matcher), + response_list=[{"content": gzip_file_report_response.body, "status_code": gzip_file_report_response.status_code}], + ) - for report_type, metrics in display_report.METRICS_MAP.items(): - tactic = display_report.TACTICS[1] - http_mocker.post( - SponsoredDisplayReportRequestBuilder._init_report_endpoint( - self._config["client_id"], self._config["access_token"], self._config["profiles"][0], report_type, tactic, metrics, start_date - ).build(), - ErrorResponseBuilder.non_breaking_error_response().with_record(non_breaking_error).with_status_code(status_code).build(), - ) + output = read_stream("sponsored_display_report_stream", SyncMode.full_refresh, self._config) + assert len(output.records) == 5 - output = read_stream("sponsored_display_report_stream", SyncMode.full_refresh, self._config) - assert len(output.records) == 5 - - expected_warning_logs = [ - ( - f"Unexpected HTTP status code {status_code} when registering {report_type}, " - f"SponsoredDisplayReportStream for 1 profile: {json.dumps(non_breaking_error.build())}" - ) for report_type in display_report.METRICS_MAP.keys() - ] - for expected_warning_log in expected_warning_logs: - assert any( - [ - expected_warning_log in warn - for warn in get_log_messages_by_log_level(output.logs, LogLevel.WARN) - ] - ) diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_sponsored_streams.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_sponsored_streams.py index e5096bcb1351..5fb0c3f1d676 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_sponsored_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/test_sponsored_streams.py @@ -4,6 +4,8 @@ from unittest import TestCase from unittest.mock import patch +from airbyte_cdk.models import Level as LogLevel +from airbyte_cdk.models import SyncMode from airbyte_cdk.test.mock_http import HttpMocker from airbyte_cdk.test.mock_http.response_builder import ( FieldPath, @@ -15,8 +17,6 @@ create_response_builder, find_template, ) -from airbyte_protocol.models import Level as LogLevel -from airbyte_protocol.models import SyncMode from .ad_requests import OAuthRequestBuilder, ProfilesRequestBuilder, SponsoredBrandsRequestBuilder from .ad_responses import ErrorResponseBuilder, OAuthResponseBuilder, ProfilesResponseBuilder, SponsoredBrandsResponseBuilder diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/utils.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/utils.py index fafd5b37f785..2c18d51301b7 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/utils.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/utils.py @@ -5,9 +5,9 @@ from airbyte_cdk.models import AirbyteMessage from airbyte_cdk.models import Level as LogLevel +from airbyte_cdk.models import SyncMode from airbyte_cdk.test.catalog_builder import CatalogBuilder from airbyte_cdk.test.entrypoint_wrapper import EntrypointOutput, read -from airbyte_protocol.models import SyncMode from source_amazon_ads import SourceAmazonAds from source_amazon_ads.declarative_source_adapter import DeclarativeSourceAdapter diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py index cf319c09a83f..12f187b73306 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py @@ -22,21 +22,14 @@ from source_amazon_ads.source import CONFIG_DATE_FORMAT from source_amazon_ads.streams import ( SponsoredBrandsCampaigns, - SponsoredBrandsReportStream, SponsoredBrandsV3ReportStream, - SponsoredBrandsVideoReportStream, SponsoredDisplayCampaigns, SponsoredDisplayReportStream, SponsoredProductCampaigns, SponsoredProductsReportStream, ) -from source_amazon_ads.streams.report_streams.display_report import TACTICS -from source_amazon_ads.streams.report_streams.report_streams import ( - RecordType, - ReportGenerationFailure, - ReportGenerationInProgress, - TooManyRequests, -) +from source_amazon_ads.streams.report_streams.report_stream_models import RecordType +from source_amazon_ads.streams.report_streams.report_streams import ReportGenerationFailure, ReportGenerationInProgress, TooManyRequests from .utils import read_incremental @@ -188,7 +181,7 @@ def make_profiles(profile_type="seller"): @responses.activate def test_display_report_stream(config): setup_responses( - init_response=REPORT_INIT_RESPONSE, + init_response_products=REPORT_INIT_RESPONSE, status_response=REPORT_STATUS_RESPONSE, metric_response=METRIC_RESPONSE, ) @@ -196,16 +189,16 @@ def test_display_report_stream(config): profiles = make_profiles() stream = SponsoredDisplayReportStream(config, profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} + stream_slice = {"profile": profiles[0], "reportDate": "2021-07-25"} metrics = [m for m in stream.read_records(SyncMode.incremental, stream_slice=stream_slice)] - assert len(metrics) == METRICS_COUNT * len(stream.metrics_map) * len(TACTICS) + assert len(metrics) == METRICS_COUNT * len(stream.metrics_map) profiles = make_profiles(profile_type="vendor") stream = SponsoredDisplayReportStream(config, profiles, authenticator=mock.MagicMock()) stream_slice["profile"] = profiles[0] metrics = [m for m in stream.read_records(SyncMode.incremental, stream_slice=stream_slice)] # Skip asins record for vendor profiles - assert len(metrics) == METRICS_COUNT * (len(stream.metrics_map) - 1) * len(TACTICS) + assert len(metrics) == METRICS_COUNT * (len(stream.metrics_map)) @pytest.mark.parametrize( @@ -235,7 +228,7 @@ def test_stream_report_body_metrics(config, profiles, stream_class, url_pattern, ) stream = stream_class(config, profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} + stream_slice = {"profile": profiles[0], "reportDate": "2021-07-25"} list(stream.read_records(SyncMode.incremental, stream_slice=stream_slice)) for call in responses.calls: create_report_pattern = re.compile(url_pattern) @@ -282,22 +275,6 @@ def test_products_report_stream_without_pk(config): assert len(metrics) == len(stream.metrics_map) -@responses.activate -def test_brands_report_stream(config): - setup_responses( - init_response_brands=REPORT_INIT_RESPONSE, - status_response=REPORT_STATUS_RESPONSE, - metric_response=METRIC_RESPONSE, - ) - - profiles = make_profiles() - - stream = SponsoredBrandsReportStream(config, profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} - metrics = [m for m in stream.read_records(SyncMode.incremental, stream_slice=stream_slice)] - assert len(metrics) == METRICS_COUNT * len(stream.metrics_map) - - @responses.activate def test_brands_v3_report_stream(config): setup_responses( @@ -314,29 +291,13 @@ def test_brands_v3_report_stream(config): assert len(metrics) == METRICS_COUNT * len(stream.metrics_map) -@responses.activate -def test_brands_video_report_stream(config): - setup_responses( - init_response_brands=REPORT_INIT_RESPONSE, - status_response=REPORT_STATUS_RESPONSE, - metric_response=METRIC_RESPONSE, - ) - - profiles = make_profiles() - - stream = SponsoredBrandsVideoReportStream(config, profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} - metrics = [m for m in stream.read_records(SyncMode.incremental, stream_slice=stream_slice)] - assert len(metrics) == METRICS_COUNT * len(stream.metrics_map) - - @responses.activate def test_display_report_stream_init_failure(mocker, config): profiles = make_profiles() stream = SponsoredDisplayReportStream(config, profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} + stream_slice = {"profile": profiles[0], "reportDate": "2021-07-25"} responses.add( - responses.POST, re.compile(r"https://advertising-api.amazon.com/sd/[a-zA-Z]+/report"), json={"error": "some error"}, status=400 + responses.POST, re.compile(r"https://advertising-api.amazon.com/reporting/reports"), json={"error": "some error"}, status=400 ) sleep_mock = mocker.patch("time.sleep") @@ -352,8 +313,8 @@ def test_display_report_stream_init_http_exception(mocker, config): mocker.patch("time.sleep", lambda x: None) profiles = make_profiles() stream = SponsoredDisplayReportStream(config, profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} - responses.add(responses.POST, re.compile(r"https://advertising-api.amazon.com/sd/[a-zA-Z]+/report"), body=ConnectionError()) + stream_slice = {"profile": profiles[0], "reportDate": "2021-07-25"} + responses.add(responses.POST, re.compile(r"https://advertising-api.amazon.com/reporting/reports"), body=ConnectionError()) with raises(ConnectionError): _ = [m for m in stream.read_records(SyncMode.incremental, stream_slice=stream_slice)] @@ -365,8 +326,8 @@ def test_display_report_stream_init_too_many_requests(mocker, config): mocker.patch("time.sleep", lambda x: None) profiles = make_profiles() stream = SponsoredDisplayReportStream(config, profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} - responses.add(responses.POST, re.compile(r"https://advertising-api.amazon.com/sd/[a-zA-Z]+/report"), json={}, status=429) + stream_slice = {"profile": profiles[0], "reportDate": "2021-07-25"} + responses.add(responses.POST, "https://advertising-api.amazon.com/reporting/reports", json={}, status=429) with raises(TooManyRequests): _ = [m for m in stream.read_records(SyncMode.incremental, stream_slice=stream_slice)] @@ -380,13 +341,13 @@ def test_display_report_stream_init_too_many_requests(mocker, config): [ (lambda x: x <= 10, "SUCCESS", None), ], - 10, + 5, ), ( [ (lambda x: x > 10, "SUCCESS", None), ], - 20, + 15, ), ( [ @@ -400,7 +361,7 @@ def test_display_report_stream_init_too_many_requests(mocker, config): (lambda x: x >= 6 and x <= 10, None, "2021-01-02 03:23:05"), (lambda x: x >= 11, "SUCCESS", "2021-01-02 03:24:06"), ], - 20, + 15, ), ( [ @@ -418,7 +379,7 @@ def test_display_report_stream_init_too_many_requests(mocker, config): @responses.activate def test_display_report_stream_backoff(mocker, config, modifiers, expected): mocker.patch("time.sleep") - setup_responses(init_response=REPORT_INIT_RESPONSE, metric_response=METRIC_RESPONSE) + setup_responses(init_response_products=REPORT_INIT_RESPONSE, metric_response=METRIC_RESPONSE) with freeze_time("2021-01-02 03:04:05") as frozen_time: @@ -438,10 +399,10 @@ def __call__(self, request): return (200, {}, response) callback = StatusCallback() - responses.add_callback(responses.GET, re.compile(r"https://advertising-api.amazon.com/v2/reports/[^/]+$"), callback=callback) + responses.add_callback(responses.GET, re.compile(r"https://advertising-api.amazon.com/reporting/reports/[^/]+$"), callback=callback) profiles = make_profiles() stream = SponsoredDisplayReportStream(config, profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} + stream_slice = {"profile": profiles[0], "reportDate": "2021-07-25"} if isinstance(expected, int): list(stream.read_records(SyncMode.incremental, stream_slice=stream_slice)) @@ -457,7 +418,7 @@ def test_display_report_stream_slices_full_refresh(config): profiles = make_profiles() stream = SponsoredDisplayReportStream(config, profiles, authenticator=mock.MagicMock()) slices = list(stream.stream_slices(SyncMode.full_refresh, cursor_field=stream.cursor_field)) - assert slices == [{"profile": profiles[0], "reportDate": "20210729"}] + assert slices == [{"profile": profiles[0], "reportDate": "2021-07-29"}] @freeze_time("2021-07-30 04:26:08") @@ -465,25 +426,25 @@ def test_display_report_stream_slices_full_refresh(config): def test_display_report_stream_slices_incremental(config): profiles = make_profiles() stream = SponsoredDisplayReportStream(config, profiles, authenticator=mock.MagicMock()) - stream_state = {str(profiles[0].profileId): {"reportDate": "20210725"}} + stream_state = {str(profiles[0].profileId): {"reportDate": "2021-07-25"}} slices = list(stream.stream_slices(SyncMode.incremental, cursor_field=stream.cursor_field, stream_state=stream_state)) assert slices == [ - {"profile": profiles[0], "reportDate": "20210725"}, - {"profile": profiles[0], "reportDate": "20210726"}, - {"profile": profiles[0], "reportDate": "20210727"}, - {"profile": profiles[0], "reportDate": "20210728"}, - {"profile": profiles[0], "reportDate": "20210729"}, + {"profile": profiles[0], "reportDate": "2021-07-25"}, + {"profile": profiles[0], "reportDate": "2021-07-26"}, + {"profile": profiles[0], "reportDate": "2021-07-27"}, + {"profile": profiles[0], "reportDate": "2021-07-28"}, + {"profile": profiles[0], "reportDate": "2021-07-29"}, ] - stream_state = {str(profiles[0].profileId): {"reportDate": "20210730"}} + stream_state = {str(profiles[0].profileId): {"reportDate": "2021-07-30"}} slices = list(stream.stream_slices(SyncMode.incremental, cursor_field=stream.cursor_field, stream_state=stream_state)) assert slices == [None] slices = list(stream.stream_slices(SyncMode.incremental, cursor_field=stream.cursor_field, stream_state={})) - assert slices == [{"profile": profiles[0], "reportDate": "20210729"}] + assert slices == [{"profile": profiles[0], "reportDate": "2021-07-29"}] slices = list(stream.stream_slices(SyncMode.incremental, cursor_field=None, stream_state={})) - assert slices == [{"profile": profiles[0], "reportDate": "20210729"}] + assert slices == [{"profile": profiles[0], "reportDate": "2021-07-29"}] @freeze_time("2021-08-01 04:00:00") @@ -571,7 +532,7 @@ def test_get_date_range_lazy_evaluation(): @responses.activate def test_read_incremental_without_records(config): setup_responses( - init_response=REPORT_INIT_RESPONSE, + init_response_products=REPORT_INIT_RESPONSE, status_response=REPORT_STATUS_RESPONSE, metric_response=b64decode("H4sIAAAAAAAAAIuOBQApu0wNAgAAAA=="), ) @@ -581,7 +542,7 @@ def test_read_incremental_without_records(config): with freeze_time("2021-01-02 12:00:00") as frozen_datetime: state = {} - reportDates = ["20210102", "20210102", "20210102", "20210103", "20210104", "20210105"] + reportDates = ["2021-01-02", "2021-01-02", "2021-01-02", "2021-01-03", "2021-01-04", "2021-01-05"] for reportDate in reportDates: records = list(read_incremental(stream, state)) assert state == {"1": {"reportDate": reportDate}} @@ -592,7 +553,7 @@ def test_read_incremental_without_records(config): @responses.activate def test_read_incremental_with_records(config): setup_responses( - init_response=REPORT_INIT_RESPONSE, + init_response_products=REPORT_INIT_RESPONSE, status_response=REPORT_STATUS_RESPONSE, metric_response=METRIC_RESPONSE, ) @@ -603,39 +564,39 @@ def test_read_incremental_with_records(config): with freeze_time("2021-01-02 12:00:00") as frozen_datetime: state = {} records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210102"}} - assert {r["reportDate"] for r in records} == {"20210102"} + assert state == {"1": {"reportDate": "2021-01-02"}} + assert {r["reportDate"] for r in records} == {"2021-01-02"} frozen_datetime.tick(delta=timedelta(days=1)) records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210102"}} - assert {r["reportDate"] for r in records} == {"20210102", "20210103"} + assert state == {"1": {"reportDate": "2021-01-02"}} + assert {r["reportDate"] for r in records} == {"2021-01-02", "2021-01-03"} frozen_datetime.tick(delta=timedelta(days=1)) records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210102"}} - assert {r["reportDate"] for r in records} == {"20210102", "20210103", "20210104"} + assert state == {"1": {"reportDate": "2021-01-02"}} + assert {r["reportDate"] for r in records} == {"2021-01-02", "2021-01-03", "2021-01-04"} frozen_datetime.tick(delta=timedelta(days=1)) records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210103"}} - assert {r["reportDate"] for r in records} == {"20210102", "20210103", "20210104", "20210105"} + assert state == {"1": {"reportDate": "2021-01-03"}} + assert {r["reportDate"] for r in records} == {"2021-01-02", "2021-01-03", "2021-01-04", "2021-01-05"} frozen_datetime.tick(delta=timedelta(days=1)) records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210104"}} - assert {r["reportDate"] for r in records} == {"20210103", "20210104", "20210105", "20210106"} + assert state == {"1": {"reportDate": "2021-01-04"}} + assert {r["reportDate"] for r in records} == {"2021-01-03", "2021-01-04", "2021-01-05", "2021-01-06"} frozen_datetime.tick(delta=timedelta(days=1)) records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210105"}} - assert {r["reportDate"] for r in records} == {"20210104", "20210105", "20210106", "20210107"} + assert state == {"1": {"reportDate": "2021-01-05"}} + assert {r["reportDate"] for r in records} == {"2021-01-04", "2021-01-05", "2021-01-06", "2021-01-07"} @responses.activate def test_read_incremental_without_records_start_date(config): setup_responses( - init_response=REPORT_INIT_RESPONSE, + init_response_products=REPORT_INIT_RESPONSE, status_response=REPORT_STATUS_RESPONSE, metric_response=b64decode("H4sIAAAAAAAAAIuOBQApu0wNAgAAAA=="), ) @@ -646,7 +607,7 @@ def test_read_incremental_without_records_start_date(config): with freeze_time("2021-01-02 12:00:00") as frozen_datetime: state = {} - reportDates = ["20201231", "20210101", "20210102", "20210103", "20210104"] + reportDates = ["2020-12-31", "2021-01-01", "2021-01-02", "2021-01-03", "2021-01-04"] for reportDate in reportDates: records = list(read_incremental(stream, state)) assert state == {"1": {"reportDate": reportDate}} @@ -657,7 +618,7 @@ def test_read_incremental_without_records_start_date(config): @responses.activate def test_read_incremental_with_records_start_date(config): setup_responses( - init_response=REPORT_INIT_RESPONSE, + init_response_products=REPORT_INIT_RESPONSE, status_response=REPORT_STATUS_RESPONSE, metric_response=METRIC_RESPONSE, ) @@ -670,38 +631,38 @@ def test_read_incremental_with_records_start_date(config): state = {} records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20201231"}} + assert state == {"1": {"reportDate": "2020-12-31"}} assert {r["reportDate"] for r in records} == { - "20201225", - "20201226", - "20201227", - "20201228", - "20201229", - "20201230", - "20201231", - "20210101", - "20210102", + "2020-12-25", + "2020-12-26", + "2020-12-27", + "2020-12-28", + "2020-12-29", + "2020-12-30", + "2020-12-31", + "2021-01-01", + "2021-01-02", } frozen_datetime.tick(delta=timedelta(days=1)) records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210101"}} - assert {r["reportDate"] for r in records} == {"20201231", "20210101", "20210102", "20210103"} + assert state == {"1": {"reportDate": "2021-01-01"}} + assert {r["reportDate"] for r in records} == {"2020-12-31", "2021-01-01", "2021-01-02", "2021-01-03"} frozen_datetime.tick(delta=timedelta(days=1)) records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210102"}} - assert {r["reportDate"] for r in records} == {"20210101", "20210102", "20210103", "20210104"} + assert state == {"1": {"reportDate": "2021-01-02"}} + assert {r["reportDate"] for r in records} == {"2021-01-01", "2021-01-02", "2021-01-03", "2021-01-04"} frozen_datetime.tick(delta=timedelta(days=1)) records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210103"}} - assert {r["reportDate"] for r in records} == {"20210102", "20210103", "20210104", "20210105"} + assert state == {"1": {"reportDate": "2021-01-03"}} + assert {r["reportDate"] for r in records} == {"2021-01-02", "2021-01-03", "2021-01-04", "2021-01-05"} frozen_datetime.tick(delta=timedelta(days=1)) records = list(read_incremental(stream, state)) - assert state == {"1": {"reportDate": "20210104"}} - assert {r["reportDate"] for r in records} == {"20210103", "20210104", "20210105", "20210106"} + assert state == {"1": {"reportDate": "2021-01-04"}} + assert {r["reportDate"] for r in records} == {"2021-01-03", "2021-01-04", "2021-01-05", "2021-01-06"} @pytest.mark.parametrize( @@ -780,7 +741,7 @@ def test_sponsored_brand_and_products_streams_state_filter(mocker, config, state ) def test_display_report_stream_with_custom_record_types(config_gen, custom_record_types, flag_match_error): setup_responses( - init_response=REPORT_INIT_RESPONSE, + init_response_products=REPORT_INIT_RESPONSE, status_response=REPORT_STATUS_RESPONSE, metric_response=METRIC_RESPONSE, ) @@ -788,7 +749,7 @@ def test_display_report_stream_with_custom_record_types(config_gen, custom_recor profiles = make_profiles() stream = SponsoredDisplayReportStream(config_gen(report_record_types=custom_record_types), profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} + stream_slice = {"profile": profiles[0], "reportDate": "2021-07-25"} records = list(stream.read_records(SyncMode.incremental, stream_slice=stream_slice)) for record in records: if record["recordType"] not in custom_record_types: @@ -827,36 +788,6 @@ def test_products_report_stream_with_custom_record_types(config_gen, custom_reco assert False -@responses.activate -@pytest.mark.parametrize( - "custom_record_types, expected_record_types, flag_match_error", - [ - (["campaigns"], ["campaigns"], True), - (["asins"], ["asins"], True), - (["campaigns", "adGroups"], ["campaigns", "adGroups"], True), - ([], [], False), - (["invalid_record_type"], [], True), - ], -) -def test_brands_video_report_with_custom_record_types(config_gen, custom_record_types, expected_record_types, flag_match_error): - setup_responses( - init_response_brands=REPORT_INIT_RESPONSE, - status_response=REPORT_STATUS_RESPONSE, - metric_response=METRIC_RESPONSE, - ) - - profiles = make_profiles() - - stream = SponsoredBrandsVideoReportStream(config_gen(report_record_types=custom_record_types), profiles, authenticator=mock.MagicMock()) - stream_slice = {"profile": profiles[0], "reportDate": "20210725"} - records = list(stream.read_records(SyncMode.incremental, stream_slice=stream_slice)) - for record in records: - print(record) - if record["recordType"] not in expected_record_types: - if flag_match_error: - assert False - - @pytest.mark.parametrize( "metric_object, record_type", [ diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_source.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_source.py index 4ecc75099554..4bc0e636ea59 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_source.py @@ -92,7 +92,7 @@ def test_source_streams(config): setup_responses() source = DeclarativeSourceAdapter(source=SourceAmazonAds()) streams = source.streams(config) - assert len(streams) == 29 + assert len(streams) == 27 actual_stream_names = {stream.name for stream in streams} expected_stream_names = { "profiles", @@ -111,7 +111,7 @@ def test_source_streams(config): "sponsored_brands_campaigns", "sponsored_brands_ad_groups", "sponsored_brands_keywords", - "sponsored_brands_report_stream", + "sponsored_brands_v3_report_stream", "attribution_report_performance_adgroup", "attribution_report_performance_campaign", "attribution_report_performance_creative", diff --git a/docs/integrations/sources/amazon-ads-migrations.md b/docs/integrations/sources/amazon-ads-migrations.md index ee21cb5dd341..6670d4aa2a55 100644 --- a/docs/integrations/sources/amazon-ads-migrations.md +++ b/docs/integrations/sources/amazon-ads-migrations.md @@ -1,5 +1,44 @@ # Amazon Ads Migration Guide + +## Upgrading to 6.0.0 + +The `SponsoredDisplayReportStream` stream now has an updated schema, thanks to a recent change in the Amazon Ads API. You can find more details in the [Amazon Migration Guide (metrics)](https://advertising.amazon.com/API/docs/en-us/reference/migration-guides/reporting-v2-v3#metrics). + +Please note that SponsoredBrandsReportStream and SponsoredBrandsVideoReportStream will become unavailable as a result of the deprecation of API V2. We recommend switching to SponsoredBrandsV3ReportStream as a great alternative. +see [Amazon Migration Guide (metrics)](https://advertising.amazon.com/API/docs/en-us/reference/migration-guides/reporting-v2-v3#metrics) for more info. + +Streams `SponsoredBrandsReportStream` `SponsoredBrandsVideoReportStream` will become unavailable. +It is recommended to use `SponsoredBrandsV3ReportStream` as an alternative. + +### Refresh affected schemas and reset data + +1. Select **Connections** in the main navbar. + 1. Select the connection(s) affected by the update. +2. Select the **Replication** tab. + 1. Select **Refresh source schema**. + 2. Select **OK**. + +```note +Any detected schema changes will be listed for your review. +``` + +3. Select **Save changes** at the bottom of the page. + 1. Ensure the **Reset affected streams** option is checked. + +```note +Depending on destination type you may not be prompted to reset your data. +``` + +4. Select **Save connection**. + +```note +This will reset the data in your destination and initiate a fresh sync. +``` + +For more information on resetting your data in Airbyte, see [this page](/operator-guides/clear). + + ## Upgrading to 5.0.0 The following streams have updated schemas due to a change with the Amazon Ads API: diff --git a/docs/integrations/sources/amazon-ads.md b/docs/integrations/sources/amazon-ads.md index 0383e2c4f1f8..d53e52624d98 100644 --- a/docs/integrations/sources/amazon-ads.md +++ b/docs/integrations/sources/amazon-ads.md @@ -115,7 +115,7 @@ This source is capable of syncing the following streams: - [Sponsored Products Targetings](https://advertising.amazon.com/API/docs/en-us/sponsored-products/2-0/openapi#/Product%20targeting) - [Brands Reports](https://advertising.amazon.com/API/docs/en-us/reference/sponsored-brands/2/reports) - [Brand Video Reports](https://advertising.amazon.com/API/docs/en-us/reference/sponsored-brands/2/reports) -- [Display Reports](https://advertising.amazon.com/API/docs/en-us/sponsored-display/3-0/openapi#/Reports) (Contextual targeting only) +- [Display Reports](https://advertising.amazon.com/API/docs/en-us/guides/reporting/v3/report-types/overview) - [Products Reports](https://advertising.amazon.com/API/docs/en-us/sponsored-products/2-0/openapi#/Reports) - [Attribution Reports](https://advertising.amazon.com/API/docs/en-us/amazon-attribution-prod-3p/#/) @@ -138,7 +138,7 @@ Information about expected report generation waiting time can be found [here](ht ### Data type map | Integration Type | Airbyte Type | -| :----------------------- | :----------- | +|:-------------------------|:-------------| | `string` | `string` | | `int`, `float`, `number` | `number` | | `date` | `date` | @@ -153,35 +153,36 @@ Information about expected report generation waiting time can be found [here](ht | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------| -| 5.0.20 | 2024-10-29 | [47032](https://github.com/airbytehq/airbyte/pull/47032) | Update dependencies | -| 5.0.19 | 2024-10-12 | [46860](https://github.com/airbytehq/airbyte/pull/46860) | Update dependencies | -| 5.0.18 | 2024-10-05 | [46451](https://github.com/airbytehq/airbyte/pull/46451) | Update dependencies | -| 5.0.17 | 2024-09-28 | [45794](https://github.com/airbytehq/airbyte/pull/45794) | Update dependencies | -| 5.0.16 | 2024-09-14 | [45548](https://github.com/airbytehq/airbyte/pull/45548) | Update dependencies | -| 5.0.15 | 2024-09-07 | [45308](https://github.com/airbytehq/airbyte/pull/45308) | Update dependencies | -| 5.0.14 | 2024-08-31 | [45051](https://github.com/airbytehq/airbyte/pull/45051) | Update dependencies | -| 5.0.13 | 2024-08-24 | [44648](https://github.com/airbytehq/airbyte/pull/44648) | Update dependencies | -| 5.0.12 | 2024-08-17 | [43845](https://github.com/airbytehq/airbyte/pull/43845) | Update dependencies | -| 5.0.11 | 2024-08-12 | [43354](https://github.com/airbytehq/airbyte/pull/43354) | Fix download request for `sponsored_products_report_stream` | -| 5.0.10 | 2024-08-10 | [42162](https://github.com/airbytehq/airbyte/pull/42162) | Update dependencies | -| 5.0.9 | 2024-07-13 | [41876](https://github.com/airbytehq/airbyte/pull/41876) | Update dependencies | -| 5.0.8 | 2024-07-10 | [41487](https://github.com/airbytehq/airbyte/pull/41487) | Update dependencies | -| 5.0.7 | 2024-07-09 | [41143](https://github.com/airbytehq/airbyte/pull/41143) | Update dependencies | -| 5.0.6 | 2024-07-06 | [40798](https://github.com/airbytehq/airbyte/pull/40798) | Update dependencies | -| 5.0.5 | 2024-06-25 | [40403](https://github.com/airbytehq/airbyte/pull/40403) | Update dependencies | -| 5.0.4 | 2024-06-21 | [39926](https://github.com/airbytehq/airbyte/pull/39926) | Update dependencies | -| 5.0.3 | 2024-06-04 | [38962](https://github.com/airbytehq/airbyte/pull/38962) | [autopull] Upgrade base image to v1.2.1 | -| 5.0.2 | 2024-05-29 | [38737](https://github.com/airbytehq/airbyte/pull/38737) | Update authenticator to `requests_native_auth` package | -| 5.0.1 | 2024-04-29 | [37655](https://github.com/airbytehq/airbyte/pull/37655) | Update error messages and spec with info about `agency` profile type. | -| 5.0.0 | 2024-03-22 | [36169](https://github.com/airbytehq/airbyte/pull/36169) | Update `SponsoredBrand` and `SponsoredProduct` streams due to API endpoint deprecation | -| 4.1.0 | 2024-03-19 | [36267](https://github.com/airbytehq/airbyte/pull/36267) | Pin airbyte-cdk version to `^0` | -| 4.0.4 | 2024-02-23 | [35481](https://github.com/airbytehq/airbyte/pull/35481) | Migrate source to `YamlDeclarativeSource` with custom `check_connection` | -| 4.0.3 | 2024-02-12 | [35180](https://github.com/airbytehq/airbyte/pull/35180) | Manage dependencies with Poetry | -| 4.0.2 | 2024-02-08 | [35013](https://github.com/airbytehq/airbyte/pull/35013) | Add missing field to `sponsored_display_budget_rules` stream | -| 4.0.1 | 2023-12-28 | [33833](https://github.com/airbytehq/airbyte/pull/33833) | Updated oauth spec to put region, so we can choose oauth consent url based on it | -| 4.0.0 | 2023-12-28 | [33817](https://github.com/airbytehq/airbyte/pull/33817) | Fix schema for streams: `SponsoredBrandsAdGroups` and `SponsoredBrandsKeywords` | -| 3.4.2 | 2023-12-12 | [33361](https://github.com/airbytehq/airbyte/pull/33361) | Fix unexpected crash when handling error messages which don't have `requestId` field | -| 3.4.1 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image | +| 6.0.0 | 2024-10-28 | [47366](https://github.com/airbytehq/airbyte/pull/47366) | Migrate stream `SponsoredDisplayReportStream` to Amazon Ads Reports v3 | +| 5.0.20 | 2024-10-29 | [47032](https://github.com/airbytehq/airbyte/pull/47032) | Update dependencies | +| 5.0.19 | 2024-10-12 | [46860](https://github.com/airbytehq/airbyte/pull/46860) | Update dependencies | +| 5.0.18 | 2024-10-05 | [46451](https://github.com/airbytehq/airbyte/pull/46451) | Update dependencies | +| 5.0.17 | 2024-09-28 | [45794](https://github.com/airbytehq/airbyte/pull/45794) | Update dependencies | +| 5.0.16 | 2024-09-14 | [45548](https://github.com/airbytehq/airbyte/pull/45548) | Update dependencies | +| 5.0.15 | 2024-09-07 | [45308](https://github.com/airbytehq/airbyte/pull/45308) | Update dependencies | +| 5.0.14 | 2024-08-31 | [45051](https://github.com/airbytehq/airbyte/pull/45051) | Update dependencies | +| 5.0.13 | 2024-08-24 | [44648](https://github.com/airbytehq/airbyte/pull/44648) | Update dependencies | +| 5.0.12 | 2024-08-17 | [43845](https://github.com/airbytehq/airbyte/pull/43845) | Update dependencies | +| 5.0.11 | 2024-08-12 | [43354](https://github.com/airbytehq/airbyte/pull/43354) | Fix download request for `sponsored_products_report_stream` | +| 5.0.10 | 2024-08-10 | [42162](https://github.com/airbytehq/airbyte/pull/42162) | Update dependencies | +| 5.0.9 | 2024-07-13 | [41876](https://github.com/airbytehq/airbyte/pull/41876) | Update dependencies | +| 5.0.8 | 2024-07-10 | [41487](https://github.com/airbytehq/airbyte/pull/41487) | Update dependencies | +| 5.0.7 | 2024-07-09 | [41143](https://github.com/airbytehq/airbyte/pull/41143) | Update dependencies | +| 5.0.6 | 2024-07-06 | [40798](https://github.com/airbytehq/airbyte/pull/40798) | Update dependencies | +| 5.0.5 | 2024-06-25 | [40403](https://github.com/airbytehq/airbyte/pull/40403) | Update dependencies | +| 5.0.4 | 2024-06-21 | [39926](https://github.com/airbytehq/airbyte/pull/39926) | Update dependencies | +| 5.0.3 | 2024-06-04 | [38962](https://github.com/airbytehq/airbyte/pull/38962) | [autopull] Upgrade base image to v1.2.1 | +| 5.0.2 | 2024-05-29 | [38737](https://github.com/airbytehq/airbyte/pull/38737) | Update authenticator to `requests_native_auth` package | +| 5.0.1 | 2024-04-29 | [37655](https://github.com/airbytehq/airbyte/pull/37655) | Update error messages and spec with info about `agency` profile type. | +| 5.0.0 | 2024-03-22 | [36169](https://github.com/airbytehq/airbyte/pull/36169) | Update `SponsoredBrand` and `SponsoredProduct` streams due to API endpoint deprecation | +| 4.1.0 | 2024-03-19 | [36267](https://github.com/airbytehq/airbyte/pull/36267) | Pin airbyte-cdk version to `^0` | +| 4.0.4 | 2024-02-23 | [35481](https://github.com/airbytehq/airbyte/pull/35481) | Migrate source to `YamlDeclarativeSource` with custom `check_connection` | +| 4.0.3 | 2024-02-12 | [35180](https://github.com/airbytehq/airbyte/pull/35180) | Manage dependencies with Poetry | +| 4.0.2 | 2024-02-08 | [35013](https://github.com/airbytehq/airbyte/pull/35013) | Add missing field to `sponsored_display_budget_rules` stream | +| 4.0.1 | 2023-12-28 | [33833](https://github.com/airbytehq/airbyte/pull/33833) | Updated oauth spec to put region, so we can choose oauth consent url based on it | +| 4.0.0 | 2023-12-28 | [33817](https://github.com/airbytehq/airbyte/pull/33817) | Fix schema for streams: `SponsoredBrandsAdGroups` and `SponsoredBrandsKeywords` | +| 3.4.2 | 2023-12-12 | [33361](https://github.com/airbytehq/airbyte/pull/33361) | Fix unexpected crash when handling error messages which don't have `requestId` field | +| 3.4.1 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image | | 3.4.0 | 2023-06-09 | [25913](https://github.com/airbytehq/airbyte/pull/26203) | Add Stream `DisplayCreatives` | | 3.3.0 | 2023-09-22 | [30679](https://github.com/airbytehq/airbyte/pull/30679) | Fix unexpected column for `SponsoredProductCampaigns` and `SponsoredBrandsKeywords` | | 3.2.0 | 2023-09-18 | [30517](https://github.com/airbytehq/airbyte/pull/30517) | Add suggested streams; fix unexpected column issue | From abe19872d6a88c6278f9a012037b218d8a207373 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Wed, 30 Oct 2024 08:37:53 -0700 Subject: [PATCH 488/808] [Destination-MotherDuck][fix]: Don't lose Platform-generated `id` in state messages (#47969) --- .../destination_motherduck/destination.py | 76 ++++++++- .../integration_tests/integration_test.py | 47 +++--- .../integration_tests/spec.json | 2 +- .../destination-motherduck/metadata.yaml | 2 +- .../destination-motherduck/poetry.lock | 156 ++++++++++-------- .../destination-motherduck/pyproject.toml | 16 +- docs/integrations/destinations/motherduck.md | 1 + 7 files changed, 202 insertions(+), 98 deletions(-) diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py index 15e36de261e8..91afcdb15e33 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py @@ -2,19 +2,32 @@ from __future__ import annotations import datetime +import io import json import logging import os import re import uuid from collections import defaultdict +from dataclasses import dataclass from logging import getLogger -from typing import Any, Dict, Iterable, List, Mapping +from typing import Any, Dict, Iterable, List, Mapping, cast from urllib.parse import urlparse +import orjson from airbyte_cdk import AirbyteStream, ConfiguredAirbyteStream, SyncMode from airbyte_cdk.destinations import Destination -from airbyte_cdk.models import AirbyteConnectionStatus, AirbyteMessage, AirbyteStateStats, ConfiguredAirbyteCatalog, Status, Type +from airbyte_cdk.exception_handler import init_uncaught_exception_handler +from airbyte_cdk.models import ( + AirbyteConnectionStatus, + AirbyteMessage, + AirbyteStateMessage, + AirbyteStateStats, + ConfiguredAirbyteCatalog, + Status, + Type, +) +from airbyte_cdk.models.airbyte_protocol_serializers import custom_type_resolver from airbyte_cdk.sql._util.name_normalizers import LowerCaseNormalizer from airbyte_cdk.sql.constants import AB_EXTRACTED_AT_COLUMN, AB_INTERNAL_COLUMNS, AB_META_COLUMN, AB_RAW_ID_COLUMN from airbyte_cdk.sql.secrets import SecretString @@ -22,6 +35,8 @@ from airbyte_cdk.sql.types import SQLTypeConverter from destination_motherduck.processors.duckdb import DuckDBConfig, DuckDBSqlProcessor from destination_motherduck.processors.motherduck import MotherDuckConfig, MotherDuckSqlProcessor +from serpyco_rs import Serializer +from typing_extensions import override logger = getLogger("airbyte") @@ -30,6 +45,30 @@ MAX_STREAM_BATCH_SIZE = 50_000 +@dataclass +class PatchedAirbyteStateMessage(AirbyteStateMessage): + """Declare the `id` attribute that platform sends.""" + + id: int | None = None + """Injected by the platform.""" + + +@dataclass +class PatchedAirbyteMessage(AirbyteMessage): + """Keep all defaults but override the type used in `state`.""" + + state: PatchedAirbyteStateMessage | None = None + """Override class for the state message only.""" + + +PatchedAirbyteMessageSerializer = Serializer( + PatchedAirbyteMessage, + omit_none=True, + custom_type_resolver=custom_type_resolver, +) +"""Redeclared SerDes class using the patched dataclass.""" + + def validated_sql_name(sql_name: Any) -> str: """Return the input if it is a valid SQL name, otherwise raise an exception.""" pattern = r"^[a-zA-Z0-9_]*$" @@ -123,7 +162,7 @@ def write( streams = {s.stream.name for s in configured_catalog.streams} logger.info(f"Starting write to DuckDB with {len(streams)} streams") - path = str(config.get("destination_path")) + path = str(config.get("destination_path", "md:")) path = self._get_destination_path(path) schema_name = validated_sql_name(config.get("schema", CONFIG_DEFAULT_SCHEMA)) motherduck_api_key = str(config.get(CONFIG_MOTHERDUCK_API_KEY, "")) @@ -293,3 +332,34 @@ def check(self, logger: logging.Logger, config: Mapping[str, Any]) -> AirbyteCon except Exception as e: return AirbyteConnectionStatus(status=Status.FAILED, message=f"An exception occurred: {repr(e)}") + + @override + def run(self, args: list[str]) -> None: + """Overridden from CDK base class in order to use the patched SerDes class.""" + init_uncaught_exception_handler(logger) + parsed_args = self.parse_args(args) + output_messages = self.run_cmd(parsed_args) + for message in output_messages: + print( + orjson.dumps( + PatchedAirbyteMessageSerializer.dump( + cast(PatchedAirbyteMessage, message), + ) + ).decode() + ) + + @override + def _parse_input_stream(self, input_stream: io.TextIOWrapper) -> Iterable[AirbyteMessage]: + """Reads from stdin, converting to Airbyte messages. + + Includes overrides that should be in the CDK but we need to test it in the wild first. + + Rationale: + The platform injects `id` but our serializer classes don't support + `additionalProperties`. + """ + for line in input_stream: + try: + yield PatchedAirbyteMessageSerializer.load(orjson.loads(line)) + except orjson.JSONDecodeError: + logger.info(f"ignoring input which can't be deserialized as Airbyte Message: {line}") diff --git a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py index de9415e516df..9a2471e92509 100644 --- a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py +++ b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py @@ -7,7 +7,6 @@ import random import string import tempfile -import time from datetime import datetime from pathlib import Path from typing import Any, Callable, Dict, Generator, Iterable @@ -332,26 +331,28 @@ def test_write( result = list(generator) assert len(result) == 1 - motherduck_api_key = str(config.get(CONFIG_MOTHERDUCK_API_KEY, "")) duckdb_config = {} - if motherduck_api_key: - duckdb_config["motherduck_token"] = motherduck_api_key + if CONFIG_MOTHERDUCK_API_KEY in config: + duckdb_config["motherduck_token"] = config[CONFIG_MOTHERDUCK_API_KEY] duckdb_config["custom_user_agent"] = "airbyte_intg_test" + con = duckdb.connect( - database=config.get("destination_path"), read_only=False, config=duckdb_config + database=config.get("destination_path", "md:"), + read_only=False, + config=duckdb_config, ) with con: cursor = con.execute( "SELECT key1, key2, _airbyte_raw_id, _airbyte_extracted_at, _airbyte_meta " f"FROM {test_schema_name}.{test_table_name} ORDER BY key1" ) - result = cursor.fetchall() + sql_result = cursor.fetchall() - assert len(result) == 2 - assert result[0][0] == "Dennis" - assert result[1][0] == "Megan" - assert result[0][1] == "868-98-1034" - assert result[1][1] == "777-54-0664" + assert len(sql_result) == 2 + assert sql_result[0][0] == "Dennis" + assert sql_result[1][0] == "Megan" + assert sql_result[0][1] == "868-98-1034" + assert sql_result[1][1] == "777-54-0664" def test_write_dupe( @@ -380,20 +381,22 @@ def test_write_dupe( duckdb_config["motherduck_token"] = motherduck_api_key duckdb_config["custom_user_agent"] = "airbyte_intg_test" con = duckdb.connect( - database=config.get("destination_path"), read_only=False, config=duckdb_config + database=config.get("destination_path", "md:"), + read_only=False, + config=duckdb_config, ) with con: cursor = con.execute( "SELECT key1, key2, _airbyte_raw_id, _airbyte_extracted_at, _airbyte_meta " f"FROM {test_schema_name}.{test_table_name} ORDER BY key1" ) - result = cursor.fetchall() + sql_result = cursor.fetchall() - assert len(result) == 2 - assert result[0][0] == "Dennis" - assert result[1][0] == "Megan" - assert result[0][1] == "138-73-1034" - assert result[1][1] == "777-54-0664" + assert len(sql_result) == 2 + assert sql_result[0][0] == "Dennis" + assert sql_result[1][0] == "Megan" + assert sql_result[0][1] == "138-73-1034" + assert sql_result[1][1] == "777-54-0664" def _airbyte_messages( @@ -519,12 +522,14 @@ def test_large_number_of_writes( duckdb_config["custom_user_agent"] = "airbyte_intg_test" con = duckdb.connect( - database=config.get("destination_path"), read_only=False, config=duckdb_config + database=config.get("destination_path", "md:"), + read_only=False, + config=duckdb_config, ) with con: cursor = con.execute( "SELECT count(1) " f"FROM {test_schema_name}.{test_large_table_name}" ) - result = cursor.fetchall() - assert result[0][0] == TOTAL_RECORDS - TOTAL_RECORDS // (BATCH_WRITE_SIZE + 1) + sql_result = cursor.fetchall() + assert sql_result[0][0] == TOTAL_RECORDS - TOTAL_RECORDS // (BATCH_WRITE_SIZE + 1) diff --git a/airbyte-integrations/connectors/destination-motherduck/integration_tests/spec.json b/airbyte-integrations/connectors/destination-motherduck/integration_tests/spec.json index 43953499f175..03e0b949344c 100644 --- a/airbyte-integrations/connectors/destination-motherduck/integration_tests/spec.json +++ b/airbyte-integrations/connectors/destination-motherduck/integration_tests/spec.json @@ -29,7 +29,7 @@ } }, "supportsIncremental": true, - "supportsNormalization": true, + "supportsNormalization": false, "supportsDBT": true, "supported_destination_sync_modes": ["overwrite", "append", "append_dedup"] } diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index f931b0dbaf43..00b862b0e2a1 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.12 + dockerImageTag: 0.1.13 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/poetry.lock b/airbyte-integrations/connectors/destination-motherduck/poetry.lock index 3442398fd321..c27d3aa24bb4 100644 --- a/airbyte-integrations/connectors/destination-motherduck/poetry.lock +++ b/airbyte-integrations/connectors/destination-motherduck/poetry.lock @@ -613,58 +613,63 @@ files = [ [[package]] name = "duckdb" -version = "0.10.3" +version = "1.1.2" description = "DuckDB in-process database" optional = false python-versions = ">=3.7.0" files = [ - {file = "duckdb-0.10.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd25cc8d001c09a19340739ba59d33e12a81ab285b7a6bed37169655e1cefb31"}, - {file = "duckdb-0.10.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f9259c637b917ca0f4c63887e8d9b35ec248f5d987c886dfc4229d66a791009"}, - {file = "duckdb-0.10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b48f5f1542f1e4b184e6b4fc188f497be8b9c48127867e7d9a5f4a3e334f88b0"}, - {file = "duckdb-0.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e327f7a3951ea154bb56e3fef7da889e790bd9a67ca3c36afc1beb17d3feb6d6"}, - {file = "duckdb-0.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d8b20ed67da004b4481973f4254fd79a0e5af957d2382eac8624b5c527ec48c"}, - {file = "duckdb-0.10.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d37680b8d7be04e4709db3a66c8b3eb7ceba2a5276574903528632f2b2cc2e60"}, - {file = "duckdb-0.10.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3d34b86d6a2a6dfe8bb757f90bfe7101a3bd9e3022bf19dbddfa4b32680d26a9"}, - {file = "duckdb-0.10.3-cp310-cp310-win_amd64.whl", hash = "sha256:73b1cb283ca0f6576dc18183fd315b4e487a545667ffebbf50b08eb4e8cdc143"}, - {file = "duckdb-0.10.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d917dde19fcec8cadcbef1f23946e85dee626ddc133e1e3f6551f15a61a03c61"}, - {file = "duckdb-0.10.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46757e0cf5f44b4cb820c48a34f339a9ccf83b43d525d44947273a585a4ed822"}, - {file = "duckdb-0.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:338c14d8ac53ac4aa9ec03b6f1325ecfe609ceeb72565124d489cb07f8a1e4eb"}, - {file = "duckdb-0.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:651fcb429602b79a3cf76b662a39e93e9c3e6650f7018258f4af344c816dab72"}, - {file = "duckdb-0.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3ae3c73b98b6215dab93cc9bc936b94aed55b53c34ba01dec863c5cab9f8e25"}, - {file = "duckdb-0.10.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56429b2cfe70e367fb818c2be19f59ce2f6b080c8382c4d10b4f90ba81f774e9"}, - {file = "duckdb-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b46c02c2e39e3676b1bb0dc7720b8aa953734de4fd1b762e6d7375fbeb1b63af"}, - {file = "duckdb-0.10.3-cp311-cp311-win_amd64.whl", hash = "sha256:bcd460feef56575af2c2443d7394d405a164c409e9794a4d94cb5fdaa24a0ba4"}, - {file = "duckdb-0.10.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e229a7c6361afbb0d0ab29b1b398c10921263c52957aefe3ace99b0426fdb91e"}, - {file = "duckdb-0.10.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:732b1d3b6b17bf2f32ea696b9afc9e033493c5a3b783c292ca4b0ee7cc7b0e66"}, - {file = "duckdb-0.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f5380d4db11fec5021389fb85d614680dc12757ef7c5881262742250e0b58c75"}, - {file = "duckdb-0.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:468a4e0c0b13c55f84972b1110060d1b0f854ffeb5900a178a775259ec1562db"}, - {file = "duckdb-0.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0fa1e7ff8d18d71defa84e79f5c86aa25d3be80d7cb7bc259a322de6d7cc72da"}, - {file = "duckdb-0.10.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ed1063ed97c02e9cf2e7fd1d280de2d1e243d72268330f45344c69c7ce438a01"}, - {file = "duckdb-0.10.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:22f2aad5bb49c007f3bfcd3e81fdedbc16a2ae41f2915fc278724ca494128b0c"}, - {file = "duckdb-0.10.3-cp312-cp312-win_amd64.whl", hash = "sha256:8f9e2bb00a048eb70b73a494bdc868ce7549b342f7ffec88192a78e5a4e164bd"}, - {file = "duckdb-0.10.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a6c2fc49875b4b54e882d68703083ca6f84b27536d57d623fc872e2f502b1078"}, - {file = "duckdb-0.10.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a66c125d0c30af210f7ee599e7821c3d1a7e09208196dafbf997d4e0cfcb81ab"}, - {file = "duckdb-0.10.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d99dd7a1d901149c7a276440d6e737b2777e17d2046f5efb0c06ad3b8cb066a6"}, - {file = "duckdb-0.10.3-cp37-cp37m-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5ec3bbdb209e6095d202202893763e26c17c88293b88ef986b619e6c8b6715bd"}, - {file = "duckdb-0.10.3-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:2b3dec4ef8ed355d7b7230b40950b30d0def2c387a2e8cd7efc80b9d14134ecf"}, - {file = "duckdb-0.10.3-cp37-cp37m-win_amd64.whl", hash = "sha256:04129f94fb49bba5eea22f941f0fb30337f069a04993048b59e2811f52d564bc"}, - {file = "duckdb-0.10.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d75d67024fc22c8edfd47747c8550fb3c34fb1cbcbfd567e94939ffd9c9e3ca7"}, - {file = "duckdb-0.10.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f3796e9507c02d0ddbba2e84c994fae131da567ce3d9cbb4cbcd32fadc5fbb26"}, - {file = "duckdb-0.10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:78e539d85ebd84e3e87ec44d28ad912ca4ca444fe705794e0de9be3dd5550c11"}, - {file = "duckdb-0.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a99b67ac674b4de32073e9bc604b9c2273d399325181ff50b436c6da17bf00a"}, - {file = "duckdb-0.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1209a354a763758c4017a1f6a9f9b154a83bed4458287af9f71d84664ddb86b6"}, - {file = "duckdb-0.10.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3b735cea64aab39b67c136ab3a571dbf834067f8472ba2f8bf0341bc91bea820"}, - {file = "duckdb-0.10.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:816ffb9f758ed98eb02199d9321d592d7a32a6cb6aa31930f4337eb22cfc64e2"}, - {file = "duckdb-0.10.3-cp38-cp38-win_amd64.whl", hash = "sha256:1631184b94c3dc38b13bce4045bf3ae7e1b0ecbfbb8771eb8d751d8ffe1b59b3"}, - {file = "duckdb-0.10.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb98c35fc8dd65043bc08a2414dd9f59c680d7e8656295b8969f3f2061f26c52"}, - {file = "duckdb-0.10.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e75c9f5b6a92b2a6816605c001d30790f6d67ce627a2b848d4d6040686efdf9"}, - {file = "duckdb-0.10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ae786eddf1c2fd003466e13393b9348a44b6061af6fe7bcb380a64cac24e7df7"}, - {file = "duckdb-0.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9387da7b7973707b0dea2588749660dd5dd724273222680e985a2dd36787668"}, - {file = "duckdb-0.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:538f943bf9fa8a3a7c4fafa05f21a69539d2c8a68e557233cbe9d989ae232899"}, - {file = "duckdb-0.10.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6930608f35025a73eb94252964f9f19dd68cf2aaa471da3982cf6694866cfa63"}, - {file = "duckdb-0.10.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:03bc54a9cde5490918aad82d7d2a34290e3dfb78d5b889c6626625c0f141272a"}, - {file = "duckdb-0.10.3-cp39-cp39-win_amd64.whl", hash = "sha256:372b6e3901d85108cafe5df03c872dfb6f0dbff66165a0cf46c47246c1957aa0"}, - {file = "duckdb-0.10.3.tar.gz", hash = "sha256:c5bd84a92bc708d3a6adffe1f554b94c6e76c795826daaaf482afc3d9c636971"}, + {file = "duckdb-1.1.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:91e7f99cf5cab1d26f92cb014429153497d805e79689baa44f4c4585a8cb243f"}, + {file = "duckdb-1.1.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:0107de622fe208142a1108263a03c43956048dcc99be3702d8e5d2aeaf99554c"}, + {file = "duckdb-1.1.2-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:8a09610f780857677725897856f8cdf3cafd8a991f871e6cb8ba88b2dbc8d737"}, + {file = "duckdb-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c0f0ddac0482f0f3fece54d720d13819e82ae26c01a939ffa66a87be53f7f665"}, + {file = "duckdb-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84103373e818758dfa361d27781d0f096553843c5ffb9193260a0786c5248270"}, + {file = "duckdb-1.1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bfdfd23e2bf58014ad0673973bd0ed88cd048dfe8e82420814a71d7d52ef2288"}, + {file = "duckdb-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:25889e6e29b87047b1dd56385ac08156e4713c59326cc6fff89657d01b2c417b"}, + {file = "duckdb-1.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:312570fa5277c3079de18388b86c2d87cbe1044838bb152b235c0227581d5d42"}, + {file = "duckdb-1.1.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:568439ea4fce8cb72ec1f767cd510686a9e7e29a011fc7c56d990059a6e94e48"}, + {file = "duckdb-1.1.2-cp311-cp311-macosx_12_0_universal2.whl", hash = "sha256:74974f2d7210623a5d61b1fb0cb589c6e5ffcbf7dbb757a04c5ba24adcfc8cac"}, + {file = "duckdb-1.1.2-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:e26422a3358c816d764639070945b73eef55d1b4df990989e3492c85ef725c21"}, + {file = "duckdb-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87e972bd452eeeab197fe39dcaeecdb7c264b1f75a0ee67e532e235fe45b84df"}, + {file = "duckdb-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a6b73e70b73c8df85da383f6e557c03cad5c877868b9a7e41715761e8166c1e"}, + {file = "duckdb-1.1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:623cb1952466aae5907af84107bcdec25a5ca021a8b6441e961f41edc724f6f2"}, + {file = "duckdb-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d9fc0b550f96901fa7e76dc70a13f6477ad3e18ef1cb21d414c3a5569de3f27e"}, + {file = "duckdb-1.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:181edb1973bd8f493bcb6ecfa035f1a592dff4667758592f300619012ba251c0"}, + {file = "duckdb-1.1.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:83372b1b411086cac01ab2071122772fa66170b1b41ddbc37527464066083668"}, + {file = "duckdb-1.1.2-cp312-cp312-macosx_12_0_universal2.whl", hash = "sha256:db37441deddfee6ac35a0c742d2f9e90e4e50b9e76d586a060d122b8fc56dada"}, + {file = "duckdb-1.1.2-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:19142a77e72874aeaa6fda30aeb13612c6de5e8c60fbcc3392cea6ef0694eeaf"}, + {file = "duckdb-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:099d99dd48d6e4682a3dd6233ceab73d977ebe1a87afaac54cf77c844e24514a"}, + {file = "duckdb-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be86e586ca7af7e807f72479a2b8d0983565360b19dbda4ef8a9d7b3909b8e2c"}, + {file = "duckdb-1.1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:578e0953e4d8ba8da0cd69fb2930c45f51ce47d213b77d8a4cd461f9c0960b87"}, + {file = "duckdb-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:72b5eb5762c1a5e68849c7143f3b3747a9f15c040e34e41559f233a1569ad16f"}, + {file = "duckdb-1.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:9b4c6b6a08180261d98330d97355503961a25ca31cd9ef296e0681f7895b4a2c"}, + {file = "duckdb-1.1.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:695dcbc561374b126e86659709feadf883c9969ed718e94713edd4ba15d16619"}, + {file = "duckdb-1.1.2-cp313-cp313-macosx_12_0_universal2.whl", hash = "sha256:ada29be1e889f486c6cf1f6dffd15463e748faf361f33996f2e862779edc24a9"}, + {file = "duckdb-1.1.2-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:6ca722738fa9eb6218619740631de29acfdd132de6f6a6350fee5e291c2f6117"}, + {file = "duckdb-1.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c796d33f1e5a0c8c570d22da0c0b1db8578687e427029e1ce2c8ce3f9fffa6a3"}, + {file = "duckdb-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5c0996988a70dd3bc8111d9b9aeab7e38ed1999a52607c5f1b528e362b4dd1c"}, + {file = "duckdb-1.1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6c37b039f6d6fed14d89450f5ccf54922b3304192d7412e12d6cc8d9e757f7a2"}, + {file = "duckdb-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e8c766b87f675c76d6d17103bf6fb9fb1a9e2fcb3d9b25c28bbc634bde31223e"}, + {file = "duckdb-1.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:e3e6300b7ccaf64b609f4f0780a6e1d25ab8cf34cceed46e62c35b6c4c5cb63b"}, + {file = "duckdb-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a01fae9604a54ecbc26e7503c522311f15afbd2870e6d8f6fbef4545dfae550"}, + {file = "duckdb-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:492b1d86a696428bd3f14dc1c7c3230e2dbca8978f288be64b04a26e0e00fad5"}, + {file = "duckdb-1.1.2-cp37-cp37m-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1bba58459ad897a78c4e478a097626fc266459a40338cecc68a49a8d5dc72fb7"}, + {file = "duckdb-1.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:d395a3bf510bf24686821eec15802624797dcb33e8f14f8a7cc8e17d909474af"}, + {file = "duckdb-1.1.2-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:fd800f75728727fe699ed1eb22b636867cf48c9dd105ee88b977e20c89df4509"}, + {file = "duckdb-1.1.2-cp38-cp38-macosx_12_0_universal2.whl", hash = "sha256:d8caaf43909e49537e26df51d80d075ae2b25a610d28ed8bd31d6ccebeaf3c65"}, + {file = "duckdb-1.1.2-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:564166811c68d9c7f9911eb707ad32ec9c2507b98336d894fbe658b85bf1c697"}, + {file = "duckdb-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19386aa09f0d6f97634ba2972096d1c80d880176dfb0e949eadc91c98262a663"}, + {file = "duckdb-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9e8387bcc9a591ad14011ddfec0d408d1d9b1889c6c9b495a04c7016a24b9b3"}, + {file = "duckdb-1.1.2-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f8c5ff4970403ed3ff0ac71fe0ce1e6be3199df9d542afc84c424b444ba4ffe8"}, + {file = "duckdb-1.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:9283dcca87c3260eb631a99d738fa72b8545ed45b475bc72ad254f7310e14284"}, + {file = "duckdb-1.1.2-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:f87edaf20001530e63a4f7bda13b55dc3152d7171226915f2bf34e0813c8759e"}, + {file = "duckdb-1.1.2-cp39-cp39-macosx_12_0_universal2.whl", hash = "sha256:efec169b3fe0b821e3207ba3e445f227d42dd62b4440ff79c37fa168a4fc5a71"}, + {file = "duckdb-1.1.2-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:89164a2d29d56605a95ee5032aa415dd487028c4fd3e06d971497840e74c56e7"}, + {file = "duckdb-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6858e10c60ff7e70e61d3dd53d2545c8b2609942e45fd6de38cd0dee52932de3"}, + {file = "duckdb-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ca967c5a57b1d0cb0fd5e539ab24110e5a59dcbedd365bb2dc80533d6e44a8d"}, + {file = "duckdb-1.1.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4ce949f1d7999aa6a046eb64067eee41d4c5c2872ba4fa408c9947742d0c7231"}, + {file = "duckdb-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9ba6d1f918e6ca47a368a0c32806016405cb9beb2c245806b0ca998f569d2bdf"}, + {file = "duckdb-1.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:7111fd3e7b334a7be383313ce29918b7c643e4f6ef44d6d63c3ab3fa6716c114"}, + {file = "duckdb-1.1.2.tar.gz", hash = "sha256:c8232861dc8ec6daa29067056d5a0e5789919f2ab22ab792787616d7cd52f02a"}, ] [[package]] @@ -711,6 +716,20 @@ files = [ [package.dependencies] python-dateutil = ">=2.4" +[[package]] +name = "freezegun" +version = "1.5.1" +description = "Let your Python tests travel through time" +optional = false +python-versions = ">=3.7" +files = [ + {file = "freezegun-1.5.1-py3-none-any.whl", hash = "sha256:bf111d7138a8abe55ab48a71755673dbaa4ab87f4cff5634a4442dfec34c15f1"}, + {file = "freezegun-1.5.1.tar.gz", hash = "sha256:b29dedfcda6d5e8e083ce71b2b542753ad48cfec44037b3fc79702e2980a89e9"}, +] + +[package.dependencies] +python-dateutil = ">=2.7" + [[package]] name = "genson" version = "1.2.2" @@ -2101,28 +2120,29 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"] [[package]] name = "ruff" -version = "0.0.286" -description = "An extremely fast Python linter, written in Rust." +version = "0.7.1" +description = "An extremely fast Python linter and code formatter, written in Rust." optional = false python-versions = ">=3.7" files = [ - {file = "ruff-0.0.286-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:8e22cb557e7395893490e7f9cfea1073d19a5b1dd337f44fd81359b2767da4e9"}, - {file = "ruff-0.0.286-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:68ed8c99c883ae79a9133cb1a86d7130feee0397fdf5ba385abf2d53e178d3fa"}, - {file = "ruff-0.0.286-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8301f0bb4ec1a5b29cfaf15b83565136c47abefb771603241af9d6038f8981e8"}, - {file = "ruff-0.0.286-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:acc4598f810bbc465ce0ed84417ac687e392c993a84c7eaf3abf97638701c1ec"}, - {file = "ruff-0.0.286-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88c8e358b445eb66d47164fa38541cfcc267847d1e7a92dd186dddb1a0a9a17f"}, - {file = "ruff-0.0.286-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:0433683d0c5dbcf6162a4beb2356e820a593243f1fa714072fec15e2e4f4c939"}, - {file = "ruff-0.0.286-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddb61a0c4454cbe4623f4a07fef03c5ae921fe04fede8d15c6e36703c0a73b07"}, - {file = "ruff-0.0.286-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:47549c7c0be24c8ae9f2bce6f1c49fbafea83bca80142d118306f08ec7414041"}, - {file = "ruff-0.0.286-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:559aa793149ac23dc4310f94f2c83209eedb16908a0343663be19bec42233d25"}, - {file = "ruff-0.0.286-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:d73cfb1c3352e7aa0ce6fb2321f36fa1d4a2c48d2ceac694cb03611ddf0e4db6"}, - {file = "ruff-0.0.286-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:3dad93b1f973c6d1db4b6a5da8690c5625a3fa32bdf38e543a6936e634b83dc3"}, - {file = "ruff-0.0.286-py3-none-musllinux_1_2_i686.whl", hash = "sha256:26afc0851f4fc3738afcf30f5f8b8612a31ac3455cb76e611deea80f5c0bf3ce"}, - {file = "ruff-0.0.286-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:9b6b116d1c4000de1b9bf027131dbc3b8a70507788f794c6b09509d28952c512"}, - {file = "ruff-0.0.286-py3-none-win32.whl", hash = "sha256:556e965ac07c1e8c1c2d759ac512e526ecff62c00fde1a046acb088d3cbc1a6c"}, - {file = "ruff-0.0.286-py3-none-win_amd64.whl", hash = "sha256:5d295c758961376c84aaa92d16e643d110be32add7465e197bfdaec5a431a107"}, - {file = "ruff-0.0.286-py3-none-win_arm64.whl", hash = "sha256:1d6142d53ab7f164204b3133d053c4958d4d11ec3a39abf23a40b13b0784e3f0"}, - {file = "ruff-0.0.286.tar.gz", hash = "sha256:f1e9d169cce81a384a26ee5bb8c919fe9ae88255f39a1a69fd1ebab233a85ed2"}, + {file = "ruff-0.7.1-py3-none-linux_armv6l.whl", hash = "sha256:cb1bc5ed9403daa7da05475d615739cc0212e861b7306f314379d958592aaa89"}, + {file = "ruff-0.7.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:27c1c52a8d199a257ff1e5582d078eab7145129aa02721815ca8fa4f9612dc35"}, + {file = "ruff-0.7.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:588a34e1ef2ea55b4ddfec26bbe76bc866e92523d8c6cdec5e8aceefeff02d99"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94fc32f9cdf72dc75c451e5f072758b118ab8100727168a3df58502b43a599ca"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:985818742b833bffa543a84d1cc11b5e6871de1b4e0ac3060a59a2bae3969250"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32f1e8a192e261366c702c5fb2ece9f68d26625f198a25c408861c16dc2dea9c"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:699085bf05819588551b11751eff33e9ca58b1b86a6843e1b082a7de40da1565"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:344cc2b0814047dc8c3a8ff2cd1f3d808bb23c6658db830d25147339d9bf9ea7"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4316bbf69d5a859cc937890c7ac7a6551252b6a01b1d2c97e8fc96e45a7c8b4a"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79d3af9dca4c56043e738a4d6dd1e9444b6d6c10598ac52d146e331eb155a8ad"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:c5c121b46abde94a505175524e51891f829414e093cd8326d6e741ecfc0a9112"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:8422104078324ea250886954e48f1373a8fe7de59283d747c3a7eca050b4e378"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:56aad830af8a9db644e80098fe4984a948e2b6fc2e73891538f43bbe478461b8"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:658304f02f68d3a83c998ad8bf91f9b4f53e93e5412b8f2388359d55869727fd"}, + {file = "ruff-0.7.1-py3-none-win32.whl", hash = "sha256:b517a2011333eb7ce2d402652ecaa0ac1a30c114fbbd55c6b8ee466a7f600ee9"}, + {file = "ruff-0.7.1-py3-none-win_amd64.whl", hash = "sha256:f38c41fcde1728736b4eb2b18850f6d1e3eedd9678c914dede554a70d5241307"}, + {file = "ruff-0.7.1-py3-none-win_arm64.whl", hash = "sha256:19aa200ec824c0f36d0c9114c8ec0087082021732979a359d6f3c390a6ff2a37"}, + {file = "ruff-0.7.1.tar.gz", hash = "sha256:9d8a41d4aa2dad1575adb98a82870cf5db5f76b2938cf2206c22c940034a36f4"}, ] [[package]] @@ -2514,4 +2534,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "945adfeadfb2a94eef2a40f20e7fef442aeb98e2522590692e3bbabc606897f2" +content-hash = "19d1f771089e886180807c659a422a832ef036db8c4e4afbd25ad88ada70fc20" diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index f2d42f1d639c..d277977588e5 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "airbyte-destination-motherduck" -version = "0.1.12" +version = "0.1.13" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" @@ -15,21 +15,22 @@ python = "^3.10" # NOTE: You can toggle between pinned and local CDK version for testing: airbyte-cdk = {version = "^5.15.0", extras = ["sql"] } # airbyte-cdk = { path = "../../../airbyte-cdk/python", extras = ["sql"] } -duckdb = "0.10.3" +duckdb = "1.1.2" +duckdb-engine = "^0.13.4" pyarrow = "15.0.2" sqlalchemy = ">=1.4.51,!=2.0.36,<3.0" rich = "^13.7.0" overrides = "^7.4.0" -duckdb-engine = "^0.13.2" python-ulid = "^3.0.0" [tool.poetry.group.dev.dependencies] pytest = "^8.3.2" -ruff = "^0.0.286" +ruff = "^0.7.1" black = "^23.7.0" mypy = "^1.5.1" faker = "24.4.0" coverage = "^7.5.3" +freezegun = "^1.5.1" [build-system] requires = ["poetry-core"] @@ -37,6 +38,7 @@ build-backend = "poetry.core.masonry.api" [tool.poe.tasks] test = { shell = "pytest" } +ci-test = { shell = "airbyte-ci connectors --name=destination-motherduck test" } coverage = { shell = "coverage run -m pytest && coverage report" } coverage-report = { shell = "coverage report" } @@ -49,5 +51,11 @@ fix = { shell = "ruff format . && ruff check --fix -s || ruff format ." } fix-unsafe = { shell = "ruff format . && ruff check --fix --unsafe-fixes . && ruff format ." } fix-and-check = { shell = "poe fix && poe check" } +# Use this when building on Mac M1/M2, to deploy and test on local `abctl` instances +build-arm = { shell = "airbyte-ci connectors --name=destination-motherduck build --architecture=linux/arm64 && NEW_IMAGE=airbyte/destination-motherduck:dev-arm && docker tag airbyte/destination-motherduck:dev ${NEW_IMAGE} && echo Created new image: $NEW_IMAGE && docker run --rm $NEW_IMAGE spec" } + +# Use this when building for non-ARM architecture, or when building to deploy to Cloud +build-amd = { shell = "airbyte-ci connectors --name=destination-motherduck build --architecture=linux/amd64 && NEW_IMAGE=airbyte/destination-motherduck:dev-amd && docker tag airbyte/destination-motherduck:dev ${NEW_IMAGE} && echo Created new image: $NEW_IMAGE && docker run --rm $NEW_IMAGE spec" } + [tool.poetry.scripts] destination-motherduck = "destination_motherduck.run:run" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index cb3bac2d1964..93a3acfedad4 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.13 | 2024-10-30 | [47969](https://github.com/airbytehq/airbyte/pull/47969) | Preserve Platform-generated id in state messages. | | 0.1.12 | 2024-10-30 | [47987](https://github.com/airbytehq/airbyte/pull/47987) | Disable PyPi publish. | | 0.1.11 | 2024-10-30 | [47979](https://github.com/airbytehq/airbyte/pull/47979) | Rename package. | | 0.1.10 | 2024-10-29 | [47958](https://github.com/airbytehq/airbyte/pull/47958) | Add state counts and other fixes. | From 7fe34ed743cd01be16025f33dc21fd81332f0a6c Mon Sep 17 00:00:00 2001 From: Anatolii Yatsuk <35109939+tolik0@users.noreply.github.com> Date: Wed, 30 Oct 2024 19:03:53 +0200 Subject: [PATCH 489/808] :rotating_light: :rotating_light: :sparkles: Source Jira: Migrate `IssueComments` and `IssueWorklogs` streams to low code (#38612) --- .../integration_tests/abnormal_state.json | 640 +++++++++++++++++- .../integration_tests/sample_state.json | 640 +++++++++++++++++- .../connectors/source-jira/metadata.yaml | 4 +- .../connectors/source-jira/poetry.lock | 276 ++++---- .../connectors/source-jira/pyproject.toml | 2 +- .../components/partition_routers.py | 4 +- .../source-jira/source_jira/manifest.yaml | 70 +- .../source-jira/source_jira/source.py | 6 +- .../source-jira/source_jira/streams.py | 64 -- .../source-jira/unit_tests/conftest.py | 1 + .../source-jira/unit_tests/test_components.py | 2 +- .../unit_tests/test_date_time_transformer.py | 4 +- .../source-jira/unit_tests/test_source.py | 2 +- .../source-jira/unit_tests/test_streams.py | 6 +- docs/integrations/sources/jira.md | 171 ++--- 15 files changed, 1573 insertions(+), 319 deletions(-) diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-jira/integration_tests/abnormal_state.json index 9dc1716efb6b..43bce095a999 100644 --- a/airbyte-integrations/connectors/source-jira/integration_tests/abnormal_state.json +++ b/airbyte-integrations/connectors/source-jira/integration_tests/abnormal_state.json @@ -93,11 +93,357 @@ "namespace": null }, "stream_state": { - "updated": "2222-05-08T03:04:45.056-0700" + "states": [ + { + "partition": { + "issue_id": "10063", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:39:56.480-0700" + } + }, + { + "partition": { + "issue_id": "10055", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:03.372-0700" + } + }, + { + "partition": { + "issue_id": "10069", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:39:52.625-0700" + } + }, + { + "partition": { + "issue_id": "10000", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:29.651-0700" + } + }, + { + "partition": { + "issue_id": "10001", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:26.631-0700" + } + }, + { + "partition": { + "issue_id": "10019", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:15.339-0700" + } + }, + { + "partition": { + "issue_id": "10007", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:25.984-0700" + } + }, + { + "partition": { + "issue_id": "10008", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:22.939-0700" + } + }, + { + "partition": { + "issue_id": "10017", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:16.658-0700" + } + }, + { + "partition": { + "issue_id": "10013", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:17.282-0700" + } + }, + { + "partition": { + "issue_id": "10024", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:13.547-0700" + } + }, + { + "partition": { + "issue_id": "10029", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:11.701-0700" + } + }, + { + "partition": { + "issue_id": "10037", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:08.524-0700" + } + }, + { + "partition": { + "issue_id": "10042", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:07.295-0700" + } + }, + { + "partition": { + "issue_id": "10043", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:06.582-0700" + } + }, + { + "partition": { + "issue_id": "10051", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:05.967-0700" + } + }, + { + "partition": { + "issue_id": "10061", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:01.993-0700" + } + }, + { + "partition": { + "issue_id": "10062", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:39:58.707-0700" + } + }, + { + "partition": { + "issue_id": "10065", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:39:55.810-0700" + } + }, + { + "partition": { + "issue_id": "10080", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:39:47.834-0700" + } + }, + { + "partition": { + "issue_id": "10021", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:14.775-0700" + } + }, + { + "partition": { + "issue_id": "10009", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:19.832-0700" + } + }, + { + "partition": { + "issue_id": "10012", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:40:18.557-0700" + } + }, + { + "partition": { + "issue_id": "10626", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-05T05:08:50.033-0700" + } + }, + { + "partition": { + "issue_id": "10075", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T11:39:50.205-0700" + } + }, + { + "partition": { + "issue_id": "10632", + "parent_slice": { + "parent_slice": {}, + "project_id": "10064" + } + }, + "cursor": { + "updated": "2222-05-08T03:04:45.056-0700" + } + } + ], + "parent_state": { + "issues": { + "states": [ + { + "partition": { + "parent_slice": {}, + "project_id": "10000" + }, + "cursor": { + "updated": "2222-10-12T13:43:50.735-0700" + } + }, + { + "partition": { + "parent_slice": {}, + "project_id": "10016" + }, + "cursor": { + "updated": "2222-07-05T12:57:51.258-0700" + } + }, + { + "partition": { + "parent_slice": {}, + "project_id": "10064" + }, + "cursor": { + "updated": "2222-05-08T03:04:45.139-0700" + } + } + ] + } + } } }, "sourceStats": { - "recordCount": 21.0 + "recordCount": 1.0 } }, { @@ -108,11 +454,297 @@ "namespace": null }, "stream_state": { - "updated": "2222-12-08T06:32:22.567-0800" + "states": [ + { + "partition": { + "issue_id": "10063", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-14T14:32:45.445-0700" + } + }, + { + "partition": { + "issue_id": "10055", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-14T14:32:48.961-0700" + } + }, + { + "partition": { + "issue_id": "10069", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:08:58.704-0700" + } + }, + { + "partition": { + "issue_id": "10625", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-05-17T04:06:55.076-0700" + } + }, + { + "partition": { + "issue_id": "10001", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:09:35.737-0700" + } + }, + { + "partition": { + "issue_id": "10019", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:09:14.283-0700" + } + }, + { + "partition": { + "issue_id": "10007", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-14T14:32:58.858-0700" + } + }, + { + "partition": { + "issue_id": "10008", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:09:34.423-0700" + } + }, + { + "partition": { + "issue_id": "10013", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:09:18.960-0700" + } + }, + { + "partition": { + "issue_id": "10024", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:09:10.916-0700" + } + }, + { + "partition": { + "issue_id": "10029", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-14T14:32:53.076-0700" + } + }, + { + "partition": { + "issue_id": "10037", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-14T14:32:51.879-0700" + } + }, + { + "partition": { + "issue_id": "10042", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-14T14:32:50.783-0700" + } + }, + { + "partition": { + "issue_id": "10043", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:09:10.146-0700" + } + }, + { + "partition": { + "issue_id": "10051", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-12-08T06:32:22.567-0800" + } + }, + { + "partition": { + "issue_id": "10062", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:09:02.883-0700" + } + }, + { + "partition": { + "issue_id": "10065", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-14T14:32:44.898-0700" + } + }, + { + "partition": { + "issue_id": "10021", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-14T14:32:53.670-0700" + } + }, + { + "partition": { + "issue_id": "10009", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:09:29.256-0700" + } + }, + { + "partition": { + "issue_id": "10012", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:09:23.970-0700" + } + }, + { + "partition": { + "issue_id": "10075", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2222-04-15T00:08:53.824-0700" + } + } + ], + "parent_state": { + "issues": { + "states": [ + { + "partition": { + "parent_slice": {}, + "project_id": "10000" + }, + "cursor": { + "updated": "2222-10-12T13:43:50.735-0700" + } + }, + { + "partition": { + "parent_slice": {}, + "project_id": "10016" + }, + "cursor": { + "updated": "2222-07-05T12:57:51.258-0700" + } + }, + { + "partition": { + "parent_slice": {}, + "project_id": "10064" + }, + "cursor": { + "updated": "2222-05-08T03:04:45.139-0700" + } + } + ] + } + } } }, "sourceStats": { - "recordCount": 2.0 + "recordCount": 0.0 } }, { diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/sample_state.json b/airbyte-integrations/connectors/source-jira/integration_tests/sample_state.json index 7de4731a49d6..4200e8df37c7 100644 --- a/airbyte-integrations/connectors/source-jira/integration_tests/sample_state.json +++ b/airbyte-integrations/connectors/source-jira/integration_tests/sample_state.json @@ -93,11 +93,357 @@ "namespace": null }, "stream_state": { - "updated": "2023-05-08T03:04:45.056-0700" + "states": [ + { + "partition": { + "issue_id": "10063", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:39:56.480-0700" + } + }, + { + "partition": { + "issue_id": "10055", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:03.372-0700" + } + }, + { + "partition": { + "issue_id": "10069", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:39:52.625-0700" + } + }, + { + "partition": { + "issue_id": "10000", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:29.651-0700" + } + }, + { + "partition": { + "issue_id": "10001", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:26.631-0700" + } + }, + { + "partition": { + "issue_id": "10019", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:15.339-0700" + } + }, + { + "partition": { + "issue_id": "10007", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:25.984-0700" + } + }, + { + "partition": { + "issue_id": "10008", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:22.939-0700" + } + }, + { + "partition": { + "issue_id": "10017", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:16.658-0700" + } + }, + { + "partition": { + "issue_id": "10013", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:17.282-0700" + } + }, + { + "partition": { + "issue_id": "10024", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:13.547-0700" + } + }, + { + "partition": { + "issue_id": "10029", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:11.701-0700" + } + }, + { + "partition": { + "issue_id": "10037", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:08.524-0700" + } + }, + { + "partition": { + "issue_id": "10042", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:07.295-0700" + } + }, + { + "partition": { + "issue_id": "10043", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:06.582-0700" + } + }, + { + "partition": { + "issue_id": "10051", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:05.967-0700" + } + }, + { + "partition": { + "issue_id": "10061", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:01.993-0700" + } + }, + { + "partition": { + "issue_id": "10062", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:39:58.707-0700" + } + }, + { + "partition": { + "issue_id": "10065", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:39:55.810-0700" + } + }, + { + "partition": { + "issue_id": "10080", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:39:47.834-0700" + } + }, + { + "partition": { + "issue_id": "10021", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:14.775-0700" + } + }, + { + "partition": { + "issue_id": "10009", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:19.832-0700" + } + }, + { + "partition": { + "issue_id": "10012", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:40:18.557-0700" + } + }, + { + "partition": { + "issue_id": "10626", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2023-04-05T05:08:50.033-0700" + } + }, + { + "partition": { + "issue_id": "10075", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T11:39:50.205-0700" + } + }, + { + "partition": { + "issue_id": "10632", + "parent_slice": { + "parent_slice": {}, + "project_id": "10064" + } + }, + "cursor": { + "updated": "2023-05-08T03:04:45.056-0700" + } + } + ], + "parent_state": { + "issues": { + "states": [ + { + "partition": { + "parent_slice": {}, + "project_id": "10000" + }, + "cursor": { + "updated": "2023-10-12T13:43:50.735-0700" + } + }, + { + "partition": { + "parent_slice": {}, + "project_id": "10016" + }, + "cursor": { + "updated": "2023-07-05T12:57:51.258-0700" + } + }, + { + "partition": { + "parent_slice": {}, + "project_id": "10064" + }, + "cursor": { + "updated": "2023-05-08T03:04:45.139-0700" + } + } + ] + } + } } }, "sourceStats": { - "recordCount": 21.0 + "recordCount": 1.0 } }, { @@ -108,11 +454,297 @@ "namespace": null }, "stream_state": { - "updated": "2022-12-08T06:32:22.567-0800" + "states": [ + { + "partition": { + "issue_id": "10063", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-14T14:32:45.445-0700" + } + }, + { + "partition": { + "issue_id": "10055", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-14T14:32:48.961-0700" + } + }, + { + "partition": { + "issue_id": "10069", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:08:58.704-0700" + } + }, + { + "partition": { + "issue_id": "10625", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2022-05-17T04:06:55.076-0700" + } + }, + { + "partition": { + "issue_id": "10001", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:09:35.737-0700" + } + }, + { + "partition": { + "issue_id": "10019", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:09:14.283-0700" + } + }, + { + "partition": { + "issue_id": "10007", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-14T14:32:58.858-0700" + } + }, + { + "partition": { + "issue_id": "10008", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:09:34.423-0700" + } + }, + { + "partition": { + "issue_id": "10013", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:09:18.960-0700" + } + }, + { + "partition": { + "issue_id": "10024", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:09:10.916-0700" + } + }, + { + "partition": { + "issue_id": "10029", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-14T14:32:53.076-0700" + } + }, + { + "partition": { + "issue_id": "10037", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-14T14:32:51.879-0700" + } + }, + { + "partition": { + "issue_id": "10042", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-14T14:32:50.783-0700" + } + }, + { + "partition": { + "issue_id": "10043", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:09:10.146-0700" + } + }, + { + "partition": { + "issue_id": "10051", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2022-12-08T06:32:22.567-0800" + } + }, + { + "partition": { + "issue_id": "10062", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:09:02.883-0700" + } + }, + { + "partition": { + "issue_id": "10065", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-14T14:32:44.898-0700" + } + }, + { + "partition": { + "issue_id": "10021", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-14T14:32:53.670-0700" + } + }, + { + "partition": { + "issue_id": "10009", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:09:29.256-0700" + } + }, + { + "partition": { + "issue_id": "10012", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:09:23.970-0700" + } + }, + { + "partition": { + "issue_id": "10075", + "parent_slice": { + "parent_slice": {}, + "project_id": "10000" + } + }, + "cursor": { + "updated": "2021-04-15T00:08:53.824-0700" + } + } + ], + "parent_state": { + "issues": { + "states": [ + { + "partition": { + "parent_slice": {}, + "project_id": "10000" + }, + "cursor": { + "updated": "2023-10-12T13:43:50.735-0700" + } + }, + { + "partition": { + "parent_slice": {}, + "project_id": "10016" + }, + "cursor": { + "updated": "2023-07-05T12:57:51.258-0700" + } + }, + { + "partition": { + "parent_slice": {}, + "project_id": "10064" + }, + "cursor": { + "updated": "2023-05-08T03:04:45.139-0700" + } + } + ] + } + } } }, "sourceStats": { - "recordCount": 2.0 + "recordCount": 0.0 } }, { diff --git a/airbyte-integrations/connectors/source-jira/metadata.yaml b/airbyte-integrations/connectors/source-jira/metadata.yaml index 7e9194dee3a4..84cb5fad2f74 100644 --- a/airbyte-integrations/connectors/source-jira/metadata.yaml +++ b/airbyte-integrations/connectors/source-jira/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 68e63de2-bb83-4c7e-93fa-a8a9051e3993 - dockerImageTag: 3.2.1 + dockerImageTag: 3.3.0-rc.1 dockerRepository: airbyte/source-jira documentationUrl: https://docs.airbyte.com/integrations/sources/jira erdUrl: https://dbdocs.io/airbyteio/source-jira?view=relationships @@ -30,6 +30,8 @@ data: enabled: true releaseStage: generally_available releases: + rolloutConfiguration: + enableProgressiveRollout: true breakingChanges: 3.0.0: message: "Primary key for Workflows stream has been changed from `Id` to [`entityId`, `name`]. This change of pk makes the stream compatible with more types of destinations." diff --git a/airbyte-integrations/connectors/source-jira/poetry.lock b/airbyte-integrations/connectors/source-jira/poetry.lock index 7efe81b83ad7..cc719795f604 100644 --- a/airbyte-integrations/connectors/source-jira/poetry.lock +++ b/airbyte-integrations/connectors/source-jira/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "5.13.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.13.0-py3-none-any.whl", hash = "sha256:b26c99631e797c0bdb8373a6a05c81bf62b7d7397ca41b6ee05702d1013bd389"}, - {file = "airbyte_cdk-5.13.0.tar.gz", hash = "sha256:ab5799a238366dff61a8cded347b02deb63818513af4e61e2d1a51608a2280df"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -43,6 +43,7 @@ xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -69,13 +70,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +87,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -728,13 +729,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -746,72 +747,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -903,68 +904,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1731,13 +1733,13 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.2.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, + {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, ] [package.extras] @@ -1799,13 +1801,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-jira/pyproject.toml b/airbyte-integrations/connectors/source-jira/pyproject.toml index cf4b650c913f..7888f423a690 100644 --- a/airbyte-integrations/connectors/source-jira/pyproject.toml +++ b/airbyte-integrations/connectors/source-jira/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.2.1" +version = "3.3.0-rc.1" name = "source-jira" description = "Source implementation for Jira." authors = [ "Airbyte ",] diff --git a/airbyte-integrations/connectors/source-jira/source_jira/components/partition_routers.py b/airbyte-integrations/connectors/source-jira/source_jira/components/partition_routers.py index 3766653d836e..cf0dd162a968 100644 --- a/airbyte-integrations/connectors/source-jira/source_jira/components/partition_routers.py +++ b/airbyte-integrations/connectors/source-jira/source_jira/components/partition_routers.py @@ -27,7 +27,9 @@ def stream_slices(self) -> Iterable[StreamSlice]: fields += ["key", "status", "created", "updated"] self.parent_stream_configs = parent_stream_configs for stream_slice in super().stream_slices(): - setattr(stream_slice, "parent_stream_fields", fields) + stream_slice = StreamSlice( + partition=stream_slice.partition, cursor_slice=stream_slice.cursor_slice, extra_fields={"fields": fields} + ) yield stream_slice diff --git a/airbyte-integrations/connectors/source-jira/source_jira/manifest.yaml b/airbyte-integrations/connectors/source-jira/source_jira/manifest.yaml index 7bff4be7541b..0013a75eab89 100644 --- a/airbyte-integrations/connectors/source-jira/source_jira/manifest.yaml +++ b/airbyte-integrations/connectors/source-jira/source_jira/manifest.yaml @@ -1,4 +1,4 @@ -version: 0.72.1 +version: 0.51.42 type: DeclarativeSource definitions: @@ -1073,13 +1073,6 @@ definitions: # Incremental Streams - semi_incremental_retriever: - $ref: "#/definitions/retriever" - record_selector: - $ref: "#/definitions/selector" - record_filter: - condition: "{{ record['updated'] >= stream_slice['start_time'] }}" - incremental_sync: type: DatetimeBasedCursor cursor_field: "updated" @@ -1096,7 +1089,9 @@ definitions: semi_incremental_stream: $ref: "#/definitions/incremental_stream" - retriever: "#/definitions/semi_incremental_retriever" + incremental_sync: + $ref: "#/definitions/incremental_sync" + is_client_side_incremental: true # https://developer.atlassian.com/cloud/jira/software/rest/api-group-board/#api-rest-agile-1-0-board-boardid-issue-get board_issues_stream: @@ -1223,7 +1218,7 @@ definitions: requester: $ref: "#/definitions/retriever_v1/requester" request_parameters: - fields: "{{ stream_slice._partition.parent_stream_fields }}" + fields: "{{ stream_slice._partition.extra_fields['fields'] }}" jql: "updated >= '{{ format_datetime(stream_slice.start_time, '%Y/%m/%d %H:%M') }}'" transformations: - type: AddFields @@ -1247,6 +1242,56 @@ definitions: path: "sprint/{{ stream_slice.sprint_id }}/issue" extract_field: "issues" + # https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-get + issue_comments_stream: + $ref: "#/definitions/semi_incremental_stream" + name: issue_comments + primary_key: "id" + retriever: + $ref: "#/definitions/retriever" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: "#/definitions/issues_stream" + parent_key: "id" + partition_field: "issue_id" + incremental_dependency: true + transformations: + - type: AddFields + fields: + - path: ["issueId"] + value_type: string + value: "{{ stream_slice.issue_id }}" + $parameters: + path: "issue/{{ stream_slice.issue_id }}/comment" + extract_field: "comments" + + # https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-worklogs/#api-rest-api-3-issue-issueidorkey-worklog-get + issue_worklogs_stream: + $ref: "#/definitions/semi_incremental_stream" + name: issue_worklogs + primary_key: "id" + retriever: + $ref: "#/definitions/retriever" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: "#/definitions/issues_stream" + parent_key: "id" + partition_field: "issue_id" + incremental_dependency: true + transformations: + - type: AddFields + fields: + - path: ["issueId"] + value_type: string + value: "{{ stream_slice.issue_id }}" + $parameters: + path: "issue/{{ stream_slice.issue_id }}/worklog" + extract_field: "worklogs" + streams: # Full refresh streams @@ -1310,6 +1355,11 @@ streams: - "#/definitions/issues_stream" - "#/definitions/sprint_issues_stream" + # Incremental substreams + + - "#/definitions/issue_comments_stream" + - "#/definitions/issue_worklogs_stream" + check: type: CheckStream stream_names: diff --git a/airbyte-integrations/connectors/source-jira/source_jira/source.py b/airbyte-integrations/connectors/source-jira/source_jira/source.py index db2297393381..10a1d7e7d997 100644 --- a/airbyte-integrations/connectors/source-jira/source_jira/source.py +++ b/airbyte-integrations/connectors/source-jira/source_jira/source.py @@ -14,7 +14,7 @@ from pydantic import ValidationError from requests.exceptions import InvalidURL -from .streams import IssueComments, IssueFields, Issues, IssueWorklogs, PullRequests +from .streams import IssueFields, Issues, PullRequests from .utils import read_full_refresh @@ -84,11 +84,9 @@ def get_non_portable_streams(self, config: Mapping[str, Any]) -> List[Stream]: issues_stream = Issues(**incremental_args) issue_fields_stream = IssueFields(**args) - streams = [IssueComments(**incremental_args), IssueWorklogs(**incremental_args)] - experimental_streams = [] if config.get("enable_experimental_streams", False): experimental_streams.append( PullRequests(issues_stream=issues_stream, issue_fields_stream=issue_fields_stream, **incremental_args) ) - return streams + experimental_streams + return experimental_streams diff --git a/airbyte-integrations/connectors/source-jira/source_jira/streams.py b/airbyte-integrations/connectors/source-jira/source_jira/streams.py index 4e8d7f528e42..8fc0dcdcfa35 100644 --- a/airbyte-integrations/connectors/source-jira/source_jira/streams.py +++ b/airbyte-integrations/connectors/source-jira/source_jira/streams.py @@ -379,70 +379,6 @@ def read_records(self, **kwargs) -> Iterable[Mapping[str, Any]]: yield project -class IssueWorklogs(IncrementalJiraStream): - """ - https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-worklogs/#api-rest-api-3-issue-issueidorkey-worklog-get - - Cannot be migrated at the moment: https://github.com/airbytehq/airbyte-internal-issues/issues/7522 - """ - - extract_field = "worklogs" - cursor_field = "updated" - - def __init__(self, **kwargs): - super().__init__(**kwargs) - self.issues_stream = Issues( - authenticator=self._http_client._session.auth, - domain=self._domain, - projects=self._projects, - start_date=self._start_date, - ) - - def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - return f"issue/{stream_slice['key']}/worklog" - - def read_records( - self, stream_slice: Optional[Mapping[str, Any]] = None, stream_state: Mapping[str, Any] = None, **kwargs - ) -> Iterable[Mapping[str, Any]]: - for issue in read_incremental(self.issues_stream, stream_state=stream_state): - stream_slice = {"key": issue["key"]} - yield from super().read_records(stream_slice=stream_slice, stream_state=stream_state, **kwargs) - - -class IssueComments(IncrementalJiraStream): - """ - https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-get - - Cannot be migrated at the moment: https://github.com/airbytehq/airbyte-internal-issues/issues/7522 - """ - - extract_field = "comments" - cursor_field = "updated" - - def __init__(self, **kwargs): - super().__init__(**kwargs) - self.issues_stream = Issues( - authenticator=self._http_client._session.auth, - domain=self._domain, - projects=self._projects, - start_date=self._start_date, - ) - - def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - return f"issue/{stream_slice['key']}/comment" - - def read_records( - self, stream_slice: Optional[Mapping[str, Any]] = None, stream_state: Mapping[str, Any] = None, **kwargs - ) -> Iterable[Mapping[str, Any]]: - for issue in read_incremental(self.issues_stream, stream_state=stream_state): - stream_slice = {"key": issue["key"]} - yield from super().read_records(stream_slice=stream_slice, stream_state=stream_state, **kwargs) - - def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: - record["issueId"] = stream_slice["key"] - return record - - class PullRequests(IncrementalJiraStream): """ This stream uses an undocumented internal API endpoint used by the Jira diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/conftest.py b/airbyte-integrations/connectors/source-jira/unit_tests/conftest.py index 703a5604b444..d3d296fecaa2 100644 --- a/airbyte-integrations/connectors/source-jira/unit_tests/conftest.py +++ b/airbyte-integrations/connectors/source-jira/unit_tests/conftest.py @@ -38,6 +38,7 @@ def config(): "email": "email@email.com", "start_date": "2021-01-01T00:00:00Z", "projects": ["Project1"], + "enable_experimental_streams": True, } diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/test_components.py b/airbyte-integrations/connectors/source-jira/unit_tests/test_components.py index fade1745ec3f..e24edba48d2f 100644 --- a/airbyte-integrations/connectors/source-jira/unit_tests/test_components.py +++ b/airbyte-integrations/connectors/source-jira/unit_tests/test_components.py @@ -72,7 +72,7 @@ def test_sprint_issues_substream_partition_router(fields_data, other_data, expec assert slices, "There should be at least one slice generated" # Asserting the correct parent stream fields are set in slices assert all( - _slice.parent_stream_fields == expected_fields for _slice in slices + _slice.extra_fields["fields"] == expected_fields for _slice in slices ), f"Expected parent stream fields {expected_fields}, but got {slices}" assert all( _slice.partition["partition_id"] == expected_partition for _slice in slices diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/test_date_time_transformer.py b/airbyte-integrations/connectors/source-jira/unit_tests/test_date_time_transformer.py index 7c9fbfff90ba..01e69cdb6853 100644 --- a/airbyte-integrations/connectors/source-jira/unit_tests/test_date_time_transformer.py +++ b/airbyte-integrations/connectors/source-jira/unit_tests/test_date_time_transformer.py @@ -17,7 +17,7 @@ ], ) def test_converting_date_to_date_time(origin_item, sub_schema, expected, config): - stream = find_stream("issue_comments", config) + stream = find_stream("pull_requests", config) actual = stream.transformer.default_convert(origin_item, sub_schema) assert actual == expected @@ -25,7 +25,7 @@ def test_converting_date_to_date_time(origin_item, sub_schema, expected, config) def test_converting_date_with_incorrect_format_returning_original_value(config, caplog): sub_schema = {"type": "string", "format": "date-time"} incorrectly_formatted_date = "incorrectly_formatted_date" - stream = find_stream("issue_comments", config) + stream = find_stream("pull_requests", config) actual = stream.transformer.default_convert(incorrectly_formatted_date, sub_schema) assert actual == incorrectly_formatted_date assert f"{incorrectly_formatted_date}: doesn't match expected format." in caplog.text diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/test_source.py b/airbyte-integrations/connectors/source-jira/unit_tests/test_source.py index 5b427df66b66..930d95f92d5f 100644 --- a/airbyte-integrations/connectors/source-jira/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-jira/unit_tests/test_source.py @@ -14,7 +14,7 @@ def test_streams(config): source = SourceJira() streams = source.streams(config) - expected_streams_number = 55 + expected_streams_number = 56 assert len(streams) == expected_streams_number diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-jira/unit_tests/test_streams.py index 67ba0e26a0c1..a6b923b82167 100644 --- a/airbyte-integrations/connectors/source-jira/unit_tests/test_streams.py +++ b/airbyte-integrations/connectors/source-jira/unit_tests/test_streams.py @@ -2,8 +2,6 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # -import re - import pendulum import pytest import responses @@ -772,7 +770,7 @@ def test_issues_stream_jql_compare_date(config, start_date, lookback_window, str def test_python_issue_comments_stream(config, mock_projects_responses, mock_issues_responses_with_date_filter, issue_comments_response): responses.add( responses.GET, - f"https://{config['domain']}/rest/api/3/issue/TESTKEY13-1/comment?maxResults=50", + f"https://{config['domain']}/rest/api/3/issue/10627/comment?maxResults=50", json=issue_comments_response, ) @@ -882,7 +880,7 @@ def test_labels_stream(config, labels_response): def test_issue_worklogs_stream(config, mock_projects_responses, mock_issues_responses_with_date_filter, issue_worklogs_response): responses.add( responses.GET, - f"https://{config['domain']}/rest/api/3/issue/TESTKEY13-1/worklog?maxResults=50", + f"https://{config['domain']}/rest/api/3/issue/10627/worklog?maxResults=50", json=issue_worklogs_response, ) diff --git a/docs/integrations/sources/jira.md b/docs/integrations/sources/jira.md index 0af7a7d11f8c..44ce8eee5112 100644 --- a/docs/integrations/sources/jira.md +++ b/docs/integrations/sources/jira.md @@ -152,90 +152,91 @@ The Jira connector should not run into Jira API limitations under normal usage.
Expand to review -| Version | Date | Pull Request | Subject | -|:--------|:-----------|:-----------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 3.2.1 | 2024-10-12 | [44650](https://github.com/airbytehq/airbyte/pull/44650) | Update dependencies | -| 3.2.0 | 2024-10-10 | [46344](https://github.com/airbytehq/airbyte/pull/46344) | Update CDK v5 | -| 3.1.1 | 2024-08-17 | [44251](https://github.com/airbytehq/airbyte/pull/44251) | Update dependencies | -| 3.1.0 | 2024-08-13 | [39558](https://github.com/airbytehq/airbyte/pull/39558) | Ensure config_error when state has improper format | -| 3.0.14 | 2024-08-12 | [43885](https://github.com/airbytehq/airbyte/pull/43885) | Update dependencies | -| 3.0.13 | 2024-08-10 | [43542](https://github.com/airbytehq/airbyte/pull/43542) | Update dependencies | -| 3.0.12 | 2024-08-03 | [43196](https://github.com/airbytehq/airbyte/pull/43196) | Update dependencies | -| 3.0.11 | 2024-07-27 | [42802](https://github.com/airbytehq/airbyte/pull/42802) | Update dependencies | -| 3.0.10 | 2024-07-20 | [42231](https://github.com/airbytehq/airbyte/pull/42231) | Update dependencies | -| 3.0.9 | 2024-07-13 | [41842](https://github.com/airbytehq/airbyte/pull/41842) | Update dependencies | -| 3.0.8 | 2024-07-10 | [41453](https://github.com/airbytehq/airbyte/pull/41453) | Update dependencies | -| 3.0.7 | 2024-07-09 | [41175](https://github.com/airbytehq/airbyte/pull/41175) | Update dependencies | -| 3.0.6 | 2024-07-06 | [40785](https://github.com/airbytehq/airbyte/pull/40785) | Update dependencies | -| 3.0.5 | 2024-06-27 | [40215](https://github.com/airbytehq/airbyte/pull/40215) | Replaced deprecated AirbyteLogger with logging.Logger | -| 3.0.4 | 2024-06-26 | [40549](https://github.com/airbytehq/airbyte/pull/40549) | Migrate off deprecated auth package | -| 3.0.3 | 2024-06-25 | [40444](https://github.com/airbytehq/airbyte/pull/40444) | Update dependencies | -| 3.0.2 | 2024-06-21 | [40121](https://github.com/airbytehq/airbyte/pull/40121) | Update dependencies | -| 3.0.1 | 2024-06-13 | [39458](https://github.com/airbytehq/airbyte/pull/39458) | Fix skipping custom_field_options entities when schema.items is options | -| 3.0.0 | 2024-06-14 | [39467](https://github.com/airbytehq/airbyte/pull/39467) | Update pk for Workflows stream from Id(object) to entityId, name(string, string) | -| 2.0.3 | 2024-06-10 | [39347](https://github.com/airbytehq/airbyte/pull/39347) | Update state handling for incremental Python streams | -| 2.0.2 | 2024-06-06 | [39310](https://github.com/airbytehq/airbyte/pull/39310) | Fix projects substreams for deleted projects | -| 2.0.1 | 2024-05-20 | [38341](https://github.com/airbytehq/airbyte/pull/38341) | Update CDK authenticator package | -| 2.0.0 | 2024-04-20 | [37374](https://github.com/airbytehq/airbyte/pull/37374) | Migrate to low-code and fix `Project Avatars` stream | -| 1.2.2 | 2024-04-19 | [36646](https://github.com/airbytehq/airbyte/pull/36646) | Updating to 0.80.0 CDK | -| 1.2.1 | 2024-04-12 | [36646](https://github.com/airbytehq/airbyte/pull/36646) | schema descriptions | -| 1.2.0 | 2024-03-19 | [36267](https://github.com/airbytehq/airbyte/pull/36267) | Pin airbyte-cdk version to `^0` | -| 1.1.0 | 2024-02-27 | [35656](https://github.com/airbytehq/airbyte/pull/35656) | Add new fields to streams `board_issues`, `filter_sharing`, `filters`, `issues`, `permission_schemes`, `sprint_issues`, `users_groups_detailed`, and `workflows` | -| 1.0.2 | 2024-02-12 | [35160](https://github.com/airbytehq/airbyte/pull/35160) | Manage dependencies with Poetry. | -| 1.0.1 | 2024-01-24 | [34470](https://github.com/airbytehq/airbyte/pull/34470) | Add state checkpoint interval for all streams | -| 1.0.0 | 2024-01-01 | [33715](https://github.com/airbytehq/airbyte/pull/33715) | Save state for stream `Board Issues` per `board` | -| 0.14.1 | 2023-12-19 | [33625](https://github.com/airbytehq/airbyte/pull/33625) | Skip 404 error | -| 0.14.0 | 2023-12-15 | [33532](https://github.com/airbytehq/airbyte/pull/33532) | Add lookback window | -| 0.13.0 | 2023-12-12 | [33353](https://github.com/airbytehq/airbyte/pull/33353) | Fix check command to check access for all available streams | -| 0.12.0 | 2023-12-01 | [33011](https://github.com/airbytehq/airbyte/pull/33011) | Fix BoardIssues stream; increase number of retries for backoff policy to 10 | -| 0.11.0 | 2023-11-29 | [32927](https://github.com/airbytehq/airbyte/pull/32927) | Fix incremental syncs for stream Issues | -| 0.10.2 | 2023-10-26 | [31896](https://github.com/airbytehq/airbyte/pull/31896) | Provide better guidance when configuring the connector with an invalid domain | -| 0.10.1 | 2023-10-23 | [31702](https://github.com/airbytehq/airbyte/pull/31702) | Base image migration: remove Dockerfile and use the python-connector-base image | -| 0.10.0 | 2023-10-13 | [\#31385](https://github.com/airbytehq/airbyte/pull/31385) | Fixed `aggregatetimeoriginalestimate, timeoriginalestimate` field types for the `Issues` stream schema | -| 0.9.0 | 2023-09-26 | [\#30688](https://github.com/airbytehq/airbyte/pull/30688) | Added `createdDate` field to sprints schema, Removed `Expand Issues stream` from spec | -| 0.8.0 | 2023-09-26 | [\#30755](https://github.com/airbytehq/airbyte/pull/30755) | Add new streams: `Issue custom field options`, `IssueTypes`, `Project Roles` | -| 0.7.2 | 2023-09-19 | [\#30675](https://github.com/airbytehq/airbyte/pull/30675) | Ensure invalid URL does not trigger Sentry alert | -| 0.7.1 | 2023-09-19 | [\#30585](https://github.com/airbytehq/airbyte/pull/30585) | Add skip for 404 error in issue properties steam | -| 0.7.0 | 2023-09-17 | [\#30532](https://github.com/airbytehq/airbyte/pull/30532) | Add foreign key to stream record where it missing | -| 0.6.3 | 2023-09-19 | [\#30515](https://github.com/airbytehq/airbyte/pull/30515) | Add transform for invalid date-time format, add 404 handling for check | -| 0.6.2 | 2023-09-19 | [\#30578](https://github.com/airbytehq/airbyte/pull/30578) | Fetch deleted and archived Projects | -| 0.6.1 | 2023-09-17 | [\#30550](https://github.com/airbytehq/airbyte/pull/30550) | Update `Issues` expand settings | -| 0.6.0 | 2023-09-17 | [\#30507](https://github.com/airbytehq/airbyte/pull/30507) | Add new stream `IssueTransitions` | -| 0.5.0 | 2023-09-14 | [\#29960](https://github.com/airbytehq/airbyte/pull/29960) | Add `boardId` to `sprints` stream | -| 0.3.14 | 2023-09-11 | [\#30297](https://github.com/airbytehq/airbyte/pull/30297) | Remove `requests` and `pendulum` from setup dependencies | -| 0.3.13 | 2023-09-01 | [\#30108](https://github.com/airbytehq/airbyte/pull/30108) | Skip 404 error for stream `IssueWatchers` | -| 0.3.12 | 2023-06-01 | [\#26652](https://github.com/airbytehq/airbyte/pull/26652) | Expand on `leads` for `projects` stream | -| 0.3.11 | 2023-06-01 | [\#26906](https://github.com/airbytehq/airbyte/pull/26906) | Handle project permissions error | -| 0.3.10 | 2023-05-26 | [\#26652](https://github.com/airbytehq/airbyte/pull/26652) | Fixed bug when `board` doesn't support `sprints` | -| 0.3.9 | 2023-05-16 | [\#26114](https://github.com/airbytehq/airbyte/pull/26114) | Update fields info in docs and spec, update to latest airbyte-cdk | -| 0.3.8 | 2023-05-04 | [\#25798](https://github.com/airbytehq/airbyte/pull/25798) | Add sprint info to `sprint_issues` and `sprints` streams for team-managed projects | -| 0.3.7 | 2023-04-18 | [\#25275](https://github.com/airbytehq/airbyte/pull/25275) | Add missing types to issues json schema | -| 0.3.6 | 2023-04-10 | [\#24636](https://github.com/airbytehq/airbyte/pull/24636) | Removed Connector Domain Pattern from Spec | -| 0.3.5 | 2023-04-05 | [\#24890](https://github.com/airbytehq/airbyte/pull/24890) | Fix streams "IssuePropertyKeys", "ScreenTabFields" | -| 0.3.4 | 2023-02-14 | [\#23006](https://github.com/airbytehq/airbyte/pull/23006) | Remove caching for `Issues` stream | -| 0.3.3 | 2023-01-04 | [\#20739](https://github.com/airbytehq/airbyte/pull/20739) | fix: check_connection fails if no projects are defined | -| 0.3.2 | 2022-12-23 | [\#20859](https://github.com/airbytehq/airbyte/pull/20859) | Fixed pagination for streams `issue_remote_links`, `sprints` | -| 0.3.1 | 2022-12-14 | [\#20128](https://github.com/airbytehq/airbyte/pull/20128) | Improved code to become beta | -| 0.3.0 | 2022-11-03 | [\#18901](https://github.com/airbytehq/airbyte/pull/18901) | Adds UserGroupsDetailed schema, fix Incremental normalization, add Incremental support for IssueComments, IssueWorklogs | -| 0.2.23 | 2022-10-28 | [\#18505](https://github.com/airbytehq/airbyte/pull/18505) | Correcting `max_results` bug introduced in connector stream | -| 0.2.22 | 2022-10-03 | [\#16944](https://github.com/airbytehq/airbyte/pull/16944) | Adds support for `max_results` to `users` stream | -| 0.2.21 | 2022-07-28 | [\#15135](https://github.com/airbytehq/airbyte/pull/15135) | Adds components to `fields` object on `issues` stream | -| 0.2.20 | 2022-05-25 | [\#13202](https://github.com/airbytehq/airbyte/pull/13202) | Adds resolutiondate to `fields` object on `issues` stream | -| 0.2.19 | 2022-05-04 | [\#10835](https://github.com/airbytehq/airbyte/pull/10835) | Change description for array fields | -| 0.2.18 | 2021-12-23 | [\#7378](https://github.com/airbytehq/airbyte/pull/7378) | Adds experimental endpoint Pull Request | -| 0.2.17 | 2021-12-23 | [\#9079](https://github.com/airbytehq/airbyte/pull/9079) | Update schema for `filters` stream + fix fetching `filters` stream | -| 0.2.16 | 2021-12-21 | [\#8999](https://github.com/airbytehq/airbyte/pull/8999) | Update connector fields title/description | -| 0.2.15 | 2021-11-01 | [\#7398](https://github.com/airbytehq/airbyte/pull/7398) | Add option to render fields in HTML format and fix sprint_issue ids | -| 0.2.14 | 2021-10-27 | [\#7408](https://github.com/airbytehq/airbyte/pull/7408) | Fix normalization step error. Fix schemas. Fix `acceptance-test-config.yml`. Fix `streams.py`. | -| 0.2.13 | 2021-10-20 | [\#7222](https://github.com/airbytehq/airbyte/pull/7222) | Source Jira: Make recently added configs optional for backwards compatibility | -| 0.2.12 | 2021-10-19 | [\#6621](https://github.com/airbytehq/airbyte/pull/6621) | Add Board, Epic, and Sprint streams | -| 0.2.11 | 2021-09-02 | [\#6523](https://github.com/airbytehq/airbyte/pull/6523) | Add cache and more streams \(boards and sprints\) | -| 0.2.9 | 2021-07-28 | [\#5426](https://github.com/airbytehq/airbyte/pull/5426) | Changed cursor field from fields.created to fields.updated for Issues stream. Made Issues worklogs stream full refresh. | -| 0.2.8 | 2021-07-28 | [\#4947](https://github.com/airbytehq/airbyte/pull/4947) | Source Jira: fixing schemas accordingly to response. | -| 0.2.7 | 2021-07-19 | [\#4817](https://github.com/airbytehq/airbyte/pull/4817) | Fixed `labels` schema properties issue. | -| 0.2.6 | 2021-06-15 | [\#4113](https://github.com/airbytehq/airbyte/pull/4113) | Fixed `user` stream with the correct endpoint and query param. | -| 0.2.5 | 2021-06-09 | [\#3973](https://github.com/airbytehq/airbyte/pull/3973) | Added `AIRBYTE_ENTRYPOINT` in base Docker image for Kubernetes support. | -| 0.2.4 | | | Implementing base_read acceptance test dived by stream groups. | -| 0.2.3 | | | Implementing incremental sync. Migrated to airbyte-cdk. Adding all available entities in Jira Cloud. | +| Version | Date | Pull Request | Subject | +|:-----------|:-----------|:-----------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 3.3.0-rc.1 | 2024-10-28 | [38612](https://github.com/airbytehq/airbyte/pull/38612) | Migrate IssueComments and IssueWorklogs streams to low-code (This change is irreversible) | +| 3.2.1 | 2024-10-12 | [44650](https://github.com/airbytehq/airbyte/pull/44650) | Update dependencies | +| 3.2.0 | 2024-10-10 | [46344](https://github.com/airbytehq/airbyte/pull/46344) | Update CDK v5 | +| 3.1.1 | 2024-08-17 | [44251](https://github.com/airbytehq/airbyte/pull/44251) | Update dependencies | +| 3.1.0 | 2024-08-13 | [39558](https://github.com/airbytehq/airbyte/pull/39558) | Ensure config_error when state has improper format | +| 3.0.14 | 2024-08-12 | [43885](https://github.com/airbytehq/airbyte/pull/43885) | Update dependencies | +| 3.0.13 | 2024-08-10 | [43542](https://github.com/airbytehq/airbyte/pull/43542) | Update dependencies | +| 3.0.12 | 2024-08-03 | [43196](https://github.com/airbytehq/airbyte/pull/43196) | Update dependencies | +| 3.0.11 | 2024-07-27 | [42802](https://github.com/airbytehq/airbyte/pull/42802) | Update dependencies | +| 3.0.10 | 2024-07-20 | [42231](https://github.com/airbytehq/airbyte/pull/42231) | Update dependencies | +| 3.0.9 | 2024-07-13 | [41842](https://github.com/airbytehq/airbyte/pull/41842) | Update dependencies | +| 3.0.8 | 2024-07-10 | [41453](https://github.com/airbytehq/airbyte/pull/41453) | Update dependencies | +| 3.0.7 | 2024-07-09 | [41175](https://github.com/airbytehq/airbyte/pull/41175) | Update dependencies | +| 3.0.6 | 2024-07-06 | [40785](https://github.com/airbytehq/airbyte/pull/40785) | Update dependencies | +| 3.0.5 | 2024-06-27 | [40215](https://github.com/airbytehq/airbyte/pull/40215) | Replaced deprecated AirbyteLogger with logging.Logger | +| 3.0.4 | 2024-06-26 | [40549](https://github.com/airbytehq/airbyte/pull/40549) | Migrate off deprecated auth package | +| 3.0.3 | 2024-06-25 | [40444](https://github.com/airbytehq/airbyte/pull/40444) | Update dependencies | +| 3.0.2 | 2024-06-21 | [40121](https://github.com/airbytehq/airbyte/pull/40121) | Update dependencies | +| 3.0.1 | 2024-06-13 | [39458](https://github.com/airbytehq/airbyte/pull/39458) | Fix skipping custom_field_options entities when schema.items is options | +| 3.0.0 | 2024-06-14 | [39467](https://github.com/airbytehq/airbyte/pull/39467) | Update pk for Workflows stream from Id(object) to entityId, name(string, string) | +| 2.0.3 | 2024-06-10 | [39347](https://github.com/airbytehq/airbyte/pull/39347) | Update state handling for incremental Python streams | +| 2.0.2 | 2024-06-06 | [39310](https://github.com/airbytehq/airbyte/pull/39310) | Fix projects substreams for deleted projects | +| 2.0.1 | 2024-05-20 | [38341](https://github.com/airbytehq/airbyte/pull/38341) | Update CDK authenticator package | +| 2.0.0 | 2024-04-20 | [37374](https://github.com/airbytehq/airbyte/pull/37374) | Migrate to low-code and fix `Project Avatars` stream | +| 1.2.2 | 2024-04-19 | [36646](https://github.com/airbytehq/airbyte/pull/36646) | Updating to 0.80.0 CDK | +| 1.2.1 | 2024-04-12 | [36646](https://github.com/airbytehq/airbyte/pull/36646) | schema descriptions | +| 1.2.0 | 2024-03-19 | [36267](https://github.com/airbytehq/airbyte/pull/36267) | Pin airbyte-cdk version to `^0` | +| 1.1.0 | 2024-02-27 | [35656](https://github.com/airbytehq/airbyte/pull/35656) | Add new fields to streams `board_issues`, `filter_sharing`, `filters`, `issues`, `permission_schemes`, `sprint_issues`, `users_groups_detailed`, and `workflows` | +| 1.0.2 | 2024-02-12 | [35160](https://github.com/airbytehq/airbyte/pull/35160) | Manage dependencies with Poetry. | +| 1.0.1 | 2024-01-24 | [34470](https://github.com/airbytehq/airbyte/pull/34470) | Add state checkpoint interval for all streams | +| 1.0.0 | 2024-01-01 | [33715](https://github.com/airbytehq/airbyte/pull/33715) | Save state for stream `Board Issues` per `board` | +| 0.14.1 | 2023-12-19 | [33625](https://github.com/airbytehq/airbyte/pull/33625) | Skip 404 error | +| 0.14.0 | 2023-12-15 | [33532](https://github.com/airbytehq/airbyte/pull/33532) | Add lookback window | +| 0.13.0 | 2023-12-12 | [33353](https://github.com/airbytehq/airbyte/pull/33353) | Fix check command to check access for all available streams | +| 0.12.0 | 2023-12-01 | [33011](https://github.com/airbytehq/airbyte/pull/33011) | Fix BoardIssues stream; increase number of retries for backoff policy to 10 | +| 0.11.0 | 2023-11-29 | [32927](https://github.com/airbytehq/airbyte/pull/32927) | Fix incremental syncs for stream Issues | +| 0.10.2 | 2023-10-26 | [31896](https://github.com/airbytehq/airbyte/pull/31896) | Provide better guidance when configuring the connector with an invalid domain | +| 0.10.1 | 2023-10-23 | [31702](https://github.com/airbytehq/airbyte/pull/31702) | Base image migration: remove Dockerfile and use the python-connector-base image | +| 0.10.0 | 2023-10-13 | [\#31385](https://github.com/airbytehq/airbyte/pull/31385) | Fixed `aggregatetimeoriginalestimate, timeoriginalestimate` field types for the `Issues` stream schema | +| 0.9.0 | 2023-09-26 | [\#30688](https://github.com/airbytehq/airbyte/pull/30688) | Added `createdDate` field to sprints schema, Removed `Expand Issues stream` from spec | +| 0.8.0 | 2023-09-26 | [\#30755](https://github.com/airbytehq/airbyte/pull/30755) | Add new streams: `Issue custom field options`, `IssueTypes`, `Project Roles` | +| 0.7.2 | 2023-09-19 | [\#30675](https://github.com/airbytehq/airbyte/pull/30675) | Ensure invalid URL does not trigger Sentry alert | +| 0.7.1 | 2023-09-19 | [\#30585](https://github.com/airbytehq/airbyte/pull/30585) | Add skip for 404 error in issue properties steam | +| 0.7.0 | 2023-09-17 | [\#30532](https://github.com/airbytehq/airbyte/pull/30532) | Add foreign key to stream record where it missing | +| 0.6.3 | 2023-09-19 | [\#30515](https://github.com/airbytehq/airbyte/pull/30515) | Add transform for invalid date-time format, add 404 handling for check | +| 0.6.2 | 2023-09-19 | [\#30578](https://github.com/airbytehq/airbyte/pull/30578) | Fetch deleted and archived Projects | +| 0.6.1 | 2023-09-17 | [\#30550](https://github.com/airbytehq/airbyte/pull/30550) | Update `Issues` expand settings | +| 0.6.0 | 2023-09-17 | [\#30507](https://github.com/airbytehq/airbyte/pull/30507) | Add new stream `IssueTransitions` | +| 0.5.0 | 2023-09-14 | [\#29960](https://github.com/airbytehq/airbyte/pull/29960) | Add `boardId` to `sprints` stream | +| 0.3.14 | 2023-09-11 | [\#30297](https://github.com/airbytehq/airbyte/pull/30297) | Remove `requests` and `pendulum` from setup dependencies | +| 0.3.13 | 2023-09-01 | [\#30108](https://github.com/airbytehq/airbyte/pull/30108) | Skip 404 error for stream `IssueWatchers` | +| 0.3.12 | 2023-06-01 | [\#26652](https://github.com/airbytehq/airbyte/pull/26652) | Expand on `leads` for `projects` stream | +| 0.3.11 | 2023-06-01 | [\#26906](https://github.com/airbytehq/airbyte/pull/26906) | Handle project permissions error | +| 0.3.10 | 2023-05-26 | [\#26652](https://github.com/airbytehq/airbyte/pull/26652) | Fixed bug when `board` doesn't support `sprints` | +| 0.3.9 | 2023-05-16 | [\#26114](https://github.com/airbytehq/airbyte/pull/26114) | Update fields info in docs and spec, update to latest airbyte-cdk | +| 0.3.8 | 2023-05-04 | [\#25798](https://github.com/airbytehq/airbyte/pull/25798) | Add sprint info to `sprint_issues` and `sprints` streams for team-managed projects | +| 0.3.7 | 2023-04-18 | [\#25275](https://github.com/airbytehq/airbyte/pull/25275) | Add missing types to issues json schema | +| 0.3.6 | 2023-04-10 | [\#24636](https://github.com/airbytehq/airbyte/pull/24636) | Removed Connector Domain Pattern from Spec | +| 0.3.5 | 2023-04-05 | [\#24890](https://github.com/airbytehq/airbyte/pull/24890) | Fix streams "IssuePropertyKeys", "ScreenTabFields" | +| 0.3.4 | 2023-02-14 | [\#23006](https://github.com/airbytehq/airbyte/pull/23006) | Remove caching for `Issues` stream | +| 0.3.3 | 2023-01-04 | [\#20739](https://github.com/airbytehq/airbyte/pull/20739) | fix: check_connection fails if no projects are defined | +| 0.3.2 | 2022-12-23 | [\#20859](https://github.com/airbytehq/airbyte/pull/20859) | Fixed pagination for streams `issue_remote_links`, `sprints` | +| 0.3.1 | 2022-12-14 | [\#20128](https://github.com/airbytehq/airbyte/pull/20128) | Improved code to become beta | +| 0.3.0 | 2022-11-03 | [\#18901](https://github.com/airbytehq/airbyte/pull/18901) | Adds UserGroupsDetailed schema, fix Incremental normalization, add Incremental support for IssueComments, IssueWorklogs | +| 0.2.23 | 2022-10-28 | [\#18505](https://github.com/airbytehq/airbyte/pull/18505) | Correcting `max_results` bug introduced in connector stream | +| 0.2.22 | 2022-10-03 | [\#16944](https://github.com/airbytehq/airbyte/pull/16944) | Adds support for `max_results` to `users` stream | +| 0.2.21 | 2022-07-28 | [\#15135](https://github.com/airbytehq/airbyte/pull/15135) | Adds components to `fields` object on `issues` stream | +| 0.2.20 | 2022-05-25 | [\#13202](https://github.com/airbytehq/airbyte/pull/13202) | Adds resolutiondate to `fields` object on `issues` stream | +| 0.2.19 | 2022-05-04 | [\#10835](https://github.com/airbytehq/airbyte/pull/10835) | Change description for array fields | +| 0.2.18 | 2021-12-23 | [\#7378](https://github.com/airbytehq/airbyte/pull/7378) | Adds experimental endpoint Pull Request | +| 0.2.17 | 2021-12-23 | [\#9079](https://github.com/airbytehq/airbyte/pull/9079) | Update schema for `filters` stream + fix fetching `filters` stream | +| 0.2.16 | 2021-12-21 | [\#8999](https://github.com/airbytehq/airbyte/pull/8999) | Update connector fields title/description | +| 0.2.15 | 2021-11-01 | [\#7398](https://github.com/airbytehq/airbyte/pull/7398) | Add option to render fields in HTML format and fix sprint_issue ids | +| 0.2.14 | 2021-10-27 | [\#7408](https://github.com/airbytehq/airbyte/pull/7408) | Fix normalization step error. Fix schemas. Fix `acceptance-test-config.yml`. Fix `streams.py`. | +| 0.2.13 | 2021-10-20 | [\#7222](https://github.com/airbytehq/airbyte/pull/7222) | Source Jira: Make recently added configs optional for backwards compatibility | +| 0.2.12 | 2021-10-19 | [\#6621](https://github.com/airbytehq/airbyte/pull/6621) | Add Board, Epic, and Sprint streams | +| 0.2.11 | 2021-09-02 | [\#6523](https://github.com/airbytehq/airbyte/pull/6523) | Add cache and more streams \(boards and sprints\) | +| 0.2.9 | 2021-07-28 | [\#5426](https://github.com/airbytehq/airbyte/pull/5426) | Changed cursor field from fields.created to fields.updated for Issues stream. Made Issues worklogs stream full refresh. | +| 0.2.8 | 2021-07-28 | [\#4947](https://github.com/airbytehq/airbyte/pull/4947) | Source Jira: fixing schemas accordingly to response. | +| 0.2.7 | 2021-07-19 | [\#4817](https://github.com/airbytehq/airbyte/pull/4817) | Fixed `labels` schema properties issue. | +| 0.2.6 | 2021-06-15 | [\#4113](https://github.com/airbytehq/airbyte/pull/4113) | Fixed `user` stream with the correct endpoint and query param. | +| 0.2.5 | 2021-06-09 | [\#3973](https://github.com/airbytehq/airbyte/pull/3973) | Added `AIRBYTE_ENTRYPOINT` in base Docker image for Kubernetes support. | +| 0.2.4 | | | Implementing base_read acceptance test dived by stream groups. | +| 0.2.3 | | | Implementing incremental sync. Migrated to airbyte-cdk. Adding all available entities in Jira Cloud. |
From 7c7e830a420b2b16155979b9c2c2a7aa23266730 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Wed, 30 Oct 2024 23:28:27 +0530 Subject: [PATCH 490/808] source-circa contribution from parthiv11 (#47208) Co-authored-by: Marcos Marx --- .../connectors/source-circa/README.md | 33 + .../source-circa/acceptance-test-config.yml | 17 + .../connectors/source-circa/icon.svg | 12 + .../connectors/source-circa/manifest.yaml | 1065 +++++++++++++++++ .../connectors/source-circa/metadata.yaml | 35 + docs/integrations/sources/circa.md | 33 + 6 files changed, 1195 insertions(+) create mode 100644 airbyte-integrations/connectors/source-circa/README.md create mode 100644 airbyte-integrations/connectors/source-circa/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-circa/icon.svg create mode 100644 airbyte-integrations/connectors/source-circa/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-circa/metadata.yaml create mode 100644 docs/integrations/sources/circa.md diff --git a/airbyte-integrations/connectors/source-circa/README.md b/airbyte-integrations/connectors/source-circa/README.md new file mode 100644 index 000000000000..fc4404b28c9e --- /dev/null +++ b/airbyte-integrations/connectors/source-circa/README.md @@ -0,0 +1,33 @@ +# Circa +This directory contains the manifest-only connector for `source-circa`. + +Airbyte connector for Circa.com would enable seamless data extraction from Circa's platform, facilitating automated data integration into your data warehouse or analytics systems. This connector would pull key metrics, user engagement data, and content performance insights, offering streamlined reporting and analysis workflows. Ideal for organizations looking to consolidate Circa’s data with other sources for comprehensive business intelligence. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-circa:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-circa build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-circa test +``` + diff --git a/airbyte-integrations/connectors/source-circa/acceptance-test-config.yml b/airbyte-integrations/connectors/source-circa/acceptance-test-config.yml new file mode 100644 index 000000000000..1d6bf38a00e6 --- /dev/null +++ b/airbyte-integrations/connectors/source-circa/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-circa:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-circa/icon.svg b/airbyte-integrations/connectors/source-circa/icon.svg new file mode 100644 index 000000000000..93d3f5a9ea7c --- /dev/null +++ b/airbyte-integrations/connectors/source-circa/icon.svg @@ -0,0 +1,12 @@ + + + + diff --git a/airbyte-integrations/connectors/source-circa/manifest.yaml b/airbyte-integrations/connectors/source-circa/manifest.yaml new file mode 100644 index 000000000000..94251e480473 --- /dev/null +++ b/airbyte-integrations/connectors/source-circa/manifest.yaml @@ -0,0 +1,1065 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + Airbyte connector for Circa.com would enable seamless data extraction from + Circa's platform, facilitating automated data integration into your data + warehouse or analytics systems. This connector would pull key metrics, user + engagement data, and content performance insights, offering streamlined + reporting and analysis workflows. Ideal for organizations looking to + consolidate Circa’s data with other sources for comprehensive business + intelligence. + +check: + type: CheckStream + stream_names: + - events + +definitions: + streams: + teams: + type: DeclarativeStream + name: teams + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + field_name: page + inject_into: body_json + pagination_strategy: + type: PageIncrement + page_size: 25 + start_from_page: 1 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /teams + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/teams" + events: + type: DeclarativeStream + name: events + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + field_name: page + inject_into: body_json + pagination_strategy: + type: PageIncrement + page_size: 25 + start_from_page: 1 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /events + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/events" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: updated_at[max] + inject_into: request_parameter + start_time_option: + type: RequestOption + field_name: updated_at[min] + inject_into: request_parameter + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + contacts: + type: DeclarativeStream + name: contacts + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + field_name: page + inject_into: body_json + pagination_strategy: + type: PageIncrement + page_size: 25 + start_from_page: 1 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /contacts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/contacts" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: updated_at[max] + inject_into: request_parameter + start_time_option: + type: RequestOption + field_name: updated_at[min] + inject_into: request_parameter + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + companies: + type: DeclarativeStream + name: companies + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + field_name: page + inject_into: body_json + pagination_strategy: + type: PageIncrement + page_size: 25 + start_from_page: 1 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /companies + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/companies" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + end_time_option: + type: RequestOption + field_name: updated_at[max] + inject_into: request_parameter + start_time_option: + type: RequestOption + field_name: updated_at[min] + inject_into: request_parameter + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + event_fields: + type: DeclarativeStream + name: event_fields + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /fields + http_method: GET + request_parameters: + fields_for: Event + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/event_fields" + company_fields: + type: DeclarativeStream + name: company_fields + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /fields + http_method: GET + request_parameters: + fields_for: Company + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/company_fields" + contact_fields: + type: DeclarativeStream + name: contact_fields + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /fields + http_method: GET + request_parameters: + fields_for: Contact + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/contact_fields" + event_contacts: + type: DeclarativeStream + name: event_contacts + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + field_name: page + inject_into: body_json + pagination_strategy: + type: PageIncrement + page_size: 25 + start_from_page: 1 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: /events/{{ stream_partition.event_id }}/contacts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: + $ref: "#/definitions/streams/events" + parent_key: id + partition_field: event_id + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/event_contacts" + company_contacts: + type: DeclarativeStream + name: company_contacts + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + field_name: page + inject_into: body_json + pagination_strategy: + type: PageIncrement + page_size: 25 + start_from_page: 1 + inject_on_first_request: true + requester: + $ref: "#/definitions/base_requester" + path: companies/{{ stream_partition.company_id }}/contacts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: + $ref: "#/definitions/streams/companies" + parent_key: id + partition_field: company_id + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/company_contacts" + base_requester: + type: HttpRequester + url_base: https://app.circa.co/api/v1 + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/events" + - $ref: "#/definitions/streams/contacts" + - $ref: "#/definitions/streams/teams" + - $ref: "#/definitions/streams/companies" + - $ref: "#/definitions/streams/company_contacts" + - $ref: "#/definitions/streams/event_fields" + - $ref: "#/definitions/streams/contact_fields" + - $ref: "#/definitions/streams/company_fields" + - $ref: "#/definitions/streams/event_contacts" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - start_date + properties: + api_key: + type: string + description: >- + API key to use. Find it at + https://app.circa.co/settings/integrations/api + name: api_key + order: 0 + title: API Key + airbyte_secret: true + start_date: + type: string + order: 1 + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + additionalProperties: true + +metadata: + assist: + docsUrl: https://docs.circa.co/ + testedStreams: + teams: + hasRecords: true + streamHash: 3a333dca6eb202b626d5807858c9cb70c580636c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + events: + hasRecords: true + streamHash: e819947a5a8c1bc9759c82397024bd83cfb469b1 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + contacts: + hasRecords: true + streamHash: 497d37a0e403270401c202685588af80ed0e9f11 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + companies: + hasRecords: true + streamHash: 216768eb9e27c528ff4d46f339eaef671b7f1e5a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + event_fields: + hasRecords: true + streamHash: 6d9b721f9f31fbdb46af0f0b90e5fb7a796ae16f + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + company_fields: + hasRecords: true + streamHash: 40d227270ec88a6e2fdd397292a6e55c843a215b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + contact_fields: + hasRecords: true + streamHash: a00fdf4f6fbfe317353c876fc88e5ff49de42241 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + event_contacts: + hasRecords: true + streamHash: 6d9d71beb8ff08a57680d4ebf85abe59bbc1114c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + company_contacts: + hasRecords: true + streamHash: 18ddfafe76ae6aa6b4538b8703e88293e3f8c6c2 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + autoImportSchema: + teams: true + events: true + contacts: false + companies: true + event_fields: true + company_fields: true + contact_fields: true + event_contacts: true + company_contacts: true + +schemas: + teams: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: string + name: + type: + - string + - "null" + additionalProperties: true + events: + type: object + $schema: http://json-schema.org/schema# + required: + - id + - updated_at + properties: + id: + type: string + name: + type: + - string + - "null" + team: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + roles: + type: + - array + - "null" + types: + type: + - array + - "null" + status: + type: + - string + - "null" + website: + type: + - string + - "null" + brief_url: + type: + - string + - "null" + time_zone: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + email: + type: + - string + - "null" + last_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + paid_total: + type: + - number + - "null" + updated_at: + type: string + updated_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + email: + type: + - string + - "null" + last_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + actual_total: + type: + - number + - "null" + planned_total: + type: + - number + - "null" + additionalProperties: true + contacts: + type: object + $schema: http://json-schema.org/schema# + required: + - id + - updated_at + properties: + id: + type: string + email: + type: + - string + - "null" + company: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + hot_lead: + type: + - boolean + - "null" + last_name: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + email: + type: + - string + - "null" + last_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + updated_at: + type: string + updated_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + email: + type: + - string + - "null" + last_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + sync_status: + type: + - object + - "null" + properties: + status: + type: + - string + - "null" + email_opt_in: + type: + - boolean + - "null" + created_method: + type: + - string + - "null" + updated_method: + type: + - string + - "null" + additionalProperties: true + companies: + type: object + $schema: http://json-schema.org/schema# + required: + - updated_at + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + created_at: + type: + - string + - "null" + updated_at: + type: string + additionalProperties: true + event_fields: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: string + label: + type: + - string + - "null" + order: + type: + - number + - "null" + options: + type: + - array + - "null" + items: + type: + - string + - "null" + section: + type: + - string + - "null" + required: + type: + - boolean + - "null" + field_for: + type: + - string + - "null" + field_name: + type: + - string + - "null" + field_type: + type: + - string + - "null" + additionalProperties: true + company_fields: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: string + label: + type: + - string + - "null" + order: + type: + - number + - "null" + required: + type: + - boolean + - "null" + field_for: + type: + - string + - "null" + field_name: + type: + - string + - "null" + field_type: + type: + - string + - "null" + additionalProperties: true + contact_fields: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: string + label: + type: + - string + - "null" + order: + type: + - number + - "null" + options: + type: + - array + - "null" + items: + type: + - string + - "null" + required: + type: + - boolean + - "null" + field_for: + type: + - string + - "null" + field_name: + type: + - string + - "null" + field_type: + type: + - string + - "null" + additionalProperties: true + event_contacts: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: string + email: + type: + - string + - "null" + company: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + hot_lead: + type: + - boolean + - "null" + last_name: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + email: + type: + - string + - "null" + last_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + email: + type: + - string + - "null" + last_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + sync_status: + type: + - object + - "null" + properties: + status: + type: + - string + - "null" + email_opt_in: + type: + - boolean + - "null" + created_method: + type: + - string + - "null" + updated_method: + type: + - string + - "null" + additionalProperties: true + company_contacts: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + id: + type: string + email: + type: + - string + - "null" + company: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + hot_lead: + type: + - boolean + - "null" + last_name: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + email: + type: + - string + - "null" + last_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + email: + type: + - string + - "null" + last_name: + type: + - string + - "null" + first_name: + type: + - string + - "null" + email_opt_in: + type: + - boolean + - "null" + created_method: + type: + - string + - "null" + updated_method: + type: + - string + - "null" + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-circa/metadata.yaml b/airbyte-integrations/connectors/source-circa/metadata.yaml new file mode 100644 index 000000000000..fb705a720a16 --- /dev/null +++ b/airbyte-integrations/connectors/source-circa/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "app.circa.co" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-circa + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 751184ec-3b11-4084-b1b7-8064dde1e76e + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-circa + githubIssueLabel: source-circa + icon: icon.svg + license: MIT + name: Circa + releaseDate: 2024-10-21 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/circa + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/circa.md b/docs/integrations/sources/circa.md new file mode 100644 index 000000000000..1848f74cbb2b --- /dev/null +++ b/docs/integrations/sources/circa.md @@ -0,0 +1,33 @@ +# Simple Circa +Airbyte connector for [SimpleCirca](https://www.simplecirca.com/) would enable seamless data extraction from Simple Circa's platform, facilitating automated data integration into your data warehouse or analytics systems. This connector would pull key metrics, user engagement data, and content performance insights, offering streamlined reporting and analysis workflows. Ideal for organizations looking to consolidate Circa’s data with other sources for comprehensive business intelligence. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. API key to use. Find it at https://app.circa.co/settings/integrations/api | | +| `start_date` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| events | id | DefaultPaginator | ✅ | ✅ | +| contacts | id | DefaultPaginator | ✅ | ✅ | +| teams | id | DefaultPaginator | ✅ | ❌ | +| companies | | DefaultPaginator | ✅ | ✅ | +| company_contacts | id | DefaultPaginator | ✅ | ❌ | +| event_fields | id | No pagination | ✅ | ❌ | +| contact_fields | id | No pagination | ✅ | ❌ | +| company_fields | id | No pagination | ✅ | ❌ | +| event_contacts | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From ed03d4ee0e0920a0c93b206b5803fbaed2e07306 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Wed, 30 Oct 2024 23:29:16 +0530 Subject: [PATCH 491/808] source-easypromos contribution from parthiv11 (#47209) Co-authored-by: Marcos Marx --- .../connectors/source-easypromos/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-easypromos/icon.svg | 6 + .../source-easypromos/manifest.yaml | 764 ++++++++++++++++++ .../source-easypromos/metadata.yaml | 35 + docs/integrations/sources/easypromos.md | 30 + 6 files changed, 885 insertions(+) create mode 100644 airbyte-integrations/connectors/source-easypromos/README.md create mode 100644 airbyte-integrations/connectors/source-easypromos/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-easypromos/icon.svg create mode 100644 airbyte-integrations/connectors/source-easypromos/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-easypromos/metadata.yaml create mode 100644 docs/integrations/sources/easypromos.md diff --git a/airbyte-integrations/connectors/source-easypromos/README.md b/airbyte-integrations/connectors/source-easypromos/README.md new file mode 100644 index 000000000000..403f4876b023 --- /dev/null +++ b/airbyte-integrations/connectors/source-easypromos/README.md @@ -0,0 +1,33 @@ +# Easypromos +This directory contains the manifest-only connector for `source-easypromos`. + +Airbyte connector for Easypromos enables seamless data extraction from Easypromos, an online platform for running contests, giveaways, and promotions. It facilitates automatic syncing of participant information, promotion performance, and engagement metrics into data warehouses, streamlining analytics and reporting. This integration helps businesses easily analyze campaign data and optimize marketing strategies + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-easypromos:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-easypromos build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-easypromos test +``` + diff --git a/airbyte-integrations/connectors/source-easypromos/acceptance-test-config.yml b/airbyte-integrations/connectors/source-easypromos/acceptance-test-config.yml new file mode 100644 index 000000000000..513a41ef34df --- /dev/null +++ b/airbyte-integrations/connectors/source-easypromos/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-easypromos:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-easypromos/icon.svg b/airbyte-integrations/connectors/source-easypromos/icon.svg new file mode 100644 index 000000000000..54366c5c3039 --- /dev/null +++ b/airbyte-integrations/connectors/source-easypromos/icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/airbyte-integrations/connectors/source-easypromos/manifest.yaml b/airbyte-integrations/connectors/source-easypromos/manifest.yaml new file mode 100644 index 000000000000..e631179c9071 --- /dev/null +++ b/airbyte-integrations/connectors/source-easypromos/manifest.yaml @@ -0,0 +1,764 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + Airbyte connector for Easypromos enables seamless data extraction from + Easypromos, an online platform for running contests, giveaways, and + promotions. It facilitates automatic syncing of participant information, + promotion performance, and engagement metrics into data warehouses, + streamlining analytics and reporting. This integration helps businesses easily + analyze campaign data and optimize marketing strategies + +check: + type: CheckStream + stream_names: + - promotions + +definitions: + streams: + promotions: + type: DeclarativeStream + name: promotions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /promotions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: next_cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('paging', {}).get('next_cursor') }}" + stop_condition: "{{ response.get('paging', {}).get('next_cursor') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/promotions" + organizing_brands: + type: DeclarativeStream + name: organizing_brands + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /organizing_brands + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: next_cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('paging', {}).get('next_cursor') }}" + stop_condition: "{{ response.get('paging', {}).get('next_cursor') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/organizing_brands" + stages: + type: DeclarativeStream + name: stages + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stages/{{ stream_partition.promotion_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: next_cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('paging', {}).get('next_cursor') }}" + stop_condition: "{{ response.get('paging', {}).get('next_cursor') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: promotion_id + stream: + $ref: "#/definitions/streams/promotions" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stages" + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /users/{{ stream_partition.promotion_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: next_cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('paging', {}).get('next_cursor') }}" + stop_condition: "{{ response.get('paging', {}).get('next_cursor') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: promotion_id + stream: + $ref: "#/definitions/streams/promotions" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + participations: + type: DeclarativeStream + name: participations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /participations/{{ stream_partition.promotion_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: next_cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('paging', {}).get('next_cursor') }}" + stop_condition: "{{ response.get('paging', {}).get('next_cursor') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: promotion_id + stream: + $ref: "#/definitions/streams/promotions" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/participations" + prizes: + type: DeclarativeStream + name: prizes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /prizes/{{ stream_partition.promotion_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: next_cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('paging', {}).get('next_cursor') }}" + stop_condition: "{{ response.get('paging', {}).get('next_cursor') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: promotion_id + stream: + $ref: "#/definitions/streams/promotions" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/prizes" + rankings: + type: DeclarativeStream + name: rankings + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /ranking/{{ stream_partition.promotion_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: next_cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('paging', {}).get('next_cursor') }}" + stop_condition: "{{ response.get('paging', {}).get('next_cursor') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: promotion_id + stream: + $ref: "#/definitions/streams/promotions" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/rankings" + base_requester: + type: HttpRequester + url_base: https://api.easypromosapp.com/v2 + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"bearer_token\"] }}" + +streams: + - $ref: "#/definitions/streams/promotions" + - $ref: "#/definitions/streams/organizing_brands" + - $ref: "#/definitions/streams/stages" + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/participations" + - $ref: "#/definitions/streams/prizes" + - $ref: "#/definitions/streams/rankings" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - bearer_token + properties: + bearer_token: + type: string + name: jwt_token + order: 0 + title: Bearer Token + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + promotions: true + organizing_brands: false + stages: false + users: false + participations: false + prizes: false + rankings: false + testedStreams: + promotions: + hasRecords: true + streamHash: aa30738aecf05a5ad59b1d4b5360a2cac3c1a431 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + organizing_brands: + hasRecords: true + streamHash: 6caeef094bc7203463c34ca952f2d7c164a9003a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + stages: + hasRecords: true + streamHash: bf15f2fc055a0e9d4440359f2e71e4abd102cfa5 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + users: + hasRecords: true + streamHash: 999f9a05b409a39ef39c4fda263259826643513a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + participations: + hasRecords: true + streamHash: f2c2f9574b5ba92e535bd7da808b06cd52239d8d + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + prizes: + hasRecords: true + streamHash: 85b403e53fb415e280f92ef873ed3ce465c95a59 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + rankings: + hasRecords: true + streamHash: c852ad512d4adb549fbfc253161e99c1c3bb6b56 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://easypromos-apiref.redoc.ly/ + +schemas: + promotions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + created: + type: + - string + - "null" + default_language: + type: + - string + - "null" + end_date: + type: + - string + - "null" + id: + type: string + organizing_brand: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + promotion_type: + type: + - string + - "null" + start_date: + type: + - string + - "null" + status: + type: + - string + - "null" + timezone: + type: + - string + - "null" + title: + type: + - string + - "null" + url: + type: + - string + - "null" + required: + - id + organizing_brands: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: string + name: + type: + - string + - "null" + required: + - id + stages: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + end_date: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + start_date: + type: + - string + - "null" + visible: + type: + - boolean + - "null" + required: + - id + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + country: + type: + - string + - "null" + created: + type: + - string + - "null" + custom_properties: + type: + - array + - "null" + email: + type: + - string + - "null" + external_id: + type: + - string + - "null" + first_name: + type: + - string + - "null" + id: + type: string + language: + type: + - string + - "null" + last_name: + type: + - string + - "null" + login_type: + type: + - string + - "null" + meta_data: + type: + - object + - "null" + properties: + ip: + type: + - string + - "null" + legals: + type: + - object + - "null" + properties: + privacy_url: + type: + - string + - "null" + terms_url: + type: + - string + - "null" + referral_url: + type: + - string + - "null" + user_agent: + type: + - string + - "null" + utm_campaign: + type: + - string + - "null" + utm_medium: + type: + - string + - "null" + utm_source: + type: + - string + - "null" + nickname: + type: + - string + - "null" + promotion_id: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + participations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created: + type: + - string + - "null" + data: + type: + - array + - "null" + id: + type: string + ip: + type: + - string + - "null" + promotion_id: + type: + - string + - "null" + stage_id: + type: + - string + - "null" + user_agent: + type: + - string + - "null" + user_id: + type: + - string + - "null" + required: + - id + prizes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + code: + type: + - string + - "null" + created: + type: + - string + - "null" + download_url: + type: + - string + - "null" + id: + type: string + participation_id: + type: + - string + - "null" + prize_type: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + assignation_type: + type: + - string + - "null" + id: + type: + - string + - "null" + image: + type: + - string + - "null" + instructions: + type: + - string + - "null" + name: + type: + - string + - "null" + qty: + type: + - string + - "null" + ref: + type: + - string + - "null" + redeem_url: + type: + - string + - "null" + stage_id: + type: + - string + - "null" + user: + type: + - object + - "null" + properties: + country: + type: + - string + - "null" + created: + type: + - string + - "null" + custom_properties: + type: + - array + - "null" + external_id: + type: + - string + - "null" + first_name: + type: + - string + - "null" + id: + type: + - string + - "null" + language: + type: + - string + - "null" + last_name: + type: + - string + - "null" + meta_data: + type: + - object + - "null" + properties: + ip: + type: + - string + - "null" + legals: + type: + - object + - "null" + properties: {} + user_agent: + type: + - string + - "null" + utm_medium: + type: + - string + - "null" + nickname: + type: + - string + - "null" + promotion_id: + type: + - string + - "null" + social_id: + type: + - string + - "null" + status: + type: + - string + - "null" + user_id: + type: + - string + - "null" + required: + - id + rankings: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} diff --git a/airbyte-integrations/connectors/source-easypromos/metadata.yaml b/airbyte-integrations/connectors/source-easypromos/metadata.yaml new file mode 100644 index 000000000000..b0f6be25229d --- /dev/null +++ b/airbyte-integrations/connectors/source-easypromos/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.easypromosapp.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-easypromos + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 8b418a25-7042-430f-96d8-72853a337a26 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-easypromos + githubIssueLabel: source-easypromos + icon: icon.svg + license: MIT + name: Easypromos + releaseDate: 2024-10-21 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/easypromos + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/easypromos.md b/docs/integrations/sources/easypromos.md new file mode 100644 index 000000000000..d256a1368bab --- /dev/null +++ b/docs/integrations/sources/easypromos.md @@ -0,0 +1,30 @@ +# Easypromos +Airbyte connector for [Easypromos](https://www.easypromosapp.com/) enables seamless data extraction from Easypromos, an online platform for running contests, giveaways, and promotions. It facilitates automatic syncing of participant information, promotion performance, and engagement metrics into data warehouses, streamlining analytics and reporting. This integration helps businesses easily analyze campaign data and optimize marketing strategies + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `bearer_token` | `string` | Bearer Token. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| promotions | id | DefaultPaginator | ✅ | ❌ | +| organizing_brands | id | DefaultPaginator | ✅ | ❌ | +| stages | id | DefaultPaginator | ✅ | ❌ | +| users | id | DefaultPaginator | ✅ | ❌ | +| participations | id | DefaultPaginator | ✅ | ❌ | +| prizes | id | DefaultPaginator | ✅ | ❌ | +| rankings | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From 895711935e29dd203e2105918c669a77be9a955e Mon Sep 17 00:00:00 2001 From: Stephane Geneix <147216312+stephane-airbyte@users.noreply.github.com> Date: Wed, 30 Oct 2024 12:29:26 -0700 Subject: [PATCH 492/808] destination-s3: add file transfer (#46302) Co-authored-by: benmoriceau --- .../MockBasicFunctionalityIntegrationTest.kt | 2 + airbyte-cdk/java/airbyte-cdk/README.md | 1 + .../destination/async/AsyncStreamConsumer.kt | 2 + .../destination/async/DetectStreamToFlush.kt | 16 +- .../destination/async/FlushWorkers.kt | 2 + .../async/buffers/BufferDequeue.kt | 2 +- .../async/model/AirbyteRecordMessageFile.kt | 56 +++++ .../model/PartialAirbyteRecordMessage.kt | 18 +- .../src/main/resources/version.properties | 2 +- .../async/AsyncStreamConsumerTest.kt | 5 +- .../async/DetectStreamToFlushTest.kt | 50 ++++- .../BaseDestinationAcceptanceTest.kt | 8 +- .../source/AbstractSourceConnectorTest.kt | 1 + .../features/EnvVariableFeatureFlags.kt | 14 ++ .../airbyte/commons/features/FeatureFlags.kt | 6 + .../commons/features/FeatureFlagsWrapper.kt | 10 + .../workers/exception/TestHarnessException.kt | 19 +- .../workers/process/DockerProcessFactory.kt | 16 ++ .../destination/s3/BaseS3Destination.kt | 3 +- .../destination/s3/S3ConsumerFactory.kt | 131 ++++++++--- .../s3/S3DestinationFlushFunction.kt | 12 +- .../destination/s3/S3StorageOperations.kt | 30 ++- .../s3/S3BaseDestinationAcceptanceTest.kt | 127 +++++++++++ .../s3/S3DestinationAcceptanceTest.kt | 77 +++++++ .../typing_deduping/BaseTypingDedupingTest.kt | 1 + .../connectors/destination-s3/build.gradle | 4 +- .../connectors/destination-s3/metadata.yaml | 3 +- .../s3/S3FileTransferDestinationTest.kt | 211 ++++++++++++++++++ docs/integrations/destinations/s3.md | 3 +- 29 files changed, 775 insertions(+), 57 deletions(-) create mode 100644 airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/model/AirbyteRecordMessageFile.kt create mode 100644 airbyte-cdk/java/airbyte-cdk/s3-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/destination/s3/S3BaseDestinationAcceptanceTest.kt create mode 100644 airbyte-integrations/connectors/destination-s3/src/test-integration/kotlin/io/airbyte/integrations/destination/s3/S3FileTransferDestinationTest.kt diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt index 361eb2156a10..8eb8c5dc6019 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt @@ -8,6 +8,7 @@ import io.airbyte.cdk.load.test.util.NoopDestinationCleaner import io.airbyte.cdk.load.test.util.NoopExpectedRecordMapper import io.airbyte.cdk.load.test.util.NoopNameMapper import io.airbyte.cdk.load.write.BasicFunctionalityIntegrationTest +import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test class MockBasicFunctionalityIntegrationTest : @@ -27,6 +28,7 @@ class MockBasicFunctionalityIntegrationTest : } @Test + @Disabled override fun testMidSyncCheckpointingStreamState() { super.testMidSyncCheckpointingStreamState() } diff --git a/airbyte-cdk/java/airbyte-cdk/README.md b/airbyte-cdk/java/airbyte-cdk/README.md index 48f390a35cc4..04a717ff3a1e 100644 --- a/airbyte-cdk/java/airbyte-cdk/README.md +++ b/airbyte-cdk/java/airbyte-cdk/README.md @@ -174,6 +174,7 @@ corresponds to that version. | Version | Date | Pull Request | Subject | |:-----------|:-----------|:------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0.48.0 | 2024-10-23 | [\#46302](https://github.com/airbytehq/airbyte/pull/46302) | Add support for file transfer | | 0.47.3 | 2024-10-23 | [\#46689](https://github.com/airbytehq/airbyte/pull/46689) | Split DestinationAcceptanceTest| | 0.47.2 | 2024-10-21 | [\#47216](https://github.com/airbytehq/airbyte/pull/47216) | improve java compatibiilty| | 0.47.1 | 2024-09-27 | [\#45397](https://github.com/airbytehq/airbyte/pull/45397) | Allow logical replication from Postgres 16 read-replicas| diff --git a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumer.kt b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumer.kt index 9581d943473a..59188aef425c 100644 --- a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumer.kt +++ b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumer.kt @@ -54,6 +54,7 @@ constructor( workerPool: ExecutorService = Executors.newFixedThreadPool(5), private val airbyteMessageDeserializer: AirbyteMessageDeserializer = AirbyteMessageDeserializer(), + flushOnEveryMessage: Boolean = false, ) : SerializedAirbyteMessageConsumer { private val bufferEnqueue: BufferEnqueue = bufferManager.bufferEnqueue private val flushWorkers: FlushWorkers = @@ -64,6 +65,7 @@ constructor( flushFailure, bufferManager.stateManager, workerPool, + flushOnEveryMessage, ) private val streamNames: Set = StreamDescriptorUtils.fromConfiguredCatalog( diff --git a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlush.kt b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlush.kt index db61cdaebf45..f8531b9c134c 100644 --- a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlush.kt +++ b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlush.kt @@ -28,6 +28,7 @@ internal constructor( private val isClosing: AtomicBoolean, private val flusher: DestinationFlushFunction, private val nowProvider: Clock, + private val flushOnEveryMessage: Boolean = false, ) { private val latestFlushTimeMsPerStream: ConcurrentMap = ConcurrentHashMap() @@ -37,7 +38,15 @@ internal constructor( runningFlushWorkers: RunningFlushWorkers, isClosing: AtomicBoolean, flusher: DestinationFlushFunction, - ) : this(bufferDequeue, runningFlushWorkers, isClosing, flusher, Clock.systemUTC()) + flushOnEveryMessage: Boolean = false, + ) : this( + bufferDequeue, + runningFlushWorkers, + isClosing, + flusher, + Clock.systemUTC(), + flushOnEveryMessage + ) val nextStreamToFlush: Optional /** @@ -70,7 +79,8 @@ internal constructor( bufferDequeue.totalGlobalQueueSizeBytes.toDouble() / bufferDequeue.maxQueueSizeBytes // when we are closing or queues are very full, flush regardless of how few items are in the // queue. - return if (isClosing.get() || isBuffer90Full) 0 else flusher.queueFlushThresholdBytes + return if (flushOnEveryMessage || isClosing.get() || isBuffer90Full) 0 + else flusher.queueFlushThresholdBytes } // todo (cgardens) - improve prioritization by getting a better estimate of how much data @@ -105,7 +115,7 @@ internal constructor( "${isTimeTriggeredResult.second} , ${isSizeTriggeredResult.second}" logger.debug { "computed: $debugString" } - if (isSizeTriggeredResult.first || isTimeTriggeredResult.first) { + if (flushOnEveryMessage || isSizeTriggeredResult.first || isTimeTriggeredResult.first) { logger.info { "flushing: $debugString" } latestFlushTimeMsPerStream[stream] = nowProvider.millis() return Optional.of(stream) diff --git a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/FlushWorkers.kt b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/FlushWorkers.kt index 52377b504b9a..58c17827c561 100644 --- a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/FlushWorkers.kt +++ b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/FlushWorkers.kt @@ -51,6 +51,7 @@ constructor( private val flushFailure: FlushFailure, private val stateManager: GlobalAsyncStateManager, private val workerPool: ExecutorService = Executors.newFixedThreadPool(5), + flushOnEveryMessage: Boolean = false, ) : AutoCloseable { private val supervisorThread: ScheduledExecutorService = Executors.newScheduledThreadPool(1) private val debugLoop: ScheduledExecutorService = Executors.newSingleThreadScheduledExecutor() @@ -66,6 +67,7 @@ constructor( runningFlushWorkers, isClosing, flusher, + flushOnEveryMessage, ) } diff --git a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/buffers/BufferDequeue.kt b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/buffers/BufferDequeue.kt index 31f80de484d5..60ab054a2fb6 100644 --- a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/buffers/BufferDequeue.kt +++ b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/buffers/BufferDequeue.kt @@ -63,7 +63,7 @@ class BufferDequeue( // otherwise pull records until we hit the memory limit. val newSize: Long = (memoryItem.size) + bytesRead.get() - if (newSize <= optimalBytesToRead) { + if (newSize <= optimalBytesToRead || output.isEmpty()) { memoryItem.size.let { bytesRead.addAndGet(it) } queue.poll()?.item?.let { output.add(it) } } else { diff --git a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/model/AirbyteRecordMessageFile.kt b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/model/AirbyteRecordMessageFile.kt new file mode 100644 index 000000000000..54df03f239d0 --- /dev/null +++ b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/model/AirbyteRecordMessageFile.kt @@ -0,0 +1,56 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.integrations.destination.async.model + +import com.fasterxml.jackson.annotation.JsonProperty + +class AirbyteRecordMessageFile { + constructor( + fileUrl: String? = null, + bytes: Long? = null, + fileRelativePath: String? = null, + modified: Long? = null, + sourceFileUrl: String? = null + ) { + this.fileUrl = fileUrl + this.bytes = bytes + this.fileRelativePath = fileRelativePath + this.modified = modified + this.sourceFileUrl = sourceFileUrl + } + constructor() : + this( + fileUrl = null, + bytes = null, + fileRelativePath = null, + modified = null, + sourceFileUrl = null + ) + + @get:JsonProperty("file_url") + @set:JsonProperty("file_url") + @JsonProperty("file_url") + var fileUrl: String? = null + + @get:JsonProperty("bytes") + @set:JsonProperty("bytes") + @JsonProperty("bytes") + var bytes: Long? = null + + @get:JsonProperty("file_relative_path") + @set:JsonProperty("file_relative_path") + @JsonProperty("file_relative_path") + var fileRelativePath: String? = null + + @get:JsonProperty("modified") + @set:JsonProperty("modified") + @JsonProperty("modified") + var modified: Long? = null + + @get:JsonProperty("source_file_url") + @set:JsonProperty("source_file_url") + @JsonProperty("source_file_url") + var sourceFileUrl: String? = null +} diff --git a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/model/PartialAirbyteRecordMessage.kt b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/model/PartialAirbyteRecordMessage.kt index fd26f6ad5747..d01c70c15cf6 100644 --- a/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/model/PartialAirbyteRecordMessage.kt +++ b/airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/model/PartialAirbyteRecordMessage.kt @@ -5,7 +5,6 @@ package io.airbyte.cdk.integrations.destination.async.model import com.fasterxml.jackson.annotation.JsonProperty -import com.fasterxml.jackson.annotation.JsonPropertyDescription import com.fasterxml.jackson.databind.JsonNode import io.airbyte.protocol.models.v0.AirbyteRecordMessageMeta import io.airbyte.protocol.models.v0.StreamDescriptor @@ -33,7 +32,6 @@ class PartialAirbyteRecordMessage { @get:JsonProperty("emitted_at") @set:JsonProperty("emitted_at") @JsonProperty("emitted_at") - @JsonPropertyDescription("when the data was emitted from the source. epoch in millisecond.") var emittedAt: Long = 0 @get:JsonProperty("meta") @@ -41,6 +39,11 @@ class PartialAirbyteRecordMessage { @JsonProperty("meta") var meta: AirbyteRecordMessageMeta? = null + @get:JsonProperty("file") + @set:JsonProperty("file") + @JsonProperty("file") + var file: AirbyteRecordMessageFile? = null + fun withNamespace(namespace: String?): PartialAirbyteRecordMessage { this.namespace = namespace return this @@ -66,6 +69,11 @@ class PartialAirbyteRecordMessage { return this } + fun withFile(file: AirbyteRecordMessageFile): PartialAirbyteRecordMessage { + this.file = file + return this + } + override fun equals(other: Any?): Boolean { if (this === other) { return true @@ -77,7 +85,8 @@ class PartialAirbyteRecordMessage { return namespace == that.namespace && stream == that.stream && emittedAt == that.emittedAt && - meta == that.meta + meta == that.meta && + file == that.file } override fun hashCode(): Int { @@ -98,6 +107,9 @@ class PartialAirbyteRecordMessage { ", meta='" + meta + '\'' + + ", file='" + + file + + '\'' + '}' } diff --git a/airbyte-cdk/java/airbyte-cdk/core/src/main/resources/version.properties b/airbyte-cdk/java/airbyte-cdk/core/src/main/resources/version.properties index 5312981f0d4d..ae22e0646220 100644 --- a/airbyte-cdk/java/airbyte-cdk/core/src/main/resources/version.properties +++ b/airbyte-cdk/java/airbyte-cdk/core/src/main/resources/version.properties @@ -1 +1 @@ -version=0.47.3 +version=0.48.1 diff --git a/airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumerTest.kt b/airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumerTest.kt index e8634f5f8707..bd706681ed5a 100644 --- a/airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumerTest.kt +++ b/airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumerTest.kt @@ -765,6 +765,9 @@ class AsyncStreamConsumerTest { val throwable = assertThrows(RuntimeException::class.java) { consumer.accept(retyped, retyped.length) } // Ensure that the offending data has been scrubbed from the error message - assertFalse(throwable.message!!.contains(offender)) + assertFalse( + throwable.message!!.contains(offender), + "message should not contain the offender. Was ${throwable.message}" + ) } } diff --git a/airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlushTest.kt b/airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlushTest.kt index 190a62db5bab..8d7455433815 100644 --- a/airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlushTest.kt +++ b/airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlushTest.kt @@ -49,7 +49,13 @@ class DetectStreamToFlushTest { ) val detect = - DetectStreamToFlush(bufferDequeue, runningFlushWorkers, AtomicBoolean(false), flusher) + DetectStreamToFlush( + bufferDequeue, + runningFlushWorkers, + AtomicBoolean(false), + flusher, + flushOnEveryMessage = false + ) Assertions.assertEquals(Optional.empty(), detect.getNextStreamToFlush(0)) } @@ -66,7 +72,13 @@ class DetectStreamToFlushTest { RunningFlushWorkers::class.java, ) val detect = - DetectStreamToFlush(bufferDequeue, runningFlushWorkers, AtomicBoolean(false), flusher) + DetectStreamToFlush( + bufferDequeue, + runningFlushWorkers, + AtomicBoolean(false), + flusher, + flushOnEveryMessage = false + ) // if above threshold, triggers Assertions.assertEquals(Optional.of(DESC1), detect.getNextStreamToFlush(0)) // if below threshold, no trigger @@ -94,10 +106,41 @@ class DetectStreamToFlushTest { ), ) val detect = - DetectStreamToFlush(bufferDequeue, runningFlushWorkers, AtomicBoolean(false), flusher) + DetectStreamToFlush( + bufferDequeue, + runningFlushWorkers, + AtomicBoolean(false), + flusher, + flushOnEveryMessage = false + ) Assertions.assertEquals(Optional.empty(), detect.getNextStreamToFlush(0)) } + @Test + internal fun testFileTransfer() { + val bufferDequeue = + Mockito.mock( + BufferDequeue::class.java, + ) + Mockito.`when`(bufferDequeue.bufferedStreams).thenReturn(setOf(DESC1)) + Mockito.`when`(bufferDequeue.getQueueSizeBytes(DESC1)).thenReturn(Optional.of(0L)) + val runningFlushWorkers = + Mockito.mock( + RunningFlushWorkers::class.java, + ) + + val detect = + DetectStreamToFlush( + bufferDequeue, + runningFlushWorkers, + AtomicBoolean(false), + flusher, + flushOnEveryMessage = true + ) + Assertions.assertEquals(0, detect.computeQueueThreshold()) + Assertions.assertEquals(Optional.of(DESC1), detect.getNextStreamToFlush(0)) + } + @Test internal fun testGetNextPicksUpOnTimeTrigger() { val bufferDequeue = @@ -127,6 +170,7 @@ class DetectStreamToFlushTest { AtomicBoolean(false), flusher, mockedNowProvider, + flushOnEveryMessage = false ) // initialize flush time diff --git a/airbyte-cdk/java/airbyte-cdk/db-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/destination/BaseDestinationAcceptanceTest.kt b/airbyte-cdk/java/airbyte-cdk/db-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/destination/BaseDestinationAcceptanceTest.kt index 6fdd1d4836bf..5be46433d1a8 100644 --- a/airbyte-cdk/java/airbyte-cdk/db-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/destination/BaseDestinationAcceptanceTest.kt +++ b/airbyte-cdk/java/airbyte-cdk/db-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/destination/BaseDestinationAcceptanceTest.kt @@ -14,6 +14,7 @@ import io.airbyte.configoss.WorkerDestinationConfig import io.airbyte.protocol.models.v0.AirbyteMessage import io.airbyte.protocol.models.v0.AirbyteStateStats import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog +import io.airbyte.workers.exception.TestHarnessException import io.airbyte.workers.helper.ConnectorConfigUpdater import io.airbyte.workers.internal.AirbyteDestination import io.airbyte.workers.internal.DefaultAirbyteDestination @@ -215,7 +216,11 @@ abstract class BaseDestinationAcceptanceTest( } } - destination.close() + try { + destination.close() + } catch (e: TestHarnessException) { + throw TestHarnessException(e.message, e, destinationOutput) + } return destinationOutput } @@ -258,6 +263,7 @@ abstract class BaseDestinationAcceptanceTest( workspaceRoot, workspaceRoot.toString(), localRoot.toString(), + fileTransferMountSource, "host", getConnectorEnv() ) diff --git a/airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/source/AbstractSourceConnectorTest.kt b/airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/source/AbstractSourceConnectorTest.kt index 4761398a496c..a71aca115d2e 100644 --- a/airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/source/AbstractSourceConnectorTest.kt +++ b/airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/source/AbstractSourceConnectorTest.kt @@ -117,6 +117,7 @@ abstract class AbstractSourceConnectorTest { workspaceRoot, workspaceRoot.toString(), localRoot.toString(), + fileTransferMountSource = null, "host", envMap ) diff --git a/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/EnvVariableFeatureFlags.kt b/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/EnvVariableFeatureFlags.kt index 5106ad19f598..ee70fe2c54d1 100644 --- a/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/EnvVariableFeatureFlags.kt +++ b/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/EnvVariableFeatureFlags.kt @@ -4,6 +4,7 @@ package io.airbyte.commons.features import io.github.oshai.kotlinlogging.KotlinLogging +import java.nio.file.Path import java.util.function.Function private val log = KotlinLogging.logger {} @@ -46,6 +47,16 @@ class EnvVariableFeatureFlags : FeatureFlags { return getEnvOrDefault(DEPLOYMENT_MODE, "") { arg: String -> arg } } + override fun airbyteStagingDirectory(): Path? { + return getEnvOrDefault(AIRBYTE_STAGING_DIRECTORY_PROPERTY_NAME, null) { arg: String -> + Path.of(arg) + } + } + + override fun useFileTransfer(): Boolean { + return getEnvOrDefault(USE_FILE_TRANSFER, false) { it.toBoolean() } + } + // TODO: refactor in order to use the same method than the ones in EnvConfigs.java fun getEnvOrDefault(key: String?, defaultValue: T, parser: Function): T { val value = System.getenv(key) @@ -73,5 +84,8 @@ class EnvVariableFeatureFlags : FeatureFlags { const val STRICT_COMPARISON_NORMALIZATION_TAG: String = "STRICT_COMPARISON_NORMALIZATION_TAG" const val DEPLOYMENT_MODE: String = "DEPLOYMENT_MODE" + val DEFAULT_AIRBYTE_STAGING_DIRECTORY: Path = Path.of("/staging/files") + const val AIRBYTE_STAGING_DIRECTORY_PROPERTY_NAME: String = "AIRBYTE_STAGING_DIRECTORY" + const val USE_FILE_TRANSFER = "USE_FILE_TRANSFER" } } diff --git a/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/FeatureFlags.kt b/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/FeatureFlags.kt index a8626b46ec64..e05e9608d8f4 100644 --- a/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/FeatureFlags.kt +++ b/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/FeatureFlags.kt @@ -3,6 +3,8 @@ */ package io.airbyte.commons.features +import java.nio.file.Path + /** * Interface that describe which features are activated in airbyte. Currently, the only * implementation relies on env. Ideally it should be on some DB. @@ -51,4 +53,8 @@ interface FeatureFlags { * @return empty string for the default deployment mode, "CLOUD" for cloud deployment mode. */ fun deploymentMode(): String? + + fun airbyteStagingDirectory(): Path? + + fun useFileTransfer(): Boolean } diff --git a/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/FeatureFlagsWrapper.kt b/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/FeatureFlagsWrapper.kt index 056c6730332c..abb16dbe463e 100644 --- a/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/FeatureFlagsWrapper.kt +++ b/airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/FeatureFlagsWrapper.kt @@ -3,6 +3,8 @@ */ package io.airbyte.commons.features +import java.nio.file.Path + open class FeatureFlagsWrapper(private val wrapped: FeatureFlags) : FeatureFlags { override fun autoDetectSchema(): Boolean { return wrapped.autoDetectSchema() @@ -36,6 +38,14 @@ open class FeatureFlagsWrapper(private val wrapped: FeatureFlags) : FeatureFlags return wrapped.deploymentMode() } + override fun airbyteStagingDirectory(): Path? { + return wrapped.airbyteStagingDirectory() + } + + override fun useFileTransfer(): Boolean { + return wrapped.useFileTransfer() + } + companion object { /** Overrides the [FeatureFlags.deploymentMode] method in the feature flags. */ @JvmStatic diff --git a/airbyte-cdk/java/airbyte-cdk/dependencies/src/testFixtures/kotlin/io/airbyte/workers/exception/TestHarnessException.kt b/airbyte-cdk/java/airbyte-cdk/dependencies/src/testFixtures/kotlin/io/airbyte/workers/exception/TestHarnessException.kt index 15adcfdd2a06..b7f1edd1c0a6 100644 --- a/airbyte-cdk/java/airbyte-cdk/dependencies/src/testFixtures/kotlin/io/airbyte/workers/exception/TestHarnessException.kt +++ b/airbyte-cdk/java/airbyte-cdk/dependencies/src/testFixtures/kotlin/io/airbyte/workers/exception/TestHarnessException.kt @@ -3,8 +3,23 @@ */ package io.airbyte.workers.exception +import io.airbyte.protocol.models.v0.AirbyteMessage + class TestHarnessException : Exception { - constructor(message: String?) : super(message) + val outputMessages: List? + constructor(message: String?) : super(message) { + outputMessages = null + } + + constructor(message: String?, cause: Throwable?) : super(message, cause) { + outputMessages = null + } - constructor(message: String?, cause: Throwable?) : super(message, cause) + constructor( + message: String?, + cause: Throwable?, + outputMessages: List + ) : super(message, cause) { + this.outputMessages = outputMessages + } } diff --git a/airbyte-cdk/java/airbyte-cdk/dependencies/src/testFixtures/kotlin/io/airbyte/workers/process/DockerProcessFactory.kt b/airbyte-cdk/java/airbyte-cdk/dependencies/src/testFixtures/kotlin/io/airbyte/workers/process/DockerProcessFactory.kt index e58319655d9d..03d7a9b8c138 100644 --- a/airbyte-cdk/java/airbyte-cdk/dependencies/src/testFixtures/kotlin/io/airbyte/workers/process/DockerProcessFactory.kt +++ b/airbyte-cdk/java/airbyte-cdk/dependencies/src/testFixtures/kotlin/io/airbyte/workers/process/DockerProcessFactory.kt @@ -7,6 +7,7 @@ import com.google.common.annotations.VisibleForTesting import com.google.common.base.Joiner import com.google.common.base.Strings import com.google.common.collect.Lists +import io.airbyte.commons.features.EnvVariableFeatureFlags import io.airbyte.commons.io.IOs import io.airbyte.commons.io.LineGobbler import io.airbyte.commons.map.MoreMaps @@ -30,6 +31,7 @@ class DockerProcessFactory( private val workspaceRoot: Path, private val workspaceMountSource: String?, private val localMountSource: String?, + private val fileTransferMountSource: Path?, private val networkName: String?, private val envMap: Map ) : ProcessFactory { @@ -125,6 +127,20 @@ class DockerProcessFactory( cmd.add(String.format("%s:%s", localMountSource, LOCAL_MOUNT_DESTINATION)) } + if (fileTransferMountSource != null) { + cmd.add("-v") + cmd.add( + "$fileTransferMountSource:${EnvVariableFeatureFlags.DEFAULT_AIRBYTE_STAGING_DIRECTORY}" + ) + cmd.add("-e") + cmd.add( + "${EnvVariableFeatureFlags.AIRBYTE_STAGING_DIRECTORY_PROPERTY_NAME}=${EnvVariableFeatureFlags.DEFAULT_AIRBYTE_STAGING_DIRECTORY}" + ) + + cmd.add("-e") + cmd.add("${EnvVariableFeatureFlags.USE_FILE_TRANSFER}=true") + } + val allEnvMap = MoreMaps.merge(jobMetadata, envMap, additionalEnvironmentVariables) for ((key, value) in allEnvMap) { cmd.add("-e") diff --git a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/BaseS3Destination.kt b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/BaseS3Destination.kt index 84496b9951ec..cf4bac36654d 100644 --- a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/BaseS3Destination.kt +++ b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/BaseS3Destination.kt @@ -79,7 +79,8 @@ protected constructor( s3Config, catalog, memoryRatio, - nThreads + nThreads, + featureFlags ) } diff --git a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3ConsumerFactory.kt b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3ConsumerFactory.kt index fdf25cf0c6f7..55e601e55673 100644 --- a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3ConsumerFactory.kt +++ b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3ConsumerFactory.kt @@ -10,6 +10,8 @@ import io.airbyte.cdk.integrations.base.SerializedAirbyteMessageConsumer import io.airbyte.cdk.integrations.destination.StreamSyncSummary import io.airbyte.cdk.integrations.destination.async.AsyncStreamConsumer import io.airbyte.cdk.integrations.destination.async.buffers.BufferManager +import io.airbyte.cdk.integrations.destination.async.function.DestinationFlushFunction +import io.airbyte.cdk.integrations.destination.async.model.PartialAirbyteMessage import io.airbyte.cdk.integrations.destination.buffered_stream_consumer.BufferedStreamConsumer import io.airbyte.cdk.integrations.destination.buffered_stream_consumer.OnCloseFunction import io.airbyte.cdk.integrations.destination.buffered_stream_consumer.OnStartFunction @@ -21,12 +23,17 @@ import io.airbyte.cdk.integrations.destination.record_buffer.SerializableBuffer import io.airbyte.cdk.integrations.destination.record_buffer.SerializedBufferingStrategy import io.airbyte.cdk.integrations.destination.s3.SerializedBufferFactory.Companion.getCreateFunction import io.airbyte.commons.exceptions.ConfigErrorException +import io.airbyte.commons.features.FeatureFlags import io.airbyte.commons.json.Jsons import io.airbyte.protocol.models.v0.* import io.github.oshai.kotlinlogging.KotlinLogging +import java.io.File +import java.text.DecimalFormat import java.util.concurrent.Executors import java.util.function.Consumer import java.util.function.Function +import java.util.stream.Stream +import org.apache.commons.io.FileUtils import org.joda.time.DateTime import org.joda.time.DateTimeZone @@ -188,7 +195,8 @@ class S3ConsumerFactory { s3Config: S3DestinationConfig, catalog: ConfiguredAirbyteCatalog, memoryRatio: Double, - nThreads: Int + nThreads: Int, + featureFlags: FeatureFlags ): SerializedAirbyteMessageConsumer { val writeConfigs = createWriteConfigs(storageOps, s3Config, catalog) // Buffer creation function: yields a file buffer that converts @@ -203,15 +211,6 @@ class S3ConsumerFactory { descriptor to Pair(stream.generationId, stream.syncId) } - val createFunction = - getCreateFunction( - s3Config, - Function { fileExtension: String -> - FileBuffer(fileExtension) - }, - useV2FieldNames = true - ) - // Parquet has significantly higher overhead. This small adjustment // results in a ~5x performance improvement. val adjustedMemoryRatio = @@ -221,25 +220,52 @@ class S3ConsumerFactory { memoryRatio } + // This needs to be called before the creation of the flush function because it updates + // writeConfigs! + val onStartFunction = onStartFunction(storageOps, writeConfigs) + + val streamDescriptorToWriteConfig = + writeConfigs.associateBy { + StreamDescriptor().withNamespace(it.namespace).withName(it.streamName) + } + val flushFunction = + if (featureFlags.useFileTransfer()) { + FileTransferDestinationFlushFunction( + streamDescriptorToWriteConfig, + storageOps, + featureFlags + ) + } else { + val createFunction = + getCreateFunction( + s3Config, + Function { fileExtension: String -> + FileBuffer(fileExtension) + }, + useV2FieldNames = true + ) + S3DestinationFlushFunction( + // Ensure the file buffer is always larger than the memory buffer, + // as the file buffer will be flushed at the end of the memory flush. + optimalBatchSizeBytes = + (FileBuffer.MAX_PER_STREAM_BUFFER_SIZE_BYTES * 0.9).toLong(), + { + // Yield a new BufferingStrategy every time we flush (for thread-safety). + SerializedBufferingStrategy( + createFunction, + catalog, + flushBufferFunction(storageOps, writeConfigs, catalog) + ) + }, + generationAndSyncIds + ) + } + return AsyncStreamConsumer( outputRecordCollector, - onStartFunction(storageOps, writeConfigs), + onStartFunction, onCloseFunction(storageOps, writeConfigs), - S3DestinationFlushFunction( - // Ensure the file buffer is always larger than the memory buffer, - // as the file buffer will be flushed at the end of the memory flush. - optimalBatchSizeBytes = - (FileBuffer.MAX_PER_STREAM_BUFFER_SIZE_BYTES * 0.9).toLong(), - { - // Yield a new BufferingStrategy every time we flush (for thread-safety). - SerializedBufferingStrategy( - createFunction, - catalog, - flushBufferFunction(storageOps, writeConfigs, catalog) - ) - }, - generationAndSyncIds - ), + flushFunction, catalog, // S3 has no concept of default namespace // In the "namespace from destination case", the namespace @@ -248,10 +274,57 @@ class S3ConsumerFactory { defaultNamespace = null, maxMemory = (Runtime.getRuntime().maxMemory() * adjustedMemoryRatio).toLong() ), - workerPool = Executors.newFixedThreadPool(nThreads) + workerPool = Executors.newFixedThreadPool(nThreads), + flushOnEveryMessage = featureFlags.useFileTransfer() ) } + private class FileTransferDestinationFlushFunction( + val streamDescriptorToWriteConfig: Map, + val storageOps: S3StorageOperations, + val featureFlags: FeatureFlags + ) : DestinationFlushFunction { + override fun flush( + streamDescriptor: StreamDescriptor, + stream: Stream + ) { + val records = stream.toList() + val writeConfig = streamDescriptorToWriteConfig.getValue(streamDescriptor) + if (records.isEmpty()) { + return + } + if (records.size > 1) { + throw RuntimeException( + "the destinationFlushFunction for RAW_FILES should be called with only 1 record" + ) + } + val file = records[0].record!!.file + if (file == null) { + throw RuntimeException(MISSING_FILE_FIELD_IN_FILE_TRANSFER_ERROR_MESSAGE) + } + val absolutePath = file.fileUrl!! + val relativePath = file.fileRelativePath!! + val fullObjectKey = writeConfig.fullOutputPath + relativePath + val dataFile = File(absolutePath) + val fileSize = dataFile.length() + val startTimeMs = System.currentTimeMillis() + storageOps.loadDataIntoBucket( + fullObjectKey = fullObjectKey, + fileName = dataFile.name, + fileContent = dataFile.inputStream(), + generationId = writeConfig.generationId + ) + val elapsedTimeSeconds = (System.currentTimeMillis() - startTimeMs) / 1_000.0 + val speedMBps = (fileSize / (1_024 * 1_024)) / elapsedTimeSeconds + LOGGER.info { + "wrote ${FileUtils.byteCountToDisplaySize(fileSize)} file in $elapsedTimeSeconds s, for a speed of ${decimalFormat.format(speedMBps)} MBps" + } + dataFile.delete() + } + + override val optimalBatchSizeBytes: Long = 1L + } + private fun isAppendSync(writeConfig: WriteConfig): Boolean { // This is an additional safety check, that this really is OVERWRITE // mode, this avoids bad things happening like deleting all objects @@ -323,8 +396,10 @@ class S3ConsumerFactory { } companion object { - + val decimalFormat = DecimalFormat("#.###") private val SYNC_DATETIME: DateTime = DateTime.now(DateTimeZone.UTC) + val MISSING_FILE_FIELD_IN_FILE_TRANSFER_ERROR_MESSAGE = + "the RECORD message doesn't have a file field in file transfer mode" private fun createWriteConfigs( storageOperations: BlobStorageOperations, diff --git a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3DestinationFlushFunction.kt b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3DestinationFlushFunction.kt index cb89081ddd0b..de15e206baac 100644 --- a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3DestinationFlushFunction.kt +++ b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3DestinationFlushFunction.kt @@ -27,13 +27,16 @@ class S3DestinationFlushFunction( strategyProvider().use { strategy -> for (partialMessage in stream) { val partialRecord = partialMessage.record!! - val data = + if (partialRecord.file != null) { + throw RuntimeException(FILE_RECORD_ERROR_MESSAGE) + } /** * This should always be null, but if something changes upstream to trigger a clone * of the record, then `null` becomes `JsonNull` and `data == null` goes from `true` * to `false` */ - if (partialRecord.data == null || partialRecord.data!!.isNull) { + val data = + if (partialRecord.data == null || partialRecord.data!!.isNull) { Jsons.deserialize(partialMessage.serialized) } else { partialRecord.data @@ -53,4 +56,9 @@ class S3DestinationFlushFunction( strategy.flushSingleStream(nameAndNamespace) } } + + companion object { + val FILE_RECORD_ERROR_MESSAGE = + "received a message of RECORD type with a populated `file` attribute. This should only happen in file transfer mode" + } } diff --git a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3StorageOperations.kt b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3StorageOperations.kt index 894e53789973..85a8d546a1f8 100644 --- a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3StorageOperations.kt +++ b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/s3/S3StorageOperations.kt @@ -22,8 +22,7 @@ import io.airbyte.cdk.integrations.destination.s3.util.StreamTransferManagerFact import io.airbyte.cdk.integrations.util.ConnectorExceptionUtil import io.airbyte.commons.exceptions.ConfigErrorException import io.github.oshai.kotlinlogging.KotlinLogging -import java.io.IOException -import java.io.OutputStream +import java.io.* import java.util.* import java.util.concurrent.ConcurrentHashMap import java.util.concurrent.ConcurrentMap @@ -194,15 +193,32 @@ open class S3StorageOperations( } while (objectNameByPrefix.getValue(objectPath).contains(fullObjectKey)) return fullObjectKey } + @Throws(IOException::class) private fun loadDataIntoBucket( objectPath: String, recordsData: SerializableBuffer, generationId: Long + ): String { + val fullObjectKey: String = getFileName(objectPath, recordsData) + return loadDataIntoBucket( + fullObjectKey, + recordsData.filename, + recordsData.inputStream!!, + generationId + ) + } + + @Throws(IOException::class) + public fun loadDataIntoBucket( + fullObjectKey: String, + fileName: String, + fileContent: InputStream, + generationId: Long ): String { val partSize: Long = DEFAULT_PART_SIZE.toLong() val bucket: String? = s3Config.bucketName - val fullObjectKey: String = getFileName(objectPath, recordsData) + val metadata: MutableMap = HashMap() for (blobDecorator: BlobDecorator in blobDecorators) { blobDecorator.updateMetadata(metadata, getMetadataMapping()) @@ -232,13 +248,13 @@ open class S3StorageOperations( try { rawOutputStream.use { outputStream -> - recordsData.inputStream!!.use { dataStream -> + fileContent.use { dataStream -> dataStream.transferTo(outputStream) succeeded = true } } } catch (e: Exception) { - logger.error(e) { "Failed to load data into storage $objectPath" } + logger.error(e) { "Failed to load data into storage $fullObjectKey" } throw RuntimeException(e) } finally { if (!succeeded) { @@ -253,7 +269,7 @@ open class S3StorageOperations( } val newFilename: String = getFilename(fullObjectKey) logger.info { - "Uploaded buffer file to storage: ${recordsData.filename} -> $fullObjectKey (filename: $newFilename)" + "Uploaded buffer file to storage: $fileName -> $fullObjectKey (filename: $newFilename)" } return newFilename } @@ -611,7 +627,7 @@ open class S3StorageOperations( private const val FORMAT_VARIABLE_EPOCH: String = "\${EPOCH}" private const val FORMAT_VARIABLE_UUID: String = "\${UUID}" private const val GZ_FILE_EXTENSION: String = "gz" - private const val GENERATION_ID_USER_META_KEY = "ab-generation-id" + const val GENERATION_ID_USER_META_KEY = "ab-generation-id" @VisibleForTesting @JvmStatic fun getFilename(fullPath: String): String { diff --git a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/destination/s3/S3BaseDestinationAcceptanceTest.kt b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/destination/s3/S3BaseDestinationAcceptanceTest.kt new file mode 100644 index 000000000000..845b2bc9e637 --- /dev/null +++ b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/destination/s3/S3BaseDestinationAcceptanceTest.kt @@ -0,0 +1,127 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.integrations.destination.s3 + +import com.amazonaws.services.s3.AmazonS3 +import com.amazonaws.services.s3.model.S3ObjectSummary +import com.fasterxml.jackson.databind.JsonNode +import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.integrations.destination.NamingConventionTransformer +import io.airbyte.cdk.integrations.destination.s3.util.S3NameTransformer +import io.airbyte.cdk.integrations.standardtest.destination.BaseDestinationAcceptanceTest +import io.airbyte.cdk.integrations.standardtest.destination.DestinationAcceptanceTest +import io.airbyte.commons.io.IOs +import io.airbyte.commons.json.Jsons +import io.github.oshai.kotlinlogging.KotlinLogging +import java.nio.file.Path +import java.util.Comparator +import java.util.HashSet +import org.apache.commons.lang3.RandomStringUtils +import org.joda.time.DateTime +import org.joda.time.DateTimeZone +import org.mockito.Mockito + +private val LOGGER = KotlinLogging.logger {} + +abstract class S3BaseDestinationAcceptanceTest() : + BaseDestinationAcceptanceTest( + verifyIndividualStateAndCounts = true, + ) { + protected val secretFilePath: String = "secrets/config.json" + override val imageName: String + get() = "airbyte/destination-s3:dev" + protected var configJson: JsonNode? = null + + override fun getConfig(): JsonNode = configJson!! + protected open val baseConfigJson: JsonNode + get() = Jsons.deserialize(IOs.readFile(Path.of(secretFilePath))) + protected abstract val formatConfig: JsonNode? + get + protected var s3DestinationConfig: S3DestinationConfig = Mockito.mock() + protected var s3Client: AmazonS3? = null + protected var s3nameTransformer: NamingConventionTransformer = Mockito.mock() + protected var s3StorageOperations: S3StorageOperations? = null + var testBucketPath: String? = null + + fun storageProvider(): StorageProvider { + return StorageProvider.AWS_S3 + } + + /** + * This method does the following: + * * Construct the S3 destination config. + * * Construct the S3 client. + */ + override fun setup( + testEnv: DestinationAcceptanceTest.TestDestinationEnv, + TEST_SCHEMAS: HashSet + ) { + val baseConfigJson = baseConfigJson + // Set a random s3 bucket path for each integration test + val configJson = Jsons.clone(baseConfigJson) + testBucketPath = + String.format( + "test_%s", + RandomStringUtils.insecure().nextAlphanumeric(5), + ) + (configJson as ObjectNode) + .put("s3_bucket_path", testBucketPath) + .set("format", formatConfig) + this.configJson = configJson + this.s3DestinationConfig = + S3DestinationConfig.getS3DestinationConfig( + configJson, + storageProvider(), + getConnectorEnv() + ) + LOGGER.info { + "${"Test full path: {}/{}"} ${s3DestinationConfig.bucketName} ${s3DestinationConfig.bucketPath}" + } + + this.s3Client = s3DestinationConfig.getS3Client() + this.s3nameTransformer = S3NameTransformer() + this.s3StorageOperations = + S3StorageOperations(s3nameTransformer, s3Client!!, s3DestinationConfig) + } + + fun getDefaultSchema(): String { + if (configJson!!.has("s3_bucket_path")) { + return configJson!!["s3_bucket_path"].asText() + } + throw RuntimeException() + } + + /** Helper method to retrieve all synced objects inside the configured bucket path. */ + protected fun getAllSyncedObjects( + streamName: String, + ): List { + val namespaceStr = s3nameTransformer.getNamespace(getDefaultSchema()) + val streamNameStr = s3nameTransformer.getIdentifier(streamName) + val outputPrefix = + s3StorageOperations!!.getBucketObjectPath( + namespaceStr, + streamNameStr, + DateTime.now(DateTimeZone.UTC), + s3DestinationConfig.pathFormat!!, + ) + // the child folder contains a non-deterministic epoch timestamp, so use the parent folder + val parentFolder = outputPrefix.substring(0, outputPrefix.lastIndexOf("/") + 1) + val objectSummaries = + s3Client!! + .listObjects(s3DestinationConfig.bucketName, parentFolder) + .objectSummaries + .filter { o: S3ObjectSummary -> o.key.contains("$streamNameStr/") } + .sortedWith(Comparator.comparingLong { o: S3ObjectSummary -> o.lastModified.time }) + + LOGGER.info { + "${"All objects: {}"} ${ + objectSummaries.map { o: S3ObjectSummary -> + String.format("%s/%s", o.bucketName, o.key) + } + }" + } + return objectSummaries + } +} diff --git a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/destination/s3/S3DestinationAcceptanceTest.kt b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/destination/s3/S3DestinationAcceptanceTest.kt index 8095464a4d62..ff99342ce11c 100644 --- a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/destination/s3/S3DestinationAcceptanceTest.kt +++ b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/destination/s3/S3DestinationAcceptanceTest.kt @@ -12,11 +12,13 @@ import com.fasterxml.jackson.databind.node.JsonNodeFactory import com.fasterxml.jackson.databind.node.ObjectNode import com.google.common.collect.ImmutableMap import io.airbyte.cdk.integrations.destination.NamingConventionTransformer +import io.airbyte.cdk.integrations.destination.async.model.AirbyteRecordMessageFile import io.airbyte.cdk.integrations.destination.s3.util.S3NameTransformer import io.airbyte.cdk.integrations.standardtest.destination.DestinationAcceptanceTest import io.airbyte.cdk.integrations.standardtest.destination.argproviders.DataArgumentsProvider import io.airbyte.cdk.integrations.standardtest.destination.comparator.AdvancedTestDataComparator import io.airbyte.cdk.integrations.standardtest.destination.comparator.TestDataComparator +import io.airbyte.commons.features.EnvVariableFeatureFlags import io.airbyte.commons.io.IOs import io.airbyte.commons.jackson.MoreMappers import io.airbyte.commons.json.Jsons @@ -27,9 +29,11 @@ import io.github.oshai.kotlinlogging.KotlinLogging import java.nio.file.Path import java.time.Instant import java.util.* +import kotlin.test.assertContains import org.apache.commons.lang3.RandomStringUtils import org.joda.time.DateTime import org.joda.time.DateTimeZone +import org.junit.Assert.fail import org.junit.jupiter.api.Assumptions.* import org.junit.jupiter.api.Test import org.junit.jupiter.api.assertThrows @@ -734,6 +738,79 @@ protected constructor( ) } + @Test + open fun testFakeFileTransfer() { + val streamSchema = JsonNodeFactory.instance.objectNode() + streamSchema.set("properties", JsonNodeFactory.instance.objectNode()) + val streamName = "str" + RandomStringUtils.randomAlphanumeric(5) + val catalog = + ConfiguredAirbyteCatalog() + .withStreams( + java.util.List.of( + ConfiguredAirbyteStream() + .withSyncMode(SyncMode.INCREMENTAL) + .withDestinationSyncMode(DestinationSyncMode.APPEND_DEDUP) + .withGenerationId(0) + .withMinimumGenerationId(0) + .withSyncId(0) + .withStream( + AirbyteStream().withName(streamName).withJsonSchema(streamSchema) + ), + ), + ) + + val recordMessage = + AirbyteMessage() + .withType(AirbyteMessage.Type.RECORD) + .withRecord( + AirbyteRecordMessage() + .withStream(streamName) + .withEmittedAt(Instant.now().toEpochMilli()) + .withData(ObjectMapper().readTree("{}")) + .withAdditionalProperty( + "file", + AirbyteRecordMessageFile( + fileUrl = + "${EnvVariableFeatureFlags.DEFAULT_AIRBYTE_STAGING_DIRECTORY}/fakeFile", + bytes = 182776, + fileRelativePath = "fakeFile", + modified = 123456L, + sourceFileUrl = + "//sftp-testing-for-file-transfer/sftp-folder/simpsons_locations.csv", + ) + ) + ) + val streamCompleteMessage = + AirbyteMessage() + .withType(AirbyteMessage.Type.TRACE) + .withTrace( + AirbyteTraceMessage() + .withStreamStatus( + AirbyteStreamStatusTraceMessage() + .withStatus( + AirbyteStreamStatusTraceMessage.AirbyteStreamStatus.COMPLETE + ) + .withStreamDescriptor(StreamDescriptor().withName(streamName)) + ) + ) + try { + val destinationOutput = + runSync( + config = getConfig(), + messages = listOf(recordMessage, streamCompleteMessage), + catalog = catalog, + runNormalization = false, + imageName = imageName, + ) + fail("sync should have failed. Instead got output $destinationOutput") + } catch (e: TestHarnessException) { + assertContains( + e.outputMessages!![0].trace.error.internalMessage, + S3DestinationFlushFunction.FILE_RECORD_ERROR_MESSAGE + ) + } + } + companion object { @JvmStatic protected val MAPPER: ObjectMapper = MoreMappers.initMapper() diff --git a/airbyte-cdk/java/airbyte-cdk/typing-deduping/src/testFixtures/kotlin/io/airbyte/integrations/base/destination/typing_deduping/BaseTypingDedupingTest.kt b/airbyte-cdk/java/airbyte-cdk/typing-deduping/src/testFixtures/kotlin/io/airbyte/integrations/base/destination/typing_deduping/BaseTypingDedupingTest.kt index 1c7c08350d01..dcfdda420636 100644 --- a/airbyte-cdk/java/airbyte-cdk/typing-deduping/src/testFixtures/kotlin/io/airbyte/integrations/base/destination/typing_deduping/BaseTypingDedupingTest.kt +++ b/airbyte-cdk/java/airbyte-cdk/typing-deduping/src/testFixtures/kotlin/io/airbyte/integrations/base/destination/typing_deduping/BaseTypingDedupingTest.kt @@ -1525,6 +1525,7 @@ abstract class BaseTypingDedupingTest { workspaceRoot, workspaceRoot.toString(), localRoot.toString(), + fileTransferMountSource = null, "host", emptyMap() ) diff --git a/airbyte-integrations/connectors/destination-s3/build.gradle b/airbyte-integrations/connectors/destination-s3/build.gradle index b5faddcddae5..5ca08e98fba7 100644 --- a/airbyte-integrations/connectors/destination-s3/build.gradle +++ b/airbyte-integrations/connectors/destination-s3/build.gradle @@ -4,9 +4,9 @@ plugins { } airbyteJavaConnector { - cdkVersionRequired = '0.46.1' + cdkVersionRequired = '0.48.1' features = ['db-destinations', 's3-destinations'] - useLocalCdk = true + useLocalCdk = false } airbyteJavaConnector.addCdkDependencies() diff --git a/airbyte-integrations/connectors/destination-s3/metadata.yaml b/airbyte-integrations/connectors/destination-s3/metadata.yaml index 727d7c75c210..5213f45e5c60 100644 --- a/airbyte-integrations/connectors/destination-s3/metadata.yaml +++ b/airbyte-integrations/connectors/destination-s3/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: file connectorType: destination definitionId: 4816b78f-1489-44c1-9060-4b19d5fa9362 - dockerImageTag: 1.3.0 + dockerImageTag: 1.4.0 dockerRepository: airbyte/destination-s3 githubIssueLabel: destination-s3 icon: s3.svg @@ -34,6 +34,7 @@ data: ql: 300 supportLevel: certified supportsRefreshes: true + supportsFileTransfer: true connectorTestSuitesOptions: - suite: unitTests - suite: integrationTests diff --git a/airbyte-integrations/connectors/destination-s3/src/test-integration/kotlin/io/airbyte/integrations/destination/s3/S3FileTransferDestinationTest.kt b/airbyte-integrations/connectors/destination-s3/src/test-integration/kotlin/io/airbyte/integrations/destination/s3/S3FileTransferDestinationTest.kt new file mode 100644 index 000000000000..5976164f32a1 --- /dev/null +++ b/airbyte-integrations/connectors/destination-s3/src/test-integration/kotlin/io/airbyte/integrations/destination/s3/S3FileTransferDestinationTest.kt @@ -0,0 +1,211 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.integrations.destination.s3 + +import com.fasterxml.jackson.databind.JsonNode +import com.fasterxml.jackson.databind.ObjectMapper +import com.fasterxml.jackson.databind.node.JsonNodeFactory +import com.fasterxml.jackson.databind.node.ObjectNode +import com.google.common.collect.ImmutableMap +import io.airbyte.cdk.integrations.destination.async.model.AirbyteRecordMessageFile +import io.airbyte.cdk.integrations.destination.s3.FileUploadFormat +import io.airbyte.cdk.integrations.destination.s3.S3BaseDestinationAcceptanceTest +import io.airbyte.cdk.integrations.destination.s3.S3ConsumerFactory +import io.airbyte.cdk.integrations.destination.s3.S3StorageOperations +import io.airbyte.cdk.integrations.destination.s3.constant.S3Constants +import io.airbyte.cdk.integrations.destination.s3.util.Flattening +import io.airbyte.commons.features.EnvVariableFeatureFlags +import io.airbyte.commons.json.Jsons +import io.airbyte.protocol.models.v0.* +import io.airbyte.workers.exception.TestHarnessException +import io.github.oshai.kotlinlogging.KotlinLogging +import java.nio.file.Path +import java.time.Instant +import kotlin.io.path.createDirectories +import kotlin.io.path.createFile +import kotlin.io.path.writeText +import kotlin.random.Random +import kotlin.test.* +import org.apache.commons.lang3.RandomStringUtils +import org.junit.jupiter.api.Test + +private val LOGGER = KotlinLogging.logger {} + +class S3FileTransferDestinationTest : S3BaseDestinationAcceptanceTest() { + override val supportsFileTransfer = true + override val formatConfig: JsonNode + get() = + Jsons.jsonNode( + java.util.Map.of( + "format_type", + FileUploadFormat.CSV, + "flattening", + Flattening.ROOT_LEVEL.value, + "compression", + Jsons.jsonNode(java.util.Map.of("compression_type", "No Compression")), + ) + ) + override val baseConfigJson: JsonNode + get() = + (super.baseConfigJson as ObjectNode).put( + S3Constants.S_3_PATH_FORMAT, + "\${NAMESPACE}/\${STREAM_NAME}/" + ) + + private fun getStreamCompleteMessage(streamName: String): AirbyteMessage { + return AirbyteMessage() + .withType(AirbyteMessage.Type.TRACE) + .withTrace( + AirbyteTraceMessage() + .withStreamStatus( + AirbyteStreamStatusTraceMessage() + .withStatus( + AirbyteStreamStatusTraceMessage.AirbyteStreamStatus.COMPLETE + ) + .withStreamDescriptor(StreamDescriptor().withName(streamName)) + ) + ) + } + + private fun createFakeFile(): Path { + val depth = Random.nextInt(10) + val dirPath = + (0..depth).joinToString("/") { + "dir" + RandomStringUtils.insecure().nextAlphanumeric(5) + } + val fileName = "fakeFile" + RandomStringUtils.insecure().nextAlphanumeric(5) + val filePath = "$dirPath/$fileName" + val fileSize = 1_024 * 1_024 + + fileTransferMountSource!!.resolve(dirPath).createDirectories() + val absoluteFilePath = + fileTransferMountSource!! + .resolve(filePath) + .createFile() + .writeText(RandomStringUtils.insecure().nextAlphanumeric(fileSize)) + return Path.of(filePath) + } + + private fun configureCatalog(streamName: String, generationId: Long): ConfiguredAirbyteCatalog { + val streamSchema = JsonNodeFactory.instance.objectNode() + streamSchema.set("properties", JsonNodeFactory.instance.objectNode()) + return ConfiguredAirbyteCatalog() + .withStreams( + java.util.List.of( + ConfiguredAirbyteStream() + .withSyncMode(SyncMode.INCREMENTAL) + .withDestinationSyncMode(DestinationSyncMode.APPEND_DEDUP) + .withGenerationId(generationId) + .withMinimumGenerationId(generationId) + .withSyncId(0) + .withStream( + AirbyteStream().withName(streamName).withJsonSchema(streamSchema) + ), + ), + ) + } + + private fun createMessageForFile(streamName: String, relativeFilePath: Path): AirbyteMessage { + val absoluteFilePath = + EnvVariableFeatureFlags.DEFAULT_AIRBYTE_STAGING_DIRECTORY.resolve(relativeFilePath) + return AirbyteMessage() + .withType(AirbyteMessage.Type.RECORD) + .withRecord( + AirbyteRecordMessage() + .withStream(streamName) + .withEmittedAt(Instant.now().toEpochMilli()) + .withData(ObjectMapper().readTree("{}")) + .withAdditionalProperty( + "file", + AirbyteRecordMessageFile( + fileUrl = absoluteFilePath.toString(), + bytes = absoluteFilePath.toFile().length(), + fileRelativePath = "$relativeFilePath", + modified = 123456L, + sourceFileUrl = "//sftp-testing-for-file-transfer/$relativeFilePath", + ) + ) + ) + } + + @Test + fun checkRecordSyncFails() { + val streamName = "str" + RandomStringUtils.insecure().nextAlphanumeric(5) + val catalog = configureCatalog(streamName, 0) + val recordBasedMessage = + AirbyteMessage() + .withType(AirbyteMessage.Type.RECORD) + .withRecord( + AirbyteRecordMessage() + .withStream(streamName) + .withEmittedAt(Instant.now().toEpochMilli()) + .withData( + Jsons.jsonNode( + ImmutableMap.builder() + .put("id", 1) + .put("currency", "USD") + .put("date", "2020-03-31T00:00:00Z") + .put("HKD", 10.1) + .put("NZD", 700.1) + .build(), + ) + ) + ) + try { + runSyncAndVerifyStateOutput( + getConfig(), + listOf(recordBasedMessage, getStreamCompleteMessage(streamName)), + catalog, + false + ) + fail("should have failed!") + } catch (e: TestHarnessException) { + assertContains( + e.outputMessages!![0].trace.error.internalMessage, + S3ConsumerFactory.MISSING_FILE_FIELD_IN_FILE_TRANSFER_ERROR_MESSAGE + ) + } + } + + @Test + fun testFakeFileTransfer() { + LOGGER.info { + "${EnvVariableFeatureFlags.DEFAULT_AIRBYTE_STAGING_DIRECTORY} is mounted from $fileTransferMountSource" + } + val streamName = "str" + RandomStringUtils.insecure().nextAlphanumeric(5) + val filePath = createFakeFile() + val file = fileTransferMountSource!!.resolve(filePath).toFile() + val fileLength = file.length() + val fileContent = file.readBytes() + val catalog = configureCatalog(streamName, 32) + val recordMessage = createMessageForFile(streamName, filePath) + + runSyncAndVerifyStateOutput( + getConfig(), + listOf(recordMessage, getStreamCompleteMessage(streamName)), + catalog, + false + ) + val allObjectsInStore = getAllSyncedObjects(streamName) + val objectInStore = allObjectsInStore[0] + val objectMetadata = + s3Client!!.getObjectMetadata(objectInStore.bucketName, objectInStore.key) + val generationId = + objectMetadata + .getUserMetaDataOf(S3StorageOperations.GENERATION_ID_USER_META_KEY) + .toLong() + assertEquals(generationId, 32L) + assertFalse(file.exists(), "file should have been deleted by the connector") + assertEquals(fileLength, objectInStore.size) + assertEquals("$testBucketPath/$streamName/${filePath.toString()}", objectInStore.key) + assertContentEquals( + fileContent, + s3Client!! + .getObject(objectInStore.bucketName, objectInStore.key) + .objectContent + .readBytes() + ) + } +} diff --git a/docs/integrations/destinations/s3.md b/docs/integrations/destinations/s3.md index fabfe3eb90e9..da0700b55fe9 100644 --- a/docs/integrations/destinations/s3.md +++ b/docs/integrations/destinations/s3.md @@ -536,7 +536,8 @@ To see connector limitations, or troubleshoot your S3 connector, see more [in ou | Version | Date | Pull Request | Subject | |:--------|:-----------|:-----------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------| -| 1.3.0 | 2024-10-30 | [46281](https://github.com/airbytehq/airbyte/pull/46281) | fix tests | +| 1.4.0 | 2024-10-23 | [46302](https://github.com/airbytehq/airbyte/pull/46302) | add support for file transfer | +| 1.3.0 | 2024-09-30 | [46281](https://github.com/airbytehq/airbyte/pull/46281) | fix tests | | 1.2.1 | 2024-09-20 | [45700](https://github.com/airbytehq/airbyte/pull/45700) | Improve resiliency to jsonschema fields | | 1.2.0 | 2024-09-18 | [45402](https://github.com/airbytehq/airbyte/pull/45402) | fix exception with columnless streams | | 1.1.0 | 2024-09-18 | [45436](https://github.com/airbytehq/airbyte/pull/45436) | upgrade all dependencies | From b868e753c8f83c020a0f76a4aaff509c3913dca6 Mon Sep 17 00:00:00 2001 From: Guen Prawiroatmodjo Date: Wed, 30 Oct 2024 14:13:55 -0700 Subject: [PATCH 493/808] Destination-MotherDuck: Fix bug in _flush_buffer, explicitly register buffer dataframe, fix bug in _execute_sql (#48006) --- .../destination_motherduck/destination.py | 10 +-- .../processors/duckdb.py | 48 ++++++++++- .../integration_tests/integration_test.py | 85 +++++++++---------- .../destination-motherduck/metadata.yaml | 2 +- .../destination-motherduck/pyproject.toml | 2 +- docs/integrations/destinations/motherduck.md | 1 + 6 files changed, 89 insertions(+), 59 deletions(-) diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py index 91afcdb15e33..879c7a05c2c9 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/destination.py @@ -272,17 +272,11 @@ def _flush_buffer( If no stream name is provided, then all streams will be flushed. """ for configured_stream in configured_catalog.streams: - if stream_name is not None and stream_name != configured_stream.stream.name: - # Skip this stream. - continue - - # Else, we're flushing this stream or all streams. - - if stream_name in buffer: + if (stream_name is None or stream_name == configured_stream.stream.name) and buffer.get(configured_stream.stream.name): processor = self._get_sql_processor( configured_catalog=configured_catalog, schema_name=schema_name, db_path=db_path, motherduck_token=motherduck_api_key ) - processor.write_stream_data_from_buffer(buffer, stream_name, configured_stream.destination_sync_mode) + processor.write_stream_data_from_buffer(buffer, configured_stream.stream.name, configured_stream.destination_sync_mode) def check(self, logger: logging.Logger, config: Mapping[str, Any]) -> AirbyteConnectionStatus: """ diff --git a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py index ff7d44c62392..f7c4cef779fa 100644 --- a/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py +++ b/airbyte-integrations/connectors/destination-motherduck/destination_motherduck/processors/duckdb.py @@ -6,7 +6,7 @@ import logging import warnings from pathlib import Path -from typing import TYPE_CHECKING, Any, Dict, List, Literal +from typing import TYPE_CHECKING, Any, Dict, List, Literal, Sequence import pyarrow as pa from airbyte_cdk import DestinationSyncMode @@ -23,6 +23,8 @@ if TYPE_CHECKING: from sqlalchemy.engine import Connection, Engine +BUFFER_TABLE_NAME = "_airbyte_temp_buffer_data" + logger = logging.getLogger(__name__) @@ -101,6 +103,46 @@ class DuckDBSqlProcessor(SqlProcessorBase): supports_merge_insert = False sql_config: DuckDBConfig + def _execute_sql(self, sql: str | TextClause | Executable) -> Sequence[Any]: + """Execute the given SQL statement.""" + if isinstance(sql, str): + sql = text(sql) + + with self.get_sql_connection() as conn: + try: + result = conn.execute(sql) + except ( + ProgrammingError, + SQLAlchemyError, + ) as ex: + msg = f"Error when executing SQL:\n{sql}\n{type(ex).__name__}{ex!s}" + raise SQLRuntimeError(msg) from None # from ex + + return result.fetchall() + + def _execute_sql_with_buffer(self, sql: str | TextClause | Executable, buffer_data: pa.Table | None) -> Sequence[Any]: + """ + Execute the given SQL statement. + + Explicitly register a buffer table to read from. + """ + if isinstance(sql, str): + sql = text(sql) + + with self.get_sql_connection() as conn: + try: + # This table will now be queryable from DuckDB under the name BUFFER_TABLE_NAME + conn.execute(text("register(:name, :df)"), {"name": BUFFER_TABLE_NAME, "df": buffer_data}) + result = conn.execute(sql) + except ( + ProgrammingError, + SQLAlchemyError, + ) as ex: + msg = f"Error when executing SQL:\n{sql}\n{type(ex).__name__}{ex!s}" + raise SQLRuntimeError(msg) from None # from ex + + return result.fetchall() + @overrides def _setup(self) -> None: """Create the database parent folder if it doesn't yet exist.""" @@ -185,9 +227,9 @@ def _write_from_pa_table(self, table_name: str, stream_name: str, pa_table: pa.T column_names = ", ".join(map(self._quote_identifier, pa_table.column_names)) sql = f""" -- Write from PyArrow table - INSERT INTO {full_table_name} ({column_names}) SELECT {column_names} FROM pa_table + INSERT INTO {full_table_name} ({column_names}) SELECT {column_names} FROM {BUFFER_TABLE_NAME} """ - self._execute_sql(sql) + self._execute_sql_with_buffer(sql, buffer_data=pa_table) def _write_temp_table_to_target_table( self, diff --git a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py index 9a2471e92509..8be066129616 100644 --- a/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py +++ b/airbyte-integrations/connectors/destination-motherduck/integration_tests/integration_test.py @@ -303,6 +303,30 @@ def _state(data: Dict[str, Any]) -> AirbyteMessage: return AirbyteMessage(type=Type.STATE, state=AirbyteStateMessage(data=data)) +@pytest.fixture() +def sql_processor( + configured_catalogue, + test_schema_name, + config: Dict[str, str] + ): + destination = DestinationMotherDuck() + path = config.get("destination_path", "md:") + if CONFIG_MOTHERDUCK_API_KEY in config: + processor = destination._get_sql_processor( + configured_catalog=configured_catalogue, + schema_name=test_schema_name, + db_path=path, + motherduck_token=config[CONFIG_MOTHERDUCK_API_KEY] + ) + else: + processor = destination._get_sql_processor( + configured_catalog=configured_catalogue, + schema_name=test_schema_name, + db_path=path, + ) + return processor + + def test_write( config: Dict[str, str], request, @@ -315,6 +339,7 @@ def test_write( test_table_name: str, test_schema_name: str, test_large_table_name: str, + sql_processor, ): destination = DestinationMotherDuck() generator = destination.write( @@ -331,22 +356,11 @@ def test_write( result = list(generator) assert len(result) == 1 - duckdb_config = {} - if CONFIG_MOTHERDUCK_API_KEY in config: - duckdb_config["motherduck_token"] = config[CONFIG_MOTHERDUCK_API_KEY] - duckdb_config["custom_user_agent"] = "airbyte_intg_test" - con = duckdb.connect( - database=config.get("destination_path", "md:"), - read_only=False, - config=duckdb_config, + sql_result = sql_processor._execute_sql( + "SELECT key1, key2, _airbyte_raw_id, _airbyte_extracted_at, _airbyte_meta " + f"FROM {test_schema_name}.{test_table_name} ORDER BY key1" ) - with con: - cursor = con.execute( - "SELECT key1, key2, _airbyte_raw_id, _airbyte_extracted_at, _airbyte_meta " - f"FROM {test_schema_name}.{test_table_name} ORDER BY key1" - ) - sql_result = cursor.fetchall() assert len(sql_result) == 2 assert sql_result[0][0] == "Dennis" @@ -365,6 +379,7 @@ def test_write_dupe( airbyte_message3: AirbyteMessage, test_table_name: str, test_schema_name: str, + sql_processor, ): destination = DestinationMotherDuck() generator = destination.write( @@ -375,22 +390,11 @@ def test_write_dupe( result = list(generator) assert len(result) == 1 - motherduck_api_key = str(config.get(CONFIG_MOTHERDUCK_API_KEY, "")) - duckdb_config = {} - if motherduck_api_key: - duckdb_config["motherduck_token"] = motherduck_api_key - duckdb_config["custom_user_agent"] = "airbyte_intg_test" - con = duckdb.connect( - database=config.get("destination_path", "md:"), - read_only=False, - config=duckdb_config, + + sql_result = sql_processor._execute_sql( + "SELECT key1, key2, _airbyte_raw_id, _airbyte_extracted_at, _airbyte_meta " + f"FROM {test_schema_name}.{test_table_name} ORDER BY key1" ) - with con: - cursor = con.execute( - "SELECT key1, key2, _airbyte_raw_id, _airbyte_extracted_at, _airbyte_meta " - f"FROM {test_schema_name}.{test_table_name} ORDER BY key1" - ) - sql_result = cursor.fetchall() assert len(sql_result) == 2 assert sql_result[0][0] == "Dennis" @@ -503,6 +507,7 @@ def test_large_number_of_writes( test_schema_name: str, airbyte_message_generator: Callable[[int, int, str], Iterable[AirbyteMessage]], explanation: str, + sql_processor, ): destination = DestinationMotherDuck() generator = destination.write( @@ -515,21 +520,9 @@ def test_large_number_of_writes( result = list(generator) assert len(result) == TOTAL_RECORDS // (BATCH_WRITE_SIZE + 1) - motherduck_api_key = str(config.get(CONFIG_MOTHERDUCK_API_KEY, "")) - duckdb_config = {} - if motherduck_api_key: - duckdb_config["motherduck_token"] = motherduck_api_key - duckdb_config["custom_user_agent"] = "airbyte_intg_test" - - con = duckdb.connect( - database=config.get("destination_path", "md:"), - read_only=False, - config=duckdb_config, + + sql_result = sql_processor._execute_sql( + "SELECT count(1) " + f"FROM {test_schema_name}.{test_large_table_name}" ) - with con: - cursor = con.execute( - "SELECT count(1) " - f"FROM {test_schema_name}.{test_large_table_name}" - ) - sql_result = cursor.fetchall() - assert sql_result[0][0] == TOTAL_RECORDS - TOTAL_RECORDS // (BATCH_WRITE_SIZE + 1) + assert sql_result[0][0] == TOTAL_RECORDS - TOTAL_RECORDS // (BATCH_WRITE_SIZE + 1) diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index 00b862b0e2a1..c3d54b77736b 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66 - dockerImageTag: 0.1.13 + dockerImageTag: 0.1.14 dockerRepository: airbyte/destination-motherduck githubIssueLabel: destination-motherduck icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml index d277977588e5..5aca272174ee 100644 --- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml +++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "airbyte-destination-motherduck" -version = "0.1.13" +version = "0.1.14" description = "Destination implementation for MotherDuck." authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md index 93a3acfedad4..c813f93aa489 100644 --- a/docs/integrations/destinations/motherduck.md +++ b/docs/integrations/destinations/motherduck.md @@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.1.14 | 2024-10-30 | [48006](https://github.com/airbytehq/airbyte/pull/48006) | Fix bug in _flush_buffer, explicitly register dataframe before inserting | | 0.1.13 | 2024-10-30 | [47969](https://github.com/airbytehq/airbyte/pull/47969) | Preserve Platform-generated id in state messages. | | 0.1.12 | 2024-10-30 | [47987](https://github.com/airbytehq/airbyte/pull/47987) | Disable PyPi publish. | | 0.1.11 | 2024-10-30 | [47979](https://github.com/airbytehq/airbyte/pull/47979) | Rename package. | From 3632670216dc6a8ae6687c0aa230416cf58ac8fc Mon Sep 17 00:00:00 2001 From: Tope Folorunso <66448986+topefolorunso@users.noreply.github.com> Date: Wed, 30 Oct 2024 23:00:08 +0100 Subject: [PATCH 494/808] =?UTF-8?q?=E2=9C=A8=20Source=20Bigcommerce=20:=20?= =?UTF-8?q?Migrate=20to=20Manifest-only=20(#47277)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-bigcommerce/README.md | 80 +- .../connectors/source-bigcommerce/__init__.py | 3 - .../acceptance-test-config.yml | 2 +- .../{source_bigcommerce => }/components.py | 0 .../connectors/source-bigcommerce/main.py | 8 - .../source-bigcommerce/manifest.yaml | 3158 +++++++++++++++++ .../source-bigcommerce/metadata.yaml | 10 +- .../connectors/source-bigcommerce/poetry.lock | 1492 -------- .../source-bigcommerce/pyproject.toml | 28 - .../source_bigcommerce/__init__.py | 8 - .../source_bigcommerce/manifest.yaml | 338 -- .../source_bigcommerce/run.py | 14 - .../source_bigcommerce/schemas/brands.json | 41 - .../schemas/categories.json | 63 - .../source_bigcommerce/schemas/channels.json | 44 - .../source_bigcommerce/schemas/customers.json | 171 - .../schemas/order_products.json | 177 - .../source_bigcommerce/schemas/orders.json | 271 -- .../source_bigcommerce/schemas/pages.json | 63 - .../source_bigcommerce/schemas/products.json | 797 ----- .../schemas/shared/meta.json | 36 - .../source_bigcommerce/schemas/store.json | 185 - .../schemas/transactions.json | 143 - .../source_bigcommerce/source.py | 18 - docs/integrations/sources/bigcommerce.md | 1 + 25 files changed, 3192 insertions(+), 3959 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/__init__.py rename airbyte-integrations/connectors/source-bigcommerce/{source_bigcommerce => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/main.py create mode 100644 airbyte-integrations/connectors/source-bigcommerce/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/__init__.py delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/run.py delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/brands.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/categories.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/channels.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/customers.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/order_products.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/orders.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/pages.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/products.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/shared/meta.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/store.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/transactions.json delete mode 100644 airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/source.py diff --git a/airbyte-integrations/connectors/source-bigcommerce/README.md b/airbyte-integrations/connectors/source-bigcommerce/README.md index 68db043c87ec..d12d54253347 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/README.md +++ b/airbyte-integrations/connectors/source-bigcommerce/README.md @@ -1,89 +1,63 @@ # Bigcommerce source connector +This directory contains the manifest-only connector for `source-bigcommerce`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -This is the repository for the Bigcommerce source connector, written in Python. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/bigcommerce). +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/bigcommerce). ## Local development -### Prerequisites -* Python (~=3.9) -* Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! +If you prefer to develop locally, you can follow the instructions below. -### Installing the connector -From this connector directory, run: -```bash -poetry install --with dev -``` - - -### Create credentials -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/bigcommerce) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_bigcommerce/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `sample_files/sample_config.json` for a sample config file. - - -### Locally running the connector -``` -poetry run source-bigcommerce spec -poetry run source-bigcommerce check --config secrets/config.json -poetry run source-bigcommerce discover --config secrets/config.json -poetry run source-bigcommerce read --config secrets/config.json --catalog sample_files/configured_catalog.json -``` +### Building the docker image -### Running unit tests -To run unit tests locally, from the connector directory run: -``` -poetry run pytest unit_tests -``` +You can build any manifest-only connector with `airbyte-ci`: -### Building the docker image 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: + ```bash airbyte-ci connectors --name=source-bigcommerce build ``` An image will be available on your host with the tag `airbyte/source-bigcommerce:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/bigcommerce) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. ### Running as a docker container -Then run any of the connector commands as follows: -``` + +Then run any of the standard source connector commands: + +```bash docker run --rm airbyte/source-bigcommerce:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-bigcommerce:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-bigcommerce:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-bigcommerce:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite -You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): -```bash -airbyte-ci connectors --name=source-bigcommerce test -``` +### Running the CI test suite -### Customizing acceptance Tests -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. +You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): -### Dependency Management -All of your dependencies should be managed via Poetry. -To add a new dependency, run: ```bash -poetry add +airbyte-ci connectors --name=source-bigcommerce test ``` -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-bigcommerce test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + +If you want to contribute changes to `source-bigcommerce`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-bigcommerce test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/bigcommerce.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. diff --git a/airbyte-integrations/connectors/source-bigcommerce/__init__.py b/airbyte-integrations/connectors/source-bigcommerce/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-bigcommerce/acceptance-test-config.yml b/airbyte-integrations/connectors/source-bigcommerce/acceptance-test-config.yml index 564a05cfa774..9659545f0b7e 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-bigcommerce/acceptance-test-config.yml @@ -4,7 +4,7 @@ connector_image: airbyte/source-bigcommerce:dev acceptance_tests: spec: tests: - - spec_path: "source_bigcommerce/spec.yaml" + - spec_path: "manifest.yaml" connection: tests: - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/components.py b/airbyte-integrations/connectors/source-bigcommerce/components.py similarity index 100% rename from airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/components.py rename to airbyte-integrations/connectors/source-bigcommerce/components.py diff --git a/airbyte-integrations/connectors/source-bigcommerce/main.py b/airbyte-integrations/connectors/source-bigcommerce/main.py deleted file mode 100644 index 7830bf519a65..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_bigcommerce.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-bigcommerce/manifest.yaml b/airbyte-integrations/connectors/source-bigcommerce/manifest.yaml new file mode 100644 index 000000000000..134c62e6506d --- /dev/null +++ b/airbyte-integrations/connectors/source-bigcommerce/manifest.yaml @@ -0,0 +1,3158 @@ +version: 5.15.0 + +type: DeclarativeSource + +check: + type: CheckStream + stream_names: + - customers + +definitions: + streams: + customers: + type: DeclarativeStream + name: customers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v3/customers + http_method: GET + request_parameters: + sort: date_modified:asc + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date_modified + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + - "%Y-%m-%dT%H:%M:%S+00:00" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: date_modified:min + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + orders: + type: DeclarativeStream + name: orders + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v2/orders + http_method: GET + request_parameters: + sort: date_modified:asc + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date_modified + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + - "%Y-%m-%dT%H:%M:%S+00:00" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: min_date_modified + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + transformations: + - type: CustomTransformation + class_name: source_declarative_manifest.components.DateTimeTransformer + fields: + - path: + - date_modified + value: "{{ record.date_modified }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/orders" + transactions: + type: DeclarativeStream + name: transactions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v2/orders/{{ stream_partition.order_id }}/transactions + http_method: GET + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: order_id + stream: + $ref: "#/definitions/streams/orders" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: id + cursor_datetime_formats: + - "%s" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + start_time_option: + type: RequestOption + field_name: date_modified:min + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/transactions" + pages: + type: DeclarativeStream + name: pages + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v3/content/pages + http_method: GET + request_parameters: + sort: date_modified:asc + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + incremental_sync: + type: DatetimeBasedCursor + cursor_field: id + cursor_datetime_formats: + - "%s" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + start_time_option: + type: RequestOption + field_name: date_modified:min + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/pages" + products: + type: DeclarativeStream + name: products + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v3/catalog/products + http_method: GET + request_parameters: + sort: date_modified + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date_modified + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + - "%Y-%m-%dT%H:%M:%S+00:00" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: date_modified:min + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/products" + channels: + type: DeclarativeStream + name: channels + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v3/channels + http_method: GET + request_parameters: + sort: date_modified + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date_modified + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + - "%Y-%m-%dT%H:%M:%S+00:00" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: date_modified:min + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/channels" + store: + type: DeclarativeStream + name: store + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v2/store + http_method: GET + request_parameters: + sort: date_modified:asc + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/store" + order_products: + type: DeclarativeStream + name: order_products + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v2/orders/{{ stream_partition.order_id }}/products + http_method: GET + request_parameters: + sort: date_modified:asc + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: order_id + stream: + $ref: "#/definitions/streams/orders" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: id + cursor_datetime_formats: + - "%s" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/order_products" + brands: + type: DeclarativeStream + name: brands + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v3/catalog/brands + http_method: GET + request_parameters: + sort: id + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + incremental_sync: + type: DatetimeBasedCursor + cursor_field: id + cursor_datetime_formats: + - "%s" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/brands" + categories: + type: DeclarativeStream + name: categories + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: v3/catalog/categories + http_method: GET + request_parameters: + sort: id + request_headers: + Accept: application/json + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 250 + incremental_sync: + type: DatetimeBasedCursor + cursor_field: id + cursor_datetime_formats: + - "%s" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/categories" + base_requester: + type: HttpRequester + url_base: https://api.bigcommerce.com/stores/{{ config["store_hash"] }}/ + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"access_token\"] }}" + inject_into: + type: RequestOption + inject_into: header + field_name: X-Auth-Token + +streams: + - $ref: "#/definitions/streams/customers" + - $ref: "#/definitions/streams/orders" + - $ref: "#/definitions/streams/transactions" + - $ref: "#/definitions/streams/pages" + - $ref: "#/definitions/streams/products" + - $ref: "#/definitions/streams/channels" + - $ref: "#/definitions/streams/store" + - $ref: "#/definitions/streams/order_products" + - $ref: "#/definitions/streams/brands" + - $ref: "#/definitions/streams/categories" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - start_date + - access_token + - store_hash + properties: + start_date: + type: string + description: "The date you would like to replicate data. Format: YYYY-MM-DD." + title: Start date + examples: + - "2021-01-01" + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}$ + order: 0 + access_token: + type: string + description: Access Token for making authenticated requests. + title: Access Token + airbyte_secret: true + order: 1 + store_hash: + type: string + description: >- + The hash code of the store. For + https://api.bigcommerce.com/stores/HASH_CODE/v3/, The store's hash + code is 'HASH_CODE'. + title: Store Hash + order: 2 + additionalProperties: true + +metadata: + autoImportSchema: + customers: false + orders: false + transactions: false + pages: false + products: false + channels: false + store: false + order_products: false + brands: false + categories: false + yamlComponents: + streams: + orders: + - transformations + testedStreams: {} + assist: {} + +schemas: + customers: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + address_count: + type: + - "null" + - integer + addresses: + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + properties: + accepts_product_review_abandoned_cart_emails: + type: + - "null" + - boolean + address1: + type: + - "null" + - string + address2: + type: + - "null" + - string + address_type: + type: + - "null" + - string + channel_ids: + type: + - "null" + - array + city: + type: + - "null" + - string + company: + type: + - "null" + - string + country: + type: + - "null" + - string + country_code: + type: + - "null" + - string + customer_id: + type: + - "null" + - integer + first_name: + type: + - "null" + - string + form_fields: + type: + - "null" + - array + oneOf: + - type: + - "null" + - object + properties: + customer_id: + type: + - "null" + - integer + name: + type: + - "null" + - string + value: + oneOf: + - type: + - "null" + - string + - type: + - "null" + - integer + - type: + - "null" + - array + - type: + - "null" + - object + properties: + address_id: + type: + - "null" + - integer + name: + type: + - "null" + - string + value: + oneOf: + - type: + - "null" + - string + - type: + - "null" + - integer + - type: + - "null" + - array + id: + type: + - "null" + - integer + last_name: + type: + - "null" + - string + origin_channel_id: + type: + - "null" + - integer + phone: + type: + - "null" + - string + postal_code: + type: + - "null" + - string + state_or_province: + type: + - "null" + - string + store_credit_amounts: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + amount: + type: + - "null" + - integer + attribute_count: + type: + - "null" + - integer + authentication: + type: + - "null" + - object + properties: + force_password_reset: + type: + - "null" + - boolean + company: + type: + - "null" + - string + customer_group_id: + type: + - "null" + - integer + date_created: + type: + - "null" + - string + format: date-time + date_modified: + type: + - "null" + - string + format: date-time + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_name: + type: + - "null" + - string + notes: + type: + - "null" + - string + phone: + type: + - "null" + - string + registration_ip_address: + type: + - "null" + - string + tax_exempt_category: + type: + - "null" + - string + orders: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + base_handling_cost: + type: + - "null" + - string + base_shipping_cost: + type: + - "null" + - string + base_wrapping_cost: + oneOf: + - type: + - "null" + - integer + - type: + - "null" + - string + billing_address: + type: + - "null" + - object + properties: + city: + type: + - "null" + - string + company: + type: + - "null" + - string + country: + type: + - "null" + - string + country_iso2: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + form_fields: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + last_name: + type: + - "null" + - string + phone: + type: + - "null" + - string + state: + type: + - "null" + - string + street_1: + type: + - "null" + - string + street_2: + type: + - "null" + - string + zip: + type: + - "null" + - string + cart_id: + type: + - "null" + - string + channel_id: + type: + - "null" + - integer + coupon_discount: + type: + - "null" + - string + coupons: + type: + - "null" + - object + properties: + resource: + type: + - "null" + - string + url: + type: + - "null" + - string + currency_code: + type: + - "null" + - string + currency_exchange_rate: + type: + - "null" + - string + currency_id: + type: + - "null" + - integer + customer_id: + type: + - "null" + - integer + customer_locale: + type: + - "null" + - string + customer_message: + type: + - "null" + - string + date_created: + type: + - "null" + - string + format: date-time + date_modified: + type: + - "null" + - string + format: date-time + date_shipped: + type: + - "null" + - string + format: date-time + default_currency_code: + type: + - "null" + - string + default_currency_id: + type: + - "null" + - integer + discount_amount: + type: + - "null" + - string + ebay_order_id: + type: + - "null" + - string + external_id: + type: + - "null" + - string + external_source: + type: + - "null" + - string + geoip_country: + type: + - "null" + - string + geoip_country_iso2: + type: + - "null" + - string + gift_certificate_amount: + type: + - "null" + - string + handling_cost_ex_tax: + type: + - "null" + - string + handling_cost_inc_tax: + type: + - "null" + - string + handling_cost_tax: + type: + - "null" + - string + handling_cost_tax_class_id: + type: + - "null" + - integer + id: + type: + - "null" + - integer + ip_address: + type: + - "null" + - string + is_deleted: + type: + - "null" + - boolean + is_email_opt_in: + type: + - "null" + - boolean + items_shipped: + type: + - "null" + - integer + items_total: + type: + - "null" + - integer + order_is_digital: + type: + - "null" + - boolean + order_source: + type: + - "null" + - string + payment_method: + type: + - "null" + - string + payment_status: + type: + - "null" + - string + products: + type: + - "null" + - object + properties: + resource: + type: + - "null" + - string + url: + type: + - "null" + - string + refunded_amount: + type: + - "null" + - string + shipping_address_count: + type: + - "null" + - integer + shipping_addresses: + type: + - "null" + - object + properties: + resource: + type: + - "null" + - string + url: + type: + - "null" + - string + shipping_cost_ex_tax: + type: + - "null" + - string + shipping_cost_inc_tax: + type: + - "null" + - string + shipping_cost_tax: + type: + - "null" + - string + shipping_cost_tax_class_id: + type: + - "null" + - integer + staff_notes: + type: + - "null" + - string + status: + type: + - "null" + - string + status_id: + type: + - "null" + - integer + store_credit_amount: + type: + - "null" + - string + subtotal_ex_tax: + type: + - "null" + - string + subtotal_inc_tax: + type: + - "null" + - string + subtotal_tax: + type: + - "null" + - string + tax_provider_id: + type: + - "null" + - string + total_ex_tax: + type: + - "null" + - string + total_inc_tax: + type: + - "null" + - string + wrapping_cost_ex_tax: + type: + - "null" + - string + wrapping_cost_inc_tax: + type: + - "null" + - string + wrapping_cost_tax: + type: + - "null" + - string + wrapping_cost_tax_class_id: + type: + - "null" + - integer + transactions: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + amount: + type: + - "null" + - number + avs_result: + type: + - "null" + - object + properties: + code: + type: + - "null" + - string + message: + type: + - "null" + - string + postal_match: + type: + - "null" + - string + street_match: + type: + - "null" + - string + credit_card: + type: + - "null" + - object + properties: + card_expiry_month: + type: + - "null" + - integer + card_expiry_year: + type: + - "null" + - integer + card_iin: + type: + - "null" + - string + card_last4: + type: + - "null" + - string + card_type: + type: + - "null" + - string + currency: + type: + - "null" + - string + custom: + type: + - "null" + - object + properties: + payment_method: + type: + - "null" + - string + cvv_result: + type: + - "null" + - object + properties: + code: + type: + - "null" + - string + message: + type: + - "null" + - string + date_created: + type: + - "null" + - string + event: + type: + - "null" + - string + fraud_review: + type: + - "null" + - boolean + gateway: + type: + - "null" + - string + gateway_transaction_id: + type: + - "null" + - string + gift_certificate: + type: + - "null" + - object + properties: + code: + type: + - "null" + - string + original_balance: + type: + - "null" + - integer + remaining_balance: + type: + - "null" + - integer + starting_balance: + type: + - "null" + - integer + status: + type: + - "null" + - string + id: + type: + - "null" + - integer + method: + type: + - "null" + - string + offline: + type: + - "null" + - object + properties: + display_name: + type: + - "null" + - string + order_id: + type: + - "null" + - string + payment_instrument_token: + type: + - "null" + - string + payment_method_id: + type: + - "null" + - string + reference_transaction_id: + type: + - "null" + - integer + status: + type: + - "null" + - string + store_credit: + type: + - "null" + - object + properties: + remaining_balance: + type: + - "null" + - integer + test: + type: + - "null" + - boolean + pages: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + type: + type: + - "null" + - string + body: + type: + - "null" + - string + channel_id: + type: + - "null" + - integer + contact_fields: + type: + - "null" + - string + email: + type: + - "null" + - string + feed: + type: + - "null" + - string + id: + type: + - "null" + - integer + is_customers_only: + type: + - "null" + - boolean + is_homepage: + type: + - "null" + - boolean + is_visible: + type: + - "null" + - boolean + link: + type: + - "null" + - string + meta_description: + type: + - "null" + - string + meta_keywords: + type: + - "null" + - string + meta_title: + type: + - "null" + - string + name: + type: + - "null" + - string + parent_id: + type: + - "null" + - integer + search_keywords: + type: + - "null" + - string + sort_order: + type: + - "null" + - integer + url: + type: + - "null" + - string + products: + type: object + additionalProperties: true + properties: + type: + type: + - "null" + - string + description: + type: + - "null" + - string + availability: + type: + - "null" + - string + availability_description: + type: + - "null" + - string + base_variant_id: + type: + - "null" + - integer + bin_picking_number: + type: + - "null" + - string + brand_id: + type: + - "null" + - integer + brand_name or brand_id: + type: + - "null" + - string + bulk_pricing_rules: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + amount: + type: + - "null" + - integer + id: + type: + - "null" + - integer + quantity_max: + type: + - "null" + - integer + quantity_min: + type: + - "null" + - integer + required: + - quantity_min + - quantity_max + - type + - amount + title: bulkPricingRule_Full + calculated_price: + type: + - "null" + - number + format: float + categories: + type: + - "null" + - array + items: + type: + - "null" + - integer + condition: + type: + - "null" + - string + cost_price: + type: + - "null" + - number + format: float + custom_fields: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + id: + type: + - "null" + - integer + name: + type: + - "null" + - string + value: + type: + - "null" + - string + required: + - name + - value + title: productCustomField_Put + custom_url: + type: + - "null" + - object + properties: + is_customized: + type: + - "null" + - boolean + url: + type: + - "null" + - string + title: customUrl_Full + date_created: + type: + - "null" + - string + format: date-time + date_modified: + type: + - "null" + - string + format: date-time + depth: + type: + - "null" + - number + format: float + fixed_cost_shipping_price: + type: + - "null" + - number + format: float + gift_wrapping_options_list: + type: + - "null" + - array + items: + type: + - "null" + - integer + gift_wrapping_options_type: + type: + - "null" + - string + gtin: + type: + - "null" + - string + height: + type: + - "null" + - number + format: float + id: + type: + - "null" + - integer + images: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + description: + type: + - "null" + - string + date_modified: + type: + - "null" + - string + format: date-time + id: + type: + - "null" + - integer + image_file: + type: + - "null" + - string + image_url: + type: + - "null" + - string + is_thumbnail: + type: + - "null" + - boolean + product_id: + type: + - "null" + - integer + sort_order: + type: + - "null" + - integer + url_standard: + type: + - "null" + - string + url_thumbnail: + type: + - "null" + - string + url_tiny: + type: + - "null" + - string + url_zoom: + type: + - "null" + - string + title: productImage_Full + inventory_level: + type: + - "null" + - integer + inventory_tracking: + type: + - "null" + - string + inventory_warning_level: + type: + - "null" + - integer + is_condition_shown: + type: + - "null" + - boolean + is_featured: + type: + - "null" + - boolean + is_free_shipping: + type: + - "null" + - boolean + is_preorder_only: + type: + - "null" + - boolean + is_price_hidden: + type: + - "null" + - boolean + is_visible: + type: + - "null" + - boolean + layout_file: + type: + - "null" + - string + map_price: + type: + - "null" + - number + meta_description: + type: + - "null" + - string + meta_keywords: + type: + - "null" + - array + items: + type: + - "null" + - string + modifiers: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + config: + type: + - "null" + - object + properties: + checkbox_label: + type: + - "null" + - string + checked_by_default: + type: + - "null" + - boolean + date_earliest_value: + type: + - "null" + - string + format: date + date_latest_value: + type: + - "null" + - string + format: date + date_limit_mode: + type: + - "null" + - string + date_limited: + type: + - "null" + - boolean + default_value: + type: + - "null" + - string + file_max_size: + type: + - "null" + - integer + file_types_mode: + type: + - "null" + - string + file_types_other: + type: + - "null" + - array + items: + type: + - "null" + - string + file_types_supported: + type: + - "null" + - array + items: + type: + - "null" + - string + number_highest_value: + type: + - "null" + - number + number_integers_only: + type: + - "null" + - boolean + number_limit_mode: + type: + - "null" + - string + number_limited: + type: + - "null" + - boolean + number_lowest_value: + type: + - "null" + - number + product_list_adjusts_inventory: + type: + - "null" + - boolean + product_list_adjusts_pricing: + type: + - "null" + - boolean + product_list_shipping_calc: + type: + - "null" + - string + text_characters_limited: + type: + - "null" + - boolean + text_lines_limited: + type: + - "null" + - boolean + text_max_length: + type: + - "null" + - integer + text_max_lines: + type: + - "null" + - integer + text_min_length: + type: + - "null" + - integer + title: config_Full + display_name: + type: + - "null" + - string + id: + type: + - "null" + - integer + name: + type: + - "null" + - string + option_values: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + adjusters: + type: + - "null" + - object + properties: + image_url: + type: + - "null" + - string + price: + type: + - "null" + - object + properties: + adjuster: + type: + - "null" + - string + adjuster_value: + type: + - "null" + - number + title: adjuster_Full + purchasing_disabled: + type: + - "null" + - object + properties: + message: + type: + - "null" + - string + status: + type: + - "null" + - boolean + weight: + type: + - "null" + - object + properties: + adjuster: + type: + - "null" + - string + adjuster_value: + type: + - "null" + - number + title: adjuster_Full + title: adjusters_Full + id: + type: + - "null" + - integer + is_default: + type: + - "null" + - boolean + label: + type: + - "null" + - string + option_id: + type: + - "null" + - integer + sort_order: + type: + - "null" + - integer + value_data: + type: + - object + - "null" + required: + - label + - sort_order + title: productModifierOptionValue_Full + product_id: + type: + - "null" + - integer + required: + type: + - "null" + - boolean + sort_order: + type: + - "null" + - integer + required: + - type + - required + title: productModifier_Full + mpn: + type: + - "null" + - string + name: + type: + - "null" + - string + open_graph_description: + type: + - "null" + - string + open_graph_title: + type: + - "null" + - string + open_graph_type: + type: + - "null" + - string + open_graph_use_image: + type: + - "null" + - boolean + open_graph_use_meta_description: + type: + - "null" + - boolean + open_graph_use_product_name: + type: + - "null" + - boolean + option_set_display: + type: + - "null" + - string + option_set_id: + type: + - "null" + - integer + options: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + config: + type: + - "null" + - object + properties: + checkbox_label: + type: + - "null" + - string + checked_by_default: + type: + - "null" + - boolean + date_earliest_value: + type: + - "null" + - string + format: date + date_latest_value: + type: + - "null" + - string + format: date + date_limit_mode: + type: + - "null" + - string + date_limited: + type: + - "null" + - boolean + default_value: + type: + - "null" + - string + file_max_size: + type: + - "null" + - integer + file_types_mode: + type: + - "null" + - string + file_types_other: + type: + - "null" + - array + items: + type: + - "null" + - string + file_types_supported: + type: + - "null" + - array + items: + type: + - "null" + - string + number_highest_value: + type: + - "null" + - number + number_integers_only: + type: + - "null" + - boolean + number_limit_mode: + type: + - "null" + - string + number_limited: + type: + - "null" + - boolean + number_lowest_value: + type: + - "null" + - number + product_list_adjusts_inventory: + type: + - "null" + - boolean + product_list_adjusts_pricing: + type: + - "null" + - boolean + product_list_shipping_calc: + type: + - "null" + - string + text_characters_limited: + type: + - "null" + - boolean + text_lines_limited: + type: + - "null" + - boolean + text_max_length: + type: + - "null" + - integer + text_max_lines: + type: + - "null" + - integer + text_min_length: + type: + - "null" + - integer + title: productOptionConfig_Full + display_name: + type: + - "null" + - string + id: + type: + - "null" + - integer + option_values: + type: + - "null" + - object + properties: + id: + type: + - "null" + - integer + is_default: + type: + - "null" + - boolean + label: + type: + - "null" + - string + sort_order: + type: + - "null" + - integer + value_data: + type: + - object + - "null" + required: + - label + - sort_order + title: productOptionOptionValue_Full + product_id: + type: + - "null" + - integer + sort_order: + type: + - "null" + - integer + title: productOption_Base + order_quantity_maximum: + type: + - "null" + - integer + order_quantity_minimum: + type: + - "null" + - integer + page_title: + type: + - "null" + - string + preorder_message: + type: + - "null" + - string + preorder_release_date: + type: + - "null" + - string + format: date-time + price: + type: + - "null" + - number + format: float + price_hidden_label: + type: + - "null" + - string + product_tax_code: + type: + - "null" + - string + related_products: + type: + - "null" + - array + items: + type: + - "null" + - integer + retail_price: + type: + - "null" + - number + format: float + reviews_count: + type: + - "null" + - integer + reviews_rating_sum: + type: + - "null" + - integer + sale_price: + type: + - "null" + - number + format: float + search_keywords: + type: + - "null" + - string + sku: + type: + - "null" + - string + sort_order: + type: + - "null" + - integer + tax_class_id: + type: + - "null" + - integer + total_sold: + type: + - "null" + - integer + upc: + type: + - "null" + - string + variants: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + bin_picking_number: + type: + - "null" + - string + calculated_price: + type: + - "null" + - number + format: double + calculated_weight: + type: number + cost_price: + type: + - "null" + - number + format: double + depth: + type: + - "null" + - number + format: double + fixed_cost_shipping_price: + type: + - "null" + - number + format: double + height: + type: + - "null" + - number + format: double + id: + type: + - "null" + - integer + inventory_level: + type: + - "null" + - integer + inventory_warning_level: + type: + - "null" + - integer + is_free_shipping: + type: + - "null" + - boolean + mpn: + type: + - "null" + - string + option_values: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + id: + type: + - "null" + - integer + label: + type: + - "null" + - string + option_display_name: + type: + - "null" + - string + option_id: + type: + - "null" + - integer + title: productVariantOptionValue_Full + price: + type: + - "null" + - number + format: double + product_id: + type: + - "null" + - integer + purchasing_disabled: + type: + - "null" + - boolean + purchasing_disabled_message: + type: + - "null" + - string + retail_price: + type: + - "null" + - number + format: double + sale_price: + type: + - "null" + - number + format: double + sku: + type: + - "null" + - string + sku_id: + type: + - "null" + - integer + upc: + type: + - "null" + - string + weight: + type: + - "null" + - number + format: double + width: + type: + - "null" + - number + format: double + title: productVariant_Full + videos: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + description: + type: + - "null" + - string + id: + type: + - "null" + - integer + length: + type: + - "null" + - string + product_id: + type: + - "null" + - integer + sort_order: + type: + - "null" + - integer + title: + type: + - "null" + - string + video_id: + type: + - "null" + - string + title: productVideo_Full + view_count: + type: + - "null" + - integer + warranty: + type: + - "null" + - string + weight: + type: + - "null" + - number + format: float + width: + type: + - "null" + - number + format: float + title: Product Response + channels: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + type: + type: + - "null" + - string + date_created: + type: + - "null" + - string + format: date-time + date_modified: + type: + - "null" + - string + format: date-time + external_id: + type: + - "null" + - string + icon_url: + type: + - "null" + - string + id: + type: + - "null" + - integer + is_enabled: + type: + - "null" + - boolean + is_listable_from_ui: + type: + - "null" + - boolean + is_visible: + type: + - "null" + - boolean + name: + type: + - "null" + - string + platform: + type: + - "null" + - string + status: + type: + - "null" + - string + store: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + account_uuid: + type: + - "null" + - string + active_comparison_modules: + type: + - "null" + - array + address: + type: + - "null" + - string + admin_email: + type: + - "null" + - string + control_panel_base_url: + type: + - "null" + - string + country: + type: + - "null" + - string + country_code: + type: + - "null" + - string + currency: + type: + - "null" + - string + currency_symbol: + type: + - "null" + - string + currency_symbol_location: + type: + - "null" + - string + decimal_places: + type: + - "null" + - integer + decimal_separator: + type: + - "null" + - string + default_channel_id: + type: + - "null" + - integer + default_site_id: + type: + - "null" + - integer + dimension_decimal_places: + type: + - "null" + - integer + dimension_decimal_token: + type: + - "null" + - string + dimension_thousands_token: + type: + - "null" + - string + dimension_units: + type: + - "null" + - string + domain: + type: + - "null" + - string + favicon_url: + type: + - "null" + - string + features: + type: + - "null" + - object + properties: + checkout_type: + type: + - "null" + - string + facebook_catalog_id: + type: + - "null" + - string + graphql_storefront_api_enabled: + type: + - "null" + - boolean + multi_storefront_enabled: + type: + - "null" + - boolean + shopper_consent_tracking_enabled: + type: + - "null" + - boolean + sitewidehttps_enabled: + type: + - "null" + - boolean + stencil_enabled: + type: + - "null" + - boolean + wishlists_enabled: + type: + - "null" + - boolean + first_name: + type: + - "null" + - string + id: + type: + - "null" + - string + industry: + type: + - "null" + - string + is_price_entered_with_tax: + type: + - "null" + - boolean + language: + type: + - "null" + - string + last_name: + type: + - "null" + - string + logo: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + url: + type: + - "null" + - string + name: + type: + - "null" + - string + order_email: + type: + - "null" + - string + phone: + type: + - "null" + - string + plan_is_trial: + type: + - "null" + - boolean + plan_level: + type: + - "null" + - string + plan_name: + type: + - "null" + - string + secure_url: + type: + - "null" + - string + status: + type: + - "null" + - string + store_id: + type: + - "null" + - integer + thousands_separator: + type: + - "null" + - string + timezone: + type: + - "null" + - object + properties: + date_format: + type: + - "null" + - object + properties: + display: + type: + - "null" + - string + export: + type: + - "null" + - string + extended_display: + type: + - "null" + - string + dst_offset: + type: + - "null" + - integer + name: + type: + - "null" + - string + raw_offset: + type: + - "null" + - integer + weight_units: + type: + - "null" + - string + order_products: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + type: + type: + - "null" + - string + applied_discounts: + type: + - "null" + - array + base_cost_price: + type: + - "null" + - string + base_price: + type: + - "null" + - string + base_total: + type: + - "null" + - string + base_wrapping_cost: + type: + - "null" + - string + bin_picking_number: + type: + - "null" + - string + brand: + type: + - "null" + - string + configurable_fields: + type: + - "null" + - array + cost_price_ex_tax: + type: + - "null" + - string + cost_price_inc_tax: + type: + - "null" + - string + cost_price_tax: + type: + - "null" + - string + depth: + type: + - "null" + - string + ebay_item_id: + type: + - "null" + - string + ebay_transaction_id: + type: + - "null" + - string + event_date: + type: + - "null" + - string + event_name: + type: + - "null" + - string + external_id: + type: + - "null" + - string + fixed_shipping_cost: + type: + - "null" + - string + fulfillment_source: + type: + - "null" + - string + gift_certificate_id: + type: + - "null" + - integer + height: + type: + - "null" + - string + id: + type: + - "null" + - integer + is_bundled_product: + type: + - "null" + - boolean + is_refunded: + type: + - "null" + - boolean + name: + type: + - "null" + - string + name_customer: + type: + - "null" + - string + name_merchant: + type: + - "null" + - string + option_set_id: + type: + - "null" + - integer + order_address_id: + type: + - "null" + - integer + order_id: + type: + - "null" + - integer + parent_order_product_id: + type: + - "null" + - integer + price_ex_tax: + type: + - "null" + - string + price_inc_tax: + type: + - "null" + - string + price_tax: + type: + - "null" + - string + product_id: + type: + - "null" + - integer + product_options: + type: + - "null" + - array + quantity: + type: + - "null" + - number + quantity_refunded: + type: + - "null" + - number + quantity_shipped: + type: + - "null" + - number + refund_amount: + type: + - "null" + - string + return_id: + type: + - "null" + - number + sku: + type: + - "null" + - string + total_ex_tax: + type: + - "null" + - string + total_inc_tax: + type: + - "null" + - string + total_tax: + type: + - "null" + - string + upc: + type: + - "null" + - string + variant_id: + type: + - "null" + - integer + weight: + type: + - "null" + - string + width: + type: + - "null" + - string + wrapping_cost_ex_tax: + type: + - "null" + - string + wrapping_cost_inc_tax: + type: + - "null" + - string + wrapping_cost_tax: + type: + - "null" + - string + wrapping_id: + type: + - "null" + - string + wrapping_message: + type: + - "null" + - string + wrapping_name: + type: + - "null" + - string + brands: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + custom_url: + type: + - "null" + - object + properties: + is_customized: + type: + - "null" + - boolean + url: + type: + - "null" + - string + id: + type: + - "null" + - integer + image_url: + type: + - "null" + - string + meta_description: + type: + - "null" + - string + meta_keywords: + type: + - "null" + - array + items: + type: + - "null" + - string + name: + type: + - "null" + - string + page_title: + type: + - "null" + - string + search_keywords: + type: + - "null" + - string + categories: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + description: + type: + - "null" + - string + custom_url: + type: + - "null" + - object + properties: + is_customized: + type: + - "null" + - boolean + path: + type: + - "null" + - string + default_product_sort: + type: + - "null" + - string + id: + type: + - "null" + - integer + image_url: + type: + - "null" + - string + is_visible: + type: + - "null" + - boolean + layout_file: + type: + - "null" + - string + meta_description: + type: + - "null" + - string + meta_keywords: + type: + - "null" + - array + items: + type: + - "null" + - string + name: + type: + - "null" + - string + page_title: + type: + - "null" + - string + parent_id: + type: + - "null" + - integer + search_keywords: + type: + - "null" + - string + sort_order: + type: + - "null" + - integer + views: + type: + - "null" + - integer diff --git a/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml b/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml index 570e2a7f0898..43aca29cf39c 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml +++ b/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml @@ -4,7 +4,7 @@ data: - api.bigcommerce.com remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-bigcommerce registryOverrides: oss: @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 59c5501b-9f95-411e-9269-7143c939adbd - dockerImageTag: 0.2.22 + dockerImageTag: 0.3.0 dockerRepository: airbyte/source-bigcommerce documentationUrl: https://docs.airbyte.com/integrations/sources/bigcommerce githubIssueLabel: source-bigcommerce @@ -23,9 +23,9 @@ data: name: Bigcommerce releaseDate: 2021-08-19 releaseStage: alpha - supportLevel: community + supportLevel: archived tags: - - language:python + - language:manifest-only - cdk:low-code ab_internal: sl: 100 @@ -47,5 +47,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 metadataSpecVersion: "1.0" diff --git a/airbyte-integrations/connectors/source-bigcommerce/poetry.lock b/airbyte-integrations/connectors/source-bigcommerce/poetry.lock deleted file mode 100644 index 711efc8fb7ce..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/poetry.lock +++ /dev/null @@ -1,1492 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "1.0.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-1.0.0-py3-none-any.whl", hash = "sha256:74cd8d4f9790b9a164731c42236cb015166b5ab2b0754b6a1fd730f223eb4e7f"}, - {file = "airbyte_cdk-1.0.0.tar.gz", hash = "sha256:102b75ce589460be4f75dabd3402ac7aa633c90758558c81d140fd436b76371f"}, -] - -[package.dependencies] -airbyte-protocol-models = ">=0.9.0,<1.0" -backoff = "*" -cachetools = "*" -cryptography = ">=42.0.5,<43.0.0" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -langchain_core = "0.1.42" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyjwt = ">=2.8.0,<3.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -pytz = "2024.1" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.13.0" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.13.0-py3-none-any.whl", hash = "sha256:fa8b7e1a85f9ae171c50b30d23b317da1740d051994fd3ed648f9dfba00250e2"}, - {file = "airbyte_protocol_models-0.13.0.tar.gz", hash = "sha256:09d8900ba8674a9315fa1799d17026f6b38d2187c08160449540ee93331ed2e7"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "anyio" -version = "4.6.2.post1" -description = "High level compatibility layer for multiple asynchronous event loop implementations" -optional = false -python-versions = ">=3.9" -files = [ - {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, - {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, -] - -[package.dependencies] -exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} -idna = ">=2.8" -sniffio = ">=1.1" -typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} - -[package.extras] -doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] -trio = ["trio (>=0.26.1)"] - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "cffi" -version = "1.17.1" -description = "Foreign Function Interface for Python calling C code." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, - {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, - {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, - {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, - {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, - {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, - {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, - {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, - {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, - {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, - {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, - {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, - {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, - {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, - {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, - {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, -] - -[package.dependencies] -pycparser = "*" - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "cryptography" -version = "42.0.8" -description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -optional = false -python-versions = ">=3.7" -files = [ - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e"}, - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7"}, - {file = "cryptography-42.0.8-cp37-abi3-win32.whl", hash = "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2"}, - {file = "cryptography-42.0.8-cp37-abi3-win_amd64.whl", hash = "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba"}, - {file = "cryptography-42.0.8-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14"}, - {file = "cryptography-42.0.8-cp39-abi3-win32.whl", hash = "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c"}, - {file = "cryptography-42.0.8-cp39-abi3-win_amd64.whl", hash = "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad"}, - {file = "cryptography-42.0.8.tar.gz", hash = "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2"}, -] - -[package.dependencies] -cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} - -[package.extras] -docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] -docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] -nox = ["nox"] -pep8test = ["check-sdist", "click", "mypy", "ruff"] -sdist = ["build"] -ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] -test-randomorder = ["pytest-randomly"] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "h11" -version = "0.14.0" -description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -optional = false -python-versions = ">=3.7" -files = [ - {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, - {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, -] - -[[package]] -name = "httpcore" -version = "1.0.6" -description = "A minimal low-level HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, - {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, -] - -[package.dependencies] -certifi = "*" -h11 = ">=0.13,<0.15" - -[package.extras] -asyncio = ["anyio (>=4.0,<5.0)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<1.0)"] - -[[package]] -name = "httpx" -version = "0.27.2" -description = "The next generation HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, - {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, -] - -[package.dependencies] -anyio = "*" -certifi = "*" -httpcore = "==1.*" -idna = "*" -sniffio = "*" - -[package.extras] -brotli = ["brotli", "brotlicffi"] -cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonpatch" -version = "1.33" -description = "Apply JSON-Patches (RFC 6902)" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" -files = [ - {file = "jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade"}, - {file = "jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c"}, -] - -[package.dependencies] -jsonpointer = ">=1.9" - -[[package]] -name = "jsonpointer" -version = "3.0.0" -description = "Identify specific nodes in a JSON document (RFC 6901)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, - {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, -] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "langchain-core" -version = "0.1.42" -description = "Building applications with LLMs through composability" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_core-0.1.42-py3-none-any.whl", hash = "sha256:c5653ffa08a44f740295c157a24c0def4a753333f6a2c41f76bf431cd00be8b5"}, - {file = "langchain_core-0.1.42.tar.gz", hash = "sha256:40751bf60ea5d8e2b2efe65290db434717ee3834870c002e40e2811f09d814e6"}, -] - -[package.dependencies] -jsonpatch = ">=1.33,<2.0" -langsmith = ">=0.1.0,<0.2.0" -packaging = ">=23.2,<24.0" -pydantic = ">=1,<3" -PyYAML = ">=5.3" -tenacity = ">=8.1.0,<9.0.0" - -[package.extras] -extended-testing = ["jinja2 (>=3,<4)"] - -[[package]] -name = "langsmith" -version = "0.1.137" -description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, -] - -[package.dependencies] -httpx = ">=0.23.0,<1" -orjson = ">=3.9.14,<4.0.0" -pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} -requests = ">=2,<3" -requests-toolbelt = ">=1.0.0,<2.0.0" - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "orjson" -version = "3.10.10" -description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -optional = false -python-versions = ">=3.8" -files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, -] - -[[package]] -name = "packaging" -version = "23.2" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pycparser" -version = "2.22" -description = "C parser in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, - {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyjwt" -version = "2.9.0" -description = "JSON Web Token implementation in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, - {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, -] - -[package.extras] -crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] -tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytz" -version = "2024.1" -description = "World timezone definitions, modern and historical" -optional = false -python-versions = "*" -files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, -] - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "requests-toolbelt" -version = "1.0.0" -description = "A utility belt for advanced users of python-requests" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, - {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, -] - -[package.dependencies] -requests = ">=2.0.1,<3.0.0" - -[[package]] -name = "setuptools" -version = "75.2.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "sniffio" -version = "1.3.1" -description = "Sniff out which async library your code is running under" -optional = false -python-versions = ">=3.7" -files = [ - {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, - {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, -] - -[[package]] -name = "tenacity" -version = "8.5.0" -description = "Retry code until it succeeds" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, - {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, -] - -[package.extras] -doc = ["reno", "sphinx"] -test = ["pytest", "tornado (>=4.5)", "typeguard"] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "7837a8e446313e068be6245532d7ddb3a63f70da7bc4c6613d26c3a1443db8e7" diff --git a/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml b/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml deleted file mode 100644 index 1f216916ad60..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml +++ /dev/null @@ -1,28 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "0.2.22" -name = "source-bigcommerce" -description = "Source implementation for Bigcommerce." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/bigcommerce" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_bigcommerce" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "1.0.0" - -[tool.poetry.scripts] -source-bigcommerce = "source_bigcommerce.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "^1.9.3" -pytest = "^6.2" -pytest-mock = "^3.6.1" diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/__init__.py b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/__init__.py deleted file mode 100644 index 2a85736c808d..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceBigcommerce - -__all__ = ["SourceBigcommerce"] diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/manifest.yaml b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/manifest.yaml deleted file mode 100644 index 4b06dd2f882f..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/manifest.yaml +++ /dev/null @@ -1,338 +0,0 @@ -version: 0.50.2 -type: DeclarativeSource - -check: - type: CheckStream - stream_names: - - customers - -definitions: - selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - inject_into: request_parameter - field_name: limit - type: RequestOption - pagination_strategy: - type: PageIncrement - start_from_page: 1 - page_size: 250 - date_modified_incremental_sync: - type: DatetimeBasedCursor - cursor_field: date_modified - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%SZ" - - "%Y-%m-%dT%H:%M:%S+00:00" - datetime_format: "%Y-%m-%d" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%d" - start_time_option: - inject_into: request_parameter - field_name: date_modified:min - type: RequestOption - end_datetime: - type: MinMaxDatetime - datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - base_id_incremental_sync: - type: DatetimeBasedCursor - cursor_field: id - cursor_datetime_formats: - - "%s" - datetime_format: "%Y-%m-%d" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%d" - end_datetime: - type: MinMaxDatetime - datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - id_incremental_sync: - $ref: "#/definitions/base_id_incremental_sync" - start_time_option: - type: RequestOption - field_name: date_modified:min - inject_into: request_parameter - order_id_partition_router: - - type: SubstreamPartitionRouter - parent_stream_configs: - - type: ParentStreamConfig - parent_key: id - partition_field: order_id - stream: - $ref: "#/definitions/orders_stream" - requester: - type: HttpRequester - url_base: https://api.bigcommerce.com/stores/{{ config["store_hash"] }}/ - http_method: GET - request_headers: - Accept: application/json - Content-Type: application/json - authenticator: - type: ApiKeyAuthenticator - api_token: '{{ config["access_token"] }}' - inject_into: - type: RequestOption - inject_into: header - field_name: X-Auth-Token - request_body_json: {} - customers_stream: - type: DeclarativeStream - name: customers - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: v3/customers - request_parameters: - sort: date_modified:asc - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - incremental_sync: - $ref: "#/definitions/date_modified_incremental_sync" - orders_stream: - type: DeclarativeStream - name: orders - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: v2/orders - request_parameters: - sort: date_modified:asc - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: [] - paginator: - $ref: "#/definitions/paginator" - incremental_sync: - type: DatetimeBasedCursor - cursor_field: date_modified - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%SZ" - - "%Y-%m-%dT%H:%M:%S+00:00" - datetime_format: "%Y-%m-%d" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%d" - start_time_option: - inject_into: request_parameter - field_name: min_date_modified - type: RequestOption - end_datetime: - type: MinMaxDatetime - datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - transformations: - - type: CustomTransformation - class_name: source_bigcommerce.components.DateTimeTransformer - fields: - - path: - - date_modified - value: "{{ record.date_modified }}" - transactions_stream: - type: DeclarativeStream - name: transactions - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: v2/orders/{{ stream_partition.order_id }}/transactions - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - partition_router: - $ref: "#/definitions/order_id_partition_router" - incremental_sync: - $ref: "#/definitions/id_incremental_sync" - pages_stream: - type: DeclarativeStream - name: pages - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: v3/content/pages - request_parameters: - sort: date_modified:asc - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - incremental_sync: - $ref: "#/definitions/id_incremental_sync" - products_stream: - type: DeclarativeStream - name: products - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: v3/catalog/products - request_parameters: - sort: date_modified - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - incremental_sync: - $ref: "#/definitions/date_modified_incremental_sync" - channels_stream: - type: DeclarativeStream - name: channels - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: /v3/channels - request_parameters: - sort: date_modified - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - incremental_sync: - $ref: "#/definitions/date_modified_incremental_sync" - store_stream: - type: DeclarativeStream - name: store - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: v2/store - request_parameters: - sort: date_modified:asc - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: [] - paginator: - $ref: "#/definitions/paginator" - order_products_stream: - type: DeclarativeStream - name: order_products - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: v2/orders/{{ stream_partition.order_id }}/products - request_parameters: - sort: date_modified:asc - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: [] - paginator: - $ref: "#/definitions/paginator" - partition_router: - $ref: "#/definitions/order_id_partition_router" - incremental_sync: - $ref: "#/definitions/base_id_incremental_sync" - brands_stream: - type: DeclarativeStream - name: brands - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: v3/catalog/brands - request_parameters: - sort: id - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - incremental_sync: - $ref: "#/definitions/base_id_incremental_sync" - categories_stream: - type: DeclarativeStream - name: categories - primary_key: "id" - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/requester" - path: v3/catalog/categories - request_parameters: - sort: id - record_selector: - $ref: "#/definitions/selector" - paginator: - $ref: "#/definitions/paginator" - incremental_sync: - $ref: "#/definitions/base_id_incremental_sync" - -streams: - - "#/definitions/customers_stream" - - "#/definitions/orders_stream" - - "#/definitions/transactions_stream" - - "#/definitions/pages_stream" - - "#/definitions/products_stream" - - "#/definitions/channels_stream" - - "#/definitions/store_stream" - - "#/definitions/order_products_stream" - - "#/definitions/brands_stream" - - "#/definitions/categories_stream" - -spec: - documentation_url: https://docs.airbyte.com/integrations/sources/bigcommerce - type: Spec - connection_specification: - additionalProperties: true - $schema: http://json-schema.org/draft-07/schema# - type: object - required: - - start_date - - access_token - - store_hash - properties: - start_date: - type: string - title: Start date - description: "The date you would like to replicate data. Format: YYYY-MM-DD." - examples: ["2021-01-01"] - pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}$ - order: 0 - access_token: - type: string - title: Access Token - description: "Access Token for making authenticated requests." - airbyte_secret: true - order: 1 - store_hash: - title: Store Hash - description: >- - The hash code of the store. For https://api.bigcommerce.com/stores/HASH_CODE/v3/, The store's hash code is 'HASH_CODE'. - type: string - order: 2 diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/run.py b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/run.py deleted file mode 100644 index 7e5234a1b2b1..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/run.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch -from source_bigcommerce import SourceBigcommerce - - -def run(): - source = SourceBigcommerce() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/brands.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/brands.json deleted file mode 100644 index 38170334d2b8..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/brands.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "page_title": { - "type": ["null", "string"] - }, - "meta_keywords": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "meta_description": { - "type": ["null", "string"] - }, - "search_keywords": { - "type": ["null", "string"] - }, - "image_url": { - "type": ["null", "string"] - }, - "custom_url": { - "type": ["null", "object"], - "properties": { - "url": { - "type": ["null", "string"] - }, - "is_customized": { - "type": ["null", "boolean"] - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/categories.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/categories.json deleted file mode 100644 index 6b26ee372e55..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/categories.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "additionalProperties": true, - "properties": { - "id": { - "type": ["null", "integer"] - }, - "parent_id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "description": { - "type": ["null", "string"] - }, - "views": { - "type": ["null", "integer"] - }, - "sort_order": { - "type": ["null", "integer"] - }, - "page_title": { - "type": ["null", "string"] - }, - "meta_keywords": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "meta_description": { - "type": ["null", "string"] - }, - "layout_file": { - "type": ["null", "string"] - }, - "image_url": { - "type": ["null", "string"] - }, - "is_visible": { - "type": ["null", "boolean"] - }, - "search_keywords": { - "type": ["null", "string"] - }, - "default_product_sort": { - "type": ["null", "string"] - }, - "custom_url": { - "type": ["null", "object"], - "properties": { - "path": { - "type": ["null", "string"] - }, - "is_customized": { - "type": ["null", "boolean"] - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/channels.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/channels.json deleted file mode 100644 index 78e6edc8221e..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/channels.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "external_id": { - "type": ["null", "string"] - }, - "is_listable_from_ui": { - "type": ["null", "boolean"] - }, - "is_visible": { - "type": ["null", "boolean"] - }, - "status": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "string"] - }, - "platform": { - "type": ["null", "string"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "icon_url": { - "type": ["null", "string"] - }, - "is_enabled": { - "type": ["null", "boolean"] - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/customers.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/customers.json deleted file mode 100644 index e00906cff851..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/customers.json +++ /dev/null @@ -1,171 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "additionalProperties": true, - "properties": { - "email": { - "type": ["null", "string"] - }, - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - }, - "registration_ip_address": { - "type": ["null", "string"] - }, - "notes": { - "type": ["null", "string"] - }, - "tax_exempt_category": { - "type": ["null", "string"] - }, - "customer_group_id": { - "type": ["null", "integer"] - }, - "id": { - "type": ["null", "integer"] - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "address_count": { - "type": ["null", "integer"] - }, - "attribute_count": { - "type": ["null", "integer"] - }, - "authentication": { - "type": ["null", "object"], - "properties": { - "force_password_reset": { - "type": ["null", "boolean"] - } - } - }, - "addresses": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "additionalProperties": true, - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "address1": { - "type": ["null", "string"] - }, - "address2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state_or_province": { - "type": ["null", "string"] - }, - "postal_code": { - "type": ["null", "string"] - }, - "country_code": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - }, - "address_type": { - "type": ["null", "string"] - }, - "customer_id": { - "type": ["null", "integer"] - }, - "id": { - "type": ["null", "integer"] - }, - "country": { - "type": ["null", "string"] - }, - "form_fields": { - "type": ["null", "array"], - "oneOf": [ - { - "type": ["null", "object"], - "properties": { - "name": { - "type": ["null", "string"] - }, - "value": { - "oneOf": [ - { "type": ["null", "string"] }, - { "type": ["null", "integer"] }, - { "type": ["null", "array"] } - ] - }, - "customer_id": { - "type": ["null", "integer"] - } - } - }, - { - "type": ["null", "object"], - "properties": { - "name": { - "type": ["null", "string"] - }, - "value": { - "oneOf": [ - { "type": ["null", "string"] }, - { "type": ["null", "integer"] }, - { "type": ["null", "array"] } - ] - }, - "address_id": { - "type": ["null", "integer"] - } - } - } - ] - }, - "store_credit_amounts": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "amount": { - "type": ["null", "integer"] - } - } - } - }, - "accepts_product_review_abandoned_cart_emails": { - "type": ["null", "boolean"] - }, - "channel_ids": { - "type": ["null", "array"] - }, - "origin_channel_id": { - "type": ["null", "integer"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/order_products.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/order_products.json deleted file mode 100644 index f2927892c12c..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/order_products.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "order_id": { - "type": ["null", "integer"] - }, - "product_id": { - "type": ["null", "integer"] - }, - "variant_id": { - "type": ["null", "integer"] - }, - "order_address_id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "name_customer": { - "type": ["null", "string"] - }, - "name_merchant": { - "type": ["null", "string"] - }, - "sku": { - "type": ["null", "string"] - }, - "upc": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "string"] - }, - "base_price": { - "type": ["null", "string"] - }, - "price_ex_tax": { - "type": ["null", "string"] - }, - "price_inc_tax": { - "type": ["null", "string"] - }, - "price_tax": { - "type": ["null", "string"] - }, - "base_total": { - "type": ["null", "string"] - }, - "total_ex_tax": { - "type": ["null", "string"] - }, - "total_inc_tax": { - "type": ["null", "string"] - }, - "total_tax": { - "type": ["null", "string"] - }, - "weight": { - "type": ["null", "string"] - }, - "width": { - "type": ["null", "string"] - }, - "height": { - "type": ["null", "string"] - }, - "depth": { - "type": ["null", "string"] - }, - "quantity": { - "type": ["null", "number"] - }, - "base_cost_price": { - "type": ["null", "string"] - }, - "cost_price_inc_tax": { - "type": ["null", "string"] - }, - "cost_price_ex_tax": { - "type": ["null", "string"] - }, - "cost_price_tax": { - "type": ["null", "string"] - }, - "is_refunded": { - "type": ["null", "boolean"] - }, - "quantity_refunded": { - "type": ["null", "number"] - }, - "refund_amount": { - "type": ["null", "string"] - }, - "return_id": { - "type": ["null", "number"] - }, - "wrapping_id": { - "type": ["null", "string"] - }, - "wrapping_name": { - "type": ["null", "string"] - }, - "base_wrapping_cost": { - "type": ["null", "string"] - }, - "wrapping_cost_ex_tax": { - "type": ["null", "string"] - }, - "wrapping_cost_inc_tax": { - "type": ["null", "string"] - }, - "wrapping_cost_tax": { - "type": ["null", "string"] - }, - "wrapping_message": { - "type": ["null", "string"] - }, - "quantity_shipped": { - "type": ["null", "number"] - }, - "event_name": { - "type": ["null", "string"] - }, - "event_date": { - "type": ["null", "string"] - }, - "fixed_shipping_cost": { - "type": ["null", "string"] - }, - "ebay_item_id": { - "type": ["null", "string"] - }, - "ebay_transaction_id": { - "type": ["null", "string"] - }, - "option_set_id": { - "type": ["null", "integer"] - }, - "parent_order_product_id": { - "type": ["null", "integer"] - }, - "is_bundled_product": { - "type": ["null", "boolean"] - }, - "bin_picking_number": { - "type": ["null", "string"] - }, - "external_id": { - "type": ["null", "string"] - }, - "fulfillment_source": { - "type": ["null", "string"] - }, - "brand": { - "type": ["null", "string"] - }, - "gift_certificate_id": { - "type": ["null", "integer"] - }, - "applied_discounts": { - "type": ["null", "array"] - }, - "applied_discounts": { - "type": ["null", "array"] - }, - "product_options": { - "type": ["null", "array"] - }, - "configurable_fields": { - "type": ["null", "array"] - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/orders.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/orders.json deleted file mode 100644 index c3743441ffd3..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/orders.json +++ /dev/null @@ -1,271 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_shipped": { - "type": ["null", "string"], - "format": "date-time" - }, - "cart_id": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "subtotal_tax": { - "type": ["null", "string"] - }, - "shipping_cost_tax": { - "type": ["null", "string"] - }, - "shipping_cost_tax_class_id": { - "type": ["null", "integer"] - }, - "handling_cost_tax": { - "type": ["null", "string"] - }, - "handling_cost_tax_class_id": { - "type": ["null", "integer"] - }, - "wrapping_cost_tax": { - "type": ["null", "string"] - }, - "wrapping_cost_tax_class_id": { - "type": ["null", "integer"] - }, - "payment_status": { - "type": ["null", "string"] - }, - "store_credit_amount": { - "type": ["null", "string"] - }, - "gift_certificate_amount": { - "type": ["null", "string"] - }, - "currency_id": { - "type": ["null", "integer"] - }, - "currency_code": { - "type": ["null", "string"] - }, - "currency_exchange_rate": { - "type": ["null", "string"] - }, - "default_currency_id": { - "type": ["null", "integer"] - }, - "coupon_discount": { - "type": ["null", "string"] - }, - "shipping_address_count": { - "type": ["null", "integer"] - }, - "is_email_opt_in": { - "type": ["null", "boolean"] - }, - "order_source": { - "type": ["null", "string"] - }, - "products": { - "type": ["null", "object"], - "properties": { - "url": { - "type": ["null", "string"] - }, - "resource": { - "type": ["null", "string"] - } - } - }, - "shipping_addresses": { - "type": ["null", "object"], - "properties": { - "url": { - "type": ["null", "string"] - }, - "resource": { - "type": ["null", "string"] - } - } - }, - "coupons": { - "type": ["null", "object"], - "properties": { - "url": { - "type": ["null", "string"] - }, - "resource": { - "type": ["null", "string"] - } - } - }, - "status_id": { - "type": ["null", "integer"] - }, - "base_handling_cost": { - "type": ["null", "string"] - }, - "base_shipping_cost": { - "type": ["null", "string"] - }, - "base_wrapping_cost": { - "oneOf": [{ "type": ["null", "integer"] }, { "type": ["null", "string"] }] - }, - "billing_address": { - "type": ["null", "object"], - "properties": { - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "company": { - "type": ["null", "string"] - }, - "street_1": { - "type": ["null", "string"] - }, - "street_2": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "zip": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "country_iso2": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - }, - "email": { - "type": ["null", "string"] - }, - "form_fields": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "name": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - } - } - }, - "channel_id": { - "type": ["null", "integer"] - }, - "customer_id": { - "type": ["null", "integer"] - }, - "customer_message": { - "type": ["null", "string"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "default_currency_code": { - "type": ["null", "string"] - }, - "discount_amount": { - "type": ["null", "string"] - }, - "ebay_order_id": { - "type": ["null", "string"] - }, - "external_id": { - "type": ["null", "string"] - }, - "external_source": { - "type": ["null", "string"] - }, - "geoip_country": { - "type": ["null", "string"] - }, - "geoip_country_iso2": { - "type": ["null", "string"] - }, - "handling_cost_ex_tax": { - "type": ["null", "string"] - }, - "handling_cost_inc_tax": { - "type": ["null", "string"] - }, - "ip_address": { - "type": ["null", "string"] - }, - "is_deleted": { - "type": ["null", "boolean"] - }, - "items_shipped": { - "type": ["null", "integer"] - }, - "items_total": { - "type": ["null", "integer"] - }, - "order_is_digital": { - "type": ["null", "boolean"] - }, - "payment_method": { - "type": ["null", "string"] - }, - "refunded_amount": { - "type": ["null", "string"] - }, - "shipping_cost_ex_tax": { - "type": ["null", "string"] - }, - "shipping_cost_inc_tax": { - "type": ["null", "string"] - }, - "staff_notes": { - "type": ["null", "string"] - }, - "subtotal_ex_tax": { - "type": ["null", "string"] - }, - "subtotal_inc_tax": { - "type": ["null", "string"] - }, - "tax_provider_id": { - "type": ["null", "string"] - }, - "customer_locale": { - "type": ["null", "string"] - }, - "total_ex_tax": { - "type": ["null", "string"] - }, - "total_inc_tax": { - "type": ["null", "string"] - }, - "wrapping_cost_ex_tax": { - "type": ["null", "string"] - }, - "wrapping_cost_inc_tax": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/pages.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/pages.json deleted file mode 100644 index 003984b52eea..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/pages.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "email": { - "type": ["null", "string"] - }, - "meta_title": { - "type": ["null", "string"] - }, - "body": { - "type": ["null", "string"] - }, - "feed": { - "type": ["null", "string"] - }, - "link": { - "type": ["null", "string"] - }, - "contact_fields": { - "type": ["null", "string"] - }, - "meta_keywords": { - "type": ["null", "string"] - }, - "meta_description": { - "type": ["null", "string"] - }, - "search_keywords": { - "type": ["null", "string"] - }, - "url": { - "type": ["null", "string"] - }, - "channel_id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "is_visible": { - "type": ["null", "boolean"] - }, - "parent_id": { - "type": ["null", "integer"] - }, - "sort_order": { - "type": ["null", "integer"] - }, - "type": { - "type": ["null", "string"] - }, - "is_homepage": { - "type": ["null", "boolean"] - }, - "is_customers_only": { - "type": ["null", "boolean"] - }, - "id": { - "type": ["null", "integer"] - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/products.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/products.json deleted file mode 100644 index af01020e9a35..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/products.json +++ /dev/null @@ -1,797 +0,0 @@ -{ - "type": "object", - "title": "Product Response", - "properties": { - "name": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "string"] - }, - "sku": { - "type": ["null", "string"] - }, - "description": { - "type": ["null", "string"] - }, - "weight": { - "type": ["null", "number"], - "format": "float" - }, - "width": { - "type": ["null", "number"], - "format": "float" - }, - "depth": { - "type": ["null", "number"], - "format": "float" - }, - "height": { - "type": ["null", "number"], - "format": "float" - }, - "price": { - "type": ["null", "number"], - "format": "float" - }, - "cost_price": { - "type": ["null", "number"], - "format": "float" - }, - "retail_price": { - "type": ["null", "number"], - "format": "float" - }, - "sale_price": { - "type": ["null", "number"], - "format": "float" - }, - "map_price": { - "type": ["null", "number"] - }, - "tax_class_id": { - "type": ["null", "integer"] - }, - "product_tax_code": { - "type": ["null", "string"] - }, - "categories": { - "type": ["null", "array"], - "items": { - "type": ["null", "integer"] - } - }, - "brand_id": { - "type": ["null", "integer"] - }, - "inventory_level": { - "type": ["null", "integer"] - }, - "inventory_warning_level": { - "type": ["null", "integer"] - }, - "inventory_tracking": { - "type": ["null", "string"] - }, - "fixed_cost_shipping_price": { - "type": ["null", "number"], - "format": "float" - }, - "is_free_shipping": { - "type": ["null", "boolean"] - }, - "is_visible": { - "type": ["null", "boolean"] - }, - "is_featured": { - "type": ["null", "boolean"] - }, - "related_products": { - "type": ["null", "array"], - "items": { - "type": ["null", "integer"] - } - }, - "warranty": { - "type": ["null", "string"] - }, - "bin_picking_number": { - "type": ["null", "string"] - }, - "layout_file": { - "type": ["null", "string"] - }, - "upc": { - "type": ["null", "string"] - }, - "search_keywords": { - "type": ["null", "string"] - }, - "availability": { - "type": ["null", "string"] - }, - "availability_description": { - "type": ["null", "string"] - }, - "gift_wrapping_options_type": { - "type": ["null", "string"] - }, - "gift_wrapping_options_list": { - "type": ["null", "array"], - "items": { - "type": ["null", "integer"] - } - }, - "sort_order": { - "type": ["null", "integer"] - }, - "condition": { - "type": ["null", "string"] - }, - "is_condition_shown": { - "type": ["null", "boolean"] - }, - "order_quantity_minimum": { - "type": ["null", "integer"] - }, - "order_quantity_maximum": { - "type": ["null", "integer"] - }, - "page_title": { - "type": ["null", "string"] - }, - "meta_keywords": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "meta_description": { - "type": ["null", "string"] - }, - "view_count": { - "type": ["null", "integer"] - }, - "preorder_release_date": { - "type": ["null", "string"], - "format": "date-time" - }, - "preorder_message": { - "type": ["null", "string"] - }, - "is_preorder_only": { - "type": ["null", "boolean"] - }, - "is_price_hidden": { - "type": ["null", "boolean"] - }, - "price_hidden_label": { - "type": ["null", "string"] - }, - "custom_url": { - "type": ["null", "object"], - "title": "customUrl_Full", - "properties": { - "url": { - "type": ["null", "string"] - }, - "is_customized": { - "type": ["null", "boolean"] - } - } - }, - "open_graph_type": { - "type": ["null", "string"] - }, - "open_graph_title": { - "type": ["null", "string"] - }, - "open_graph_description": { - "type": ["null", "string"] - }, - "open_graph_use_meta_description": { - "type": ["null", "boolean"] - }, - "open_graph_use_product_name": { - "type": ["null", "boolean"] - }, - "open_graph_use_image": { - "type": ["null", "boolean"] - }, - "brand_name or brand_id": { - "type": ["null", "string"] - }, - "gtin": { - "type": ["null", "string"] - }, - "mpn": { - "type": ["null", "string"] - }, - "reviews_rating_sum": { - "type": ["null", "integer"] - }, - "reviews_count": { - "type": ["null", "integer"] - }, - "total_sold": { - "type": ["null", "integer"] - }, - "custom_fields": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "title": "productCustomField_Put", - "required": ["name", "value"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "value": { - "type": ["null", "string"] - } - } - } - }, - "bulk_pricing_rules": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "title": "bulkPricingRule_Full", - "required": ["quantity_min", "quantity_max", "type", "amount"], - "properties": { - "id": { - "type": ["null", "integer"] - }, - "quantity_min": { - "type": ["null", "integer"] - }, - "quantity_max": { - "type": ["null", "integer"] - }, - "type": { - "type": ["null", "string"] - }, - "amount": { - "type": ["null", "integer"] - } - } - } - }, - "images": { - "type": ["null", "array"], - "items": { - "title": "productImage_Full", - "type": ["null", "object"], - "properties": { - "image_file": { - "type": ["null", "string"] - }, - "is_thumbnail": { - "type": ["null", "boolean"] - }, - "sort_order": { - "type": ["null", "integer"] - }, - "description": { - "type": ["null", "string"] - }, - "image_url": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "integer"] - }, - "product_id": { - "type": ["null", "integer"] - }, - "url_zoom": { - "type": ["null", "string"] - }, - "url_standard": { - "type": ["null", "string"] - }, - "url_thumbnail": { - "type": ["null", "string"] - }, - "url_tiny": { - "type": ["null", "string"] - }, - "date_modified": { - "format": "date-time", - "type": ["null", "string"] - } - } - } - }, - "videos": { - "type": ["null", "array"], - "items": { - "title": "productVideo_Full", - "type": ["null", "object"], - "properties": { - "title": { - "type": ["null", "string"] - }, - "description": { - "type": ["null", "string"] - }, - "sort_order": { - "type": ["null", "integer"] - }, - "type": { - "type": ["null", "string"] - }, - "video_id": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "integer"] - }, - "product_id": { - "type": ["null", "integer"] - }, - "length": { - "type": ["null", "string"] - } - } - } - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_modified": { - "type": ["null", "string"], - "format": "date-time" - }, - "id": { - "type": ["null", "integer"] - }, - "base_variant_id": { - "type": ["null", "integer"] - }, - "calculated_price": { - "type": ["null", "number"], - "format": "float" - }, - "options": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "title": "productOption_Base", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "product_id": { - "type": ["null", "integer"] - }, - "display_name": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "string"] - }, - "config": { - "type": ["null", "object"], - "title": "productOptionConfig_Full", - "properties": { - "default_value": { - "type": ["null", "string"] - }, - "checked_by_default": { - "type": ["null", "boolean"] - }, - "checkbox_label": { - "type": ["null", "string"] - }, - "date_limited": { - "type": ["null", "boolean"] - }, - "date_limit_mode": { - "type": ["null", "string"] - }, - "date_earliest_value": { - "type": ["null", "string"], - "format": "date" - }, - "date_latest_value": { - "type": ["null", "string"], - "format": "date" - }, - "file_types_mode": { - "type": ["null", "string"] - }, - "file_types_supported": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "file_types_other": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "file_max_size": { - "type": ["null", "integer"] - }, - "text_characters_limited": { - "type": ["null", "boolean"] - }, - "text_min_length": { - "type": ["null", "integer"] - }, - "text_max_length": { - "type": ["null", "integer"] - }, - "text_lines_limited": { - "type": ["null", "boolean"] - }, - "text_max_lines": { - "type": ["null", "integer"] - }, - "number_limited": { - "type": ["null", "boolean"] - }, - "number_limit_mode": { - "type": ["null", "string"] - }, - "number_lowest_value": { - "type": ["null", "number"] - }, - "number_highest_value": { - "type": ["null", "number"] - }, - "number_integers_only": { - "type": ["null", "boolean"] - }, - "product_list_adjusts_inventory": { - "type": ["null", "boolean"] - }, - "product_list_adjusts_pricing": { - "type": ["null", "boolean"] - }, - "product_list_shipping_calc": { - "type": ["null", "string"] - } - } - }, - "sort_order": { - "type": ["null", "integer"] - }, - "option_values": { - "title": "productOptionOptionValue_Full", - "type": ["null", "object"], - "required": ["label", "sort_order"], - "properties": { - "is_default": { - "type": ["null", "boolean"] - }, - "label": { - "type": ["null", "string"] - }, - "sort_order": { - "type": ["null", "integer"] - }, - "value_data": { - "type": ["object", "null"] - }, - "id": { - "type": ["null", "integer"] - } - } - } - } - } - }, - "modifiers": { - "type": ["null", "array"], - "items": { - "title": "productModifier_Full", - "type": ["null", "object"], - "required": ["type", "required"], - "properties": { - "type": { - "type": ["null", "string"] - }, - "required": { - "type": ["null", "boolean"] - }, - "sort_order": { - "type": ["null", "integer"] - }, - "config": { - "type": ["null", "object"], - "title": "config_Full", - "properties": { - "default_value": { - "type": ["null", "string"] - }, - "checked_by_default": { - "type": ["null", "boolean"] - }, - "checkbox_label": { - "type": ["null", "string"] - }, - "date_limited": { - "type": ["null", "boolean"] - }, - "date_limit_mode": { - "type": ["null", "string"] - }, - "date_earliest_value": { - "type": ["null", "string"], - "format": "date" - }, - "date_latest_value": { - "type": ["null", "string"], - "format": "date" - }, - "file_types_mode": { - "type": ["null", "string"] - }, - "file_types_supported": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "file_types_other": { - "type": ["null", "array"], - "items": { - "type": ["null", "string"] - } - }, - "file_max_size": { - "type": ["null", "integer"] - }, - "text_characters_limited": { - "type": ["null", "boolean"] - }, - "text_min_length": { - "type": ["null", "integer"] - }, - "text_max_length": { - "type": ["null", "integer"] - }, - "text_lines_limited": { - "type": ["null", "boolean"] - }, - "text_max_lines": { - "type": ["null", "integer"] - }, - "number_limited": { - "type": ["null", "boolean"] - }, - "number_limit_mode": { - "type": ["null", "string"] - }, - "number_lowest_value": { - "type": ["null", "number"] - }, - "number_highest_value": { - "type": ["null", "number"] - }, - "number_integers_only": { - "type": ["null", "boolean"] - }, - "product_list_adjusts_inventory": { - "type": ["null", "boolean"] - }, - "product_list_adjusts_pricing": { - "type": ["null", "boolean"] - }, - "product_list_shipping_calc": { - "type": ["null", "string"] - } - } - }, - "display_name": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "integer"] - }, - "product_id": { - "type": ["null", "integer"] - }, - "name": { - "type": ["null", "string"] - }, - "option_values": { - "type": ["null", "array"], - "items": { - "title": "productModifierOptionValue_Full", - "type": ["null", "object"], - "required": ["label", "sort_order"], - "properties": { - "is_default": { - "type": ["null", "boolean"] - }, - "label": { - "type": ["null", "string"] - }, - "sort_order": { - "type": ["null", "integer"] - }, - "value_data": { - "type": ["object", "null"] - }, - "adjusters": { - "type": ["null", "object"], - "title": "adjusters_Full", - "properties": { - "price": { - "type": ["null", "object"], - "title": "adjuster_Full", - "properties": { - "adjuster": { - "type": ["null", "string"] - }, - "adjuster_value": { - "type": ["null", "number"] - } - } - }, - "weight": { - "type": ["null", "object"], - "title": "adjuster_Full", - "properties": { - "adjuster": { - "type": ["null", "string"] - }, - "adjuster_value": { - "type": ["null", "number"] - } - } - }, - "image_url": { - "type": ["null", "string"] - }, - "purchasing_disabled": { - "type": ["null", "object"], - "properties": { - "status": { - "type": ["null", "boolean"] - }, - "message": { - "type": ["null", "string"] - } - } - } - } - }, - "id": { - "type": ["null", "integer"] - }, - "option_id": { - "type": ["null", "integer"] - } - } - } - } - } - } - }, - "option_set_id": { - "type": ["null", "integer"] - }, - "option_set_display": { - "type": ["null", "string"] - }, - "variants": { - "type": ["null", "array"], - "items": { - "title": "productVariant_Full", - "type": ["null", "object"], - "properties": { - "cost_price": { - "type": ["null", "number"], - "format": "double" - }, - "price": { - "type": ["null", "number"], - "format": "double" - }, - "sale_price": { - "type": ["null", "number"], - "format": "double" - }, - "retail_price": { - "type": ["null", "number"], - "format": "double" - }, - "weight": { - "type": ["null", "number"], - "format": "double" - }, - "width": { - "type": ["null", "number"], - "format": "double" - }, - "height": { - "type": ["null", "number"], - "format": "double" - }, - "depth": { - "type": ["null", "number"], - "format": "double" - }, - "is_free_shipping": { - "type": ["null", "boolean"] - }, - "fixed_cost_shipping_price": { - "type": ["null", "number"], - "format": "double" - }, - "purchasing_disabled": { - "type": ["null", "boolean"] - }, - "purchasing_disabled_message": { - "type": ["null", "string"] - }, - "upc": { - "type": ["null", "string"] - }, - "inventory_level": { - "type": ["null", "integer"] - }, - "inventory_warning_level": { - "type": ["null", "integer"] - }, - "bin_picking_number": { - "type": ["null", "string"] - }, - "mpn": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "integer"] - }, - "product_id": { - "type": ["null", "integer"] - }, - "sku": { - "type": ["null", "string"] - }, - "sku_id": { - "type": ["null", "integer"] - }, - "option_values": { - "type": ["null", "array"], - "items": { - "title": "productVariantOptionValue_Full", - "type": ["null", "object"], - "properties": { - "option_display_name": { - "type": ["null", "string"] - }, - "label": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "integer"] - }, - "option_id": { - "type": ["null", "integer"] - } - } - } - }, - "calculated_price": { - "type": ["null", "number"], - "format": "double" - }, - "calculated_weight": { - "type": "number" - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/shared/meta.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/shared/meta.json deleted file mode 100644 index 0622da2f41f4..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/shared/meta.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "pagination": { - "type": ["null", "object"], - "properties": { - "total": { - "type": ["null", "integer"] - }, - "count": { - "type": ["null", "integer"] - }, - "per_page": { - "type": ["null", "integer"] - }, - "current_page": { - "type": ["null", "integer"] - }, - "total_pages": { - "type": ["null", "integer"] - }, - "links": { - "type": ["null", "object"], - "properties": { - "previous": { - "type": ["null", "string"] - }, - "current": { - "type": ["null", "string"] - }, - "next": { - "type": ["null", "string"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/store.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/store.json deleted file mode 100644 index 22a6188fa281..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/store.json +++ /dev/null @@ -1,185 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": ["null", "string"] - }, - "account_uuid": { - "type": ["null", "string"] - }, - "domain": { - "type": ["null", "string"] - }, - "secure_url": { - "type": ["null", "string"] - }, - "control_panel_base_url": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "first_name": { - "type": ["null", "string"] - }, - "last_name": { - "type": ["null", "string"] - }, - "address": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "country_code": { - "type": ["null", "string"] - }, - "phone": { - "type": ["null", "string"] - }, - "admin_email": { - "type": ["null", "string"] - }, - "order_email": { - "type": ["null", "string"] - }, - "favicon_url": { - "type": ["null", "string"] - }, - "timezone": { - "type": ["null", "object"], - "properties": { - "name": { - "type": ["null", "string"] - }, - "raw_offset": { - "type": ["null", "integer"] - }, - "dst_offset": { - "type": ["null", "integer"] - }, - "date_format": { - "type": ["null", "object"], - "properties": { - "display": { - "type": ["null", "string"] - }, - "export": { - "type": ["null", "string"] - }, - "extended_display": { - "type": ["null", "string"] - } - } - } - } - }, - "language": { - "type": ["null", "string"] - }, - "currency": { - "type": ["null", "string"] - }, - "currency_symbol": { - "type": ["null", "string"] - }, - "decimal_separator": { - "type": ["null", "string"] - }, - "thousands_separator": { - "type": ["null", "string"] - }, - "decimal_places": { - "type": ["null", "integer"] - }, - "currency_symbol_location": { - "type": ["null", "string"] - }, - "weight_units": { - "type": ["null", "string"] - }, - "dimension_units": { - "type": ["null", "string"] - }, - "dimension_decimal_places": { - "type": ["null", "integer"] - }, - "dimension_decimal_token": { - "type": ["null", "string"] - }, - "dimension_thousands_token": { - "type": ["null", "string"] - }, - "plan_name": { - "type": ["null", "string"] - }, - "plan_level": { - "type": ["null", "string"] - }, - "plan_is_trial": { - "type": ["null", "boolean"] - }, - "industry": { - "type": ["null", "string"] - }, - "logo": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "url": { - "type": ["null", "string"] - } - } - } - }, - "is_price_entered_with_tax": { - "type": ["null", "boolean"] - }, - "store_id": { - "type": ["null", "integer"] - }, - "default_site_id": { - "type": ["null", "integer"] - }, - "default_channel_id": { - "type": ["null", "integer"] - }, - "active_comparison_modules": { - "type": ["null", "array"] - }, - "features": { - "type": ["null", "object"], - "properties": { - "stencil_enabled": { - "type": ["null", "boolean"] - }, - "sitewidehttps_enabled": { - "type": ["null", "boolean"] - }, - "facebook_catalog_id": { - "type": ["null", "string"] - }, - "checkout_type": { - "type": ["null", "string"] - }, - "wishlists_enabled": { - "type": ["null", "boolean"] - }, - "graphql_storefront_api_enabled": { - "type": ["null", "boolean"] - }, - "shopper_consent_tracking_enabled": { - "type": ["null", "boolean"] - }, - "multi_storefront_enabled": { - "type": ["null", "boolean"] - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/transactions.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/transactions.json deleted file mode 100644 index c2731c2cc44d..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/transactions.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "event": { - "type": ["null", "string"] - }, - "method": { - "type": ["null", "string"] - }, - "amount": { - "type": ["null", "number"] - }, - "currency": { - "type": ["null", "string"] - }, - "gateway": { - "type": ["null", "string"] - }, - "gateway_transaction_id": { - "type": ["null", "string"] - }, - "date_created": { - "type": ["null", "string"] - }, - "test": { - "type": ["null", "boolean"] - }, - "status": { - "type": ["null", "string"] - }, - "fraud_review": { - "type": ["null", "boolean"] - }, - "reference_transaction_id": { - "type": ["null", "integer"] - }, - "offline": { - "type": ["null", "object"], - "properties": { - "display_name": { - "type": ["null", "string"] - } - } - }, - "custom": { - "type": ["null", "object"], - "properties": { - "payment_method": { - "type": ["null", "string"] - } - } - }, - "payment_method_id": { - "type": ["null", "string"] - }, - "id": { - "type": ["null", "integer"] - }, - "order_id": { - "type": ["null", "string"] - }, - "payment_instrument_token": { - "type": ["null", "string"] - }, - "avs_result": { - "type": ["null", "object"], - "properties": { - "code": { - "type": ["null", "string"] - }, - "message": { - "type": ["null", "string"] - }, - "street_match": { - "type": ["null", "string"] - }, - "postal_match": { - "type": ["null", "string"] - } - } - }, - "cvv_result": { - "type": ["null", "object"], - "properties": { - "code": { - "type": ["null", "string"] - }, - "message": { - "type": ["null", "string"] - } - } - }, - "credit_card": { - "type": ["null", "object"], - "properties": { - "card_type": { - "type": ["null", "string"] - }, - "card_iin": { - "type": ["null", "string"] - }, - "card_last4": { - "type": ["null", "string"] - }, - "card_expiry_month": { - "type": ["null", "integer"] - }, - "card_expiry_year": { - "type": ["null", "integer"] - } - } - }, - "gift_certificate": { - "type": ["null", "object"], - "properties": { - "code": { - "type": ["null", "string"] - }, - "original_balance": { - "type": ["null", "integer"] - }, - "starting_balance": { - "type": ["null", "integer"] - }, - "remaining_balance": { - "type": ["null", "integer"] - }, - "status": { - "type": ["null", "string"] - } - } - }, - "store_credit": { - "type": ["null", "object"], - "properties": { - "remaining_balance": { - "type": ["null", "integer"] - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/source.py b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/source.py deleted file mode 100644 index 997d0eb20418..000000000000 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceBigcommerce(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/docs/integrations/sources/bigcommerce.md b/docs/integrations/sources/bigcommerce.md index 1a77c343ca39..8af729f92416 100644 --- a/docs/integrations/sources/bigcommerce.md +++ b/docs/integrations/sources/bigcommerce.md @@ -58,6 +58,7 @@ BigCommerce has some [rate limit restrictions](https://developer.bigcommerce.com | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------- | +| 0.3.0 | 2024-10-30 | [47277](https://github.com/airbytehq/airbyte/pull/47277) | Migrate to Manifest-only | | 0.2.22 | 2024-10-28 | [47117](https://github.com/airbytehq/airbyte/pull/47117) | Update dependencies | | 0.2.21 | 2024-10-12 | [46840](https://github.com/airbytehq/airbyte/pull/46840) | Update dependencies | | 0.2.20 | 2024-10-05 | [46453](https://github.com/airbytehq/airbyte/pull/46453) | Update dependencies | From 45eed0b0c9b49c4019fde7d562bec915912ae622 Mon Sep 17 00:00:00 2001 From: Xiaohan Song Date: Wed, 30 Oct 2024 15:40:08 -0700 Subject: [PATCH 495/808] [source-mysql-v2] Add server timezone (#48016) --- .../connectors/source-mysql-v2/metadata.yaml | 2 +- .../mysql/cdc/MySqlDebeziumOperations.kt | 83 ++++++++++--------- 2 files changed, 46 insertions(+), 39 deletions(-) diff --git a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml index 2f6b898a1759..d0d4a8113bfe 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml +++ b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: database connectorType: source definitionId: 561393ed-7e3a-4d0d-8b8b-90ded371754c - dockerImageTag: 0.0.29 + dockerImageTag: 0.0.30 dockerRepository: airbyte/source-mysql-v2 documentationUrl: https://docs.airbyte.com/integrations/sources/mysql githubIssueLabel: source-mysql-v2 diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt index 7efdbfac8e0c..63bd24c2d153 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/cdc/MySqlDebeziumOperations.kt @@ -341,44 +341,51 @@ class MySqlDebeziumOperations( val commonProperties: Map by lazy { val tunnelSession: TunnelSession = jdbcConnectionFactory.ensureTunnelSession() - DebeziumPropertiesBuilder() - .withDefault() - .withConnector(MySqlConnector::class.java) - .withDebeziumName(databaseName) - .withHeartbeats(configuration.debeziumHeartbeatInterval) - // This to make sure that binary data represented as a base64-encoded String. - // https://debezium.io/documentation/reference/2.2/connectors/mysql.html#mysql-property-binary-handling-mode - .with("binary.handling.mode", "base64") - // https://debezium.io/documentation/reference/2.2/connectors/mysql.html#mysql-property-snapshot-mode - .with("snapshot.mode", "when_needed") - // https://debezium.io/documentation/reference/2.2/connectors/mysql.html#mysql-property-snapshot-locking-mode - // This is to make sure other database clients are allowed to write to a table while - // Airbyte is taking a snapshot. There is a risk involved that if any database client - // makes a schema change then the sync might break - .with("snapshot.locking.mode", "none") - // https://debezium.io/documentation/reference/2.2/connectors/mysql.html#mysql-property-include-schema-changes - .with("include.schema.changes", "false") - .with( - "connect.keep.alive.interval.ms", - configuration.debeziumKeepAliveInterval.toMillis().toString(), - ) - .withDatabase(configuration.jdbcProperties) - .withDatabase("hostname", tunnelSession.address.hostName) - .withDatabase("port", tunnelSession.address.port.toString()) - .withDatabase("dbname", databaseName) - .withDatabase("server.id", serverID.toString()) - .withDatabase("include.list", databaseName) - .withOffset() - .withSchemaHistory() - .with("converters", "datetime,numeric,boolean") - .with( - "datetime.type", - MySQLDateTimeConverter::class.java.getName(), - ) - .with("numeric.type", MySQLNumericConverter::class.java.getName()) - .with("boolean.type", MySQLBooleanConverter::class.java.getName()) - // TODO: add missing properties, like MySQL converters, etc. Do a full audit. - .buildMap() + val dbzPropertiesBuilder = + DebeziumPropertiesBuilder() + .withDefault() + .withConnector(MySqlConnector::class.java) + .withDebeziumName(databaseName) + .withHeartbeats(configuration.debeziumHeartbeatInterval) + // This to make sure that binary data represented as a base64-encoded String. + // https://debezium.io/documentation/reference/2.2/connectors/mysql.html#mysql-property-binary-handling-mode + .with("binary.handling.mode", "base64") + // https://debezium.io/documentation/reference/2.2/connectors/mysql.html#mysql-property-snapshot-mode + .with("snapshot.mode", "when_needed") + // https://debezium.io/documentation/reference/2.2/connectors/mysql.html#mysql-property-snapshot-locking-mode + // This is to make sure other database clients are allowed to write to a table while + // Airbyte is taking a snapshot. There is a risk involved that if any database + // client + // makes a schema change then the sync might break + .with("snapshot.locking.mode", "none") + // https://debezium.io/documentation/reference/2.2/connectors/mysql.html#mysql-property-include-schema-changes + .with("include.schema.changes", "false") + .with( + "connect.keep.alive.interval.ms", + configuration.debeziumKeepAliveInterval.toMillis().toString(), + ) + .withDatabase(configuration.jdbcProperties) + .withDatabase("hostname", tunnelSession.address.hostName) + .withDatabase("port", tunnelSession.address.port.toString()) + .withDatabase("dbname", databaseName) + .withDatabase("server.id", serverID.toString()) + .withDatabase("include.list", databaseName) + .withOffset() + .withSchemaHistory() + .with("converters", "datetime,numeric,boolean") + .with( + "datetime.type", + MySQLDateTimeConverter::class.java.getName(), + ) + .with("numeric.type", MySQLNumericConverter::class.java.getName()) + .with("boolean.type", MySQLBooleanConverter::class.java.getName()) + + val serverTimezone: String? = + (configuration.incrementalConfiguration as CdcIncrementalConfiguration).serverTimezone + if (!serverTimezone.isNullOrBlank()) { + dbzPropertiesBuilder.with("database.connectionTimezone", serverTimezone) + } + dbzPropertiesBuilder.buildMap() } val syntheticProperties: Map by lazy { From 1c2f72ec09200b0a3bc04f2fd37b990e9dadd82d Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Wed, 30 Oct 2024 16:21:42 -0700 Subject: [PATCH 496/808] Destination-DuckDB and Destination-MotherDuck: Reduce ram reservation requirements for `CHECK` operation (#47690) --- .../connectors/destination-duckdb/metadata.yaml | 4 ++-- .../connectors/destination-motherduck/metadata.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/destination-duckdb/metadata.yaml b/airbyte-integrations/connectors/destination-duckdb/metadata.yaml index aef2a5922555..71a328f57157 100644 --- a/airbyte-integrations/connectors/destination-duckdb/metadata.yaml +++ b/airbyte-integrations/connectors/destination-duckdb/metadata.yaml @@ -34,8 +34,8 @@ data: jobSpecific: - jobType: check_connection resourceRequirements: - memory_limit: 2Gi - memory_request: 2Gi + memory_limit: 800Mi + memory_request: 800Mi - jobType: sync resourceRequirements: memory_limit: 2Gi diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml index c3d54b77736b..aec986f05bec 100644 --- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml +++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml @@ -26,8 +26,8 @@ data: jobSpecific: - jobType: check_connection resourceRequirements: - memory_limit: 2Gi - memory_request: 2Gi + memory_limit: 800Mi + memory_request: 800Mi - jobType: sync resourceRequirements: memory_limit: 2Gi From 18e63dd938d00d1d44406aa983d234733a0c0816 Mon Sep 17 00:00:00 2001 From: Malik Diarra Date: Wed, 30 Oct 2024 16:39:43 -0700 Subject: [PATCH 497/808] doc: clarify the nature of scopeId in the example rbac script (#48019) --- docs/access-management/role-mapping.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/access-management/role-mapping.md b/docs/access-management/role-mapping.md index 017b4042a6c3..5d4de4c30450 100644 --- a/docs/access-management/role-mapping.md +++ b/docs/access-management/role-mapping.md @@ -41,19 +41,19 @@ Organization-wide permissions and each set of workspace permissions each count a "companyGroup1": [ { "scope": "workspace", - "scopeId": "workspace1", + "scopeId": "11111111-11111111-11111111-11111111", "permissionType": "workspace_admin" }, { "scope": "workspace", - "scopeId": "workspace2", + "scopeId": "22222222-22222222-22222222-22222222", "permissionType": "workspace_reader" } ], "companyGroup2": [ { "scope": "workspace", - "scopeId": "workspace1", + "scopeId": "33333333-33333333-33333333-33333333", "permissionType": "workspace_reader" } ] @@ -61,6 +61,7 @@ Organization-wide permissions and each set of workspace permissions each count a ``` Notes: - `scope` must be set to either 'workspace' or 'organization'. +- `scopeId` must the identifier of scope access is granted for. It is a GUID and for organization scope is always '00000000-00000000-00000000-00000000'. For workspace, refer to the UI and the output of a list workspace to identify your workspaceId. - `permissionType` must be set to a valid value, e.g. 'workspace_admin', 'workspace_reader', 'organization_admin', etc. All valid values are listed [here](https://github.com/airbytehq/airbyte-api-python-sdk/blob/main/src/airbyte_api/models/publicpermissiontype.py). ### Complete Python Script From 08de45adaa50799bd1d9ffa8f5353d75db6c3bc1 Mon Sep 17 00:00:00 2001 From: Natalie Kwong <38087517+nataliekwong@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:48:59 -0700 Subject: [PATCH 498/808] docs: Update major version guidance (#48014) --- .../assets/connector-version-banner.png | Bin 40142 -> 0 bytes docs/managing-airbyte/connector-updates.md | 30 +++++++----------- .../using-airbyte/schema-change-management.md | 18 ++++++++--- 3 files changed, 26 insertions(+), 22 deletions(-) delete mode 100644 docs/managing-airbyte/assets/connector-version-banner.png diff --git a/docs/managing-airbyte/assets/connector-version-banner.png b/docs/managing-airbyte/assets/connector-version-banner.png deleted file mode 100644 index abdb78b643ac8c847b6898e557809f3570be31aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40142 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 diff --git a/docs/managing-airbyte/connector-updates.md b/docs/managing-airbyte/connector-updates.md index 4d5394dec329..c586fa2a631e 100644 --- a/docs/managing-airbyte/connector-updates.md +++ b/docs/managing-airbyte/connector-updates.md @@ -6,21 +6,20 @@ products: oss-community, oss-enterprise While maintaining an Airbyte instance, you'll need to manage connector updates. These are essential for improved functionality, reliability, and compatibility over time. Our team and community contributors are dedicated to maintaining up-to-date connectors. Reasons for updates can be broadly categorized into bug fixes, new features, and changes that impact the user experience or the functionality of the connector. -The issue of compatibility is important in maintaining connectors because as various APIs and databases you're syncing with Airbyte evolve over time, we must review the connectors for compatibility with those changes. Sometimes, this kind of update introduces a breaking change. Without making the changes necessary for an update of this type, your connection will eventually stop working because it will be incompatible with the source or destination API. +As various APIs and databases you're syncing with Airbyte evolve over time, we must review the connectors for compatibility with those changes. Sometimes, this kind of update introduces a notable change that may cause a connection to stop succeeding or your schema to change. Without your review of the changes, your connection may eventually stop working because it will become incompatible with the source or destination API. This guide helps you understand the types of updates you may see, their impact on your Airbyte environment, and the actions you may need to take in response to certain types of updates. ## Understanding Connector Versions To manage connection updates effectively, it's important to understand versioning and how to interpret the changelog entries. -Every connector in Airbyte's catalog follows semantic versioning ([semver](https://semver.org/)) -Major.Minor.Patch (e.g., 1.2.5) +Connectors in Airbyte's catalog generally follow semantic versioning ([semver](https://semver.org/)) Major.Minor.Patch (e.g., 1.2.5) A connector reaching version 1.0 is considered mature and comes with semver guarantees. * **Patch updates (1.0.x):** These typically contain bug fixes and small improvements that won't affect your existing configurations. * **Minor updates (1.x.0):** These might introduce new features like streams or properties, but they are designed to be fully backward compatible with your existing setup. -* **Major updates (x.0.0):** These are significant changes that may require you to adjust your configurations. We'll discuss this in more detail below. +* **Major updates (x.0.0):** These are significant changes that may require your review. We'll discuss this in more detail below. Each connector's changelog details its update history. You can find it in the [connector catalog](../integrations/) at the end of each individual connector's entry. @@ -30,40 +29,35 @@ Each connector's changelog details its update history. You can find it in the [c ## How Airbyte Handles Connector Updates ### Airbyte Cloud -**Minor and Patch Updates:** These are applied automatically and immediately to your instance. You don't need to take any action. +**Minor and Patch Versions:** These are applied automatically and immediately to your instance. You don't need to take any action. -**Major Updates:** These are opt-in during a specified timeframe to give you a window to prepare for the change. Airbyte will alert you of a new major version that includes a breaking change, but continue to sync until the cutoff date for upgrade. If you choose not to opt-in by the deadline, any syncs using the affected connector will be paused to prevent compatibility issues. Examples of major version changes are listed in our [breaking change documentation]./using-airbyte/schema-change-management#resolving-breaking-changes) - -Updates involving a breaking change will be called out in the UI. The example below shows a prompt that you might see if a connector has passed its cutoff date for upgrade. - -![Upgrade Path](assets/connector-version-banner.png) +**Major Versions:** A major version will include notable changes that affect your schema or sync success. We will notify you ahead of time to give you a window to prepare for the change. At the end of the window, we will automatically upgrade your connector to ensure you receive the latest updates. Examples of major version changes are shared in our [breaking change documentation](./using-airbyte/schema-change-management#major-connector-version-upgrades). ## Airbyte Open Source (OSS) and Self-Managed Enterprise (SME) Airbyte recommends using an updated version of Airbyte when updating connections. -**All Updates (Major, Minor, Patch):** These are opt-in via the settings page. You'll see a badge in the sidebar indicating available updates. +**All Versions (Major, Minor, Patch):** These are opt-in via the settings page. You'll see a badge in the sidebar indicating available updates. -**Minor and Patch Updates:** Once you opt-in, these are applied immediately and globally to all connectors of that type in your instance. +**Minor and Patch Versions:** Once you opt-in, these are applied immediately and globally to all connectors of that type in your instance. -**Major Updates:** These require a two-step opt-in process: +**Major Versions:** These require a two-step opt-in process: 1. Opt-in to the update on the settings page. 2. While there is an option available to upgrade all connections at once, we recommend that you accept the update for each individual connection using the affected connector. This allows you to review and potentially adjust the connection settings before applying the update. -Note that in an Airbyte Open Source or Self-Managed Enterprise instance, syncs are not automatically paused. This differs from what you would see in Airbyte Cloud. Although syncs will not be paused if you miss the deadline for a major update, we recommended you update promptly to avoid potential compatibility issues. +When new major versions are released, we recommended you update promptly to avoid potential compatibility issues. ## Actions to Take in Response to Connector Updates ### Review the Changelog: -Before applying any update, carefully review the changelog to understand the changes and their potential impact on your existing connections. You can find the changelog for any connector by navigating to the bottom of the documentation for the connector and expanding the view. - +Before applying any update, carefully review the changelog to understand the changes and their potential impact on your existing connections. You can find the changelog for any connector by navigating to the bottom of the documentation for the connector and expanding the view. Major version releases will also include a migration guide. ### Plan for Major Updates: -Major updates may require you to adjust connection settings or even make changes to your data pipelines. Be sure to allocate time and resources for this. +Major updates may require you to adjust connection settings or even make changes to your data pipelines. Be sure to allocate time and resources for this. Use the migration guide to ensure your transition process goes smoothly. :::info -Important Note: Airbyte provides tooling that guarantees safe connector version bumps and enforces automated version bumps for minor and patch updates. You will always need to manually update for major version bumps. +Airbyte provides tooling that guarantees safe connector version bumps and enforces automated version bumps for minor and patch updates. You will always need to manually update for major version bumps. ::: \ No newline at end of file diff --git a/docs/using-airbyte/schema-change-management.md b/docs/using-airbyte/schema-change-management.md index b1e8db9f0062..7c0f33a4f13c 100644 --- a/docs/using-airbyte/schema-change-management.md +++ b/docs/using-airbyte/schema-change-management.md @@ -106,18 +106,28 @@ In addition to Airbyte's automatic schema change detection, you can manually ref ## Major Connector Version Upgrades For Cloud users, connectors are generally shipped to you with enhancements and improvements without any action needed from you. -However, connectors may periodically require your approval to upgrade to a new major version. Airbyte will alert you of the new version but continue to sync until the cutoff date for upgrade, giving you a window in which to preview and prepare for any changes. It is **highly recommended** to upgrade before the cutoff date to ensure you continue syncing without interruption. After the window has closed, connections will be automatically disabled to prevent sync failures or sync anomalies, and you'll need to manually upgrade to the new version to continue syncing. +However, connectors may periodically require your approval to upgrade to a new major version. Airbyte will alert you of the new version and give you a window to manually upgrade yourself to preview and prepare for any changes. + +:::tip +It is **highly recommended** to upgrade before the cutoff date to ensure you understand the upcoming changes to your data, as it may affect downstream services and data models. After the window has closed, connections will be automatically upgraded to the new version. +::: When publishing a new version of a connector, Airbyte only considers the following scenarios as reasons as significant enough for a major version release: | Type of Change | Description | | -------------- | -------------- | -| Connector Specification Change | The configuration has been changed and syncs will fail until users reconfigure or re-authenticate. | -| Schema Change | The type of property previously present within a record has changed and a refresh of the source schema is required. | -| Stream or Property Removal | Data that was previously being synced is no longer going to be synced | +| Schema Change | A field or stream was renamed, or the data type of a field has changed. | +| Stream or Property Removal | Data that was previously being synced is no longer going to be synced | +| Addition of a new sync mode | Airbyte now offers a new, more efficient way to sync data. | +| Modifications to a source-defined primary key | The primary key has been added or modified to improve sync accuracy. | +| Connector Configuration (Specification) Change | The configuration has changed and may require re-authentication or a new configuration input. | | Destination Format / Normalization Change | The way the destination writes the final data or how Airbyte cleans that data is changing in a way that requires a full refresh | | State Changes | The format of the source’s state has changed, and the full dataset will need to be re-synced | +We expect that most users will gracefully continue syncing successfully with most major version updates. However, users using a destination that does not utilize [Typing & Deduping](./using-airbyte/core-concepts/typing-deduping) will experience sync failures if the major version includes a data type change. + + +### Upgrading your connector To review major connector version changes and upgrade your connector: 1. In the Airbyte UI, click **Connections** and select the connection with a major version change. From 711dfaaf45d490d8d73ed0dfd860888a1fb11c4d Mon Sep 17 00:00:00 2001 From: Marius Posta Date: Wed, 30 Oct 2024 20:16:33 -0700 Subject: [PATCH 499/808] bulk-cdk-toolkit-extract-cdc: tweak DebeziumOperations interface (#48011) --- .../cdk/read/cdc/CdcPartitionReader.kt | 86 +++++++++++++------ .../cdk/read/cdc/CdcPartitionsCreator.kt | 15 +++- .../read/cdc/CdcPartitionsCreatorFactory.kt | 8 ++ .../io/airbyte/cdk/read/cdc/Debezium.kt | 5 +- .../cdk/read/cdc/DebeziumOperations.kt | 8 +- .../cdk/read/cdc/CdcPartitionsCreatorTest.kt | 2 + 6 files changed, 91 insertions(+), 33 deletions(-) diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReader.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReader.kt index a2896a4bf7af..61d579c3aa24 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReader.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionReader.kt @@ -88,7 +88,14 @@ class CdcPartitionReader>( val thread = Thread(engine, "debezium-engine") thread.setUncaughtExceptionHandler { _, e: Throwable -> engineException.set(e) } thread.start() - withContext(Dispatchers.IO) { thread.join() } + try { + withContext(Dispatchers.IO) { thread.join() } + } catch (e: Throwable) { + // This catches any exceptions thrown by join() + // but also by the kotlin coroutine dispatcher, like TimeoutCancellationException. + engineException.compareAndSet(null, e) + } + // Print a nice log message and re-throw any exception. val exception: Throwable? = engineException.get() val summary: Map = mapOf( @@ -138,49 +145,64 @@ class CdcPartitionReader>( val debeziumRecordValue: DebeziumRecordValue? = event.value()?.let { DebeziumRecordValue(Jsons.readTree(it)) } // Process records, ignoring heartbeats which are only used for completion checks. - val isRecord: Boolean - if (debeziumRecordValue == null) { - isRecord = false - numTombstones.incrementAndGet() - } else if (debeziumRecordValue.isHeartbeat) { - isRecord = false - numHeartbeats.incrementAndGet() - } else { - isRecord = true + val eventType: EventType = run { + if (debeziumRecordValue == null) return@run EventType.TOMBSTONE + if (debeziumRecordValue.isHeartbeat) return@run EventType.HEARTBEAT val debeziumRecordKey = DebeziumRecordKey(Jsons.readTree(event.key())) val deserializedRecord: DeserializedRecord = readerOps.deserialize(debeziumRecordKey, debeziumRecordValue) - val streamRecordConsumer: StreamRecordConsumer? = + ?: return@run EventType.RECORD_DISCARDED_BY_DESERIALIZE + val streamRecordConsumer: StreamRecordConsumer = streamRecordConsumers[deserializedRecord.streamID] - if (streamRecordConsumer == null) { - numDiscardedRecords.incrementAndGet() - } else { - streamRecordConsumer.accept(deserializedRecord.data, deserializedRecord.changes) - numEmittedRecords.incrementAndGet() - } + ?: return@run EventType.RECORD_DISCARDED_BY_STREAM_ID + streamRecordConsumer.accept(deserializedRecord.data, deserializedRecord.changes) + return@run EventType.RECORD_EMITTED } + // Update counters. + when (eventType) { + EventType.TOMBSTONE -> numTombstones + EventType.HEARTBEAT -> numHeartbeats + EventType.RECORD_DISCARDED_BY_DESERIALIZE, + EventType.RECORD_DISCARDED_BY_STREAM_ID -> numDiscardedRecords + EventType.RECORD_EMITTED -> numEmittedRecords + }.incrementAndGet() // Look for reasons to close down the engine. - val closeReason: CloseReason? = run { + val closeReason: CloseReason = run { + if (input.isSynthetic && eventType != EventType.HEARTBEAT) { + // Special case where the engine started with a synthetic offset: + // don't even consider closing the engine unless handling a heartbeat event. + // For some databases, such as Oracle, Debezium actually needs to snapshot the + // schema in order to collect the database schema history and there's no point + // in interrupting it until the snapshot is done. + return + } if (!coroutineContext.isActive) { return@run CloseReason.TIMEOUT } val currentPosition: T? = position(sourceRecord) ?: position(debeziumRecordValue) if (currentPosition == null || currentPosition < upperBound) { - return@run null + return } // Close because the current event is past the sync upper bound. - if (isRecord) { - CloseReason.RECORD_REACHED_TARGET_POSITION - } else { - CloseReason.HEARTBEAT_OR_TOMBSTONE_REACHED_TARGET_POSITION + when (eventType) { + EventType.TOMBSTONE, + EventType.HEARTBEAT -> + CloseReason.HEARTBEAT_OR_TOMBSTONE_REACHED_TARGET_POSITION + EventType.RECORD_EMITTED, + EventType.RECORD_DISCARDED_BY_DESERIALIZE, + EventType.RECORD_DISCARDED_BY_STREAM_ID -> + CloseReason.RECORD_REACHED_TARGET_POSITION } } - // Idempotent engine shutdown. - if (closeReason != null && closeReasonReference.compareAndSet(null, closeReason)) { - log.info { "Shutting down Debezium engine: ${closeReason.message}." } - // TODO : send close analytics message - Thread({ engine.close() }, "debezium-close").start() + // At this point, if we haven't returned already, we want to close down the engine. + if (!closeReasonReference.compareAndSet(null, closeReason)) { + // An earlier event has already triggered closing down the engine, do nothing. + return } + // At this point, if we haven't returned already, we need to close down the engine. + log.info { "Shutting down Debezium engine: ${closeReason.message}." } + // TODO : send close analytics message + Thread({ engine.close() }, "debezium-close").start() } private fun position(sourceRecord: SourceRecord?): T? { @@ -204,6 +226,14 @@ class CdcPartitionReader>( } } + private enum class EventType { + TOMBSTONE, + HEARTBEAT, + RECORD_DISCARDED_BY_DESERIALIZE, + RECORD_DISCARDED_BY_STREAM_ID, + RECORD_EMITTED, + } + inner class CompletionCallback : DebeziumEngine.CompletionCallback { override fun handle(success: Boolean, message: String?, error: Throwable?) { if (success) { diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreator.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreator.kt index 4ec20217d07b..0806d68e3d43 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreator.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreator.kt @@ -20,6 +20,7 @@ class CdcPartitionsCreator>( val feedBootstrap: GlobalFeedBootstrap, val creatorOps: CdcPartitionsCreatorDebeziumOperations, val readerOps: CdcPartitionReaderDebeziumOperations, + val lowerBoundReference: AtomicReference, val upperBoundReference: AtomicReference, ) : PartitionsCreator { private val log = KotlinLogging.logger {} @@ -72,20 +73,30 @@ class CdcPartitionsCreator>( upperBound, input ) + val lowerBound: T = creatorOps.position(input.state.offset) + val lowerBoundInPreviousRound: T? = lowerBoundReference.getAndSet(lowerBound) if (input.isSynthetic) { // Handle synthetic offset edge-case, which always needs to run. // Debezium needs to run to generate the full state, which might include schema history. log.info { "Current offset is synthetic." } return listOf(partitionReader) } - val lowerBound: T = creatorOps.position(input.state.offset) if (upperBound <= lowerBound) { // Handle completion due to reaching the WAL position upper bound. log.info { "Current position '$lowerBound' equals or exceeds target position '$upperBound'." } globalLockResource.markCdcAsComplete() - return listOf() + return emptyList() + } + if (lowerBoundInPreviousRound != null && lowerBound <= lowerBoundInPreviousRound) { + // Handle completion due to stalling. + log.info { + "Current position '$lowerBound' has not increased in the last round, " + + "prior to which is was '$lowerBoundInPreviousRound'." + } + globalLockResource.markCdcAsComplete() + return emptyList() } // Handle common case. log.info { "Current position '$lowerBound' does not exceed target position '$upperBound'." } diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorFactory.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorFactory.kt index c7aa758be6bf..728bb637713e 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorFactory.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorFactory.kt @@ -22,6 +22,13 @@ class CdcPartitionsCreatorFactory>( val debeziumOps: DebeziumOperations, ) : PartitionsCreatorFactory { + /** + * [AtomicReference] to a WAL position lower bound value shared by all [CdcPartitionsCreator]s. + * This value is updated by the [CdcPartitionsCreator] based on the incumbent state and is used + * to detect stalls. + */ + private val lowerBoundReference = AtomicReference() + /** * [AtomicReference] to a WAL position upper bound value shared by all [CdcPartitionsCreator]s. * This value is set exactly once by the first [CdcPartitionsCreator]. @@ -39,6 +46,7 @@ class CdcPartitionsCreatorFactory>( feedBootstrap, debeziumOps, debeziumOps, + lowerBoundReference, upperBoundReference, ) } diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/Debezium.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/Debezium.kt index e1693a0d0fc0..dded33e05666 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/Debezium.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/Debezium.kt @@ -25,7 +25,10 @@ value class DebeziumRecordKey(val wrapped: JsonNode) { @JvmInline value class DebeziumRecordValue(val wrapped: JsonNode) { - /** True if this is a Debezium heartbeat event. These aren't passed to [DebeziumConsumer]. */ + /** + * True if this is a Debezium heartbeat event, or the equivalent thereof. In any case, such + * events are only used for their position value and for triggering timeouts. + */ val isHeartbeat: Boolean get() = source.isNull diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/DebeziumOperations.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/DebeziumOperations.kt index 990924bcfcdb..a6126fb73fb7 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/DebeziumOperations.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/main/kotlin/io/airbyte/cdk/read/cdc/DebeziumOperations.kt @@ -30,8 +30,12 @@ interface CdcPartitionsCreatorDebeziumOperations> { interface CdcPartitionReaderDebeziumOperations> { - /** Transforms a [DebeziumRecordValue] into a [DeserializedRecord]. */ - fun deserialize(key: DebeziumRecordKey, value: DebeziumRecordValue): DeserializedRecord + /** + * Transforms a [DebeziumRecordKey] and a [DebeziumRecordValue] into a [DeserializedRecord]. + * + * Returning null means that the event should be treated like a heartbeat. + */ + fun deserialize(key: DebeziumRecordKey, value: DebeziumRecordValue): DeserializedRecord? /** Maps a [DebeziumState] to an [OpaqueStateValue]. */ fun serialize(debeziumState: DebeziumState): OpaqueStateValue diff --git a/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorTest.kt b/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorTest.kt index e339e92d84d7..c96d6dbd8a57 100644 --- a/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorTest.kt +++ b/airbyte-cdk/bulk/toolkits/extract-cdc/src/test/kotlin/io/airbyte/cdk/read/cdc/CdcPartitionsCreatorTest.kt @@ -58,6 +58,7 @@ class CdcPartitionsCreatorTest { val global = Global(listOf(stream)) + val lowerBoundReference = AtomicReference(null) val upperBoundReference = AtomicReference(null) val creator: CdcPartitionsCreator @@ -68,6 +69,7 @@ class CdcPartitionsCreatorTest { globalFeedBootstrap, creatorOps, readerOps, + lowerBoundReference, upperBoundReference, ) From d166bc663259b10e490be542b1ead2e92351d7d0 Mon Sep 17 00:00:00 2001 From: Aldo Gonzalez <168454423+aldogonzalez8@users.noreply.github.com> Date: Thu, 31 Oct 2024 06:23:04 -0600 Subject: [PATCH 500/808] =?UTF-8?q?=E2=9C=A8Feature(airbyte-cdk):=20File?= =?UTF-8?q?=20Transfer=20implementation=20(#47686)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../airbyte_cdk/models/airbyte_protocol.py | 5 +- .../models/file_transfer_record_message.py | 13 + .../config/abstract_file_based_spec.py | 32 +- .../sources/file_based/exceptions.py | 4 + .../sources/file_based/file_based_source.py | 34 +- .../file_based/file_based_stream_reader.py | 18 + .../sources/file_based/file_types/__init__.py | 3 +- .../file_based/file_types/blob_transfer.py | 59 +++ .../sources/file_based/schema_helpers.py | 1 + .../stream/default_file_based_stream.py | 60 ++- .../sources/file_based/writers/__init__.py | 1 + .../file_based/writers/local_file_client.py | 79 ++++ .../sources/utils/record_helper.py | 7 +- airbyte-cdk/python/poetry.lock | 401 ++++++++++-------- airbyte-cdk/python/pyproject.toml | 4 + .../file_based/in_memory_files_source.py | 3 + .../file_based/scenarios/csv_scenarios.py | 49 +++ .../stream/test_default_file_based_stream.py | 47 ++ .../test_file_based_stream_reader.py | 3 + 19 files changed, 622 insertions(+), 201 deletions(-) create mode 100644 airbyte-cdk/python/airbyte_cdk/models/file_transfer_record_message.py create mode 100644 airbyte-cdk/python/airbyte_cdk/sources/file_based/file_types/blob_transfer.py create mode 100644 airbyte-cdk/python/airbyte_cdk/sources/file_based/writers/__init__.py create mode 100644 airbyte-cdk/python/airbyte_cdk/sources/file_based/writers/local_file_client.py diff --git a/airbyte-cdk/python/airbyte_cdk/models/airbyte_protocol.py b/airbyte-cdk/python/airbyte_cdk/models/airbyte_protocol.py index 477cfb8a66fd..6c0cdbb1bac5 100644 --- a/airbyte-cdk/python/airbyte_cdk/models/airbyte_protocol.py +++ b/airbyte-cdk/python/airbyte_cdk/models/airbyte_protocol.py @@ -3,8 +3,9 @@ # from dataclasses import InitVar, dataclass -from typing import Annotated, Any, Dict, List, Mapping, Optional +from typing import Annotated, Any, Dict, List, Mapping, Optional, Union +from airbyte_cdk.models.file_transfer_record_message import AirbyteFileTransferRecordMessage from airbyte_protocol_dataclasses.models import * from serpyco_rs.metadata import Alias @@ -76,7 +77,7 @@ class AirbyteMessage: spec: Optional[ConnectorSpecification] = None # type: ignore [name-defined] connectionStatus: Optional[AirbyteConnectionStatus] = None # type: ignore [name-defined] catalog: Optional[AirbyteCatalog] = None # type: ignore [name-defined] - record: Optional[AirbyteRecordMessage] = None # type: ignore [name-defined] + record: Optional[Union[AirbyteFileTransferRecordMessage, AirbyteRecordMessage]] = None # type: ignore [name-defined] state: Optional[AirbyteStateMessage] = None trace: Optional[AirbyteTraceMessage] = None # type: ignore [name-defined] control: Optional[AirbyteControlMessage] = None # type: ignore [name-defined] diff --git a/airbyte-cdk/python/airbyte_cdk/models/file_transfer_record_message.py b/airbyte-cdk/python/airbyte_cdk/models/file_transfer_record_message.py new file mode 100644 index 000000000000..dcc1b7a92cf1 --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/models/file_transfer_record_message.py @@ -0,0 +1,13 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. + +from dataclasses import dataclass +from typing import Any, Dict, Optional + + +@dataclass +class AirbyteFileTransferRecordMessage: + stream: str + file: Dict[str, Any] + emitted_at: int + namespace: Optional[str] = None + data: Optional[Dict[str, Any]] = None diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py index 862c987000bc..38159698816c 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py @@ -4,14 +4,33 @@ import copy from abc import abstractmethod -from typing import Any, Dict, List, Optional +from typing import Any, Dict, List, Literal, Optional, Union import dpath +from airbyte_cdk import OneOfOptionConfig from airbyte_cdk.sources.file_based.config.file_based_stream_config import FileBasedStreamConfig from airbyte_cdk.sources.utils import schema_helpers from pydantic.v1 import AnyUrl, BaseModel, Field +class DeliverRecords(BaseModel): + class Config(OneOfOptionConfig): + title = "Replicate Records" + description = "Recommended - Extract and load structured records into your destination of choice. This is the classic method of moving data in Airbyte. It allows for blocking and hashing individual fields or files from a structured schema. Data can be flattened, typed and deduped depending on the destination." + discriminator = "delivery_type" + + delivery_type: Literal["use_records_transfer"] = Field("use_records_transfer", const=True) + + +class DeliverRawFiles(BaseModel): + class Config(OneOfOptionConfig): + title = "Copy Raw Files" + description = "Copy raw files without parsing their contents. Bits are copied into the destination exactly as they appeared in the source. Recommended for use with unstructured text data, non-text and compressed files." + discriminator = "delivery_type" + + delivery_type: Literal["use_file_transfer"] = Field("use_file_transfer", const=True) + + class AbstractFileBasedSpec(BaseModel): """ Used during spec; allows the developer to configure the cloud provider specific options @@ -34,6 +53,17 @@ class AbstractFileBasedSpec(BaseModel): order=10, ) + delivery_method: Union[DeliverRecords, DeliverRawFiles] = Field( + title="Delivery Method", + discriminator="delivery_type", + type="object", + order=7, + display_type="radio", + group="advanced", + default="use_records_transfer", + airbyte_hidden=True, + ) + @classmethod @abstractmethod def documentation_url(cls) -> AnyUrl: diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/exceptions.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/exceptions.py index 5bb43e43fbd3..60adf3214e79 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/file_based/exceptions.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/exceptions.py @@ -121,3 +121,7 @@ class CustomFileBasedException(AirbyteTracedException): """ pass + + +class FileSizeLimitError(CustomFileBasedException): + pass diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_based_source.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_based_source.py index b023287598bb..edd292f42a93 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_based_source.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_based_source.py @@ -6,7 +6,7 @@ import traceback from abc import ABC from collections import Counter -from typing import Any, Iterator, List, Mapping, MutableMapping, Optional, Tuple, Type, Union +from typing import Any, Iterator, List, Mapping, Optional, Tuple, Type, Union from airbyte_cdk.logger import AirbyteLogFormatter, init_logger from airbyte_cdk.models import ( @@ -127,10 +127,16 @@ def check_connection(self, logger: logging.Logger, config: Mapping[str, Any]) -> if not isinstance(stream, AbstractFileBasedStream): raise ValueError(f"Stream {stream} is not a file-based stream.") try: + parsed_config = self._get_parsed_config(config) + availability_method = ( + stream.availability_strategy.check_availability + if self._use_file_transfer(parsed_config) + else stream.availability_strategy.check_availability_and_parsability + ) ( stream_is_available, reason, - ) = stream.availability_strategy.check_availability_and_parsability(stream, logger, self) + ) = availability_method(stream, logger, self) except AirbyteTracedException as ate: errors.append(f"Unable to connect to stream {stream.name} - {ate.message}") tracebacks.append(traceback.format_exc()) @@ -217,11 +223,19 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: CursorField(DefaultFileBasedStream.ab_last_mod_col), ) stream = FileBasedStreamFacade.create_from_stream( - self._make_default_stream(stream_config, cursor), self, self.logger, stream_state, cursor + stream=self._make_default_stream( + stream_config=stream_config, cursor=cursor, use_file_transfer=self._use_file_transfer(parsed_config) + ), + source=self, + logger=self.logger, + state=stream_state, + cursor=cursor, ) else: cursor = self.cursor_cls(stream_config) - stream = self._make_default_stream(stream_config, cursor) + stream = self._make_default_stream( + stream_config=stream_config, cursor=cursor, use_file_transfer=self._use_file_transfer(parsed_config) + ) streams.append(stream) return streams @@ -230,7 +244,7 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: raise ConfigValidationError(FileBasedSourceError.CONFIG_VALIDATION_ERROR) from exc def _make_default_stream( - self, stream_config: FileBasedStreamConfig, cursor: Optional[AbstractFileBasedCursor] + self, stream_config: FileBasedStreamConfig, cursor: Optional[AbstractFileBasedCursor], use_file_transfer: bool = False ) -> AbstractFileBasedStream: return DefaultFileBasedStream( config=stream_config, @@ -242,6 +256,7 @@ def _make_default_stream( validation_policy=self._validate_and_get_validation_policy(stream_config), errors_collector=self.errors_collector, cursor=cursor, + use_file_transfer=use_file_transfer, ) def _get_stream_from_catalog(self, stream_config: FileBasedStreamConfig) -> Optional[AirbyteStream]: @@ -264,7 +279,7 @@ def read( logger: logging.Logger, config: Mapping[str, Any], catalog: ConfiguredAirbyteCatalog, - state: Optional[Union[List[AirbyteStateMessage], MutableMapping[str, Any]]] = None, + state: Optional[List[AirbyteStateMessage]] = None, ) -> Iterator[AirbyteMessage]: yield from super().read(logger, config, catalog, state) # emit all the errors collected @@ -298,3 +313,10 @@ def _validate_and_get_validation_policy(self, stream_config: FileBasedStreamConf def _validate_input_schema(self, stream_config: FileBasedStreamConfig) -> None: if stream_config.schemaless and stream_config.input_schema: raise ValidationError("`input_schema` and `schemaless` options cannot both be set", model=FileBasedStreamConfig) + + @staticmethod + def _use_file_transfer(parsed_config: AbstractFileBasedSpec) -> bool: + use_file_transfer = ( + hasattr(parsed_config.delivery_method, "delivery_type") and parsed_config.delivery_method.delivery_type == "use_file_transfer" + ) + return use_file_transfer diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_based_stream_reader.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_based_stream_reader.py index 4a7de3bb6992..cb3d0b1920fc 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_based_stream_reader.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_based_stream_reader.py @@ -92,6 +92,16 @@ def filter_files_by_globs_and_start_date(self, files: List[RemoteFile], globs: L seen.add(file.uri) yield file + @abstractmethod + def file_size(self, file: RemoteFile) -> int: + """Utility method to get size of the remote file. + + This is required for connectors that will support writing to + files. If the connector does not support writing files, then the + subclass can simply `return 0`. + """ + ... + @staticmethod def file_matches_globs(file: RemoteFile, globs: List[str]) -> bool: # Use the GLOBSTAR flag to enable recursive ** matching @@ -105,3 +115,11 @@ def get_prefixes_from_globs(globs: List[str]) -> Set[str]: """ prefixes = {glob.split("*")[0] for glob in globs} return set(filter(lambda x: bool(x), prefixes)) + + def use_file_transfer(self) -> bool: + if self.config: + use_file_transfer = ( + hasattr(self.config.delivery_method, "delivery_type") and self.config.delivery_method.delivery_type == "use_file_transfer" + ) + return use_file_transfer + return False diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_types/__init__.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_types/__init__.py index 0faabf0e97f9..5b3c06d26dab 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_types/__init__.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_types/__init__.py @@ -14,6 +14,7 @@ from .jsonl_parser import JsonlParser from .parquet_parser import ParquetParser from .unstructured_parser import UnstructuredParser +from .blob_transfer import BlobTransfer default_parsers: Mapping[Type[Any], FileTypeParser] = { AvroFormat: AvroParser(), @@ -24,4 +25,4 @@ UnstructuredFormat: UnstructuredParser(), } -__all__ = ["AvroParser", "CsvParser", "ExcelParser", "JsonlParser", "ParquetParser", "UnstructuredParser", "default_parsers"] +__all__ = ["AvroParser", "CsvParser", "ExcelParser", "JsonlParser", "ParquetParser", "UnstructuredParser", "BlobTransfer", "default_parsers"] diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_types/blob_transfer.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_types/blob_transfer.py new file mode 100644 index 000000000000..411335f5845e --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/file_types/blob_transfer.py @@ -0,0 +1,59 @@ +# +# Copyright (c) 2023 Airbyte, Inc., all rights reserved. +# +import logging +from io import IOBase +from typing import Any, Dict, Generator, Iterable, Optional, Tuple + +from airbyte_cdk.sources.file_based.config.file_based_stream_config import FileBasedStreamConfig +from airbyte_cdk.sources.file_based.file_based_stream_reader import AbstractFileBasedStreamReader, FileReadMode +from airbyte_cdk.sources.file_based.remote_file import RemoteFile +from airbyte_cdk.sources.file_based.writers.local_file_client import LocalFileTransferClient + + +class _FileReader: + def read_data( + self, + config: FileBasedStreamConfig, + file: RemoteFile, + stream_reader: AbstractFileBasedStreamReader, + logger: logging.Logger, + file_read_mode: FileReadMode, + ) -> Generator[Tuple[IOBase, int], None, None]: + + try: + file_size = stream_reader.file_size(file) + with stream_reader.open_file(file, file_read_mode, "UTF-8", logger) as fp: + yield fp, file_size + + except Exception as ex: + logger.error("An error has occurred while reading file: %s", str(ex)) + + +class BlobTransfer: + def __init__(self, file_reader: Optional[_FileReader] = None): + self._file_reader = file_reader if file_reader else _FileReader() + + def write_streams( + self, + config: FileBasedStreamConfig, + file: RemoteFile, + stream_reader: AbstractFileBasedStreamReader, + logger: logging.Logger, + ) -> Iterable[Dict[str, Any]]: + file_no = 0 + try: + data_generator = self._file_reader.read_data(config, file, stream_reader, logger, self.file_read_mode) + local_writer = LocalFileTransferClient() + for file_opened, file_size in data_generator: + yield local_writer.write(file.uri, file_opened, file_size, logger) + file_no += 1 + except Exception as ex: + logger.error("An error has occurred while writing file: %s", str(ex)) + raise ex + finally: + data_generator.close() + + @property + def file_read_mode(self) -> FileReadMode: + return FileReadMode.READ diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/schema_helpers.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/schema_helpers.py index c7c7bfa32288..fb7141201d79 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/file_based/schema_helpers.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/schema_helpers.py @@ -14,6 +14,7 @@ SchemaType = Mapping[str, Mapping[str, JsonSchemaSupportedType]] schemaless_schema = {"type": "object", "properties": {"data": {"type": "object"}}} +file_transfer_schema = {"type": "object", "properties": {"data": {"type": "object"}, "file": {"type": "object"}}} @total_ordering diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/stream/default_file_based_stream.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/stream/default_file_based_stream.py index 77747c3cbb58..d470c8406e80 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/file_based/stream/default_file_based_stream.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/stream/default_file_based_stream.py @@ -7,7 +7,7 @@ import traceback from copy import deepcopy from functools import cache -from typing import Any, Iterable, List, Mapping, MutableMapping, Optional, Set, Union +from typing import Any, Dict, Iterable, List, Mapping, MutableMapping, Optional, Set, Union from airbyte_cdk.models import AirbyteLogMessage, AirbyteMessage, FailureType, Level from airbyte_cdk.models import Type as MessageType @@ -20,8 +20,9 @@ SchemaInferenceError, StopSyncPerValidationPolicy, ) +from airbyte_cdk.sources.file_based.file_types import BlobTransfer from airbyte_cdk.sources.file_based.remote_file import RemoteFile -from airbyte_cdk.sources.file_based.schema_helpers import SchemaType, merge_schemas, schemaless_schema +from airbyte_cdk.sources.file_based.schema_helpers import SchemaType, file_transfer_schema, merge_schemas, schemaless_schema from airbyte_cdk.sources.file_based.stream import AbstractFileBasedStream from airbyte_cdk.sources.file_based.stream.cursor import AbstractFileBasedCursor from airbyte_cdk.sources.file_based.types import StreamSlice @@ -37,12 +38,18 @@ class DefaultFileBasedStream(AbstractFileBasedStream, IncrementalMixin): The default file-based stream. """ + FILE_TRANSFER_KW = "use_file_transfer" DATE_TIME_FORMAT = "%Y-%m-%dT%H:%M:%S.%fZ" ab_last_mod_col = "_ab_source_file_last_modified" ab_file_name_col = "_ab_source_file_url" + modified = "modified" + source_file_url = "source_file_url" airbyte_columns = [ab_last_mod_col, ab_file_name_col] + use_file_transfer = False def __init__(self, **kwargs: Any): + if self.FILE_TRANSFER_KW in kwargs: + self.use_file_transfer = kwargs.pop(self.FILE_TRANSFER_KW, False) super().__init__(**kwargs) @property @@ -68,6 +75,15 @@ def cursor(self, value: AbstractFileBasedCursor) -> None: def primary_key(self) -> PrimaryKeyType: return self.config.primary_key or self.get_parser().get_parser_defined_primary_key(self.config) + def _filter_schema_invalid_properties(self, configured_catalog_json_schema: Dict[str, Any]) -> Dict[str, Any]: + if self.use_file_transfer: + return { + "type": "object", + "properties": {"file_path": {"type": "string"}, "file_size": {"type": "string"}, self.ab_file_name_col: {"type": "string"}}, + } + else: + return super()._filter_schema_invalid_properties(configured_catalog_json_schema) + def compute_slices(self) -> Iterable[Optional[Mapping[str, Any]]]: # Sort files by last_modified, uri and return them grouped by last_modified all_files = self.list_files() @@ -82,6 +98,12 @@ def transform_record(self, record: dict[str, Any], file: RemoteFile, last_update record[self.ab_file_name_col] = file.uri return record + def transform_record_for_file_transfer(self, record: dict[str, Any], file: RemoteFile) -> dict[str, Any]: + # timstamp() returns a float representing the number of seconds since the unix epoch + record[self.modified] = int(file.last_modified.timestamp()) * 1000 + record[self.source_file_url] = file.uri + return record + def read_records_from_slice(self, stream_slice: StreamSlice) -> Iterable[AirbyteMessage]: """ Yield all records from all remote files in `list_files_for_this_sync`. @@ -101,15 +123,27 @@ def read_records_from_slice(self, stream_slice: StreamSlice) -> Iterable[Airbyte n_skipped = line_no = 0 try: - for record in parser.parse_records(self.config, file, self.stream_reader, self.logger, schema): - line_no += 1 - if self.config.schemaless: - record = {"data": record} - elif not self.record_passes_validation_policy(record): - n_skipped += 1 - continue - record = self.transform_record(record, file, file_datetime_string) - yield stream_data_to_airbyte_message(self.name, record) + if self.use_file_transfer: + self.logger.info(f"{self.name}: {file} file-based syncing") + # todo: complete here the code to not rely on local parser + blob_transfer = BlobTransfer() + for record in blob_transfer.write_streams(self.config, file, self.stream_reader, self.logger): + line_no += 1 + if not self.record_passes_validation_policy(record): + n_skipped += 1 + continue + record = self.transform_record_for_file_transfer(record, file) + yield stream_data_to_airbyte_message(self.name, record, is_file_transfer_message=True) + else: + for record in parser.parse_records(self.config, file, self.stream_reader, self.logger, schema): + line_no += 1 + if self.config.schemaless: + record = {"data": record} + elif not self.record_passes_validation_policy(record): + n_skipped += 1 + continue + record = self.transform_record(record, file, file_datetime_string) + yield stream_data_to_airbyte_message(self.name, record) self._cursor.add_file(file) except StopSyncPerValidationPolicy: @@ -191,7 +225,9 @@ def get_json_schema(self) -> JsonSchema: return {"type": "object", "properties": {**extra_fields, **schema["properties"]}} def _get_raw_json_schema(self) -> JsonSchema: - if self.config.input_schema: + if self.use_file_transfer: + return file_transfer_schema + elif self.config.input_schema: return self.config.get_input_schema() # type: ignore elif self.config.schemaless: return schemaless_schema diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/writers/__init__.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/writers/__init__.py new file mode 100644 index 000000000000..8b137891791f --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/writers/__init__.py @@ -0,0 +1 @@ + diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/writers/local_file_client.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/writers/local_file_client.py new file mode 100644 index 000000000000..1eefbe31c2ee --- /dev/null +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/writers/local_file_client.py @@ -0,0 +1,79 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. + +import logging +import os +import time +from io import IOBase +from typing import Any, Dict + +import psutil +from airbyte_cdk.models import FailureType +from airbyte_cdk.sources.file_based.exceptions import FileSizeLimitError + +AIRBYTE_STAGING_DIRECTORY = os.getenv("AIRBYTE_STAGING_DIRECTORY", "/staging/files") +DEFAULT_LOCAL_DIRECTORY = "/tmp/airbyte-file-transfer" + + +class LocalFileTransferClient: + FILE_SIZE_LIMIT = 1_000_000_000 + + def __init__(self) -> None: + """ + Initialize the LocalFileTransferClient. It uses a default local directory for file saving. + """ + self._local_directory = AIRBYTE_STAGING_DIRECTORY if os.path.exists(AIRBYTE_STAGING_DIRECTORY) else DEFAULT_LOCAL_DIRECTORY + + def write(self, file_uri: str, fp: IOBase, file_size: int, logger: logging.Logger) -> Dict[str, Any]: + """ + Write the file to a local directory. + """ + if file_size > self.FILE_SIZE_LIMIT: + message = "File size exceeds the 1 GB limit." + raise FileSizeLimitError(message=message, internal_message=message, failure_type=FailureType.config_error) + + # Remove left slashes from source path format to make relative path for writing locally + file_relative_path = file_uri.lstrip("/") + local_file_path = os.path.join(self._local_directory, file_relative_path) + + # Ensure the local directory exists + os.makedirs(os.path.dirname(local_file_path), exist_ok=True) + + # Get the absolute path + absolute_file_path = os.path.abspath(local_file_path) + + # Get available disk space + disk_usage = psutil.disk_usage("/") + available_disk_space = disk_usage.free + + # Get available memory + memory_info = psutil.virtual_memory() + available_memory = memory_info.available + + # logger.info(f"Writing file to {local_file_path}.") + # Log file size, available disk space, and memory + logger.info( + f"Writing file to '{local_file_path}' " + f"with size: {file_size / (1024 * 1024):,.2f} MB ({file_size / (1024 * 1024 * 1024):.2f} GB), " + f"available disk space: {available_disk_space / (1024 * 1024):,.2f} MB ({available_disk_space / (1024 * 1024 * 1024):.2f} GB)," + f"available memory: {available_memory / (1024 * 1024):,.2f} MB ({available_memory / (1024 * 1024 * 1024):.2f} GB)." + ) + + with open(local_file_path, "wb") as f: + # Measure the time for reading + logger.info("Starting to read the file") + start_read_time = time.time() + # todo: read chunks or allow reader to implement their own download process https://github.com/airbytehq/airbyte-internal-issues/issues/10480 + file_content = fp.read() # Read the file content + read_duration = time.time() - start_read_time + logger.info(f"Time taken to read the file: {read_duration:,.2f} seconds.") + + # Measure the time for writing + logger.info("Starting to write the file locally") + start_write_time = time.time() + f.write(file_content) + write_duration = time.time() - start_write_time + logger.info(f"Time taken to write the file: {write_duration:,.2f} seconds.") + + logger.info(f"File {file_relative_path} successfully written to {self._local_directory}.") + + return {"file_url": absolute_file_path, "bytes": file_size, "file_relative_path": file_relative_path} diff --git a/airbyte-cdk/python/airbyte_cdk/sources/utils/record_helper.py b/airbyte-cdk/python/airbyte_cdk/sources/utils/record_helper.py index ec92ac2f9645..98cefd1a8d40 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/utils/record_helper.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/utils/record_helper.py @@ -7,6 +7,7 @@ from airbyte_cdk.models import AirbyteLogMessage, AirbyteMessage, AirbyteRecordMessage, AirbyteTraceMessage from airbyte_cdk.models import Type as MessageType +from airbyte_cdk.models.file_transfer_record_message import AirbyteFileTransferRecordMessage from airbyte_cdk.sources.streams.core import StreamData from airbyte_cdk.sources.utils.transform import TransformConfig, TypeTransformer @@ -16,6 +17,7 @@ def stream_data_to_airbyte_message( data_or_message: StreamData, transformer: TypeTransformer = TypeTransformer(TransformConfig.NoTransform), schema: Optional[Mapping[str, Any]] = None, + is_file_transfer_message: bool = False, ) -> AirbyteMessage: if schema is None: schema = {} @@ -29,7 +31,10 @@ def stream_data_to_airbyte_message( # taken unless configured. See # docs/connector-development/cdk-python/schemas.md for details. transformer.transform(data, schema) # type: ignore - message = AirbyteRecordMessage(stream=stream_name, data=data, emitted_at=now_millis) + if is_file_transfer_message: + message = AirbyteFileTransferRecordMessage(stream=stream_name, file=data, emitted_at=now_millis, data={}) + else: + message = AirbyteRecordMessage(stream=stream_name, data=data, emitted_at=now_millis) return AirbyteMessage(type=MessageType.RECORD, record=message) case AirbyteTraceMessage(): return AirbyteMessage(type=MessageType.TRACE, trace=data_or_message) diff --git a/airbyte-cdk/python/poetry.lock b/airbyte-cdk/python/poetry.lock index 1019d433060f..be8bfca6febe 100644 --- a/airbyte-cdk/python/poetry.lock +++ b/airbyte-cdk/python/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "aiohappyeyeballs" @@ -1192,88 +1192,103 @@ python-dateutil = ">=2.7" [[package]] name = "frozenlist" -version = "1.4.1" +version = "1.5.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = true python-versions = ">=3.8" files = [ - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, - {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, - {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, - {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, - {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, - {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, - {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, - {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, - {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, - {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, - {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, - {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, - {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, - {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, - {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, - {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, - {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, - {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, - {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, - {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, - {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, - {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, - {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, - {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, - {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, - {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, - {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, - {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, ] [[package]] @@ -1828,13 +1843,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.136" +version = "0.1.137" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = true python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.136-py3-none-any.whl", hash = "sha256:cad2215eb7a754ee259878e19c558f4f8d3795aa1b699f087d4500e640f80d0a"}, - {file = "langsmith-0.1.136.tar.gz", hash = "sha256:5c0de01a313db70dd9a85845c0f416a69b5b653b3e98ba413d7d41e8851315b1"}, + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, ] [package.dependencies] @@ -3110,6 +3125,36 @@ files = [ {file = "propcache-0.2.0.tar.gz", hash = "sha256:df81779732feb9d01e5d513fad0122efb3d53bbc75f61b2a4f29a020bc985e70"}, ] +[[package]] +name = "psutil" +version = "6.1.0" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"}, + {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"}, + {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"}, + {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"}, + {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"}, + {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"}, + {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"}, + {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"}, +] + +[package.extras] +dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"] +test = ["pytest", "pytest-xdist", "setuptools"] + [[package]] name = "pyarrow" version = "15.0.2" @@ -3815,99 +3860,99 @@ files = [ [[package]] name = "rapidfuzz" -version = "3.10.0" +version = "3.10.1" description = "rapid fuzzy string matching" optional = true python-versions = ">=3.9" files = [ - {file = "rapidfuzz-3.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:884453860de029380dded8f3c1918af2d8eb5adf8010261645c7e5c88c2b5428"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:718c9bd369288aca5fa929df6dbf66fdbe9768d90940a940c0b5cdc96ade4309"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a68e3724b7dab761c01816aaa64b0903734d999d5589daf97c14ef5cc0629a8e"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1af60988d47534246d9525f77288fdd9de652608a4842815d9018570b959acc6"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3084161fc3e963056232ef8d937449a2943852e07101f5a136c8f3cfa4119217"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6cd67d3d017296d98ff505529104299f78433e4b8af31b55003d901a62bbebe9"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b11a127ac590fc991e8a02c2d7e1ac86e8141c92f78546f18b5c904064a0552c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:aadce42147fc09dcef1afa892485311e824c050352e1aa6e47f56b9b27af4cf0"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b54853c2371bf0e38d67da379519deb6fbe70055efb32f6607081641af3dc752"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ce19887268e90ee81a3957eef5e46a70ecc000713796639f83828b950343f49e"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f39a2a5ded23b9b9194ec45740dce57177b80f86c6d8eba953d3ff1a25c97766"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0ec338d5f4ad8d9339a88a08db5c23e7f7a52c2b2a10510c48a0cef1fb3f0ddc"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win32.whl", hash = "sha256:56fd15ea8f4c948864fa5ebd9261c67cf7b89a1c517a0caef4df75446a7af18c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:43dfc5e733808962a822ff6d9c29f3039a3cfb3620706f5953e17cfe4496724c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win_arm64.whl", hash = "sha256:ae7966f205b5a7fde93b44ca8fed37c1c8539328d7f179b1197de34eceaceb5f"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bb0013795b40db5cf361e6f21ee7cda09627cf294977149b50e217d7fe9a2f03"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:69ef5b363afff7150a1fbe788007e307b9802a2eb6ad92ed51ab94e6ad2674c6"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c582c46b1bb0b19f1a5f4c1312f1b640c21d78c371a6615c34025b16ee56369b"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:288f6f6e7410cacb115fb851f3f18bf0e4231eb3f6cb5bd1cec0e7b25c4d039d"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9e29a13d2fd9be3e7d8c26c7ef4ba60b5bc7efbc9dbdf24454c7e9ebba31768"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea2da0459b951ee461bd4e02b8904890bd1c4263999d291c5cd01e6620177ad4"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:457827ba82261aa2ae6ac06a46d0043ab12ba7216b82d87ae1434ec0f29736d6"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5d350864269d56f51ab81ab750c9259ae5cad3152c0680baef143dcec92206a1"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a9b8f51e08c3f983d857c3889930af9ddecc768453822076683664772d87e374"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7f3a6aa6e70fc27e4ff5c479f13cc9fc26a56347610f5f8b50396a0d344c5f55"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:803f255f10d63420979b1909ef976e7d30dec42025c9b067fc1d2040cc365a7e"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2026651761bf83a0f31495cc0f70840d5c0d54388f41316e3f9cb51bd85e49a5"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win32.whl", hash = "sha256:4df75b3ebbb8cfdb9bf8b213b168620b88fd92d0c16a8bc9f9234630b282db59"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:f9f0bbfb6787b97c51516f3ccf97737d504db5d239ad44527673b81f598b84ab"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win_arm64.whl", hash = "sha256:10fdad800441b9c97d471a937ba7d42625f1b530db05e572f1cb7d401d95c893"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7dc87073ba3a40dd65591a2100aa71602107443bf10770579ff9c8a3242edb94"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a425a0a868cf8e9c6e93e1cda4b758cdfd314bb9a4fc916c5742c934e3613480"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d5d1d75e61df060c1e56596b6b0a4422a929dff19cc3dbfd5eee762c86b61"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34f213d59219a9c3ca14e94a825f585811a68ac56b4118b4dc388b5b14afc108"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96ad46f5f56f70fab2be9e5f3165a21be58d633b90bf6e67fc52a856695e4bcf"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9178277f72d144a6c7704d7ae7fa15b7b86f0f0796f0e1049c7b4ef748a662ef"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76a35e9e19a7c883c422ffa378e9a04bc98cb3b29648c5831596401298ee51e6"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a6405d34c394c65e4f73a1d300c001f304f08e529d2ed6413b46ee3037956eb"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bd393683129f446a75d8634306aed7e377627098a1286ff3af2a4f1736742820"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b0445fa9880ead81f5a7d0efc0b9c977a947d8052c43519aceeaf56eabaf6843"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c50bc308fa29767ed8f53a8d33b7633a9e14718ced038ed89d41b886e301da32"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e89605afebbd2d4b045bccfdc12a14b16fe8ccbae05f64b4b4c64a97dad1c891"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win32.whl", hash = "sha256:2db9187f3acf3cd33424ecdbaad75414c298ecd1513470df7bda885dcb68cc15"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:50e3d0c72ea15391ba9531ead7f2068a67c5b18a6a365fef3127583aaadd1725"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win_arm64.whl", hash = "sha256:9eac95b4278bd53115903d89118a2c908398ee8bdfd977ae844f1bd2b02b917c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fe5231e8afd069c742ac5b4f96344a0fe4aff52df8e53ef87faebf77f827822c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:886882367dbc985f5736356105798f2ae6e794e671fc605476cbe2e73838a9bb"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b33e13e537e3afd1627d421a142a12bbbe601543558a391a6fae593356842f6e"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:094c26116d55bf9c53abd840d08422f20da78ec4c4723e5024322321caedca48"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:545fc04f2d592e4350f59deb0818886c1b444ffba3bec535b4fbb97191aaf769"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:916a6abf3632e592b937c3d04c00a6efadd8fd30539cdcd4e6e4d92be7ca5d90"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb6ec40cef63b1922083d33bfef2f91fc0b0bc07b5b09bfee0b0f1717d558292"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c77a7330dd15c7eb5fd3631dc646fc96327f98db8181138766bd14d3e905f0ba"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:949b5e9eeaa4ecb4c7e9c2a4689dddce60929dd1ff9c76a889cdbabe8bbf2171"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b5363932a5aab67010ae1a6205c567d1ef256fb333bc23c27582481606be480c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:5dd6eec15b13329abe66cc241b484002ecb0e17d694491c944a22410a6a9e5e2"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:79e7f98525b60b3c14524e0a4e1fedf7654657b6e02eb25f1be897ab097706f3"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win32.whl", hash = "sha256:d29d1b9857c65f8cb3a29270732e1591b9bacf89de9d13fa764f79f07d8f1fd2"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:fa9720e56663cc3649d62b4b5f3145e94b8f5611e8a8e1b46507777249d46aad"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win_arm64.whl", hash = "sha256:eda4c661e68dddd56c8fbfe1ca35e40dd2afd973f7ebb1605f4d151edc63dff8"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cffbc50e0767396ed483900900dd58ce4351bc0d40e64bced8694bd41864cc71"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c038b9939da3035afb6cb2f465f18163e8f070aba0482923ecff9443def67178"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca366c2e2a54e2f663f4529b189fdeb6e14d419b1c78b754ec1744f3c01070d4"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c4c82b1689b23b1b5e6a603164ed2be41b6f6de292a698b98ba2381e889eb9d"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98f6ebe28831a482981ecfeedc8237047878424ad0c1add2c7f366ba44a20452"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4bd1a7676ee2a4c8e2f7f2550bece994f9f89e58afb96088964145a83af7408b"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec9139baa3f85b65adc700eafa03ed04995ca8533dd56c924f0e458ffec044ab"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:26de93e6495078b6af4c4d93a42ca067b16cc0e95699526c82ab7d1025b4d3bf"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f3a0bda83c18195c361b5500377d0767749f128564ca95b42c8849fd475bb327"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:63e4c175cbce8c3adc22dca5e6154588ae673f6c55374d156f3dac732c88d7de"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4dd3d8443970eaa02ab5ae45ce584b061f2799cd9f7e875190e2617440c1f9d4"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e5ddb2388610799fc46abe389600625058f2a73867e63e20107c5ad5ffa57c47"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win32.whl", hash = "sha256:2e9be5d05cd960914024412b5406fb75a82f8562f45912ff86255acbfdbfb78e"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:47aca565a39c9a6067927871973ca827023e8b65ba6c5747f4c228c8d7ddc04f"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win_arm64.whl", hash = "sha256:b0732343cdc4273b5921268026dd7266f75466eb21873cb7635a200d9d9c3fac"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f744b5eb1469bf92dd143d36570d2bdbbdc88fe5cb0b5405e53dd34f479cbd8a"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b67cc21a14327a0eb0f47bc3d7e59ec08031c7c55220ece672f9476e7a8068d3"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fe5783676f0afba4a522c80b15e99dbf4e393c149ab610308a8ef1f04c6bcc8"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4688862f957c8629d557d084f20b2d803f8738b6c4066802a0b1cc472e088d9"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20bd153aacc244e4c907d772c703fea82754c4db14f8aa64d75ff81b7b8ab92d"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:50484d563f8bfa723c74c944b0bb15b9e054db9c889348c8c307abcbee75ab92"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5897242d455461f2c5b82d7397b29341fd11e85bf3608a522177071044784ee8"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:116c71a81e046ba56551d8ab68067ca7034d94b617545316d460a452c5c3c289"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0a547e4350d1fa32624d3eab51eff8cf329f4cae110b4ea0402486b1da8be40"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:399b9b79ccfcf50ca3bad7692bc098bb8eade88d7d5e15773b7f866c91156d0c"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7947a425d1be3e744707ee58c6cb318b93a56e08f080722dcc0347e0b7a1bb9a"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:94c48b4a2a4b1d22246f48e2b11cae01ec7d23f0c9123f8bb822839ad79d0a88"}, - {file = "rapidfuzz-3.10.0.tar.gz", hash = "sha256:6b62af27e65bb39276a66533655a2fa3c60a487b03935721c45b7809527979be"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f17d9f21bf2f2f785d74f7b0d407805468b4c173fa3e52c86ec94436b338e74a"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b31f358a70efc143909fb3d75ac6cd3c139cd41339aa8f2a3a0ead8315731f2b"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f4f43f2204b56a61448ec2dd061e26fd344c404da99fb19f3458200c5874ba2"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9d81bf186a453a2757472133b24915768abc7c3964194406ed93e170e16c21cb"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3611c8f45379a12063d70075c75134f2a8bd2e4e9b8a7995112ddae95ca1c982"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3c3b537b97ac30da4b73930fa8a4fe2f79c6d1c10ad535c5c09726612cd6bed9"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:231ef1ec9cf7b59809ce3301006500b9d564ddb324635f4ea8f16b3e2a1780da"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed4f3adc1294834955b7e74edd3c6bd1aad5831c007f2d91ea839e76461a5879"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:7b6015da2e707bf632a71772a2dbf0703cff6525732c005ad24987fe86e8ec32"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:1b35a118d61d6f008e8e3fb3a77674d10806a8972c7b8be433d6598df4d60b01"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:bc308d79a7e877226f36bdf4e149e3ed398d8277c140be5c1fd892ec41739e6d"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f017dbfecc172e2d0c37cf9e3d519179d71a7f16094b57430dffc496a098aa17"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win32.whl", hash = "sha256:36c0e1483e21f918d0f2f26799fe5ac91c7b0c34220b73007301c4f831a9c4c7"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:10746c1d4c8cd8881c28a87fd7ba0c9c102346dfe7ff1b0d021cdf093e9adbff"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win_arm64.whl", hash = "sha256:dfa64b89dcb906835e275187569e51aa9d546a444489e97aaf2cc84011565fbe"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:92958ae075c87fef393f835ed02d4fe8d5ee2059a0934c6c447ea3417dfbf0e8"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ba7521e072c53e33c384e78615d0718e645cab3c366ecd3cc8cb732befd94967"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00d02cbd75d283c287471b5b3738b3e05c9096150f93f2d2dfa10b3d700f2db9"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efa1582a397da038e2f2576c9cd49b842f56fde37d84a6b0200ffebc08d82350"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f12912acee1f506f974f58de9fdc2e62eea5667377a7e9156de53241c05fdba8"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666d5d8b17becc3f53447bcb2b6b33ce6c2df78792495d1fa82b2924cd48701a"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26f71582c0d62445067ee338ddad99b655a8f4e4ed517a90dcbfbb7d19310474"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8a2ef08b27167bcff230ffbfeedd4c4fa6353563d6aaa015d725dd3632fc3de7"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:365e4fc1a2b95082c890f5e98489b894e6bf8c338c6ac89bb6523c2ca6e9f086"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1996feb7a61609fa842e6b5e0c549983222ffdedaf29644cc67e479902846dfe"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:cf654702f144beaa093103841a2ea6910d617d0bb3fccb1d1fd63c54dde2cd49"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ec108bf25de674781d0a9a935030ba090c78d49def3d60f8724f3fc1e8e75024"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win32.whl", hash = "sha256:031f8b367e5d92f7a1e27f7322012f3c321c3110137b43cc3bf678505583ef48"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:f98f36c6a1bb9a6c8bbec99ad87c8c0e364f34761739b5ea9adf7b48129ae8cf"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win_arm64.whl", hash = "sha256:f1da2028cb4e41be55ee797a82d6c1cf589442504244249dfeb32efc608edee7"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1340b56340896bede246f612b6ecf685f661a56aabef3d2512481bfe23ac5835"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2316515169b7b5a453f0ce3adbc46c42aa332cae9f2edb668e24d1fc92b2f2bb"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e06fe6a12241ec1b72c0566c6b28cda714d61965d86569595ad24793d1ab259"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d99c1cd9443b19164ec185a7d752f4b4db19c066c136f028991a480720472e23"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1d9aa156ed52d3446388ba4c2f335e312191d1ca9d1f5762ee983cf23e4ecf6"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:54bcf4efaaee8e015822be0c2c28214815f4f6b4f70d8362cfecbd58a71188ac"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0c955e32afdbfdf6e9ee663d24afb25210152d98c26d22d399712d29a9b976b"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:191633722203f5b7717efcb73a14f76f3b124877d0608c070b827c5226d0b972"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:195baad28057ec9609e40385991004e470af9ef87401e24ebe72c064431524ab"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:0fff4a6b87c07366662b62ae994ffbeadc472e72f725923f94b72a3db49f4671"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4ffed25f9fdc0b287f30a98467493d1e1ce5b583f6317f70ec0263b3c97dbba6"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d02cf8e5af89a9ac8f53c438ddff6d773f62c25c6619b29db96f4aae248177c0"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win32.whl", hash = "sha256:f3bb81d4fe6a5d20650f8c0afcc8f6e1941f6fecdb434f11b874c42467baded0"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:aaf83e9170cb1338922ae42d320699dccbbdca8ffed07faeb0b9257822c26e24"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win_arm64.whl", hash = "sha256:c5da802a0d085ad81b0f62828fb55557996c497b2d0b551bbdfeafd6d447892f"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fc22d69a1c9cccd560a5c434c0371b2df0f47c309c635a01a913e03bbf183710"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38b0dac2c8e057562b8f0d8ae5b663d2d6a28c5ab624de5b73cef9abb6129a24"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fde3bbb14e92ce8fcb5c2edfff72e474d0080cadda1c97785bf4822f037a309"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9141fb0592e55f98fe9ac0f3ce883199b9c13e262e0bf40c5b18cdf926109d16"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:237bec5dd1bfc9b40bbd786cd27949ef0c0eb5fab5eb491904c6b5df59d39d3c"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18123168cba156ab5794ea6de66db50f21bb3c66ae748d03316e71b27d907b95"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b75fe506c8e02769cc47f5ab21ce3e09b6211d3edaa8f8f27331cb6988779be"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9da82aa4b46973aaf9e03bb4c3d6977004648c8638febfc0f9d237e865761270"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:c34c022d5ad564f1a5a57a4a89793bd70d7bad428150fb8ff2760b223407cdcf"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:1e96c84d6c2a0ca94e15acb5399118fff669f4306beb98a6d8ec6f5dccab4412"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:e8e154b84a311263e1aca86818c962e1fa9eefdd643d1d5d197fcd2738f88cb9"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:335fee93188f8cd585552bb8057228ce0111bd227fa81bfd40b7df6b75def8ab"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win32.whl", hash = "sha256:6729b856166a9e95c278410f73683957ea6100c8a9d0a8dbe434c49663689255"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:0e06d99ad1ad97cb2ef7f51ec6b1fedd74a3a700e4949353871cf331d07b382a"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win_arm64.whl", hash = "sha256:8d1b7082104d596a3eb012e0549b2634ed15015b569f48879701e9d8db959dbb"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:779027d3307e1a2b1dc0c03c34df87a470a368a1a0840a9d2908baf2d4067956"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:440b5608ab12650d0390128d6858bc839ae77ffe5edf0b33a1551f2fa9860651"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82cac41a411e07a6f3dc80dfbd33f6be70ea0abd72e99c59310819d09f07d945"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:958473c9f0bca250590200fd520b75be0dbdbc4a7327dc87a55b6d7dc8d68552"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ef60dfa73749ef91cb6073be1a3e135f4846ec809cc115f3cbfc6fe283a5584"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7fbac18f2c19fc983838a60611e67e3262e36859994c26f2ee85bb268de2355"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a0d519ff39db887cd73f4e297922786d548f5c05d6b51f4e6754f452a7f4296"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bebb7bc6aeb91cc57e4881b222484c26759ca865794187217c9dcea6c33adae6"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fe07f8b9c3bb5c5ad1d2c66884253e03800f4189a60eb6acd6119ebaf3eb9894"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:bfa48a4a2d45a41457f0840c48e579db157a927f4e97acf6e20df8fc521c79de"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:2cf44d01bfe8ee605b7eaeecbc2b9ca64fc55765f17b304b40ed8995f69d7716"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e6bbca9246d9eedaa1c84e04a7f555493ba324d52ae4d9f3d9ddd1b740dcd87"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win32.whl", hash = "sha256:567f88180f2c1423b4fe3f3ad6e6310fc97b85bdba574801548597287fc07028"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:6b2cd7c29d6ecdf0b780deb587198f13213ac01c430ada6913452fd0c40190fc"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win_arm64.whl", hash = "sha256:9f912d459e46607ce276128f52bea21ebc3e9a5ccf4cccfef30dd5bddcf47be8"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ac4452f182243cfab30ba4668ef2de101effaedc30f9faabb06a095a8c90fd16"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:565c2bd4f7d23c32834652b27b51dd711814ab614b4e12add8476be4e20d1cf5"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:187d9747149321607be4ccd6f9f366730078bed806178ec3eeb31d05545e9e8f"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:616290fb9a8fa87e48cb0326d26f98d4e29f17c3b762c2d586f2b35c1fd2034b"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:073a5b107e17ebd264198b78614c0206fa438cce749692af5bc5f8f484883f50"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:39c4983e2e2ccb9732f3ac7d81617088822f4a12291d416b09b8a1eadebb3e29"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ac7adee6bcf0c6fee495d877edad1540a7e0f5fc208da03ccb64734b43522d7a"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:425f4ac80b22153d391ee3f94bc854668a0c6c129f05cf2eaf5ee74474ddb69e"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65a2fa13e8a219f9b5dcb9e74abe3ced5838a7327e629f426d333dfc8c5a6e66"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:75561f3df9a906aaa23787e9992b228b1ab69007932dc42070f747103e177ba8"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:edd062490537e97ca125bc6c7f2b7331c2b73d21dc304615afe61ad1691e15d5"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfcc8feccf63245a22dfdd16e222f1a39771a44b870beb748117a0e09cbb4a62"}, + {file = "rapidfuzz-3.10.1.tar.gz", hash = "sha256:5a15546d847a915b3f42dc79ef9b0c78b998b4e2c53b252e7166284066585979"}, ] [package.extras] @@ -4595,13 +4640,13 @@ test = ["pytest", "tornado (>=4.5)", "typeguard"] [[package]] name = "textual" -version = "0.84.0" +version = "0.85.0" description = "Modern Text User Interface framework" optional = false python-versions = "<4.0.0,>=3.8.1" files = [ - {file = "textual-0.84.0-py3-none-any.whl", hash = "sha256:1457d2cb66ba4ea46812355f31adbb4b693424a94e69d052e4affe1dc410ec96"}, - {file = "textual-0.84.0.tar.gz", hash = "sha256:fb89717960fea7a539823fa264252f7be1c84844e4b8d27360e6d4edb36846a8"}, + {file = "textual-0.85.0-py3-none-any.whl", hash = "sha256:8e75d023f06b242fb88233926dfb7801792f867643493096dd45dd216dc950f3"}, + {file = "textual-0.85.0.tar.gz", hash = "sha256:645c0fd0b4f61cd19383df78a1acd4f3b555e2c514cfa2f454e20692dffc10a0"}, ] [package.dependencies] @@ -4904,13 +4949,13 @@ bracex = ">=2.1.1" [[package]] name = "werkzeug" -version = "3.0.4" +version = "3.0.5" description = "The comprehensive WSGI web application library." optional = false python-versions = ">=3.8" files = [ - {file = "werkzeug-3.0.4-py3-none-any.whl", hash = "sha256:02c9eb92b7d6c06f31a782811505d2157837cea66aaede3e217c7c27c039476c"}, - {file = "werkzeug-3.0.4.tar.gz", hash = "sha256:34f2371506b250df4d4f84bfe7b0921e4762525762bbd936614909fe25cd7306"}, + {file = "werkzeug-3.0.5-py3-none-any.whl", hash = "sha256:6e589e0b303561b8b1a61d363ee05b1d7de6ca12f27a3a25269ae6ee93e363fd"}, + {file = "werkzeug-3.0.5.tar.gz", hash = "sha256:033bc3783777078517f32ae3ba9e86e9bc38bdbf139b1a5a3af9679a64ed1293"}, ] [package.dependencies] @@ -5144,4 +5189,4 @@ vector-db-based = ["cohere", "langchain", "openai", "tiktoken"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "dd9fc46d1b293c88a5424d1ac79244003726701dce8673cfbcdcd2424a9b3476" +content-hash = "95a6067db019e9dd56a9cccfdb89657ddb5723ed8c9b609e2e886c5c2868919e" diff --git a/airbyte-cdk/python/pyproject.toml b/airbyte-cdk/python/pyproject.toml index 06888387fee7..3c33b7ae3c37 100644 --- a/airbyte-cdk/python/pyproject.toml +++ b/airbyte-cdk/python/pyproject.toml @@ -37,6 +37,7 @@ jsonref = "~0.2" jsonschema = "~3.2.0" pandas = "2.2.2" pendulum = "<3.0.0" +psutil = "6.1.0" pydantic = "^2.7" pyrate-limiter = "~3.1.0" python-dateutil = "*" @@ -62,6 +63,9 @@ Sphinx = { version = "~4.2", optional = true } sphinx-rtd-theme = { version = "~1.0", optional = true } tiktoken = { version = "0.4.0", optional = true } nltk = { version = "3.8.1", optional = true } +# This will ensure that even when you run poetry install or pip install, the compatible version of numpy will always be chosen. +# airbyte-ci will try to install latest version when --use-local-cdk is used, resulting in the conflict. +numpy = "<2" unstructured = { version = "0.10.27", extras = ["docx", "pptx"], optional = true } "unstructured.pytesseract" = { version = ">=0.3.12", optional = true } pyjwt = "^2.8.0" diff --git a/airbyte-cdk/python/unit_tests/sources/file_based/in_memory_files_source.py b/airbyte-cdk/python/unit_tests/sources/file_based/in_memory_files_source.py index 0a2681911211..f63d5bbd75b0 100644 --- a/airbyte-cdk/python/unit_tests/sources/file_based/in_memory_files_source.py +++ b/airbyte-cdk/python/unit_tests/sources/file_based/in_memory_files_source.py @@ -110,6 +110,9 @@ def get_matching_files( globs, ) + def file_size(self, file: RemoteFile) -> int: + return 0 + def open_file(self, file: RemoteFile, mode: FileReadMode, encoding: Optional[str], logger: logging.Logger) -> IOBase: if self.file_type == "csv": return self._make_csv_file_contents(file.uri) diff --git a/airbyte-cdk/python/unit_tests/sources/file_based/scenarios/csv_scenarios.py b/airbyte-cdk/python/unit_tests/sources/file_based/scenarios/csv_scenarios.py index 3f0579677f2a..2fff455b08ca 100644 --- a/airbyte-cdk/python/unit_tests/sources/file_based/scenarios/csv_scenarios.py +++ b/airbyte-cdk/python/unit_tests/sources/file_based/scenarios/csv_scenarios.py @@ -436,6 +436,55 @@ "required": ["name", "format"], }, }, + "delivery_method": { + "airbyte_hidden": True, + "title": "Delivery Method", + "default": "use_records_transfer", + "type": "object", + "order": 7, + "display_type": "radio", + "group": "advanced", + "oneOf": [ + { + "title": "Replicate Records", + "type": "object", + "properties": { + "delivery_type": { + "title": "Delivery Type", + "default": "use_records_transfer", + "const": "use_records_transfer", + "enum": [ + "use_records_transfer" + ], + "type": "string" + } + }, + "description": "Recommended - Extract and load structured records into your destination of choice. This is the classic method of moving data in Airbyte. It allows for blocking and hashing individual fields or files from a structured schema. Data can be flattened, typed and deduped depending on the destination.", + "required": [ + "delivery_type" + ] + }, + { + "title": "Copy Raw Files", + "type": "object", + "properties": { + "delivery_type": { + "title": "Delivery Type", + "default": "use_file_transfer", + "const": "use_file_transfer", + "enum": [ + "use_file_transfer" + ], + "type": "string" + } + }, + "description": "Copy raw files without parsing their contents. Bits are copied into the destination exactly as they appeared in the source. Recommended for use with unstructured text data, non-text and compressed files.", + "required": [ + "delivery_type" + ] + } + ] + }, }, "required": ["streams"], }, diff --git a/airbyte-cdk/python/unit_tests/sources/file_based/stream/test_default_file_based_stream.py b/airbyte-cdk/python/unit_tests/sources/file_based/stream/test_default_file_based_stream.py index ae2b87d24b27..8d36e47143ff 100644 --- a/airbyte-cdk/python/unit_tests/sources/file_based/stream/test_default_file_based_stream.py +++ b/airbyte-cdk/python/unit_tests/sources/file_based/stream/test_default_file_based_stream.py @@ -6,6 +6,7 @@ import unittest from datetime import datetime, timezone from typing import Any, Iterable, Iterator, Mapping +from unittest import mock from unittest.mock import Mock import pytest @@ -15,6 +16,7 @@ from airbyte_cdk.sources.file_based.discovery_policy import AbstractDiscoveryPolicy from airbyte_cdk.sources.file_based.exceptions import FileBasedErrorsCollector, FileBasedSourceError from airbyte_cdk.sources.file_based.file_based_stream_reader import AbstractFileBasedStreamReader +from airbyte_cdk.sources.file_based.file_types import BlobTransfer from airbyte_cdk.sources.file_based.file_types.file_type_parser import FileTypeParser from airbyte_cdk.sources.file_based.remote_file import RemoteFile from airbyte_cdk.sources.file_based.schema_validation_policies import AbstractSchemaValidationPolicy @@ -250,3 +252,48 @@ def test_yield_and_raise_collected(self) -> None: list(self.test_error_collector.yield_and_raise_collected()) assert parse_error.value.message == "Some errors occured while reading from the source." assert parse_error.value.internal_message == "Please check the logged errors for more information." + + +class DefaultFileBasedStreamFileTransferTest(unittest.TestCase): + _NOW = datetime(2022, 10, 22, tzinfo=timezone.utc) + _A_RECORD = {'bytes': 10, 'file_relative_path': 'relative/path/file.csv', 'file_url': '/absolute/path/file.csv'} + + def setUp(self) -> None: + self._stream_config = Mock() + self._stream_config.format = MockFormat() + self._stream_config.name = "a stream name" + self._catalog_schema = Mock() + self._stream_reader = Mock(spec=AbstractFileBasedStreamReader) + self._availability_strategy = Mock(spec=AbstractFileBasedAvailabilityStrategy) + self._discovery_policy = Mock(spec=AbstractDiscoveryPolicy) + self._parser = Mock(spec=FileTypeParser) + self._validation_policy = Mock(spec=AbstractSchemaValidationPolicy) + self._validation_policy.name = "validation policy name" + self._cursor = Mock(spec=AbstractFileBasedCursor) + + self._stream = DefaultFileBasedStream( + config=self._stream_config, + catalog_schema=self._catalog_schema, + stream_reader=self._stream_reader, + availability_strategy=self._availability_strategy, + discovery_policy=self._discovery_policy, + parsers={MockFormat: self._parser}, + validation_policy=self._validation_policy, + cursor=self._cursor, + errors_collector=FileBasedErrorsCollector(), + use_file_transfer=True + ) + + def test_when_read_records_from_slice_then_return_records(self) -> None: + """Verify that we have the new file method and data is empty""" + with mock.patch.object(BlobTransfer, "write_streams", return_value=[self._A_RECORD]): + messages = list(self._stream.read_records_from_slice({"files": [RemoteFile(uri="uri", last_modified=self._NOW)]})) + assert list(map(lambda message: message.record.file, messages)) == [self._A_RECORD] + assert list(map(lambda message: message.record.data, messages)) == [{}] + + def test_when_transform_record_then_return_updated_record(self) -> None: + file = RemoteFile(uri="uri", last_modified=self._NOW) + last_updated = int(self._NOW.timestamp()) * 1000 + transformed_record = self._stream.transform_record_for_file_transfer(self._A_RECORD, file) + assert transformed_record[self._stream.modified] == last_updated + assert transformed_record[self._stream.source_file_url] == file.uri diff --git a/airbyte-cdk/python/unit_tests/sources/file_based/test_file_based_stream_reader.py b/airbyte-cdk/python/unit_tests/sources/file_based/test_file_based_stream_reader.py index 5abbecc0434d..98b96941b49f 100644 --- a/airbyte-cdk/python/unit_tests/sources/file_based/test_file_based_stream_reader.py +++ b/airbyte-cdk/python/unit_tests/sources/file_based/test_file_based_stream_reader.py @@ -73,6 +73,9 @@ def get_matching_files(self, globs: List[str]) -> Iterable[RemoteFile]: def open_file(self, file: RemoteFile) -> IOBase: pass + def file_size(self, file: RemoteFile) -> int: + return 0 + class TestSpec(AbstractFileBasedSpec): @classmethod From e2b54439282378f82eedbc228d7bf86b56d3b051 Mon Sep 17 00:00:00 2001 From: aldogonzalez8 Date: Thu, 31 Oct 2024 12:26:46 +0000 Subject: [PATCH 501/808] =?UTF-8?q?=F0=9F=A4=96=20minor=20bump=20Python=20?= =?UTF-8?q?CDK=20to=20version=206.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-cdk/python/CHANGELOG.md | 3 +++ airbyte-cdk/python/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index ff366e4bf120..327a012c0c58 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 6.1.0 +Add option to File Transfer for File-Bases sources + ## 6.0.0 Introduce support for low-code incremental streams to be run within the concurrent CDK framework diff --git a/airbyte-cdk/python/pyproject.toml b/airbyte-cdk/python/pyproject.toml index 3c33b7ae3c37..fbdba04be599 100644 --- a/airbyte-cdk/python/pyproject.toml +++ b/airbyte-cdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-cdk" -version = "6.0.0" +version = "6.1.0" description = "A framework for writing Airbyte Connectors." authors = ["Airbyte "] license = "MIT" From b05e4e38003ca273a0aa9029edd4072fe64fd7dd Mon Sep 17 00:00:00 2001 From: aldogonzalez8 Date: Thu, 31 Oct 2024 12:32:46 +0000 Subject: [PATCH 502/808] =?UTF-8?q?=F0=9F=A4=96=20Cut=20version=206.1.0=20?= =?UTF-8?q?of=20source-declarative-manifest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-declarative-manifest/metadata.yaml | 2 +- .../source-declarative-manifest/poetry.lock | 40 +++++++++++++++++-- .../pyproject.toml | 4 +- docs/integrations/sources/low-code.md | 1 + 4 files changed, 40 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml index 66566ea98b42..6747ef487fce 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml +++ b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml @@ -8,7 +8,7 @@ data: connectorType: source definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436 # This version should not be updated manually - it is updated by the CDK release workflow. - dockerImageTag: 6.0.0 + dockerImageTag: 6.1.0 dockerRepository: airbyte/source-declarative-manifest # This page is hidden from the docs for now, since the connector is not in any Airbyte registries. documentationUrl: https://docs.airbyte.com/integrations/sources/low-code diff --git a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock index 3d6dddf18c7b..ee7fd17a0bbf 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock +++ b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "6.0.0" +version = "6.1.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-6.0.0-py3-none-any.whl", hash = "sha256:c0d317202b73655307089fd43571444fcd14e68a97c826763bf0b76fb018d5a4"}, - {file = "airbyte_cdk-6.0.0.tar.gz", hash = "sha256:ebedcfb431cc229427f0526b16a639ffafb3e153fbacadf4c859415d702c7e85"}, + {file = "airbyte_cdk-6.1.0-py3-none-any.whl", hash = "sha256:312cda1375f27ccf737cd4812e0c64babc48ecfca445fc4db4d0173d47b72461"}, + {file = "airbyte_cdk-6.1.0.tar.gz", hash = "sha256:55cda86822be047f992f1cee1e87b4dc6c57e0ae4c5fa38d8b7c3e0d6eef3d88"}, ] [package.dependencies] @@ -25,9 +25,11 @@ jsonref = ">=0.2,<0.3" jsonschema = ">=3.2.0,<3.3.0" langchain_core = "0.1.42" nltk = "3.8.1" +numpy = "<2" orjson = ">=3.10.7,<4.0.0" pandas = "2.2.2" pendulum = "<3.0.0" +psutil = "6.1.0" pydantic = ">=2.7,<3.0" pyjwt = ">=2.8.0,<3.0.0" pyrate-limiter = ">=3.1.0,<3.2.0" @@ -973,6 +975,36 @@ files = [ dev = ["pre-commit", "tox"] testing = ["pytest", "pytest-benchmark"] +[[package]] +name = "psutil" +version = "6.1.0" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"}, + {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"}, + {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"}, + {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"}, + {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"}, + {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"}, + {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"}, + {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"}, +] + +[package.extras] +dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"] +test = ["pytest", "pytest-xdist", "setuptools"] + [[package]] name = "pycparser" version = "2.22" @@ -1747,4 +1779,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10,<3.12" -content-hash = "3646a321683a198f1329a135d1c372bd95bef85b35093fb2cb3f4611c873d2a8" +content-hash = "9d11f2d7a471d9c9a33b3e136bfccc0ad4339a657c38f036652f48e90a484cb5" diff --git a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml index 71ac69b22bb7..bb738a7c3dd1 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml +++ b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.0.0" +version = "6.1.0" name = "source-declarative-manifest" description = "Base source implementation for low-code sources." authors = ["Airbyte "] @@ -17,7 +17,7 @@ include = "source_declarative_manifest" [tool.poetry.dependencies] python = "^3.10,<3.12" -airbyte-cdk = "6.0.0" +airbyte-cdk = "6.1.0" [tool.poetry.scripts] source-declarative-manifest = "source_declarative_manifest.run:run" diff --git a/docs/integrations/sources/low-code.md b/docs/integrations/sources/low-code.md index 4f8f3ec75abb..92cc57a78f1d 100644 --- a/docs/integrations/sources/low-code.md +++ b/docs/integrations/sources/low-code.md @@ -9,6 +9,7 @@ The changelog below is automatically updated by the `bump_version` command as pa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 6.1.0 | 2024-10-31 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.1.0 | | 6.0.0 | 2024-10-30 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.0.0 | | 5.17.0 | 2024-10-28 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.17.0 | | 5.16.0 | 2024-10-23 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.16.0 | From 2c22f0a9fbc5653081335ed94091c24b250bcbf6 Mon Sep 17 00:00:00 2001 From: "Pedro S. Lopez" Date: Thu, 31 Oct 2024 10:55:40 -0400 Subject: [PATCH 503/808] docs: add email domain to sso setup requirements (#47217) Co-authored-by: Natalie Kwong <38087517+nataliekwong@users.noreply.github.com> --- docs/access-management/sso-providers/azure-entra-id.md | 1 + docs/access-management/sso-providers/okta.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/access-management/sso-providers/azure-entra-id.md b/docs/access-management/sso-providers/azure-entra-id.md index 5b06c4e29d8a..a04b8a40d5de 100644 --- a/docs/access-management/sso-providers/azure-entra-id.md +++ b/docs/access-management/sso-providers/azure-entra-id.md @@ -57,6 +57,7 @@ You'll need to pass your Airbyte contact the following information of the create - **Client Secret**: as copied above - **Application (client) ID**: You'll find this in the **Essentials** section on the **Overview** page of the application you created - **OpenID Connect metadata document**: You'll find this in the **Endpoints** panel, that you can open from the top bar on the **Overview** page +- **Email Domain**: Users signing in from this domain will be required to sign in via SSO. Once we've received this information from you, We'll setup SSO for you and let you know once it's ready to be used. diff --git a/docs/access-management/sso-providers/okta.md b/docs/access-management/sso-providers/okta.md index 2998907ca492..e6937d897b1a 100644 --- a/docs/access-management/sso-providers/okta.md +++ b/docs/access-management/sso-providers/okta.md @@ -63,6 +63,7 @@ On the following screen you'll need to configure all parameters for your Okta ap * Your **Okta domain** (it's not specific to this application, see [Find your Okta domain](https://developer.okta.com/docs/guides/find-your-domain/main/)) * **Client ID** * **Client Secret** + * **Email Domain** (users signing in from this domain will be required to sign in via SSO) From da01b777c619792e4bbab70ce523797f8b87a633 Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Thu, 31 Oct 2024 09:40:22 -0700 Subject: [PATCH 504/808] Bulk Load CDK: Obj Storage Destination State + S3V2 Usage (#47954) --- .../cdk/load/state/DestinationStateManager.kt | 46 ++++++ .../io/airbyte/cdk/load/util/JsonUtils.kt | 4 + .../toolkits/load-object-storage/build.gradle | 2 + .../object_storage/ObjectStorageClient.kt | 3 + .../ObjectStorageFormattingWriter.kt | 1 + .../ObjectStoragePathFactory.kt | 27 +++- .../ObjectStorageDestinationStateManager.kt | 136 ++++++++++++++++++ .../ObjectStorageDestinationStateTest.kt | 117 +++++++++++++++ .../cdk/load/MockObjectStorageClient.kt | 76 ++++++++++ .../io/airbyte/cdk/load/MockPathFactory.kt | 37 +++++ .../io/airbyte/cdk/load/file/s3/S3Client.kt | 20 +++ .../destination-s3-v2/metadata.yaml | 2 +- .../src/main/kotlin/S3V2Writer.kt | 73 +++++++++- .../destination/s3_v2/S3V2WriteTest.kt | 6 +- 14 files changed, 540 insertions(+), 10 deletions(-) create mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/state/DestinationStateManager.kt create mode 100644 airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateManager.kt create mode 100644 airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateTest.kt create mode 100644 airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt create mode 100644 airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockPathFactory.kt diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/state/DestinationStateManager.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/state/DestinationStateManager.kt new file mode 100644 index 000000000000..7d3195e41558 --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/state/DestinationStateManager.kt @@ -0,0 +1,46 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.state + +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings +import io.airbyte.cdk.load.command.DestinationStream +import io.micronaut.context.annotation.Secondary +import jakarta.inject.Singleton +import java.util.concurrent.ConcurrentHashMap + +interface DestinationState + +interface DestinationStateManager { + suspend fun getState(stream: DestinationStream): T + suspend fun persistState(stream: DestinationStream) +} + +@SuppressFBWarnings( + "NP_NONNULL_PARAM_VIOLATION", + justification = "state is guaranteed to be non-null by Kotlin's type system" +) +@Singleton +@Secondary +class DefaultDestinationStateManager( + private val persister: DestinationStatePersister, +) : DestinationStateManager { + private val states: ConcurrentHashMap = ConcurrentHashMap() + + override suspend fun getState(stream: DestinationStream): T { + return states.getOrPut(stream.descriptor) { persister.load(stream) } + } + + override suspend fun persistState(stream: DestinationStream) { + val state = + states[stream.descriptor] + ?: throw IllegalStateException("State not found for stream $stream") + persister.persist(stream, state) + } +} + +interface DestinationStatePersister { + suspend fun load(stream: DestinationStream): T + suspend fun persist(stream: DestinationStream, state: T) +} diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/util/JsonUtils.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/util/JsonUtils.kt index 682354cde481..050e32c918bb 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/util/JsonUtils.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/util/JsonUtils.kt @@ -14,3 +14,7 @@ fun JsonNode.serializeToString(): String { fun String.deserializeToNode(): JsonNode { return Jsons.readTree(this) } + +fun Any.serializeToJsonBytes(): ByteArray { + return Jsons.writeValueAsBytes(this) +} diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/build.gradle b/airbyte-cdk/bulk/toolkits/load-object-storage/build.gradle index aa96859890c5..47e3994e376e 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/build.gradle +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/build.gradle @@ -9,6 +9,8 @@ dependencies { api project(':airbyte-cdk:bulk:toolkits:bulk-cdk-toolkit-load-csv') api project(':airbyte-cdk:bulk:toolkits:bulk-cdk-toolkit-load-parquet') + testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1") + testFixturesImplementation testFixtures(project(":airbyte-cdk:bulk:core:bulk-cdk-core-load")) testFixturesImplementation testFixtures(project(":airbyte-cdk:bulk:toolkits:bulk-cdk-toolkit-load-avro")) testFixturesImplementation testFixtures(project(":airbyte-cdk:bulk:toolkits:bulk-cdk-toolkit-load-csv")) diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt index 099d5979a261..27746e0f9054 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt @@ -13,9 +13,12 @@ import kotlinx.coroutines.flow.Flow interface ObjectStorageClient> { suspend fun list(prefix: String): Flow suspend fun move(remoteObject: T, toKey: String): T + suspend fun move(key: String, toKey: String): T suspend fun
get(key: String, block: (InputStream) -> U): U + suspend fun getMetadata(key: String): Map suspend fun put(key: String, bytes: ByteArray): T suspend fun delete(remoteObject: T) + suspend fun delete(key: String) /** * Streaming upload should provide an [OutputStream] managed within the lifecycle of [block]. diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt index 99a97afa7e17..bc70149ebc3c 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt @@ -69,6 +69,7 @@ class JsonFormattingWriter( ) : ObjectStorageFormattingWriter { override fun accept(record: DestinationRecord) { outputStream.write(recordDecorator.decorate(record).toJson().serializeToString()) + outputStream.write("\n") } override fun close() { diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt index c7f051dede0b..5f2fa9994fce 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt @@ -20,6 +20,17 @@ import java.time.ZonedDateTime import java.time.format.DateTimeFormatter import java.util.* +interface PathFactory { + fun getStagingDirectory(stream: DestinationStream): Path + fun getFinalDirectory(stream: DestinationStream): Path + fun getPathToFile( + stream: DestinationStream, + partNumber: Long?, + isStaging: Boolean = false, + extension: String? = null + ): Path +} + @Singleton @Secondary class ObjectStoragePathFactory( @@ -27,7 +38,7 @@ class ObjectStoragePathFactory( formatConfigProvider: ObjectStorageFormatConfigurationProvider? = null, compressionConfigProvider: ObjectStorageCompressionConfigurationProvider<*>? = null, timeProvider: TimeProvider, -) { +) : PathFactory { private val loadedAt = timeProvider.let { Instant.ofEpochMilli(it.currentTimeMillis()) } private val pathConfig = pathConfigProvider.objectStoragePathConfiguration private val fileFormatExtension = @@ -147,7 +158,7 @@ class ObjectStoragePathFactory( } } - fun getStagingDirectory(stream: DestinationStream): Path { + override fun getStagingDirectory(stream: DestinationStream): Path { val prefix = pathConfig.stagingPrefix ?: Paths.get(pathConfig.prefix, DEFAULT_STAGING_PREFIX_SUFFIX).toString() @@ -155,24 +166,26 @@ class ObjectStoragePathFactory( return Paths.get(prefix, path) } - fun getFinalDirectory(stream: DestinationStream): Path { + override fun getFinalDirectory(stream: DestinationStream): Path { val path = getFormattedPath(stream) return Paths.get(pathConfig.prefix, path) } - fun getPathToFile( + override fun getPathToFile( stream: DestinationStream, partNumber: Long?, - isStaging: Boolean = false, - extension: String? = defaultExtension + isStaging: Boolean, + extension: String? ): Path { + val extensionResolved = extension ?: defaultExtension val path = if (isStaging) { getStagingDirectory(stream) } else { getFinalDirectory(stream) } - val context = VariableContext(stream, extension = extension, partNumber = partNumber) + val context = + VariableContext(stream, extension = extensionResolved, partNumber = partNumber) val fileName = getFormattedFileName(context) return path.resolve(fileName) } diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateManager.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateManager.kt new file mode 100644 index 000000000000..5dac7e167c2e --- /dev/null +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateManager.kt @@ -0,0 +1,136 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.state.object_storage + +import com.fasterxml.jackson.annotation.JsonIgnore +import com.fasterxml.jackson.annotation.JsonProperty +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings +import io.airbyte.cdk.load.command.DestinationStream +import io.airbyte.cdk.load.file.object_storage.ObjectStorageClient +import io.airbyte.cdk.load.file.object_storage.PathFactory +import io.airbyte.cdk.load.state.DestinationState +import io.airbyte.cdk.load.state.DestinationStatePersister +import io.airbyte.cdk.load.util.serializeToJsonBytes +import io.airbyte.cdk.util.Jsons +import io.github.oshai.kotlinlogging.KotlinLogging +import io.micronaut.context.annotation.Factory +import io.micronaut.context.annotation.Secondary +import jakarta.inject.Singleton +import kotlinx.coroutines.sync.Mutex +import kotlinx.coroutines.sync.withLock + +@SuppressFBWarnings("NP_NONNULL_PARAM_VIOLATION", justification = "Kotlin async continuation") +class ObjectStorageDestinationState( + @JsonProperty("generations_by_state") + var generationMap: MutableMap>> = + mutableMapOf(), +) : DestinationState { + enum class State { + STAGED, + FINALIZED + } + + @JsonIgnore private val accessLock = Mutex() + + suspend fun addObject( + generationId: Long, + key: String, + partNumber: Long, + isStaging: Boolean = false + ) { + val state = if (isStaging) State.STAGED else State.FINALIZED + accessLock.withLock { + generationMap + .getOrPut(state) { mutableMapOf() } + .getOrPut(generationId) { mutableMapOf() }[key] = partNumber + } + } + + suspend fun removeObject(generationId: Long, key: String, isStaging: Boolean = false) { + val state = if (isStaging) State.STAGED else State.FINALIZED + accessLock.withLock { generationMap[state]?.get(generationId)?.remove(key) } + } + + suspend fun dropGenerationsBefore(minimumGenerationId: Long) { + accessLock.withLock { + State.entries.forEach { state -> + (0 until minimumGenerationId).forEach { generationMap[state]?.remove(it) } + } + } + } + + data class Generation( + val isStaging: Boolean, + val generationId: Long, + val objects: List + ) + + data class ObjectAndPart( + val key: String, + val partNumber: Long, + ) + + @get:JsonIgnore + val generations: Sequence + get() = + generationMap.entries + .asSequence() + .map { (state, gens) -> + val isStaging = state == State.STAGED + gens.map { (generationId, objects) -> + Generation( + isStaging, + generationId, + objects.map { (key, partNumber) -> ObjectAndPart(key, partNumber) } + ) + } + } + .flatten() +} + +@SuppressFBWarnings("NP_NONNULL_PARAM_VIOLATION", justification = "Kotlin async continuation") +class ObjectStorageStagingPersister( + private val client: ObjectStorageClient<*>, + private val pathFactory: PathFactory +) : DestinationStatePersister { + private val log = KotlinLogging.logger {} + + companion object { + const val STATE_FILENAME = "__airbyte_state.json" + } + + private fun keyFor(stream: DestinationStream): String = + pathFactory.getStagingDirectory(stream).resolve(STATE_FILENAME).toString() + + override suspend fun load(stream: DestinationStream): ObjectStorageDestinationState { + val key = keyFor(stream) + try { + log.info { "Loading destination state from $key" } + return client.get(key) { inputStream -> + Jsons.readTree(inputStream).let { + Jsons.treeToValue(it, ObjectStorageDestinationState::class.java) + } + } + } catch (e: Exception) { + log.info { "No destination state found at $key: $e" } + return ObjectStorageDestinationState() + } + } + + override suspend fun persist(stream: DestinationStream, state: ObjectStorageDestinationState) { + client.put(keyFor(stream), state.serializeToJsonBytes()) + } +} + +@Factory +class ObjectStorageDestinationStatePersisterFactory( + private val client: ObjectStorageClient<*>, + private val pathFactory: PathFactory +) { + @Singleton + @Secondary + fun create(): DestinationStatePersister = + ObjectStorageStagingPersister(client, pathFactory) +} diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateTest.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateTest.kt new file mode 100644 index 000000000000..4e7fb407379e --- /dev/null +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateTest.kt @@ -0,0 +1,117 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.state.object_storage + +import io.airbyte.cdk.load.MockObjectStorageClient +import io.airbyte.cdk.load.MockPathFactory +import io.airbyte.cdk.load.command.MockDestinationCatalogFactory +import io.airbyte.cdk.load.state.DestinationStateManager +import io.micronaut.test.extensions.junit5.annotation.MicronautTest +import jakarta.inject.Inject +import kotlinx.coroutines.flow.toList +import kotlinx.coroutines.test.runTest +import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Test + +@MicronautTest( + rebuildContext = true, + environments = + [ + "ObjectStorageDestinationStateTest", + "MockDestinationCatalog", + "MockObjectStorageClient", + "MockPathFactory" + ] +) +class ObjectStorageDestinationStateTest { + @Inject lateinit var stateManager: DestinationStateManager + @Inject lateinit var mockClient: MockObjectStorageClient + @Inject lateinit var pathFactory: MockPathFactory + + companion object { + val stream1 = MockDestinationCatalogFactory.stream1 + const val PERSISTED = + """{"generations_by_state":{"FINALIZED":{"0":{"key1":0,"key2":1},"1":{"key3":0,"key4":1}}}}""" + } + + @Test + fun testBasicLifecycle() = runTest { + // TODO: Test fallback to generation id + val state = stateManager.getState(stream1) + Assertions.assertEquals( + emptyList(), + state.generations.toList(), + "state should initially be empty" + ) + state.addObject(0, "key1", 0) + state.addObject(0, "key2", 1) + state.addObject(1, "key3", 0) + state.addObject(1, "key4", 1) + Assertions.assertEquals( + 4, + state.generations.flatMap { it.objects }.toList().size, + "state should contain 4 objects" + ) + + stateManager.persistState(stream1) + val obj = mockClient.list("").toList().first() + val data = mockClient.get(obj.key) { it.readBytes() } + Assertions.assertEquals( + PERSISTED, + data.toString(Charsets.UTF_8), + "state should be persisted" + ) + + state.removeObject(0, "key1") + state.removeObject(0, "key2") + state.removeObject(1, "key3") + state.removeObject(1, "key4") + Assertions.assertEquals( + emptyList(), + state.generations.flatMap { it.objects }.toList(), + "objects should be removed" + ) + + val fetchedState = stateManager.getState(stream1) + Assertions.assertEquals( + 0, + fetchedState.generations.flatMap { it.objects }.toList().size, + "state should still contain 0 objects (managed state is in cache)" + ) + } + + @Test + fun testLoadingExistingState() = runTest { + val key = + pathFactory + .getStagingDirectory(stream1) + .resolve(ObjectStorageStagingPersister.STATE_FILENAME) + .toString() + mockClient.put(key, PERSISTED.toByteArray()) + val state = stateManager.getState(stream1) + Assertions.assertEquals( + listOf( + ObjectStorageDestinationState.Generation( + false, + 0, + listOf( + ObjectStorageDestinationState.ObjectAndPart("key1", 0), + ObjectStorageDestinationState.ObjectAndPart("key2", 1) + ) + ), + ObjectStorageDestinationState.Generation( + false, + 1, + listOf( + ObjectStorageDestinationState.ObjectAndPart("key3", 0), + ObjectStorageDestinationState.ObjectAndPart("key4", 1) + ) + ) + ), + state.generations.toList(), + "state should be loaded from storage" + ) + } +} diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt new file mode 100644 index 000000000000..dabb87c319e7 --- /dev/null +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt @@ -0,0 +1,76 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load + +import io.airbyte.cdk.load.file.StreamProcessor +import io.airbyte.cdk.load.file.object_storage.ObjectStorageClient +import io.airbyte.cdk.load.file.object_storage.RemoteObject +import io.micronaut.context.annotation.Requires +import jakarta.inject.Singleton +import java.io.InputStream +import java.io.OutputStream +import java.util.concurrent.ConcurrentHashMap +import kotlinx.coroutines.flow.flow + +class MockRemoteObject( + override val key: String, + override val storageConfig: Int, + val data: ByteArray, + val metadata: Map = emptyMap() +) : RemoteObject + +@Singleton +@Requires(env = ["MockObjectStorageClient"]) +class MockObjectStorageClient : ObjectStorageClient { + private val objects = ConcurrentHashMap() + + override suspend fun list(prefix: String) = flow { + objects.values.filter { it.key.startsWith(prefix) }.forEach { emit(it) } + } + + override suspend fun move(remoteObject: MockRemoteObject, toKey: String): MockRemoteObject { + val oldObject = + objects.remove(remoteObject.key) ?: throw IllegalArgumentException("Object not found") + val newObject = MockRemoteObject(toKey, oldObject.storageConfig, oldObject.data) + objects[toKey] = newObject + return newObject + } + + override suspend fun move(key: String, toKey: String): MockRemoteObject { + val remoteObject = objects[key] ?: throw IllegalArgumentException("Object not found") + return move(remoteObject, toKey) + } + + override suspend fun get(key: String, block: (InputStream) -> R): R { + val remoteObject = objects[key] ?: throw IllegalArgumentException("Object not found") + return block(remoteObject.data.inputStream()) + } + + override suspend fun getMetadata(key: String): Map { + return objects[key]?.metadata ?: emptyMap() + } + + override suspend fun put(key: String, bytes: ByteArray): MockRemoteObject { + val remoteObject = MockRemoteObject(key, 0, bytes) + objects[key] = remoteObject + return remoteObject + } + + override suspend fun delete(key: String) { + objects.remove(key) + } + + override suspend fun streamingUpload( + key: String, + streamProcessor: StreamProcessor, + block: suspend (OutputStream) -> Unit + ): MockRemoteObject { + TODO("Not yet implemented") + } + + override suspend fun delete(remoteObject: MockRemoteObject) { + objects.remove(remoteObject.key) + } +} diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockPathFactory.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockPathFactory.kt new file mode 100644 index 000000000000..a31aaa297c08 --- /dev/null +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockPathFactory.kt @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load + +import io.airbyte.cdk.load.command.DestinationStream +import io.airbyte.cdk.load.file.object_storage.PathFactory +import io.micronaut.context.annotation.Requires +import jakarta.inject.Singleton +import java.nio.file.Path + +@Singleton +@Requires(env = ["MockPathFactory"]) +class MockPathFactory : PathFactory { + private fun fromStream(stream: DestinationStream): String { + return "/${stream.descriptor.namespace}/${stream.descriptor.name}" + } + + override fun getStagingDirectory(stream: DestinationStream): Path { + return Path.of("/staging/${fromStream(stream)}") + } + + override fun getFinalDirectory(stream: DestinationStream): Path { + return Path.of("/final/${fromStream(stream)}") + } + + override fun getPathToFile( + stream: DestinationStream, + partNumber: Long?, + isStaging: Boolean, + extension: String? + ): Path { + val prefix = if (isStaging) getStagingDirectory(stream) else getFinalDirectory(stream) + return prefix.resolve("file") + } +} diff --git a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt index 0d8275c31fa6..857d67dce981 100644 --- a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt +++ b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt @@ -79,6 +79,10 @@ class S3Client( return S3Object(toKey, bucketConfig) } + override suspend fun move(key: String, toKey: String): S3Object { + return move(S3Object(key, bucketConfig), toKey) + } + override suspend fun get(key: String, block: (InputStream) -> R): R { val request = GetObjectRequest { bucket = bucketConfig.s3BucketName @@ -94,6 +98,14 @@ class S3Client( } } + override suspend fun getMetadata(key: String): Map { + val request = GetObjectRequest { + bucket = bucketConfig.s3BucketName + this.key = key + } + return client.getObject(request) { it.metadata ?: emptyMap() } + } + override suspend fun put(key: String, bytes: ByteArray): S3Object { val request = PutObjectRequest { bucket = bucketConfig.s3BucketName @@ -112,6 +124,14 @@ class S3Client( client.deleteObject(request) } + override suspend fun delete(key: String) { + val request = DeleteObjectRequest { + bucket = bucketConfig.s3BucketName + this.key = key + } + client.deleteObject(request) + } + override suspend fun streamingUpload( key: String, block: suspend (OutputStream) -> Unit diff --git a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml index 8726a1097f18..446e000144bc 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml +++ b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: file connectorType: destination definitionId: d6116991-e809-4c7c-ae09-c64712df5b66 - dockerImageTag: 0.1.13 + dockerImageTag: 0.1.14 dockerRepository: airbyte/destination-s3-v2 githubIssueLabel: destination-s3-v2 icon: s3.svg diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt index 7d028777d2d0..672d275f5e00 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt @@ -12,8 +12,12 @@ import io.airbyte.cdk.load.file.s3.S3Client import io.airbyte.cdk.load.file.s3.S3Object import io.airbyte.cdk.load.message.Batch import io.airbyte.cdk.load.message.DestinationRecord +import io.airbyte.cdk.load.state.DestinationStateManager +import io.airbyte.cdk.load.state.StreamIncompleteResult +import io.airbyte.cdk.load.state.object_storage.ObjectStorageDestinationState import io.airbyte.cdk.load.write.DestinationWriter import io.airbyte.cdk.load.write.StreamLoader +import io.github.oshai.kotlinlogging.KotlinLogging import jakarta.inject.Singleton import java.util.concurrent.atomic.AtomicLong @@ -22,7 +26,10 @@ class S3V2Writer( private val s3Client: S3Client, private val pathFactory: ObjectStoragePathFactory, private val writerFactory: ObjectStorageFormattingWriterFactory, + private val destinationStateManager: DestinationStateManager, ) : DestinationWriter { + private val log = KotlinLogging.logger {} + sealed interface S3V2Batch : Batch data class StagedObject( override val state: Batch.State = Batch.State.PERSISTED, @@ -40,7 +47,18 @@ class S3V2Writer( @SuppressFBWarnings("NP_NONNULL_PARAM_VIOLATION", justification = "Kotlin async continuation") inner class S3V2StreamLoader(override val stream: DestinationStream) : StreamLoader { - private val partNumber = AtomicLong(0L) // TODO: Get from destination state + private val partNumber = AtomicLong(0L) + + override suspend fun start() { + val state = destinationStateManager.getState(stream) + val maxPartNumber = + state.generations + .filter { it.generationId >= stream.minimumGenerationId } + .mapNotNull { it.objects.maxOfOrNull { obj -> obj.partNumber } } + .maxOrNull() + log.info { "Got max part number from destination state: $maxPartNumber" } + maxPartNumber?.let { partNumber.set(it + 1L) } + } override suspend fun processRecords( records: Iterator, @@ -48,12 +66,18 @@ class S3V2Writer( ): Batch { val partNumber = partNumber.getAndIncrement() val key = pathFactory.getPathToFile(stream, partNumber, isStaging = true).toString() + + log.info { "Writing records to $key" } + val state = destinationStateManager.getState(stream) + state.addObject(stream.generationId, key, partNumber) + val s3Object = s3Client.streamingUpload(key) { outputStream -> writerFactory.create(stream, outputStream).use { writer -> records.forEach { writer.accept(it) } } } + log.info { "Finished writing records to $key" } return StagedObject(s3Object = s3Object, partNumber = partNumber) } @@ -63,9 +87,56 @@ class S3V2Writer( pathFactory .getPathToFile(stream, stagedObject.partNumber, isStaging = false) .toString() + log.info { "Moving staged object from ${stagedObject.s3Object.key} to $finalKey" } val newObject = s3Client.move(stagedObject.s3Object, finalKey) + + val state = destinationStateManager.getState(stream) + state.removeObject(stream.generationId, stagedObject.s3Object.key) + state.addObject(stream.generationId, newObject.key, stagedObject.partNumber) + val finalizedObject = FinalizedObject(s3Object = newObject) return finalizedObject } + + override suspend fun close(streamFailure: StreamIncompleteResult?) { + if (streamFailure != null) { + log.info { "Sync failed, persisting destination state for next run" } + destinationStateManager.persistState(stream) + } else { + log.info { "Sync succeeded, Moving any stragglers out of staging" } + val state = destinationStateManager.getState(stream) + val stagingToKeep = + state.generations.filter { + it.isStaging && it.generationId >= stream.minimumGenerationId + } + stagingToKeep.toList().forEach { + it.objects.forEach { obj -> + val newKey = + pathFactory + .getPathToFile(stream, obj.partNumber, isStaging = false) + .toString() + log.info { "Moving staged object from ${obj.key} to $newKey" } + val newObject = s3Client.move(obj.key, newKey) + state.removeObject(it.generationId, obj.key, isStaging = true) + state.addObject(it.generationId, newObject.key, obj.partNumber) + } + } + + log.info { "Removing old files" } + val (toKeep, toDrop) = + state.generations.partition { it.generationId >= stream.minimumGenerationId } + val keepKeys = toKeep.flatMap { it.objects.map { obj -> obj.key } }.toSet() + toDrop + .flatMap { it.objects.filter { obj -> obj.key !in keepKeys } } + .forEach { + log.info { "Deleting object ${it.key}" } + s3Client.delete(it.key) + } + + log.info { "Updating and persisting state" } + state.dropGenerationsBefore(stream.minimumGenerationId) + destinationStateManager.persistState(stream) + } + } } } diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt index 4a36648c9a5c..f9eb79f78a51 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt @@ -36,7 +36,6 @@ abstract class S3V2WriteTest(path: String) : super.testMidSyncCheckpointingStreamState() } - @Disabled("append mode doesn't yet work") @Test override fun testAppend() { super.testAppend() @@ -47,6 +46,11 @@ abstract class S3V2WriteTest(path: String) : override fun testAppendSchemaEvolution() { super.testAppendSchemaEvolution() } + + @Test + override fun testTruncateRefresh() { + super.testTruncateRefresh() + } } class S3V2WriteTestJsonUncompressed : S3V2WriteTest(S3V2TestUtils.JSON_UNCOMPRESSED_CONFIG_PATH) From e62c4150ce299f6929f941161b99e3923513f479 Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Thu, 31 Oct 2024 10:03:35 -0700 Subject: [PATCH 505/808] Bulk Load CDK: ObjectStorageStreamLoader (#47965) --- .../ObjectStoragePathConfiguration.kt | 3 +- .../object_storage/ObjectStorageClient.kt | 5 +- .../ObjectStorageStreamLoaderFactory.kt | 165 ++++++++++++++++++ .../ObjectStoragePathFactoryTest.kt | 3 +- .../cdk/load/MockObjectStorageClient.kt | 2 +- .../load/command/s3/S3PathSpecification.kt | 13 +- .../io/airbyte/cdk/load/file/s3/S3Client.kt | 24 +-- .../destination-s3-v2/metadata.yaml | 2 +- .../src/main/kotlin/S3V2Specification.kt | 1 + .../src/main/kotlin/S3V2Writer.kt | 127 +------------- .../resources/expected-spec-cloud.json | 2 +- .../resources/expected-spec-oss.json | 2 +- 12 files changed, 192 insertions(+), 157 deletions(-) create mode 100644 airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/write/object_storage/ObjectStorageStreamLoaderFactory.kt diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/command/object_storage/ObjectStoragePathConfiguration.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/command/object_storage/ObjectStoragePathConfiguration.kt index 16c5874e28b1..f9a9c6b915a7 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/command/object_storage/ObjectStoragePathConfiguration.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/command/object_storage/ObjectStoragePathConfiguration.kt @@ -8,7 +8,8 @@ data class ObjectStoragePathConfiguration( val prefix: String, val stagingPrefix: String?, val pathSuffixPattern: String?, - val fileNamePattern: String? + val fileNamePattern: String?, + val usesStagingDirectory: Boolean ) interface ObjectStoragePathConfigurationProvider { diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt index 27746e0f9054..fec24d185bf6 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt @@ -4,7 +4,6 @@ package io.airbyte.cdk.load.file.object_storage -import io.airbyte.cdk.load.file.NoopProcessor import io.airbyte.cdk.load.file.StreamProcessor import java.io.InputStream import java.io.OutputStream @@ -27,11 +26,9 @@ interface ObjectStorageClient> { * files). Specifically, the method should guarantee that no operations will be performed on the * stream after [block] completes. */ - suspend fun streamingUpload(key: String, block: suspend (OutputStream) -> Unit): T = - streamingUpload(key, NoopProcessor, block) suspend fun streamingUpload( key: String, - streamProcessor: StreamProcessor, + streamProcessor: StreamProcessor? = null, block: suspend (OutputStream) -> Unit ): T } diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/write/object_storage/ObjectStorageStreamLoaderFactory.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/write/object_storage/ObjectStorageStreamLoaderFactory.kt new file mode 100644 index 000000000000..028fda725672 --- /dev/null +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/write/object_storage/ObjectStorageStreamLoaderFactory.kt @@ -0,0 +1,165 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.write.object_storage + +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings +import io.airbyte.cdk.load.command.DestinationStream +import io.airbyte.cdk.load.command.object_storage.ObjectStorageCompressionConfigurationProvider +import io.airbyte.cdk.load.file.NoopProcessor +import io.airbyte.cdk.load.file.StreamProcessor +import io.airbyte.cdk.load.file.object_storage.ObjectStorageClient +import io.airbyte.cdk.load.file.object_storage.ObjectStorageFormattingWriterFactory +import io.airbyte.cdk.load.file.object_storage.ObjectStoragePathFactory +import io.airbyte.cdk.load.file.object_storage.RemoteObject +import io.airbyte.cdk.load.message.Batch +import io.airbyte.cdk.load.message.DestinationRecord +import io.airbyte.cdk.load.state.DestinationStateManager +import io.airbyte.cdk.load.state.StreamIncompleteResult +import io.airbyte.cdk.load.state.object_storage.ObjectStorageDestinationState +import io.airbyte.cdk.load.write.StreamLoader +import io.github.oshai.kotlinlogging.KotlinLogging +import io.micronaut.context.annotation.Secondary +import jakarta.inject.Singleton +import java.io.OutputStream +import java.util.concurrent.atomic.AtomicLong + +@Singleton +@Secondary +class ObjectStorageStreamLoaderFactory>( + private val client: ObjectStorageClient, + private val compressionConfig: ObjectStorageCompressionConfigurationProvider<*>? = null, + private val pathFactory: ObjectStoragePathFactory, + private val writerFactory: ObjectStorageFormattingWriterFactory, + private val destinationStateManager: DestinationStateManager, +) { + fun create(stream: DestinationStream): StreamLoader { + return ObjectStorageStreamLoader( + stream, + client, + compressionConfig?.objectStorageCompressionConfiguration?.compressor ?: NoopProcessor, + pathFactory, + writerFactory, + destinationStateManager + ) + } +} + +@SuppressFBWarnings("NP_NONNULL_PARAM_VIOLATION", justification = "Kotlin async continuation") +class ObjectStorageStreamLoader, U : OutputStream>( + override val stream: DestinationStream, + private val client: ObjectStorageClient, + private val compressor: StreamProcessor, + private val pathFactory: ObjectStoragePathFactory, + private val writerFactory: ObjectStorageFormattingWriterFactory, + private val destinationStateManager: DestinationStateManager, +) : StreamLoader { + private val log = KotlinLogging.logger {} + + sealed interface ObjectStorageBatch : Batch + data class StagedObject( + override val state: Batch.State = Batch.State.PERSISTED, + val remoteObject: T, + val partNumber: Long + ) : ObjectStorageBatch + data class FinalizedObject( + override val state: Batch.State = Batch.State.COMPLETE, + val remoteObject: T, + ) : ObjectStorageBatch + + private val partNumber = AtomicLong(0L) + + override suspend fun start() { + val state = destinationStateManager.getState(stream) + val maxPartNumber = + state.generations + .map { + println(it) + it + } + .filter { it.generationId >= stream.minimumGenerationId } + .mapNotNull { it.objects.maxOfOrNull { obj -> obj.partNumber } } + .maxOrNull() + log.info { "Got max part number from destination state: $maxPartNumber" } + maxPartNumber?.let { partNumber.set(it + 1L) } + } + + override suspend fun processRecords( + records: Iterator, + totalSizeBytes: Long + ): Batch { + val partNumber = partNumber.getAndIncrement() + val key = pathFactory.getPathToFile(stream, partNumber, isStaging = true).toString() + + log.info { "Writing records to $key" } + val state = destinationStateManager.getState(stream) + state.addObject(stream.generationId, key, partNumber) + + val obj = + client.streamingUpload(key, streamProcessor = compressor) { outputStream -> + writerFactory.create(stream, outputStream).use { writer -> + records.forEach { writer.accept(it) } + } + } + log.info { "Finished writing records to $key" } + return StagedObject(remoteObject = obj, partNumber = partNumber) + } + + @Suppress("UNCHECKED_CAST") + override suspend fun processBatch(batch: Batch): Batch { + val stagedObject = batch as StagedObject + val finalKey = + pathFactory.getPathToFile(stream, stagedObject.partNumber, isStaging = false).toString() + log.info { "Moving staged object from ${stagedObject.remoteObject.key} to $finalKey" } + val newObject = client.move(stagedObject.remoteObject, finalKey) + + val state = destinationStateManager.getState(stream) + state.removeObject(stream.generationId, stagedObject.remoteObject.key) + state.addObject(stream.generationId, newObject.key, stagedObject.partNumber) + + val finalizedObject = FinalizedObject(remoteObject = newObject) + return finalizedObject + } + + override suspend fun close(streamFailure: StreamIncompleteResult?) { + if (streamFailure != null) { + log.info { "Sync failed, persisting destination state for next run" } + destinationStateManager.persistState(stream) + } else { + log.info { "Sync succeeded, Moving any stragglers out of staging" } + val state = destinationStateManager.getState(stream) + val stagingToKeep = + state.generations.filter { + it.isStaging && it.generationId >= stream.minimumGenerationId + } + stagingToKeep.toList().forEach { + it.objects.forEach { obj -> + val newKey = + pathFactory + .getPathToFile(stream, obj.partNumber, isStaging = false) + .toString() + log.info { "Moving staged object from ${obj.key} to $newKey" } + val newObject = client.move(obj.key, newKey) + state.removeObject(it.generationId, obj.key, isStaging = true) + state.addObject(it.generationId, newObject.key, obj.partNumber) + } + } + + log.info { "Removing old files" } + val (toKeep, toDrop) = + state.generations.partition { it.generationId >= stream.minimumGenerationId } + val keepKeys = toKeep.flatMap { it.objects.map { obj -> obj.key } }.toSet() + toDrop + .flatMap { it.objects.filter { obj -> obj.key !in keepKeys } } + .forEach { + log.info { "Deleting object ${it.key}" } + client.delete(it.key) + } + + log.info { "Updating and persisting state" } + state.dropGenerationsBefore(stream.minimumGenerationId) + destinationStateManager.persistState(stream) + } + } +} diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt index 9f3fa27fbac9..1c9f498d3d3b 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt @@ -63,7 +63,8 @@ class ObjectStoragePathFactoryTest { stagingPrefix = "staging/prefix", pathSuffixPattern = "\${NAMESPACE}/\${STREAM_NAME}/\${YEAR}/\${MONTH}/\${DAY}/\${HOUR}/\${MINUTE}/\${SECOND}/\${MILLISECOND}/\${EPOCH}/", - fileNamePattern = "{date}-{timestamp}-{part_number}-{sync_id}{format_extension}" + fileNamePattern = "{date}-{timestamp}-{part_number}-{sync_id}{format_extension}", + usesStagingDirectory = true ) } diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt index dabb87c319e7..007dae3d58f8 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt @@ -64,7 +64,7 @@ class MockObjectStorageClient : ObjectStorageClient { override suspend fun streamingUpload( key: String, - streamProcessor: StreamProcessor, + streamProcessor: StreamProcessor?, block: suspend (OutputStream) -> Unit ): MockRemoteObject { TODO("Not yet implemented") diff --git a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/command/s3/S3PathSpecification.kt b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/command/s3/S3PathSpecification.kt index b7a76991a3d3..96c00a82fc98 100644 --- a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/command/s3/S3PathSpecification.kt +++ b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/command/s3/S3PathSpecification.kt @@ -50,9 +50,17 @@ interface S3PathSpecification { @get:JsonSchemaInject(json = """{"examples":["data_sync/test"]}""") val s3BucketPath: String + // @get:JsonSchemaTitle("Use a Staging Directory") + // @get:JsonPropertyDescription( + // "Whether to use a staging directory in the bucket based on the s3_staging_prefix. If + // this is not set, airbyte will maintain sync integrity by adding metadata to each object." + // ) + // @get:JsonProperty("use_staging_directory", defaultValue = "false") + // val useStagingDirectory: Boolean + @get:JsonSchemaTitle("S3 Staging Prefix") @get:JsonPropertyDescription( - "Path to use when staging data in the bucket directory. Documentation TBD." + "Path to use when staging data in the bucket directory. Airbyte will stage data here during sync and/or write small manifest/recovery files." ) @get:JsonProperty("s3_staging_prefix", defaultValue = "{s3_bucket_path}/__airbyte_tmp") @get:JsonSchemaInject(json = """{"examples":["__staging/data_sync/test"]}""") @@ -63,6 +71,7 @@ interface S3PathSpecification { prefix = s3BucketPath, stagingPrefix = s3StagingPrefix, pathSuffixPattern = s3PathFormat, - fileNamePattern = fileNamePattern + fileNamePattern = fileNamePattern, + usesStagingDirectory = true ) } diff --git a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt index 857d67dce981..1dd55a77db21 100644 --- a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt +++ b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt @@ -15,8 +15,6 @@ import aws.smithy.kotlin.runtime.content.ByteStream import aws.smithy.kotlin.runtime.content.toInputStream import edu.umd.cs.findbugs.annotations.SuppressFBWarnings import io.airbyte.cdk.load.command.aws.AWSAccessKeyConfigurationProvider -import io.airbyte.cdk.load.command.object_storage.ObjectStorageCompressionConfiguration -import io.airbyte.cdk.load.command.object_storage.ObjectStorageCompressionConfigurationProvider import io.airbyte.cdk.load.command.object_storage.ObjectStorageUploadConfiguration import io.airbyte.cdk.load.command.object_storage.ObjectStorageUploadConfigurationProvider import io.airbyte.cdk.load.command.s3.S3BucketConfiguration @@ -25,7 +23,6 @@ import io.airbyte.cdk.load.file.NoopProcessor import io.airbyte.cdk.load.file.StreamProcessor import io.airbyte.cdk.load.file.object_storage.ObjectStorageClient import io.airbyte.cdk.load.file.object_storage.RemoteObject -import io.github.oshai.kotlinlogging.KotlinLogging import io.micronaut.context.annotation.Factory import io.micronaut.context.annotation.Secondary import jakarta.inject.Singleton @@ -45,9 +42,7 @@ class S3Client( private val client: aws.sdk.kotlin.services.s3.S3Client, val bucketConfig: S3BucketConfiguration, private val uploadConfig: ObjectStorageUploadConfiguration?, - private val compressionConfig: ObjectStorageCompressionConfiguration<*>? = null, ) : ObjectStorageClient { - private val log = KotlinLogging.logger {} override suspend fun list(prefix: String) = flow { var request = ListObjectsRequest { @@ -125,23 +120,12 @@ class S3Client( } override suspend fun delete(key: String) { - val request = DeleteObjectRequest { - bucket = bucketConfig.s3BucketName - this.key = key - } - client.deleteObject(request) - } - - override suspend fun streamingUpload( - key: String, - block: suspend (OutputStream) -> Unit - ): S3Object { - return streamingUpload(key, compressionConfig?.compressor ?: NoopProcessor, block) + delete(S3Object(key, bucketConfig)) } override suspend fun streamingUpload( key: String, - streamProcessor: StreamProcessor, + streamProcessor: StreamProcessor?, block: suspend (OutputStream) -> Unit ): S3Object { val request = CreateMultipartUploadRequest { @@ -154,7 +138,7 @@ class S3Client( client, response, ByteArrayOutputStream(), - streamProcessor, + streamProcessor ?: NoopProcessor, uploadConfig ) upload.runUsing(block) @@ -167,7 +151,6 @@ class S3ClientFactory( private val keyConfig: AWSAccessKeyConfigurationProvider, private val bucketConfig: S3BucketConfigurationProvider, private val uploadConifg: ObjectStorageUploadConfigurationProvider? = null, - private val compressionConfig: ObjectStorageCompressionConfigurationProvider<*>? = null, ) { companion object { fun make(config: T) where @@ -195,7 +178,6 @@ class S3ClientFactory( client, bucketConfig.s3BucketConfiguration, uploadConifg?.objectStorageUploadConfiguration, - compressionConfig?.objectStorageCompressionConfiguration, ) } } diff --git a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml index 446e000144bc..cd38d6344199 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml +++ b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: file connectorType: destination definitionId: d6116991-e809-4c7c-ae09-c64712df5b66 - dockerImageTag: 0.1.14 + dockerImageTag: 0.1.15 dockerRepository: airbyte/destination-s3-v2 githubIssueLabel: destination-s3-v2 icon: s3.svg diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Specification.kt b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Specification.kt index b8cb45d78154..c995e8eedd97 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Specification.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Specification.kt @@ -34,6 +34,7 @@ class S3V2Specification : override val s3Endpoint: String? = null override val s3PathFormat: String? = null override val fileNamePattern: String? = null + // override val useStagingDirectory: Boolean = false override val s3StagingPrefix: String? = null } diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt index 672d275f5e00..706eb23f399b 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Writer.kt @@ -4,139 +4,18 @@ package io.airbyte.integrations.destination.s3_v2 -import edu.umd.cs.findbugs.annotations.SuppressFBWarnings import io.airbyte.cdk.load.command.DestinationStream -import io.airbyte.cdk.load.file.object_storage.ObjectStorageFormattingWriterFactory -import io.airbyte.cdk.load.file.object_storage.ObjectStoragePathFactory -import io.airbyte.cdk.load.file.s3.S3Client import io.airbyte.cdk.load.file.s3.S3Object -import io.airbyte.cdk.load.message.Batch -import io.airbyte.cdk.load.message.DestinationRecord -import io.airbyte.cdk.load.state.DestinationStateManager -import io.airbyte.cdk.load.state.StreamIncompleteResult -import io.airbyte.cdk.load.state.object_storage.ObjectStorageDestinationState import io.airbyte.cdk.load.write.DestinationWriter import io.airbyte.cdk.load.write.StreamLoader -import io.github.oshai.kotlinlogging.KotlinLogging +import io.airbyte.cdk.load.write.object_storage.ObjectStorageStreamLoaderFactory import jakarta.inject.Singleton -import java.util.concurrent.atomic.AtomicLong @Singleton class S3V2Writer( - private val s3Client: S3Client, - private val pathFactory: ObjectStoragePathFactory, - private val writerFactory: ObjectStorageFormattingWriterFactory, - private val destinationStateManager: DestinationStateManager, + private val streamLoaderFactory: ObjectStorageStreamLoaderFactory, ) : DestinationWriter { - private val log = KotlinLogging.logger {} - - sealed interface S3V2Batch : Batch - data class StagedObject( - override val state: Batch.State = Batch.State.PERSISTED, - val s3Object: S3Object, - val partNumber: Long - ) : S3V2Batch - data class FinalizedObject( - override val state: Batch.State = Batch.State.COMPLETE, - val s3Object: S3Object, - ) : S3V2Batch - override fun createStreamLoader(stream: DestinationStream): StreamLoader { - return S3V2StreamLoader(stream) - } - - @SuppressFBWarnings("NP_NONNULL_PARAM_VIOLATION", justification = "Kotlin async continuation") - inner class S3V2StreamLoader(override val stream: DestinationStream) : StreamLoader { - private val partNumber = AtomicLong(0L) - - override suspend fun start() { - val state = destinationStateManager.getState(stream) - val maxPartNumber = - state.generations - .filter { it.generationId >= stream.minimumGenerationId } - .mapNotNull { it.objects.maxOfOrNull { obj -> obj.partNumber } } - .maxOrNull() - log.info { "Got max part number from destination state: $maxPartNumber" } - maxPartNumber?.let { partNumber.set(it + 1L) } - } - - override suspend fun processRecords( - records: Iterator, - totalSizeBytes: Long - ): Batch { - val partNumber = partNumber.getAndIncrement() - val key = pathFactory.getPathToFile(stream, partNumber, isStaging = true).toString() - - log.info { "Writing records to $key" } - val state = destinationStateManager.getState(stream) - state.addObject(stream.generationId, key, partNumber) - - val s3Object = - s3Client.streamingUpload(key) { outputStream -> - writerFactory.create(stream, outputStream).use { writer -> - records.forEach { writer.accept(it) } - } - } - log.info { "Finished writing records to $key" } - return StagedObject(s3Object = s3Object, partNumber = partNumber) - } - - override suspend fun processBatch(batch: Batch): Batch { - val stagedObject = batch as StagedObject - val finalKey = - pathFactory - .getPathToFile(stream, stagedObject.partNumber, isStaging = false) - .toString() - log.info { "Moving staged object from ${stagedObject.s3Object.key} to $finalKey" } - val newObject = s3Client.move(stagedObject.s3Object, finalKey) - - val state = destinationStateManager.getState(stream) - state.removeObject(stream.generationId, stagedObject.s3Object.key) - state.addObject(stream.generationId, newObject.key, stagedObject.partNumber) - - val finalizedObject = FinalizedObject(s3Object = newObject) - return finalizedObject - } - - override suspend fun close(streamFailure: StreamIncompleteResult?) { - if (streamFailure != null) { - log.info { "Sync failed, persisting destination state for next run" } - destinationStateManager.persistState(stream) - } else { - log.info { "Sync succeeded, Moving any stragglers out of staging" } - val state = destinationStateManager.getState(stream) - val stagingToKeep = - state.generations.filter { - it.isStaging && it.generationId >= stream.minimumGenerationId - } - stagingToKeep.toList().forEach { - it.objects.forEach { obj -> - val newKey = - pathFactory - .getPathToFile(stream, obj.partNumber, isStaging = false) - .toString() - log.info { "Moving staged object from ${obj.key} to $newKey" } - val newObject = s3Client.move(obj.key, newKey) - state.removeObject(it.generationId, obj.key, isStaging = true) - state.addObject(it.generationId, newObject.key, obj.partNumber) - } - } - - log.info { "Removing old files" } - val (toKeep, toDrop) = - state.generations.partition { it.generationId >= stream.minimumGenerationId } - val keepKeys = toKeep.flatMap { it.objects.map { obj -> obj.key } }.toSet() - toDrop - .flatMap { it.objects.filter { obj -> obj.key !in keepKeys } } - .forEach { - log.info { "Deleting object ${it.key}" } - s3Client.delete(it.key) - } - - log.info { "Updating and persisting state" } - state.dropGenerationsBefore(stream.minimumGenerationId) - destinationStateManager.persistState(stream) - } - } + return streamLoaderFactory.create(stream) } } diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-cloud.json b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-cloud.json index fa1d33f36519..11f4eedb9caf 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-cloud.json +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-cloud.json @@ -297,7 +297,7 @@ "s3_staging_prefix" : { "type" : "string", "default" : "{s3_bucket_path}/__airbyte_tmp", - "description" : "Path to use when staging data in the bucket directory. Documentation TBD.", + "description" : "Path to use when staging data in the bucket directory. Airbyte will stage data here during sync and/or write small manifest/recovery files.", "title" : "S3 Staging Prefix", "examples" : [ "__staging/data_sync/test" ] } diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-oss.json b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-oss.json index fa1d33f36519..11f4eedb9caf 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-oss.json +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-oss.json @@ -297,7 +297,7 @@ "s3_staging_prefix" : { "type" : "string", "default" : "{s3_bucket_path}/__airbyte_tmp", - "description" : "Path to use when staging data in the bucket directory. Documentation TBD.", + "description" : "Path to use when staging data in the bucket directory. Airbyte will stage data here during sync and/or write small manifest/recovery files.", "title" : "S3 Staging Prefix", "examples" : [ "__staging/data_sync/test" ] } From 705a0e8a0948ef567260ae830e56802351c6ce8f Mon Sep 17 00:00:00 2001 From: Rodi Reich Zilberman <867491+rodireich@users.noreply.github.com> Date: Thu, 31 Oct 2024 10:06:06 -0700 Subject: [PATCH 506/808] [source-mysql-v2] sampling mysql to set fetch size (#48035) --- .../connectors/source-mysql-v2/metadata.yaml | 2 +- .../source/mysql/MysqlJdbcPartition.kt | 4 +++- .../source/mysql/MysqlSourceOperations.kt | 16 +++++++++++++++- .../src/main/resources/application.yml | 8 +++++--- 4 files changed, 24 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml index d0d4a8113bfe..087fa61608f3 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml +++ b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: database connectorType: source definitionId: 561393ed-7e3a-4d0d-8b8b-90ded371754c - dockerImageTag: 0.0.30 + dockerImageTag: 0.0.31 dockerRepository: airbyte/source-mysql-v2 documentationUrl: https://docs.airbyte.com/integrations/sources/mysql githubIssueLabel: source-mysql-v2 diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartition.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartition.kt index d32b35647dcb..019f6ba23b2f 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartition.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartition.kt @@ -21,6 +21,7 @@ import io.airbyte.cdk.read.JdbcSplittablePartition import io.airbyte.cdk.read.Lesser import io.airbyte.cdk.read.LesserOrEqual import io.airbyte.cdk.read.Limit +import io.airbyte.cdk.read.NoWhere import io.airbyte.cdk.read.Or import io.airbyte.cdk.read.OrderBy import io.airbyte.cdk.read.SelectColumnMaxValue @@ -130,8 +131,9 @@ sealed class MysqlJdbcResumablePartition( SelectQuerySpec( SelectColumns(stream.fields + checkpointColumns), FromSample(stream.name, stream.namespace, sampleRateInvPow2, sampleSize), - where, + NoWhere, OrderBy(checkpointColumns), + Limit(sampleSize.toLong()) ) return selectQueryGenerator.generate(querySpec.optimize()) } diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceOperations.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceOperations.kt index 22053b65d485..daefc34c8422 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceOperations.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceOperations.kt @@ -208,7 +208,21 @@ class MysqlSourceOperations : when (this) { NoFrom -> "" is From -> if (this.namespace == null) "FROM `$name`" else "FROM `$namespace`.`$name`" - is FromSample -> TODO("not implemented in mysql") + is FromSample -> { + val from: String = From(name, namespace).sql() + // On a table that is very big we limit sampling to no less than 0.05% + // chance of a row getting picked. This comes at a price of bias to the beginning + // of table on very large tables ( > 100s million of rows) + val greatestRate: String = 0.00005.toString() + // Quick approximation to "select count(*) from table" which doesn't require + // full table scan. + val quickCount = + "SELECT table_rows FROM information_schema.tables WHERE table_schema = '$namespace' AND table_name = '$name'" + val greatest = "GREATEST($greatestRate, $sampleSize / ($quickCount))" + // Rand returns a value between 0 and 1 + val where = "WHERE RAND() < $greatest " + "$from $where" + } } fun WhereNode.sql(): String = diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/resources/application.yml b/airbyte-integrations/connectors/source-mysql-v2/src/main/resources/application.yml index 0dde139e4093..ff641170987a 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/resources/application.yml +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/resources/application.yml @@ -4,10 +4,12 @@ airbyte: extract: jdbc: mode: sequential + with-sampling: true + table-sample-size: 1024 throughput-bytes-per-second: 10000000 - min-fetch-size: 5 - default-fetch-size: 5 - max-fetch-size: 5 + min-fetch-size: -2147483648 + default-fetch-size: 1024 + max-fetch-size: 1000000000 memory-capacity-ratio: 0.6 estimated-record-overhead-bytes: 16 estimated-field-overhead-bytes: 16 From f60e1494f9148d69475873e4ef69ac2c962ed888 Mon Sep 17 00:00:00 2001 From: Aldo Gonzalez <168454423+aldogonzalez8@users.noreply.github.com> Date: Thu, 31 Oct 2024 11:25:36 -0600 Subject: [PATCH 507/808] =?UTF-8?q?=E2=9C=A8Feat(souce-sftp-bulk):=20file?= =?UTF-8?q?=20transfer=20changes=20(#47703)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../configs/config_use_file_transfer.json | 55 + .../integration_tests/conftest.py | 7 + .../integration_tests/integration_test.py | 13 + .../integration_tests/spec.json | 40 + .../connectors/source-sftp-bulk/metadata.yaml | 2 +- .../connectors/source-sftp-bulk/poetry.lock | 1107 +++++++++-------- .../source-sftp-bulk/pyproject.toml | 4 +- .../source-sftp-bulk/source_sftp_bulk/spec.py | 12 +- .../source_sftp_bulk/stream_reader.py | 14 +- docs/integrations/sources/sftp-bulk.md | 1 + 10 files changed, 727 insertions(+), 528 deletions(-) create mode 100644 airbyte-integrations/connectors/source-sftp-bulk/integration_tests/configs/config_use_file_transfer.json diff --git a/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/configs/config_use_file_transfer.json b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/configs/config_use_file_transfer.json new file mode 100644 index 000000000000..542be1c67cd3 --- /dev/null +++ b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/configs/config_use_file_transfer.json @@ -0,0 +1,55 @@ +{ + "delivery_method": { "delivery_type": "use_file_transfer" }, + "host": "localhost", + "port": 2222, + "username": "foo", + "credentials": { + "auth_type": "password", + "password": "pass" + }, + "file_type": "json", + "start_date": "2021-01-01T00:00:00.000000Z", + "folder_path": "/files", + "streams": [ + { + "name": "test_stream", + "file_type": "csv", + "globs": ["**/test_1.csv"], + "legacy_prefix": "", + "validation_policy": "Emit Record", + "format": { + "filetype": "csv", + "delimiter": ",", + "quote_char": "\"", + "double_quote": true, + "null_values": [ + "", + "#N/A", + "#N/A N/A", + "#NA", + "-1.#IND", + "-1.#QNAN", + "-NaN", + "-nan", + "1.#IND", + "1.#QNAN", + "N/A", + "NA", + "NULL", + "NaN", + "n/a", + "nan", + "null" + ], + "true_values": ["1", "True", "TRUE", "true"], + "false_values": ["0", "False", "FALSE", "false"], + "inference_type": "Primitive Types Only", + "strings_can_be_null": false, + "encoding": "utf8", + "header_definition": { + "header_definition_type": "From CSV" + } + } + } + ] +} diff --git a/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/conftest.py b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/conftest.py index 9096df7aeeab..953d1af8515e 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/conftest.py +++ b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/conftest.py @@ -78,6 +78,13 @@ def config_fixture(docker_client) -> Mapping[str, Any]: yield config +@pytest.fixture(name="config_fixture_use_file_transfer", scope="session") +def config_fixture_use_file_transfer(docker_client) -> Mapping[str, Any]: + config = load_config("config_use_file_transfer.json") + config["host"] = get_docker_ip() + yield config + + @pytest.fixture(name="config_private_key", scope="session") def config_fixture_private_key(docker_client) -> Mapping[str, Any]: config = load_config("config_private_key.json") | { diff --git a/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/integration_test.py b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/integration_test.py index 457c91552c75..e7151426bf0f 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/integration_test.py +++ b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/integration_test.py @@ -4,8 +4,10 @@ import logging +import os from copy import deepcopy from typing import Any, Mapping +from unittest.mock import ANY import pytest from airbyte_cdk import AirbyteTracedException, ConfiguredAirbyteCatalog, Status @@ -90,3 +92,14 @@ def test_get_files_empty_files(configured_catalog: ConfiguredAirbyteCatalog, con source = SourceSFTPBulk(catalog=configured_catalog, config=config_with_wrong_glob_pattern, state=None) output = read(source=source, config=config_with_wrong_glob_pattern, catalog=configured_catalog) assert len(output.records) == 0 + +def test_get_file_csv_file_transfer(configured_catalog: ConfiguredAirbyteCatalog, config_fixture_use_file_transfer: Mapping[str, Any]): + source = SourceSFTPBulk(catalog=configured_catalog, config=config_fixture_use_file_transfer, state=None) + output = read(source=source, config=config_fixture_use_file_transfer, catalog=configured_catalog) + expected_file_data = {'bytes': 37, 'file_relative_path': 'files/csv/test_1.csv', 'file_url': '/tmp/airbyte-file-transfer/files/csv/test_1.csv', 'modified': ANY, 'source_file_url': '/files/csv/test_1.csv'} + assert len(output.records) == 1 + assert list(map(lambda record: record.record.file, output.records)) == [expected_file_data] + + # Additional assertion to check if the file exists at the file_url path + file_path = expected_file_data['file_url'] + assert os.path.exists(file_path), f"File not found at path: {file_path}" diff --git a/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/spec.json b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/spec.json index 3ef3def86065..dd8d9b09f717 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/spec.json +++ b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/spec.json @@ -430,6 +430,46 @@ "required": ["name", "format"] } }, + "delivery_method": { + "title": "Delivery Method", + "default": "use_records_transfer", + "type": "object", + "order": 7, + "display_type": "radio", + "group": "advanced", + "oneOf": [ + { + "title": "Replicate Records", + "type": "object", + "properties": { + "delivery_type": { + "title": "Delivery Type", + "default": "use_records_transfer", + "const": "use_records_transfer", + "enum": ["use_records_transfer"], + "type": "string" + } + }, + "description": "Recommended - Extract and load structured records into your destination of choice. This is the classic method of moving data in Airbyte. It allows for blocking and hashing individual fields or files from a structured schema. Data can be flattened, typed and deduped depending on the destination.", + "required": ["delivery_type"] + }, + { + "title": "Copy Raw Files", + "type": "object", + "properties": { + "delivery_type": { + "title": "Delivery Type", + "default": "use_file_transfer", + "const": "use_file_transfer", + "enum": ["use_file_transfer"], + "type": "string" + } + }, + "description": "Copy raw files without parsing their contents. Bits are copied into the destination exactly as they appeared in the source. Recommended for use with unstructured text data, non-text and compressed files.", + "required": ["delivery_type"] + } + ] + }, "host": { "title": "Host Address", "description": "The server host address", diff --git a/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml b/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml index 0ad31fa8aed1..9f3bd38d1555 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml +++ b/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: file connectorType: source definitionId: 31e3242f-dee7-4cdc-a4b8-8e06c5458517 - dockerImageTag: 1.2.0 + dockerImageTag: 1.3.0 dockerRepository: airbyte/source-sftp-bulk documentationUrl: https://docs.airbyte.com/integrations/sources/sftp-bulk githubIssueLabel: source-sftp-bulk diff --git a/airbyte-integrations/connectors/source-sftp-bulk/poetry.lock b/airbyte-integrations/connectors/source-sftp-bulk/poetry.lock index 590621de9985..4424edae1fed 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/poetry.lock +++ b/airbyte-integrations/connectors/source-sftp-bulk/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "5.10.1" +version = "6.1.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.10.1-py3-none-any.whl", hash = "sha256:b965f38b28b303a8c85da29f80d9669c086cf0c502b919793b5cf66300d81997"}, - {file = "airbyte_cdk-5.10.1.tar.gz", hash = "sha256:9f100bf3da49aa087f11c9e42d9cc16801d232823a0c587eaf497e9fc7946c5a"}, + {file = "airbyte_cdk-6.1.0-py3-none-any.whl", hash = "sha256:312cda1375f27ccf737cd4812e0c64babc48ecfca445fc4db4d0173d47b72461"}, + {file = "airbyte_cdk-6.1.0.tar.gz", hash = "sha256:55cda86822be047f992f1cee1e87b4dc6c57e0ae4c5fa38d8b7c3e0d6eef3d88"}, ] [package.dependencies] @@ -28,11 +28,13 @@ jsonschema = ">=3.2.0,<3.3.0" langchain_core = "0.1.42" markdown = {version = "*", optional = true, markers = "extra == \"file-based\""} nltk = "3.8.1" +numpy = "<2" orjson = ">=3.10.7,<4.0.0" pandas = "2.2.2" pdf2image = {version = "1.16.3", optional = true, markers = "extra == \"file-based\""} "pdfminer.six" = {version = "20221105", optional = true, markers = "extra == \"file-based\""} pendulum = "<3.0.0" +psutil = "6.1.0" pyarrow = {version = ">=15.0.0,<15.1.0", optional = true, markers = "extra == \"file-based\""} pydantic = ">=2.7,<3.0" pyjwt = ">=2.8.0,<3.0.0" @@ -49,10 +51,12 @@ serpyco-rs = ">=1.10.2,<2.0.0" unstructured = {version = "0.10.27", extras = ["docx", "pptx"], optional = true, markers = "extra == \"file-based\""} "unstructured.pytesseract" = {version = ">=0.3.12", optional = true, markers = "extra == \"file-based\""} wcmatch = "8.4" +xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -79,13 +83,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -96,7 +100,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -376,101 +380,116 @@ files = [ [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] @@ -500,101 +519,101 @@ files = [ [[package]] name = "cramjam" -version = "2.8.4" +version = "2.9.0" description = "Thin Python bindings to de/compression algorithms in Rust" optional = false python-versions = ">=3.8" files = [ - {file = "cramjam-2.8.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:e9e112514363261a896f85948d5d055dccaab2a1fa77d440f55030464118a95a"}, - {file = "cramjam-2.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ee2441028e813ecc1d10b90640dd2b9649cdefdfe80af1d838cf00fd935ee5e7"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:86a3e0f91176eacd23f8d63b01139a63687cb3fa9670996b3bfa7c38eac6cb7e"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e34aa083a10079c8814091c0fe9080238a82569fa08058cf79d12b3f9710fc5"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:465ccf470536e065822daa2a083dedf18df8133278e9132b147bd1721211d707"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30aba9e9c737c986d26a809b9e36628452c075234a5e835b085ab7c2b9574dc"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52f710bd7fa9b5a374e2e2281d7d672f9eb89263c531643f95fab93e98200c68"}, - {file = "cramjam-2.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6622095ffa6cae77c9e8036a39757fdb1d3cabc3444ad892e5a705882ed06c8d"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bc618c018594c20696a42faf8a144e1508b8a4312e0d8697f6c64b337e37e5d9"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:30c75259f58583f96ad9cef7202c70cd6604a9dabf9834211df48a27ec85f84a"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b9b4bbe7ef3318b2f2aed2a8a658b401a9ad9314d50372f9bb97cdef093f326"}, - {file = "cramjam-2.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d7a7c10fb2602d7c8c4dbe4eeacf352477cc1af939fd3537f4e1cd42526855b8"}, - {file = "cramjam-2.8.4-cp310-none-win32.whl", hash = "sha256:831ee2424b095f51c9719b0479d9b413bc849e47160b904a7a8e4a8dcf41d2f7"}, - {file = "cramjam-2.8.4-cp310-none-win_amd64.whl", hash = "sha256:4f6bf5752a0322cc63f955343c390253034b609d167930584bb392bf4179c444"}, - {file = "cramjam-2.8.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d48fd69224a2f4df187856021f545a65486575cba92bb32a14ccad1ce54584a9"}, - {file = "cramjam-2.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c53d8dce609607370f01a5db65c79db75db08e9e89cbb9c2a2212b7a3c0b8af3"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d08b8ff282545ab3a414db845e430320555ff7a7eb90517b2c9554e24ca0d763"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac5fb30cf6c03f72397ead8584592dc071f486c76199c46c28e7de619174ba1f"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0d86cfb2b457a337db4b7c8cf6a9dafc018806750f28b3c27d71b94e2d4379d0"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59565a16ce0c71993d3947bdf9301e0d69866c15f37d67d2875809eca998d841"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6741544b372ba3e6c65db1c44b1a75e48743d091b76a09d7d832b1fb0a0ef518"}, - {file = "cramjam-2.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5f486bacd46f364137f5b164a879821115118d7f866a838429eb10aee59a14b"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4e02081bfb9998f5ff816f3e984a62ca91835e3483c578812374aaf5cb6ed921"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:1c63e856727726a1ee2a77a12bfccfcd70ee3e5bbe9e6d07bd00be5a1eb6ec10"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:74fb59137946b691e8987349e9117e2897f3b0484116ad6e2b1b4de0d082430f"}, - {file = "cramjam-2.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c7952e0cd6f37a04983cb027175f91f225d7c30625038b8930b6fd3f00619350"}, - {file = "cramjam-2.8.4-cp311-none-win32.whl", hash = "sha256:2bfd5c442e6031b146a93b1cc37d42c04b6d01bb652c9f123338c482c3943038"}, - {file = "cramjam-2.8.4-cp311-none-win_amd64.whl", hash = "sha256:73c95cae138bc8f5604bbbc97860f158c4f77e046304dd4f9c9838021d64217a"}, - {file = "cramjam-2.8.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:5056f476917d31c69719883bbe12272288b77ab5ea5ee55fbcbb6c0dd10e52da"}, - {file = "cramjam-2.8.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8359d31dca4bd8286e031f1a21f20f62f4e7a4586c407e916fd2de101c719a8b"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a1aee32556b9f7ecc61c6c4675798153ac511b5b72db9f56d2a8c20c1fa6d563"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:005bfe79ae38ea1df67fd3079089287640c780bf112aab4b6a3a9f12f0bf3c91"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51662c79c5a2256824f3acca9ccdbeaad3626c90ae46a19ef25f186d70a9ac69"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c744148e33002cefd4aaa3641800c0008fa177c8c09230c09d30d6e7ab473a4"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c897d2443cf9f3685a51ecc28c669aad95b6a610de7883647fe450cc742e2ea7"}, - {file = "cramjam-2.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:741b0c29d701d470243b9cad09a3e21c2ab83190710df680fd84baea1b262089"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4cfc6d838afb90a59d2c721fe8d78c2a333edf5c370b3ce8f9823c49bc52e5d0"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:977e380a567f1bcdb0f1156820fedc57727c6c639769b846b39ad7fc1be5563b"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3f16dea7f430bb8a5cf2e2a8eece5fa7a6e58bffae3913083f6c20de50ce85bd"}, - {file = "cramjam-2.8.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9d25c2ff722e66a55c58b6c325985b2bf342a6592db084557c2956a07d7179d7"}, - {file = "cramjam-2.8.4-cp312-none-win32.whl", hash = "sha256:b63bcf4e5f9c6ee027947a22862d054e8ce0fa189a33ccdb07e66ef09291252c"}, - {file = "cramjam-2.8.4-cp312-none-win_amd64.whl", hash = "sha256:72b9d4c29a51a8656690df2ef6f7823fa27ebc35e051182b6ebef5fef180876f"}, - {file = "cramjam-2.8.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9b00949104594eb2b6daf9ec72f1a6dfc93968bc0ffbdbfee936c359fc782186"}, - {file = "cramjam-2.8.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:24b29d805e860d22499e6f5d004582477f3c8309e2a899e0c86c1530a94e6092"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f9454207624a701cb518fbef137e2eb6088aaf5606679aa6ab28d2dd06d72702"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ee580acb4b6af5ae211b80b679aa377ffa9f9ff74a1e9de458c09d19bce4433"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:157c36731e430670be44ba490b8a0e4fc04ebdd78c3ea19339ba4ac24d73ad25"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30a12b1437e28b5e72ab10642d214e9b42220e8c5be2948ac6916aca203f69b0"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:553e2cd4c2614510770ff3a8bf6b72957a86985b1ae2b8fcdc6d04848857313f"}, - {file = "cramjam-2.8.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e40e448d50fa7c2b79c06d99459ad4a77d58d9cfb3f0549a63b91179a5e57c0b"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:769995dfc7fd042ce123f25e7659977ed4aa4d5d6aad976970b12b9b4019c116"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:1ba26f563d9e5be588c8e5f5523b4cdb5b63e3ac3fb28857af9611eb5ea51416"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:5cbfd6c44c85216b3535095258b506f6e246c6fbf1438a79f71bcff4d98f7e3f"}, - {file = "cramjam-2.8.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:4bf4e8711b27604b3ca7e7c224a70f5abe94f5bf05a183bd97677e9cffd2be04"}, - {file = "cramjam-2.8.4-cp313-none-win32.whl", hash = "sha256:7c9ca8e6c33c06c08e9945a20fe0f64a2bcd363554e359a2936b3a469883630a"}, - {file = "cramjam-2.8.4-cp313-none-win_amd64.whl", hash = "sha256:ee92df7e66b7cbdb05b18687a42696bc729bacaad0d68f5549e30cbfa1eb0ca8"}, - {file = "cramjam-2.8.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:386eb0fe9567ae3c06e2053205e19e671e4170f3a0deb68dd103e4c651a3ff8b"}, - {file = "cramjam-2.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:64e22027874ce429ce04c0c9d19e6bed5bf6425ecc3e68752211b8509915c57c"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b74470fb215a3ac2e6ed968f671286456030882aa25616b969b1a52ebda4f29d"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c41d4542cc2c7238017caebc161b0866b3fb5e85e59727ab623f95e07abc453"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:14b6f2f883068873bd2b5c31fbf7c4223c0452b8bff662bec02d7973a095c46b"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d5921c4521d41fb125d31ce1fe9e5bfba24a2577bc8727289baae9afbebc8409"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb62855f17be5d1bec0d3cef89d8d54582137529c7ea96480c40ebb4a8c92c4b"}, - {file = "cramjam-2.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91cd4b28fc75680616bd22db5a56802ce7ce406052c58e72fd583a16746a1010"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f03502eaf1a0a95cdcbf4c6ebba5edfaa68d356f487ec8485ae651772c9426f9"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_armv7l.whl", hash = "sha256:bb5e23c1f8dc2b4cddc7982da60d2f7a9719920539c26e7b754f2272f510fc0c"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ef6b0d4c83b173d18398713522bff1db1e4e73ec3b3da6495afc5628767d6c85"}, - {file = "cramjam-2.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b2253287a08759cefb75ef46ebaa0f993a2890a31fe9bba94363ca245f42d821"}, - {file = "cramjam-2.8.4-cp38-none-win32.whl", hash = "sha256:8375090e54978ccbb1d90e494d73d09e36477e0d695ddadf2d13627168862950"}, - {file = "cramjam-2.8.4-cp38-none-win_amd64.whl", hash = "sha256:12100dd3ed6969365d1952832e39c017d97c85eeb517ae468092f67aa4d89568"}, - {file = "cramjam-2.8.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:47c1594346dceb0d363d479ddac1e9ff87596c92e5258b389118ae6e30599145"}, - {file = "cramjam-2.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5472f9c6db34046c7ab2f0c4be5a4be677dba98bf78cc0eb03f9812e5774f14d"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9bfa940e016bfeea2b93115abf9e4e455a6325dd85a3fa6af55c6052f070ba25"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24e738a92ac520b26b952bfc48b1ba6453ea455e20167f08f6ee3df5c7d22cd4"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:78ded70e85722a6dcd0c436193af58a43083f0ece35c1f74227782a28e517aa0"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99b024a9912a5fd3b4e6b949b83b291e2828775edc0595ef8b94c491e904287b"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:673dc6395fed94db59fb75a7657d8b061bd575332d8f15025e7b1a4feaba0a3f"}, - {file = "cramjam-2.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4b8f83c5a98fecf44c6d852a9bd30ab1508e51d910dc9c8e636863d131fd5eb"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:85eada9385a706d8d0f6cb1d51995f5eef16d3cade7e68150d6e441fd26406da"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:2429134bb2ee8fffe28f41e3f5390be9c539ac1e2c453034ea63542d7aacc5cc"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e90003b2ce00358ee669afa0710bf52dee6827460b80ce4a7a9f906551ab703a"}, - {file = "cramjam-2.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d0619af45310cceeab9a2410d4a14445743e494015d85584b974847bfb2a2011"}, - {file = "cramjam-2.8.4-cp39-none-win32.whl", hash = "sha256:a30d68094462076655259feee1187237af846969007e5341a96c79b447c47ab3"}, - {file = "cramjam-2.8.4-cp39-none-win_amd64.whl", hash = "sha256:f24e375dfb31f0953e236f2cc4af1b03b80d40aec2bc558df48d507d8e7c8d96"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3536362f777d817c4994d6eaa42e00e705092c5660fd3d9984f3b0cc6164d327"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:0d52eabd20a694636f5b0197daa64db497ea518e057935a7c61ec71e92d3ccd6"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4cf69f19ebd546fc155ec3098603de51f52bf620a23597810cb5b34d6aff116d"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:364258057d579c772e23e1f666fd7efec4f63ea2e791889bb18263c9e9e6aa91"}, - {file = "cramjam-2.8.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:98a2e2c3132b454ae47b194164bb8860464ed410fbbffc0d1de19452cc7cb402"}, - {file = "cramjam-2.8.4.tar.gz", hash = "sha256:ad8bec85b46283330214f4367805e6f56e04ce25a030a2c6a4b127437d006fcf"}, + {file = "cramjam-2.9.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:eb16d995e454b0155b166f6e6da7df4ac812d44e0f3b6dc0f344a934609fd5bc"}, + {file = "cramjam-2.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cb1e86bfea656b51f2e75f2cedb17fc08b552d105b814d19b595294ecbe94d8d"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4bd76b654275736fd4f55521981b73751c34dacf70a1dbce96e454a39d43201f"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21569f19d5848606b85ac0dde0dc3639319d26fed8522c7103515df875bcb300"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b8f8b1117b4e697d39950ecab01700ce0aef66541e4478eb4d7b3ade8703347b"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c3464d0042a03e8ef38a2b774ef23163cf3c0cdc41b8dfbf7c4aadf93e40b459"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0711c776750e243ae347d6609c975f0ff4be9ae65b2764d29e4bbdad8e574c3a"}, + {file = "cramjam-2.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00d96f798bc980b29f8e1c3ed7d554050e05d4cde23d1633ffed4cd63110024a"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:fc49b6575e3cb15da3180c5a3926ec81db33b109e48530708da76614b306904b"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:c4fa6c23e56d48df18f534af921ec936c812743a8972ecdd5e5ff47b464fea00"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b4b8d8160685c11ffb4e8e6daaab79cb351a1c54ceec41cc18a0a62c89309fe0"}, + {file = "cramjam-2.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0ed6362cb6c964f8d0c6e7f790e8961b9242cd3acd87c56169ca14d642653707"}, + {file = "cramjam-2.9.0-cp310-none-win32.whl", hash = "sha256:fe9af350dfbdc7ed4c93a8016a8ad7b5492fc116e7197cad7cbce99b434d3fe1"}, + {file = "cramjam-2.9.0-cp310-none-win_amd64.whl", hash = "sha256:37054c73704a3183b60869e7fec1614648752c31d89f44de1ffe1f01ad4d20d5"}, + {file = "cramjam-2.9.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:170a50407f9400073621cc1d5f3200ca3ad9de3000831e3e86f5561ca8048a08"}, + {file = "cramjam-2.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:912c94781c8ff318a4d3f3306f8d94d41ae5aa7b9760c4bb0476b01142084845"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:df089639983a03070be6eabc60317aa1ffbf2c5409023b57a5fc2e4975163bc4"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ca28a8f6ab5fca35f163fd7d7a970880ce4fc1a0bead1249ecdaa96ec9ac1f4"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:abd8bf9a94e3866215ac181a7dbcfa1ddbedca4f8048494a79934febe88537df"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7de19a382bcab93cd4d028d51f6f581920a3b79659a384775188135b7fc64f15"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4156fcefa1dfaa65d35ff82c252d1e32be12820f26d04748be6cd3b461cf85f"}, + {file = "cramjam-2.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4a3104022129d7463100dfaf12efd398ebfa4b7e4e50832ccc596754f7c26df"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6ebee5f5d7e2b9277895ea4fd94646b72075fe9cfc0e8f4770b65c9e72b1fec1"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:8e33ebe4d709b21bc15e7ddf485ac6b30d7fdc7ed7c3c65130654c007f50c183"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4d5a39118008bb9f2fba36a0ceea6c41fbd0b55d2647b043ba51a868e5f6de92"}, + {file = "cramjam-2.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7f6ef35eba883927af2678b561cc4407e0b3b0d58a251c863bec4b3d8258cc2f"}, + {file = "cramjam-2.9.0-cp311-none-win32.whl", hash = "sha256:b21e55b5cfdaff96eae1f323ae9a0d36e86852cdf62fe23b60a2481d2fed5571"}, + {file = "cramjam-2.9.0-cp311-none-win_amd64.whl", hash = "sha256:9f685fe4e49b2f3e233548e3397b3f9189d71a265718ec631d13eca3d5718ddb"}, + {file = "cramjam-2.9.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:34578e4c1518b10dad5e0ba40c721e529ef13e7742a528843b40e1f20dd6078c"}, + {file = "cramjam-2.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1d5b5512dc61ea78f32e021e88a5fd5b46a821409479e6657d33614fc9e45677"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0b4f1b5e33915ed591c0c19b8c3bbdd7aa0f6a9bfe2b7246b475d497bda15f18"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad301801afa0eecdacabf353a2802df5e6770f9bfb0a559d6c069813d83cfd42"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:399baf80fea574e3870f233e12e6a12f02c53b054e13d792348b272b0614370a"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3121e2fbec58907fa70636adaeaf30c27614c867e08a7a5bd2887b33786ff790"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd04205b2a87087ffc2257c3ad33f11daabc053956f64ac1ec7bae299cac3f2f"}, + {file = "cramjam-2.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddb9c4db36188a8f08c2303100a83100f26a8572803ae35eadff359bebd3d204"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ef553d4080368006817c1a935ed619c71987cf10417a32386acc00c5418a2934"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:9862ca8ead80857ecfb9b07f02f577733261e981346f31585fe118975eabb738"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:4714e1ea0c3329368b83fe5ad6e831d5ca11fb794ca7cf491622eb6b2d420d2f"}, + {file = "cramjam-2.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1b4ca30c9f27e3b88bc082d4637e7648f93da5cb69a2dbe0c0300bc51353c820"}, + {file = "cramjam-2.9.0-cp312-none-win32.whl", hash = "sha256:0ed2fef010d1caca9ea63814e9cb5b1d47d907b80302b8cc0b3a1e116ea241e2"}, + {file = "cramjam-2.9.0-cp312-none-win_amd64.whl", hash = "sha256:bd26d71939de5dcf169d479fbc7fcfed21e6675bab33e7f7e9f8405f19711c71"}, + {file = "cramjam-2.9.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:dd70ea5d7b2c5e479e04ac3a00d8bc3deca146d2b5dbfbe3d7b42ed136e19de4"}, + {file = "cramjam-2.9.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0b1410e68c464666473a89cade17483b94bb4639d9161c440ee54ee1e0eca583"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b0078727fe8c28ef1695e5d04aae5c41ac697eb087cba387c6a02b825f9071c0"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a63c4e63319bf7dfc3ab46c06afb76d3d9cc1c94369b609dde480e5cc78e4de"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47d7253b5a10c201cc65aecfb517dfa1c0b5831b2524ac32dd2964fceafc0dc4"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05970fb640f236767003e62c256a085754536169bac863f4a3502ecb59cbf197"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0b062d261fa3fac00146cf801896c8cfafe1e41332eb047aa0a36558299daa6"}, + {file = "cramjam-2.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:017b7066f18b7b676068f51b1dbdecc02d76d9af10092252b22dcbd03a78ed33"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:9de33ef3bc006c11fbad1dc8b15341dcc78430df2c5ce1e790dfb729b11ab593"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:b99efaf81be8e381de1cde6574e2c89030ed53994e73b0e75b62d6e232f491c5"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:36426e3f1920f6aa4c644d007bf9cfad06dd9f1a30cd0a921d72b010492d8447"}, + {file = "cramjam-2.9.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea9bcaff298f5d35ef67346d474fca388c5cf6d4edab1d06b84868800f88bd36"}, + {file = "cramjam-2.9.0-cp313-none-win32.whl", hash = "sha256:c48da60a5eb481b412e5e462b81ad307fb2203178a2840a743f0a7c5fc1718c9"}, + {file = "cramjam-2.9.0-cp313-none-win_amd64.whl", hash = "sha256:97a6311bd32f301ff1b922bc9de62ace3d9fd845e20efc0f71b4d0239a45b8d2"}, + {file = "cramjam-2.9.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:78e7349f945a83bc48855fb042873092a69b155a088b8c11942eb76418b32705"}, + {file = "cramjam-2.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:65a097ea765dd4ef2fb868b5b0959d7c93a64c250b2c52f462898c823ae4b950"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:35cad507eb02c775e6c5444312f98b28dd8bf122425677ae199484996e838673"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8982925d179b940efa860513a31b839bb06343501077cca3e67f7a2f7360d355"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ba7e2d33e1d092dffd0a3ff4bd1b86177594aa3c2901fd478e78e1fb2aee8ed3"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:904be92e3bc25e78343ee52aa0fd5fba3a31d11d474e8af4623a9d00baa84bc2"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9221297c547d702e1431e96705fce26c6a87df34a681a6b97fe63b536d09c1d8"}, + {file = "cramjam-2.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e98a18c22a85f321091cc8db6694af1d713a369c2d60ec611c10ccfe24ab103a"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e248510f8e2dbc71fa99f86238c9023365dbe1a4520eb40e33d73416527349f2"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_armv7l.whl", hash = "sha256:dc07376aa33b6004ea372ac9b0ba0ed3455aa2fc4e18727414142ecb46b176b8"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:e94021c541eb2a199b5a2ffae0ea84fb8b99863dab99a5b154b00bc7a44b5c48"}, + {file = "cramjam-2.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4adbf4366f8dc29b7c5c731c800cf633be76c9911e928daeb606827d6ae7c599"}, + {file = "cramjam-2.9.0-cp38-none-win32.whl", hash = "sha256:ca880f555c8db40942acc8a50722c33e229b6be90e598acc1a201f36487b917d"}, + {file = "cramjam-2.9.0-cp38-none-win_amd64.whl", hash = "sha256:ab17a429a92db90bf40115efb97d10e71b94b0dcacf30cf724552df2794a58fb"}, + {file = "cramjam-2.9.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:ed7fd7bc2b86ec3161fe0cc49f5f392e6efa55c91a95397d5047820c38117660"}, + {file = "cramjam-2.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a0f654c739a6bc4a69a2aaf31463328a208757ed780ff886234532f78e06a864"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cd4d4ab9deb5846af0ac6cf1fa139cfa40291ad14d073efa8b8e20c8d1aa90bd"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bafc32f01d4ab64f83fdbc29bc5bd25a920b59c751c12e06e6f4b1e379be7600"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0fb5ea631dbf998f667766a9e485e757817d66ed559916ba553a0ec2f902d788"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c902e56e60c48f5f15e55257aaa1c2678323df5f18a1b839e8d05cac1107576c"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:441d3875cdffe5df9294b93ef570058837732dd727cd9d18efa0f089f1c2687a"}, + {file = "cramjam-2.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed486e57a79ccc7aebaa2ec12517d891fdc5d2fde16915e3db705b8a47570981"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:013cb872205641c6e5269f530ed40aaaa5640d84e0d8f33b89f5a1bf7f655527"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:a41b4b10a381be1d42a1a7dd07b8c3faccd3d12c7e98e973a6ec558fd040a607"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:598eac1713ddbe69c3b30dcc890d69b206ce08903fc3aed58149aae87c61973a"}, + {file = "cramjam-2.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:72e9ebc27c557706a3c9964c1d1b4522857760dbd60c105a4f5421f3b66e31a2"}, + {file = "cramjam-2.9.0-cp39-none-win32.whl", hash = "sha256:dbbd6fba677e1cbc9d6bd4ebbe3e8b3667d0295f1731489db2a971c95f0ceca0"}, + {file = "cramjam-2.9.0-cp39-none-win_amd64.whl", hash = "sha256:7f33a83969fa94ee8e0c1f0aef8eb303ead3e9142338dc543abeb7e1a28734ab"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:132db7d3346ea21ba44e7ee23ec73bd6fa9eb1e77133ca6dfe1f7449a69999af"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:2addf801c88bead21256ccd87dc97cffead03758c4a4947fad8e454f4abfda0a"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24afad3ba62774abbb150dc25aab21b047ab999c4143c7a8d96577848baf7af6"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:604c16052cf29d0c796927ed7e107f65429d2036c82c9a8009bd453c94e5e4f0"}, + {file = "cramjam-2.9.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:65bded20fd2cef17b22246c336ddd67fac842341ee311042b4a70e65dc745aa7"}, + {file = "cramjam-2.9.0.tar.gz", hash = "sha256:f103e648aa3ebe9b8e2c1a3a92719288d8f3f41007c319ad298cdce2d0c28641"}, ] [package.extras] @@ -721,13 +740,13 @@ files = [ [[package]] name = "emoji" -version = "2.13.2" +version = "2.14.0" description = "Emoji for Python" optional = false python-versions = ">=3.7" files = [ - {file = "emoji-2.13.2-py3-none-any.whl", hash = "sha256:ef6f2ee63b245e934c763b1a9a0637713955aa3d9e322432e036bb60559de4d6"}, - {file = "emoji-2.13.2.tar.gz", hash = "sha256:f95d10d96c5f21299ed2c4b32511611ba890b8c07f5f2bf5b04d5d3eee91fd19"}, + {file = "emoji-2.14.0-py3-none-any.whl", hash = "sha256:fcc936bf374b1aec67dda5303ae99710ba88cc9cdce2d1a71c5f2204e6d78799"}, + {file = "emoji-2.14.0.tar.gz", hash = "sha256:f68ac28915a2221667cddb3e6c589303c3c6954c6c5af6fefaec7f9bdf72fdca"}, ] [package.extras] @@ -1047,13 +1066,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.130" +version = "0.1.138" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.130-py3-none-any.whl", hash = "sha256:acf27d77e699d84b03045f3f226e78be1dffb3e756aa1a085f9993a45380e8b2"}, - {file = "langsmith-0.1.130.tar.gz", hash = "sha256:3e43f87655a86395133e3a745d5968667d4d05dc9a24c617f89224c8cbf54dce"}, + {file = "langsmith-0.1.138-py3-none-any.whl", hash = "sha256:5c2bd5c11c75f7b3d06a0f06b115186e7326ca969fd26d66ffc65a0669012aee"}, + {file = "langsmith-0.1.138.tar.gz", hash = "sha256:1ecf613bb52f6bf17f1510e24ad8b70d4b0259bc9d3dbfd69b648c66d4644f0b"}, ] [package.dependencies] @@ -1234,91 +1253,92 @@ testing = ["coverage", "pyyaml"] [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.22.0" +version = "3.23.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, - {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, + {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, + {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "mypy-extensions" @@ -1403,68 +1423,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] @@ -1641,95 +1662,90 @@ pytzdata = ">=2020.1" [[package]] name = "pillow" -version = "10.4.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, - {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, - {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, - {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, - {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, - {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, - {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, - {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, - {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, - {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, - {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, - {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, - {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, - {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, - {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, - {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, - {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, - {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, - {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, - {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, - {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, - {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, - {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, - {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, - {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, - {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, - {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, - {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, - {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, - {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, - {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, - {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, - {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, - {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, - {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, - {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, - {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, - {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, - {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -1767,6 +1783,36 @@ files = [ dev = ["pre-commit", "tox"] testing = ["pytest", "pytest-benchmark"] +[[package]] +name = "psutil" +version = "6.1.0" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"}, + {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"}, + {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"}, + {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"}, + {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"}, + {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"}, + {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"}, + {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"}, +] + +[package.extras] +dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"] +test = ["pytest", "pytest-xdist", "setuptools"] + [[package]] name = "py" version = "1.11.0" @@ -2253,17 +2299,17 @@ typing-extensions = ">=4.9.0" [[package]] name = "python-iso639" -version = "2024.4.27" +version = "2024.10.22" description = "ISO 639 language codes, names, and other associated information" optional = false python-versions = ">=3.8" files = [ - {file = "python_iso639-2024.4.27-py3-none-any.whl", hash = "sha256:27526a84cebc4c4d53fea9d1ebbc7209c8d279bebaa343e6765a1fc8780565ab"}, - {file = "python_iso639-2024.4.27.tar.gz", hash = "sha256:97e63b5603e085c6a56a12a95740010e75d9134e0aab767e0978b53fd8824f13"}, + {file = "python_iso639-2024.10.22-py3-none-any.whl", hash = "sha256:02d3ce2e01c6896b30b9cbbd3e1c8ee0d7221250b5d63ea9803e0d2a81fd1047"}, + {file = "python_iso639-2024.10.22.tar.gz", hash = "sha256:750f21b6a0bc6baa24253a3d8aae92b582bf93aa40988361cd96852c2c6d9a52"}, ] [package.extras] -dev = ["black (==24.4.2)", "build (==1.2.1)", "flake8 (==7.0.0)", "pytest (==8.1.2)", "requests (==2.31.0)", "twine (==5.0.0)"] +dev = ["black (==24.10.0)", "build (==1.2.1)", "flake8 (==7.1.1)", "pytest (==8.3.3)", "requests (==2.32.3)", "twine (==5.1.1)"] [[package]] name = "python-magic" @@ -2329,25 +2375,29 @@ files = [ [[package]] name = "pywin32" -version = "306" +version = "308" description = "Python for Window Extensions" optional = false python-versions = "*" files = [ - {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, - {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, - {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, - {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, - {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, - {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, - {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, - {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, - {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, - {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, - {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, - {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, - {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, - {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, + {file = "pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"}, + {file = "pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"}, + {file = "pywin32-308-cp310-cp310-win_arm64.whl", hash = "sha256:a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c"}, + {file = "pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a"}, + {file = "pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b"}, + {file = "pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6"}, + {file = "pywin32-308-cp312-cp312-win32.whl", hash = "sha256:587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897"}, + {file = "pywin32-308-cp312-cp312-win_amd64.whl", hash = "sha256:00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47"}, + {file = "pywin32-308-cp312-cp312-win_arm64.whl", hash = "sha256:9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091"}, + {file = "pywin32-308-cp313-cp313-win32.whl", hash = "sha256:1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed"}, + {file = "pywin32-308-cp313-cp313-win_amd64.whl", hash = "sha256:fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4"}, + {file = "pywin32-308-cp313-cp313-win_arm64.whl", hash = "sha256:ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd"}, + {file = "pywin32-308-cp37-cp37m-win32.whl", hash = "sha256:1f696ab352a2ddd63bd07430080dd598e6369152ea13a25ebcdd2f503a38f1ff"}, + {file = "pywin32-308-cp37-cp37m-win_amd64.whl", hash = "sha256:13dcb914ed4347019fbec6697a01a0aec61019c1046c2b905410d197856326a6"}, + {file = "pywin32-308-cp38-cp38-win32.whl", hash = "sha256:5794e764ebcabf4ff08c555b31bd348c9025929371763b2183172ff4708152f0"}, + {file = "pywin32-308-cp38-cp38-win_amd64.whl", hash = "sha256:3b92622e29d651c6b783e368ba7d6722b1634b8e70bd376fd7610fe1992e19de"}, + {file = "pywin32-308-cp39-cp39-win32.whl", hash = "sha256:7873ca4dc60ab3287919881a7d4f88baee4a6e639aa6962de25a98ba6b193341"}, + {file = "pywin32-308-cp39-cp39-win_amd64.whl", hash = "sha256:71b3322d949b4cc20776436a9c9ba0eeedcbc9c650daa536df63f0ff111bb920"}, ] [[package]] @@ -2414,99 +2464,99 @@ files = [ [[package]] name = "rapidfuzz" -version = "3.10.0" +version = "3.10.1" description = "rapid fuzzy string matching" optional = false python-versions = ">=3.9" files = [ - {file = "rapidfuzz-3.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:884453860de029380dded8f3c1918af2d8eb5adf8010261645c7e5c88c2b5428"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:718c9bd369288aca5fa929df6dbf66fdbe9768d90940a940c0b5cdc96ade4309"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a68e3724b7dab761c01816aaa64b0903734d999d5589daf97c14ef5cc0629a8e"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1af60988d47534246d9525f77288fdd9de652608a4842815d9018570b959acc6"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3084161fc3e963056232ef8d937449a2943852e07101f5a136c8f3cfa4119217"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6cd67d3d017296d98ff505529104299f78433e4b8af31b55003d901a62bbebe9"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b11a127ac590fc991e8a02c2d7e1ac86e8141c92f78546f18b5c904064a0552c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:aadce42147fc09dcef1afa892485311e824c050352e1aa6e47f56b9b27af4cf0"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b54853c2371bf0e38d67da379519deb6fbe70055efb32f6607081641af3dc752"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ce19887268e90ee81a3957eef5e46a70ecc000713796639f83828b950343f49e"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f39a2a5ded23b9b9194ec45740dce57177b80f86c6d8eba953d3ff1a25c97766"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0ec338d5f4ad8d9339a88a08db5c23e7f7a52c2b2a10510c48a0cef1fb3f0ddc"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win32.whl", hash = "sha256:56fd15ea8f4c948864fa5ebd9261c67cf7b89a1c517a0caef4df75446a7af18c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:43dfc5e733808962a822ff6d9c29f3039a3cfb3620706f5953e17cfe4496724c"}, - {file = "rapidfuzz-3.10.0-cp310-cp310-win_arm64.whl", hash = "sha256:ae7966f205b5a7fde93b44ca8fed37c1c8539328d7f179b1197de34eceaceb5f"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bb0013795b40db5cf361e6f21ee7cda09627cf294977149b50e217d7fe9a2f03"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:69ef5b363afff7150a1fbe788007e307b9802a2eb6ad92ed51ab94e6ad2674c6"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c582c46b1bb0b19f1a5f4c1312f1b640c21d78c371a6615c34025b16ee56369b"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:288f6f6e7410cacb115fb851f3f18bf0e4231eb3f6cb5bd1cec0e7b25c4d039d"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9e29a13d2fd9be3e7d8c26c7ef4ba60b5bc7efbc9dbdf24454c7e9ebba31768"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea2da0459b951ee461bd4e02b8904890bd1c4263999d291c5cd01e6620177ad4"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:457827ba82261aa2ae6ac06a46d0043ab12ba7216b82d87ae1434ec0f29736d6"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5d350864269d56f51ab81ab750c9259ae5cad3152c0680baef143dcec92206a1"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a9b8f51e08c3f983d857c3889930af9ddecc768453822076683664772d87e374"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7f3a6aa6e70fc27e4ff5c479f13cc9fc26a56347610f5f8b50396a0d344c5f55"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:803f255f10d63420979b1909ef976e7d30dec42025c9b067fc1d2040cc365a7e"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2026651761bf83a0f31495cc0f70840d5c0d54388f41316e3f9cb51bd85e49a5"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win32.whl", hash = "sha256:4df75b3ebbb8cfdb9bf8b213b168620b88fd92d0c16a8bc9f9234630b282db59"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:f9f0bbfb6787b97c51516f3ccf97737d504db5d239ad44527673b81f598b84ab"}, - {file = "rapidfuzz-3.10.0-cp311-cp311-win_arm64.whl", hash = "sha256:10fdad800441b9c97d471a937ba7d42625f1b530db05e572f1cb7d401d95c893"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7dc87073ba3a40dd65591a2100aa71602107443bf10770579ff9c8a3242edb94"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a425a0a868cf8e9c6e93e1cda4b758cdfd314bb9a4fc916c5742c934e3613480"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d5d1d75e61df060c1e56596b6b0a4422a929dff19cc3dbfd5eee762c86b61"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34f213d59219a9c3ca14e94a825f585811a68ac56b4118b4dc388b5b14afc108"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96ad46f5f56f70fab2be9e5f3165a21be58d633b90bf6e67fc52a856695e4bcf"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9178277f72d144a6c7704d7ae7fa15b7b86f0f0796f0e1049c7b4ef748a662ef"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76a35e9e19a7c883c422ffa378e9a04bc98cb3b29648c5831596401298ee51e6"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a6405d34c394c65e4f73a1d300c001f304f08e529d2ed6413b46ee3037956eb"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bd393683129f446a75d8634306aed7e377627098a1286ff3af2a4f1736742820"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b0445fa9880ead81f5a7d0efc0b9c977a947d8052c43519aceeaf56eabaf6843"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c50bc308fa29767ed8f53a8d33b7633a9e14718ced038ed89d41b886e301da32"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e89605afebbd2d4b045bccfdc12a14b16fe8ccbae05f64b4b4c64a97dad1c891"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win32.whl", hash = "sha256:2db9187f3acf3cd33424ecdbaad75414c298ecd1513470df7bda885dcb68cc15"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:50e3d0c72ea15391ba9531ead7f2068a67c5b18a6a365fef3127583aaadd1725"}, - {file = "rapidfuzz-3.10.0-cp312-cp312-win_arm64.whl", hash = "sha256:9eac95b4278bd53115903d89118a2c908398ee8bdfd977ae844f1bd2b02b917c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fe5231e8afd069c742ac5b4f96344a0fe4aff52df8e53ef87faebf77f827822c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:886882367dbc985f5736356105798f2ae6e794e671fc605476cbe2e73838a9bb"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b33e13e537e3afd1627d421a142a12bbbe601543558a391a6fae593356842f6e"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:094c26116d55bf9c53abd840d08422f20da78ec4c4723e5024322321caedca48"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:545fc04f2d592e4350f59deb0818886c1b444ffba3bec535b4fbb97191aaf769"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:916a6abf3632e592b937c3d04c00a6efadd8fd30539cdcd4e6e4d92be7ca5d90"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb6ec40cef63b1922083d33bfef2f91fc0b0bc07b5b09bfee0b0f1717d558292"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c77a7330dd15c7eb5fd3631dc646fc96327f98db8181138766bd14d3e905f0ba"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:949b5e9eeaa4ecb4c7e9c2a4689dddce60929dd1ff9c76a889cdbabe8bbf2171"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b5363932a5aab67010ae1a6205c567d1ef256fb333bc23c27582481606be480c"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:5dd6eec15b13329abe66cc241b484002ecb0e17d694491c944a22410a6a9e5e2"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:79e7f98525b60b3c14524e0a4e1fedf7654657b6e02eb25f1be897ab097706f3"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win32.whl", hash = "sha256:d29d1b9857c65f8cb3a29270732e1591b9bacf89de9d13fa764f79f07d8f1fd2"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:fa9720e56663cc3649d62b4b5f3145e94b8f5611e8a8e1b46507777249d46aad"}, - {file = "rapidfuzz-3.10.0-cp313-cp313-win_arm64.whl", hash = "sha256:eda4c661e68dddd56c8fbfe1ca35e40dd2afd973f7ebb1605f4d151edc63dff8"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cffbc50e0767396ed483900900dd58ce4351bc0d40e64bced8694bd41864cc71"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c038b9939da3035afb6cb2f465f18163e8f070aba0482923ecff9443def67178"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca366c2e2a54e2f663f4529b189fdeb6e14d419b1c78b754ec1744f3c01070d4"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c4c82b1689b23b1b5e6a603164ed2be41b6f6de292a698b98ba2381e889eb9d"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98f6ebe28831a482981ecfeedc8237047878424ad0c1add2c7f366ba44a20452"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4bd1a7676ee2a4c8e2f7f2550bece994f9f89e58afb96088964145a83af7408b"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec9139baa3f85b65adc700eafa03ed04995ca8533dd56c924f0e458ffec044ab"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:26de93e6495078b6af4c4d93a42ca067b16cc0e95699526c82ab7d1025b4d3bf"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f3a0bda83c18195c361b5500377d0767749f128564ca95b42c8849fd475bb327"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:63e4c175cbce8c3adc22dca5e6154588ae673f6c55374d156f3dac732c88d7de"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4dd3d8443970eaa02ab5ae45ce584b061f2799cd9f7e875190e2617440c1f9d4"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e5ddb2388610799fc46abe389600625058f2a73867e63e20107c5ad5ffa57c47"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win32.whl", hash = "sha256:2e9be5d05cd960914024412b5406fb75a82f8562f45912ff86255acbfdbfb78e"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:47aca565a39c9a6067927871973ca827023e8b65ba6c5747f4c228c8d7ddc04f"}, - {file = "rapidfuzz-3.10.0-cp39-cp39-win_arm64.whl", hash = "sha256:b0732343cdc4273b5921268026dd7266f75466eb21873cb7635a200d9d9c3fac"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f744b5eb1469bf92dd143d36570d2bdbbdc88fe5cb0b5405e53dd34f479cbd8a"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b67cc21a14327a0eb0f47bc3d7e59ec08031c7c55220ece672f9476e7a8068d3"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fe5783676f0afba4a522c80b15e99dbf4e393c149ab610308a8ef1f04c6bcc8"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4688862f957c8629d557d084f20b2d803f8738b6c4066802a0b1cc472e088d9"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20bd153aacc244e4c907d772c703fea82754c4db14f8aa64d75ff81b7b8ab92d"}, - {file = "rapidfuzz-3.10.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:50484d563f8bfa723c74c944b0bb15b9e054db9c889348c8c307abcbee75ab92"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5897242d455461f2c5b82d7397b29341fd11e85bf3608a522177071044784ee8"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:116c71a81e046ba56551d8ab68067ca7034d94b617545316d460a452c5c3c289"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0a547e4350d1fa32624d3eab51eff8cf329f4cae110b4ea0402486b1da8be40"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:399b9b79ccfcf50ca3bad7692bc098bb8eade88d7d5e15773b7f866c91156d0c"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7947a425d1be3e744707ee58c6cb318b93a56e08f080722dcc0347e0b7a1bb9a"}, - {file = "rapidfuzz-3.10.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:94c48b4a2a4b1d22246f48e2b11cae01ec7d23f0c9123f8bb822839ad79d0a88"}, - {file = "rapidfuzz-3.10.0.tar.gz", hash = "sha256:6b62af27e65bb39276a66533655a2fa3c60a487b03935721c45b7809527979be"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f17d9f21bf2f2f785d74f7b0d407805468b4c173fa3e52c86ec94436b338e74a"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b31f358a70efc143909fb3d75ac6cd3c139cd41339aa8f2a3a0ead8315731f2b"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f4f43f2204b56a61448ec2dd061e26fd344c404da99fb19f3458200c5874ba2"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9d81bf186a453a2757472133b24915768abc7c3964194406ed93e170e16c21cb"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3611c8f45379a12063d70075c75134f2a8bd2e4e9b8a7995112ddae95ca1c982"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3c3b537b97ac30da4b73930fa8a4fe2f79c6d1c10ad535c5c09726612cd6bed9"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:231ef1ec9cf7b59809ce3301006500b9d564ddb324635f4ea8f16b3e2a1780da"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed4f3adc1294834955b7e74edd3c6bd1aad5831c007f2d91ea839e76461a5879"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:7b6015da2e707bf632a71772a2dbf0703cff6525732c005ad24987fe86e8ec32"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:1b35a118d61d6f008e8e3fb3a77674d10806a8972c7b8be433d6598df4d60b01"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:bc308d79a7e877226f36bdf4e149e3ed398d8277c140be5c1fd892ec41739e6d"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f017dbfecc172e2d0c37cf9e3d519179d71a7f16094b57430dffc496a098aa17"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win32.whl", hash = "sha256:36c0e1483e21f918d0f2f26799fe5ac91c7b0c34220b73007301c4f831a9c4c7"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:10746c1d4c8cd8881c28a87fd7ba0c9c102346dfe7ff1b0d021cdf093e9adbff"}, + {file = "rapidfuzz-3.10.1-cp310-cp310-win_arm64.whl", hash = "sha256:dfa64b89dcb906835e275187569e51aa9d546a444489e97aaf2cc84011565fbe"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:92958ae075c87fef393f835ed02d4fe8d5ee2059a0934c6c447ea3417dfbf0e8"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ba7521e072c53e33c384e78615d0718e645cab3c366ecd3cc8cb732befd94967"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00d02cbd75d283c287471b5b3738b3e05c9096150f93f2d2dfa10b3d700f2db9"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efa1582a397da038e2f2576c9cd49b842f56fde37d84a6b0200ffebc08d82350"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f12912acee1f506f974f58de9fdc2e62eea5667377a7e9156de53241c05fdba8"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666d5d8b17becc3f53447bcb2b6b33ce6c2df78792495d1fa82b2924cd48701a"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26f71582c0d62445067ee338ddad99b655a8f4e4ed517a90dcbfbb7d19310474"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8a2ef08b27167bcff230ffbfeedd4c4fa6353563d6aaa015d725dd3632fc3de7"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:365e4fc1a2b95082c890f5e98489b894e6bf8c338c6ac89bb6523c2ca6e9f086"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1996feb7a61609fa842e6b5e0c549983222ffdedaf29644cc67e479902846dfe"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:cf654702f144beaa093103841a2ea6910d617d0bb3fccb1d1fd63c54dde2cd49"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ec108bf25de674781d0a9a935030ba090c78d49def3d60f8724f3fc1e8e75024"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win32.whl", hash = "sha256:031f8b367e5d92f7a1e27f7322012f3c321c3110137b43cc3bf678505583ef48"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:f98f36c6a1bb9a6c8bbec99ad87c8c0e364f34761739b5ea9adf7b48129ae8cf"}, + {file = "rapidfuzz-3.10.1-cp311-cp311-win_arm64.whl", hash = "sha256:f1da2028cb4e41be55ee797a82d6c1cf589442504244249dfeb32efc608edee7"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1340b56340896bede246f612b6ecf685f661a56aabef3d2512481bfe23ac5835"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2316515169b7b5a453f0ce3adbc46c42aa332cae9f2edb668e24d1fc92b2f2bb"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e06fe6a12241ec1b72c0566c6b28cda714d61965d86569595ad24793d1ab259"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d99c1cd9443b19164ec185a7d752f4b4db19c066c136f028991a480720472e23"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1d9aa156ed52d3446388ba4c2f335e312191d1ca9d1f5762ee983cf23e4ecf6"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:54bcf4efaaee8e015822be0c2c28214815f4f6b4f70d8362cfecbd58a71188ac"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0c955e32afdbfdf6e9ee663d24afb25210152d98c26d22d399712d29a9b976b"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:191633722203f5b7717efcb73a14f76f3b124877d0608c070b827c5226d0b972"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:195baad28057ec9609e40385991004e470af9ef87401e24ebe72c064431524ab"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:0fff4a6b87c07366662b62ae994ffbeadc472e72f725923f94b72a3db49f4671"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4ffed25f9fdc0b287f30a98467493d1e1ce5b583f6317f70ec0263b3c97dbba6"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d02cf8e5af89a9ac8f53c438ddff6d773f62c25c6619b29db96f4aae248177c0"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win32.whl", hash = "sha256:f3bb81d4fe6a5d20650f8c0afcc8f6e1941f6fecdb434f11b874c42467baded0"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:aaf83e9170cb1338922ae42d320699dccbbdca8ffed07faeb0b9257822c26e24"}, + {file = "rapidfuzz-3.10.1-cp312-cp312-win_arm64.whl", hash = "sha256:c5da802a0d085ad81b0f62828fb55557996c497b2d0b551bbdfeafd6d447892f"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fc22d69a1c9cccd560a5c434c0371b2df0f47c309c635a01a913e03bbf183710"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38b0dac2c8e057562b8f0d8ae5b663d2d6a28c5ab624de5b73cef9abb6129a24"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fde3bbb14e92ce8fcb5c2edfff72e474d0080cadda1c97785bf4822f037a309"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9141fb0592e55f98fe9ac0f3ce883199b9c13e262e0bf40c5b18cdf926109d16"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:237bec5dd1bfc9b40bbd786cd27949ef0c0eb5fab5eb491904c6b5df59d39d3c"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18123168cba156ab5794ea6de66db50f21bb3c66ae748d03316e71b27d907b95"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b75fe506c8e02769cc47f5ab21ce3e09b6211d3edaa8f8f27331cb6988779be"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9da82aa4b46973aaf9e03bb4c3d6977004648c8638febfc0f9d237e865761270"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:c34c022d5ad564f1a5a57a4a89793bd70d7bad428150fb8ff2760b223407cdcf"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:1e96c84d6c2a0ca94e15acb5399118fff669f4306beb98a6d8ec6f5dccab4412"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:e8e154b84a311263e1aca86818c962e1fa9eefdd643d1d5d197fcd2738f88cb9"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:335fee93188f8cd585552bb8057228ce0111bd227fa81bfd40b7df6b75def8ab"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win32.whl", hash = "sha256:6729b856166a9e95c278410f73683957ea6100c8a9d0a8dbe434c49663689255"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:0e06d99ad1ad97cb2ef7f51ec6b1fedd74a3a700e4949353871cf331d07b382a"}, + {file = "rapidfuzz-3.10.1-cp313-cp313-win_arm64.whl", hash = "sha256:8d1b7082104d596a3eb012e0549b2634ed15015b569f48879701e9d8db959dbb"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:779027d3307e1a2b1dc0c03c34df87a470a368a1a0840a9d2908baf2d4067956"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:440b5608ab12650d0390128d6858bc839ae77ffe5edf0b33a1551f2fa9860651"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82cac41a411e07a6f3dc80dfbd33f6be70ea0abd72e99c59310819d09f07d945"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:958473c9f0bca250590200fd520b75be0dbdbc4a7327dc87a55b6d7dc8d68552"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ef60dfa73749ef91cb6073be1a3e135f4846ec809cc115f3cbfc6fe283a5584"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7fbac18f2c19fc983838a60611e67e3262e36859994c26f2ee85bb268de2355"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a0d519ff39db887cd73f4e297922786d548f5c05d6b51f4e6754f452a7f4296"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bebb7bc6aeb91cc57e4881b222484c26759ca865794187217c9dcea6c33adae6"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fe07f8b9c3bb5c5ad1d2c66884253e03800f4189a60eb6acd6119ebaf3eb9894"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:bfa48a4a2d45a41457f0840c48e579db157a927f4e97acf6e20df8fc521c79de"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:2cf44d01bfe8ee605b7eaeecbc2b9ca64fc55765f17b304b40ed8995f69d7716"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e6bbca9246d9eedaa1c84e04a7f555493ba324d52ae4d9f3d9ddd1b740dcd87"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win32.whl", hash = "sha256:567f88180f2c1423b4fe3f3ad6e6310fc97b85bdba574801548597287fc07028"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:6b2cd7c29d6ecdf0b780deb587198f13213ac01c430ada6913452fd0c40190fc"}, + {file = "rapidfuzz-3.10.1-cp39-cp39-win_arm64.whl", hash = "sha256:9f912d459e46607ce276128f52bea21ebc3e9a5ccf4cccfef30dd5bddcf47be8"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ac4452f182243cfab30ba4668ef2de101effaedc30f9faabb06a095a8c90fd16"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:565c2bd4f7d23c32834652b27b51dd711814ab614b4e12add8476be4e20d1cf5"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:187d9747149321607be4ccd6f9f366730078bed806178ec3eeb31d05545e9e8f"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:616290fb9a8fa87e48cb0326d26f98d4e29f17c3b762c2d586f2b35c1fd2034b"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:073a5b107e17ebd264198b78614c0206fa438cce749692af5bc5f8f484883f50"}, + {file = "rapidfuzz-3.10.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:39c4983e2e2ccb9732f3ac7d81617088822f4a12291d416b09b8a1eadebb3e29"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ac7adee6bcf0c6fee495d877edad1540a7e0f5fc208da03ccb64734b43522d7a"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:425f4ac80b22153d391ee3f94bc854668a0c6c129f05cf2eaf5ee74474ddb69e"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65a2fa13e8a219f9b5dcb9e74abe3ced5838a7327e629f426d333dfc8c5a6e66"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:75561f3df9a906aaa23787e9992b228b1ab69007932dc42070f747103e177ba8"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:edd062490537e97ca125bc6c7f2b7331c2b73d21dc304615afe61ad1691e15d5"}, + {file = "rapidfuzz-3.10.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfcc8feccf63245a22dfdd16e222f1a39771a44b870beb748117a0e09cbb4a62"}, + {file = "rapidfuzz-3.10.1.tar.gz", hash = "sha256:5a15546d847a915b3f42dc79ef9b0c78b998b4e2c53b252e7166284066585979"}, ] [package.extras] @@ -2736,23 +2786,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -2829,13 +2879,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] @@ -3114,7 +3164,18 @@ files = [ {file = "XlsxWriter-3.2.0.tar.gz", hash = "sha256:9977d0c661a72866a61f9f7a809e25ebbb0fb7036baa3b9fe74afcfca6b3cb8c"}, ] +[[package]] +name = "xmltodict" +version = "0.13.0" +description = "Makes working with XML feel like you are working with JSON" +optional = false +python-versions = ">=3.4" +files = [ + {file = "xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852"}, + {file = "xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56"}, +] + [metadata] lock-version = "2.0" python-versions = "^3.10,<3.12" -content-hash = "0eeab97d0a9cfff069ed060c693f3f96b61b4e63877abf70396e2012ba6e0330" +content-hash = "cda5e02e0eb8763a27fe9cbe9164bc1f0b6cf1edd60654f2bd514d92b32cb15e" diff --git a/airbyte-integrations/connectors/source-sftp-bulk/pyproject.toml b/airbyte-integrations/connectors/source-sftp-bulk/pyproject.toml index a1c1340654db..78b1d5b189dc 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/pyproject.toml +++ b/airbyte-integrations/connectors/source-sftp-bulk/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.2.0" +version = "1.3.0" name = "source-sftp-bulk" description = "Source implementation for SFTP Bulk." authors = [ "Airbyte ",] @@ -17,7 +17,7 @@ include = "source_sftp_bulk" [tool.poetry.dependencies] python = "^3.10,<3.12" -airbyte-cdk = {version = "^5", extras = ["file-based"]} +airbyte-cdk = {version = "^6.1.0", extras = ["file-based"]} paramiko = "3.4.0" [tool.poetry.scripts] diff --git a/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/spec.py b/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/spec.py index 0490b8bd98c4..5de6ce689963 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/spec.py +++ b/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/spec.py @@ -4,7 +4,7 @@ from typing import Literal, Optional, Union from airbyte_cdk import OneOfOptionConfig -from airbyte_cdk.sources.file_based.config.abstract_file_based_spec import AbstractFileBasedSpec +from airbyte_cdk.sources.file_based.config.abstract_file_based_spec import AbstractFileBasedSpec, DeliverRawFiles, DeliverRecords from pydantic.v1 import BaseModel, Field @@ -49,6 +49,16 @@ class Config: pattern_descriptor="/folder_to_sync", ) + delivery_method: Union[DeliverRecords, DeliverRawFiles] = Field( + title="Delivery Method", + discriminator="delivery_type", + type="object", + order=7, + display_type="radio", + group="advanced", + default="use_records_transfer", + ) + @classmethod def documentation_url(cls) -> str: return "https://docs.airbyte.com/integrations/sources/sftp-bulk" diff --git a/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/stream_reader.py b/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/stream_reader.py index a6283ba5ca3f..b01d6b4de382 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/stream_reader.py +++ b/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/stream_reader.py @@ -79,5 +79,17 @@ def get_matching_files( ) def open_file(self, file: RemoteFile, mode: FileReadMode, encoding: Optional[str], logger: logging.Logger) -> IOBase: - remote_file = self.sftp_client.sftp_connection.open(file.uri, mode=mode.value) + if not self.use_file_transfer(): + remote_file = self.sftp_client.sftp_connection.open(file.uri, mode=mode.value) + else: + remote_file = self.sftp_client.sftp_connection.open(file.uri, mode=mode.value, bufsize=262144) + # prefetch() works by requesting multiple blocks of data in advance, + # rather than waiting for one block to be retrieved before requesting the next. + # This is a boost for reading but can cause memory errors, should be removed + # when we work on https://github.com/airbytehq/airbyte-internal-issues/issues/10480 + remote_file.prefetch(remote_file.stat().st_size) return remote_file + + def file_size(self, file: RemoteFile): + file_size = self.sftp_client.sftp_connection.stat(file.uri).st_size + return file_size diff --git a/docs/integrations/sources/sftp-bulk.md b/docs/integrations/sources/sftp-bulk.md index 02562a28fc88..2982fb7a73a0 100644 --- a/docs/integrations/sources/sftp-bulk.md +++ b/docs/integrations/sources/sftp-bulk.md @@ -134,6 +134,7 @@ This source provides a single stream per file with a dynamic schema. The current | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------| +| 1.3.0 | 2024-10-31 | [47703](https://github.com/airbytehq/airbyte/pull/47703) | Update dependency to CDK v6 with ability to transfer files. | | 1.2.0 | 2024-09-03 | [46323](https://github.com/airbytehq/airbyte/pull/46323) | Update dependency to CDK v5 | | 1.1.0 | 2024-08-14 | [44028](https://github.com/airbytehq/airbyte/pull/44028) | Update dependency to CDK v4 | | 1.0.1 | 2024-05-29 | [38703](https://github.com/airbytehq/airbyte/pull/38703) | Avoid error on empty stream when running discover | From 30498692c5df958b0e180ceba291e06f1955b5b5 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Fri, 1 Nov 2024 00:38:04 +0530 Subject: [PATCH 508/808] source-fulcrum contribution from parthiv11 (#47210) Co-authored-by: Marcos Marx --- .../connectors/source-fulcrum/README.md | 33 + .../source-fulcrum/acceptance-test-config.yml | 17 + .../connectors/source-fulcrum/icon.svg | 6 + .../connectors/source-fulcrum/manifest.yaml | 3028 +++++++++++++++++ .../connectors/source-fulcrum/metadata.yaml | 35 + docs/integrations/sources/fulcrum.md | 41 + 6 files changed, 3160 insertions(+) create mode 100644 airbyte-integrations/connectors/source-fulcrum/README.md create mode 100644 airbyte-integrations/connectors/source-fulcrum/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-fulcrum/icon.svg create mode 100644 airbyte-integrations/connectors/source-fulcrum/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-fulcrum/metadata.yaml create mode 100644 docs/integrations/sources/fulcrum.md diff --git a/airbyte-integrations/connectors/source-fulcrum/README.md b/airbyte-integrations/connectors/source-fulcrum/README.md new file mode 100644 index 000000000000..81b2080b240c --- /dev/null +++ b/airbyte-integrations/connectors/source-fulcrum/README.md @@ -0,0 +1,33 @@ +# Fulcrum +This directory contains the manifest-only connector for `source-fulcrum`. + +Airbyte connector for Fulcrum would enable seamless data extraction from the Fulcrum platform, allowing users to sync survey and field data with their data warehouses or other applications. This connector would facilitate automated, scheduled transfers of structured data, improving analytics, reporting, and decision-making processes by integrating Fulcrum's powerful field data collection capabilities with a broader data ecosystem. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-fulcrum:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-fulcrum build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-fulcrum test +``` + diff --git a/airbyte-integrations/connectors/source-fulcrum/acceptance-test-config.yml b/airbyte-integrations/connectors/source-fulcrum/acceptance-test-config.yml new file mode 100644 index 000000000000..60a47f6dc40b --- /dev/null +++ b/airbyte-integrations/connectors/source-fulcrum/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-fulcrum:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-fulcrum/icon.svg b/airbyte-integrations/connectors/source-fulcrum/icon.svg new file mode 100644 index 000000000000..3454abda99c5 --- /dev/null +++ b/airbyte-integrations/connectors/source-fulcrum/icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/airbyte-integrations/connectors/source-fulcrum/manifest.yaml b/airbyte-integrations/connectors/source-fulcrum/manifest.yaml new file mode 100644 index 000000000000..3e7b5e3154a9 --- /dev/null +++ b/airbyte-integrations/connectors/source-fulcrum/manifest.yaml @@ -0,0 +1,3028 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + Airbyte connector for Fulcrum would enable seamless data extraction from the + Fulcrum platform, allowing users to sync survey and field data with their data + warehouses or other applications. This connector would facilitate automated, + scheduled transfers of structured data, improving analytics, reporting, and + decision-making processes by integrating Fulcrum's powerful field data + collection capabilities with a broader data ecosystem. + +check: + type: CheckStream + stream_names: + - forms + +definitions: + streams: + forms: + type: DeclarativeStream + name: forms + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/forms.json + http_method: GET + request_parameters: + type: all + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - forms + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/forms" + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/users.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - user + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + workflows: + type: DeclarativeStream + name: workflows + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/workflows.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - workflows + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/workflows" + webhooks: + type: DeclarativeStream + name: webhooks + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/webhooks.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - webhooks + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/webhooks" + changesets: + type: DeclarativeStream + name: changesets + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/changesets.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - changesets + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/changesets" + records: + type: DeclarativeStream + name: records + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/records.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - records + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/records" + signatures: + type: DeclarativeStream + name: signatures + primary_key: + - record_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/signatures.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - signatures + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/signatures" + projects: + type: DeclarativeStream + name: projects + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/projects.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - projects + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/projects" + layers: + type: DeclarativeStream + name: layers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/layers.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - layers + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/layers" + classification_sets: + type: DeclarativeStream + name: classification_sets + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/classification_sets.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - classification_sets + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/classification_sets" + choice_lists: + type: DeclarativeStream + name: choice_lists + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/choice_lists.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - choice_lists + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/choice_lists" + groups: + type: DeclarativeStream + name: groups + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/groups.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - groups + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/groups" + memberships: + type: DeclarativeStream + name: memberships + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/memberships.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - memberships + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/memberships" + roles: + type: DeclarativeStream + name: roles + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: api/v2/roles.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - roles + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/roles" + authorizations: + type: DeclarativeStream + name: authorizations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/authorizations.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - authorizations + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/authorizations" + photos: + type: DeclarativeStream + name: photos + primary_key: + - record_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/photos.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - photos + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: current_page + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/photos" + audio: + type: DeclarativeStream + name: audio + primary_key: + - record_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/audio.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - audio + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/audio" + videos: + type: DeclarativeStream + name: videos + primary_key: + - record_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/videos.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - videos + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 20000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/videos" + base_requester: + type: HttpRequester + url_base: https://api.fulcrumapp.com + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_key\"] }}" + inject_into: + type: RequestOption + field_name: X-ApiToken + inject_into: header + +streams: + - $ref: "#/definitions/streams/forms" + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/workflows" + - $ref: "#/definitions/streams/webhooks" + - $ref: "#/definitions/streams/changesets" + - $ref: "#/definitions/streams/records" + - $ref: "#/definitions/streams/signatures" + - $ref: "#/definitions/streams/projects" + - $ref: "#/definitions/streams/layers" + - $ref: "#/definitions/streams/classification_sets" + - $ref: "#/definitions/streams/choice_lists" + - $ref: "#/definitions/streams/groups" + - $ref: "#/definitions/streams/memberships" + - $ref: "#/definitions/streams/roles" + - $ref: "#/definitions/streams/authorizations" + - $ref: "#/definitions/streams/photos" + - $ref: "#/definitions/streams/audio" + - $ref: "#/definitions/streams/videos" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + properties: + api_key: + type: string + description: API key to use. Find it at https://web.fulcrumapp.com/settings/api + name: api_key + order: 0 + title: API Key + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + forms: true + users: false + workflows: false + webhooks: true + changesets: true + records: true + signatures: true + projects: true + layers: true + classification_sets: true + choice_lists: true + groups: true + memberships: true + roles: true + authorizations: true + photos: false + audio: false + videos: false + testedStreams: + forms: + streamHash: d701e2df9f720df416aaa5c9b4e7a6a2a2a56252 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + users: + streamHash: 524af7e9234688de6994edb27292be6ce7d82346 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + workflows: + streamHash: ba12cc2917bf11449cd1af4cab03cfafc904e5ed + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + webhooks: + streamHash: 76b56a17ebf198ae81942372cea3f586b2baf0db + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + changesets: + streamHash: 5fa140e231db93a5b1909ea11ab72381ce666299 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + records: + streamHash: 41331fe4c7953c6849064293d471a229278c1b09 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + signatures: + hasRecords: true + streamHash: fb715c0bebb31f6c7e3147729bd9f78fb5884747 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + projects: + hasRecords: true + streamHash: 07364c25c3cffac0d4f85f59f19fce726db204d3 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + layers: + hasRecords: true + streamHash: e40fcbb288e274b84d840f6ff737310323d0a008 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + classification_sets: + hasRecords: true + streamHash: 277de4082d0d248d93785fb85d55e44fc6e9d350 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + choice_lists: + hasRecords: true + streamHash: 46bd64269bd9e61ee4942ab9d29f68b8bef17cc3 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + groups: + hasRecords: true + streamHash: e65d5d2466ca21ebb78776ff87b202cd581cb2e4 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + memberships: + hasRecords: true + streamHash: 72381538d12e923b39c97b73b418b64aa2e07c74 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + roles: + hasRecords: true + streamHash: 145c72d8a6e501b5ac905db993e5cf16a78eda3c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + authorizations: + hasRecords: true + streamHash: 1771d3b9077668e60e9c1281b0485710aac0bf71 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + photos: + hasRecords: true + streamHash: 49bb8ddaef2bec53a509a967f125f3df9e986a5f + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + audio: + hasRecords: true + streamHash: ed2ecfacee335f637a6e47c275e2f8ce1cb900c1 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + videos: + hasRecords: true + streamHash: 99c4355f6405e291b6de7d639ea017c33cafc1f1 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://docs.fulcrumapp.com/reference/rest-api-intro + +schemas: + forms: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - number + - "null" + description: + type: + - string + - "null" + assignment_enabled: + type: + - boolean + - "null" + attachment_ids: + type: + - array + - "null" + auto_assign: + type: + - boolean + - "null" + bounding_box: + type: + - array + - "null" + items: + type: + - number + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + elements: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + agreement_text: + type: + - string + - "null" + annotations_enabled: + type: + - boolean + - "null" + audio_enabled: + type: + - boolean + - "null" + data_name: + type: + - string + - "null" + default_previous_value: + type: + - boolean + - "null" + default_value: + type: + - string + - "null" + deidentification_enabled: + type: + - boolean + - "null" + disabled: + type: + - boolean + - "null" + hidden: + type: + - boolean + - "null" + key: + type: + - string + - "null" + label: + type: + - string + - "null" + latlongstamp_enabled: + type: + - boolean + - "null" + negative: + type: + - object + - "null" + properties: + label: + type: + - string + - "null" + value: + type: + - string + - "null" + neutral: + type: + - object + - "null" + properties: + label: + type: + - string + - "null" + value: + type: + - string + - "null" + neutral_enabled: + type: + - boolean + - "null" + numeric: + type: + - boolean + - "null" + positive: + type: + - object + - "null" + properties: + label: + type: + - string + - "null" + value: + type: + - string + - "null" + required: + type: + - boolean + - "null" + timestamp_enabled: + type: + - boolean + - "null" + track_enabled: + type: + - boolean + - "null" + visible_conditions_behavior: + type: + - string + - "null" + fastfill_audio_enabled: + type: + - boolean + - "null" + field_effects: + type: + - object + - "null" + geometry_required: + type: + - boolean + - "null" + geometry_types: + type: + - array + - "null" + items: + type: + - string + - "null" + hidden_on_dashboard: + type: + - boolean + - "null" + id: + type: string + name: + type: + - string + - "null" + projects_enabled: + type: + - boolean + - "null" + record_changed_at: + type: + - string + - "null" + record_count: + type: + - number + - "null" + record_title_key: + type: + - string + - "null" + report_templates: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + status: + type: + - string + - "null" + status_field: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + choices: + type: + - array + - "null" + data_name: + type: + - string + - "null" + default_previous_value: + type: + - boolean + - "null" + default_value: + type: + - string + - "null" + disabled: + type: + - boolean + - "null" + enabled: + type: + - boolean + - "null" + hidden: + type: + - boolean + - "null" + key: + type: + - string + - "null" + label: + type: + - string + - "null" + read_only: + type: + - boolean + - "null" + required: + type: + - boolean + - "null" + title_field_keys: + type: + - array + - "null" + items: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + required: + - id + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + access: + type: + - object + - "null" + properties: + allowed: + type: + - boolean + - "null" + completed_onboarding: + type: + - boolean + - "null" + contexts: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + api_token: + type: + - string + - "null" + has_ita_system_apps: + type: + - boolean + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + plan: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + activity_feed_enabled: + type: + - boolean + - "null" + api_access_enabled: + type: + - boolean + - "null" + attachments_enabled: + type: + - boolean + - "null" + audio_enabled: + type: + - boolean + - "null" + audit_logs_enabled: + type: + - boolean + - "null" + barcodes_enabled: + type: + - boolean + - "null" + base_price_in_cents: + type: + - number + - "null" + calculations_enabled: + type: + - boolean + - "null" + communities_enabled: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + custom_roles_enabled: + type: + - boolean + - "null" + data_event_inference_enabled: + type: + - boolean + - "null" + data_event_loadfile_enabled: + type: + - boolean + - "null" + data_event_recognizetext_enabled: + type: + - boolean + - "null" + data_pack_cost: + type: + - number + - "null" + data_pack_size: + type: + - number + - "null" + data_shares_enabled: + type: + - boolean + - "null" + data_shares_limit: + type: + - number + - "null" + developer_pack_cost: + type: + - number + - "null" + developer_pack_enabled: + type: + - boolean + - "null" + esri_enterprise_connection_enabled: + type: + - boolean + - "null" + export_changesets_enabled: + type: + - boolean + - "null" + export_formats: + type: + - array + - "null" + items: + type: + - string + - "null" + export_full_history_enabled: + type: + - boolean + - "null" + export_photos: + type: + - boolean + - "null" + export_reports_enabled: + type: + - boolean + - "null" + exports_enabled: + type: + - boolean + - "null" + external_contributions_enabled: + type: + - boolean + - "null" + flags: + type: + - object + - "null" + properties: + advanced_geometry_android: + type: + - boolean + - "null" + advanced_geometry_beta: + type: + - boolean + - "null" + advanced_geometry_enabled: + type: + - boolean + - "null" + advanced_geometry_ios: + type: + - boolean + - "null" + batch_pdf_export_enabled: + type: + - boolean + - "null" + bulk_records_delete_enabled: + type: + - boolean + - "null" + esri_enhanced: + type: + - boolean + - "null" + feature_service_layers_enabled: + type: + - boolean + - "null" + import_limit: + type: + - number + - "null" + map_engine: + type: + - string + - "null" + mobile_layer_picker: + type: + - boolean + - "null" + mobile_layer_picker_ga: + type: + - boolean + - "null" + mobile_offline_feature_services: + type: + - boolean + - "null" + non_blocking_sync_ga: + type: + - boolean + - "null" + offline_basemaps_beta: + type: + - boolean + - "null" + reporting_map_engine: + type: + - string + - "null" + suppress_repeatable_geometry: + type: + - boolean + - "null" + suppress_repeatable_geometry_ga: + type: + - boolean + - "null" + tracking_android_enabled: + type: + - boolean + - "null" + tracking_ios_enabled: + type: + - boolean + - "null" + tracking_ios_enabled_ga: + type: + - boolean + - "null" + web_map_engine: + type: + - string + - "null" + web_sketch_editor: + type: + - boolean + - "null" + form_scripts_enabled: + type: + - boolean + - "null" + id: + type: + - string + - "null" + imports_enabled: + type: + - boolean + - "null" + included_users: + type: + - number + - "null" + layers_enabled: + type: + - boolean + - "null" + maps_data_quota: + type: + - number + - "null" + media_data_quota: + type: + - number + - "null" + media_data_usage_includes_audio: + type: + - boolean + - "null" + media_data_usage_includes_photos: + type: + - boolean + - "null" + media_data_usage_includes_signatures: + type: + - boolean + - "null" + media_data_usage_includes_videos: + type: + - boolean + - "null" + name: + type: + - string + - "null" + photo_annotations_enabled: + type: + - boolean + - "null" + photo_deidentification_enabled: + type: + - boolean + - "null" + photo_recognition_enabled: + type: + - boolean + - "null" + photos_enabled: + type: + - boolean + - "null" + price_in_cents: + type: + - number + - "null" + public_color: + type: + - string + - "null" + public_slug: + type: + - string + - "null" + query_api_enabled: + type: + - boolean + - "null" + record_links_enabled: + type: + - boolean + - "null" + record_merging_enabled: + type: + - boolean + - "null" + reference_files_enabled: + type: + - boolean + - "null" + repeatables_enabled: + type: + - boolean + - "null" + report_watermark_enabled: + type: + - boolean + - "null" + reporting_advanced_enabled: + type: + - boolean + - "null" + reporting_basic_enabled: + type: + - boolean + - "null" + saml_enabled: + type: + - boolean + - "null" + shared_views_enabled: + type: + - boolean + - "null" + signatures_enabled: + type: + - boolean + - "null" + slug: + type: + - string + - "null" + sync_draft_records_enabled: + type: + - boolean + - "null" + updated_at: + type: + - string + - "null" + versioning_enabled: + type: + - boolean + - "null" + videos_enabled: + type: + - boolean + - "null" + view_history_enabled: + type: + - boolean + - "null" + webhooks_enabled: + type: + - boolean + - "null" + workflow_integration_daily_limit: + type: + - number + - "null" + workflows_enabled: + type: + - boolean + - "null" + role: + type: + - object + - "null" + properties: + can_access_issues_and_tasks: + type: + - boolean + - "null" + can_assign_records: + type: + - boolean + - "null" + can_bulk_delete_records: + type: + - boolean + - "null" + can_bulk_update_records: + type: + - boolean + - "null" + can_change_project: + type: + - boolean + - "null" + can_change_status: + type: + - boolean + - "null" + can_configure_issues_and_tasks: + type: + - boolean + - "null" + can_create_records: + type: + - boolean + - "null" + can_delete_records: + type: + - boolean + - "null" + can_export_records: + type: + - boolean + - "null" + can_import_records: + type: + - boolean + - "null" + can_manage_apps: + type: + - boolean + - "null" + can_manage_authorizations: + type: + - boolean + - "null" + can_manage_choice_lists: + type: + - boolean + - "null" + can_manage_classification_sets: + type: + - boolean + - "null" + can_manage_groups: + type: + - boolean + - "null" + can_manage_layers: + type: + - boolean + - "null" + can_manage_members: + type: + - boolean + - "null" + can_manage_projects: + type: + - boolean + - "null" + can_manage_roles: + type: + - boolean + - "null" + can_manage_subscription: + type: + - boolean + - "null" + can_run_reports: + type: + - boolean + - "null" + can_update_organization: + type: + - boolean + - "null" + can_update_records: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + id: + type: + - string + - "null" + is_default: + type: + - boolean + - "null" + is_system: + type: + - boolean + - "null" + name: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + current_organization: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + id: + type: string + image_large: + type: + - string + - "null" + image_small: + type: + - string + - "null" + last_name: + type: + - string + - "null" + managed: + type: + - boolean + - "null" + phone_number: + type: + - string + - "null" + required: + - id + workflows: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + event_type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + object_resource_id: + type: + - string + - "null" + object_type: + type: + - string + - "null" + run_for_bulk_actions: + type: + - boolean + - "null" + steps: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + arguments: + type: + - object + - "null" + properties: + auth: + type: + - object + - "null" + properties: + password: + type: + - string + - "null" + username: + type: + - string + - "null" + expression: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + combinator: + type: + - string + - "null" + field: + type: + - string + - "null" + operator: + type: + - string + - "null" + value: + type: + - string + - "null" + headers: + type: + - object + - "null" + properties: + "": + type: + - string + - "null" + method: + type: + - string + - "null" + parameters: + type: + - object + - "null" + properties: + "": + type: + - string + - "null" + payload: + type: + - string + - "null" + url: + type: + - string + - "null" + id: + type: + - string + - "null" + initial: + type: + - boolean + - "null" + next_steps: + type: + - array + - "null" + items: + type: + - string + - "null" + step_type: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + webhooks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + run_for_bulk_actions: + type: + - boolean + - "null" + updated_at: + type: + - string + - "null" + url: + type: + - string + - "null" + required: + - id + changesets: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + properties: + application: + type: + - string + - "null" + browser: + type: + - string + - "null" + browser_version: + type: + - string + - "null" + platform: + type: + - string + - "null" + platform_version: + type: + - string + - "null" + user_agent: + type: + - string + - "null" + closed_at: + type: + - string + - "null" + closed_by: + type: + - string + - "null" + closed_by_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + form_id: + type: + - string + - "null" + gravatar_image_url: + type: + - string + - "null" + id: + type: string + image_large: + type: + - string + - "null" + image_small: + type: + - string + - "null" + max_lat: + type: + - number + - "null" + max_lon: + type: + - number + - "null" + min_lat: + type: + - number + - "null" + min_lon: + type: + - number + - "null" + number_created: + type: + - number + - "null" + number_deleted: + type: + - number + - "null" + number_of_changes: + type: + - number + - "null" + number_updated: + type: + - number + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + required: + - id + records: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - number + - "null" + client_created_at: + type: + - string + - "null" + client_updated_at: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + created_duration: + type: + - number + - "null" + edited_duration: + type: + - number + - "null" + form_id: + type: + - string + - "null" + form_values: + type: + - object + - "null" + properties: + "6281": + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + audio_id: + type: + - string + - "null" + "0600": + type: + - string + - "null" + 2f60: + type: + - object + - "null" + properties: + signature_id: + type: + - string + - "null" + timestamp: + type: + - string + - "null" + 2fcc: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + video_id: + type: + - string + - "null" + 5d00: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + photo_id: + type: + - string + - "null" + 6c2f: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attachment_id: + type: + - string + - "null" + name: + type: + - string + - "null" + 7da2: + type: + - string + - "null" + d630: + type: + - string + - "null" + geometry: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + coordinates: + type: + - array + - "null" + items: + type: + - number + - "null" + id: + type: string + latitude: + type: + - number + - "null" + longitude: + type: + - number + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + updated_duration: + type: + - number + - "null" + required: + - id + signatures: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + access_key: + type: + - string + - "null" + content_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + file_size: + type: + - number + - "null" + form_id: + type: + - string + - "null" + processed: + type: + - boolean + - "null" + record_id: + type: string + stored: + type: + - boolean + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + uploaded: + type: + - boolean + - "null" + url: + type: + - string + - "null" + required: + - record_id + projects: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + created_at: + type: + - string + - "null" + customer: + type: + - string + - "null" + external_job_id: + type: + - string + - "null" + form_count: + type: + - number + - "null" + id: + type: string + name: + type: + - string + - "null" + record_count: + type: + - number + - "null" + status: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + required: + - id + layers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + origin: + type: + - string + - "null" + source: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + required: + - id + classification_sets: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - number + - "null" + description: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + id: + type: string + items: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + label: + type: + - string + - "null" + value: + type: + - string + - "null" + name: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + required: + - id + choice_lists: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - number + - "null" + description: + type: + - string + - "null" + choices: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + label: + type: + - string + - "null" + value: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + required: + - id + groups: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: string + is_managed: + type: + - boolean + - "null" + name: + type: + - string + - "null" + required: + - id + memberships: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + gravatar_image_url: + type: + - string + - "null" + id: + type: string + image_large: + type: + - string + - "null" + image_small: + type: + - string + - "null" + last_name: + type: + - string + - "null" + last_sign_in_at: + type: + - string + - "null" + role_id: + type: + - string + - "null" + role_name: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + user: + type: + - string + - "null" + user_id: + type: + - string + - "null" + user_type: + type: + - string + - "null" + required: + - id + roles: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + can_access_issues_and_tasks: + type: + - boolean + - "null" + can_assign_records: + type: + - boolean + - "null" + can_bulk_delete_records: + type: + - boolean + - "null" + can_bulk_update_records: + type: + - boolean + - "null" + can_change_project: + type: + - boolean + - "null" + can_change_status: + type: + - boolean + - "null" + can_configure_issues_and_tasks: + type: + - boolean + - "null" + can_create_records: + type: + - boolean + - "null" + can_delete_records: + type: + - boolean + - "null" + can_export_records: + type: + - boolean + - "null" + can_import_records: + type: + - boolean + - "null" + can_manage_apps: + type: + - boolean + - "null" + can_manage_authorizations: + type: + - boolean + - "null" + can_manage_choice_lists: + type: + - boolean + - "null" + can_manage_classification_sets: + type: + - boolean + - "null" + can_manage_groups: + type: + - boolean + - "null" + can_manage_layers: + type: + - boolean + - "null" + can_manage_members: + type: + - boolean + - "null" + can_manage_projects: + type: + - boolean + - "null" + can_manage_roles: + type: + - boolean + - "null" + can_manage_subscription: + type: + - boolean + - "null" + can_run_reports: + type: + - boolean + - "null" + can_update_organization: + type: + - boolean + - "null" + can_update_records: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + id: + type: string + is_default: + type: + - boolean + - "null" + is_system: + type: + - boolean + - "null" + name: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + required: + - id + authorizations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + id: + type: string + last_ip_address: + type: + - string + - "null" + last_used_at: + type: + - string + - "null" + last_user_agent: + type: + - string + - "null" + note: + type: + - string + - "null" + token_last_8: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + user_id: + type: + - string + - "null" + required: + - id + photos: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + access_key: + type: + - string + - "null" + content_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + file_size: + type: + - number + - "null" + form_id: + type: + - string + - "null" + latitude: + type: + - number + - "null" + longitude: + type: + - number + - "null" + processed: + type: + - boolean + - "null" + record_id: + type: string + stored: + type: + - boolean + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + uploaded: + type: + - boolean + - "null" + url: + type: + - string + - "null" + required: + - record_id + audio: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + access_key: + type: + - string + - "null" + content_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + file_size: + type: + - number + - "null" + form_id: + type: + - string + - "null" + processed: + type: + - boolean + - "null" + record_id: + type: string + status: + type: + - string + - "null" + stored: + type: + - boolean + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + uploaded: + type: + - boolean + - "null" + url: + type: + - string + - "null" + required: + - record_id + videos: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + access_key: + type: + - string + - "null" + content_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + file_size: + type: + - number + - "null" + form_id: + type: + - string + - "null" + processed: + type: + - boolean + - "null" + record_id: + type: string + status: + type: + - string + - "null" + stored: + type: + - boolean + - "null" + updated_at: + type: + - string + - "null" + updated_by: + type: + - string + - "null" + updated_by_id: + type: + - string + - "null" + uploaded: + type: + - boolean + - "null" + url: + type: + - string + - "null" + required: + - record_id diff --git a/airbyte-integrations/connectors/source-fulcrum/metadata.yaml b/airbyte-integrations/connectors/source-fulcrum/metadata.yaml new file mode 100644 index 000000000000..623bc23647df --- /dev/null +++ b/airbyte-integrations/connectors/source-fulcrum/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.fulcrumapp.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-fulcrum + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 1028d4dc-005b-484b-9164-5a81e0dbac19 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-fulcrum + githubIssueLabel: source-fulcrum + icon: icon.svg + license: MIT + name: Fulcrum + releaseDate: 2024-10-21 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/fulcrum + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/fulcrum.md b/docs/integrations/sources/fulcrum.md new file mode 100644 index 000000000000..8eb3040431db --- /dev/null +++ b/docs/integrations/sources/fulcrum.md @@ -0,0 +1,41 @@ +# Fulcrum +Airbyte connector for Fulcrum would enable seamless data extraction from the Fulcrum platform, allowing users to sync survey and field data with their data warehouses or other applications. This connector would facilitate automated, scheduled transfers of structured data, improving analytics, reporting, and decision-making processes by integrating Fulcrum's powerful field data collection capabilities with a broader data ecosystem. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. API key to use. Find it at https://web.fulcrumapp.com/settings/api | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| forms | id | DefaultPaginator | ✅ | ❌ | +| users | id | DefaultPaginator | ✅ | ❌ | +| workflows | | DefaultPaginator | ✅ | ❌ | +| webhooks | id | DefaultPaginator | ✅ | ❌ | +| changesets | id | DefaultPaginator | ✅ | ❌ | +| records | id | DefaultPaginator | ✅ | ❌ | +| signatures | record_id | DefaultPaginator | ✅ | ❌ | +| projects | id | DefaultPaginator | ✅ | ❌ | +| layers | id | DefaultPaginator | ✅ | ❌ | +| classification_sets | id | DefaultPaginator | ✅ | ❌ | +| choice_lists | id | DefaultPaginator | ✅ | ❌ | +| groups | id | DefaultPaginator | ✅ | ❌ | +| memberships | id | DefaultPaginator | ✅ | ❌ | +| roles | id | DefaultPaginator | ✅ | ❌ | +| authorizations | id | DefaultPaginator | ✅ | ❌ | +| photos | record_id | DefaultPaginator | ✅ | ❌ | +| audio | record_id | DefaultPaginator | ✅ | ❌ | +| videos | record_id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +

+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From 72dd3e84e1c243a87814ae833a13e97894a4d8b0 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Fri, 1 Nov 2024 01:29:53 +0530 Subject: [PATCH 509/808] source-vercel contribution from bishalbera (#47259) Co-authored-by: Marcos Marx --- .../connectors/source-vercel/README.md | 33 + .../source-vercel/acceptance-test-config.yml | 17 + .../connectors/source-vercel/icon.svg | 2 + .../connectors/source-vercel/manifest.yaml | 1884 +++++++++++++++++ .../connectors/source-vercel/metadata.yaml | 35 + docs/integrations/sources/vercel.md | 33 + 6 files changed, 2004 insertions(+) create mode 100644 airbyte-integrations/connectors/source-vercel/README.md create mode 100644 airbyte-integrations/connectors/source-vercel/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-vercel/icon.svg create mode 100644 airbyte-integrations/connectors/source-vercel/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-vercel/metadata.yaml create mode 100644 docs/integrations/sources/vercel.md diff --git a/airbyte-integrations/connectors/source-vercel/README.md b/airbyte-integrations/connectors/source-vercel/README.md new file mode 100644 index 000000000000..5c83d56b87d9 --- /dev/null +++ b/airbyte-integrations/connectors/source-vercel/README.md @@ -0,0 +1,33 @@ +# Vercel +This directory contains the manifest-only connector for `source-vercel`. + + Vercel connector enables seamless data sync between Vercel projects and various destinations. This integration simplifies real-time deployments, analytics, and automated workflows by bridging data from Vercel to your destination. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-vercel:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-vercel build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-vercel test +``` + diff --git a/airbyte-integrations/connectors/source-vercel/acceptance-test-config.yml b/airbyte-integrations/connectors/source-vercel/acceptance-test-config.yml new file mode 100644 index 000000000000..071483f3aacc --- /dev/null +++ b/airbyte-integrations/connectors/source-vercel/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-vercel:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-vercel/icon.svg b/airbyte-integrations/connectors/source-vercel/icon.svg new file mode 100644 index 000000000000..89312dceed80 --- /dev/null +++ b/airbyte-integrations/connectors/source-vercel/icon.svg @@ -0,0 +1,2 @@ + + diff --git a/airbyte-integrations/connectors/source-vercel/manifest.yaml b/airbyte-integrations/connectors/source-vercel/manifest.yaml new file mode 100644 index 000000000000..c7d6b17b6d9e --- /dev/null +++ b/airbyte-integrations/connectors/source-vercel/manifest.yaml @@ -0,0 +1,1884 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: " Vercel connector enables seamless data sync between Vercel projects and various destinations. This integration simplifies real-time deployments, analytics, and automated workflows by bridging data from Vercel to your destination." + +check: + type: CheckStream + stream_names: + - projects + +definitions: + streams: + projects: + type: DeclarativeStream + name: projects + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v9/projects + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - projects + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: until + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('pagination', {}).get('next') }}" + stop_condition: "{{ response.get('pagination', {}).get('next') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/projects" + teams: + type: DeclarativeStream + name: teams + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/teams + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - teams + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: until + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('pagination', {}).get('next') }}" + stop_condition: "{{ response.get('pagination', {}).get('next') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/teams" + user: + type: DeclarativeStream + name: user + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/user + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - user + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: until + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('pagination', {}).get('next') }}" + stop_condition: "{{ response.get('pagination', {}).get('next') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/user" + deployments: + type: DeclarativeStream + name: deployments + primary_key: + - uid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v6/deployments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - deployments + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: until + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('pagination', {}).get('next') }}" + stop_condition: "{{ response.get('pagination', {}).get('next') is none }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: createdAt + cursor_datetime_formats: + - "%ms" + datetime_format: "%ms" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: since + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/deployments" + environments: + type: DeclarativeStream + name: environments + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v9/projects/{{ stream_partition.project }}/env + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - envs + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: until + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('pagination', {}).get('next') }}" + stop_condition: "{{ response.get('pagination', {}).get('next') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: project + stream: + $ref: "#/definitions/streams/projects" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/environments" + auth_tokens: + type: DeclarativeStream + name: auth_tokens + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v5/user/tokens + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - tokens + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: until + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('pagination', {}).get('next') }}" + stop_condition: "{{ response.get('pagination', {}).get('next') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/auth_tokens" + aliases: + type: DeclarativeStream + name: aliases + primary_key: + - uid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v4/aliases + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - aliases + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: until + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('pagination', {}).get('next') }}" + stop_condition: "{{ response.get('pagination', {}).get('next') is none }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updatedAt + cursor_datetime_formats: + - "%ms" + datetime_format: "%ms" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: since + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/aliases" + deployment_events: + type: DeclarativeStream + name: deployment_events + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v3/deployments/{{ stream_partition.deployment }}/events + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: until + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('pagination', {}).get('next') }}" + stop_condition: "{{ response.get('pagination', {}).get('next') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: uid + partition_field: deployment + stream: + $ref: "#/definitions/streams/deployments" + incremental_dependency: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/deployment_events" + teams_member: + type: DeclarativeStream + name: teams_member + primary_key: + - uid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/teams/{{stream_slice.team_id}}/members + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - members + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: until + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('pagination', {}).get('next') }}" + stop_condition: "{{ response.get('pagination', {}).get('next') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: team_id + stream: + $ref: "#/definitions/streams/teams" + transformations: + - type: AddFields + fields: + - path: + - team_id + value: "{{ stream_slice.team_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/teams_member" + base_requester: + type: HttpRequester + url_base: https://api.vercel.com + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"access_token\"] }}" + +streams: + - $ref: "#/definitions/streams/projects" + - $ref: "#/definitions/streams/teams" + - $ref: "#/definitions/streams/user" + - $ref: "#/definitions/streams/deployments" + - $ref: "#/definitions/streams/environments" + - $ref: "#/definitions/streams/auth_tokens" + - $ref: "#/definitions/streams/aliases" + - $ref: "#/definitions/streams/deployment_events" + - $ref: "#/definitions/streams/teams_member" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - access_token + - start_date + properties: + access_token: + type: string + description: >- + Access token to authenticate with the Vercel API. Create and manage + tokens in your Vercel account settings. + name: access_token + order: 0 + title: Access Token + airbyte_secret: true + start_date: + type: string + order: 1 + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + additionalProperties: true + +metadata: + autoImportSchema: + projects: true + teams: true + user: true + deployments: true + environments: true + auth_tokens: true + aliases: true + deployment_events: true + teams_member: true + testedStreams: + projects: + streamHash: 08d4d0f635315501525b1c7d058f34870a134971 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + teams: + streamHash: f6df1fdcb85c0e373936f42ee426fb398d4d3c52 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + user: + streamHash: fe64729451ad60d075bea483cc3928f4aa28b78e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + deployments: + streamHash: a3e87fc94c169653383c09af49917e74853e8475 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + environments: + streamHash: c6f89da72bc1d7d4b6c75a6d4c7fe32b83477574 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + auth_tokens: + streamHash: 8aff4e26dd5e62214e25d42b7883b81e4396da8a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + aliases: + streamHash: a0c3ba26db1e77b73f5ca19163b0094560ea58b5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + deployment_events: + streamHash: c98259fe5ba16f73291e8ed24022a5ceb9c42bd7 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + teams_member: + streamHash: b674b20a696a1b8e71ae80a30373b3827a07e66e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://vercel.com/docs/rest-api + +schemas: + projects: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accountId: + type: + - string + - "null" + autoAssignCustomDomains: + type: + - boolean + - "null" + autoAssignCustomDomainsUpdatedBy: + type: + - string + - "null" + autoExposeSystemEnvs: + type: + - boolean + - "null" + createdAt: + type: + - number + - "null" + crons: + type: + - object + - "null" + properties: + definitions: + type: + - array + - "null" + deploymentId: + type: + - string + - "null" + enabledAt: + type: + - number + - "null" + updatedAt: + type: + - number + - "null" + directoryListing: + type: + - boolean + - "null" + env: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + comment: + type: + - string + - "null" + createdAt: + type: + - number + - "null" + createdBy: + type: + - string + - "null" + id: + type: + - string + - "null" + key: + type: + - string + - "null" + target: + type: + - array + - "null" + items: + type: + - string + - "null" + updatedAt: + type: + - number + - "null" + value: + type: + - string + - "null" + framework: + type: + - string + - "null" + gitComments: + type: + - object + - "null" + properties: + onCommit: + type: + - boolean + - "null" + onPullRequest: + type: + - boolean + - "null" + gitForkProtection: + type: + - boolean + - "null" + gitLFS: + type: + - boolean + - "null" + id: + type: string + latestDeployments: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + alias: + type: + - array + - "null" + items: + type: + - string + - "null" + aliasAssigned: + type: + - number + - "null" + automaticAliases: + type: + - array + - "null" + items: + type: + - string + - "null" + buildingAt: + type: + - number + - "null" + builds: + type: + - array + - "null" + createdAt: + type: + - number + - "null" + createdIn: + type: + - string + - "null" + creator: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + githubLogin: + type: + - string + - "null" + uid: + type: + - string + - "null" + username: + type: + - string + - "null" + deploymentHostname: + type: + - string + - "null" + forced: + type: + - boolean + - "null" + id: + type: + - string + - "null" + meta: + type: + - object + - "null" + properties: + branchAlias: + type: + - string + - "null" + githubCommitAuthorLogin: + type: + - string + - "null" + githubCommitAuthorName: + type: + - string + - "null" + githubCommitMessage: + type: + - string + - "null" + githubCommitOrg: + type: + - string + - "null" + githubCommitRef: + type: + - string + - "null" + githubCommitRepo: + type: + - string + - "null" + githubCommitRepoId: + type: + - string + - "null" + githubCommitSha: + type: + - string + - "null" + githubDeployment: + type: + - string + - "null" + githubOrg: + type: + - string + - "null" + githubRepo: + type: + - string + - "null" + githubRepoId: + type: + - string + - "null" + githubRepoOwnerType: + type: + - string + - "null" + githubRepoVisibility: + type: + - string + - "null" + name: + type: + - string + - "null" + plan: + type: + - string + - "null" + previewCommentsEnabled: + type: + - boolean + - "null" + private: + type: + - boolean + - "null" + readyAt: + type: + - number + - "null" + readyState: + type: + - string + - "null" + readySubstate: + type: + - string + - "null" + target: + type: + - string + - "null" + teamId: + type: + - string + - "null" + url: + type: + - string + - "null" + userId: + type: + - string + - "null" + withCache: + type: + - boolean + - "null" + link: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + createdAt: + type: + - number + - "null" + deployHooks: + type: + - array + - "null" + gitCredentialId: + type: + - string + - "null" + org: + type: + - string + - "null" + productionBranch: + type: + - string + - "null" + repo: + type: + - string + - "null" + repoId: + type: + - number + - "null" + repoOwnerId: + type: + - number + - "null" + sourceless: + type: + - boolean + - "null" + updatedAt: + type: + - number + - "null" + live: + type: + - boolean + - "null" + name: + type: + - string + - "null" + nodeVersion: + type: + - string + - "null" + resourceConfig: + type: + - object + - "null" + properties: + functionDefaultMemoryType: + type: + - string + - "null" + serverlessFunctionRegion: + type: + - string + - "null" + sourceFilesOutsideRootDirectory: + type: + - boolean + - "null" + speedInsights: + type: + - object + - "null" + properties: + hasData: + type: + - boolean + - "null" + id: + type: + - string + - "null" + ssoProtection: + type: + - object + - "null" + properties: + deploymentType: + type: + - string + - "null" + targets: + type: + - object + - "null" + properties: + production: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + alias: + type: + - array + - "null" + items: + type: + - string + - "null" + aliasAssigned: + type: + - number + - "null" + automaticAliases: + type: + - array + - "null" + items: + type: + - string + - "null" + buildingAt: + type: + - number + - "null" + builds: + type: + - array + - "null" + createdAt: + type: + - number + - "null" + createdIn: + type: + - string + - "null" + creator: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + githubLogin: + type: + - string + - "null" + uid: + type: + - string + - "null" + username: + type: + - string + - "null" + deploymentHostname: + type: + - string + - "null" + forced: + type: + - boolean + - "null" + id: + type: + - string + - "null" + meta: + type: + - object + - "null" + properties: + branchAlias: + type: + - string + - "null" + githubCommitAuthorLogin: + type: + - string + - "null" + githubCommitAuthorName: + type: + - string + - "null" + githubCommitMessage: + type: + - string + - "null" + githubCommitOrg: + type: + - string + - "null" + githubCommitRef: + type: + - string + - "null" + githubCommitRepo: + type: + - string + - "null" + githubCommitRepoId: + type: + - string + - "null" + githubCommitSha: + type: + - string + - "null" + githubDeployment: + type: + - string + - "null" + githubOrg: + type: + - string + - "null" + githubRepo: + type: + - string + - "null" + githubRepoId: + type: + - string + - "null" + githubRepoOwnerType: + type: + - string + - "null" + githubRepoVisibility: + type: + - string + - "null" + name: + type: + - string + - "null" + plan: + type: + - string + - "null" + previewCommentsEnabled: + type: + - boolean + - "null" + private: + type: + - boolean + - "null" + readyAt: + type: + - number + - "null" + readyState: + type: + - string + - "null" + readySubstate: + type: + - string + - "null" + target: + type: + - string + - "null" + teamId: + type: + - string + - "null" + url: + type: + - string + - "null" + userId: + type: + - string + - "null" + withCache: + type: + - boolean + - "null" + updatedAt: + type: + - number + - "null" + webAnalytics: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + required: + - id + teams: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + billing: + type: + - object + - "null" + properties: + billingVersion: + type: + - number + - "null" + currency: + type: + - string + - "null" + email: + type: + - string + - "null" + name: + type: + - string + - "null" + plan: + type: + - string + - "null" + planIteration: + type: + - string + - "null" + platform: + type: + - string + - "null" + status: + type: + - string + - "null" + created: + type: + - string + - "null" + createdAt: + type: + - number + - "null" + createdDirectToHobby: + type: + - boolean + - "null" + creatorId: + type: + - string + - "null" + enabledInvoiceItems: + type: + - object + - "null" + properties: + vercelMarketplace: + type: + - object + - "null" + properties: + enabled: + type: + - boolean + - "null" + featureBlocks: + type: + - object + - "null" + id: + type: string + isMigratingToSensitiveEnvVars: + type: + - boolean + - "null" + membership: + type: + - object + - "null" + properties: + confirmed: + type: + - boolean + - "null" + created: + type: + - number + - "null" + createdAt: + type: + - number + - "null" + role: + type: + - string + - "null" + teamId: + type: + - string + - "null" + updatedAt: + type: + - number + - "null" + name: + type: + - string + - "null" + profiles: + type: + - array + - "null" + remoteCaching: + type: + - object + - "null" + properties: + enabled: + type: + - boolean + - "null" + resourceConfig: + type: + - object + - "null" + properties: + concurrentBuilds: + type: + - number + - "null" + sensitiveEnvironmentVariablePolicy: + type: + - string + - "null" + slug: + type: + - string + - "null" + spaces: + type: + - object + - "null" + properties: + enabled: + type: + - boolean + - "null" + stagingPrefix: + type: + - string + - "null" + updatedAt: + type: + - number + - "null" + required: + - id + user: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - string + - "null" + billing: + type: + - object + - "null" + properties: + currency: + type: + - string + - "null" + plan: + type: + - string + - "null" + platform: + type: + - string + - "null" + status: + type: + - string + - "null" + createdAt: + type: + - number + - "null" + dataCache: + type: + - object + - "null" + properties: + excessBillingEnabled: + type: + - boolean + - "null" + defaultTeamId: + type: + - string + - "null" + dismissedToasts: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + dismissals: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + createdAt: + type: + - number + - "null" + scopeId: + type: + - string + - "null" + name: + type: + - string + - "null" + email: + type: + - string + - "null" + featureBlocks: + type: + - object + - "null" + hasTrialAvailable: + type: + - boolean + - "null" + id: + type: + - string + - "null" + importFlowGitNamespaceId: + type: + - number + - "null" + importFlowGitProvider: + type: + - string + - "null" + remoteCaching: + type: + - object + - "null" + properties: + enabled: + type: + - boolean + - "null" + resourceConfig: + type: + - object + - "null" + properties: + concurrentBuilds: + type: + - number + - "null" + stagingPrefix: + type: + - string + - "null" + username: + type: + - string + - "null" + deployments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + aliasAssigned: + type: + - number + - "null" + buildingAt: + type: + - number + - "null" + created: + type: + - number + - "null" + createdAt: + type: number + creator: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + githubLogin: + type: + - string + - "null" + uid: + type: + - string + - "null" + username: + type: + - string + - "null" + inspectorUrl: + type: + - string + - "null" + isRollbackCandidate: + type: + - boolean + - "null" + meta: + type: + - object + - "null" + properties: + action: + type: + - string + - "null" + branchAlias: + type: + - string + - "null" + githubCommitAuthorLogin: + type: + - string + - "null" + githubCommitAuthorName: + type: + - string + - "null" + githubCommitMessage: + type: + - string + - "null" + githubCommitOrg: + type: + - string + - "null" + githubCommitRef: + type: + - string + - "null" + githubCommitRepo: + type: + - string + - "null" + githubCommitRepoId: + type: + - string + - "null" + githubCommitSha: + type: + - string + - "null" + githubDeployment: + type: + - string + - "null" + githubOrg: + type: + - string + - "null" + githubRepo: + type: + - string + - "null" + githubRepoId: + type: + - string + - "null" + githubRepoOwnerType: + type: + - string + - "null" + githubRepoVisibility: + type: + - string + - "null" + originalDeploymentId: + type: + - string + - "null" + name: + type: + - string + - "null" + projectSettings: + type: + - object + - "null" + properties: {} + ready: + type: + - number + - "null" + readyState: + type: + - string + - "null" + readySubstate: + type: + - string + - "null" + source: + type: + - string + - "null" + state: + type: + - string + - "null" + target: + type: + - string + - "null" + uid: + type: string + url: + type: + - string + - "null" + required: + - uid + - createdAt + environments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + comment: + type: + - string + - "null" + createdAt: + type: + - number + - "null" + createdBy: + type: + - string + - "null" + decrypted: + type: + - boolean + - "null" + id: + type: + - string + - "null" + key: + type: + - string + - "null" + lastEditedByDisplayName: + type: + - string + - "null" + target: + type: + - array + - "null" + items: + type: + - string + - "null" + updatedAt: + type: + - number + - "null" + value: + type: + - string + - "null" + vsmValue: + type: + - string + - "null" + auth_tokens: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + activeAt: + type: + - number + - "null" + createdAt: + type: + - number + - "null" + expiresAt: + type: + - number + - "null" + id: + type: string + name: + type: + - string + - "null" + origin: + type: + - string + - "null" + scopes: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + createdAt: + type: + - number + - "null" + expiresAt: + type: + - number + - "null" + origin: + type: + - string + - "null" + teamId: + type: + - string + - "null" + teamId: + type: + - string + - "null" + required: + - id + aliases: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + alias: + type: + - string + - "null" + created: + type: + - string + - "null" + createdAt: + type: + - number + - "null" + creator: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + uid: + type: + - string + - "null" + username: + type: + - string + - "null" + deployment: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + url: + type: + - string + - "null" + deploymentId: + type: + - string + - "null" + projectId: + type: + - string + - "null" + uid: + type: string + updatedAt: + type: number + required: + - uid + - updatedAt + deployment_events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + created: + type: + - number + - "null" + date: + type: + - number + - "null" + deploymentId: + type: + - string + - "null" + id: + type: string + info: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + entrypoint: + type: + - string + - "null" + name: + type: + - string + - "null" + level: + type: + - string + - "null" + serial: + type: + - string + - "null" + text: + type: + - string + - "null" + required: + - id + teams_member: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accessGroups: + type: + - array + - "null" + confirmed: + type: + - boolean + - "null" + createdAt: + type: + - number + - "null" + email: + type: + - string + - "null" + github: + type: + - object + - "null" + properties: + login: + type: + - string + - "null" + role: + type: + - string + - "null" + team_id: + type: + - string + - "null" + uid: + type: string + username: + type: + - string + - "null" + required: + - uid diff --git a/airbyte-integrations/connectors/source-vercel/metadata.yaml b/airbyte-integrations/connectors/source-vercel/metadata.yaml new file mode 100644 index 000000000000..32e2b5794aeb --- /dev/null +++ b/airbyte-integrations/connectors/source-vercel/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.vercel.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-vercel + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 7de74599-7bbe-4610-8635-00c76885e51d + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-vercel + githubIssueLabel: source-vercel + icon: icon.svg + license: MIT + name: Vercel + releaseDate: 2024-10-22 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/vercel + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/vercel.md b/docs/integrations/sources/vercel.md new file mode 100644 index 000000000000..914c352d1ea7 --- /dev/null +++ b/docs/integrations/sources/vercel.md @@ -0,0 +1,33 @@ +# Vercel + Vercel connector enables seamless data sync between Vercel projects and various destinations. This integration simplifies real-time deployments, analytics, and automated workflows by bridging data from Vercel to your destination. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `start_date` | `string` | Start date. | | +| `access_token` | `string` | Access Token. Access token to authenticate with the Vercel API. Create and manage tokens in your Vercel account settings. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| projects | id | DefaultPaginator | ✅ | ❌ | +| teams | id | DefaultPaginator | ✅ | ❌ | +| user | | DefaultPaginator | ✅ | ❌ | +| deployments | uid | DefaultPaginator | ✅ | ✅ | +| checks | | DefaultPaginator | ✅ | ❌ | +| environments | | DefaultPaginator | ✅ | ❌ | +| auth_tokens | id | DefaultPaginator | ✅ | ❌ | +| aliases | uid | DefaultPaginator | ✅ | ✅ | +| deployment_events | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-22 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From a17fe5c6eda2023962779dc47472fdc90036def1 Mon Sep 17 00:00:00 2001 From: Brian Lai <51336873+brianjlai@users.noreply.github.com> Date: Thu, 31 Oct 2024 16:04:11 -0400 Subject: [PATCH 510/808] =?UTF-8?q?=E2=9C=A8=20[source-sentry]=20Allow=20l?= =?UTF-8?q?ow-code=20incremental=20streams=20to=20run=20within=20the=20Con?= =?UTF-8?q?current=20CDK=20framework=20(#47988)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-sentry/acceptance-test-config.yml | 2 +- .../connectors/source-sentry/metadata.yaml | 4 +- .../connectors/source-sentry/poetry.lock | 1591 +++++++++++++---- .../connectors/source-sentry/pyproject.toml | 6 +- .../source-sentry/source_sentry/manifest.yaml | 15 +- .../source-sentry/source_sentry/run.py | 44 +- .../source-sentry/source_sentry/source.py | 8 +- .../integration/test_events_stream.py | 17 +- .../integration/test_issues_stream.py | 21 +- .../source-sentry/unit_tests/test_source.py | 13 +- .../source-sentry/unit_tests/test_streams.py | 10 +- docs/integrations/sources/sentry.md | 57 +- 12 files changed, 1397 insertions(+), 391 deletions(-) diff --git a/airbyte-integrations/connectors/source-sentry/acceptance-test-config.yml b/airbyte-integrations/connectors/source-sentry/acceptance-test-config.yml index aa5b998b91cb..1f9a05396f96 100644 --- a/airbyte-integrations/connectors/source-sentry/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-sentry/acceptance-test-config.yml @@ -32,7 +32,7 @@ acceptance_tests: skip_comprehensive_incremental_tests: true configured_catalog_path: integration_tests/configured_catalog.json future_state: - future_state_path: integration_tests/abnormal_state.json + bypass_reason: "Concurrent incremental streams emit a state with the most recent record or the lower boundary instead of the incoming abnormal state value" missing_streams: - name: issues bypass_reason: "Project issues are not being returned by the Sentry API." diff --git a/airbyte-integrations/connectors/source-sentry/metadata.yaml b/airbyte-integrations/connectors/source-sentry/metadata.yaml index 3c8962d4a96e..35c1e1961fec 100644 --- a/airbyte-integrations/connectors/source-sentry/metadata.yaml +++ b/airbyte-integrations/connectors/source-sentry/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - "*" connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.2@sha256:57703de3b4c4204bd68a7b13c9300f8e03c0189bffddaffc796f1da25d2dbea0 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorSubtype: api connectorType: source definitionId: cdaf146a-9b75-49fd-9dd2-9d64a0bb4781 - dockerImageTag: 0.5.3 + dockerImageTag: 0.6.0 dockerRepository: airbyte/source-sentry documentationUrl: https://docs.airbyte.com/integrations/sources/sentry githubIssueLabel: source-sentry diff --git a/airbyte-integrations/connectors/source-sentry/poetry.lock b/airbyte-integrations/connectors/source-sentry/poetry.lock index 9dfda269267a..e42fe59c49ee 100644 --- a/airbyte-integrations/connectors/source-sentry/poetry.lock +++ b/airbyte-integrations/connectors/source-sentry/poetry.lock @@ -1,54 +1,94 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "0.78.3" +version = "6.0.0" description = "A framework for writing Airbyte Connectors." optional = false -python-versions = "<4.0,>=3.9" +python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-0.78.3-py3-none-any.whl", hash = "sha256:699d61ace9f8ca4477e06af3ff1bc56856e955a444081a1701c41d94629dcd74"}, - {file = "airbyte_cdk-0.78.3.tar.gz", hash = "sha256:192c2594d0e93140a7ec635fea3d4644318faada6aa986805752adf4caf9b126"}, + {file = "airbyte_cdk-6.0.0-py3-none-any.whl", hash = "sha256:c0d317202b73655307089fd43571444fcd14e68a97c826763bf0b76fb018d5a4"}, + {file = "airbyte_cdk-6.0.0.tar.gz", hash = "sha256:ebedcfb431cc229427f0526b16a639ffafb3e153fbacadf4c859415d702c7e85"}, ] [package.dependencies] -airbyte-protocol-models = "0.5.1" +airbyte-protocol-models-dataclasses = ">=0.13,<0.14" backoff = "*" cachetools = "*" +cryptography = ">=42.0.5,<43.0.0" Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" +dpath = ">=2.1.6,<3.0.0" genson = "1.2.2" isodate = ">=0.6.1,<0.7.0" Jinja2 = ">=3.1.2,<3.2.0" jsonref = ">=0.2,<0.3" jsonschema = ">=3.2.0,<3.3.0" +langchain_core = "0.1.42" +nltk = "3.8.1" +orjson = ">=3.10.7,<4.0.0" +pandas = "2.2.2" pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" +pydantic = ">=2.7,<3.0" +pyjwt = ">=2.8.0,<3.0.0" pyrate-limiter = ">=3.1.0,<3.2.0" python-dateutil = "*" +pytz = "2024.1" PyYAML = ">=6.0.1,<7.0.0" requests = "*" requests_cache = "*" +serpyco-rs = ">=1.10.2,<2.0.0" wcmatch = "8.4" +xmltodict = ">=0.13.0,<0.14.0" [package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] +file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.0.271)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] +vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] -name = "airbyte-protocol-models" -version = "0.5.1" -description = "Declares the Airbyte Protocol." +name = "airbyte-protocol-models-dataclasses" +version = "0.13.0" +description = "Declares the Airbyte Protocol using Python Dataclasses. Dataclasses in Python have less performance overhead compared to Pydantic models, making them a more efficient choice for scenarios where speed and memory usage are critical" optional = false python-versions = ">=3.8" files = [ - {file = "airbyte_protocol_models-0.5.1-py3-none-any.whl", hash = "sha256:dfe84e130e51ce2ae81a06d5aa36f6c5ce3152b9e36e6f0195fad6c3dab0927e"}, - {file = "airbyte_protocol_models-0.5.1.tar.gz", hash = "sha256:7c8b16c7c1c7956b1996052e40585a3a93b1e44cb509c4e97c1ee4fe507ea086"}, + {file = "airbyte_protocol_models_dataclasses-0.13.0-py3-none-any.whl", hash = "sha256:0aedb99ffc4f9aab0ce91bba2c292fa17cd8fd4b42eeba196d6a16c20bbbd7a5"}, + {file = "airbyte_protocol_models_dataclasses-0.13.0.tar.gz", hash = "sha256:72e67850d661e2808406aec5839b3158ebb94d3553b798dbdae1b4a278548d2f"}, +] + +[[package]] +name = "annotated-types" +version = "0.7.0" +description = "Reusable constraint types to use with typing.Annotated" +optional = false +python-versions = ">=3.8" +files = [ + {file = "annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53"}, + {file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"}, +] + +[[package]] +name = "anyio" +version = "4.6.2.post1" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +optional = false +python-versions = ">=3.9" +files = [ + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] -pydantic = ">=1.9.2,<2.0.0" +exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} +idna = ">=2.8" +sniffio = ">=1.1" +typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} + +[package.extras] +doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] +trio = ["trio (>=0.26.1)"] [[package]] name = "atomicwrites" @@ -60,24 +100,35 @@ files = [ {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, ] +[[package]] +name = "attributes-doc" +version = "0.4.0" +description = "PEP 224 implementation" +optional = false +python-versions = ">=3.8" +files = [ + {file = "attributes-doc-0.4.0.tar.gz", hash = "sha256:b1576c94a714e9fc2c65c47cf10d0c8e1a5f7c4f5ae7f69006be108d95cbfbfb"}, + {file = "attributes_doc-0.4.0-py2.py3-none-any.whl", hash = "sha256:4c3007d9e58f3a6cb4b9c614c4d4ce2d92161581f28e594ddd8241cc3a113bdd"}, +] + [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "backoff" @@ -92,35 +143,35 @@ files = [ [[package]] name = "bracex" -version = "2.4" +version = "2.5.post1" description = "Bash style brace expander." optional = false python-versions = ">=3.8" files = [ - {file = "bracex-2.4-py3-none-any.whl", hash = "sha256:efdc71eff95eaff5e0f8cfebe7d01adf2c8637c8c92edaf63ef348c241a82418"}, - {file = "bracex-2.4.tar.gz", hash = "sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb"}, + {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, + {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, ] [[package]] name = "cachetools" -version = "5.3.3" +version = "5.5.0" description = "Extensible memoizing collections and decorators" optional = false python-versions = ">=3.7" files = [ - {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, - {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, + {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, + {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, ] [[package]] name = "cattrs" -version = "23.2.3" +version = "24.1.2" description = "Composable complex class support for attrs and dataclasses." optional = false python-versions = ">=3.8" files = [ - {file = "cattrs-23.2.3-py3-none-any.whl", hash = "sha256:0341994d94971052e9ee70662542699a3162ea1e0c62f7ce1b4a57f563685108"}, - {file = "cattrs-23.2.3.tar.gz", hash = "sha256:a934090d95abaa9e911dac357e3a8699e0b4b14f8529bcc7d2b1ad9d51672b9f"}, + {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, + {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, ] [package.dependencies] @@ -132,6 +183,7 @@ typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_ver bson = ["pymongo (>=4.4.0)"] cbor2 = ["cbor2 (>=5.4.6)"] msgpack = ["msgpack (>=1.0.5)"] +msgspec = ["msgspec (>=0.18.5)"] orjson = ["orjson (>=3.9.2)"] pyyaml = ["pyyaml (>=6.0)"] tomlkit = ["tomlkit (>=0.11.8)"] @@ -139,114 +191,222 @@ ujson = ["ujson (>=5.7.0)"] [[package]] name = "certifi" -version = "2024.2.2" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, - {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] +[[package]] +name = "cffi" +version = "1.17.1" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, +] + +[package.dependencies] +pycparser = "*" + [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + [[package]] name = "colorama" version = "0.4.6" @@ -258,6 +418,60 @@ files = [ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] +[[package]] +name = "cryptography" +version = "42.0.8" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +optional = false +python-versions = ">=3.7" +files = [ + {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e"}, + {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d"}, + {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902"}, + {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801"}, + {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949"}, + {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9"}, + {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583"}, + {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7"}, + {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b"}, + {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7"}, + {file = "cryptography-42.0.8-cp37-abi3-win32.whl", hash = "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2"}, + {file = "cryptography-42.0.8-cp37-abi3-win_amd64.whl", hash = "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba"}, + {file = "cryptography-42.0.8-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28"}, + {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e"}, + {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70"}, + {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c"}, + {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7"}, + {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e"}, + {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961"}, + {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1"}, + {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14"}, + {file = "cryptography-42.0.8-cp39-abi3-win32.whl", hash = "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c"}, + {file = "cryptography-42.0.8-cp39-abi3-win_amd64.whl", hash = "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a"}, + {file = "cryptography-42.0.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe"}, + {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c"}, + {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71"}, + {file = "cryptography-42.0.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d"}, + {file = "cryptography-42.0.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c"}, + {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842"}, + {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648"}, + {file = "cryptography-42.0.8-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad"}, + {file = "cryptography-42.0.8.tar.gz", hash = "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2"}, +] + +[package.dependencies] +cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] +nox = ["nox"] +pep8test = ["check-sdist", "click", "mypy", "ruff"] +sdist = ["build"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] + [[package]] name = "deprecated" version = "1.2.14" @@ -277,24 +491,24 @@ dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] [[package]] name = "dpath" -version = "2.0.8" +version = "2.2.0" description = "Filesystem-like pathing and searching for dictionaries" optional = false python-versions = ">=3.7" files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, + {file = "dpath-2.2.0-py3-none-any.whl", hash = "sha256:b330a375ded0a0d2ed404440f6c6a715deae5313af40bbb01c8a41d891900576"}, + {file = "dpath-2.2.0.tar.gz", hash = "sha256:34f7e630dc55ea3f219e555726f5da4b4b25f2200319c8e6902c394258dd6a3e"}, ] [[package]] name = "exceptiongroup" -version = "1.2.0" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, - {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -310,17 +524,77 @@ files = [ {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, ] +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "httpcore" +version = "1.0.6" +description = "A minimal low-level HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, + {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, +] + +[package.dependencies] +certifi = "*" +h11 = ">=0.13,<0.15" + +[package.extras] +asyncio = ["anyio (>=4.0,<5.0)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +trio = ["trio (>=0.22.0,<1.0)"] + +[[package]] +name = "httpx" +version = "0.27.2" +description = "The next generation HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, + {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, +] + +[package.dependencies] +anyio = "*" +certifi = "*" +httpcore = "==1.*" +idna = "*" +sniffio = "*" + +[package.extras] +brotli = ["brotli", "brotlicffi"] +cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +zstd = ["zstandard (>=0.18.0)"] + [[package]] name = "idna" -version = "3.6" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, - {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + [[package]] name = "iniconfig" version = "2.0.0" @@ -348,13 +622,13 @@ six = "*" [[package]] name = "jinja2" -version = "3.1.3" +version = "3.1.4" description = "A very fast and expressive template engine." optional = false python-versions = ">=3.7" files = [ - {file = "Jinja2-3.1.3-py3-none-any.whl", hash = "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa"}, - {file = "Jinja2-3.1.3.tar.gz", hash = "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"}, + {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, + {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, ] [package.dependencies] @@ -363,6 +637,42 @@ MarkupSafe = ">=2.0" [package.extras] i18n = ["Babel (>=2.7)"] +[[package]] +name = "joblib" +version = "1.4.2" +description = "Lightweight pipelining with Python functions" +optional = false +python-versions = ">=3.8" +files = [ + {file = "joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6"}, + {file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"}, +] + +[[package]] +name = "jsonpatch" +version = "1.33" +description = "Apply JSON-Patches (RFC 6902)" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" +files = [ + {file = "jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade"}, + {file = "jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c"}, +] + +[package.dependencies] +jsonpointer = ">=1.9" + +[[package]] +name = "jsonpointer" +version = "3.0.0" +description = "Identify specific nodes in a JSON document (RFC 6901)" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, + {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, +] + [[package]] name = "jsonref" version = "0.2" @@ -395,86 +705,353 @@ six = ">=1.11.0" format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] +[[package]] +name = "langchain-core" +version = "0.1.42" +description = "Building applications with LLMs through composability" +optional = false +python-versions = "<4.0,>=3.8.1" +files = [ + {file = "langchain_core-0.1.42-py3-none-any.whl", hash = "sha256:c5653ffa08a44f740295c157a24c0def4a753333f6a2c41f76bf431cd00be8b5"}, + {file = "langchain_core-0.1.42.tar.gz", hash = "sha256:40751bf60ea5d8e2b2efe65290db434717ee3834870c002e40e2811f09d814e6"}, +] + +[package.dependencies] +jsonpatch = ">=1.33,<2.0" +langsmith = ">=0.1.0,<0.2.0" +packaging = ">=23.2,<24.0" +pydantic = ">=1,<3" +PyYAML = ">=5.3" +tenacity = ">=8.1.0,<9.0.0" + +[package.extras] +extended-testing = ["jinja2 (>=3,<4)"] + +[[package]] +name = "langsmith" +version = "0.1.137" +description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." +optional = false +python-versions = "<4.0,>=3.8.1" +files = [ + {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, + {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, +] + +[package.dependencies] +httpx = ">=0.23.0,<1" +orjson = ">=3.9.14,<4.0.0" +pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} +requests = ">=2,<3" +requests-toolbelt = ">=1.0.0,<2.0.0" + [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false +python-versions = ">=3.9" +files = [ + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, +] + +[[package]] +name = "nltk" +version = "3.8.1" +description = "Natural Language Toolkit" +optional = false python-versions = ">=3.7" files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, + {file = "nltk-3.8.1-py3-none-any.whl", hash = "sha256:fd5c9109f976fa86bcadba8f91e47f5e9293bd034474752e92a520f81c93dda5"}, + {file = "nltk-3.8.1.zip", hash = "sha256:1834da3d0682cba4f2cede2f9aad6b0fafb6461ba451db0efb6f9c39798d64d3"}, +] + +[package.dependencies] +click = "*" +joblib = "*" +regex = ">=2021.8.3" +tqdm = "*" + +[package.extras] +all = ["matplotlib", "numpy", "pyparsing", "python-crfsuite", "requests", "scikit-learn", "scipy", "twython"] +corenlp = ["requests"] +machine-learning = ["numpy", "python-crfsuite", "scikit-learn", "scipy"] +plot = ["matplotlib"] +tgrep = ["pyparsing"] +twitter = ["twython"] + +[[package]] +name = "numpy" +version = "2.1.2" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.10" +files = [ + {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, + {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, + {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, + {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, + {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, + {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, + {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, + {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, + {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, + {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, + {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, + {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, + {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, + {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, + {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, + {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, + {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, + {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, + {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, + {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, + {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, + {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, + {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, + {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, + {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, + {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, + {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, + {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, + {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, + {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, + {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, + {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, + {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, +] + +[[package]] +name = "orjson" +version = "3.10.10" +description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" +optional = false +python-versions = ">=3.8" +files = [ + {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, + {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, + {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, + {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, + {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, + {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, + {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, + {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, + {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, + {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, + {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, + {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, + {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, + {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, + {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, + {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, + {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, + {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, + {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, + {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, + {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, + {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, + {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, + {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, + {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, + {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, + {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, + {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, + {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, + {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, + {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, ] [[package]] name = "packaging" -version = "24.0" +version = "23.2" description = "Core utilities for Python packages" optional = false python-versions = ">=3.7" files = [ - {file = "packaging-24.0-py3-none-any.whl", hash = "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5"}, - {file = "packaging-24.0.tar.gz", hash = "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"}, + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, ] +[[package]] +name = "pandas" +version = "2.2.2" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pandas-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce"}, + {file = "pandas-2.2.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c7adfc142dac335d8c1e0dcbd37eb8617eac386596eb9e1a1b77791cf2498238"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99"}, + {file = "pandas-2.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1"}, + {file = "pandas-2.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32"}, + {file = "pandas-2.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23"}, + {file = "pandas-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2"}, + {file = "pandas-2.2.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9057e6aa78a584bc93a13f0a9bf7e753a5e9770a30b4d758b8d5f2a62a9433cd"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57"}, + {file = "pandas-2.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4"}, + {file = "pandas-2.2.2.tar.gz", hash = "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54"}, +] + +[package.dependencies] +numpy = [ + {version = ">=1.22.4", markers = "python_version < \"3.11\""}, + {version = ">=1.23.2", markers = "python_version == \"3.11\""}, +] +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.7" + +[package.extras] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] +consortium-standard = ["dataframe-api-compat (>=0.1.7)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] +test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.9.2)"] + [[package]] name = "pendulum" version = "2.1.2" @@ -511,28 +1088,29 @@ pytzdata = ">=2020.1" [[package]] name = "platformdirs" -version = "4.2.0" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +version = "4.3.6" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.0-py3-none-any.whl", hash = "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068"}, - {file = "platformdirs-4.2.0.tar.gz", hash = "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "pluggy" -version = "1.4.0" +version = "1.5.0" description = "plugin and hook calling mechanisms for python" optional = false python-versions = ">=3.8" files = [ - {file = "pluggy-1.4.0-py3-none-any.whl", hash = "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981"}, - {file = "pluggy-1.4.0.tar.gz", hash = "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"}, + {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, + {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, ] [package.extras] @@ -550,57 +1128,154 @@ files = [ {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, ] +[[package]] +name = "pycparser" +version = "2.22" +description = "C parser in Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, + {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, +] + [[package]] name = "pydantic" -version = "1.10.14" -description = "Data validation and settings management using python type hints" +version = "2.9.2" +description = "Data validation using Python type hints" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pydantic-1.10.14-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7f4fcec873f90537c382840f330b90f4715eebc2bc9925f04cb92de593eae054"}, - {file = "pydantic-1.10.14-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e3a76f571970fcd3c43ad982daf936ae39b3e90b8a2e96c04113a369869dc87"}, - {file = "pydantic-1.10.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82d886bd3c3fbeaa963692ef6b643159ccb4b4cefaf7ff1617720cbead04fd1d"}, - {file = "pydantic-1.10.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:798a3d05ee3b71967844a1164fd5bdb8c22c6d674f26274e78b9f29d81770c4e"}, - {file = "pydantic-1.10.14-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:23d47a4b57a38e8652bcab15a658fdb13c785b9ce217cc3a729504ab4e1d6bc9"}, - {file = "pydantic-1.10.14-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f9f674b5c3bebc2eba401de64f29948ae1e646ba2735f884d1594c5f675d6f2a"}, - {file = "pydantic-1.10.14-cp310-cp310-win_amd64.whl", hash = "sha256:24a7679fab2e0eeedb5a8924fc4a694b3bcaac7d305aeeac72dd7d4e05ecbebf"}, - {file = "pydantic-1.10.14-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9d578ac4bf7fdf10ce14caba6f734c178379bd35c486c6deb6f49006e1ba78a7"}, - {file = "pydantic-1.10.14-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fa7790e94c60f809c95602a26d906eba01a0abee9cc24150e4ce2189352deb1b"}, - {file = "pydantic-1.10.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aad4e10efa5474ed1a611b6d7f0d130f4aafadceb73c11d9e72823e8f508e663"}, - {file = "pydantic-1.10.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1245f4f61f467cb3dfeced2b119afef3db386aec3d24a22a1de08c65038b255f"}, - {file = "pydantic-1.10.14-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:21efacc678a11114c765eb52ec0db62edffa89e9a562a94cbf8fa10b5db5c046"}, - {file = "pydantic-1.10.14-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:412ab4a3f6dbd2bf18aefa9f79c7cca23744846b31f1d6555c2ee2b05a2e14ca"}, - {file = "pydantic-1.10.14-cp311-cp311-win_amd64.whl", hash = "sha256:e897c9f35281f7889873a3e6d6b69aa1447ceb024e8495a5f0d02ecd17742a7f"}, - {file = "pydantic-1.10.14-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d604be0f0b44d473e54fdcb12302495fe0467c56509a2f80483476f3ba92b33c"}, - {file = "pydantic-1.10.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a42c7d17706911199798d4c464b352e640cab4351efe69c2267823d619a937e5"}, - {file = "pydantic-1.10.14-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:596f12a1085e38dbda5cbb874d0973303e34227b400b6414782bf205cc14940c"}, - {file = "pydantic-1.10.14-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bfb113860e9288d0886e3b9e49d9cf4a9d48b441f52ded7d96db7819028514cc"}, - {file = "pydantic-1.10.14-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:bc3ed06ab13660b565eed80887fcfbc0070f0aa0691fbb351657041d3e874efe"}, - {file = "pydantic-1.10.14-cp37-cp37m-win_amd64.whl", hash = "sha256:ad8c2bc677ae5f6dbd3cf92f2c7dc613507eafe8f71719727cbc0a7dec9a8c01"}, - {file = "pydantic-1.10.14-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c37c28449752bb1f47975d22ef2882d70513c546f8f37201e0fec3a97b816eee"}, - {file = "pydantic-1.10.14-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:49a46a0994dd551ec051986806122767cf144b9702e31d47f6d493c336462597"}, - {file = "pydantic-1.10.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:53e3819bd20a42470d6dd0fe7fc1c121c92247bca104ce608e609b59bc7a77ee"}, - {file = "pydantic-1.10.14-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0fbb503bbbbab0c588ed3cd21975a1d0d4163b87e360fec17a792f7d8c4ff29f"}, - {file = "pydantic-1.10.14-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:336709883c15c050b9c55a63d6c7ff09be883dbc17805d2b063395dd9d9d0022"}, - {file = "pydantic-1.10.14-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4ae57b4d8e3312d486e2498d42aed3ece7b51848336964e43abbf9671584e67f"}, - {file = "pydantic-1.10.14-cp38-cp38-win_amd64.whl", hash = "sha256:dba49d52500c35cfec0b28aa8b3ea5c37c9df183ffc7210b10ff2a415c125c4a"}, - {file = "pydantic-1.10.14-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c66609e138c31cba607d8e2a7b6a5dc38979a06c900815495b2d90ce6ded35b4"}, - {file = "pydantic-1.10.14-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d986e115e0b39604b9eee3507987368ff8148222da213cd38c359f6f57b3b347"}, - {file = "pydantic-1.10.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:646b2b12df4295b4c3148850c85bff29ef6d0d9621a8d091e98094871a62e5c7"}, - {file = "pydantic-1.10.14-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282613a5969c47c83a8710cc8bfd1e70c9223feb76566f74683af889faadc0ea"}, - {file = "pydantic-1.10.14-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:466669501d08ad8eb3c4fecd991c5e793c4e0bbd62299d05111d4f827cded64f"}, - {file = "pydantic-1.10.14-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:13e86a19dca96373dcf3190fcb8797d40a6f12f154a244a8d1e8e03b8f280593"}, - {file = "pydantic-1.10.14-cp39-cp39-win_amd64.whl", hash = "sha256:08b6ec0917c30861e3fe71a93be1648a2aa4f62f866142ba21670b24444d7fd8"}, - {file = "pydantic-1.10.14-py3-none-any.whl", hash = "sha256:8ee853cd12ac2ddbf0ecbac1c289f95882b2d4482258048079d13be700aa114c"}, - {file = "pydantic-1.10.14.tar.gz", hash = "sha256:46f17b832fe27de7850896f3afee50ea682220dd218f7e9c88d436788419dca6"}, + {file = "pydantic-2.9.2-py3-none-any.whl", hash = "sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12"}, + {file = "pydantic-2.9.2.tar.gz", hash = "sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f"}, ] [package.dependencies] -typing-extensions = ">=4.2.0" +annotated-types = ">=0.6.0" +pydantic-core = "2.23.4" +typing-extensions = {version = ">=4.6.1", markers = "python_version < \"3.13\""} [package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] +email = ["email-validator (>=2.0.0)"] +timezone = ["tzdata"] + +[[package]] +name = "pydantic-core" +version = "2.23.4" +description = "Core functionality for Pydantic validation and serialization" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:b10bd51f823d891193d4717448fab065733958bdb6a6b351967bd349d48d5c9b"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4fc714bdbfb534f94034efaa6eadd74e5b93c8fa6315565a222f7b6f42ca1166"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63e46b3169866bd62849936de036f901a9356e36376079b05efa83caeaa02ceb"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed1a53de42fbe34853ba90513cea21673481cd81ed1be739f7f2efb931b24916"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cfdd16ab5e59fc31b5e906d1a3f666571abc367598e3e02c83403acabc092e07"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255a8ef062cbf6674450e668482456abac99a5583bbafb73f9ad469540a3a232"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a7cd62e831afe623fbb7aabbb4fe583212115b3ef38a9f6b71869ba644624a2"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f09e2ff1f17c2b51f2bc76d1cc33da96298f0a036a137f5440ab3ec5360b624f"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e38e63e6f3d1cec5a27e0afe90a085af8b6806ee208b33030e65b6516353f1a3"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0dbd8dbed2085ed23b5c04afa29d8fd2771674223135dc9bc937f3c09284d071"}, + {file = "pydantic_core-2.23.4-cp310-none-win32.whl", hash = "sha256:6531b7ca5f951d663c339002e91aaebda765ec7d61b7d1e3991051906ddde119"}, + {file = "pydantic_core-2.23.4-cp310-none-win_amd64.whl", hash = "sha256:7c9129eb40958b3d4500fa2467e6a83356b3b61bfff1b414c7361d9220f9ae8f"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64"}, + {file = "pydantic_core-2.23.4-cp311-none-win32.whl", hash = "sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f"}, + {file = "pydantic_core-2.23.4-cp311-none-win_amd64.whl", hash = "sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24"}, + {file = "pydantic_core-2.23.4-cp312-none-win32.whl", hash = "sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84"}, + {file = "pydantic_core-2.23.4-cp312-none-win_amd64.whl", hash = "sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f"}, + {file = "pydantic_core-2.23.4-cp313-none-win32.whl", hash = "sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769"}, + {file = "pydantic_core-2.23.4-cp313-none-win_amd64.whl", hash = "sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d4488a93b071c04dc20f5cecc3631fc78b9789dd72483ba15d423b5b3689b555"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:81965a16b675b35e1d09dd14df53f190f9129c0202356ed44ab2728b1c905658"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ffa2ebd4c8530079140dd2d7f794a9d9a73cbb8e9d59ffe24c63436efa8f271"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61817945f2fe7d166e75fbfb28004034b48e44878177fc54d81688e7b85a3665"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d2c342c4bc01b88402d60189f3df065fb0dda3654744d5a165a5288a657368"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e11661ce0fd30a6790e8bcdf263b9ec5988e95e63cf901972107efc49218b13"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d18368b137c6295db49ce7218b1a9ba15c5bc254c96d7c9f9e924a9bc7825ad"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ec4e55f79b1c4ffb2eecd8a0cfba9955a2588497d96851f4c8f99aa4a1d39b12"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:374a5e5049eda9e0a44c696c7ade3ff355f06b1fe0bb945ea3cac2bc336478a2"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5c364564d17da23db1106787675fc7af45f2f7b58b4173bfdd105564e132e6fb"}, + {file = "pydantic_core-2.23.4-cp38-none-win32.whl", hash = "sha256:d7a80d21d613eec45e3d41eb22f8f94ddc758a6c4720842dc74c0581f54993d6"}, + {file = "pydantic_core-2.23.4-cp38-none-win_amd64.whl", hash = "sha256:5f5ff8d839f4566a474a969508fe1c5e59c31c80d9e140566f9a37bba7b8d556"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a4fa4fc04dff799089689f4fd502ce7d59de529fc2f40a2c8836886c03e0175a"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7df63886be5e270da67e0966cf4afbae86069501d35c8c1b3b6c168f42cb36"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcedcd19a557e182628afa1d553c3895a9f825b936415d0dbd3cd0bbcfd29b4b"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f54b118ce5de9ac21c363d9b3caa6c800341e8c47a508787e5868c6b79c9323"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86d2f57d3e1379a9525c5ab067b27dbb8a0642fb5d454e17a9ac434f9ce523e3"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de6d1d1b9e5101508cb37ab0d972357cac5235f5c6533d1071964c47139257df"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1278e0d324f6908e872730c9102b0112477a7f7cf88b308e4fc36ce1bdb6d58c"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a6b5099eeec78827553827f4c6b8615978bb4b6a88e5d9b93eddf8bb6790f55"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e55541f756f9b3ee346b840103f32779c695a19826a4c442b7954550a0972040"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a5c7ba8ffb6d6f8f2ab08743be203654bb1aaa8c9dcb09f82ddd34eadb695605"}, + {file = "pydantic_core-2.23.4-cp39-none-win32.whl", hash = "sha256:37b0fe330e4a58d3c58b24d91d1eb102aeec675a3db4c292ec3928ecd892a9a6"}, + {file = "pydantic_core-2.23.4-cp39-none-win_amd64.whl", hash = "sha256:1498bec4c05c9c787bde9125cfdcc63a41004ff167f495063191b863399b1a29"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f455ee30a9d61d3e1a15abd5068827773d6e4dc513e795f380cdd59932c782d5"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1e90d2e3bd2c3863d48525d297cd143fe541be8bbf6f579504b9712cb6b643ec"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e203fdf807ac7e12ab59ca2bfcabb38c7cf0b33c41efeb00f8e5da1d86af480"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e08277a400de01bc72436a0ccd02bdf596631411f592ad985dcee21445bd0068"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f220b0eea5965dec25480b6333c788fb72ce5f9129e8759ef876a1d805d00801"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d06b0c8da4f16d1d1e352134427cb194a0a6e19ad5db9161bf32b2113409e728"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ba1a0996f6c2773bd83e63f18914c1de3c9dd26d55f4ac302a7efe93fb8e7433"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:9a5bce9d23aac8f0cf0836ecfc033896aa8443b501c58d0602dbfd5bd5b37753"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:78ddaaa81421a29574a682b3179d4cf9e6d405a09b99d93ddcf7e5239c742e21"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:883a91b5dd7d26492ff2f04f40fbb652de40fcc0afe07e8129e8ae779c2110eb"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88ad334a15b32a791ea935af224b9de1bf99bcd62fabf745d5f3442199d86d59"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:233710f069d251feb12a56da21e14cca67994eab08362207785cf8c598e74577"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:19442362866a753485ba5e4be408964644dd6a09123d9416c54cd49171f50744"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:624e278a7d29b6445e4e813af92af37820fafb6dcc55c012c834f9e26f9aaaef"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f5ef8f42bec47f21d07668a043f077d507e5bf4e668d5c6dfe6aaba89de1a5b8"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:aea443fffa9fbe3af1a9ba721a87f926fe548d32cab71d188a6ede77d0ff244e"}, + {file = "pydantic_core-2.23.4.tar.gz", hash = "sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863"}, +] + +[package.dependencies] +typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" + +[[package]] +name = "pyjwt" +version = "2.9.0" +description = "JSON Web Token implementation in Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, + {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, +] + +[package.extras] +crypto = ["cryptography (>=3.4.0)"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] +tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] name = "pyrate-limiter" @@ -713,6 +1388,17 @@ files = [ [package.dependencies] six = ">=1.5" +[[package]] +name = "pytz" +version = "2024.1" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, + {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, +] + [[package]] name = "pytzdata" version = "2020.1" @@ -726,73 +1412,178 @@ files = [ [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0.2" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, +] + +[[package]] +name = "regex" +version = "2024.9.11" +description = "Alternative regular expression module, to replace re." +optional = false +python-versions = ">=3.8" +files = [ + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1494fa8725c285a81d01dc8c06b55287a1ee5e0e382d8413adc0a9197aac6408"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0e12c481ad92d129c78f13a2a3662317e46ee7ef96c94fd332e1c29131875b7d"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:16e13a7929791ac1216afde26f712802e3df7bf0360b32e4914dca3ab8baeea5"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46989629904bad940bbec2106528140a218b4a36bb3042d8406980be1941429c"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a906ed5e47a0ce5f04b2c981af1c9acf9e8696066900bf03b9d7879a6f679fc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a091b0550b3b0207784a7d6d0f1a00d1d1c8a11699c1a4d93db3fbefc3ad35"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ddcd9a179c0a6fa8add279a4444015acddcd7f232a49071ae57fa6e278f1f71"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b41e1adc61fa347662b09398e31ad446afadff932a24807d3ceb955ed865cc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ced479f601cd2f8ca1fd7b23925a7e0ad512a56d6e9476f79b8f381d9d37090a"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:635a1d96665f84b292e401c3d62775851aedc31d4f8784117b3c68c4fcd4118d"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c0256beda696edcf7d97ef16b2a33a8e5a875affd6fa6567b54f7c577b30a137"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:3ce4f1185db3fbde8ed8aa223fc9620f276c58de8b0d4f8cc86fd1360829edb6"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:09d77559e80dcc9d24570da3745ab859a9cf91953062e4ab126ba9d5993688ca"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a22ccefd4db3f12b526eccb129390942fe874a3a9fdbdd24cf55773a1faab1a"}, + {file = "regex-2024.9.11-cp310-cp310-win32.whl", hash = "sha256:f745ec09bc1b0bd15cfc73df6fa4f726dcc26bb16c23a03f9e3367d357eeedd0"}, + {file = "regex-2024.9.11-cp310-cp310-win_amd64.whl", hash = "sha256:01c2acb51f8a7d6494c8c5eafe3d8e06d76563d8a8a4643b37e9b2dd8a2ff623"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2cce2449e5927a0bf084d346da6cd5eb016b2beca10d0013ab50e3c226ffc0df"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b37fa423beefa44919e009745ccbf353d8c981516e807995b2bd11c2c77d268"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:64ce2799bd75039b480cc0360907c4fb2f50022f030bf9e7a8705b636e408fad"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4cc92bb6db56ab0c1cbd17294e14f5e9224f0cc6521167ef388332604e92679"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d05ac6fa06959c4172eccd99a222e1fbf17b5670c4d596cb1e5cde99600674c4"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:040562757795eeea356394a7fb13076ad4f99d3c62ab0f8bdfb21f99a1f85664"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6113c008a7780792efc80f9dfe10ba0cd043cbf8dc9a76ef757850f51b4edc50"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e5fb5f77c8745a60105403a774fe2c1759b71d3e7b4ca237a5e67ad066c7199"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54d9ff35d4515debf14bc27f1e3b38bfc453eff3220f5bce159642fa762fe5d4"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:df5cbb1fbc74a8305b6065d4ade43b993be03dbe0f8b30032cced0d7740994bd"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7fb89ee5d106e4a7a51bce305ac4efb981536301895f7bdcf93ec92ae0d91c7f"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a738b937d512b30bf75995c0159c0ddf9eec0775c9d72ac0202076c72f24aa96"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e28f9faeb14b6f23ac55bfbbfd3643f5c7c18ede093977f1df249f73fd22c7b1"}, + {file = "regex-2024.9.11-cp311-cp311-win32.whl", hash = "sha256:18e707ce6c92d7282dfce370cd205098384b8ee21544e7cb29b8aab955b66fa9"}, + {file = "regex-2024.9.11-cp311-cp311-win_amd64.whl", hash = "sha256:313ea15e5ff2a8cbbad96ccef6be638393041b0a7863183c2d31e0c6116688cf"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b0d0a6c64fcc4ef9c69bd5b3b3626cc3776520a1637d8abaa62b9edc147a58f7"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b0e06786ea663f933f3710a51e9385ce0cba0ea56b67107fd841a55d56a231"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5b513b6997a0b2f10e4fd3a1313568e373926e8c252bd76c960f96fd039cd28d"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee439691d8c23e76f9802c42a95cfeebf9d47cf4ffd06f18489122dbb0a7ad64"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8f877c89719d759e52783f7fe6e1c67121076b87b40542966c02de5503ace42"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23b30c62d0f16827f2ae9f2bb87619bc4fba2044911e2e6c2eb1af0161cdb766"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ab7824093d8f10d44330fe1e6493f756f252d145323dd17ab6b48733ff6c0a"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dee5b4810a89447151999428fe096977346cf2f29f4d5e29609d2e19e0199c9"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98eeee2f2e63edae2181c886d7911ce502e1292794f4c5ee71e60e23e8d26b5d"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:57fdd2e0b2694ce6fc2e5ccf189789c3e2962916fb38779d3e3521ff8fe7a822"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d552c78411f60b1fdaafd117a1fca2f02e562e309223b9d44b7de8be451ec5e0"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a0b2b80321c2ed3fcf0385ec9e51a12253c50f146fddb2abbb10f033fe3d049a"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:18406efb2f5a0e57e3a5881cd9354c1512d3bb4f5c45d96d110a66114d84d23a"}, + {file = "regex-2024.9.11-cp312-cp312-win32.whl", hash = "sha256:e464b467f1588e2c42d26814231edecbcfe77f5ac414d92cbf4e7b55b2c2a776"}, + {file = "regex-2024.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:9e8719792ca63c6b8340380352c24dcb8cd7ec49dae36e963742a275dfae6009"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c157bb447303070f256e084668b702073db99bbb61d44f85d811025fcf38f784"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4db21ece84dfeefc5d8a3863f101995de646c6cb0536952c321a2650aa202c36"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:220e92a30b426daf23bb67a7962900ed4613589bab80382be09b48896d211e92"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1ae19e64c14c7ec1995f40bd932448713d3c73509e82d8cd7744dc00e29e86"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47cd43a5bfa48f86925fe26fbdd0a488ff15b62468abb5d2a1e092a4fb10e85"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9d4a76b96f398697fe01117093613166e6aa8195d63f1b4ec3f21ab637632963"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ea51dcc0835eea2ea31d66456210a4e01a076d820e9039b04ae8d17ac11dee6"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7aaa315101c6567a9a45d2839322c51c8d6e81f67683d529512f5bcfb99c802"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c57d08ad67aba97af57a7263c2d9006d5c404d721c5f7542f077f109ec2a4a29"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f8404bf61298bb6f8224bb9176c1424548ee1181130818fcd2cbffddc768bed8"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dd4490a33eb909ef5078ab20f5f000087afa2a4daa27b4c072ccb3cb3050ad84"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:eee9130eaad130649fd73e5cd92f60e55708952260ede70da64de420cdcad554"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a2644a93da36c784e546de579ec1806bfd2763ef47babc1b03d765fe560c9f8"}, + {file = "regex-2024.9.11-cp313-cp313-win32.whl", hash = "sha256:e997fd30430c57138adc06bba4c7c2968fb13d101e57dd5bb9355bf8ce3fa7e8"}, + {file = "regex-2024.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:042c55879cfeb21a8adacc84ea347721d3d83a159da6acdf1116859e2427c43f"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:35f4a6f96aa6cb3f2f7247027b07b15a374f0d5b912c0001418d1d55024d5cb4"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:55b96e7ce3a69a8449a66984c268062fbaa0d8ae437b285428e12797baefce7e"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb130fccd1a37ed894824b8c046321540263013da72745d755f2d35114b81a60"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:323c1f04be6b2968944d730e5c2091c8c89767903ecaa135203eec4565ed2b2b"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be1c8ed48c4c4065ecb19d882a0ce1afe0745dfad8ce48c49586b90a55f02366"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5b029322e6e7b94fff16cd120ab35a253236a5f99a79fb04fda7ae71ca20ae8"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6fff13ef6b5f29221d6904aa816c34701462956aa72a77f1f151a8ec4f56aeb"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:587d4af3979376652010e400accc30404e6c16b7df574048ab1f581af82065e4"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:079400a8269544b955ffa9e31f186f01d96829110a3bf79dc338e9910f794fca"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f9268774428ec173654985ce55fc6caf4c6d11ade0f6f914d48ef4719eb05ebb"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:23f9985c8784e544d53fc2930fc1ac1a7319f5d5332d228437acc9f418f2f168"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2941333154baff9838e88aa71c1d84f4438189ecc6021a12c7573728b5838e"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e93f1c331ca8e86fe877a48ad64e77882c0c4da0097f2212873a69bbfea95d0c"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:846bc79ee753acf93aef4184c040d709940c9d001029ceb7b7a52747b80ed2dd"}, + {file = "regex-2024.9.11-cp38-cp38-win32.whl", hash = "sha256:c94bb0a9f1db10a1d16c00880bdebd5f9faf267273b8f5bd1878126e0fbde771"}, + {file = "regex-2024.9.11-cp38-cp38-win_amd64.whl", hash = "sha256:2b08fce89fbd45664d3df6ad93e554b6c16933ffa9d55cb7e01182baaf971508"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:07f45f287469039ffc2c53caf6803cd506eb5f5f637f1d4acb37a738f71dd066"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4838e24ee015101d9f901988001038f7f0d90dc0c3b115541a1365fb439add62"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6edd623bae6a737f10ce853ea076f56f507fd7726bee96a41ee3d68d347e4d16"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c69ada171c2d0e97a4b5aa78fbb835e0ffbb6b13fc5da968c09811346564f0d3"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02087ea0a03b4af1ed6ebab2c54d7118127fee8d71b26398e8e4b05b78963199"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69dee6a020693d12a3cf892aba4808fe168d2a4cef368eb9bf74f5398bfd4ee8"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297f54910247508e6e5cae669f2bc308985c60540a4edd1c77203ef19bfa63ca"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ecea58b43a67b1b79805f1a0255730edaf5191ecef84dbc4cc85eb30bc8b63b9"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:eab4bb380f15e189d1313195b062a6aa908f5bd687a0ceccd47c8211e9cf0d4a"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0cbff728659ce4bbf4c30b2a1be040faafaa9eca6ecde40aaff86f7889f4ab39"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:54c4a097b8bc5bb0dfc83ae498061d53ad7b5762e00f4adaa23bee22b012e6ba"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:73d6d2f64f4d894c96626a75578b0bf7d9e56dcda8c3d037a2118fdfe9b1c664"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:e53b5fbab5d675aec9f0c501274c467c0f9a5d23696cfc94247e1fb56501ed89"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0ffbcf9221e04502fc35e54d1ce9567541979c3fdfb93d2c554f0ca583a19b35"}, + {file = "regex-2024.9.11-cp39-cp39-win32.whl", hash = "sha256:e4c22e1ac1f1ec1e09f72e6c44d8f2244173db7eb9629cc3a346a8d7ccc31142"}, + {file = "regex-2024.9.11-cp39-cp39-win_amd64.whl", hash = "sha256:faa3c142464efec496967359ca99696c896c591c56c53506bac1ad465f66e919"}, + {file = "regex-2024.9.11.tar.gz", hash = "sha256:6c188c307e8433bcb63dc1915022deb553b4203a70722fc542c363bf120a01fd"}, ] [[package]] name = "requests" -version = "2.31.0" +version = "2.32.3" description = "Python HTTP for Humans." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, - {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, + {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, + {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, ] [package.dependencies] @@ -807,13 +1598,13 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "requests-cache" -version = "1.2.0" +version = "1.2.1" description = "A persistent cache for python requests" optional = false python-versions = ">=3.8" files = [ - {file = "requests_cache-1.2.0-py3-none-any.whl", hash = "sha256:490324301bf0cb924ff4e6324bd2613453e7e1f847353928b08adb0fdfb7f722"}, - {file = "requests_cache-1.2.0.tar.gz", hash = "sha256:db1c709ca343cc1cd5b6c8b1a5387298eceed02306a6040760db538c885e3838"}, + {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, + {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, ] [package.dependencies] @@ -852,21 +1643,93 @@ requests = ">=2.22,<3" [package.extras] fixture = ["fixtures"] +[[package]] +name = "requests-toolbelt" +version = "1.0.0" +description = "A utility belt for advanced users of python-requests" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, + {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, +] + +[package.dependencies] +requests = ">=2.0.1,<3.0.0" + +[[package]] +name = "serpyco-rs" +version = "1.11.0" +description = "" +optional = false +python-versions = ">=3.9" +files = [ + {file = "serpyco_rs-1.11.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:4b2bd933539bd8c84315e2fb5ae52ef7a58ace5a6dfe3f8b73f74dc71216779e"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:627f957889ff73c4d2269fc7b6bba93212381befe03633e7cb5495de66ba9a33"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b0933620abc01434023e0e3e22255b7e4ab9b427b5a9a5ee00834656d792377a"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:9ce46683d92e34abb20304817fc5ac6cb141a06fc7468dedb1d8865a8a9682f6"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bda437d86e8859bf91c189c1f4650899822f6d6d7b02b48f5729da904eb7bb7d"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a72bfbd282af17ebe76d122639013e802c09902543fdbbd828fb2159ec9755e"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d4808df5384e3e8581e31a90ba7a1fa501c0837b1f174284bb8a4555b6864ea"}, + {file = "serpyco_rs-1.11.0-cp310-none-win_amd64.whl", hash = "sha256:c7b60aef4c16d68efb0d6241f05d0a434d873d98449cbb4366b0d385f0a7172b"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:8d47ee577cf4d69b53917615cb031ad8708eb2f59fe78194b1968c13130fc2f7"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6090d9a1487237cdd4e9362a823eede23249602019b917e7bd57846179286e79"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7192eb3df576386fefd595ea31ae25c62522841ffec7e7aeb37a80b55bdc3213"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:b52ef8affb7e71b9b98a7d5216d6a7ad03b04e990acb147cd9211c8b931c5487"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3480e09e473560c60e74aaa789e6b4d079637371aae0a98235440111464bbba7"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c92e36b0ab6fe866601c2331f7e99c809a126d21963c03d8a5c29331526deed"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84f497361952d4566bc1f77e9e15a84a2614f593cc671fbf0a0fa80046f9c3d7"}, + {file = "serpyco_rs-1.11.0-cp311-none-win_amd64.whl", hash = "sha256:37fc1cf192bef9784fbf1f4e03cec21750b9e704bef55cc0442f71a715eee920"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:3ea93d485f03dc8b0cfb0d477f0ad2e86e78f0461b53010656ab5b4db1b41fb0"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7772410d15694b03f9c5500a2c47d62eed76e191bea4087ad042250346b1a38e"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42118463c1679846cffd2f06f47744c9b9eb33c5d0448afd88ea19e1a81a8ddd"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:79481a455b76cc56021dc55bb6d5bdda1b2b32bcb6a1ee711b597140d112e9b1"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c8fd79051f9af9591fc03cf7d3033ff180416301f6a4fd3d1e3d92ebd2d68697"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d29c8f9aeed734a3b51f7349d04ec9063516ffa4e10b632d75e9b1309e4930e4"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15609158b0d9591ffa118302cd9d0039970cb3faf91dce32975f7d276e7411d5"}, + {file = "serpyco_rs-1.11.0-cp312-none-win_amd64.whl", hash = "sha256:00081eae77fbf4c5d88371c5586317ab02ccb293a330b460869a283edf2b7b69"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:3028893366a1985adcedb13fa8f6f98c087c185efc427f94c2ccdafa40f45832"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c18bf511316f3abf648a68ee62ef88617bec57d3fcde69466b4361102715ae5"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7dde9ef09cdfaf7c62378186b9e29f54ec76114be4c347be6a06dd559c5681e"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:18500ebc5e75285841e35585a238629a990b709e14f68933233640d15ca17d5f"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47c23132d4e03982703a7630aa09877b41e499722142f76b6153f6619b612f3"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5f8e6ba499f6a0825bee0d8f8764569d367af871b563fc6512c171474e8e5383"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15438a076047c34cff6601a977df54948e8d39d1a86f89d05c48bc60f4c12a61"}, + {file = "serpyco_rs-1.11.0-cp313-none-win_amd64.whl", hash = "sha256:84ee2c109415bd81904fc9abb9aec86a5dd13166808c21142cf23ec639f683bd"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:5c97c16c865261577fac4effeccc7ef5e0a1e8e35e7a3ee6c90c77c3a4cd7ff9"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47825e70f86fd6ef7c4a835dea3d6e8eef4fee354ed7b39ced99f31aba74a86e"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:24d220220365110edba2f778f41ab3cf396883da0f26e1361a3ada9bd0227f73"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:3a46f334af5a9d77acc6e1e58f355ae497900a2798929371f0545e274f6e6166"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d72b748acce4b4e3c7c9724e1eb33d033a1c26b08a698b393e0288060e0901"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2b8b6f205e8cc038d4d30dd0e70eece7bbecc816eb2f3787c330dc2218e232d"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:038d748bfff31f150f0c3edab2766b8843edb952cb1bd3bf547886beb0912dae"}, + {file = "serpyco_rs-1.11.0-cp39-none-win_amd64.whl", hash = "sha256:0fee1c89ec2cb013dc232e4ebef88e2844357ce8631063b56639dbfb83762f20"}, + {file = "serpyco_rs-1.11.0.tar.gz", hash = "sha256:70a844615ffb229e6e89c204b3ab7404aacaf2838911814c7d847969b8da2e3a"}, +] + +[package.dependencies] +attributes-doc = "*" +typing-extensions = "*" + [[package]] name = "setuptools" -version = "69.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-69.2.0-py3-none-any.whl", hash = "sha256:c21c49fb1042386df081cb5d86759792ab89efca84cf114889191cd09aacc80c"}, - {file = "setuptools-69.2.0.tar.gz", hash = "sha256:0ff4183f8f42cd8fa3acea16c45205521a4ef28f73c6391d8a25e92893134f2e"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mypy (==1.9)", "packaging (>=23.2)", "pip (>=19.1)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff (>=0.2.1)", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] -testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.2)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -879,6 +1742,32 @@ files = [ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] +[[package]] +name = "sniffio" +version = "1.3.1" +description = "Sniff out which async library your code is running under" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, +] + +[[package]] +name = "tenacity" +version = "8.5.0" +description = "Retry code until it succeeds" +optional = false +python-versions = ">=3.8" +files = [ + {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, + {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, +] + +[package.extras] +doc = ["reno", "sphinx"] +test = ["pytest", "tornado (>=4.5)", "typeguard"] + [[package]] name = "toml" version = "0.10.2" @@ -890,15 +1779,46 @@ files = [ {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, ] +[[package]] +name = "tqdm" +version = "4.66.6" +description = "Fast, Extensible Progress Meter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + [[package]] name = "typing-extensions" -version = "4.10.0" +version = "4.12.2" description = "Backported and Experimental Type Hints for Python 3.8+" optional = false python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"}, - {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"}, + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, +] + +[[package]] +name = "tzdata" +version = "2024.2" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"}, + {file = "tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc"}, ] [[package]] @@ -917,13 +1837,13 @@ six = "*" [[package]] name = "urllib3" -version = "2.2.1" +version = "2.2.3" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.8" files = [ - {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"}, - {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"}, + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, ] [package.extras] @@ -1025,7 +1945,18 @@ files = [ {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, ] +[[package]] +name = "xmltodict" +version = "0.13.0" +description = "Makes working with XML feel like you are working with JSON" +optional = false +python-versions = ">=3.4" +files = [ + {file = "xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852"}, + {file = "xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56"}, +] + [metadata] lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "25d79195c052c9654e64e6cd73809188b3aa16bd228841f214ff871a895c9c6c" +python-versions = "^3.10,<3.12" +content-hash = "07010436127ce767440418c5c4187d7e49be131770e2796fa5abb5ba0c8d5809" diff --git a/airbyte-integrations/connectors/source-sentry/pyproject.toml b/airbyte-integrations/connectors/source-sentry/pyproject.toml index 524f710a9fbd..374a7c121bab 100644 --- a/airbyte-integrations/connectors/source-sentry/pyproject.toml +++ b/airbyte-integrations/connectors/source-sentry/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.3" +version = "0.6.0" name = "source-sentry" description = "Source implementation for Sentry." authors = [ "Airbyte ",] @@ -16,8 +16,8 @@ repository = "https://github.com/airbytehq/airbyte" include = "source_sentry" [tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "^0" +python = "^3.10,<3.12" +airbyte-cdk = "^6" [tool.poetry.scripts] source-sentry = "source_sentry.run:run" diff --git a/airbyte-integrations/connectors/source-sentry/source_sentry/manifest.yaml b/airbyte-integrations/connectors/source-sentry/source_sentry/manifest.yaml index bf50ecd2b607..ec9034998c39 100644 --- a/airbyte-integrations/connectors/source-sentry/source_sentry/manifest.yaml +++ b/airbyte-integrations/connectors/source-sentry/source_sentry/manifest.yaml @@ -51,7 +51,7 @@ definitions: record_selector: $ref: "#/definitions/record_selector" record_filter: - condition: "{{ record[parameters['cursor_field']] > stream_state.get(parameters['cursor_field'], '') }}" + condition: "{{ record[parameters['cursor_field']] > stream_interval.get('start_time', '') }}" paginator: $ref: "#/definitions/paginator" partition_router: [] @@ -62,7 +62,7 @@ definitions: - "%Y-%m-%dT%H:%M:%SZ" - "%Y-%m-%dT%H:%M:%S.%f%z" - "%Y-%m-%dT%H:%M:%S%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" start_datetime: type: MinMaxDatetime datetime: "1900-01-01T00:00:00.0Z" @@ -98,11 +98,12 @@ definitions: record_selector: $ref: "#/definitions/record_selector" record_filter: - condition: "{{ record[parameters['cursor_field']] > stream_state.get(parameters['cursor_field'], '') }}" + condition: "{{ record[parameters['cursor_field']] > stream_interval.get('start_time', '') }}" paginator: $ref: "#/definitions/paginator" incremental_sync: $ref: "#/definitions/incremental_sync" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" # Stream Issues https://docs.sentry.io/api/events/list-a-projects-issues/ issues: @@ -117,7 +118,7 @@ definitions: requester: $ref: "#/definitions/requester" request_parameters: - query: "lastSeen:>{{ stream_state.get(parameters['cursor_field']) or '1900-01-01T00:00:00.0Z' if stream_state else '1900-01-01T00:00:00.0Z' }}" + query: "lastSeen:>{{ stream_interval.get('start_time', '') or '1900-01-01T00:00:00.0Z' if stream_interval else '1900-01-01T00:00:00.0Z' }}" record_selector: $ref: "#/definitions/record_selector" paginator: @@ -166,6 +167,12 @@ check: stream_names: - project_detail +# Sentry currently supports 5 streams and each operates as descending data feed that can only run in +# parallel with each other. This number can increase if we add more streams +concurrency_level: + type: ConcurrencyLevel + default_concurrency: 5 + metadata: autoImportSchema: events: true diff --git a/airbyte-integrations/connectors/source-sentry/source_sentry/run.py b/airbyte-integrations/connectors/source-sentry/source_sentry/run.py index acf82b00a03d..40282ee1ff62 100644 --- a/airbyte-integrations/connectors/source-sentry/source_sentry/run.py +++ b/airbyte-integrations/connectors/source-sentry/source_sentry/run.py @@ -4,11 +4,49 @@ import sys +import traceback +from datetime import datetime +from typing import List -from airbyte_cdk.entrypoint import launch +from airbyte_cdk.entrypoint import AirbyteEntrypoint, launch +from airbyte_cdk.models import AirbyteErrorTraceMessage, AirbyteMessage, AirbyteMessageSerializer, AirbyteTraceMessage, TraceType, Type +from orjson import orjson from source_sentry import SourceSentry +def _get_source(args: List[str]): + catalog_path = AirbyteEntrypoint.extract_catalog(args) + config_path = AirbyteEntrypoint.extract_config(args) + state_path = AirbyteEntrypoint.extract_state(args) + try: + return SourceSentry( + SourceSentry.read_catalog(catalog_path) if catalog_path else None, + SourceSentry.read_config(config_path) if config_path else None, + SourceSentry.read_state(state_path) if state_path else None, + ) + except Exception as error: + print( + orjson.dumps( + AirbyteMessageSerializer.dump( + AirbyteMessage( + type=Type.TRACE, + trace=AirbyteTraceMessage( + type=TraceType.ERROR, + emitted_at=int(datetime.now().timestamp() * 1000), + error=AirbyteErrorTraceMessage( + message=f"Error starting the sync. This could be due to an invalid configuration or catalog. Please contact Support for assistance. Error: {error}", + stack_trace=traceback.format_exc(), + ), + ), + ) + ) + ).decode() + ) + return None + + def run(): - source = SourceSentry() - launch(source, sys.argv[1:]) + _args = sys.argv[1:] + source = _get_source(_args) + if source: + launch(source, _args) diff --git a/airbyte-integrations/connectors/source-sentry/source_sentry/source.py b/airbyte-integrations/connectors/source-sentry/source_sentry/source.py index 5f86fd62dd08..f1f2166b624e 100644 --- a/airbyte-integrations/connectors/source-sentry/source_sentry/source.py +++ b/airbyte-integrations/connectors/source-sentry/source_sentry/source.py @@ -2,9 +2,13 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +from typing import Any, Mapping, Optional + +from airbyte_cdk.models import ConfiguredAirbyteCatalog from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource +from airbyte_cdk.sources.source import TState class SourceSentry(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) + def __init__(self, catalog: Optional[ConfiguredAirbyteCatalog], config: Optional[Mapping[str, Any]], state: TState, **kwargs): + super().__init__(catalog=catalog, config=config, state=state, **{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-sentry/unit_tests/integration/test_events_stream.py b/airbyte-integrations/connectors/source-sentry/unit_tests/integration/test_events_stream.py index 7e13aabbab22..85987dd3d2dd 100644 --- a/airbyte-integrations/connectors/source-sentry/unit_tests/integration/test_events_stream.py +++ b/airbyte-integrations/connectors/source-sentry/unit_tests/integration/test_events_stream.py @@ -3,12 +3,12 @@ import json from unittest import TestCase +from airbyte_cdk.models import SyncMode from airbyte_cdk.test.catalog_builder import CatalogBuilder from airbyte_cdk.test.entrypoint_wrapper import read from airbyte_cdk.test.mock_http import HttpMocker, HttpRequest, HttpResponse from airbyte_cdk.test.mock_http.response_builder import find_template from airbyte_cdk.test.state_builder import StateBuilder -from airbyte_protocol.models import SyncMode from config_builder import ConfigBuilder from source_sentry.source import SourceSentry @@ -36,7 +36,12 @@ def test_read(self, http_mocker: HttpMocker): HttpResponse(body=json.dumps(find_template(self.fr_read_file, __file__)), status_code=200) ) - output = read(SourceSentry(), self.config(), self.catalog()) + config = self.config() + catalog = self.catalog() + source = SourceSentry(config=config, catalog=catalog, state=None) + + output = read(source=source, config=config, catalog=catalog) + assert len(output.records) == 1 @HttpMocker() @@ -49,5 +54,11 @@ def test_read_incremental(self, http_mocker: HttpMocker): HttpResponse(body=json.dumps(find_template(self.inc_read_file, __file__)), status_code=200) ) - output = read(SourceSentry(), self.config(), self.catalog(SyncMode.incremental), self.state()) + config = self.config() + catalog = self.catalog() + state = self.state() + source = SourceSentry(config=config, catalog=catalog, state=state) + + output = read(source=source, config=config, catalog=catalog, state=state) + assert len(output.records) == 2 diff --git a/airbyte-integrations/connectors/source-sentry/unit_tests/integration/test_issues_stream.py b/airbyte-integrations/connectors/source-sentry/unit_tests/integration/test_issues_stream.py index e9665a7854bb..0103ab4856e8 100644 --- a/airbyte-integrations/connectors/source-sentry/unit_tests/integration/test_issues_stream.py +++ b/airbyte-integrations/connectors/source-sentry/unit_tests/integration/test_issues_stream.py @@ -3,12 +3,12 @@ import json from unittest import TestCase +from airbyte_cdk.models import SyncMode from airbyte_cdk.test.catalog_builder import CatalogBuilder from airbyte_cdk.test.entrypoint_wrapper import read from airbyte_cdk.test.mock_http import HttpMocker, HttpRequest, HttpResponse from airbyte_cdk.test.mock_http.response_builder import find_template from airbyte_cdk.test.state_builder import StateBuilder -from airbyte_protocol.models import SyncMode from config_builder import ConfigBuilder from source_sentry.source import SourceSentry @@ -31,13 +31,18 @@ def test_read(self, http_mocker: HttpMocker): http_mocker.get( HttpRequest( url="https://sentry.io/api/0/projects/test%20organization/test%20project/issues/", - query_params={"query": "lastSeen:>1900-01-01T00:00:00.0Z"} + query_params={"query": "lastSeen:>1900-01-01T00:00:00.000000Z"} ), HttpResponse(body=json.dumps(find_template(self.fr_read_file, __file__)), status_code=200) ) # https://sentry.io/api/1/projects/airbyte-09/airbyte-09/issues/?query=lastSeen%3A%3E2022-01-01T00%3A00%3A00.0Z - output = read(SourceSentry(), self.config(), self.catalog()) + config = self.config() + catalog = self.catalog() + source = SourceSentry(config=config, catalog=catalog, state=None) + + output = read(source=source, config=config, catalog=catalog) + assert len(output.records) == 1 @HttpMocker() @@ -45,10 +50,16 @@ def test_read_incremental(self, http_mocker: HttpMocker): http_mocker.get( HttpRequest( url="https://sentry.io/api/0/projects/test%20organization/test%20project/issues/", - query_params={"query": "lastSeen:>2023-01-01T00:00:00.0Z"} + query_params={"query": "lastSeen:>2023-01-01T00:00:00.000000Z"} ), HttpResponse(body=json.dumps(find_template(self.inc_read_file, __file__)), status_code=200) ) - output = read(SourceSentry(), self.config(), self.catalog(SyncMode.incremental), self.state()) + config = self.config() + catalog = self.catalog() + state = self.state() + source = SourceSentry(config=config, catalog=catalog, state=state) + + output = read(source=source, config=config, catalog=catalog, state=state) + assert len(output.records) == 2 diff --git a/airbyte-integrations/connectors/source-sentry/unit_tests/test_source.py b/airbyte-integrations/connectors/source-sentry/unit_tests/test_source.py index 388ce946300e..f88267bc0848 100644 --- a/airbyte-integrations/connectors/source-sentry/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-sentry/unit_tests/test_source.py @@ -9,25 +9,28 @@ def test_source_wrong_credentials(requests_mock): - source = SourceSentry() - status, error = source.check_connection(logger=logging.getLogger("airbyte"), config={"auth_token": "test_auth_token"}) + config = {"auth_token": "test_auth_token"} + source = SourceSentry(config=config, catalog=None, state={}) + status, error = source.check_connection(logger=logging.getLogger("airbyte"), config=config) assert not status def test_check_connection(requests_mock): - source = SourceSentry() + config = {"auth_token": "token", "organization": "test-org", "project": "test-project", "hostname": "sentry.io"} + source = SourceSentry(config=config, catalog=None, state=None) logger_mock = MagicMock() requests_mock.get(url="https://sentry.io/api/0/projects/test-org/test-project/", json={"id": "id", "name": "test-project"}) - config = {"auth_token": "token", "organization": "test-org", "project": "test-project", "hostname": "sentry.io"} assert source.check_connection(logger_mock, config) == (True, None) def test_streams(mocker): - source = SourceSentry() config_mock = MagicMock() config_mock["auth_token"] = "test-token" config_mock["organization"] = "test-organization" config_mock["project"] = "test-project" + + source = SourceSentry(config=config_mock, catalog=None, state=None) streams = source.streams(config_mock) + expected_streams_number = 5 assert len(streams) == expected_streams_number diff --git a/airbyte-integrations/connectors/source-sentry/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-sentry/unit_tests/test_streams.py index 4f41688c2990..5f3c1f349ebd 100644 --- a/airbyte-integrations/connectors/source-sentry/unit_tests/test_streams.py +++ b/airbyte-integrations/connectors/source-sentry/unit_tests/test_streams.py @@ -5,14 +5,14 @@ from unittest.mock import MagicMock import pytest -from airbyte_protocol.models import SyncMode +from airbyte_cdk.models import SyncMode from source_sentry import SourceSentry INIT_ARGS = {"hostname": "sentry.io", "organization": "test-org", "project": "test-project"} def get_stream_by_name(stream_name): - streams = SourceSentry().streams(config=INIT_ARGS) + streams = SourceSentry(config={}, catalog=None, state={}).streams(config=INIT_ARGS) for stream in streams: if stream.name == stream_name: return stream @@ -24,7 +24,7 @@ def test_next_page_token(): response_mock = MagicMock() response_mock.headers = {} response_mock.links = {"next": {"cursor": "next-page"}} - assert stream.retriever.paginator.pagination_strategy.next_page_token(response=response_mock, last_records=[]) == "next-page" + assert stream.retriever.paginator.pagination_strategy.next_page_token(response=response_mock, last_page_size=0, last_record=None) == "next-page" def test_next_page_token_is_none(): @@ -33,7 +33,7 @@ def test_next_page_token_is_none(): response_mock.headers = {} # stop condition: "results": "false" response_mock.links = {"next": {"cursor": "", "results": "false"}} - assert stream.retriever.paginator.pagination_strategy.next_page_token(response=response_mock, last_records=[]) is None + assert stream.retriever.paginator.pagination_strategy.next_page_token(response=response_mock, last_page_size=0, last_record=None) is None def test_events_path(): @@ -77,7 +77,7 @@ def test_projects_request_params(): response_mock = MagicMock() response_mock.headers = {} response_mock.links = {"next": {"cursor": expected}} - assert stream.retriever.paginator.pagination_strategy.next_page_token(response=response_mock, last_records=[]) == expected + assert stream.retriever.paginator.pagination_strategy.next_page_token(response=response_mock, last_page_size=0, last_record=None) == expected def test_project_detail_request_params(): diff --git a/docs/integrations/sources/sentry.md b/docs/integrations/sources/sentry.md index 3bdd41ccc000..c9cb965c110d 100644 --- a/docs/integrations/sources/sentry.md +++ b/docs/integrations/sources/sentry.md @@ -63,33 +63,34 @@ Please be aware: this also means that any change older than 90 days will not be
Expand to review -| Version | Date | Pull Request | Subject | -| :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------------------- | -| 0.5.3 | 2024-06-06 | [39180](https://github.com/airbytehq/airbyte/pull/39180) | [autopull] Upgrade base image to v1.2.2 | -| 0.5.2 | 2024-05-20 | [38263](https://github.com/airbytehq/airbyte/pull/38263) | Replace AirbyteLogger with logging.Logger | -| 0.5.1 | 2024-04-01 | [36731](https://github.com/airbytehq/airbyte/pull/36731) | Add `%Y-%m-%dT%H:%M:%S%z` to date time formats. | -| 0.5.0 | 2024-03-27 | [35755](https://github.com/airbytehq/airbyte/pull/35755) | Migrate to low-code. | -| 0.4.2 | 2024-03-25 | [36448](https://github.com/airbytehq/airbyte/pull/36448) | Unpin CDK version | -| 0.4.1 | 2024-02-12 | [35145](https://github.com/airbytehq/airbyte/pull/35145) | Manage dependencies with Poetry | -| 0.4.0 | 2024-01-05 | [32957](https://github.com/airbytehq/airbyte/pull/32957) | Added undeclared fields to schema and migrated to base image | -| 0.3.0 | 2023-09-05 | [30192](https://github.com/airbytehq/airbyte/pull/30192) | Added undeclared fields to schema | -| 0.2.4 | 2023-08-14 | [29401](https://github.com/airbytehq/airbyte/pull/29401) | Fix `null` value in stream state | -| 0.2.3 | 2023-08-03 | [29023](https://github.com/airbytehq/airbyte/pull/29023) | Add incremental for `issues` stream | -| 0.2.2 | 2023-05-02 | [25759](https://github.com/airbytehq/airbyte/pull/25759) | Change stream that used in check_connection | -| 0.2.1 | 2023-04-27 | [25602](https://github.com/airbytehq/airbyte/pull/25602) | Add validation of project and organization names during connector setup | -| 0.2.0 | 2023-04-03 | [23923](https://github.com/airbytehq/airbyte/pull/23923) | Add Releases stream | -| 0.1.12 | 2023-03-01 | [23619](https://github.com/airbytehq/airbyte/pull/23619) | Fix bug when `stream state` is `None` or any other bad value occurs | -| 0.1.11 | 2023-02-02 | [22303](https://github.com/airbytehq/airbyte/pull/22303) | Turn ON default AvailabilityStrategy | -| 0.1.10 | 2023-01-27 | [22041](https://github.com/airbytehq/airbyte/pull/22041) | Set `AvailabilityStrategy` for streams explicitly to `None` | -| 0.1.9 | 2022-12-20 | [21864](https://github.com/airbytehq/airbyte/pull/21864) | Add state persistence to incremental sync | -| 0.1.8 | 2022-12-20 | [20709](https://github.com/airbytehq/airbyte/pull/20709) | Add incremental sync | -| 0.1.7 | 2022-09-30 | [17466](https://github.com/airbytehq/airbyte/pull/17466) | Migrate to per-stream states | -| 0.1.6 | 2022-08-29 | [16112](https://github.com/airbytehq/airbyte/pull/16112) | Revert back to the Python CDK | -| 0.1.5 | 2022-08-24 | [15911](https://github.com/airbytehq/airbyte/pull/15911) | Bugfix to allowing reading schemas at runtime | -| 0.1.4 | 2022-08-19 | [15800](https://github.com/airbytehq/airbyte/pull/15800) | Bugfix to allow reading sentry.yaml at runtime | -| 0.1.3 | 2022-08-17 | [15734](https://github.com/airbytehq/airbyte/pull/15734) | Fix yaml based on the new schema validator | -| 0.1.2 | 2021-12-28 | [15345](https://github.com/airbytehq/airbyte/pull/15345) | Migrate to config-based framework | -| 0.1.1 | 2021-12-28 | [8628](https://github.com/airbytehq/airbyte/pull/8628) | Update fields in source-connectors specifications | -| 0.1.0 | 2021-10-12 | [6975](https://github.com/airbytehq/airbyte/pull/6975) | New Source: Sentry | +| Version | Date | Pull Request | Subject | +|:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------| +| 0.6.0 | 2024-10-30 | [47988](https://github.com/airbytehq/airbyte/pull/47988) | Upgrade the CDK and startup files to sync incremental streams concurrently | +| 0.5.3 | 2024-06-06 | [39180](https://github.com/airbytehq/airbyte/pull/39180) | [autopull] Upgrade base image to v1.2.2 | +| 0.5.2 | 2024-05-20 | [38263](https://github.com/airbytehq/airbyte/pull/38263) | Replace AirbyteLogger with logging.Logger | +| 0.5.1 | 2024-04-01 | [36731](https://github.com/airbytehq/airbyte/pull/36731) | Add `%Y-%m-%dT%H:%M:%S%z` to date time formats. | +| 0.5.0 | 2024-03-27 | [35755](https://github.com/airbytehq/airbyte/pull/35755) | Migrate to low-code. | +| 0.4.2 | 2024-03-25 | [36448](https://github.com/airbytehq/airbyte/pull/36448) | Unpin CDK version | +| 0.4.1 | 2024-02-12 | [35145](https://github.com/airbytehq/airbyte/pull/35145) | Manage dependencies with Poetry | +| 0.4.0 | 2024-01-05 | [32957](https://github.com/airbytehq/airbyte/pull/32957) | Added undeclared fields to schema and migrated to base image | +| 0.3.0 | 2023-09-05 | [30192](https://github.com/airbytehq/airbyte/pull/30192) | Added undeclared fields to schema | +| 0.2.4 | 2023-08-14 | [29401](https://github.com/airbytehq/airbyte/pull/29401) | Fix `null` value in stream state | +| 0.2.3 | 2023-08-03 | [29023](https://github.com/airbytehq/airbyte/pull/29023) | Add incremental for `issues` stream | +| 0.2.2 | 2023-05-02 | [25759](https://github.com/airbytehq/airbyte/pull/25759) | Change stream that used in check_connection | +| 0.2.1 | 2023-04-27 | [25602](https://github.com/airbytehq/airbyte/pull/25602) | Add validation of project and organization names during connector setup | +| 0.2.0 | 2023-04-03 | [23923](https://github.com/airbytehq/airbyte/pull/23923) | Add Releases stream | +| 0.1.12 | 2023-03-01 | [23619](https://github.com/airbytehq/airbyte/pull/23619) | Fix bug when `stream state` is `None` or any other bad value occurs | +| 0.1.11 | 2023-02-02 | [22303](https://github.com/airbytehq/airbyte/pull/22303) | Turn ON default AvailabilityStrategy | +| 0.1.10 | 2023-01-27 | [22041](https://github.com/airbytehq/airbyte/pull/22041) | Set `AvailabilityStrategy` for streams explicitly to `None` | +| 0.1.9 | 2022-12-20 | [21864](https://github.com/airbytehq/airbyte/pull/21864) | Add state persistence to incremental sync | +| 0.1.8 | 2022-12-20 | [20709](https://github.com/airbytehq/airbyte/pull/20709) | Add incremental sync | +| 0.1.7 | 2022-09-30 | [17466](https://github.com/airbytehq/airbyte/pull/17466) | Migrate to per-stream states | +| 0.1.6 | 2022-08-29 | [16112](https://github.com/airbytehq/airbyte/pull/16112) | Revert back to the Python CDK | +| 0.1.5 | 2022-08-24 | [15911](https://github.com/airbytehq/airbyte/pull/15911) | Bugfix to allowing reading schemas at runtime | +| 0.1.4 | 2022-08-19 | [15800](https://github.com/airbytehq/airbyte/pull/15800) | Bugfix to allow reading sentry.yaml at runtime | +| 0.1.3 | 2022-08-17 | [15734](https://github.com/airbytehq/airbyte/pull/15734) | Fix yaml based on the new schema validator | +| 0.1.2 | 2021-12-28 | [15345](https://github.com/airbytehq/airbyte/pull/15345) | Migrate to config-based framework | +| 0.1.1 | 2021-12-28 | [8628](https://github.com/airbytehq/airbyte/pull/8628) | Update fields in source-connectors specifications | +| 0.1.0 | 2021-10-12 | [6975](https://github.com/airbytehq/airbyte/pull/6975) | New Source: Sentry |
From 91f6bcd2df08c656c8f1c48e72271f11909c34d5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Thu, 31 Oct 2024 22:08:52 +0200 Subject: [PATCH 511/808] =?UTF-8?q?=F0=9F=90=99=20source-chargebee:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-10-31]=20(#47099)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chargebee/metadata.yaml | 2 +- .../connectors/source-chargebee/poetry.lock | 32 +++++++++---------- .../source-chargebee/pyproject.toml | 2 +- docs/integrations/sources/chargebee.md | 1 + 4 files changed, 19 insertions(+), 18 deletions(-) diff --git a/airbyte-integrations/connectors/source-chargebee/metadata.yaml b/airbyte-integrations/connectors/source-chargebee/metadata.yaml index 32042e791341..9946d5a034e2 100644 --- a/airbyte-integrations/connectors/source-chargebee/metadata.yaml +++ b/airbyte-integrations/connectors/source-chargebee/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 686473f1-76d9-4994-9cc7-9b13da46147c - dockerImageTag: 0.6.17 + dockerImageTag: 0.6.18 dockerRepository: airbyte/source-chargebee documentationUrl: https://docs.airbyte.com/integrations/sources/chargebee githubIssueLabel: source-chargebee diff --git a/airbyte-integrations/connectors/source-chargebee/poetry.lock b/airbyte-integrations/connectors/source-chargebee/poetry.lock index 26e63325f7dd..3a1fef63b3bc 100644 --- a/airbyte-integrations/connectors/source-chargebee/poetry.lock +++ b/airbyte-integrations/connectors/source-chargebee/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "5.16.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.16.0-py3-none-any.whl", hash = "sha256:71f909ffc489e3c20ee2ee8a307fe30035bc3f62b221951ede1f2063b76b49a9"}, - {file = "airbyte_cdk-5.16.0.tar.gz", hash = "sha256:1f214a93c3ec20c047d13c4612de0cdaf76fb87e8f312fd7a8ea1e216ad1794a"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -743,13 +743,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.138" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.138-py3-none-any.whl", hash = "sha256:5c2bd5c11c75f7b3d06a0f06b115186e7326ca969fd26d66ffc65a0669012aee"}, + {file = "langsmith-0.1.138.tar.gz", hash = "sha256:1ecf613bb52f6bf17f1510e24ad8b70d4b0259bc9d3dbfd69b648c66d4644f0b"}, ] [package.dependencies] @@ -1727,23 +1727,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1795,13 +1795,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-chargebee/pyproject.toml b/airbyte-integrations/connectors/source-chargebee/pyproject.toml index ccee2fe59ffa..ca3661c86050 100644 --- a/airbyte-integrations/connectors/source-chargebee/pyproject.toml +++ b/airbyte-integrations/connectors/source-chargebee/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.17" +version = "0.6.18" name = "source-chargebee" description = "Source implementation for Chargebee." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/chargebee.md b/docs/integrations/sources/chargebee.md index 4f6169698e9b..d3808ae294b5 100644 --- a/docs/integrations/sources/chargebee.md +++ b/docs/integrations/sources/chargebee.md @@ -104,6 +104,7 @@ The Chargebee connector should not run into [Chargebee API](https://apidocs.char | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------| +| 0.6.18 | 2024-10-31 | [47099](https://github.com/airbytehq/airbyte/pull/47099) | Update dependencies | | 0.6.17 | 2024-10-28 | [46846](https://github.com/airbytehq/airbyte/pull/47387) | Update CDK dependencies to yield parent records more frequently | | 0.6.16 | 2024-10-12 | [46846](https://github.com/airbytehq/airbyte/pull/46846) | Update dependencies | | 0.6.15 | 2024-10-05 | [46478](https://github.com/airbytehq/airbyte/pull/46478) | Update dependencies | From 96429eae38cc0533151a932cbaf4e182ca1d0f31 Mon Sep 17 00:00:00 2001 From: zeev-finaloop <157277287+zeev-finaloop@users.noreply.github.com> Date: Thu, 31 Oct 2024 22:13:31 +0200 Subject: [PATCH 512/808] Destination Snowflake: add snowflake transaction wrapper for rollback support (#46989) --- .../destination-snowflake/metadata.yaml | 2 +- .../SnowflakeDestinationHandler.kt | 21 ++++++++++++++++++- docs/integrations/destinations/snowflake.md | 1 + 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/destination-snowflake/metadata.yaml b/airbyte-integrations/connectors/destination-snowflake/metadata.yaml index e17dbce50550..d5681dded870 100644 --- a/airbyte-integrations/connectors/destination-snowflake/metadata.yaml +++ b/airbyte-integrations/connectors/destination-snowflake/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 424892c4-daac-4491-b35d-c6688ba547ba - dockerImageTag: 3.15.0 + dockerImageTag: 3.15.1 dockerRepository: airbyte/destination-snowflake documentationUrl: https://docs.airbyte.com/integrations/destinations/snowflake githubIssueLabel: destination-snowflake diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/kotlin/io/airbyte/integrations/destination/snowflake/typing_deduping/SnowflakeDestinationHandler.kt b/airbyte-integrations/connectors/destination-snowflake/src/main/kotlin/io/airbyte/integrations/destination/snowflake/typing_deduping/SnowflakeDestinationHandler.kt index f6e0ba933cb3..7d4ed19f4134 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/kotlin/io/airbyte/integrations/destination/snowflake/typing_deduping/SnowflakeDestinationHandler.kt +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/kotlin/io/airbyte/integrations/destination/snowflake/typing_deduping/SnowflakeDestinationHandler.kt @@ -246,8 +246,27 @@ class SnowflakeDestinationHandler( @Throws(Exception::class) override fun execute(sql: Sql) { - val transactions = sql.asSqlStrings("BEGIN TRANSACTION", "COMMIT") + val beginBlock = + """ + BEGIN + BEGIN TRANSACTION + """.trimIndent() + + val endBlock = + """ + COMMIT; + EXCEPTION + WHEN OTHER THEN + ROLLBACK; + BEGIN + RAISE; + END; + END + """.trimIndent() + + val transactions = sql.asSqlStrings(beginBlock, endBlock) val queryId = UUID.randomUUID() + for (transaction in transactions) { val transactionId = UUID.randomUUID() LOGGER.info("Executing sql {}-{}: {}", queryId, transactionId, transaction) diff --git a/docs/integrations/destinations/snowflake.md b/docs/integrations/destinations/snowflake.md index fe5fa3e7b036..529013d8f99a 100644 --- a/docs/integrations/destinations/snowflake.md +++ b/docs/integrations/destinations/snowflake.md @@ -266,6 +266,7 @@ desired namespace. | Version | Date | Pull Request | Subject | | :-------------- | :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 3.15.1 | 2024-10-20 | [\#46989](https://github.com/airbytehq/airbyte/pull/46989) | add snowflake transaction wrapper for rollback support | | 3.15.0 | 2024-09-18 | [\#45437](https://github.com/airbytehq/airbyte/pull/45437) | upgrade all dependencies | | 3.14.0 | 2024-09-18 | [\#45431](https://github.com/airbytehq/airbyte/pull/45431) | truncate large records queries | | 3.13.0 | 2024-09-17 | [\#45422](https://github.com/airbytehq/airbyte/pull/45422) | speed up metadata queries | From d99ea7f79fc4e67bab5275e6fb85ceb3fa83b11f Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Fri, 1 Nov 2024 02:32:24 +0530 Subject: [PATCH 513/808] source-eventzilla contribution from parthiv11 (#47270) Co-authored-by: Marcos Marx --- .../connectors/source-eventzilla/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-eventzilla/icon.svg | 5 + .../source-eventzilla/manifest.yaml | 794 ++++++++++++++++++ .../source-eventzilla/metadata.yaml | 35 + docs/integrations/sources/eventzilla.md | 29 + 6 files changed, 913 insertions(+) create mode 100644 airbyte-integrations/connectors/source-eventzilla/README.md create mode 100644 airbyte-integrations/connectors/source-eventzilla/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-eventzilla/icon.svg create mode 100644 airbyte-integrations/connectors/source-eventzilla/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-eventzilla/metadata.yaml create mode 100644 docs/integrations/sources/eventzilla.md diff --git a/airbyte-integrations/connectors/source-eventzilla/README.md b/airbyte-integrations/connectors/source-eventzilla/README.md new file mode 100644 index 000000000000..0ed55a327014 --- /dev/null +++ b/airbyte-integrations/connectors/source-eventzilla/README.md @@ -0,0 +1,33 @@ +# Eventzilla +This directory contains the manifest-only connector for `source-eventzilla`. + +The Airbyte connector for Eventzilla enables seamless integration between Eventzilla and various data destinations. It automates the extraction of event management data, such as attendee details, ticket sales, and event performance metrics, and syncs it with your preferred data warehouses or analytics tools. This connector helps organizations centralize and analyze their Eventzilla data for reporting, monitoring, and strategic insights. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-eventzilla:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-eventzilla build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-eventzilla test +``` + diff --git a/airbyte-integrations/connectors/source-eventzilla/acceptance-test-config.yml b/airbyte-integrations/connectors/source-eventzilla/acceptance-test-config.yml new file mode 100644 index 000000000000..3bd9cc1242ca --- /dev/null +++ b/airbyte-integrations/connectors/source-eventzilla/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-eventzilla:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-eventzilla/icon.svg b/airbyte-integrations/connectors/source-eventzilla/icon.svg new file mode 100644 index 000000000000..863c5ba893f0 --- /dev/null +++ b/airbyte-integrations/connectors/source-eventzilla/icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/airbyte-integrations/connectors/source-eventzilla/manifest.yaml b/airbyte-integrations/connectors/source-eventzilla/manifest.yaml new file mode 100644 index 000000000000..256396b5093e --- /dev/null +++ b/airbyte-integrations/connectors/source-eventzilla/manifest.yaml @@ -0,0 +1,794 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + The Airbyte connector for Eventzilla enables seamless integration between + Eventzilla and various data destinations. It automates the extraction of event + management data, such as attendee details, ticket sales, and event performance + metrics, and syncs it with your preferred data warehouses or analytics tools. + This connector helps organizations centralize and analyze their Eventzilla + data for reporting, monitoring, and strategic insights. + +check: + type: CheckStream + stream_names: + - tickets + +definitions: + streams: + events: + type: DeclarativeStream + name: events + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /events + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - events + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/events" + attendees: + type: DeclarativeStream + name: attendees + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /events/{{ stream_partition.event_id }}/attendees + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - attendees + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: event_id + stream: + $ref: "#/definitions/streams/events" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/attendees" + categories: + type: DeclarativeStream + name: categories + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /categories + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - categories + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/categories" + tickets: + type: DeclarativeStream + name: tickets + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /events/{{ stream_partition.event_id }}/tickets + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - tickets + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: event_id + stream: + $ref: "#/definitions/streams/events" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tickets" + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - users + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + transactions: + type: DeclarativeStream + name: transactions + primary_key: + - refno + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /events/{{ stream_partition.event_id }}/transactions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - transactions + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: event_id + stream: + $ref: "#/definitions/streams/events" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/transactions" + base_requester: + type: HttpRequester + url_base: https://www.eventzillaapi.net/api/v2 + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"x-api-key\"] }}" + inject_into: + type: RequestOption + field_name: x-api-key + inject_into: header + +streams: + - $ref: "#/definitions/streams/events" + - $ref: "#/definitions/streams/attendees" + - $ref: "#/definitions/streams/categories" + - $ref: "#/definitions/streams/tickets" + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/transactions" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - x-api-key + properties: + x-api-key: + type: string + description: >- + API key to use. Generate it by creating a new application within your + Eventzilla account settings under Settings > App Management. + name: x-api-key + order: 0 + title: API Key + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + events: true + attendees: false + categories: false + tickets: false + users: false + transactions: false + testedStreams: + events: + streamHash: f9fe484687d4e31ce37624e7eca6056fffe086ba + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + attendees: + streamHash: b6fc0aa7a306b8d42beab9cb83f46f6dfdb8d615 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + categories: + streamHash: 12edf4da2b31d4f53713f6562e12403f4b94a5e3 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + tickets: + streamHash: be36a1402a27c4d6bc69ffe88f9c6dfd8acb451e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + users: + streamHash: 136f69bf38a643670c0de65d045697a971d74459 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + transactions: + streamHash: 6e1d3a52da1e821680358c6bc8735bd39e9308c5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://developer.eventzilla.net/docs/ + +schemas: + events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + bgimage_url: + type: + - string + - "null" + categories: + type: + - string + - "null" + currency: + type: + - string + - "null" + dateid: + type: + - number + - "null" + description_html: + type: + - string + - "null" + end_date: + type: + - string + - "null" + end_time: + type: + - string + - "null" + id: + type: number + invite_code: + type: + - string + - "null" + language: + type: + - string + - "null" + logo_url: + type: + - string + - "null" + show_remaining: + type: + - boolean + - "null" + start_date: + type: + - string + - "null" + start_time: + type: + - string + - "null" + status: + type: + - string + - "null" + tickets_sold: + type: + - number + - "null" + tickets_total: + type: + - number + - "null" + time_zone: + type: + - string + - "null" + timezone_code: + type: + - string + - "null" + title: + type: + - string + - "null" + twitter_hashtag: + type: + - string + - "null" + url: + type: + - string + - "null" + utc_offset: + type: + - string + - "null" + venue: + type: + - string + - "null" + required: + - id + attendees: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + bar_code: + type: + - string + - "null" + buyer_first_name: + type: + - string + - "null" + buyer_last_name: + type: + - string + - "null" + email: + type: + - string + - "null" + event_date: + type: + - string + - "null" + event_id: + type: + - number + - "null" + first_name: + type: + - string + - "null" + id: + type: number + is_attended: + type: + - string + - "null" + last_name: + type: + - string + - "null" + payment_type: + type: + - string + - "null" + questions: + type: + - array + - "null" + refno: + type: + - string + - "null" + ticket_type: + type: + - string + - "null" + transaction_amount: + type: + - number + - "null" + transaction_date: + type: + - string + - "null" + transaction_status: + type: + - string + - "null" + required: + - id + categories: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + category: + type: string + required: + - category + tickets: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + additional_instructions: + type: + - string + - "null" + allow_partial_payment: + type: + - boolean + - "null" + boxoffice_only: + type: + - boolean + - "null" + group_discount: + type: + - number + - "null" + group_percentage: + type: + - number + - "null" + group_price: + type: + - number + - "null" + id: + type: number + is_visible: + type: + - boolean + - "null" + limit_maximum: + type: + - number + - "null" + limit_minimum: + type: + - number + - "null" + partial_payment_amount: + type: + - number + - "null" + partial_payment_frequency: + type: + - string + - "null" + partial_payment_installments: + type: + - number + - "null" + price: + type: + - number + - "null" + quantity_total: + type: + - number + - "null" + sales_end_date: + type: + - string + - "null" + sales_end_time: + type: + - string + - "null" + sales_start_date: + type: + - string + - "null" + sales_start_time: + type: + - string + - "null" + ticket_type: + type: + - string + - "null" + title: + type: + - string + - "null" + unlock_code: + type: + - string + - "null" + required: + - id + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + address_country: + type: + - string + - "null" + address_line1: + type: + - string + - "null" + address_line2: + type: + - string + - "null" + address_locality: + type: + - string + - "null" + address_region: + type: + - string + - "null" + avatar_url: + type: + - string + - "null" + company: + type: + - string + - "null" + email: + type: + - string + - "null" + facebook_id: + type: + - string + - "null" + first_name: + type: + - string + - "null" + id: + type: number + last_name: + type: + - string + - "null" + last_seen: + type: + - string + - "null" + phone_primary: + type: + - string + - "null" + timezone: + type: + - string + - "null" + twitter_id: + type: + - string + - "null" + user_type: + type: + - string + - "null" + username: + type: + - string + - "null" + website: + type: + - string + - "null" + zip_code: + type: + - string + - "null" + required: + - id + transactions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + buyer_first_name: + type: + - string + - "null" + buyer_last_name: + type: + - string + - "null" + checkout_id: + type: + - number + - "null" + comments: + type: + - string + - "null" + email: + type: + - string + - "null" + event_date: + type: + - string + - "null" + event_id: + type: + - number + - "null" + eventzilla_fee: + type: + - number + - "null" + payment_type: + type: + - string + - "null" + promo_code: + type: + - string + - "null" + refno: + type: string + tickets_in_transaction: + type: + - number + - "null" + title: + type: + - string + - "null" + transaction_amount: + type: + - number + - "null" + transaction_date: + type: + - string + - "null" + transaction_discount: + type: + - number + - "null" + transaction_status: + type: + - string + - "null" + transaction_tax: + type: + - number + - "null" + user_id: + type: + - number + - "null" + required: + - refno diff --git a/airbyte-integrations/connectors/source-eventzilla/metadata.yaml b/airbyte-integrations/connectors/source-eventzilla/metadata.yaml new file mode 100644 index 000000000000..e974eca0464e --- /dev/null +++ b/airbyte-integrations/connectors/source-eventzilla/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "eventzillaapi.net" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-eventzilla + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.1@sha256:9e574a3ac58b798da977f55cc21073981c4941b5c61894e6c5e943640c1ddf23 + connectorSubtype: api + connectorType: source + definitionId: ba6ddcf2-00c7-44f2-9cee-2d295bd0c854 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-eventzilla + githubIssueLabel: source-eventzilla + icon: icon.svg + license: MIT + name: Eventzilla + releaseDate: 2024-10-23 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/eventzilla + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/eventzilla.md b/docs/integrations/sources/eventzilla.md new file mode 100644 index 000000000000..e9fdbe5c276a --- /dev/null +++ b/docs/integrations/sources/eventzilla.md @@ -0,0 +1,29 @@ +# Eventzilla +The Airbyte connector for Eventzilla enables seamless integration between Eventzilla and various data destinations. It automates the extraction of event management data, such as attendee details, ticket sales, and event performance metrics, and syncs it with your preferred data warehouses or analytics tools. This connector helps organizations centralize and analyze their Eventzilla data for reporting, monitoring, and strategic insights. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `x-api-key` | `string` | API Key. API key to use. Generate it by creating a new application within your Eventzilla account settings under Settings > App Management. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| events | id | DefaultPaginator | ✅ | ❌ | +| attendees | id | DefaultPaginator | ✅ | ❌ | +| categories | | DefaultPaginator | ✅ | ❌ | +| tickets | id | DefaultPaginator | ✅ | ❌ | +| users | id | DefaultPaginator | ✅ | ❌ | +| transactions | refno | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-23 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From 682f2c67017304b4042bb02f3a85795040e7ea10 Mon Sep 17 00:00:00 2001 From: Om Bhardwaj <115864495+ombhardwajj@users.noreply.github.com> Date: Fri, 1 Nov 2024 02:34:50 +0530 Subject: [PATCH 514/808] source-financial-modelling contribution from ombhardwajj (#47224) Co-authored-by: Marcos Marx --- .../source-financial-modelling/README.md | 35 + .../acceptance-test-config.yml | 17 + .../source-financial-modelling/icon.svg | 1 + .../source-financial-modelling/manifest.yaml | 1358 +++++++++++++++++ .../source-financial-modelling/metadata.yaml | 35 + .../sources/financial-modelling.md | 47 + 6 files changed, 1493 insertions(+) create mode 100644 airbyte-integrations/connectors/source-financial-modelling/README.md create mode 100644 airbyte-integrations/connectors/source-financial-modelling/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-financial-modelling/icon.svg create mode 100644 airbyte-integrations/connectors/source-financial-modelling/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-financial-modelling/metadata.yaml create mode 100644 docs/integrations/sources/financial-modelling.md diff --git a/airbyte-integrations/connectors/source-financial-modelling/README.md b/airbyte-integrations/connectors/source-financial-modelling/README.md new file mode 100644 index 000000000000..8fc4d04a4152 --- /dev/null +++ b/airbyte-integrations/connectors/source-financial-modelling/README.md @@ -0,0 +1,35 @@ +# Financial Modelling +This directory contains the manifest-only connector for `source-financial-modelling`. + +FMP provides financial data. +Using this connector we can extract data from various endpoints like Stocks list, ETFs list , Exchange Symbols and Historical MarketCap etc +Docs : https://site.financialmodelingprep.com/developer/docs + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-financial-modelling:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-financial-modelling build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-financial-modelling test +``` + diff --git a/airbyte-integrations/connectors/source-financial-modelling/acceptance-test-config.yml b/airbyte-integrations/connectors/source-financial-modelling/acceptance-test-config.yml new file mode 100644 index 000000000000..8d11a787ae22 --- /dev/null +++ b/airbyte-integrations/connectors/source-financial-modelling/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-financial-modelling:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-financial-modelling/icon.svg b/airbyte-integrations/connectors/source-financial-modelling/icon.svg new file mode 100644 index 000000000000..d2a2d8a9caa8 --- /dev/null +++ b/airbyte-integrations/connectors/source-financial-modelling/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-financial-modelling/manifest.yaml b/airbyte-integrations/connectors/source-financial-modelling/manifest.yaml new file mode 100644 index 000000000000..a47f08df6f1a --- /dev/null +++ b/airbyte-integrations/connectors/source-financial-modelling/manifest.yaml @@ -0,0 +1,1358 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + FMP provides financial data. + + Using this connector we can extract data from various endpoints like Stocks + list, ETFs list , Exchange Symbols and Historical MarketCap etc + + Docs : https://site.financialmodelingprep.com/developer/docs + +check: + type: CheckStream + stream_names: + - stocks + +definitions: + streams: + stocks: + type: DeclarativeStream + name: stocks + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: stock/list + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stocks" + etfs: + type: DeclarativeStream + name: etfs + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: etf/list + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/etfs" + stock_available_traded: + type: DeclarativeStream + name: stock_available_traded + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: available-traded/list + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_available_traded" + stock_cik_list: + type: DeclarativeStream + name: stock_cik_list + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: cik_list + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_cik_list" + stock_euronext_symbols: + type: DeclarativeStream + name: stock_euronext_symbols + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: symbol/available-euronext + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_euronext_symbols" + stock_exchange_symbols: + type: DeclarativeStream + name: stock_exchange_symbols + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: symbol/{{ config['exchange'] }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_exchange_symbols" + stock_available_indexes: + type: DeclarativeStream + name: stock_available_indexes + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: symbol/available-indexes + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_available_indexes" + company_profile: + type: DeclarativeStream + name: company_profile + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: profile/{{ stream_partition.symbol}} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: symbol + partition_field: symbol + stream: + $ref: "#/definitions/streams/stock_exchange_symbols" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/company_profile" + stock_screener: + type: DeclarativeStream + name: stock_screener + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: stock-screener + http_method: GET + request_parameters: + marketCapMoreThan: "{{ config['marketcapmorethan'] }}" + marketCapLowerThan: "{{ config['marketcaplowerthan'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_screener" + historical_market_cap: + type: DeclarativeStream + name: historical_market_cap + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: historical-market-capitalization/{{ stream_partition.symbol}} + http_method: GET + request_parameters: + limit: "500" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: symbol + partition_field: symbol + stream: + $ref: "#/definitions/streams/stock_exchange_symbols" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date + cursor_datetime_formats: + - "%Y-%m-%d" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: from + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: to + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/historical_market_cap" + delisted_companies: + type: DeclarativeStream + name: delisted_companies + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: delisted-companies + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/delisted_companies" + exchange_prices: + type: DeclarativeStream + name: exchange_prices + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: stock-price-change/{{ stream_partition.symbol}} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: symbol + partition_field: symbol + stream: + $ref: "#/definitions/streams/stock_exchange_symbols" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/exchange_prices" + all_realtime_stock_prices: + type: DeclarativeStream + name: all_realtime_stock_prices + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: stock/full/real-time-price + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/all_realtime_stock_prices" + all_fx_prices: + type: DeclarativeStream + name: all_fx_prices + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: fx + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/all_fx_prices" + stock_historical_price: + type: DeclarativeStream + name: stock_historical_price + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + historical-chart/{{ config['time_frame'] }}/{{ + stream_partition.symbol}} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: symbol + partition_field: symbol + stream: + $ref: "#/definitions/streams/stock_exchange_symbols" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S" + datetime_format: "%Y-%m-%d %H:%M:%S" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: from + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: to + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_historical_price" + forex_list: + type: DeclarativeStream + name: forex_list + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: symbol/available-forex-currency-pairs + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/forex_list" + cryptocurrencies_list: + type: DeclarativeStream + name: cryptocurrencies_list + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: symbol/available-cryptocurrencies + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/cryptocurrencies_list" + base_requester: + type: HttpRequester + url_base: https://financialmodelingprep.com/api/v3/ + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_key\"] }}" + inject_into: + type: RequestOption + field_name: apikey + inject_into: request_parameter + +streams: + - $ref: "#/definitions/streams/stocks" + - $ref: "#/definitions/streams/etfs" + - $ref: "#/definitions/streams/stock_available_traded" + - $ref: "#/definitions/streams/stock_cik_list" + - $ref: "#/definitions/streams/stock_euronext_symbols" + - $ref: "#/definitions/streams/stock_exchange_symbols" + - $ref: "#/definitions/streams/stock_available_indexes" + - $ref: "#/definitions/streams/company_profile" + - $ref: "#/definitions/streams/stock_screener" + - $ref: "#/definitions/streams/historical_market_cap" + - $ref: "#/definitions/streams/delisted_companies" + - $ref: "#/definitions/streams/exchange_prices" + - $ref: "#/definitions/streams/all_realtime_stock_prices" + - $ref: "#/definitions/streams/all_fx_prices" + - $ref: "#/definitions/streams/stock_historical_price" + - $ref: "#/definitions/streams/forex_list" + - $ref: "#/definitions/streams/cryptocurrencies_list" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - start_date + properties: + api_key: + type: string + order: 0 + title: API Key + airbyte_secret: true + exchange: + type: string + description: >- + The stock exchange : AMEX, AMS, AQS, ASX, ATH, BER, BME, BRU, BSE, + BUD, BUE, BVC, CAI, CBOE, CNQ, CPH, DFM, DOH, DUS, DXE, EGX, EURONEXT, + HAM, HEL, HKSE, ICE, IOB, IST, JKT, JNB, JPX, KLS, KOE, KSC, KUW, LSE, + MCX, MEX, MIL, MUN, NASDAQ, NEO, NSE, NYSE, NZE, OEM, OQX, OSL, OTC, + PNK, PRA, RIS, SAO, SAU, SES, SET, SGO, SHH, SHZ, SIX, STO, STU, TAI, + TLV, TSX, TSXV, TWO, VIE, VSE, WSE, XETRA + order: 1 + title: Exchange + default: NASDAQ + marketcapmorethan: + type: string + description: >- + Used in screener to filter out stocks with a market cap more than the + give marketcap + order: 2 + title: Market Cap More Than + marketcaplowerthan: + type: string + description: >- + Used in screener to filter out stocks with a market cap lower than the + give marketcap + order: 3 + title: Market Cap Lower Than + time_frame: + type: string + description: For example 1min, 5min, 15min, 30min, 1hour, 4hour + order: 4 + title: Time Frame + default: 4hour + enum: + - 1min + - 5min + - 15min + - 30min + - 1hour + - 4hour + start_date: + type: string + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + order: 5 + additionalProperties: true + +metadata: + autoImportSchema: + stocks: true + etfs: true + stock_available_traded: true + stock_cik_list: true + stock_euronext_symbols: true + stock_exchange_symbols: true + stock_available_indexes: true + company_profile: true + stock_screener: true + historical_market_cap: true + delisted_companies: true + exchange_prices: true + all_realtime_stock_prices: true + all_fx_prices: true + stock_historical_price: true + forex_list: true + cryptocurrencies_list: true + testedStreams: + stocks: + streamHash: 3cd737fdc10d93f8ad402f1781e4eb2a950bc448 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + etfs: + streamHash: 673db891b91ef5e11d7654988deca5b9a84126c1 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_available_traded: + streamHash: b7a0c8bf3655b170d6abd23b084c892e530a1eda + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_cik_list: + streamHash: b96ddd9895c89cd2c2172b4e0c6edd3451d8cee2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_euronext_symbols: + streamHash: 97ecd8911004c1f18f5f27a725cb82966bfadc08 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_exchange_symbols: + streamHash: 530a5008ec34b27f4ed2369bd12d008a0a8f072b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_available_indexes: + streamHash: 1b924b9c1aca45e1f5549477e35ab46c97119d25 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + company_profile: + streamHash: ca5f0a46e2125e9c19bf1b4864708dfef2410159 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_screener: + streamHash: 195eabf9d812e08642831553194a031a68afea78 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + historical_market_cap: + streamHash: 3ae2520b60408749857f78c32660dc58365bcf99 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + delisted_companies: + streamHash: 04a19a5fe538f784395c7cae746e1e3b8e9abaad + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + exchange_prices: + streamHash: 5fb72a0ee2b701570641f692e8949861867f77f5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + all_realtime_stock_prices: + streamHash: 4bcca1e1e7d9d89eb4c0e9176b0e63088434cd0a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + all_fx_prices: + streamHash: c44a516cc4eabd4a8a53ae88903f6c9b66e6a41a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_historical_price: + streamHash: 56225db87b1856894c6ef2001bcab9caf4dac374 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + forex_list: + hasRecords: true + streamHash: f50787ec42b2f4cdec2297da114c99b830a5115a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + cryptocurrencies_list: + hasRecords: true + streamHash: 1db6a40be5714e012f2cd25bb59eea41fa1cd361 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: {} + +schemas: + stocks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + exchange: + type: + - string + - "null" + exchangeShortName: + type: + - string + - "null" + name: + type: + - string + - "null" + price: + type: + - number + - "null" + symbol: + type: + - string + - "null" + etfs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + exchange: + type: + - string + - "null" + exchangeShortName: + type: + - string + - "null" + name: + type: + - string + - "null" + price: + type: + - number + - "null" + symbol: + type: + - string + - "null" + stock_available_traded: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + exchange: + type: + - string + - "null" + exchangeShortName: + type: + - string + - "null" + name: + type: + - string + - "null" + price: + type: + - number + - "null" + symbol: + type: + - string + - "null" + stock_cik_list: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + cik: + type: + - string + - "null" + name: + type: + - string + - "null" + stock_euronext_symbols: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + currency: + type: + - string + - "null" + exchangeShortName: + type: + - string + - "null" + name: + type: + - string + - "null" + stockExchange: + type: + - string + - "null" + symbol: + type: + - string + - "null" + stock_exchange_symbols: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + avgVolume: + type: + - number + - "null" + change: + type: + - number + - "null" + changesPercentage: + type: + - number + - "null" + dayHigh: + type: + - number + - "null" + dayLow: + type: + - number + - "null" + earningsAnnouncement: + type: + - string + - "null" + eps: + type: + - number + - "null" + exchange: + type: + - string + - "null" + marketCap: + type: + - number + - "null" + name: + type: + - string + - "null" + open: + type: + - number + - "null" + pe: + type: + - number + - "null" + previousClose: + type: + - number + - "null" + price: + type: + - number + - "null" + priceAvg200: + type: + - number + - "null" + priceAvg50: + type: + - number + - "null" + sharesOutstanding: + type: + - number + - "null" + symbol: + type: + - string + - "null" + timestamp: + type: + - number + - "null" + volume: + type: + - number + - "null" + yearHigh: + type: + - number + - "null" + yearLow: + type: + - number + - "null" + stock_available_indexes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + currency: + type: + - string + - "null" + exchangeShortName: + type: + - string + - "null" + name: + type: + - string + - "null" + stockExchange: + type: + - string + - "null" + symbol: + type: + - string + - "null" + company_profile: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + address: + type: + - string + - "null" + beta: + type: + - number + - "null" + ceo: + type: + - string + - "null" + changes: + type: + - number + - "null" + cik: + type: + - string + - "null" + city: + type: + - string + - "null" + companyName: + type: + - string + - "null" + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + cusip: + type: + - string + - "null" + dcf: + type: + - number + - "null" + dcfDiff: + type: + - number + - "null" + defaultImage: + type: + - boolean + - "null" + exchange: + type: + - string + - "null" + exchangeShortName: + type: + - string + - "null" + fullTimeEmployees: + type: + - string + - "null" + image: + type: + - string + - "null" + industry: + type: + - string + - "null" + ipoDate: + type: + - string + - "null" + isActivelyTrading: + type: + - boolean + - "null" + isAdr: + type: + - boolean + - "null" + isEtf: + type: + - boolean + - "null" + isFund: + type: + - boolean + - "null" + isin: + type: + - string + - "null" + lastDiv: + type: + - number + - "null" + mktCap: + type: + - number + - "null" + phone: + type: + - string + - "null" + price: + type: + - number + - "null" + range: + type: + - string + - "null" + sector: + type: + - string + - "null" + state: + type: + - string + - "null" + symbol: + type: + - string + - "null" + volAvg: + type: + - number + - "null" + website: + type: + - string + - "null" + zip: + type: + - string + - "null" + stock_screener: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + beta: + type: + - number + - "null" + companyName: + type: + - string + - "null" + country: + type: + - string + - "null" + exchange: + type: + - string + - "null" + exchangeShortName: + type: + - string + - "null" + industry: + type: + - string + - "null" + isActivelyTrading: + type: + - boolean + - "null" + isEtf: + type: + - boolean + - "null" + isFund: + type: + - boolean + - "null" + lastAnnualDividend: + type: + - number + - "null" + marketCap: + type: + - number + - "null" + price: + type: + - number + - "null" + sector: + type: + - string + - "null" + symbol: + type: + - string + - "null" + volume: + type: + - number + - "null" + historical_market_cap: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date: + type: string + marketCap: + type: + - number + - "null" + symbol: + type: + - string + - "null" + required: + - date + delisted_companies: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + companyName: + type: + - string + - "null" + delistedDate: + type: + - string + - "null" + exchange: + type: + - string + - "null" + ipoDate: + type: + - string + - "null" + symbol: + type: + - string + - "null" + exchange_prices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + 10Y: + type: + - number + - "null" + 1D: + type: + - number + - "null" + 1M: + type: + - number + - "null" + 1Y: + type: + - number + - "null" + 3M: + type: + - number + - "null" + 3Y: + type: + - number + - "null" + 5D: + type: + - number + - "null" + 5Y: + type: + - number + - "null" + 6M: + type: + - number + - "null" + max: + type: + - number + - "null" + symbol: + type: + - string + - "null" + ytd: + type: + - number + - "null" + all_realtime_stock_prices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + askPrice: + type: + - number + - "null" + askSize: + type: + - number + - "null" + bidPrice: + type: + - number + - "null" + bidSize: + type: + - number + - "null" + fmpLast: + type: + - number + - "null" + lastSalePrice: + type: + - number + - "null" + lastSaleSize: + type: + - number + - "null" + lastSaleTime: + type: + - number + - "null" + lastUpdated: + type: + - number + - "null" + symbol: + type: + - string + - "null" + volume: + type: + - number + - "null" + all_fx_prices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + ask: + type: + - string + - "null" + bid: + type: + - string + - "null" + changes: + type: + - number + - "null" + date: + type: + - string + - "null" + high: + type: + - string + - "null" + low: + type: + - string + - "null" + open: + type: + - string + - "null" + ticker: + type: + - string + - "null" + stock_historical_price: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + close: + type: + - number + - "null" + date: + type: string + high: + type: + - number + - "null" + low: + type: + - number + - "null" + open: + type: + - number + - "null" + volume: + type: + - number + - "null" + required: + - date + forex_list: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + currency: + type: + - string + - "null" + exchangeShortName: + type: + - string + - "null" + name: + type: + - string + - "null" + stockExchange: + type: + - string + - "null" + symbol: + type: + - string + - "null" + cryptocurrencies_list: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + currency: + type: + - string + - "null" + exchangeShortName: + type: + - string + - "null" + name: + type: + - string + - "null" + stockExchange: + type: + - string + - "null" + symbol: + type: + - string + - "null" diff --git a/airbyte-integrations/connectors/source-financial-modelling/metadata.yaml b/airbyte-integrations/connectors/source-financial-modelling/metadata.yaml new file mode 100644 index 000000000000..d2cd0903c3ef --- /dev/null +++ b/airbyte-integrations/connectors/source-financial-modelling/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "financialmodelingprep.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-financial-modelling + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 4c3d6bdd-dc0e-4a66-b48a-2e7956195eec + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-financial-modelling + githubIssueLabel: source-financial-modelling + icon: icon.svg + license: MIT + name: Financial Modelling + releaseDate: 2024-10-22 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/financial-modelling + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/financial-modelling.md b/docs/integrations/sources/financial-modelling.md new file mode 100644 index 000000000000..07c7395b5ee2 --- /dev/null +++ b/docs/integrations/sources/financial-modelling.md @@ -0,0 +1,47 @@ +# Financial Modelling +FMP provides financial data. +Using this connector we can extract data from various endpoints like Stocks list, ETFs list , Exchange Symbols and Historical MarketCap etc +Docs : https://site.financialmodelingprep.com/developer/docs + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. | | +| `exchange` | `string` | Exchange. The stock exchange : AMEX, AMS, AQS, ASX, ATH, BER, BME, BRU, BSE, BUD, BUE, BVC, CAI, CBOE, CNQ, CPH, DFM, DOH, DUS, DXE, EGX, EURONEXT, HAM, HEL, HKSE, ICE, IOB, IST, JKT, JNB, JPX, KLS, KOE, KSC, KUW, LSE, MCX, MEX, MIL, MUN, NASDAQ, NEO, NSE, NYSE, NZE, OEM, OQX, OSL, OTC, PNK, PRA, RIS, SAO, SAU, SES, SET, SGO, SHH, SHZ, SIX, STO, STU, TAI, TLV, TSX, TSXV, TWO, VIE, VSE, WSE, XETRA | NASDAQ | +| `marketcapmorethan` | `string` | marketCapMoreThan. Used in screener to filter out stocks with a market cap more than the give marketcap | | +| `marketcaplowerthan` | `string` | marketCapLowerThan. Used in screener to filter out stocks with a market cap lower than the give marketcap | | +| `start_date` | `string` | Start Date | | +| `time_frame` | `string` | Time Frame. For example 1min, 5min, 15min, 30min, 1hour, 4hour | 1hour | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| Stocks List | | No pagination | ✅ | ❌ | +| ETFs List | | No pagination | ✅ | ❌ | +| Tradable Search | | No pagination | ✅ | ❌ | +| CIK List | | No pagination | ✅ | ❌ | +| Euronext Symbols | | No pagination | ✅ | ❌ | +| Exchange Symbols | | No pagination | ✅ | ❌ | +| Available Indexes | | No pagination | ✅ | ❌ | +| Company Profile | | No pagination | ✅ | ❌ | +| Screener (Stock) | | No pagination | ✅ | ❌ | +| Historical Market Cap | | No pagination | ✅ | ✅ | +| Delisted Companies | | No pagination | ✅ | ❌ | +| Exchange Prices | | No pagination | ✅ | ❌ | +| All RealTime Full Stock Prices | | No pagination | ✅ | ❌ | +| ALL FX Prices | | No pagination | ✅ | ❌ | +| Stock Historical Price | | No pagination | ✅ | ✅ | +| Forex List | | No pagination | ✅ | ❌ | +| Cryptocurrencies List | | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-22 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | + +
From 92e279df26c8e3f210d456727bdb630f0631dbf2 Mon Sep 17 00:00:00 2001 From: Om Bhardwaj <115864495+ombhardwajj@users.noreply.github.com> Date: Fri, 1 Nov 2024 02:54:58 +0530 Subject: [PATCH 515/808] source-openfda contribution from ombhardwajj (#47284) Co-authored-by: Marcos Marx --- .../connectors/source-openfda/README.md | 35 + .../source-openfda/acceptance-test-config.yml | 17 + .../connectors/source-openfda/icon.svg | 1 + .../connectors/source-openfda/manifest.yaml | 3281 +++++++++++++++++ .../connectors/source-openfda/metadata.yaml | 35 + docs/integrations/sources/openfda.md | 33 + 6 files changed, 3402 insertions(+) create mode 100644 airbyte-integrations/connectors/source-openfda/README.md create mode 100644 airbyte-integrations/connectors/source-openfda/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-openfda/icon.svg create mode 100644 airbyte-integrations/connectors/source-openfda/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-openfda/metadata.yaml create mode 100644 docs/integrations/sources/openfda.md diff --git a/airbyte-integrations/connectors/source-openfda/README.md b/airbyte-integrations/connectors/source-openfda/README.md new file mode 100644 index 000000000000..b14054f1e09f --- /dev/null +++ b/airbyte-integrations/connectors/source-openfda/README.md @@ -0,0 +1,35 @@ +# OpenFDA +This directory contains the manifest-only connector for `source-openfda`. + +OpenFDA provides access to a number of high-value, high priority and scalable structured datasets, including adverse events, drug product labeling, and recall enforcement reports. +With this conenctor we can fetch data from the streams like Drugs , Animal and Veterinary Adverse Events and Food Adverse Events etc. +Docs:https://open.fda.gov/apis/ + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-openfda:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-openfda build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-openfda test +``` + diff --git a/airbyte-integrations/connectors/source-openfda/acceptance-test-config.yml b/airbyte-integrations/connectors/source-openfda/acceptance-test-config.yml new file mode 100644 index 000000000000..447b1590cba3 --- /dev/null +++ b/airbyte-integrations/connectors/source-openfda/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-openfda:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-openfda/icon.svg b/airbyte-integrations/connectors/source-openfda/icon.svg new file mode 100644 index 000000000000..4bef8f853cca --- /dev/null +++ b/airbyte-integrations/connectors/source-openfda/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-openfda/manifest.yaml b/airbyte-integrations/connectors/source-openfda/manifest.yaml new file mode 100644 index 000000000000..884fb656591d --- /dev/null +++ b/airbyte-integrations/connectors/source-openfda/manifest.yaml @@ -0,0 +1,3281 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + OpenFDA provides access to a number of high-value, high priority and scalable + structured datasets, including adverse events, drug product labeling, and + recall enforcement reports. + + With this conenctor we can fetch data from the streams like Drugs , Animal and + Veterinary Adverse Events and Food Adverse Events etc. + + Docs:https://open.fda.gov/apis/ + +check: + type: CheckStream + stream_names: + - animal_veterinary_adverse_events + +definitions: + streams: + animal_veterinary_adverse_events: + type: DeclarativeStream + name: animal_veterinary_adverse_events + primary_key: + - unique_aer_id_number + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: animalandveterinary/event.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skip + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/animal_veterinary_adverse_events" + tobacco_problems_reports: + type: DeclarativeStream + name: tobacco_problems_reports + primary_key: + - report_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: tobacco/problem.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skip + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tobacco_problems_reports" + food_adverse_events: + type: DeclarativeStream + name: food_adverse_events + primary_key: + - report_number + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: food/event.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skip + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/food_adverse_events" + food_enforcement_reports: + type: DeclarativeStream + name: food_enforcement_reports + primary_key: + - recall_number + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: food/enforcement.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skip + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/food_enforcement_reports" + drug_adverse_events: + type: DeclarativeStream + name: drug_adverse_events + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: drug/event.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skip + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/drug_adverse_events" + drug_product_labelling: + type: DeclarativeStream + name: drug_product_labelling + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: drug/label.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skip + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/drug_product_labelling" + drug_ndc_library: + type: DeclarativeStream + name: drug_ndc_library + primary_key: + - product_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: drug/ndc.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skip + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/drug_ndc_library" + drug_recall_enforcement_reports: + type: DeclarativeStream + name: drug_recall_enforcement_reports + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: drug/enforcement.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skip + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/drug_recall_enforcement_reports" + drugs: + type: DeclarativeStream + name: drugs + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: drug/drugsfda.json + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skip + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/drugs" + base_requester: + type: HttpRequester + url_base: https://api.fda.gov/ + +streams: + - $ref: "#/definitions/streams/animal_veterinary_adverse_events" + - $ref: "#/definitions/streams/tobacco_problems_reports" + - $ref: "#/definitions/streams/food_adverse_events" + - $ref: "#/definitions/streams/food_enforcement_reports" + - $ref: "#/definitions/streams/drug_adverse_events" + - $ref: "#/definitions/streams/drug_product_labelling" + - $ref: "#/definitions/streams/drug_ndc_library" + - $ref: "#/definitions/streams/drug_recall_enforcement_reports" + - $ref: "#/definitions/streams/drugs" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: [] + properties: {} + additionalProperties: true + +metadata: + autoImportSchema: + animal_veterinary_adverse_events: true + tobacco_problems_reports: true + food_adverse_events: true + food_enforcement_reports: true + drug_adverse_events: true + drug_product_labelling: true + drug_ndc_library: true + drug_recall_enforcement_reports: true + drugs: true + testedStreams: + animal_veterinary_adverse_events: + streamHash: 1d0606cba68cd120e0e232fe4c17a4052a81a21b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + tobacco_problems_reports: + streamHash: 9abc5a930b34a95b05781474ce33d3813517d6e7 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + food_adverse_events: + streamHash: 47564cfd48ee2b7e8f3dea3865a5d9e0ae320d41 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + food_enforcement_reports: + streamHash: 672fd13cf7193fe36af6e381ceb415d1a9cc5a5f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + drug_adverse_events: + streamHash: 0fb7eea38b63cb80d6a875aed3b775d57e7db890 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + drug_product_labelling: + streamHash: c680cd6d8b4d7c25af12a0f1178c9a2a8526384d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + drug_ndc_library: + streamHash: 904ce65d91f343f4e7dbd7900e29922e1df56f8f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + drug_recall_enforcement_reports: + streamHash: 3eabe167039177cba2fa2d94cd4121fed5856ee9 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + drugs: + streamHash: 828d896d5246308d786abbe20e3cd693afb7a2d3 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: {} + +schemas: + animal_veterinary_adverse_events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + animal: + type: + - object + - "null" + properties: + age: + type: + - object + - "null" + properties: + max: + type: + - string + - "null" + min: + type: + - string + - "null" + qualifier: + type: + - string + - "null" + unit: + type: + - string + - "null" + breed: + type: + - object + - "null" + properties: + breed_component: + anyOf: + - type: string + - type: array + items: + type: string + is_crossbred: + type: + - string + - "null" + female_animal_physiological_status: + type: + - string + - "null" + gender: + type: + - string + - "null" + reproductive_status: + type: + - string + - "null" + species: + type: + - string + - "null" + weight: + type: + - object + - "null" + properties: + max: + type: + - string + - "null" + min: + type: + - string + - "null" + qualifier: + type: + - string + - "null" + unit: + type: + - string + - "null" + drug: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + active_ingredients: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + dose: + type: + - object + - "null" + properties: + denominator: + type: + - string + - "null" + denominator_unit: + type: + - string + - "null" + numerator: + type: + - string + - "null" + numerator_unit: + type: + - string + - "null" + name: + type: + - string + - "null" + administered_by: + type: + - string + - "null" + ae_abated_after_stopping_drug: + type: + - string + - "null" + ae_reappeared_after_resuming_drug: + type: + - string + - "null" + atc_vet_code: + type: + - string + - "null" + brand_name: + type: + - string + - "null" + dosage_form: + type: + - string + - "null" + dose: + type: + - object + - "null" + properties: + denominator: + type: + - string + - "null" + denominator_unit: + type: + - string + - "null" + numerator: + type: + - string + - "null" + numerator_unit: + type: + - string + - "null" + first_exposure_date: + type: + - string + - "null" + frequency_of_administration: + type: + - object + - "null" + properties: + unit: + type: + - string + - "null" + value: + type: + - string + - "null" + last_exposure_date: + type: + - string + - "null" + lot_expiration: + type: + - string + - "null" + lot_number: + type: + - string + - "null" + manufacturer: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + registration_number: + type: + - string + - "null" + manufacturing_date: + type: + - string + - "null" + number_of_defective_items: + type: + - string + - "null" + number_of_items_returned: + type: + - string + - "null" + off_label_use: + anyOf: + - type: string + - type: array + items: + type: string + previous_ae_to_drug: + type: + - string + - "null" + previous_exposure_to_drug: + type: + - string + - "null" + product_ndc: + type: + - string + - "null" + route: + type: + - string + - "null" + used_according_to_label: + type: + - string + - "null" + duration: + type: + - object + - "null" + properties: + unit: + type: + - string + - "null" + value: + type: + - string + - "null" + health_assessment_prior_to_exposure: + type: + - object + - "null" + properties: + assessed_by: + type: + - string + - "null" + condition: + type: + - string + - "null" + number_of_animals_affected: + type: + - string + - "null" + number_of_animals_treated: + type: + - string + - "null" + onset_date: + type: + - string + - "null" + original_receive_date: + type: + - string + - "null" + outcome: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + medical_status: + type: + - string + - "null" + number_of_animals_affected: + type: + - string + - "null" + primary_reporter: + type: + - string + - "null" + reaction: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + accuracy: + type: + - string + - "null" + number_of_animals_affected: + type: + - string + - "null" + veddra_term_code: + type: + - string + - "null" + veddra_term_name: + type: + - string + - "null" + veddra_version: + type: + - string + - "null" + receiver: + type: + - object + - "null" + properties: + city: + type: + - string + - "null" + country: + type: + - string + - "null" + organization: + type: + - string + - "null" + postal_code: + type: + - string + - "null" + state: + type: + - string + - "null" + street_address: + type: + - string + - "null" + report_id: + type: + - string + - "null" + secondary_reporter: + type: + - string + - "null" + serious_ae: + type: + - string + - "null" + time_between_exposure_and_onset: + type: + - string + - "null" + treated_for_ae: + type: + - string + - "null" + type_of_information: + type: + - string + - "null" + unique_aer_id_number: + type: string + required: + - unique_aer_id_number + tobacco_problems_reports: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date_submitted: + type: + - string + - "null" + nonuser_affected: + type: + - string + - "null" + number_health_problems: + type: + - number + - "null" + number_product_problems: + type: + - number + - "null" + number_tobacco_products: + type: + - number + - "null" + report_id: + type: number + reported_health_problems: + type: + - array + - "null" + items: + type: + - string + - "null" + reported_product_problems: + type: + - array + - "null" + items: + type: + - string + - "null" + tobacco_products: + type: + - array + - "null" + items: + type: + - string + - "null" + required: + - report_id + food_adverse_events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + consumer: + type: + - object + - "null" + properties: + age: + type: + - string + - "null" + age_unit: + type: + - string + - "null" + gender: + type: + - string + - "null" + date_created: + type: + - string + - "null" + date_started: + type: + - string + - "null" + outcomes: + type: + - array + - "null" + items: + type: + - string + - "null" + products: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + industry_code: + type: + - string + - "null" + industry_name: + type: + - string + - "null" + name_brand: + type: + - string + - "null" + role: + type: + - string + - "null" + reactions: + type: + - array + - "null" + items: + type: + - string + - "null" + report_number: + type: string + required: + - report_number + food_enforcement_reports: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + address_1: + type: + - string + - "null" + address_2: + type: + - string + - "null" + center_classification_date: + type: + - string + - "null" + city: + type: + - string + - "null" + classification: + type: + - string + - "null" + code_info: + type: + - string + - "null" + country: + type: + - string + - "null" + distribution_pattern: + type: + - string + - "null" + event_id: + type: + - string + - "null" + initial_firm_notification: + type: + - string + - "null" + more_code_info: + type: + - string + - "null" + openfda: + type: + - object + - "null" + postal_code: + type: + - string + - "null" + product_description: + type: + - string + - "null" + product_quantity: + type: + - string + - "null" + product_type: + type: + - string + - "null" + reason_for_recall: + type: + - string + - "null" + recall_initiation_date: + type: + - string + - "null" + recall_number: + type: string + recalling_firm: + type: + - string + - "null" + report_date: + type: + - string + - "null" + state: + type: + - string + - "null" + status: + type: + - string + - "null" + termination_date: + type: + - string + - "null" + voluntary_mandated: + type: + - string + - "null" + required: + - recall_number + drug_adverse_events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + companynumb: + type: + - string + - "null" + duplicate: + type: + - string + - "null" + fulfillexpeditecriteria: + type: + - string + - "null" + occurcountry: + type: + - string + - "null" + patient: + type: + - object + - "null" + properties: + drug: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + actiondrug: + type: + - string + - "null" + activesubstance: + type: + - object + - "null" + properties: + activesubstancename: + type: + - string + - "null" + drugadditional: + type: + - string + - "null" + drugadministrationroute: + type: + - string + - "null" + drugauthorizationnumb: + type: + - string + - "null" + drugbatchnumb: + type: + - string + - "null" + drugcharacterization: + type: + - string + - "null" + drugcumulativedosagenumb: + type: + - string + - "null" + drugcumulativedosageunit: + type: + - string + - "null" + drugdosageform: + type: + - string + - "null" + drugdosagetext: + type: + - string + - "null" + drugenddate: + type: + - string + - "null" + drugenddateformat: + type: + - string + - "null" + drugindication: + type: + - string + - "null" + drugintervaldosagedefinition: + type: + - string + - "null" + drugintervaldosageunitnumb: + type: + - string + - "null" + drugrecurreadministration: + type: + - string + - "null" + drugseparatedosagenumb: + type: + - string + - "null" + drugstartdate: + type: + - string + - "null" + drugstartdateformat: + type: + - string + - "null" + drugstructuredosagenumb: + type: + - string + - "null" + drugstructuredosageunit: + type: + - string + - "null" + medicinalproduct: + type: + - string + - "null" + openfda: + type: + - object + - "null" + properties: + application_number: + type: + - array + - "null" + items: + type: + - string + - "null" + brand_name: + type: + - array + - "null" + items: + type: + - string + - "null" + generic_name: + type: + - array + - "null" + items: + type: + - string + - "null" + manufacturer_name: + type: + - array + - "null" + items: + type: + - string + - "null" + nui: + type: + - array + - "null" + items: + type: + - string + - "null" + package_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_cs: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_epc: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_moa: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_pe: + type: + - array + - "null" + items: + type: + - string + - "null" + product_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + product_type: + type: + - array + - "null" + items: + type: + - string + - "null" + route: + type: + - array + - "null" + items: + type: + - string + - "null" + rxcui: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_id: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_set_id: + type: + - array + - "null" + items: + type: + - string + - "null" + substance_name: + type: + - array + - "null" + items: + type: + - string + - "null" + unii: + type: + - array + - "null" + items: + type: + - string + - "null" + patientagegroup: + type: + - string + - "null" + patientdeath: + type: + - object + - "null" + properties: {} + patientonsetage: + type: + - string + - "null" + patientonsetageunit: + type: + - string + - "null" + patientsex: + type: + - string + - "null" + patientweight: + type: + - string + - "null" + reaction: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + reactionmeddrapt: + type: + - string + - "null" + reactionmeddraversionpt: + type: + - string + - "null" + reactionoutcome: + type: + - string + - "null" + summary: + type: + - object + - "null" + properties: + narrativeincludeclinical: + type: + - string + - "null" + primarysource: + type: + - object + - "null" + properties: + literaturereference: + type: + - string + - "null" + qualification: + type: + - string + - "null" + reportercountry: + type: + - string + - "null" + primarysourcecountry: + type: + - string + - "null" + receiptdate: + type: + - string + - "null" + receiptdateformat: + type: + - string + - "null" + receivedate: + type: + - string + - "null" + receivedateformat: + type: + - string + - "null" + receiver: + type: + - object + - "null" + properties: + receiverorganization: + type: + - string + - "null" + receivertype: + type: + - string + - "null" + reportduplicate: + type: + - object + - "null" + properties: + duplicatenumb: + type: + - string + - "null" + duplicatesource: + type: + - string + - "null" + reporttype: + type: + - string + - "null" + safetyreportid: + type: + - string + - "null" + safetyreportversion: + type: + - string + - "null" + sender: + type: + - object + - "null" + properties: + senderorganization: + type: + - string + - "null" + sendertype: + type: + - string + - "null" + serious: + type: + - string + - "null" + seriousnesscongenitalanomali: + type: + - string + - "null" + seriousnessdeath: + type: + - string + - "null" + seriousnessdisabling: + type: + - string + - "null" + seriousnesshospitalization: + type: + - string + - "null" + seriousnesslifethreatening: + type: + - string + - "null" + seriousnessother: + type: + - string + - "null" + transmissiondate: + type: + - string + - "null" + transmissiondateformat: + type: + - string + - "null" + drug_product_labelling: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - string + - "null" + description: + type: + - array + - "null" + items: + type: + - string + - "null" + abuse: + type: + - array + - "null" + items: + type: + - string + - "null" + active_ingredient: + type: + - array + - "null" + items: + type: + - string + - "null" + active_ingredient_table: + type: + - array + - "null" + items: + type: + - string + - "null" + adverse_reactions: + type: + - array + - "null" + items: + type: + - string + - "null" + adverse_reactions_table: + type: + - array + - "null" + items: + type: + - string + - "null" + animal_pharmacology_and_or_toxicology: + type: + - array + - "null" + items: + type: + - string + - "null" + animal_pharmacology_and_or_toxicology_table: + type: + - array + - "null" + items: + type: + - string + - "null" + ask_doctor: + type: + - array + - "null" + items: + type: + - string + - "null" + ask_doctor_or_pharmacist: + type: + - array + - "null" + items: + type: + - string + - "null" + boxed_warning: + type: + - array + - "null" + items: + type: + - string + - "null" + carcinogenesis_and_mutagenesis_and_impairment_of_fertility: + type: + - array + - "null" + items: + type: + - string + - "null" + clinical_pharmacology: + type: + - array + - "null" + items: + type: + - string + - "null" + clinical_pharmacology_table: + type: + - array + - "null" + items: + type: + - string + - "null" + clinical_studies: + type: + - array + - "null" + items: + type: + - string + - "null" + clinical_studies_table: + type: + - array + - "null" + items: + type: + - string + - "null" + contraindications: + type: + - array + - "null" + items: + type: + - string + - "null" + controlled_substance: + type: + - array + - "null" + items: + type: + - string + - "null" + dependence: + type: + - array + - "null" + items: + type: + - string + - "null" + description_table: + type: + - array + - "null" + items: + type: + - string + - "null" + do_not_use: + type: + - array + - "null" + items: + type: + - string + - "null" + dosage_and_administration: + type: + - array + - "null" + items: + type: + - string + - "null" + dosage_and_administration_table: + type: + - array + - "null" + items: + type: + - string + - "null" + dosage_forms_and_strengths: + type: + - array + - "null" + items: + type: + - string + - "null" + dosage_forms_and_strengths_table: + type: + - array + - "null" + items: + type: + - string + - "null" + drug_abuse_and_dependence: + type: + - array + - "null" + items: + type: + - string + - "null" + drug_abuse_and_dependence_table: + type: + - array + - "null" + items: + type: + - string + - "null" + drug_and_or_laboratory_test_interactions: + type: + - array + - "null" + items: + type: + - string + - "null" + drug_interactions: + type: + - array + - "null" + items: + type: + - string + - "null" + drug_interactions_table: + type: + - array + - "null" + items: + type: + - string + - "null" + effective_time: + type: + - string + - "null" + general_precautions: + type: + - array + - "null" + items: + type: + - string + - "null" + geriatric_use: + type: + - array + - "null" + items: + type: + - string + - "null" + geriatric_use_table: + type: + - array + - "null" + items: + type: + - string + - "null" + how_supplied: + type: + - array + - "null" + items: + type: + - string + - "null" + how_supplied_table: + type: + - array + - "null" + items: + type: + - string + - "null" + id: + type: + - string + - "null" + inactive_ingredient: + type: + - array + - "null" + items: + type: + - string + - "null" + inactive_ingredient_table: + type: + - array + - "null" + items: + type: + - string + - "null" + indications_and_usage: + type: + - array + - "null" + items: + type: + - string + - "null" + indications_and_usage_table: + type: + - array + - "null" + items: + type: + - string + - "null" + information_for_patients: + type: + - array + - "null" + items: + type: + - string + - "null" + information_for_patients_table: + type: + - array + - "null" + items: + type: + - string + - "null" + instructions_for_use: + type: + - array + - "null" + items: + type: + - string + - "null" + instructions_for_use_table: + type: + - array + - "null" + items: + type: + - string + - "null" + keep_out_of_reach_of_children: + type: + - array + - "null" + items: + type: + - string + - "null" + labor_and_delivery: + type: + - array + - "null" + items: + type: + - string + - "null" + laboratory_tests: + type: + - array + - "null" + items: + type: + - string + - "null" + mechanism_of_action: + type: + - array + - "null" + items: + type: + - string + - "null" + microbiology: + type: + - array + - "null" + items: + type: + - string + - "null" + microbiology_table: + type: + - array + - "null" + items: + type: + - string + - "null" + nonclinical_toxicology: + type: + - array + - "null" + items: + type: + - string + - "null" + nonteratogenic_effects: + type: + - array + - "null" + items: + type: + - string + - "null" + nursing_mothers: + type: + - array + - "null" + items: + type: + - string + - "null" + openfda: + type: + - object + - "null" + properties: + application_number: + type: + - array + - "null" + items: + type: + - string + - "null" + brand_name: + type: + - array + - "null" + items: + type: + - string + - "null" + generic_name: + type: + - array + - "null" + items: + type: + - string + - "null" + is_original_packager: + type: + - array + - "null" + items: + type: + - boolean + - "null" + manufacturer_name: + type: + - array + - "null" + items: + type: + - string + - "null" + nui: + type: + - array + - "null" + items: + type: + - string + - "null" + original_packager_product_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + package_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_cs: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_epc: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_moa: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_pe: + type: + - array + - "null" + items: + type: + - string + - "null" + product_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + product_type: + type: + - array + - "null" + items: + type: + - string + - "null" + route: + type: + - array + - "null" + items: + type: + - string + - "null" + rxcui: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_id: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_set_id: + type: + - array + - "null" + items: + type: + - string + - "null" + substance_name: + type: + - array + - "null" + items: + type: + - string + - "null" + unii: + type: + - array + - "null" + items: + type: + - string + - "null" + upc: + type: + - array + - "null" + items: + type: + - string + - "null" + other_safety_information: + type: + - array + - "null" + items: + type: + - string + - "null" + overdosage: + type: + - array + - "null" + items: + type: + - string + - "null" + package_label_principal_display_panel: + type: + - array + - "null" + items: + type: + - string + - "null" + patient_medication_information: + type: + - array + - "null" + items: + type: + - string + - "null" + pediatric_use: + type: + - array + - "null" + items: + type: + - string + - "null" + pediatric_use_table: + type: + - array + - "null" + items: + type: + - string + - "null" + pharmacodynamics: + type: + - array + - "null" + items: + type: + - string + - "null" + pharmacodynamics_table: + type: + - array + - "null" + items: + type: + - string + - "null" + pharmacogenomics: + type: + - array + - "null" + items: + type: + - string + - "null" + pharmacokinetics: + type: + - array + - "null" + items: + type: + - string + - "null" + pharmacokinetics_table: + type: + - array + - "null" + items: + type: + - string + - "null" + precautions: + type: + - array + - "null" + items: + type: + - string + - "null" + precautions_table: + type: + - array + - "null" + items: + type: + - string + - "null" + pregnancy: + type: + - array + - "null" + items: + type: + - string + - "null" + pregnancy_or_breast_feeding: + type: + - array + - "null" + items: + type: + - string + - "null" + purpose: + type: + - array + - "null" + items: + type: + - string + - "null" + purpose_table: + type: + - array + - "null" + items: + type: + - string + - "null" + questions: + type: + - array + - "null" + items: + type: + - string + - "null" + recent_major_changes: + type: + - array + - "null" + items: + type: + - string + - "null" + recent_major_changes_table: + type: + - array + - "null" + items: + type: + - string + - "null" + references: + type: + - array + - "null" + items: + type: + - string + - "null" + references_table: + type: + - array + - "null" + items: + type: + - string + - "null" + risks: + type: + - array + - "null" + items: + type: + - string + - "null" + route: + type: + - array + - "null" + items: + type: + - string + - "null" + safe_handling_warning: + type: + - array + - "null" + items: + type: + - string + - "null" + set_id: + type: + - string + - "null" + spl_medguide: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_medguide_table: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_patient_package_insert: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_patient_package_insert_table: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_product_data_elements: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_unclassified_section: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_unclassified_section_table: + type: + - array + - "null" + items: + type: + - string + - "null" + statement_of_identity: + type: + - array + - "null" + items: + type: + - string + - "null" + stop_use: + type: + - array + - "null" + items: + type: + - string + - "null" + storage_and_handling: + type: + - array + - "null" + items: + type: + - string + - "null" + teratogenic_effects: + type: + - array + - "null" + items: + type: + - string + - "null" + use_in_specific_populations: + type: + - array + - "null" + items: + type: + - string + - "null" + use_in_specific_populations_table: + type: + - array + - "null" + items: + type: + - string + - "null" + user_safety_warnings: + type: + - array + - "null" + items: + type: + - string + - "null" + warnings: + type: + - array + - "null" + items: + type: + - string + - "null" + warnings_and_cautions: + type: + - array + - "null" + items: + type: + - string + - "null" + warnings_and_cautions_table: + type: + - array + - "null" + items: + type: + - string + - "null" + warnings_table: + type: + - array + - "null" + items: + type: + - string + - "null" + when_using: + type: + - array + - "null" + items: + type: + - string + - "null" + drug_ndc_library: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active_ingredients: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + strength: + type: + - string + - "null" + application_number: + type: + - string + - "null" + brand_name: + type: + - string + - "null" + brand_name_base: + type: + - string + - "null" + brand_name_suffix: + type: + - string + - "null" + dea_schedule: + type: + - string + - "null" + dosage_form: + type: + - string + - "null" + finished: + type: + - boolean + - "null" + generic_name: + type: + - string + - "null" + labeler_name: + type: + - string + - "null" + listing_expiration_date: + type: + - string + - "null" + marketing_category: + type: + - string + - "null" + marketing_end_date: + type: + - string + - "null" + marketing_start_date: + type: + - string + - "null" + openfda: + type: + - object + - "null" + properties: + is_original_packager: + type: + - array + - "null" + items: + type: + - boolean + - "null" + manufacturer_name: + type: + - array + - "null" + items: + type: + - string + - "null" + nui: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_cs: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_epc: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_moa: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_pe: + type: + - array + - "null" + items: + type: + - string + - "null" + rxcui: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_set_id: + type: + - array + - "null" + items: + type: + - string + - "null" + unii: + type: + - array + - "null" + items: + type: + - string + - "null" + upc: + type: + - array + - "null" + items: + type: + - string + - "null" + packaging: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + marketing_end_date: + type: + - string + - "null" + marketing_start_date: + type: + - string + - "null" + package_ndc: + type: + - string + - "null" + sample: + type: + - boolean + - "null" + pharm_class: + type: + - array + - "null" + items: + type: + - string + - "null" + product_id: + type: string + product_ndc: + type: + - string + - "null" + product_type: + type: + - string + - "null" + route: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_id: + type: + - string + - "null" + required: + - product_id + drug_recall_enforcement_reports: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + address_1: + type: + - string + - "null" + address_2: + type: + - string + - "null" + center_classification_date: + type: + - string + - "null" + city: + type: + - string + - "null" + classification: + type: + - string + - "null" + code_info: + type: + - string + - "null" + country: + type: + - string + - "null" + distribution_pattern: + type: + - string + - "null" + event_id: + type: + - string + - "null" + initial_firm_notification: + type: + - string + - "null" + more_code_info: + type: + - string + - "null" + openfda: + type: + - object + - "null" + properties: + application_number: + type: + - array + - "null" + items: + type: + - string + - "null" + brand_name: + type: + - array + - "null" + items: + type: + - string + - "null" + generic_name: + type: + - array + - "null" + items: + type: + - string + - "null" + is_original_packager: + type: + - array + - "null" + items: + type: + - boolean + - "null" + manufacturer_name: + type: + - array + - "null" + items: + type: + - string + - "null" + nui: + type: + - array + - "null" + items: + type: + - string + - "null" + original_packager_product_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + package_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_cs: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_epc: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_moa: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_pe: + type: + - array + - "null" + items: + type: + - string + - "null" + product_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + product_type: + type: + - array + - "null" + items: + type: + - string + - "null" + route: + type: + - array + - "null" + items: + type: + - string + - "null" + rxcui: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_id: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_set_id: + type: + - array + - "null" + items: + type: + - string + - "null" + substance_name: + type: + - array + - "null" + items: + type: + - string + - "null" + unii: + type: + - array + - "null" + items: + type: + - string + - "null" + upc: + type: + - array + - "null" + items: + type: + - string + - "null" + postal_code: + type: + - string + - "null" + product_description: + type: + - string + - "null" + product_quantity: + type: + - string + - "null" + product_type: + type: + - string + - "null" + reason_for_recall: + type: + - string + - "null" + recall_initiation_date: + type: + - string + - "null" + recall_number: + type: + - string + - "null" + recalling_firm: + type: + - string + - "null" + report_date: + type: + - string + - "null" + state: + type: + - string + - "null" + status: + type: + - string + - "null" + termination_date: + type: + - string + - "null" + voluntary_mandated: + type: + - string + - "null" + drugs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + application_number: + type: + - string + - "null" + openfda: + type: + - object + - "null" + properties: + application_number: + type: + - array + - "null" + items: + type: + - string + - "null" + brand_name: + type: + - array + - "null" + items: + type: + - string + - "null" + generic_name: + type: + - array + - "null" + items: + type: + - string + - "null" + manufacturer_name: + type: + - array + - "null" + items: + type: + - string + - "null" + nui: + type: + - array + - "null" + items: + type: + - string + - "null" + package_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_cs: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_epc: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_moa: + type: + - array + - "null" + items: + type: + - string + - "null" + pharm_class_pe: + type: + - array + - "null" + items: + type: + - string + - "null" + product_ndc: + type: + - array + - "null" + items: + type: + - string + - "null" + product_type: + type: + - array + - "null" + items: + type: + - string + - "null" + route: + type: + - array + - "null" + items: + type: + - string + - "null" + rxcui: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_id: + type: + - array + - "null" + items: + type: + - string + - "null" + spl_set_id: + type: + - array + - "null" + items: + type: + - string + - "null" + substance_name: + type: + - array + - "null" + items: + type: + - string + - "null" + unii: + type: + - array + - "null" + items: + type: + - string + - "null" + products: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + active_ingredients: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + strength: + type: + - string + - "null" + brand_name: + type: + - string + - "null" + dosage_form: + type: + - string + - "null" + marketing_status: + type: + - string + - "null" + product_number: + type: + - string + - "null" + reference_drug: + type: + - string + - "null" + reference_standard: + type: + - string + - "null" + route: + type: + - string + - "null" + te_code: + type: + - string + - "null" + sponsor_name: + type: + - string + - "null" + submissions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + application_docs: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + date: + type: + - string + - "null" + id: + type: + - string + - "null" + title: + type: + - string + - "null" + url: + type: + - string + - "null" + review_priority: + type: + - string + - "null" + submission_class_code: + type: + - string + - "null" + submission_class_code_description: + type: + - string + - "null" + submission_number: + type: + - string + - "null" + submission_property_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + code: + type: + - string + - "null" + submission_public_notes: + type: + - string + - "null" + submission_status: + type: + - string + - "null" + submission_status_date: + type: + - string + - "null" + submission_type: + type: + - string + - "null" diff --git a/airbyte-integrations/connectors/source-openfda/metadata.yaml b/airbyte-integrations/connectors/source-openfda/metadata.yaml new file mode 100644 index 000000000000..25f1853d063a --- /dev/null +++ b/airbyte-integrations/connectors/source-openfda/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.fda.gov" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-openfda + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 + connectorSubtype: api + connectorType: source + definitionId: b97d588f-d49f-440c-9158-9dd33c59fd26 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-openfda + githubIssueLabel: source-openfda + icon: icon.svg + license: MIT + name: OpenFDA + releaseDate: 2024-10-23 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/openfda + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/openfda.md b/docs/integrations/sources/openfda.md new file mode 100644 index 000000000000..6c26660d9b1e --- /dev/null +++ b/docs/integrations/sources/openfda.md @@ -0,0 +1,33 @@ +# OpenFDA +OpenFDA provides access to a number of high-value, high priority and scalable structured datasets, including adverse events, drug product labeling, and recall enforcement reports. +With this conenctor we can fetch data from the streams like Drugs , Animal and Veterinary Adverse Events and Food Adverse Events etc. +Docs:https://open.fda.gov/apis/ + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| Animal and Veterinary Adverse Events | unique_aer_id_number | DefaultPaginator | ✅ | ❌ | +| Tobacco Problem Reports | report_id | DefaultPaginator | ✅ | ❌ | +| Food Adverse Events | report_number | DefaultPaginator | ✅ | ❌ | +| Food Enforcement Reports | recall_number | DefaultPaginator | ✅ | ❌ | +| Drug Adverse Events | | DefaultPaginator | ✅ | ❌ | +| Drug Product Labelling | | DefaultPaginator | ✅ | ❌ | +| Drug NDC Library | product_id | DefaultPaginator | ✅ | ❌ | +| Drug recall Enforcement Reports | | DefaultPaginator | ✅ | ❌ | +| Drugs | | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-23 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | + +
From 4370bf3c01b513499023e69307b129318390e34c Mon Sep 17 00:00:00 2001 From: Xiaohan Song Date: Thu, 31 Oct 2024 14:56:39 -0700 Subject: [PATCH 516/808] [source-snowflake] Upgrade snowflake jdbc driver (#48073) --- airbyte-integrations/connectors/source-snowflake/build.gradle | 2 +- airbyte-integrations/connectors/source-snowflake/metadata.yaml | 2 +- docs/integrations/sources/snowflake.md | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-snowflake/build.gradle b/airbyte-integrations/connectors/source-snowflake/build.gradle index a49ec3ff0ac8..e4e53038c7dd 100644 --- a/airbyte-integrations/connectors/source-snowflake/build.gradle +++ b/airbyte-integrations/connectors/source-snowflake/build.gradle @@ -14,7 +14,7 @@ application { } dependencies { - implementation group: 'net.snowflake', name: 'snowflake-jdbc', version: '3.14.1' + implementation group: 'net.snowflake', name: 'snowflake-jdbc', version: '3.20.0' testImplementation 'org.testcontainers:jdbc:1.19.4' testImplementation 'org.hamcrest:hamcrest-all:1.3' diff --git a/airbyte-integrations/connectors/source-snowflake/metadata.yaml b/airbyte-integrations/connectors/source-snowflake/metadata.yaml index 0458c98a0afb..f6b1f6be7afa 100644 --- a/airbyte-integrations/connectors/source-snowflake/metadata.yaml +++ b/airbyte-integrations/connectors/source-snowflake/metadata.yaml @@ -8,7 +8,7 @@ data: connectorSubtype: database connectorType: source definitionId: e2d65910-8c8b-40a1-ae7d-ee2416b2bfa2 - dockerImageTag: 0.3.3 + dockerImageTag: 0.3.4 dockerRepository: airbyte/source-snowflake documentationUrl: https://docs.airbyte.com/integrations/sources/snowflake githubIssueLabel: source-snowflake diff --git a/docs/integrations/sources/snowflake.md b/docs/integrations/sources/snowflake.md index 8ee0d20b2a06..41c0d4bd64fc 100644 --- a/docs/integrations/sources/snowflake.md +++ b/docs/integrations/sources/snowflake.md @@ -140,6 +140,7 @@ To read more please check official [Snowflake documentation](https://docs.snowfl | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------| +| 0.3.4 | 2024-10-31 | [48073](https://github.com/airbytehq/airbyte/pull/48073) | Upgrade jdbc driver | | 0.3.3 | 2024-06-28 | [40424](https://github.com/airbytehq/airbyte/pull/40424) | Support Snowflake key pair authentication | | 0.3.2 | 2024-02-13 | [38317](https://github.com/airbytehq/airbyte/pull/38317) | Hide oAuth option from connector | | 0.3.1 | 2024-02-13 | [35220](https://github.com/airbytehq/airbyte/pull/35220) | Adopt CDK 0.20.4 | From d274445d52f4630d1fac7c332ea21c2066deaa1c Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Thu, 31 Oct 2024 15:25:39 -0700 Subject: [PATCH 517/808] Destination snowflake: upgrade snowflake jdbc driver (#48070) --- .../connectors/destination-snowflake/build.gradle | 2 +- .../connectors/destination-snowflake/metadata.yaml | 2 +- docs/integrations/destinations/snowflake.md | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/destination-snowflake/build.gradle b/airbyte-integrations/connectors/destination-snowflake/build.gradle index 5da0b90035fe..1a7fecf74eea 100644 --- a/airbyte-integrations/connectors/destination-snowflake/build.gradle +++ b/airbyte-integrations/connectors/destination-snowflake/build.gradle @@ -42,6 +42,6 @@ integrationTestJava { } dependencies { - implementation 'net.snowflake:snowflake-jdbc:3.19.0' + implementation 'net.snowflake:snowflake-jdbc:3.20.0' implementation 'org.apache.commons:commons-text:1.12.0' } diff --git a/airbyte-integrations/connectors/destination-snowflake/metadata.yaml b/airbyte-integrations/connectors/destination-snowflake/metadata.yaml index d5681dded870..2d30c2ba713a 100644 --- a/airbyte-integrations/connectors/destination-snowflake/metadata.yaml +++ b/airbyte-integrations/connectors/destination-snowflake/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 424892c4-daac-4491-b35d-c6688ba547ba - dockerImageTag: 3.15.1 + dockerImageTag: 3.15.2 dockerRepository: airbyte/destination-snowflake documentationUrl: https://docs.airbyte.com/integrations/destinations/snowflake githubIssueLabel: destination-snowflake diff --git a/docs/integrations/destinations/snowflake.md b/docs/integrations/destinations/snowflake.md index 529013d8f99a..728d47f0cfed 100644 --- a/docs/integrations/destinations/snowflake.md +++ b/docs/integrations/destinations/snowflake.md @@ -131,7 +131,7 @@ to role identifier($airbyte_role); commit; ``` -3. Run the script using the [Worksheet page](https://docs.snowflake.com/en/user-guide/ui-worksheet.html) or [Snowsight](https://docs.snowflake.com/en/user-guide/ui-snowsight-gs.html). +3. Run the script using the [Worksheet page](https://docs.snowflake.com/en/user-guide/ui-worksheet.html) or [Snowsight](https://docs.snowflake.com/en/user-guide/ui-snowsight-gs.html). Make sure to select the **All Queries** checkbox if using the Classic Console or select and highlight the entire query if you are using Snowsight. ### Step 2: Set up a data loading method @@ -266,9 +266,10 @@ desired namespace. | Version | Date | Pull Request | Subject | | :-------------- | :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| 3.15.1 | 2024-10-20 | [\#46989](https://github.com/airbytehq/airbyte/pull/46989) | add snowflake transaction wrapper for rollback support | -| 3.15.0 | 2024-09-18 | [\#45437](https://github.com/airbytehq/airbyte/pull/45437) | upgrade all dependencies | -| 3.14.0 | 2024-09-18 | [\#45431](https://github.com/airbytehq/airbyte/pull/45431) | truncate large records queries | +| 3.15.2 | 2024-10-31 | [\#48070](https://github.com/airbytehq/airbyte/pull/48070) | upgrade JDBC driver to 3.20.0 | +| 3.15.1 | 2024-10-20 | [\#46989](https://github.com/airbytehq/airbyte/pull/46989) | add snowflake transaction wrapper for rollback support | +| 3.15.0 | 2024-09-18 | [\#45437](https://github.com/airbytehq/airbyte/pull/45437) | upgrade all dependencies | +| 3.14.0 | 2024-09-18 | [\#45431](https://github.com/airbytehq/airbyte/pull/45431) | truncate large records queries | | 3.13.0 | 2024-09-17 | [\#45422](https://github.com/airbytehq/airbyte/pull/45422) | speed up metadata queries | | 3.12.0 | 2024-09-17 | [\#38585](https://github.com/airbytehq/airbyte/pull/38585) | force UTF8 collation when creating schemas and tables | | 3.11.12 | 2024-09-12 | [\#45370](https://github.com/airbytehq/airbyte/pull/45370) | fix a race condition in our orphanedThreadFilter | From 91c007e7fabe07219f408f00349fcdcbb8e71362 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Fri, 1 Nov 2024 04:06:39 +0530 Subject: [PATCH 518/808] source-web-scrapper contribution from bishalbera (#47967) Co-authored-by: Marcos Marx --- .../connectors/source-web-scrapper/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-web-scrapper/icon.svg | 321 +++++++++ .../source-web-scrapper/manifest.yaml | 658 ++++++++++++++++++ .../source-web-scrapper/metadata.yaml | 35 + docs/integrations/sources/web-scrapper.md | 28 + 6 files changed, 1092 insertions(+) create mode 100644 airbyte-integrations/connectors/source-web-scrapper/README.md create mode 100644 airbyte-integrations/connectors/source-web-scrapper/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-web-scrapper/icon.svg create mode 100644 airbyte-integrations/connectors/source-web-scrapper/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-web-scrapper/metadata.yaml create mode 100644 docs/integrations/sources/web-scrapper.md diff --git a/airbyte-integrations/connectors/source-web-scrapper/README.md b/airbyte-integrations/connectors/source-web-scrapper/README.md new file mode 100644 index 000000000000..c7f39aafa4a6 --- /dev/null +++ b/airbyte-integrations/connectors/source-web-scrapper/README.md @@ -0,0 +1,33 @@ +# Web Scrapper +This directory contains the manifest-only connector for `source-web-scrapper`. + +Web Scrapper connector enables data synchronization from Web Scrapper source to various data destination. It gives information about sitemaps, users, scraping jobs etc. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-web-scrapper:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-web-scrapper build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-web-scrapper test +``` + diff --git a/airbyte-integrations/connectors/source-web-scrapper/acceptance-test-config.yml b/airbyte-integrations/connectors/source-web-scrapper/acceptance-test-config.yml new file mode 100644 index 000000000000..247bb48c4903 --- /dev/null +++ b/airbyte-integrations/connectors/source-web-scrapper/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-web-scrapper:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-web-scrapper/icon.svg b/airbyte-integrations/connectors/source-web-scrapper/icon.svg new file mode 100644 index 000000000000..4caf78b9bebc --- /dev/null +++ b/airbyte-integrations/connectors/source-web-scrapper/icon.svg @@ -0,0 +1,321 @@ + + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-web-scrapper/manifest.yaml b/airbyte-integrations/connectors/source-web-scrapper/manifest.yaml new file mode 100644 index 000000000000..98ac831ce009 --- /dev/null +++ b/airbyte-integrations/connectors/source-web-scrapper/manifest.yaml @@ -0,0 +1,658 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + Web Scrapper connector enables data synchronization from Web Scrapper source + to various data destination. It gives information about sitemaps, users, + scraping jobs etc. + +check: + type: CheckStream + stream_names: + - sitemap_list + +definitions: + streams: + sitemap_list: + type: DeclarativeStream + name: sitemap_list + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v1/sitemaps + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sitemap_list" + users: + type: DeclarativeStream + name: users + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v1/account + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + scraping_jobs: + type: DeclarativeStream + name: scraping_jobs + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v1/scraping-jobs + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/scraping_jobs" + scraping_job_data_quality: + type: DeclarativeStream + name: scraping_job_data_quality + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + /api/v1/scraping-job/{{ stream_partition.scraping_job + }}/data-quality + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: scraping_job + stream: + $ref: "#/definitions/streams/scraping_jobs" + transformations: + - type: AddFields + fields: + - path: + - scraping_job + value: "{{ stream_slice.scraping_job }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/scraping_job_data_quality" + sitemap_detail: + type: DeclarativeStream + name: sitemap_detail + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v1/sitemap/{{stream_partition.sitemap_id}} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: sitemap_id + stream: + $ref: "#/definitions/streams/sitemap_list" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sitemap_detail" + base_requester: + type: HttpRequester + url_base: https://api.webscraper.io + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_token\"] }}" + inject_into: + type: RequestOption + field_name: api_token + inject_into: request_parameter + +streams: + - $ref: "#/definitions/streams/sitemap_list" + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/scraping_jobs" + - $ref: "#/definitions/streams/scraping_job_data_quality" + - $ref: "#/definitions/streams/sitemap_detail" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_token + properties: + api_token: + type: string + description: API token to use. Find it at https://cloud.webscraper.io/api + name: api_token + order: 0 + title: API Token + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + sitemap_list: true + users: true + scraping_jobs: true + scraping_job_data_quality: true + sitemap_detail: true + testedStreams: + sitemap_list: + streamHash: 3f486ff4a4f9b6d42e2c357a47b4e129841f618c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + users: + streamHash: bbdcf3fa16b1f9418d8de88104cf767f80a6605f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + scraping_jobs: + streamHash: 3bf27ee2242c4556a1261ece0ea757b1dd9859e5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + scraping_job_data_quality: + streamHash: c2e39750e0e2fa0b30ccf392c7b1a613a0878a50 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + sitemap_detail: + streamHash: 69d02ba9a400cbda2f01accffc1248cdb41eee20 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://webscraper.io/documentation/web-scraper-cloud/api + +schemas: + sitemap_list: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + name: + type: + - string + - "null" + required: + - id + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + email: + type: + - string + - "null" + firstname: + type: + - string + - "null" + lastname: + type: + - string + - "null" + page_credits: + type: + - number + - "null" + scraping_jobs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + driver: + type: + - string + - "null" + id: + type: number + jobs_empty: + type: + - number + - "null" + jobs_executed: + type: + - number + - "null" + jobs_failed: + type: + - number + - "null" + jobs_no_value: + type: + - number + - "null" + jobs_scheduled: + type: + - number + - "null" + page_load_delay: + type: + - number + - "null" + request_interval: + type: + - number + - "null" + scheduled: + type: + - number + - "null" + scraping_duration: + type: + - number + - "null" + sitemap_id: + type: + - number + - "null" + sitemap_name: + type: + - string + - "null" + status: + type: + - string + - "null" + stored_record_count: + type: + - number + - "null" + test_run: + type: + - number + - "null" + time_created: + type: + - number + - "null" + required: + - id + scraping_job_data_quality: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + max_empty_pages_percent: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + max_failed_pages_percent: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + max_no_value_pages_percent: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + min_column_records: + type: + - object + - "null" + properties: + description: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + category-link: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + category-link-href: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + name: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + pagination: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + pagination-href: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + price: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + product-link: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + product-link-href: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + reviews: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + subcategory-link: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + subcategory-link-href: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + min_record_count: + type: + - object + - "null" + properties: + expected: + type: + - number + - "null" + got: + type: + - number + - "null" + success: + type: + - boolean + - "null" + overall_data_quality_success: + type: + - boolean + - "null" + scraping_job: + type: + - number + - "null" + sitemap_detail: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + name: + type: + - string + - "null" + sitemap: + type: + - string + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-web-scrapper/metadata.yaml b/airbyte-integrations/connectors/source-web-scrapper/metadata.yaml new file mode 100644 index 000000000000..61d08a1d2e8f --- /dev/null +++ b/airbyte-integrations/connectors/source-web-scrapper/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.webscraper.io" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-web-scrapper + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + connectorSubtype: api + connectorType: source + definitionId: 2f87b960-0220-4b76-9ab3-fba67ca4c959 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-web-scrapper + githubIssueLabel: source-web-scrapper + icon: icon.svg + license: MIT + name: Web Scrapper + releaseDate: 2024-10-29 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/web-scrapper + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/web-scrapper.md b/docs/integrations/sources/web-scrapper.md new file mode 100644 index 000000000000..ff2545eea2d8 --- /dev/null +++ b/docs/integrations/sources/web-scrapper.md @@ -0,0 +1,28 @@ +# Web Scrapper +[Web Scrapper](https://webscraper.io/documentation/web-scraper-cloud/api) connector enables data synchronization from Web Scrapper source to various data destination. It gives information about sitemaps, users, scraping jobs etc. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_token` | `string` | API Token. API token to use. Find it at https://cloud.webscraper.io/api | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| sitemap_list | id | DefaultPaginator | ✅ | ❌ | +| sitemap_detail | id | DefaultPaginator | ✅ | ❌ | +| users | | No pagination | ✅ | ❌ | +| scraping_jobs | id | DefaultPaginator | ✅ | ❌ | +| scraping_job_data_quality | | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-29 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From b86c6e5113566616122e6910d951a304bde77f8a Mon Sep 17 00:00:00 2001 From: Yue Li <61070669+theyueli@users.noreply.github.com> Date: Thu, 31 Oct 2024 15:45:51 -0700 Subject: [PATCH 519/808] [source-mysql] Adding CAT tests for source-mysql (#47392) --- .../source-mysql/acceptance-test-config.yml | 100 ++++++++- .../source-mysql/integration_tests/Dockerfile | 13 ++ .../abnormal_state_template.json | 20 ++ .../configured_catalog_template.json | 28 +++ .../integration_tests/expected_records.txt | 3 + ...cremental_configured_catalog_template.json | 28 +++ .../integration_tests/seed/hook.py | 209 ++++++++++++++++++ .../integration_tests/seed/requirements.txt | 2 + .../connectors/source-mysql/metadata.yaml | 20 ++ 9 files changed, 417 insertions(+), 6 deletions(-) create mode 100644 airbyte-integrations/connectors/source-mysql/integration_tests/Dockerfile create mode 100644 airbyte-integrations/connectors/source-mysql/integration_tests/abnormal_state_template.json create mode 100644 airbyte-integrations/connectors/source-mysql/integration_tests/configured_catalog_template.json create mode 100644 airbyte-integrations/connectors/source-mysql/integration_tests/expected_records.txt create mode 100644 airbyte-integrations/connectors/source-mysql/integration_tests/incremental_configured_catalog_template.json create mode 100755 airbyte-integrations/connectors/source-mysql/integration_tests/seed/hook.py create mode 100644 airbyte-integrations/connectors/source-mysql/integration_tests/seed/requirements.txt diff --git a/airbyte-integrations/connectors/source-mysql/acceptance-test-config.yml b/airbyte-integrations/connectors/source-mysql/acceptance-test-config.yml index 575c91b8bb87..aa83992499d9 100644 --- a/airbyte-integrations/connectors/source-mysql/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-mysql/acceptance-test-config.yml @@ -1,10 +1,98 @@ # See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) # for more information about how to configure these tests connector_image: airbyte/source-mysql:dev -tests: +custom_environment_variables: + USE_STREAM_CAPABLE_STATE: true +acceptance_tests: + client_container_config: + client_container_dockerfile_path: "integration_tests/Dockerfile" + final_teardown_command: + - "python" + - "./hook.py" + - "final_teardown" spec: - - spec_path: "src/test-integration/resources/expected_oss_spec.json" - config_path: "src/test-integration/resources/dummy_config.json" - - deployment_mode: cloud - spec_path: "src/test-integration/resources/expected_cloud_spec.json" - config_path: "src/test-integration/resources/dummy_config.json" + tests: + - spec_path: "src/test-integration/resources/expected_oss_spec.json" + config_path: "secrets/cat-config.json" + - spec_path: "src/test-integration/resources/expected_cloud_spec.json" + config_path: "secrets/cat-config.json" + deployment_mode: cloud + connection: + tests: + - config_path: "secrets/cat-config.json" + status: "succeed" + discovery: + tests: + - config_path: "secrets/cat-config.json" + basic_read: + tests: + - config_path: "integration_tests/temp/config_active.json" + configured_catalog_path: "integration_tests/temp/configured_catalog_copy.json" + expect_records: + path: "integration_tests/expected_records.txt" + client_container_config: + client_container_dockerfile_path: "integration_tests/Dockerfile" + secrets_path: "secrets/cat-config.json" + setup_command: + - "python" + - "./hook.py" + - "setup" + teardown_command: + - "python" + - "./hook.py" + - "teardown" + full_refresh: + tests: + - config_path: "integration_tests/temp/config_active.json" + configured_catalog_path: "integration_tests/temp/configured_catalog_copy.json" + client_container_config: + client_container_dockerfile_path: "integration_tests/Dockerfile" + secrets_path: "secrets/cat-config.json" + setup_command: + - "python" + - "./hook.py" + - "setup" + teardown_command: + - "python" + - "./hook.py" + - "teardown" + incremental: + tests: + - config_path: "integration_tests/temp/config_active.json" + configured_catalog_path: "integration_tests/temp/incremental_configured_catalog_copy.json" + client_container_config: + client_container_dockerfile_path: "integration_tests/Dockerfile" + secrets_path: "secrets/cat-config.json" + setup_command: + - "python" + - "./hook.py" + - "setup" + teardown_command: + - "python" + - "./hook.py" + - "teardown" + between_syncs_command: + - "python" + - "./hook.py" + - "insert" + future_state: + future_state_path: "integration_tests/temp/abnormal_state_copy.json" + - config_path: "integration_tests/temp/config_cdc_active.json" + configured_catalog_path: "integration_tests/temp/incremental_configured_catalog_copy.json" + client_container_config: + client_container_dockerfile_path: "integration_tests/Dockerfile" + secrets_path: "secrets/cat-config-cdc.json" + setup_command: + - "python" + - "./hook.py" + - "setup_cdc" + between_syncs_command: + - "python" + - "./hook.py" + - "insert" + teardown_command: + - "python" + - "./hook.py" + - "teardown" + future_state: + bypass_reason: "CDC does not have a future state as LSN will be absent from DB, triggering a full refresh" diff --git a/airbyte-integrations/connectors/source-mysql/integration_tests/Dockerfile b/airbyte-integrations/connectors/source-mysql/integration_tests/Dockerfile new file mode 100644 index 000000000000..31a7e649b4f5 --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql/integration_tests/Dockerfile @@ -0,0 +1,13 @@ +# Use a base image with MySQL client +FROM python:3.9 + +WORKDIR /usr/src/app + +# Copy the script to the container and install the requirements. +COPY seed/requirements.txt . +RUN pip install --no-cache-dir -r ./requirements.txt +COPY seed/hook.py . + +# Give execution rights to the script and pre-generate all scripts. +RUN chmod +x ./hook.py +RUN python ./hook.py prepare \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-mysql/integration_tests/abnormal_state_template.json b/airbyte-integrations/connectors/source-mysql/integration_tests/abnormal_state_template.json new file mode 100644 index 000000000000..a17c2c6041c8 --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql/integration_tests/abnormal_state_template.json @@ -0,0 +1,20 @@ +[ + { + "type": "STREAM", + "stream": { + "stream_state": { + "version": 2, + "state_type": "cursor_based", + "stream_name": "id_and_name_cat", + "cursor_field": ["id"], + "cursor": "6", + "cursor_record_count": 1, + "stream_namespace": "%s" + }, + "stream_descriptor": { + "name": "id_and_name_cat", + "namespace": "%s" + } + } + } +] diff --git a/airbyte-integrations/connectors/source-mysql/integration_tests/configured_catalog_template.json b/airbyte-integrations/connectors/source-mysql/integration_tests/configured_catalog_template.json new file mode 100644 index 000000000000..a1cf9de07799 --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql/integration_tests/configured_catalog_template.json @@ -0,0 +1,28 @@ +{ + "streams": [ + { + "stream": { + "name": "id_and_name_cat", + "json_schema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "id": { + "type": "string" + } + } + }, + "supported_sync_modes": ["full_refresh", "incremental"], + "default_cursor_field": [], + "source_defined_primary_key": [], + "namespace": "%s" + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "cursor_field": ["id"], + "user_defined_primary_key": ["id"] + } + ] +} diff --git a/airbyte-integrations/connectors/source-mysql/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-mysql/integration_tests/expected_records.txt new file mode 100644 index 000000000000..8c60e5d1ee18 --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql/integration_tests/expected_records.txt @@ -0,0 +1,3 @@ +{"stream": "id_and_name_cat", "data": {"id": "1", "name": "one"}, "emitted_at": 999999} +{"stream": "id_and_name_cat", "data": {"id": "2", "name": "two"}, "emitted_at": 999999} +{"stream": "id_and_name_cat", "data": {"id": "3", "name": "three"}, "emitted_at": 999999} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-mysql/integration_tests/incremental_configured_catalog_template.json b/airbyte-integrations/connectors/source-mysql/integration_tests/incremental_configured_catalog_template.json new file mode 100644 index 000000000000..90ee287fc467 --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql/integration_tests/incremental_configured_catalog_template.json @@ -0,0 +1,28 @@ +{ + "streams": [ + { + "stream": { + "name": "id_and_name_cat", + "json_schema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "id": { + "type": "string" + } + } + }, + "supported_sync_modes": ["full_refresh", "incremental"], + "default_cursor_field": [], + "source_defined_primary_key": [], + "namespace": "%s" + }, + "sync_mode": "incremental", + "destination_sync_mode": "append", + "cursor_field": ["id"], + "user_defined_primary_key": ["id"] + } + ] +} diff --git a/airbyte-integrations/connectors/source-mysql/integration_tests/seed/hook.py b/airbyte-integrations/connectors/source-mysql/integration_tests/seed/hook.py new file mode 100755 index 000000000000..488bcf605f2e --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql/integration_tests/seed/hook.py @@ -0,0 +1,209 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. + +import datetime +import json +import random +import string +import sys +from contextlib import contextmanager +from datetime import timedelta +from pathlib import Path +from typing import List, Tuple + +import mysql.connector +import pytz +from mysql.connector import Error + +support_file_path_prefix = "/connector/integration_tests" +catalog_write_file = support_file_path_prefix + "/temp/configured_catalog_copy.json" +catalog_source_file = support_file_path_prefix + "/configured_catalog_template.json" +catalog_incremental_write_file = support_file_path_prefix + "/temp/incremental_configured_catalog_copy.json" +catalog_incremental_source_file = support_file_path_prefix + "/incremental_configured_catalog_template.json" +abnormal_state_write_file = support_file_path_prefix + "/temp/abnormal_state_copy.json" +abnormal_state_file = support_file_path_prefix + "/abnormal_state_template.json" + +secret_config_file = '/connector/secrets/cat-config.json' +secret_active_config_file = support_file_path_prefix + '/temp/config_active.json' +secret_config_cdc_file = '/connector/secrets/cat-config-cdc.json' +secret_active_config_cdc_file = support_file_path_prefix + '/temp/config_cdc_active.json' + +la_timezone = pytz.timezone('America/Los_Angeles') + +@contextmanager +def connect_to_db(): + with open(secret_config_file) as f: + secret = json.load(f) + conn = None + try: + conn = mysql.connector.connect( + database=None, + user=secret["username"], + password=secret["password"], + host=secret["host"], + port=secret["port"] + ) + print("Connected to the database successfully") + yield conn + except Error as error: + print(f"Error connecting to the database: {error}") + if conn: + conn.rollback() + sys.exit(1) + finally: + if conn: + conn.close() + print("Database connection closed") + +def insert_records(conn, schema_name: str, table_name: str, records: List[Tuple[str, str]]) -> None: + insert_query = f"INSERT INTO {schema_name}.{table_name} (id, name) VALUES (%s, %s) ON DUPLICATE KEY UPDATE id=id" + try: + with conn.cursor() as cursor: + for record in records: + cursor.execute(insert_query, record) + conn.commit() + print("Records inserted successfully") + except Error as error: + print(f"Error inserting records: {error}") + conn.rollback() + +def create_schema(conn, schema_name: str) -> None: + create_schema_query = f"CREATE DATABASE IF NOT EXISTS {schema_name}" + try: + with conn.cursor() as cursor: + cursor.execute(create_schema_query) + conn.commit() + print(f"Database '{schema_name}' created successfully") + except Error as error: + print(f"Error creating database: {error}") + conn.rollback() + +def write_supporting_file(schema_name: str) -> None: + print(f"writing schema name to files: {schema_name}") + Path(support_file_path_prefix + "/temp").mkdir(parents=False, exist_ok=True) + + with open(catalog_write_file, "w") as file: + with open(catalog_source_file, 'r') as source_file: + file.write(source_file.read() % schema_name) + with open(catalog_incremental_write_file, "w") as file: + with open(catalog_incremental_source_file, 'r') as source_file: + file.write(source_file.read() % schema_name) + with open(abnormal_state_write_file, "w") as file: + with open(abnormal_state_file, 'r') as source_file: + file.write(source_file.read() % (schema_name, schema_name)) + + with open(secret_config_file) as base_config: + secret = json.load(base_config) + secret["database"] = schema_name + with open(secret_active_config_file, 'w') as f: + json.dump(secret, f) + + with open(secret_config_cdc_file) as base_config: + secret = json.load(base_config) + secret["database"] = schema_name + with open(secret_active_config_cdc_file, 'w') as f: + json.dump(secret, f) + +def create_table(conn, schema_name: str, table_name: str) -> None: + create_table_query = f""" + CREATE TABLE IF NOT EXISTS {schema_name}.{table_name} ( + id VARCHAR(100) PRIMARY KEY, + name VARCHAR(255) NOT NULL + ) + """ + try: + with conn.cursor() as cursor: + cursor.execute(create_table_query) + conn.commit() + print(f"Table '{schema_name}.{table_name}' created successfully") + except Error as error: + print(f"Error creating table: {error}") + conn.rollback() + +def generate_schema_date_with_suffix() -> str: + current_date = datetime.datetime.now(la_timezone).strftime("%Y%m%d") + suffix = ''.join(random.choices(string.ascii_lowercase + string.digits, k=8)) + return f"{current_date}_{suffix}" + +def prepare() -> None: + schema_name = generate_schema_date_with_suffix() + print(f"schema_name: {schema_name}") + with open("./generated_schema.txt", "w") as f: + f.write(schema_name) + +def cdc_insert(): + schema_name = load_schema_name_from_catalog() + new_records = [ + ('4', 'four'), + ('5', 'five') + ] + table_name = 'id_and_name_cat' + with connect_to_db() as conn: + insert_records(conn, schema_name, table_name, new_records) + +def setup(): + schema_name = load_schema_name_from_catalog() + write_supporting_file(schema_name) + table_name = "id_and_name_cat" + records = [ + ('1', 'one'), + ('2', 'two'), + ('3', 'three') + ] + with connect_to_db() as conn: + create_schema(conn, schema_name) + create_table(conn, schema_name, table_name) + insert_records(conn, schema_name, table_name, records) + +def load_schema_name_from_catalog(): + with open("./generated_schema.txt", "r") as f: + return f.read() + +def delete_schemas_with_prefix(conn, date_prefix): + query = f""" + SELECT schema_name + FROM information_schema.schemata + WHERE schema_name LIKE '{date_prefix}%'; + """ + try: + with conn.cursor() as cursor: + cursor.execute(query) + schemas = cursor.fetchall() + for schema in schemas: + drop_query = f"DROP DATABASE IF EXISTS {schema[0]};" + cursor.execute(drop_query) + print(f"Database {schema[0]} has been dropped.") + conn.commit() + except Error as error: + print(f"An error occurred in deleting schema: {e}") + sys.exit(1) + +def teardown() -> None: + today = datetime.datetime.now(la_timezone) + yesterday = today - timedelta(days=1) + formatted_yesterday = yesterday.strftime('%Y%m%d') + with connect_to_db() as conn: + delete_schemas_with_prefix(conn, formatted_yesterday) + +def final_teardown() -> None: + schema_name = load_schema_name_from_catalog() + print(f"delete database {schema_name}") + with connect_to_db() as conn: + delete_schemas_with_prefix(conn, schema_name) + +if __name__ == "__main__": + command = sys.argv[1] + if command == "setup": + setup() + elif command == "setup_cdc": + setup() + elif command == "teardown": + teardown() + elif command == "final_teardown": + final_teardown() + elif command == "prepare": + prepare() + elif command == "insert": + cdc_insert() + else: + print(f"Unrecognized command {command}.") + exit(1) diff --git a/airbyte-integrations/connectors/source-mysql/integration_tests/seed/requirements.txt b/airbyte-integrations/connectors/source-mysql/integration_tests/seed/requirements.txt new file mode 100644 index 000000000000..97b176cab978 --- /dev/null +++ b/airbyte-integrations/connectors/source-mysql/integration_tests/seed/requirements.txt @@ -0,0 +1,2 @@ +mysql-connector-python +pytz \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-mysql/metadata.yaml b/airbyte-integrations/connectors/source-mysql/metadata.yaml index bfd5d41d6c72..496beba3e8d5 100644 --- a/airbyte-integrations/connectors/source-mysql/metadata.yaml +++ b/airbyte-integrations/connectors/source-mysql/metadata.yaml @@ -60,6 +60,16 @@ data: secretStore: type: GSM alias: airbyte-connector-testing-secret-store + - name: SECRET_SOURCE_MYSQL_ACCEPTANCE_TEST_CREDS + fileName: cat-config.json + secretStore: + type: GSM + alias: airbyte-connector-testing-secret-store + - name: SECRET_SOURCE_MYSQL_ACCEPTANCE_TEST_CDC_CREDS + fileName: cat-config-cdc.json + secretStore: + type: GSM + alias: airbyte-connector-testing-secret-store - suite: acceptanceTests testSecrets: - name: SECRET_SOURCE-MYSQL_SSH-KEY-REPL__CREDS @@ -87,4 +97,14 @@ data: secretStore: type: GSM alias: airbyte-connector-testing-secret-store + - name: SECRET_SOURCE_MYSQL_ACCEPTANCE_TEST_CREDS + fileName: cat-config.json + secretStore: + type: GSM + alias: airbyte-connector-testing-secret-store + - name: SECRET_SOURCE_MYSQL_ACCEPTANCE_TEST_CDC_CREDS + fileName: cat-config-cdc.json + secretStore: + type: GSM + alias: airbyte-connector-testing-secret-store metadataSpecVersion: "1.0" From ed22644783d5c8cd9654b580e5a5d8b017602b71 Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Fri, 1 Nov 2024 04:41:51 +0530 Subject: [PATCH 520/808] Source Qualaroo: Migrate to manifest only format with components (#47017) Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-qualaroo/README.md | 80 +- .../connectors/source-qualaroo/__init__.py | 3 - .../acceptance-test-config.yml | 2 +- .../{source_qualaroo => }/components.py | 0 .../connectors/source-qualaroo/main.py | 8 - .../connectors/source-qualaroo/manifest.yaml | 335 ++++ .../connectors/source-qualaroo/metadata.yaml | 27 +- .../connectors/source-qualaroo/poetry.lock | 1492 ----------------- .../connectors/source-qualaroo/pyproject.toml | 28 - .../source_qualaroo/__init__.py | 8 - .../source_qualaroo/manifest.yaml | 131 -- .../source-qualaroo/source_qualaroo/run.py | 14 - .../source_qualaroo/schemas/responses.json | 76 - .../source_qualaroo/schemas/surveys.json | 36 - .../source-qualaroo/source_qualaroo/source.py | 18 - .../unit_tests/test_components.py | 30 - docs/integrations/sources/qualaroo.md | 1 + 17 files changed, 376 insertions(+), 1913 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-qualaroo/__init__.py rename airbyte-integrations/connectors/source-qualaroo/{source_qualaroo => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-qualaroo/main.py create mode 100644 airbyte-integrations/connectors/source-qualaroo/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-qualaroo/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-qualaroo/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-qualaroo/source_qualaroo/__init__.py delete mode 100644 airbyte-integrations/connectors/source-qualaroo/source_qualaroo/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-qualaroo/source_qualaroo/run.py delete mode 100644 airbyte-integrations/connectors/source-qualaroo/source_qualaroo/schemas/responses.json delete mode 100644 airbyte-integrations/connectors/source-qualaroo/source_qualaroo/schemas/surveys.json delete mode 100644 airbyte-integrations/connectors/source-qualaroo/source_qualaroo/source.py delete mode 100644 airbyte-integrations/connectors/source-qualaroo/unit_tests/test_components.py diff --git a/airbyte-integrations/connectors/source-qualaroo/README.md b/airbyte-integrations/connectors/source-qualaroo/README.md index dcf330fcbf13..b3f9f56f97d9 100644 --- a/airbyte-integrations/connectors/source-qualaroo/README.md +++ b/airbyte-integrations/connectors/source-qualaroo/README.md @@ -1,89 +1,63 @@ # Qualaroo source connector +This directory contains the manifest-only connector for `source-qualaroo`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -This is the repository for the Qualaroo source connector, written in Python. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/qualaroo). +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/qualaroo). ## Local development -### Prerequisites -* Python (~=3.9) -* Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! +If you prefer to develop locally, you can follow the instructions below. -### Installing the connector -From this connector directory, run: -```bash -poetry install --with dev -``` - - -### Create credentials -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/qualaroo) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_qualaroo/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `sample_files/sample_config.json` for a sample config file. - - -### Locally running the connector -``` -poetry run source-qualaroo spec -poetry run source-qualaroo check --config secrets/config.json -poetry run source-qualaroo discover --config secrets/config.json -poetry run source-qualaroo read --config secrets/config.json --catalog sample_files/configured_catalog.json -``` +### Building the docker image -### Running unit tests -To run unit tests locally, from the connector directory run: -``` -poetry run pytest unit_tests -``` +You can build any manifest-only connector with `airbyte-ci`: -### Building the docker image 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: + ```bash airbyte-ci connectors --name=source-qualaroo build ``` An image will be available on your host with the tag `airbyte/source-qualaroo:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/qualaroo) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. ### Running as a docker container -Then run any of the connector commands as follows: -``` + +Then run any of the standard source connector commands: + +```bash docker run --rm airbyte/source-qualaroo:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-qualaroo:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-qualaroo:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-qualaroo:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite -You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): -```bash -airbyte-ci connectors --name=source-qualaroo test -``` +### Running the CI test suite -### Customizing acceptance Tests -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. +You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): -### Dependency Management -All of your dependencies should be managed via Poetry. -To add a new dependency, run: ```bash -poetry add +airbyte-ci connectors --name=source-qualaroo test ``` -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-qualaroo test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + +If you want to contribute changes to `source-qualaroo`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-qualaroo test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/qualaroo.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. diff --git a/airbyte-integrations/connectors/source-qualaroo/__init__.py b/airbyte-integrations/connectors/source-qualaroo/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-qualaroo/acceptance-test-config.yml b/airbyte-integrations/connectors/source-qualaroo/acceptance-test-config.yml index 6241c7d6d3c7..4b383a66d097 100644 --- a/airbyte-integrations/connectors/source-qualaroo/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-qualaroo/acceptance-test-config.yml @@ -4,7 +4,7 @@ connector_image: airbyte/source-qualaroo:dev acceptance_tests: spec: tests: - - spec_path: "source_qualaroo/spec.yaml" + - spec_path: "manifest.yaml" connection: tests: - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/components.py b/airbyte-integrations/connectors/source-qualaroo/components.py similarity index 100% rename from airbyte-integrations/connectors/source-qualaroo/source_qualaroo/components.py rename to airbyte-integrations/connectors/source-qualaroo/components.py diff --git a/airbyte-integrations/connectors/source-qualaroo/main.py b/airbyte-integrations/connectors/source-qualaroo/main.py deleted file mode 100644 index 7a7ed24a96bf..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_qualaroo.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-qualaroo/manifest.yaml b/airbyte-integrations/connectors/source-qualaroo/manifest.yaml new file mode 100644 index 000000000000..94f2c4db0522 --- /dev/null +++ b/airbyte-integrations/connectors/source-qualaroo/manifest.yaml @@ -0,0 +1,335 @@ +version: 5.14.0 + +type: DeclarativeSource + +check: + type: CheckStream + stream_names: + - surveys + +definitions: + streams: + surveys: + type: DeclarativeStream + name: surveys + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: nudges + http_method: GET + request_parameters: + limit: "500" + start_date: "{{config['start_date']}}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + http_codes: + - 500 + action: FAIL + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + action: IGNORE + http_codes: + - 504 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + record_filter: + type: RecordFilter + condition: >- + {{ record['id'] in config['survey_ids'] if config['survey_ids'] + else true}} + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + page_size: 500 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/surveys" + responses: + type: DeclarativeStream + name: responses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: nudges/{{ stream_slice.parent_id }}/responses.json + http_method: GET + request_parameters: + limit: "500" + start_date: "{{config['start_date']}}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + http_codes: + - 500 + action: FAIL + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + action: IGNORE + http_codes: + - 504 + record_selector: + type: RecordSelector + extractor: + type: CustomRecordExtractor + class_name: source_declarative_manifest.components.CustomExtractor + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + page_size: 500 + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: parent_id + stream: + $ref: "#/definitions/streams/surveys" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/responses" + base_requester: + type: HttpRequester + url_base: https://api.qualaroo.com/api/v1/ + authenticator: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.CustomAuthenticator + username: "{{config['key']}}" + password: "{{config['token']}}" + +streams: + - $ref: "#/definitions/streams/surveys" + - $ref: "#/definitions/streams/responses" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - token + - key + - start_date + properties: + token: + type: string + description: >- + A Qualaroo token. See the docs + for instructions on how to generate it. + title: API token + airbyte_secret: true + order: 0 + key: + type: string + description: >- + A Qualaroo token. See the docs + for instructions on how to generate it. + title: API key + airbyte_secret: true + order: 1 + start_date: + type: string + description: >- + UTC date and time in the format 2017-01-25T00:00:00Z. Any data before + this date will not be replicated. + title: Start Date + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{3}Z$ + examples: + - "2021-03-01T00:00:00.000Z" + order: 2 + survey_ids: + type: array + description: >- + IDs of the surveys from which you'd like to replicate data. If left + empty, data from all surveys to which you have access will be + replicated. + items: + type: string + pattern: ^[0-9]{1,8}$ + title: Qualaroo survey IDs + order: 3 + additionalProperties: true + +metadata: + autoImportSchema: + surveys: false + responses: false + yamlComponents: + streams: + responses: + - recordSelector + global: + - authenticator + testedStreams: {} + assist: {} + +schemas: + surveys: + type: object + properties: + type: + type: + - "null" + - string + active: + type: + - "null" + - boolean + canonical_name: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + id: + type: + - "null" + - integer + kind: + type: + - "null" + - string + name: + type: + - "null" + - string + site_id: + type: + - "null" + - integer + survey_url: + type: + - "null" + - string + uuid: + type: + - "null" + - string + additionalProperties: true + responses: + type: object + properties: + anon_visitor_id: + type: + - "null" + - string + answered_questions: + type: array + items: + type: + - "null" + - object + emitted_at: + type: + - "null" + - string + format: date-time + id: + type: + - "null" + - integer + identity: + type: + - "null" + - string + ip_address: + type: + - "null" + - string + location: + type: + - "null" + - string + nps: + type: + - "null" + - object + properties: + category: + type: + - "null" + - string + reason: + type: + - "null" + - string + respondent_id: + type: + - "null" + - integer + response_uri: + type: + - "null" + - string + score: + type: + - "null" + - integer + time: + type: + - "null" + - string + format: date-time + nudge_id: + type: + - "null" + - integer + nudge_name: + type: + - "null" + - string + page: + type: + - "null" + - string + properties: + type: + - "null" + - object + referrer: + type: + - "null" + - string + time: + type: + - "null" + - string + format: date-time + user_agent: + type: + - "null" + - string + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-qualaroo/metadata.yaml b/airbyte-integrations/connectors/source-qualaroo/metadata.yaml index 055973b457f5..bcd916cb3516 100644 --- a/airbyte-integrations/connectors/source-qualaroo/metadata.yaml +++ b/airbyte-integrations/connectors/source-qualaroo/metadata.yaml @@ -4,7 +4,7 @@ data: - "*" # Please change to the hostname of the source. remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-qualaroo registryOverrides: oss: @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: eb655362-28a8-4311-8806-4fcc612734a7 - dockerImageTag: 0.3.24 + dockerImageTag: 0.4.0 dockerRepository: airbyte/source-qualaroo githubIssueLabel: source-qualaroo icon: qualaroo.svg @@ -25,24 +25,21 @@ data: supportLevel: community documentationUrl: https://docs.airbyte.com/integrations/sources/qualaroo tags: - - language:python - cdk:low-code + - language:manifest-only connectorTestSuitesOptions: - suite: liveTests testConnections: - name: qualaroo_config_dev_null id: 8178b8f4-9511-442c-9ddf-4cd31713266c - # Disable acceptance tests for now - # They are not passing - # No Airbyte Cloud usage - # - suite: unitTests - # - suite: acceptanceTests - # testSecrets: - # - name: SECRET_SOURCE-QUALAROO_CREDS - # fileName: config.json - # secretStore: - # type: GSM - # alias: airbyte-connector-testing-secret-store + - suite: unitTests + - suite: acceptanceTests + testSecrets: + - name: SECRET_SOURCE-QUALAROO_CREDS + fileName: config.json + secretStore: + type: GSM + alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a metadataSpecVersion: "1.0" diff --git a/airbyte-integrations/connectors/source-qualaroo/poetry.lock b/airbyte-integrations/connectors/source-qualaroo/poetry.lock deleted file mode 100644 index 711efc8fb7ce..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/poetry.lock +++ /dev/null @@ -1,1492 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "1.0.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-1.0.0-py3-none-any.whl", hash = "sha256:74cd8d4f9790b9a164731c42236cb015166b5ab2b0754b6a1fd730f223eb4e7f"}, - {file = "airbyte_cdk-1.0.0.tar.gz", hash = "sha256:102b75ce589460be4f75dabd3402ac7aa633c90758558c81d140fd436b76371f"}, -] - -[package.dependencies] -airbyte-protocol-models = ">=0.9.0,<1.0" -backoff = "*" -cachetools = "*" -cryptography = ">=42.0.5,<43.0.0" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -langchain_core = "0.1.42" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyjwt = ">=2.8.0,<3.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -pytz = "2024.1" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.13.0" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.13.0-py3-none-any.whl", hash = "sha256:fa8b7e1a85f9ae171c50b30d23b317da1740d051994fd3ed648f9dfba00250e2"}, - {file = "airbyte_protocol_models-0.13.0.tar.gz", hash = "sha256:09d8900ba8674a9315fa1799d17026f6b38d2187c08160449540ee93331ed2e7"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "anyio" -version = "4.6.2.post1" -description = "High level compatibility layer for multiple asynchronous event loop implementations" -optional = false -python-versions = ">=3.9" -files = [ - {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, - {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, -] - -[package.dependencies] -exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} -idna = ">=2.8" -sniffio = ">=1.1" -typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} - -[package.extras] -doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] -trio = ["trio (>=0.26.1)"] - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "cffi" -version = "1.17.1" -description = "Foreign Function Interface for Python calling C code." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, - {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, - {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, - {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, - {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, - {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, - {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, - {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, - {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, - {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, - {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, - {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, - {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, - {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, - {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, - {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, -] - -[package.dependencies] -pycparser = "*" - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "cryptography" -version = "42.0.8" -description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -optional = false -python-versions = ">=3.7" -files = [ - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e"}, - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7"}, - {file = "cryptography-42.0.8-cp37-abi3-win32.whl", hash = "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2"}, - {file = "cryptography-42.0.8-cp37-abi3-win_amd64.whl", hash = "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba"}, - {file = "cryptography-42.0.8-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14"}, - {file = "cryptography-42.0.8-cp39-abi3-win32.whl", hash = "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c"}, - {file = "cryptography-42.0.8-cp39-abi3-win_amd64.whl", hash = "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad"}, - {file = "cryptography-42.0.8.tar.gz", hash = "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2"}, -] - -[package.dependencies] -cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} - -[package.extras] -docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] -docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] -nox = ["nox"] -pep8test = ["check-sdist", "click", "mypy", "ruff"] -sdist = ["build"] -ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] -test-randomorder = ["pytest-randomly"] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "h11" -version = "0.14.0" -description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -optional = false -python-versions = ">=3.7" -files = [ - {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, - {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, -] - -[[package]] -name = "httpcore" -version = "1.0.6" -description = "A minimal low-level HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, - {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, -] - -[package.dependencies] -certifi = "*" -h11 = ">=0.13,<0.15" - -[package.extras] -asyncio = ["anyio (>=4.0,<5.0)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<1.0)"] - -[[package]] -name = "httpx" -version = "0.27.2" -description = "The next generation HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, - {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, -] - -[package.dependencies] -anyio = "*" -certifi = "*" -httpcore = "==1.*" -idna = "*" -sniffio = "*" - -[package.extras] -brotli = ["brotli", "brotlicffi"] -cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonpatch" -version = "1.33" -description = "Apply JSON-Patches (RFC 6902)" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" -files = [ - {file = "jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade"}, - {file = "jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c"}, -] - -[package.dependencies] -jsonpointer = ">=1.9" - -[[package]] -name = "jsonpointer" -version = "3.0.0" -description = "Identify specific nodes in a JSON document (RFC 6901)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, - {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, -] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "langchain-core" -version = "0.1.42" -description = "Building applications with LLMs through composability" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_core-0.1.42-py3-none-any.whl", hash = "sha256:c5653ffa08a44f740295c157a24c0def4a753333f6a2c41f76bf431cd00be8b5"}, - {file = "langchain_core-0.1.42.tar.gz", hash = "sha256:40751bf60ea5d8e2b2efe65290db434717ee3834870c002e40e2811f09d814e6"}, -] - -[package.dependencies] -jsonpatch = ">=1.33,<2.0" -langsmith = ">=0.1.0,<0.2.0" -packaging = ">=23.2,<24.0" -pydantic = ">=1,<3" -PyYAML = ">=5.3" -tenacity = ">=8.1.0,<9.0.0" - -[package.extras] -extended-testing = ["jinja2 (>=3,<4)"] - -[[package]] -name = "langsmith" -version = "0.1.137" -description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, -] - -[package.dependencies] -httpx = ">=0.23.0,<1" -orjson = ">=3.9.14,<4.0.0" -pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} -requests = ">=2,<3" -requests-toolbelt = ">=1.0.0,<2.0.0" - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "orjson" -version = "3.10.10" -description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -optional = false -python-versions = ">=3.8" -files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, -] - -[[package]] -name = "packaging" -version = "23.2" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pycparser" -version = "2.22" -description = "C parser in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, - {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyjwt" -version = "2.9.0" -description = "JSON Web Token implementation in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, - {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, -] - -[package.extras] -crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] -tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytz" -version = "2024.1" -description = "World timezone definitions, modern and historical" -optional = false -python-versions = "*" -files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, -] - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "requests-toolbelt" -version = "1.0.0" -description = "A utility belt for advanced users of python-requests" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, - {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, -] - -[package.dependencies] -requests = ">=2.0.1,<3.0.0" - -[[package]] -name = "setuptools" -version = "75.2.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "sniffio" -version = "1.3.1" -description = "Sniff out which async library your code is running under" -optional = false -python-versions = ">=3.7" -files = [ - {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, - {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, -] - -[[package]] -name = "tenacity" -version = "8.5.0" -description = "Retry code until it succeeds" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, - {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, -] - -[package.extras] -doc = ["reno", "sphinx"] -test = ["pytest", "tornado (>=4.5)", "typeguard"] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "7837a8e446313e068be6245532d7ddb3a63f70da7bc4c6613d26c3a1443db8e7" diff --git a/airbyte-integrations/connectors/source-qualaroo/pyproject.toml b/airbyte-integrations/connectors/source-qualaroo/pyproject.toml deleted file mode 100644 index 3975b69f9a54..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/pyproject.toml +++ /dev/null @@ -1,28 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "0.3.24" -name = "source-qualaroo" -description = "Source implementation for Qualaroo." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/qualaroo" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_qualaroo" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "1.0.0" - -[tool.poetry.scripts] -source-qualaroo = "source_qualaroo.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "^1.9.3" -pytest = "^6.2" -pytest-mock = "^3.6.1" diff --git a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/__init__.py b/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/__init__.py deleted file mode 100644 index 99c5fb690f89..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceQualaroo - -__all__ = ["SourceQualaroo"] diff --git a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/manifest.yaml b/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/manifest.yaml deleted file mode 100644 index 2f3fa4f94a94..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/manifest.yaml +++ /dev/null @@ -1,131 +0,0 @@ -version: "0.29.0" - -definitions: - selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: [] - record_filter: - condition: "{{ record['id'] in config['survey_ids'] if config['survey_ids'] else true}}" - requester: - type: HttpRequester - url_base: "https://api.qualaroo.com/api/v1/" - http_method: "GET" - authenticator: - class_name: source_qualaroo.components.CustomAuthenticator - username: "{{config['key']}}" - password: "{{config['token']}}" - request_parameters: - limit: "500" - start_date: "{{config['start_date']}}" - error_handler: - response_filters: - - http_codes: [500] - action: FAIL - retriever: - type: SimpleRetriever - record_selector: - $ref: "#/definitions/selector" - paginator: - type: "DefaultPaginator" - pagination_strategy: - type: "OffsetIncrement" - page_size: 500 - page_token_option: - type: "RequestOption" - field_name: "offset" - inject_into: "request_parameter" - requester: - $ref: "#/definitions/requester" - base_stream: - type: DeclarativeStream - retriever: - $ref: "#/definitions/retriever" - - surveys_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "surveys" - primary_key: "id" - path: "nudges" - - responses_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "responses" - primary_key: "id" - retriever: - $ref: "#/definitions/retriever" - requester: - $ref: "#/definitions/requester" - path: "nudges/{{ stream_slice.parent_id }}/responses.json" - record_selector: - type: RecordSelector - extractor: - class_name: source_qualaroo.components.CustomExtractor - partition_router: - type: SubstreamPartitionRouter - parent_stream_configs: - - stream: "#/definitions/surveys_stream" - parent_key: "id" - partition_field: "parent_id" - -streams: - - "#/definitions/surveys_stream" - - "#/definitions/responses_stream" - -check: - type: CheckStream - stream_names: - - "responses" - - "surveys" - -spec: - type: Spec - documentationUrl: https://docs.airbyte.com/integrations/sources/qualaroo - connection_specification: - $schema: http://json-schema.org/draft-07/schema# - title: Qualaroo Spec - type: object - required: - - token - - key - - start_date - additionalProperties: true - properties: - token: - type: string - title: API token - description: >- - A Qualaroo token. See the docs - for instructions on how to generate it. - airbyte_secret: true - key: - type: string - title: API key - description: >- - A Qualaroo token. See the docs - for instructions on how to generate it. - airbyte_secret: true - start_date: - type: string - title: Start Date - pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{3}Z$ - description: >- - UTC date and time in the format 2017-01-25T00:00:00Z. Any data before - this date will not be replicated. - examples: - - "2021-03-01T00:00:00.000Z" - survey_ids: - type: array - items: - type: string - pattern: ^[0-9]{1,8}$ - title: Qualaroo survey IDs - description: >- - IDs of the surveys from which you'd like to replicate data. If left - empty, data from all surveys to which you have access will be - replicated. diff --git a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/run.py b/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/run.py deleted file mode 100644 index c6b4c65009e5..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/run.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch -from source_qualaroo import SourceQualaroo - - -def run(): - source = SourceQualaroo() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/schemas/responses.json b/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/schemas/responses.json deleted file mode 100644 index db74aa16cfa5..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/schemas/responses.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "type": "object", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "time": { - "type": ["null", "string"], - "format": "date-time" - }, - "emitted_at": { - "type": ["null", "string"], - "format": "date-time" - }, - "identity": { - "type": ["null", "string"] - }, - "location": { - "type": ["null", "string"] - }, - "page": { - "type": ["null", "string"] - }, - "referrer": { - "type": ["null", "string"] - }, - "user_agent": { - "type": ["null", "string"] - }, - "nudge_id": { - "type": ["null", "integer"] - }, - "nudge_name": { - "type": ["null", "string"] - }, - "anon_visitor_id": { - "type": ["null", "string"] - }, - "ip_address": { - "type": ["null", "string"] - }, - "answered_questions": { - "type": "array", - "items": { - "type": ["null", "object"] - } - }, - "properties": { - "type": ["null", "object"] - }, - "nps": { - "type": ["null", "object"], - "properties": { - "score": { - "type": ["null", "integer"] - }, - "reason": { - "type": ["null", "string"] - }, - "respondent_id": { - "type": ["null", "integer"] - }, - "time": { - "type": ["null", "string"], - "format": "date-time" - }, - "category": { - "type": ["null", "string"] - }, - "response_uri": { - "type": ["null", "string"] - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/schemas/surveys.json b/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/schemas/surveys.json deleted file mode 100644 index dd24014963e6..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/schemas/surveys.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "type": "object", - "properties": { - "id": { - "type": ["null", "integer"] - }, - "site_id": { - "type": ["null", "integer"] - }, - "uuid": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "active": { - "type": ["null", "boolean"] - }, - "kind": { - "type": ["null", "string"] - }, - "canonical_name": { - "type": ["null", "string"] - }, - "created_at": { - "type": ["null", "string"], - "format": "date-time" - }, - "survey_url": { - "type": ["null", "string"] - }, - "type": { - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/source.py b/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/source.py deleted file mode 100644 index d9312d834b37..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/source_qualaroo/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceQualaroo(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-qualaroo/unit_tests/test_components.py b/airbyte-integrations/connectors/source-qualaroo/unit_tests/test_components.py deleted file mode 100644 index f34157a71350..000000000000 --- a/airbyte-integrations/connectors/source-qualaroo/unit_tests/test_components.py +++ /dev/null @@ -1,30 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -import json - -import requests -from source_qualaroo.components import CustomAuthenticator, CustomExtractor - - -def test_token_generation(): - - config = {"key": "4524324", "token": "token"} - authenticator = CustomAuthenticator(config=config, username="example@gmail.com", password="api_key", parameters=None) - token = authenticator.token - expected_token = "Basic ZXhhbXBsZUBnbWFpbC5jb206YXBpX2tleQ==" - assert expected_token == token - - -def test_extract_records_with_answered_questions(): - - response_data = [ - {"id": 1, "answered_questions": {"q1": "A1", "q2": "A2"}}, - {"id": 2, "answered_questions": {"q3": "A3"}}, - ] - response = requests.Response() - response._content = json.dumps(response_data).encode("utf-8") - extracted_records = CustomExtractor().extract_records(response) - expected_records = [{"id": 1, "answered_questions": ["A1", "A2"]}, {"id": 2, "answered_questions": ["A3"]}] - assert expected_records == extracted_records diff --git a/docs/integrations/sources/qualaroo.md b/docs/integrations/sources/qualaroo.md index aadd5179a79a..328d14fe056c 100644 --- a/docs/integrations/sources/qualaroo.md +++ b/docs/integrations/sources/qualaroo.md @@ -46,6 +46,7 @@ Please read [How to get your APIs Token and Key](https://help.qualaroo.com/hc/en | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------- | +| 0.4.0 | 2024-10-31 | [47017](https://github.com/airbytehq/airbyte/pull/47017) | Migrate to manifest only format | | 0.3.24 | 2024-10-28 | [47111](https://github.com/airbytehq/airbyte/pull/47111) | Update dependencies | | 0.3.23 | 2024-10-12 | [46767](https://github.com/airbytehq/airbyte/pull/46767) | Update dependencies | | 0.3.22 | 2024-10-05 | [46439](https://github.com/airbytehq/airbyte/pull/46439) | Update dependencies | From 290b80d7d7c97ce7ea917cfe40ab82ab6d2ca7ed Mon Sep 17 00:00:00 2001 From: Krishnan <68746496+gemsteam@users.noreply.github.com> Date: Fri, 1 Nov 2024 04:42:36 +0530 Subject: [PATCH 521/808] source-mailtrap contribution from gemsteam (#47303) Co-authored-by: Marcos Marx --- .../connectors/source-mailtrap/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-mailtrap/icon.svg | 1 + .../connectors/source-mailtrap/manifest.yaml | 1155 +++++++++++++++++ .../connectors/source-mailtrap/metadata.yaml | 35 + docs/integrations/sources/mailtrap.md | 33 + 6 files changed, 1274 insertions(+) create mode 100644 airbyte-integrations/connectors/source-mailtrap/README.md create mode 100644 airbyte-integrations/connectors/source-mailtrap/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-mailtrap/icon.svg create mode 100644 airbyte-integrations/connectors/source-mailtrap/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-mailtrap/metadata.yaml create mode 100644 docs/integrations/sources/mailtrap.md diff --git a/airbyte-integrations/connectors/source-mailtrap/README.md b/airbyte-integrations/connectors/source-mailtrap/README.md new file mode 100644 index 000000000000..55940c278116 --- /dev/null +++ b/airbyte-integrations/connectors/source-mailtrap/README.md @@ -0,0 +1,33 @@ +# Mailtrap +This directory contains the manifest-only connector for `source-mailtrap`. + +API Documentation: https://api-docs.mailtrap.io/docs/mailtrap-api-docs/5tjdeg9545058-mailtrap-api + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-mailtrap:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-mailtrap build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-mailtrap test +``` + diff --git a/airbyte-integrations/connectors/source-mailtrap/acceptance-test-config.yml b/airbyte-integrations/connectors/source-mailtrap/acceptance-test-config.yml new file mode 100644 index 000000000000..0475a836f260 --- /dev/null +++ b/airbyte-integrations/connectors/source-mailtrap/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-mailtrap:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-mailtrap/icon.svg b/airbyte-integrations/connectors/source-mailtrap/icon.svg new file mode 100644 index 000000000000..8149a2ce7e52 --- /dev/null +++ b/airbyte-integrations/connectors/source-mailtrap/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-mailtrap/manifest.yaml b/airbyte-integrations/connectors/source-mailtrap/manifest.yaml new file mode 100644 index 000000000000..7f82ca31ef61 --- /dev/null +++ b/airbyte-integrations/connectors/source-mailtrap/manifest.yaml @@ -0,0 +1,1155 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + API Documentation: + https://api-docs.mailtrap.io/docs/mailtrap-api-docs/5tjdeg9545058-mailtrap-api + +check: + type: CheckStream + stream_names: + - accounts + +definitions: + streams: + accounts: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: accounts + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limit hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/accounts" + billing_usage: + type: DeclarativeStream + name: billing_usage + primary_key: + - uuid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: accounts/{{ stream_partition.account_id }}/billing/usage + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limit hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + $ref: "#/definitions/streams/accounts" + transformations: + - type: AddFields + fields: + - path: + - uuid + value: "{{ now_utc() }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/billing_usage" + resources: + type: DeclarativeStream + name: resources + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: accounts/{{ stream_partition.account_id }}/permissions/resources + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limit hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + $ref: "#/definitions/streams/accounts" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/resources" + sending_domains: + type: DeclarativeStream + name: sending_domains + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: accounts/{{ stream_partition.account_id }}/sending_domains + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limit hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + $ref: "#/definitions/streams/accounts" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sending_domains" + inboxes: + type: DeclarativeStream + name: inboxes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: accounts/{{ stream_partition.account_id }}/inboxes + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limit hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + $ref: "#/definitions/streams/accounts" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/inboxes" + messages: + type: DeclarativeStream + name: messages + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + accounts/{{ stream_partition.account_id }}/inboxes/{{ + stream_partition.inbox_id }}/messages + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limit hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + $ref: "#/definitions/streams/accounts" + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: inbox_id + stream: + $ref: "#/definitions/streams/inboxes" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/messages" + projects: + type: DeclarativeStream + name: projects + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: accounts/{{ stream_partition.account_id }}/projects + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RATE_LIMITED + http_codes: + - 429 + error_message: Rate limit hit + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + $ref: "#/definitions/streams/accounts" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/projects" + base_requester: + type: HttpRequester + url_base: https://mailtrap.io/api/ + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_token\"] }}" + +streams: + - $ref: "#/definitions/streams/accounts" + - $ref: "#/definitions/streams/billing_usage" + - $ref: "#/definitions/streams/resources" + - $ref: "#/definitions/streams/sending_domains" + - $ref: "#/definitions/streams/inboxes" + - $ref: "#/definitions/streams/messages" + - $ref: "#/definitions/streams/projects" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_token + properties: + api_token: + type: string + description: API token to use. Find it at https://mailtrap.io/account + name: api_token + order: 0 + title: API Token + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + accounts: true + billing_usage: true + resources: true + sending_domains: true + inboxes: true + messages: true + projects: true + testedStreams: + accounts: + hasRecords: true + streamHash: e5312e6c96d51bb45ad0910a266c2a8a12893f65 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + billing_usage: + hasRecords: true + streamHash: a7d463733dea7e568d8fd727cbde0af816e06c45 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + resources: + hasRecords: true + streamHash: 08e015bb3f7c5625c5a75063e366b5452e63b6b4 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + sending_domains: + hasRecords: true + streamHash: dd3d752192bccdc0a2b271323ce61dfe5331ccdd + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + inboxes: + hasRecords: true + streamHash: 387ee5198b1fcd6c2cd7e474c678e8562c8c4051 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + messages: + hasRecords: true + streamHash: ee5d6c933ba155fa4309c80a2cd29723987829d6 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + projects: + hasRecords: true + streamHash: 550f74784aa329550a3d52b8b7ddee52f4d17ba9 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://api-docs.mailtrap.io/docs/mailtrap-api-docs/82708d3cc9606-general + +schemas: + accounts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + access_levels: + type: + - array + - "null" + items: + type: + - number + - "null" + id: + type: number + name: + type: + - string + - "null" + required: + - id + billing_usage: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + billing: + type: + - object + - "null" + properties: + cycle_end: + type: + - string + - "null" + cycle_start: + type: + - string + - "null" + sending: + type: + - object + - "null" + properties: + plan: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + usage: + type: + - object + - "null" + properties: + sent_messages_count: + type: + - object + - "null" + properties: + current: + type: + - number + - "null" + limit: + type: + - number + - "null" + testing: + type: + - object + - "null" + properties: + plan: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + usage: + type: + - object + - "null" + properties: + forwarded_messages_count: + type: + - object + - "null" + properties: + current: + type: + - number + - "null" + limit: + type: + - number + - "null" + sent_messages_count: + type: + - object + - "null" + properties: + current: + type: + - number + - "null" + limit: + type: + - number + - "null" + uuid: + type: string + required: + - uuid + resources: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + access_level: + type: + - number + - "null" + id: + type: number + name: + type: + - string + - "null" + resources: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + access_level: + type: + - number + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + resources: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + access_level: + type: + - number + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + resources: + type: + - array + - "null" + required: + - id + sending_domains: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + auto_bcc_config: + type: + - object + - "null" + properties: + emails: + type: + - array + - "null" + headers: + type: + - array + - "null" + auto_unsubscribe_link_enabled: + type: + - boolean + - "null" + click_tracking_enabled: + type: + - boolean + - "null" + compliance_status: + type: + - string + - "null" + critical_alerts_enabled: + type: + - boolean + - "null" + custom_domain_tracking_enabled: + type: + - boolean + - "null" + demo: + type: + - boolean + - "null" + dns_records: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + domain: + type: + - string + - "null" + key: + type: + - string + - "null" + name: + type: + - string + - "null" + status: + type: + - string + - "null" + value: + type: + - string + - "null" + dns_verified: + type: + - boolean + - "null" + domain_name: + type: + - string + - "null" + health_alerts_enabled: + type: + - boolean + - "null" + id: + type: number + open_tracking_enabled: + type: + - boolean + - "null" + permissions: + type: + - object + - "null" + properties: + can_destroy: + type: + - boolean + - "null" + can_read: + type: + - boolean + - "null" + can_update: + type: + - boolean + - "null" + tracking_domain_name: + type: + - string + - "null" + required: + - id + inboxes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + api_domain: + type: + - string + - "null" + domain: + type: + - string + - "null" + email_domain: + type: + - string + - "null" + email_username: + type: + - string + - "null" + email_username_enabled: + type: + - boolean + - "null" + emails_count: + type: + - number + - "null" + emails_unread_count: + type: + - number + - "null" + forward_from_email_address: + type: + - string + - "null" + forwarded_messages_count: + type: + - number + - "null" + id: + type: number + max_message_size: + type: + - number + - "null" + max_size: + type: + - number + - "null" + name: + type: + - string + - "null" + password: + type: + - string + - "null" + permissions: + type: + - object + - "null" + properties: + can_destroy: + type: + - boolean + - "null" + can_leave: + type: + - boolean + - "null" + can_read: + type: + - boolean + - "null" + can_update: + type: + - boolean + - "null" + pop3_domain: + type: + - string + - "null" + pop3_ports: + type: + - array + - "null" + items: + type: + - number + - "null" + project_id: + type: + - number + - "null" + sent_messages_count: + type: + - number + - "null" + smtp_ports: + type: + - array + - "null" + items: + type: + - number + - "null" + status: + type: + - string + - "null" + used: + type: + - boolean + - "null" + username: + type: + - string + - "null" + required: + - id + messages: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + blacklists_report_info: + type: + - object + - "null" + properties: + domain: + type: + - string + - "null" + ip: + type: + - string + - "null" + report: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + in_black_list: + type: + - boolean + - "null" + name: + type: + - string + - "null" + url: + type: + - string + - "null" + result: + type: + - string + - "null" + created_at: + type: + - string + - "null" + download_path: + type: + - string + - "null" + email_size: + type: + - number + - "null" + from_email: + type: + - string + - "null" + from_name: + type: + - string + - "null" + html_body_size: + type: + - number + - "null" + html_path: + type: + - string + - "null" + html_source_path: + type: + - string + - "null" + human_size: + type: + - string + - "null" + id: + type: number + inbox_id: + type: + - number + - "null" + is_read: + type: + - boolean + - "null" + raw_path: + type: + - string + - "null" + sent_at: + type: + - string + - "null" + smtp_information: + type: + - object + - "null" + properties: + ok: + type: + - boolean + - "null" + subject: + type: + - string + - "null" + text_body_size: + type: + - number + - "null" + to_email: + type: + - string + - "null" + to_name: + type: + - string + - "null" + txt_path: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + required: + - id + projects: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + inboxes: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + api_domain: + type: + - string + - "null" + domain: + type: + - string + - "null" + email_domain: + type: + - string + - "null" + email_username: + type: + - string + - "null" + email_username_enabled: + type: + - boolean + - "null" + emails_count: + type: + - number + - "null" + emails_unread_count: + type: + - number + - "null" + forward_from_email_address: + type: + - string + - "null" + forwarded_messages_count: + type: + - number + - "null" + id: + type: + - number + - "null" + last_message_sent_at: + type: + - string + - "null" + max_message_size: + type: + - number + - "null" + max_size: + type: + - number + - "null" + name: + type: + - string + - "null" + password: + type: + - string + - "null" + permissions: + type: + - object + - "null" + properties: + can_destroy: + type: + - boolean + - "null" + can_leave: + type: + - boolean + - "null" + can_read: + type: + - boolean + - "null" + can_update: + type: + - boolean + - "null" + pop3_domain: + type: + - string + - "null" + pop3_ports: + type: + - array + - "null" + items: + type: + - number + - "null" + project_id: + type: + - number + - "null" + sent_messages_count: + type: + - number + - "null" + smtp_ports: + type: + - array + - "null" + items: + type: + - number + - "null" + status: + type: + - string + - "null" + used: + type: + - boolean + - "null" + username: + type: + - string + - "null" + name: + type: + - string + - "null" + permissions: + type: + - object + - "null" + properties: + can_destroy: + type: + - boolean + - "null" + can_leave: + type: + - boolean + - "null" + can_read: + type: + - boolean + - "null" + can_update: + type: + - boolean + - "null" + share_links: + type: + - object + - "null" + properties: + admin: + type: + - string + - "null" + viewer: + type: + - string + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-mailtrap/metadata.yaml b/airbyte-integrations/connectors/source-mailtrap/metadata.yaml new file mode 100644 index 000000000000..47206ac1a99a --- /dev/null +++ b/airbyte-integrations/connectors/source-mailtrap/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "mailtrap.io" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-mailtrap + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 + connectorSubtype: api + connectorType: source + definitionId: 9ba00df2-313c-46f2-b102-a5063a1ee18a + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-mailtrap + githubIssueLabel: source-mailtrap + icon: icon.svg + license: MIT + name: Mailtrap + releaseDate: 2024-10-23 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/mailtrap + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/mailtrap.md b/docs/integrations/sources/mailtrap.md new file mode 100644 index 000000000000..6aafe5f5d64e --- /dev/null +++ b/docs/integrations/sources/mailtrap.md @@ -0,0 +1,33 @@ +# Mailtrap + +Email Delivery Platform for individuals and businesses to test, send and control email infrastructure in one place. + +[API Documentation](https://api-docs.mailtrap.io/docs/mailtrap-api-docs/5tjdeg9545058-mailtrap-api) + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_token` | `string` | API Token. API token to use. Find it at https://mailtrap.io/account | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| accounts | id | No pagination | ✅ | ❌ | +| billing_usage | uuid | No pagination | ✅ | ❌ | +| resources | id | No pagination | ✅ | ❌ | +| sending_domains | id | No pagination | ✅ | ❌ | +| inboxes | id | No pagination | ✅ | ❌ | +| messages | id | No pagination | ✅ | ❌ | +| projects | id | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-23 | | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | + +
From 1888fa7e41ee8262b69e0011c927ee42ca1da7f2 Mon Sep 17 00:00:00 2001 From: Xiaohan Song Date: Thu, 31 Oct 2024 16:40:39 -0700 Subject: [PATCH 522/808] [source-mysql-v2] Support RFR (#47966) Co-authored-by: Rodi Reich Zilberman <867491+rodireich@users.noreply.github.com> --- .../connectors/source-mysql-v2/metadata.yaml | 2 +- .../source/mysql/MysqlJdbcPartition.kt | 36 ++++- .../source/mysql/MysqlJdbcPartitionFactory.kt | 128 ++++++++++++++++-- .../source/mysql/MysqlCdcIntegrationTest.kt | 13 ++ .../mysql/MysqlCursorBasedIntegrationTest.kt | 17 +++ .../mysql/MysqlJdbcPartitionFactoryTest.kt | 6 +- 6 files changed, 182 insertions(+), 20 deletions(-) diff --git a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml index 087fa61608f3..0e554de99713 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml +++ b/airbyte-integrations/connectors/source-mysql-v2/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: database connectorType: source definitionId: 561393ed-7e3a-4d0d-8b8b-90ded371754c - dockerImageTag: 0.0.31 + dockerImageTag: 0.0.32 dockerRepository: airbyte/source-mysql-v2 documentationUrl: https://docs.airbyte.com/integrations/sources/mysql githubIssueLabel: source-mysql-v2 diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartition.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartition.kt index 019f6ba23b2f..aead3ad5a116 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartition.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartition.kt @@ -178,8 +178,8 @@ sealed class MysqlJdbcResumablePartition( open val isLowerBoundIncluded: Boolean = false } -/** Implementation of a [JdbcPartition] for a snapshot partition. */ -class MysqlJdbcSnapshotPartition( +/** RFR for cursor based read. */ +class MysqlJdbcRfrSnapshotPartition( selectQueryGenerator: SelectQueryGenerator, override val streamState: DefaultJdbcStreamState, primaryKey: List, @@ -193,7 +193,8 @@ class MysqlJdbcSnapshotPartition( get() = MysqlJdbcStreamStateValue.snapshotCheckpoint( primaryKey = checkpointColumns, - primaryKeyCheckpoint = listOf(), + primaryKeyCheckpoint = + checkpointColumns.map { upperBound?.get(0) ?: Jsons.nullNode() }, ) override fun incompleteState(lastRecord: ObjectNode): OpaqueStateValue = @@ -203,7 +204,34 @@ class MysqlJdbcSnapshotPartition( ) } -/** Implementation of a [JdbcPartition] for a CDC snapshot partition. */ +/** RFR for CDC. */ +class MysqlJdbcCdcRfrSnapshotPartition( + selectQueryGenerator: SelectQueryGenerator, + override val streamState: DefaultJdbcStreamState, + primaryKey: List, + override val lowerBound: List?, + override val upperBound: List?, +) : MysqlJdbcResumablePartition(selectQueryGenerator, streamState, primaryKey) { + + override val completeState: OpaqueStateValue + get() = + MysqlCdcInitialSnapshotStateValue.snapshotCheckpoint( + primaryKey = checkpointColumns, + primaryKeyCheckpoint = + checkpointColumns.map { upperBound?.get(0) ?: Jsons.nullNode() }, + ) + + override fun incompleteState(lastRecord: ObjectNode): OpaqueStateValue = + MysqlCdcInitialSnapshotStateValue.snapshotCheckpoint( + primaryKey = checkpointColumns, + primaryKeyCheckpoint = checkpointColumns.map { lastRecord[it.id] ?: Jsons.nullNode() }, + ) +} + +/** + * Implementation of a [JdbcPartition] for a CDC snapshot partition. Used for incremental CDC + * initial sync. + */ class MysqlJdbcCdcSnapshotPartition( selectQueryGenerator: SelectQueryGenerator, override val streamState: DefaultJdbcStreamState, diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactory.kt b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactory.kt index f1217ac38acb..bb6dca28d813 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactory.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/main/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactory.kt @@ -10,10 +10,14 @@ import io.airbyte.cdk.StreamIdentifier import io.airbyte.cdk.command.OpaqueStateValue import io.airbyte.cdk.data.LeafAirbyteSchemaType import io.airbyte.cdk.discover.Field +import io.airbyte.cdk.jdbc.JdbcConnectionFactory import io.airbyte.cdk.read.ConfiguredSyncMode import io.airbyte.cdk.read.DefaultJdbcSharedState import io.airbyte.cdk.read.DefaultJdbcStreamState +import io.airbyte.cdk.read.From import io.airbyte.cdk.read.JdbcPartitionFactory +import io.airbyte.cdk.read.SelectColumnMaxValue +import io.airbyte.cdk.read.SelectQuerySpec import io.airbyte.cdk.read.Stream import io.airbyte.cdk.read.StreamFeedBootstrap import io.airbyte.cdk.util.Jsons @@ -26,6 +30,7 @@ import javax.inject.Singleton class MysqlJdbcPartitionFactory( override val sharedState: DefaultJdbcSharedState, val selectQueryGenerator: MysqlSourceOperations, + val config: MysqlSourceConfiguration, ) : JdbcPartitionFactory< DefaultJdbcSharedState, @@ -40,6 +45,27 @@ class MysqlJdbcPartitionFactory( DefaultJdbcStreamState(sharedState, streamFeedBootstrap) } + private fun findPkUpperBound(stream: Stream, pkChosenFromCatalog: List): JsonNode { + // find upper bound using maxPk query + val jdbcConnectionFactory = JdbcConnectionFactory(config) + val from = From(stream.name, stream.namespace) + val maxPkQuery = SelectQuerySpec(SelectColumnMaxValue(pkChosenFromCatalog[0]), from) + + jdbcConnectionFactory.get().use { connection -> + val stmt = connection.prepareStatement(selectQueryGenerator.generate(maxPkQuery).sql) + val rs = stmt.executeQuery() + + if (rs.next()) { + val pkUpperBound: JsonNode = + stateValueToJsonNode(pkChosenFromCatalog.first(), rs.getString(1)) + return pkUpperBound + } else { + // Table might be empty thus there is no max PK value. + return Jsons.nullNode() + } + } + } + private fun coldStart(streamState: DefaultJdbcStreamState): MysqlJdbcPartition { val stream: Stream = streamState.stream val pkChosenFromCatalog: List = stream.configuredPrimaryKey ?: listOf() @@ -51,13 +77,26 @@ class MysqlJdbcPartitionFactory( streamState, ) } - return MysqlJdbcSnapshotPartition( - selectQueryGenerator, - streamState, - pkChosenFromCatalog, - lowerBound = null, - upperBound = null, - ) + + val upperBound = findPkUpperBound(stream, pkChosenFromCatalog) + + if (sharedState.configuration.global) { + return MysqlJdbcCdcRfrSnapshotPartition( + selectQueryGenerator, + streamState, + pkChosenFromCatalog, + lowerBound = null, + upperBound = listOf(upperBound) + ) + } else { + return MysqlJdbcRfrSnapshotPartition( + selectQueryGenerator, + streamState, + pkChosenFromCatalog, + lowerBound = null, + upperBound = listOf(upperBound) + ) + } } if (sharedState.configuration.global) { @@ -113,14 +152,46 @@ class MysqlJdbcPartitionFactory( val opaqueStateValue: OpaqueStateValue = streamFeedBootstrap.currentState ?: return coldStart(streamState) - val isCursorBasedIncremental: Boolean = - stream.configuredSyncMode == ConfiguredSyncMode.INCREMENTAL && - !sharedState.configuration.global + val isCursorBased: Boolean = !sharedState.configuration.global + + val pkChosenFromCatalog: List = stream.configuredPrimaryKey ?: listOf() + + if ( + pkChosenFromCatalog.isEmpty() && + stream.configuredSyncMode == ConfiguredSyncMode.FULL_REFRESH + ) { + if ( + streamState.streamFeedBootstrap.currentState == + MysqlJdbcStreamStateValue.snapshotCompleted + ) { + return null + } + return MysqlJdbcNonResumableSnapshotPartition( + selectQueryGenerator, + streamState, + ) + } - if (!isCursorBasedIncremental) { + if (!isCursorBased) { val sv: MysqlCdcInitialSnapshotStateValue = Jsons.treeToValue(opaqueStateValue, MysqlCdcInitialSnapshotStateValue::class.java) + if (stream.configuredSyncMode == ConfiguredSyncMode.FULL_REFRESH) { + val upperBound = findPkUpperBound(stream, pkChosenFromCatalog) + if (sv.pkVal == upperBound.asText()) { + return null + } + val pkLowerBound: JsonNode = stateValueToJsonNode(pkChosenFromCatalog[0], sv.pkVal) + + return MysqlJdbcRfrSnapshotPartition( + selectQueryGenerator, + streamState, + pkChosenFromCatalog, + lowerBound = if (pkLowerBound.isNull) null else listOf(pkLowerBound), + upperBound = listOf(upperBound) + ) + } + if (sv.pkName == null) { // This indicates initial snapshot has been completed. CDC snapshot will be handled // by CDCPartitionFactory. @@ -129,9 +200,22 @@ class MysqlJdbcPartitionFactory( } else { // This branch indicates snapshot is incomplete. We need to resume based on previous // snapshot state. - val pkChosenFromCatalog: List = stream.configuredPrimaryKey!! val pkField = pkChosenFromCatalog.first() val pkLowerBound: JsonNode = stateValueToJsonNode(pkField, sv.pkVal) + + if (stream.configuredSyncMode == ConfiguredSyncMode.FULL_REFRESH) { + val upperBound = findPkUpperBound(stream, pkChosenFromCatalog) + if (sv.pkVal == upperBound.asText()) { + return null + } + return MysqlJdbcCdcRfrSnapshotPartition( + selectQueryGenerator, + streamState, + pkChosenFromCatalog, + lowerBound = if (pkLowerBound.isNull) null else listOf(pkLowerBound), + upperBound = listOf(upperBound) + ) + } return MysqlJdbcCdcSnapshotPartition( selectQueryGenerator, streamState, @@ -142,11 +226,29 @@ class MysqlJdbcPartitionFactory( } else { val sv: MysqlJdbcStreamStateValue = Jsons.treeToValue(opaqueStateValue, MysqlJdbcStreamStateValue::class.java) + println("sv: $sv") + + if (stream.configuredSyncMode == ConfiguredSyncMode.FULL_REFRESH) { + val upperBound = findPkUpperBound(stream, pkChosenFromCatalog) + println("pkval: ${sv.pkValue}, upperBound: ${upperBound.asText()}") + if (sv.pkValue == upperBound.asText()) { + return null + } + val pkLowerBound: JsonNode = + stateValueToJsonNode(pkChosenFromCatalog[0], sv.pkValue) + + return MysqlJdbcCdcRfrSnapshotPartition( + selectQueryGenerator, + streamState, + pkChosenFromCatalog, + lowerBound = if (pkLowerBound.isNull) null else listOf(pkLowerBound), + upperBound = listOf(upperBound) + ) + } if (sv.stateType != "cursor_based") { // Loading value from catalog. Note there could be unexpected behaviors if user // updates their schema but did not reset their state. - val pkChosenFromCatalog: List = stream.configuredPrimaryKey ?: listOf() val pkLowerBound: JsonNode = Jsons.valueToTree(sv.pkValue) val cursorChosenFromCatalog: Field = stream.configuredCursor as? Field ?: throw ConfigErrorException("no cursor") diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcIntegrationTest.kt b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcIntegrationTest.kt index 99b1b10d8d3b..fad092cfa64a 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcIntegrationTest.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCdcIntegrationTest.kt @@ -88,6 +88,19 @@ class MysqlCdcIntegrationTest { } } + @Test + fun testFullRefresh() { + val fullRefreshCatalog = + configuredCatalog.apply { streams.forEach { it.syncMode = SyncMode.FULL_REFRESH } } + CliRunner.source("read", config(), fullRefreshCatalog).run() + connectionFactory.get().use { connection: Connection -> + connection.isReadOnly = false + connection.createStatement().use { stmt: Statement -> + stmt.execute("INSERT INTO test.tbl (k, v) VALUES (4, 'baz')") + } + } + } + companion object { val log = KotlinLogging.logger {} lateinit var dbContainer: MySQLContainer<*> diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCursorBasedIntegrationTest.kt b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCursorBasedIntegrationTest.kt index 2e8c2f32b2cc..fedd7e12cc98 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCursorBasedIntegrationTest.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlCursorBasedIntegrationTest.kt @@ -73,6 +73,23 @@ class MysqlCursorBasedIntegrationTest { assertEquals(recordMessageFromRun1.size, 1) } + @Test + fun testWithFullRefresh() { + val fullRefreshCatalog = + getConfiguredCatalog().apply { streams[0].syncMode = SyncMode.FULL_REFRESH } + val run1: BufferingOutputConsumer = + CliRunner.source("read", config, fullRefreshCatalog).run() + val recordMessageFromRun1: List = run1.records() + assertEquals(recordMessageFromRun1.size, 2) + val lastStateMessageFromRun1 = run1.states().last() + + val run2: BufferingOutputConsumer = + CliRunner.source("read", config, fullRefreshCatalog, listOf(lastStateMessageFromRun1)) + .run() + val recordMessageFromRun2: List = run2.records() + assertEquals(recordMessageFromRun2.size, 0) + } + companion object { val log = KotlinLogging.logger {} val dbContainer: MySQLContainer<*> = MysqlContainerFactory.shared(imageName = "mysql:8.0") diff --git a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactoryTest.kt b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactoryTest.kt index 4d8166a7b476..d34f6632ffce 100644 --- a/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactoryTest.kt +++ b/airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlJdbcPartitionFactoryTest.kt @@ -36,10 +36,12 @@ class MysqlJdbcPartitionFactoryTest { private val selectQueryGenerator = MysqlSourceOperations() private val sharedState = sharedState() private val cdcSharedState = sharedState(global = true) + private val config = mockk() - val mysqlJdbcPartitionFactory = MysqlJdbcPartitionFactory(sharedState, selectQueryGenerator) + val mysqlJdbcPartitionFactory = + MysqlJdbcPartitionFactory(sharedState, selectQueryGenerator, config) val mysqlCdcJdbcPartitionFactory = - MysqlJdbcPartitionFactory(cdcSharedState, selectQueryGenerator) + MysqlJdbcPartitionFactory(cdcSharedState, selectQueryGenerator, config) val fieldId = Field("id", IntFieldType) val stream = From e43caa8d343a4a405e6f7712a0b0c72af2808ddf Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Fri, 1 Nov 2024 05:46:32 +0530 Subject: [PATCH 523/808] Source Fastbill: Migrate to manifest-only format (#47297) Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-fastbill/README.md | 87 +- .../connectors/source-fastbill/__init__.py | 3 - .../acceptance-test-config.yml | 44 +- .../{source_fastbill => }/components.py | 0 .../connectors/source-fastbill/main.py | 8 - .../connectors/source-fastbill/manifest.yaml | 1401 +++++++++++++++++ .../connectors/source-fastbill/metadata.yaml | 11 +- .../connectors/source-fastbill/poetry.lock | 1048 ------------ .../connectors/source-fastbill/pyproject.toml | 27 - .../source_fastbill/__init__.py | 8 - .../source_fastbill/manifest.yaml | 1282 --------------- .../source-fastbill/source_fastbill/run.py | 14 - .../source-fastbill/source_fastbill/source.py | 18 - .../unit_tests/test_components.py | 14 - docs/integrations/sources/fastbill.md | 1 + 15 files changed, 1455 insertions(+), 2511 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-fastbill/__init__.py rename airbyte-integrations/connectors/source-fastbill/{source_fastbill => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-fastbill/main.py create mode 100644 airbyte-integrations/connectors/source-fastbill/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-fastbill/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-fastbill/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-fastbill/source_fastbill/__init__.py delete mode 100644 airbyte-integrations/connectors/source-fastbill/source_fastbill/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-fastbill/source_fastbill/run.py delete mode 100644 airbyte-integrations/connectors/source-fastbill/source_fastbill/source.py delete mode 100644 airbyte-integrations/connectors/source-fastbill/unit_tests/test_components.py diff --git a/airbyte-integrations/connectors/source-fastbill/README.md b/airbyte-integrations/connectors/source-fastbill/README.md index 3b40ddf780b1..3bca407f747e 100644 --- a/airbyte-integrations/connectors/source-fastbill/README.md +++ b/airbyte-integrations/connectors/source-fastbill/README.md @@ -1,49 +1,22 @@ # Fastbill source connector -This is the repository for the Fastbill source connector, written in Python. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/fastbill). +This directory contains the manifest-only connector for `source-fastbill`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development - -### Prerequisites - -- Python (~=3.9) -- Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) - -### Installing the connector - -From this connector directory, run: - -```bash -poetry install --with dev -``` - -### Create credentials +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/fastbill). -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/fastbill) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_fastbill/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `sample_files/sample_config.json` for a sample config file. - -### Locally running the connector - -``` -poetry run source-fastbill spec -poetry run source-fastbill check --config secrets/config.json -poetry run source-fastbill discover --config secrets/config.json -poetry run source-fastbill read --config secrets/config.json --catalog sample_files/configured_catalog.json -``` +## Local development -### Running unit tests +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -To run unit tests locally, from the connector directory run: - -``` -poetry run pytest unit_tests -``` +If you prefer to develop locally, you can follow the instructions below. ### Building the docker image +You can build any manifest-only connector with `airbyte-ci`: + 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: @@ -53,18 +26,24 @@ airbyte-ci connectors --name=source-fastbill build An image will be available on your host with the tag `airbyte/source-fastbill:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/fastbill) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. + ### Running as a docker container -Then run any of the connector commands as follows: +Then run any of the standard source connector commands: -``` +```bash docker run --rm airbyte/source-fastbill:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-fastbill:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-fastbill:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-fastbill:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): @@ -72,31 +51,13 @@ You can run our full test suite locally using [`airbyte-ci`](https://github.com/ airbyte-ci connectors --name=source-fastbill test ``` -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -### Dependency Management - -All of your dependencies should be managed via Poetry. -To add a new dependency, run: - -```bash -poetry add -``` - -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? - -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-fastbill test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. +If you want to contribute changes to `source-fastbill`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-fastbill test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + - bump the `dockerImageTag` value in in `metadata.yaml` 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/fastbill.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. diff --git a/airbyte-integrations/connectors/source-fastbill/__init__.py b/airbyte-integrations/connectors/source-fastbill/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-fastbill/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-fastbill/acceptance-test-config.yml b/airbyte-integrations/connectors/source-fastbill/acceptance-test-config.yml index 1081a3bd8c19..4cc5f90fea25 100644 --- a/airbyte-integrations/connectors/source-fastbill/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-fastbill/acceptance-test-config.yml @@ -3,29 +3,29 @@ # Airbyte doesn't have a Fastbill test account to run tests connector_image: airbyte/source-fastbill:dev acceptance_tests: - # spec: - # tests: - # - spec_path: "source_fastbill/spec.yaml" + spec: + tests: + - spec_path: "manifest.yaml" connection: tests: - # - config_path: "secrets/config.json" - # status: "succeed" + - config_path: "secrets/config.json" + status: "succeed" - config_path: "integration_tests/invalid_config.json" status: "failed" - # discovery: - # tests: - # - config_path: "secrets/config.json" - # basic_read: - # tests: - # - config_path: "secrets/config.json" - # configured_catalog_path: "integration_tests/configured_catalog.json" - # empty_streams: - # - name: products - # - name: recurring_invoices - # - name: revenues - # incremental: - # bypass_reason: "This connector does not implement incremental sync" - # full_refresh: - # tests: - # - config_path: "secrets/config.json" - # configured_catalog_path: "integration_tests/configured_catalog.json" + discovery: + tests: + - config_path: "secrets/config.json" + basic_read: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + empty_streams: + - name: products + - name: recurring_invoices + - name: revenues + incremental: + bypass_reason: "This connector does not implement incremental sync" + full_refresh: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-fastbill/source_fastbill/components.py b/airbyte-integrations/connectors/source-fastbill/components.py similarity index 100% rename from airbyte-integrations/connectors/source-fastbill/source_fastbill/components.py rename to airbyte-integrations/connectors/source-fastbill/components.py diff --git a/airbyte-integrations/connectors/source-fastbill/main.py b/airbyte-integrations/connectors/source-fastbill/main.py deleted file mode 100644 index acf657a8214d..000000000000 --- a/airbyte-integrations/connectors/source-fastbill/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_fastbill.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-fastbill/manifest.yaml b/airbyte-integrations/connectors/source-fastbill/manifest.yaml new file mode 100644 index 000000000000..ef46f17853cd --- /dev/null +++ b/airbyte-integrations/connectors/source-fastbill/manifest.yaml @@ -0,0 +1,1401 @@ +version: 5.15.0 + +type: DeclarativeSource + +check: + type: CheckStream + stream_names: + - invoices + +definitions: + streams: + invoices: + type: DeclarativeStream + name: invoices + primary_key: + - INVOICE_ID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api.php + http_method: POST + request_body_json: + LIMIT: 100 + SERVICE: invoice.get + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - RESPONSE + - INVOICES + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: body_json + field_name: OFFSET + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/invoices" + recurring_invoices: + type: DeclarativeStream + name: recurring_invoices + primary_key: + - INVOICE_ID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api.php + http_method: POST + request_body_json: + LIMIT: 100 + SERVICE: recurring.get + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - RESPONSE + - INVOICES + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: body_json + field_name: OFFSET + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/recurring_invoices" + products: + type: DeclarativeStream + name: products + primary_key: + - ARTICLE_ID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api.php + http_method: POST + request_body_json: + LIMIT: 100 + SERVICE: article.get + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - RESPONSE + - ARTICLES + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: body_json + field_name: OFFSET + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/products" + revenues: + type: DeclarativeStream + name: revenues + primary_key: + - INVOICE_ID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api.php + http_method: POST + request_body_json: + LIMIT: 100 + SERVICE: revenue.get + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - RESPONSE + - REVENUES + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: body_json + field_name: OFFSET + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/revenues" + customers: + type: DeclarativeStream + name: customers + primary_key: + - CUSTOMER_ID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api.php + http_method: POST + request_body_json: + LIMIT: 100 + SERVICE: customer.get + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - RESPONSE + - CUSTOMERS + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: body_json + field_name: OFFSET + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + base_requester: + type: HttpRequester + url_base: https://my.fastbill.com/api/1.0 + authenticator: + class_name: source_declarative_manifest.components.CustomAuthenticator + password: "{{ config[\"api_key\"] }}" + username: "{{ config[\"username\"] }}" + +streams: + - $ref: "#/definitions/streams/invoices" + - $ref: "#/definitions/streams/recurring_invoices" + - $ref: "#/definitions/streams/products" + - $ref: "#/definitions/streams/revenues" + - $ref: "#/definitions/streams/customers" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - username + - api_key + properties: + username: + type: string + description: Username for Fastbill account + order: 0 + title: Username + api_key: + type: string + description: Fastbill API key + order: 1 + title: API Key + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + invoices: false + recurring_invoices: false + products: false + revenues: false + customers: false + yamlComponents: + global: + - authenticator + testedStreams: + invoices: + streamHash: 20857ec38cdfc474738705385285d6859e74866e + recurring_invoices: + streamHash: 9f9b69113f6ac08925352b114b516d219d6e93a1 + products: + streamHash: 7e92ddc1f8374019dc37c33f961beebe45c44af5 + revenues: + streamHash: d161fe2af92a08a53bd6937db97adcc1bcf8c64f + customers: + streamHash: 4707ba52e52e71f51211199a0dad1427be27c13b + assist: {} + +schemas: + invoices: + type: object + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + properties: + ADDRESS: + type: string + description: Customer address + empty: true + ADDRESS_2: + type: string + description: Additional address information + empty: true + BANK_ACCOUNT_NUMBER: + type: string + description: Customer's bank account number + empty: true + BANK_ACCOUNT_OWNER: + type: string + description: Name of the bank account owner + empty: true + BANK_BIC: + type: string + description: Bank Identifier Code + empty: true + BANK_CODE: + type: string + description: Bank code + empty: true + BANK_IBAN: + type: string + description: International Bank Account Number + empty: true + BANK_NAME: + type: string + description: Name of the bank + empty: true + CASH_DISCOUNT_DAYS: + type: string + description: Number of days to avail cash discount + CASH_DISCOUNT_PERCENT: + type: string + description: Percentage of cash discount offered + CITY: + type: string + description: Customer's city + empty: true + CONTACT_ID: + type: string + description: Contact ID + COUNTRY_CODE: + type: string + description: Customer's country code + CURRENCY_CODE: + type: string + description: Currency code + CUSTOMER_COSTCENTER_ID: + type: string + description: Customer's cost center ID + CUSTOMER_ID: + type: string + description: Customer ID + CUSTOMER_NUMBER: + type: string + description: Customer number + DELIVERY_DATE: + type: string + description: Date of delivery + DOCUMENT_URL: + type: string + description: URL to access the document + DUE_DATE: + type: string + description: Due date for payment + FIRST_NAME: + type: string + description: Customer's first name + empty: true + INTROTEXT: + type: string + description: Introductory text + empty: true + INVOICE_DATE: + type: string + description: Date of the invoice + INVOICE_ID: + type: string + description: Invoice ID + INVOICE_NUMBER: + type: string + description: Invoice number + INVOICE_TITLE: + type: string + description: Title of the invoice + empty: true + IS_CANCELED: + type: string + description: Flag indicating if the invoice is canceled + ITEMS: + type: + - "null" + - array + description: Items included in the invoice + items: + type: object + properties: + ARTICLE_NUMBER: + type: string + description: Article number + CATEGORY: + type: + - "null" + - array + description: Category of the item + items: {} + CATEGORY_ID: + type: + - "null" + - array + description: Category ID + items: {} + COMPLETE_GROSS: + type: number + description: Total gross amount for the item + COMPLETE_NET: + type: number + description: Total net amount for the item + DESCRIPTION: + type: string + description: Description of the item + empty: true + INVOICE_ITEM_ID: + type: integer + description: Invoice item ID + QUANTITY: + type: integer + description: Quantity of the item + SORT_ORDER: + type: integer + description: Order in which the item appears + UNIT_PRICE: + type: number + description: Unit price of the item + VAT_PERCENT: + type: integer + description: VAT percentage for the item + VAT_VALUE: + type: number + description: VAT value for the item + LASTUPDATE: + type: string + description: Last update date + LAST_NAME: + type: string + description: Customer's last name + empty: true + NOTE: + type: string + description: Additional note + empty: true + ORGANIZATION: + type: string + description: Customer's organization + empty: true + PAID_DATE: + type: string + description: Date when the invoice was paid + PAYMENTS: + type: + - "null" + - array + description: Payment details + items: + description: Individual payment details + PAYMENT_INFO: + type: string + description: Payment information + PAYMENT_TYPE: + type: string + description: Type of payment + empty: true + PROJECT_ID: + type: string + description: Project ID + SALUTATION: + type: string + description: Salutation for the customer + empty: true + SERVICE_PERIOD_END: + type: string + description: End date of the service period + SERVICE_PERIOD_START: + type: string + description: Start date of the service period + SUB_TOTAL: + type: number + description: Subtotal amount + TEMPLATE_ID: + type: string + description: Template ID + empty: true + TOTAL: + type: number + description: Total amount + TYPE: + type: string + description: Type of the invoice + VAT_CASE: + type: string + description: VAT case + VAT_ID: + type: string + description: VAT ID + VAT_ITEMS: + type: + - "null" + - array + description: VAT details for items + items: + type: object + properties: + COMPLETE_NET: + type: number + description: Total net amount for VAT + VAT_PERCENT: + type: integer + description: VAT percentage + VAT_VALUE: + type: number + description: VAT value + VAT_TOTAL: + type: number + description: Total VAT amount + ZIPCODE: + type: string + description: Customer's ZIP code + empty: true + recurring_invoices: + type: + - object + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + properties: + ADDRESS: + type: + - "null" + - string + description: Customer's street address + empty: true + ADDRESS_2: + type: + - "null" + - string + description: Additional address information + empty: true + BANK_ACCOUNT_NUMBER: + type: + - "null" + - string + description: Customer's bank account number + empty: true + BANK_ACCOUNT_OWNER: + type: + - "null" + - string + description: Owner's name of the bank account + empty: true + BANK_BIC: + type: + - "null" + - string + description: Bank Identifier Code + empty: true + BANK_CODE: + type: + - "null" + - string + description: Bank code or routing number + empty: true + BANK_IBAN: + type: + - "null" + - string + description: International Bank Account Number + empty: true + BANK_NAME: + type: + - "null" + - string + description: Name of the customer's bank + empty: true + CASH_DISCOUNT_DAYS: + type: + - "null" + - string + description: Number of days for cash discount + CASH_DISCOUNT_PERCENT: + type: + - "null" + - string + description: Percentage of cash discount + CITY: + type: + - "null" + - string + description: Customer's city + empty: true + CONTACT_ID: + type: + - "null" + - string + description: Contact ID of the customer + CURRENCY_CODE: + type: + - "null" + - string + description: Currency code used for the invoice + CUSTOMER_COSTCENTER_ID: + type: + - "null" + - string + description: Customer's cost center ID + CUSTOMER_ID: + type: + - "null" + - string + description: Unique ID of the customer + CUSTOMER_NUMBER: + type: + - "null" + - string + description: Customer's unique identification number + DELIVERY_DATE: + type: + - "null" + - string + description: Date of delivery + EMAIL_NOTIFY: + type: + - "null" + - string + description: Flag to indicate if customer was notified via email + FIRST_NAME: + type: + - "null" + - string + description: Customer's first name + empty: true + FREQUENCY: + type: + - "null" + - string + description: Frequency of the recurring invoice + INTROTEXT: + type: + - "null" + - string + description: Introduction text for the invoice + empty: true + INVOICE_ID: + type: + - string + description: Unique ID of the invoice + INVOICE_TITLE: + type: + - "null" + - string + description: Title of the invoice + ITEMS: + type: + - "null" + - array + description: List of items in the invoice + items: + type: + - "null" + - object + properties: + ARTICLE_NUMBER: + type: + - "null" + - string + description: Article number of the item + CATEGORY: + type: + - "null" + - string + - array + description: Category of the item + empty: true + items: {} + CATEGORY_ID: + type: + - "null" + - integer + - array + description: Unique ID of the category + items: {} + COMPLETE_GROSS: + type: + - "null" + - number + description: Total gross amount of the item + COMPLETE_NET: + type: + - "null" + - number + description: Total net amount of the item + DESCRIPTION: + type: + - "null" + - string + description: Description of the item + INVOICE_ITEM_ID: + type: + - "null" + - number + description: Unique ID of the invoice item + QUANTITY: + type: + - "null" + - number + description: Quantity of the item + SORT_ORDER: + type: + - "null" + - number + description: Order in which the item appears + UNIT_PRICE: + type: + - "null" + - number + description: Price per unit of the item + VAT_PERCENT: + type: + - "null" + - number + description: VAT percentage applied to the item + VAT_VALUE: + type: + - "null" + - number + description: VAT value of the item + LAST_NAME: + type: + - "null" + - string + description: Customer's last name + empty: true + NOTE: + type: + - "null" + - string + description: Additional notes or comments + empty: true + OCCURENCES: + type: + - "null" + - string + description: Number of occurrences for the recurring invoice + ORGANIZATION: + type: + - "null" + - string + description: Customer's organization + empty: true + OUTPUT_TYPE: + type: + - "null" + - string + description: Output format type + PAYMENT_TYPE: + type: + - "null" + - string + description: Payment method type + PROJECT_ID: + type: + - "null" + - string + description: ID of the associated project + SALUTATION: + type: + - "null" + - string + description: Customer's salutation + empty: true + SERVICE_PERIOD_END: + type: + - "null" + - string + description: End date of the service period + SERVICE_PERIOD_START: + type: + - "null" + - string + description: Start date of the service period + START_DATE: + type: + - "null" + - string + description: Start date of the recurring invoice + SUB_TOTAL: + type: + - "null" + - number + description: Total amount before tax + TEMPLATE_ID: + type: + - "null" + - string + description: Unique ID of the template used for the invoice + empty: true + TOTAL: + type: + - "null" + - number + description: Total amount including tax + TYPE: + type: + - "null" + - string + description: Type of the recurring invoice + VAT_CASE: + type: + - "null" + - string + description: VAT case type + VAT_ITEMS: + type: + - "null" + - array + description: List of VAT items in the invoice + items: + type: + - "null" + - object + properties: + COMPLETE_NET: + type: + - "null" + - number + description: Total net amount of the VAT item + VAT_PERCENT: + type: + - "null" + - number + description: VAT percentage for the VAT item + VAT_VALUE: + type: + - "null" + - number + description: VAT value of the VAT item + VAT_TOTAL: + type: + - "null" + - number + description: Total VAT amount + ZIPCODE: + type: + - "null" + - string + description: Customer's ZIP code + empty: true + products: + type: object + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + properties: + ARTICLE_ID: + type: string + description: Unique identifier for the product article. + ARTICLE_NUMBER: + type: string + description: Identification number for the product article. + CURRENCY_CODE: + type: string + description: The currency code used for the price of the product article. + DESCRIPTION: + type: string + description: Detailed description of the product article. + empty: true + IS_GROSS: + type: number + description: Indicates whether the price is gross or net (inclusive of tax). + TAGS: + type: + - string + - "null" + description: Tags associated with the product article. + empty: true + TITLE: + type: string + description: Title or name of the product article. + UNIT: + type: string + description: Unit of measurement for the product article (e.g., piece, kg). + UNIT_PRICE: + type: string + description: Price per unit of the product article. + VAT_PERCENT: + type: string + description: >- + The percentage of Value Added Tax applied to the product article + price. + revenues: + type: object + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + properties: + ADDRESS: + type: + - "null" + - string + description: Customer's street address + empty: true + ADDRESS_2: + type: + - "null" + - string + description: Additional address information (e.g., apartment number) + empty: true + BANK_ACCOUNT_NUMBER: + type: + - "null" + - string + description: Customer's bank account number + empty: true + BANK_ACCOUNT_OWNER: + type: + - "null" + - string + description: The name of the bank account owner + empty: true + BANK_BIC: + type: + - "null" + - string + description: Bank Identifier Code for the customer's bank + empty: true + BANK_CODE: + type: + - "null" + - string + description: Bank code for the customer's bank + empty: true + BANK_IBAN: + type: + - "null" + - string + description: International Bank Account Number (IBAN) + empty: true + BANK_NAME: + type: + - "null" + - string + description: Name of the customer's bank + empty: true + CASH_DISCOUNT_DAYS: + type: + - "null" + - string + description: Number of days within which cash discount can be availed + CASH_DISCOUNT_PERCENT: + type: + - "null" + - string + description: Percentage of cash discount available on the invoice + CITY: + type: + - "null" + - string + description: City where the customer is located + empty: true + CONTACT_ID: + type: + - "null" + - string + description: ID of the contact associated with the invoice + COUNTRY_CODE: + type: + - "null" + - string + description: Country code of the customer's location + CURRENCY_CODE: + type: + - "null" + - string + description: Currency code used for the invoice + CUSTOMER_COSTCENTER_ID: + type: + - "null" + - string + description: ID of the cost center associated with the customer + CUSTOMER_ID: + type: + - "null" + - string + description: Unique ID of the customer + CUSTOMER_NUMBER: + type: + - "null" + - string + description: Customer's identification number + DELIVERY_DATE: + type: + - "null" + - string + description: Date when the invoice delivery is scheduled + DOCUMENT_URL: + type: + - "null" + - string + description: URL link to access the invoice document + DUE_DATE: + type: + - "null" + - string + description: Due date for payment of the invoice + FIRST_NAME: + type: + - "null" + - string + description: Customer's first name + empty: true + INTROTEXT: + type: + - "null" + - string + description: Introduction text for the invoice + empty: true + INVOICE_DATE: + type: + - "null" + - string + description: Date when the invoice was issued + INVOICE_ID: + type: + - string + description: Unique ID of the invoice + INVOICE_NUMBER: + type: + - "null" + - string + description: Unique number assigned to the invoice + INVOICE_TITLE: + type: + - "null" + - string + description: Title or subject of the invoice + empty: true + IS_CANCELED: + type: + - "null" + - string + description: Indicates if the invoice is canceled + ITEMS: + type: + - array + - "null" + description: Contains information about the items related to the revenues data. + items: + type: object + properties: + ARTICLE_NUMBER: + type: + - "null" + - string + description: Unique number assigned to the item + CATEGORY: + type: + - "null" + - array + - string + description: Category to which the item belongs + empty: true + CATEGORY_ID: + type: + - "null" + - array + - integer + description: ID of the category to which the item belongs + COMPLETE_GROSS: + type: + - "null" + - number + description: Total gross amount for the item + COMPLETE_NET: + type: + - "null" + - integer + description: Total net amount for the item + DESCRIPTION: + type: + - "null" + - string + description: Description of the item + INVOICE_ITEM_ID: + type: + - "null" + - integer + description: Unique ID of the invoice item + QUANTITY: + type: + - "null" + - integer + description: Quantity of the item + SORT_ORDER: + type: + - "null" + - integer + description: Order in which the item appears in the invoice + UNIT_PRICE: + type: + - "null" + - integer + description: Price per unit of the item + VAT_PERCENT: + type: + - "null" + - integer + description: VAT percentage applicable to the item + VAT_VALUE: + type: + - "null" + - number + description: VAT amount for the item + LASTUPDATE: + type: + - "null" + - string + description: Date of the last update made to the invoice + LAST_NAME: + type: + - "null" + - string + description: Customer's last name + empty: true + NOTE: + type: + - "null" + - string + description: Additional notes or comments related to the invoice + empty: true + ORGANIZATION: + type: + - "null" + - string + description: Name of the customer's organization + empty: true + PAID_DATE: + type: + - "null" + - string + description: Date when the invoice was paid + PAYMENTS: + type: + - "null" + - array + description: >- + Contains details of the payments made corresponding to the revenues + data. + items: + AMOUNT: + type: + - string + - "null" + description: Amount of the payment + CURRENCY_CODE: + type: + - string + - "null" + description: Currency code of the payment + DATE: + type: + - string + - "null" + description: Date when the payment was made + NOTE: + type: + - string + - "null" + description: Any additional notes related to the payment + empty: true + PAYMENT_ID: + type: + - string + - "null" + description: Unique ID of the payment + TYPE: + type: + - string + - "null" + description: Type of payment (e.g., credit card, bank transfer) + PAYMENT_INFO: + type: + - "null" + - string + description: Information related to the payment + PAYMENT_TYPE: + type: + - "null" + - string + description: Type of payment (e.g., partial, full) + empty: true + PROJECT_ID: + type: + - "null" + - string + description: ID of the project associated with the invoice + SALUTATION: + type: + - "null" + - string + description: Salutation used for addressing the customer (Mr., Ms.) + empty: true + SERVICE_PERIOD_END: + type: + - "null" + - string + description: End date of the service period covered by the invoice + empty: true + SERVICE_PERIOD_START: + type: + - "null" + - string + description: Start date of the service period covered by the invoice + empty: true + SUB_TOTAL: + type: + - "null" + - integer + description: Subtotal amount before applying taxes or discounts + TEMPLATE_ID: + type: + - "null" + - string + description: ID of the template used for generating the invoice + empty: true + TOTAL: + type: + - number + - "null" + description: Total amount including all taxes and discounts + TYPE: + type: + - "null" + - string + description: Type of the invoice (e.g., sales, service) + VAT_CASE: + type: + - "null" + - string + description: VAT case type (e.g., domestic, intra-community) + VAT_ID: + type: + - "null" + - string + description: VAT identification number + VAT_ITEMS: + type: + - array + - "null" + description: >- + Includes VAT (Value Added Tax) related items associated with the + revenues data. + items: + type: object + properties: + COMPLETE_NET: + type: + - "null" + - integer + description: Total net amount for the VAT item + VAT_PERCENT: + type: + - "null" + - integer + description: VAT percentage for the VAT item + VAT_VALUE: + type: + - "null" + - number + description: VAT value for the VAT item + VAT_TOTAL: + type: + - "null" + - number + description: Total VAT amount for the invoice + ZIPCODE: + type: + - "null" + - string + description: Zip code of the customer's location + empty: true + customers: + type: object + $schema: http://json-schema.org/draft-04/schema# + additionalProperties: true + properties: + ACADEMIC_DEGREE: + type: string + description: Academic degree of the customer + empty: true + ADDRESS: + type: string + description: Primary address of the customer + empty: true + ADDRESS_2: + type: string + description: Secondary address of the customer + empty: true + BANK_ACCOUNT_MANDATE_REFERENCE: + type: string + description: Reference for the bank account mandate + empty: true + BANK_ACCOUNT_NUMBER: + type: string + description: Bank account number + empty: true + BANK_ACCOUNT_OWNER: + type: string + description: Owner of the bank account + empty: true + BANK_BIC: + type: string + description: Bank Identification Code + empty: true + BANK_CODE: + type: string + description: Bank code associated with the bank account + empty: true + BANK_IBAN: + type: string + description: International Bank Account Number + empty: true + BANK_NAME: + type: string + description: Name of the bank + empty: true + CITY: + type: string + description: City of the customer + empty: true + COUNTRY_CODE: + type: string + description: Country code of the customer + CREATED: + type: string + description: Date and time when the customer record was created + format: date-time + CURRENCY_CODE: + type: string + description: Currency code used for transactions + CUSTOMER_ACCOUNT: + type: string + description: Customer account details + empty: true + CUSTOMER_ID: + type: string + description: Unique identifier for the customer + CUSTOMER_NUMBER: + type: string + description: Customer number for identification + CUSTOMER_TYPE: + type: string + description: Type of customer + empty: true + DAYS_FOR_PAYMENT: + type: string + description: Number of days allowed for payment + empty: true + DOCUMENT_HISTORY_URL: + type: string + description: URL for customer's document history + empty: true + EMAIL: + type: string + description: Email address of the customer + empty: true + FAX: + type: string + description: Fax number of the customer + empty: true + FIRST_NAME: + type: string + description: First name of the customer + empty: true + LASTUPDATE: + type: string + description: Last update timestamp for the customer record + LAST_NAME: + type: string + description: Last name of the customer + empty: true + MOBILE: + type: string + description: Mobile phone number of the customer + empty: true + NEWSLETTER_OPTIN: + type: string + description: Opt-in status for receiving newsletters + empty: true + ORGANIZATION: + type: string + description: Organization or company name + empty: true + PAYMENT_TYPE: + type: string + description: Payment type preferred by the customer + empty: true + PHONE: + type: string + description: Primary phone number of the customer + empty: true + PHONE_2: + type: string + description: Secondary phone number of the customer + empty: true + POSITION: + type: string + description: Position or job title of the customer + empty: true + SALUTATION: + type: string + description: Salutation used when addressing the customer + empty: true + SECONDARY_ADDRESS: + type: string + description: Secondary address details + empty: true + SHOW_PAYMENT_NOTICE: + type: string + description: Flag indicating whether payment notice should be displayed + empty: true + TAGS: + type: string + description: Tags or labels associated with the customer + empty: true + TOP: + type: string + description: Top level customer identifier + empty: true + VAT_ID: + type: string + description: Value Added Tax (VAT) identification number + WEBSITE: + type: string + description: Website URL of the customer + empty: true + ZIPCODE: + type: string + description: ZIP or postal code of the customer + empty: true diff --git a/airbyte-integrations/connectors/source-fastbill/metadata.yaml b/airbyte-integrations/connectors/source-fastbill/metadata.yaml index 133a48df87e0..8538b91f5043 100644 --- a/airbyte-integrations/connectors/source-fastbill/metadata.yaml +++ b/airbyte-integrations/connectors/source-fastbill/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - "*" connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: eb3e9c1c-0467-4eb7-a172-5265e04ccd0a - dockerImageTag: 0.2.24 + dockerImageTag: 0.3.0 dockerRepository: airbyte/source-fastbill documentationUrl: https://docs.airbyte.com/integrations/sources/fastbill githubIssueLabel: source-fastbill @@ -23,11 +23,14 @@ data: releaseStage: alpha remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-fastbill + ab_internal: + ql: 100 + sl: 100 supportLevel: community tags: - - language:python + - language:manifest-only - cdk:low-code connectorTestSuitesOptions: - suite: unitTests diff --git a/airbyte-integrations/connectors/source-fastbill/poetry.lock b/airbyte-integrations/connectors/source-fastbill/poetry.lock deleted file mode 100644 index 92915b0e1ad3..000000000000 --- a/airbyte-integrations/connectors/source-fastbill/poetry.lock +++ /dev/null @@ -1,1048 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "0.80.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-0.80.0-py3-none-any.whl", hash = "sha256:060e92323a73674fa4e9e2e4a1eb312b9b9d072c9bbe5fa28f54ef21cb4974f3"}, - {file = "airbyte_cdk-0.80.0.tar.gz", hash = "sha256:1383512a83917fecca5b24cea4c72aa5c561cf96dd464485fbcefda48fe574c5"}, -] - -[package.dependencies] -airbyte-protocol-models = "0.5.1" -backoff = "*" -cachetools = "*" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.0.271)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.5.1" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.5.1-py3-none-any.whl", hash = "sha256:dfe84e130e51ce2ae81a06d5aa36f6c5ce3152b9e36e6f0195fad6c3dab0927e"}, - {file = "airbyte_protocol_models-0.5.1.tar.gz", hash = "sha256:7c8b16c7c1c7956b1996052e40585a3a93b1e44cb509c4e97c1ee4fe507ea086"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "markupsafe" -version = "3.0.1" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, -] - -[[package]] -name = "packaging" -version = "24.1" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "setuptools" -version = "75.1.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "41355a5bbc184920577634c7e63ed44c5ad8778fec503f57375dc15ad92ae487" diff --git a/airbyte-integrations/connectors/source-fastbill/pyproject.toml b/airbyte-integrations/connectors/source-fastbill/pyproject.toml deleted file mode 100644 index f24a4e5d06ea..000000000000 --- a/airbyte-integrations/connectors/source-fastbill/pyproject.toml +++ /dev/null @@ -1,27 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "0.2.24" -name = "source-fastbill" -description = "Source implementation for Fastbill." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/fastbill" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_fastbill" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "0.80.0" - -[tool.poetry.scripts] -source-fastbill = "source_fastbill.run:run" - -[tool.poetry.group.dev.dependencies] -pytest = "^6.2" -pytest-mock = "^3.6.1" diff --git a/airbyte-integrations/connectors/source-fastbill/source_fastbill/__init__.py b/airbyte-integrations/connectors/source-fastbill/source_fastbill/__init__.py deleted file mode 100644 index 4fb157c56bff..000000000000 --- a/airbyte-integrations/connectors/source-fastbill/source_fastbill/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceFastbill - -__all__ = ["SourceFastbill"] diff --git a/airbyte-integrations/connectors/source-fastbill/source_fastbill/manifest.yaml b/airbyte-integrations/connectors/source-fastbill/source_fastbill/manifest.yaml deleted file mode 100644 index 00ab59efceb8..000000000000 --- a/airbyte-integrations/connectors/source-fastbill/source_fastbill/manifest.yaml +++ /dev/null @@ -1,1282 +0,0 @@ -version: "0.29.0" - -definitions: - selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: ["RESPONSE", "{{ parameters.record_extractor }}"] - requester: - type: HttpRequester - url_base: "https://my.fastbill.com/api/1.0" - http_method: "POST" - authenticator: - class_name: source_fastbill.components.CustomAuthenticator - username: "{{config['username']}}" - password: "{{config['api_key']}}" - request_body_json: - SERVICE: "{{ parameters.endpoint }}.get" - LIMIT: 100 - Content-Type: "application/json" - retriever: - type: SimpleRetriever - record_selector: - $ref: "#/definitions/selector" - paginator: - type: "DefaultPaginator" - pagination_strategy: - type: "OffsetIncrement" - page_size: 100 - page_token_option: - type: "RequestOption" - field_name: "OFFSET" - inject_into: "body_json" - requester: - $ref: "#/definitions/requester" - base_stream: - type: DeclarativeStream - retriever: - $ref: "#/definitions/retriever" - - invoices_stream: - $ref: "#/definitions/base_stream" - name: "invoices" - primary_key: "INVOICE_ID" - $parameters: - path: "/api.php" - endpoint: "invoice" - record_extractor: "INVOICES" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-04/schema# - type: object - properties: - INVOICE_ID: - description: Invoice ID - type: string - TYPE: - description: Type of the invoice - type: string - CUSTOMER_ID: - description: Customer ID - type: string - CUSTOMER_NUMBER: - description: Customer number - type: string - CUSTOMER_COSTCENTER_ID: - description: Customer's cost center ID - type: string - CONTACT_ID: - description: Contact ID - type: string - PROJECT_ID: - description: Project ID - type: string - CURRENCY_CODE: - description: Currency code - type: string - DELIVERY_DATE: - description: Date of delivery - type: string - INVOICE_TITLE: - description: Title of the invoice - type: string - empty: true - CASH_DISCOUNT_PERCENT: - description: Percentage of cash discount offered - type: string - CASH_DISCOUNT_DAYS: - description: Number of days to avail cash discount - type: string - SUB_TOTAL: - description: Subtotal amount - type: number - VAT_TOTAL: - description: Total VAT amount - type: number - VAT_CASE: - description: VAT case - type: string - VAT_ITEMS: - description: VAT details for items - type: - - "null" - - array - items: - type: object - properties: - VAT_PERCENT: - description: VAT percentage - type: integer - COMPLETE_NET: - description: Total net amount for VAT - type: number - VAT_VALUE: - description: VAT value - type: number - ITEMS: - description: Items included in the invoice - type: - - "null" - - array - items: - type: object - properties: - INVOICE_ITEM_ID: - description: Invoice item ID - type: integer - ARTICLE_NUMBER: - description: Article number - type: string - DESCRIPTION: - description: Description of the item - type: string - empty: true - QUANTITY: - description: Quantity of the item - type: integer - UNIT_PRICE: - description: Unit price of the item - type: number - VAT_PERCENT: - description: VAT percentage for the item - type: integer - VAT_VALUE: - description: VAT value for the item - type: number - COMPLETE_NET: - description: Total net amount for the item - type: number - COMPLETE_GROSS: - description: Total gross amount for the item - type: number - CATEGORY: - description: Category of the item - type: - - "null" - - array - items: {} - CATEGORY_ID: - description: Category ID - type: - - "null" - - array - items: {} - SORT_ORDER: - description: Order in which the item appears - type: integer - TOTAL: - description: Total amount - type: number - ORGANIZATION: - description: Customer's organization - type: string - empty: true - NOTE: - description: Additional note - type: string - empty: true - SALUTATION: - description: Salutation for the customer - type: string - empty: true - FIRST_NAME: - description: Customer's first name - type: string - empty: true - LAST_NAME: - description: Customer's last name - type: string - empty: true - ADDRESS: - description: Customer address - type: string - empty: true - ADDRESS_2: - description: Additional address information - type: string - empty: true - ZIPCODE: - description: Customer's ZIP code - type: string - empty: true - CITY: - description: Customer's city - type: string - empty: true - SERVICE_PERIOD_START: - description: Start date of the service period - type: string - SERVICE_PERIOD_END: - description: End date of the service period - type: string - PAYMENT_TYPE: - description: Type of payment - type: string - empty: true - BANK_NAME: - description: Name of the bank - type: string - empty: true - BANK_ACCOUNT_NUMBER: - description: Customer's bank account number - type: string - empty: true - BANK_CODE: - description: Bank code - type: string - empty: true - BANK_ACCOUNT_OWNER: - description: Name of the bank account owner - type: string - empty: true - BANK_IBAN: - description: International Bank Account Number - type: string - empty: true - BANK_BIC: - description: Bank Identifier Code - type: string - empty: true - COUNTRY_CODE: - description: Customer's country code - type: string - VAT_ID: - description: VAT ID - type: string - TEMPLATE_ID: - description: Template ID - type: string - empty: true - INVOICE_NUMBER: - description: Invoice number - type: string - INTROTEXT: - description: Introductory text - type: string - empty: true - PAID_DATE: - description: Date when the invoice was paid - type: string - IS_CANCELED: - description: Flag indicating if the invoice is canceled - type: string - INVOICE_DATE: - description: Date of the invoice - type: string - DUE_DATE: - description: Due date for payment - type: string - PAYMENT_INFO: - description: Payment information - type: string - PAYMENTS: - description: Payment details - type: - - "null" - - array - items: - description: Individual payment details - LASTUPDATE: - description: Last update date - type: string - DOCUMENT_URL: - description: URL to access the document - type: string - recurring_invoices_stream: - $ref: "#/definitions/base_stream" - name: "recurring_invoices" - primary_key: "INVOICE_ID" - $parameters: - path: "/api.php" - endpoint: "recurring" - record_extractor: "INVOICES" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-04/schema# - type: - - object - properties: - INVOICE_ID: - description: Unique ID of the invoice - type: - - string - TYPE: - description: Type of the recurring invoice - type: - - "null" - - string - CUSTOMER_ID: - description: Unique ID of the customer - type: - - "null" - - string - CUSTOMER_NUMBER: - description: Customer's unique identification number - type: - - "null" - - string - CUSTOMER_COSTCENTER_ID: - description: Customer's cost center ID - type: - - "null" - - string - CONTACT_ID: - description: Contact ID of the customer - type: - - "null" - - string - PROJECT_ID: - description: ID of the associated project - type: - - "null" - - string - CURRENCY_CODE: - description: Currency code used for the invoice - type: - - "null" - - string - DELIVERY_DATE: - description: Date of delivery - type: - - "null" - - string - INVOICE_TITLE: - description: Title of the invoice - type: - - "null" - - string - CASH_DISCOUNT_PERCENT: - description: Percentage of cash discount - type: - - "null" - - string - CASH_DISCOUNT_DAYS: - description: Number of days for cash discount - type: - - "null" - - string - SUB_TOTAL: - description: Total amount before tax - type: - - "null" - - number - VAT_TOTAL: - description: Total VAT amount - type: - - "null" - - number - VAT_CASE: - description: VAT case type - type: - - "null" - - string - VAT_ITEMS: - description: List of VAT items in the invoice - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - VAT_PERCENT: - description: VAT percentage for the VAT item - type: - - "null" - - number - COMPLETE_NET: - description: Total net amount of the VAT item - type: - - "null" - - number - VAT_VALUE: - description: VAT value of the VAT item - type: - - "null" - - number - ITEMS: - description: List of items in the invoice - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - INVOICE_ITEM_ID: - description: Unique ID of the invoice item - type: - - "null" - - number - ARTICLE_NUMBER: - description: Article number of the item - type: - - "null" - - string - DESCRIPTION: - description: Description of the item - type: - - "null" - - string - QUANTITY: - description: Quantity of the item - type: - - "null" - - number - UNIT_PRICE: - description: Price per unit of the item - type: - - "null" - - number - VAT_PERCENT: - description: VAT percentage applied to the item - type: - - "null" - - number - VAT_VALUE: - description: VAT value of the item - type: - - "null" - - number - COMPLETE_NET: - description: Total net amount of the item - type: - - "null" - - number - COMPLETE_GROSS: - description: Total gross amount of the item - type: - - "null" - - number - CATEGORY: - description: Category of the item - type: - - "null" - - string - - array - empty: true - items: {} - CATEGORY_ID: - description: Unique ID of the category - type: - - "null" - - integer - - array - items: {} - SORT_ORDER: - description: Order in which the item appears - type: - - "null" - - number - TOTAL: - description: Total amount including tax - type: - - "null" - - number - ORGANIZATION: - description: Customer's organization - type: - - "null" - - string - empty: true - NOTE: - description: Additional notes or comments - type: - - "null" - - string - empty: true - SALUTATION: - description: Customer's salutation - type: - - "null" - - string - empty: true - FIRST_NAME: - description: Customer's first name - type: - - "null" - - string - empty: true - LAST_NAME: - description: Customer's last name - type: - - "null" - - string - empty: true - ADDRESS: - description: Customer's street address - type: - - "null" - - string - empty: true - ADDRESS_2: - description: Additional address information - type: - - "null" - - string - empty: true - ZIPCODE: - description: Customer's ZIP code - type: - - "null" - - string - empty: true - CITY: - description: Customer's city - type: - - "null" - - string - empty: true - SERVICE_PERIOD_START: - description: Start date of the service period - type: - - "null" - - string - SERVICE_PERIOD_END: - description: End date of the service period - type: - - "null" - - string - PAYMENT_TYPE: - description: Payment method type - type: - - "null" - - string - BANK_NAME: - description: Name of the customer's bank - type: - - "null" - - string - empty: true - BANK_ACCOUNT_NUMBER: - description: Customer's bank account number - type: - - "null" - - string - empty: true - BANK_CODE: - description: Bank code or routing number - type: - - "null" - - string - empty: true - BANK_ACCOUNT_OWNER: - description: Owner's name of the bank account - type: - - "null" - - string - empty: true - BANK_IBAN: - description: International Bank Account Number - type: - - "null" - - string - empty: true - BANK_BIC: - description: Bank Identifier Code - type: - - "null" - - string - empty: true - TEMPLATE_ID: - description: Unique ID of the template used for the invoice - type: - - "null" - - string - empty: true - OCCURENCES: - description: Number of occurrences for the recurring invoice - type: - - "null" - - string - FREQUENCY: - description: Frequency of the recurring invoice - type: - - "null" - - string - START_DATE: - description: Start date of the recurring invoice - type: - - "null" - - string - EMAIL_NOTIFY: - description: Flag to indicate if customer was notified via email - type: - - "null" - - string - OUTPUT_TYPE: - description: Output format type - type: - - "null" - - string - INTROTEXT: - description: Introduction text for the invoice - type: - - "null" - - string - empty: true - products_stream: - $ref: "#/definitions/base_stream" - name: "products" - primary_key: "ARTICLE_ID" - $parameters: - path: "/api.php" - endpoint: "article" - record_extractor: "ARTICLES" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-04/schema# - type: object - properties: - ARTICLE_ID: - description: Unique identifier for the product article. - type: string - ARTICLE_NUMBER: - description: Identification number for the product article. - type: string - TITLE: - description: Title or name of the product article. - type: string - DESCRIPTION: - description: Detailed description of the product article. - type: string - empty: true - UNIT: - description: - Unit of measurement for the product article (e.g., piece, - kg). - type: string - UNIT_PRICE: - description: Price per unit of the product article. - type: string - CURRENCY_CODE: - description: The currency code used for the price of the product article. - type: string - VAT_PERCENT: - description: - The percentage of Value Added Tax applied to the product - article price. - type: string - IS_GROSS: - description: - Indicates whether the price is gross or net (inclusive of - tax). - type: number - TAGS: - description: Tags associated with the product article. - type: - - string - - "null" - empty: true - revenues_stream: - $ref: "#/definitions/base_stream" - name: "revenues" - primary_key: "INVOICE_ID" - $parameters: - path: "/api.php" - endpoint: "revenue" - record_extractor: "REVENUES" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-04/schema# - type: object - properties: - INVOICE_ID: - description: Unique ID of the invoice - type: - - string - TYPE: - description: Type of the invoice (e.g., sales, service) - type: - - "null" - - string - CUSTOMER_ID: - description: Unique ID of the customer - type: - - "null" - - string - CUSTOMER_NUMBER: - description: Customer's identification number - type: - - "null" - - string - CUSTOMER_COSTCENTER_ID: - description: ID of the cost center associated with the customer - type: - - "null" - - string - CONTACT_ID: - description: ID of the contact associated with the invoice - type: - - "null" - - string - PROJECT_ID: - description: ID of the project associated with the invoice - type: - - "null" - - string - CURRENCY_CODE: - description: Currency code used for the invoice - type: - - "null" - - string - DELIVERY_DATE: - description: Date when the invoice delivery is scheduled - type: - - "null" - - string - INVOICE_TITLE: - description: Title or subject of the invoice - type: - - "null" - - string - empty: true - CASH_DISCOUNT_PERCENT: - description: Percentage of cash discount available on the invoice - type: - - "null" - - string - CASH_DISCOUNT_DAYS: - description: Number of days within which cash discount can be availed - type: - - "null" - - string - SUB_TOTAL: - description: Subtotal amount before applying taxes or discounts - type: - - "null" - - integer - VAT_TOTAL: - description: Total VAT amount for the invoice - type: - - "null" - - number - VAT_CASE: - description: VAT case type (e.g., domestic, intra-community) - type: - - "null" - - string - VAT_ITEMS: - description: - Includes VAT (Value Added Tax) related items associated with - the revenues data. - type: - - array - - "null" - items: - type: object - properties: - VAT_PERCENT: - description: VAT percentage for the VAT item - type: - - "null" - - integer - COMPLETE_NET: - description: Total net amount for the VAT item - type: - - "null" - - integer - VAT_VALUE: - description: VAT value for the VAT item - type: - - "null" - - number - ITEMS: - description: - Contains information about the items related to the revenues - data. - type: - - array - - "null" - items: - type: object - properties: - INVOICE_ITEM_ID: - description: Unique ID of the invoice item - type: - - "null" - - integer - ARTICLE_NUMBER: - description: Unique number assigned to the item - type: - - "null" - - string - DESCRIPTION: - description: Description of the item - type: - - "null" - - string - QUANTITY: - description: Quantity of the item - type: - - "null" - - integer - UNIT_PRICE: - description: Price per unit of the item - type: - - "null" - - integer - VAT_PERCENT: - description: VAT percentage applicable to the item - type: - - "null" - - integer - VAT_VALUE: - description: VAT amount for the item - type: - - "null" - - number - COMPLETE_NET: - description: Total net amount for the item - type: - - "null" - - integer - COMPLETE_GROSS: - description: Total gross amount for the item - type: - - "null" - - number - CATEGORY: - description: Category to which the item belongs - type: - - "null" - - array - - string - empty: true - CATEGORY_ID: - description: ID of the category to which the item belongs - type: - - "null" - - array - - integer - SORT_ORDER: - description: Order in which the item appears in the invoice - type: - - "null" - - integer - TOTAL: - description: Total amount including all taxes and discounts - type: - - number - - "null" - ORGANIZATION: - description: Name of the customer's organization - type: - - "null" - - string - empty: true - NOTE: - description: Additional notes or comments related to the invoice - type: - - "null" - - string - empty: true - SALUTATION: - description: Salutation used for addressing the customer (Mr., Ms.) - type: - - "null" - - string - empty: true - FIRST_NAME: - description: Customer's first name - type: - - "null" - - string - empty: true - LAST_NAME: - description: Customer's last name - type: - - "null" - - string - empty: true - ADDRESS: - description: Customer's street address - type: - - "null" - - string - empty: true - ADDRESS_2: - description: Additional address information (e.g., apartment number) - type: - - "null" - - string - empty: true - ZIPCODE: - description: Zip code of the customer's location - type: - - "null" - - string - empty: true - CITY: - description: City where the customer is located - type: - - "null" - - string - empty: true - SERVICE_PERIOD_START: - description: Start date of the service period covered by the invoice - type: - - "null" - - string - empty: true - SERVICE_PERIOD_END: - description: End date of the service period covered by the invoice - type: - - "null" - - string - empty: true - PAYMENT_TYPE: - description: Type of payment (e.g., partial, full) - type: - - "null" - - string - empty: true - BANK_NAME: - description: Name of the customer's bank - type: - - "null" - - string - empty: true - BANK_ACCOUNT_NUMBER: - description: Customer's bank account number - type: - - "null" - - string - empty: true - BANK_CODE: - description: Bank code for the customer's bank - type: - - "null" - - string - empty: true - BANK_ACCOUNT_OWNER: - description: The name of the bank account owner - type: - - "null" - - string - empty: true - BANK_IBAN: - description: International Bank Account Number (IBAN) - type: - - "null" - - string - empty: true - BANK_BIC: - description: Bank Identifier Code for the customer's bank - type: - - "null" - - string - empty: true - COUNTRY_CODE: - description: Country code of the customer's location - type: - - "null" - - string - VAT_ID: - description: VAT identification number - type: - - "null" - - string - TEMPLATE_ID: - description: ID of the template used for generating the invoice - type: - - "null" - - string - empty: true - INVOICE_NUMBER: - description: Unique number assigned to the invoice - type: - - "null" - - string - INTROTEXT: - description: Introduction text for the invoice - type: - - "null" - - string - empty: true - PAID_DATE: - description: Date when the invoice was paid - type: - - "null" - - string - IS_CANCELED: - description: Indicates if the invoice is canceled - type: - - "null" - - string - INVOICE_DATE: - description: Date when the invoice was issued - type: - - "null" - - string - DUE_DATE: - description: Due date for payment of the invoice - type: - - "null" - - string - PAYMENT_INFO: - description: Information related to the payment - type: - - "null" - - string - PAYMENTS: - description: - Contains details of the payments made corresponding to the - revenues data. - type: - - "null" - - array - items: - PAYMENT_ID: - description: Unique ID of the payment - type: - - string - - "null" - DATE: - description: Date when the payment was made - type: - - string - - "null" - AMOUNT: - description: Amount of the payment - type: - - string - - "null" - CURRENCY_CODE: - description: Currency code of the payment - type: - - string - - "null" - NOTE: - description: Any additional notes related to the payment - type: - - string - - "null" - empty: true - TYPE: - description: Type of payment (e.g., credit card, bank transfer) - type: - - string - - "null" - LASTUPDATE: - description: Date of the last update made to the invoice - type: - - "null" - - string - DOCUMENT_URL: - description: URL link to access the invoice document - type: - - "null" - - string - customers_stream: - $ref: "#/definitions/base_stream" - name: "customers" - primary_key: "CUSTOMER_ID" - $parameters: - path: "/api.php" - endpoint: "customer" - record_extractor: "CUSTOMERS" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-04/schema# - type: object - properties: - CUSTOMER_ID: - description: Unique identifier for the customer - type: string - CUSTOMER_NUMBER: - description: Customer number for identification - type: string - DAYS_FOR_PAYMENT: - description: Number of days allowed for payment - type: string - empty: true - CREATED: - description: Date and time when the customer record was created - type: string - format: date-time - PAYMENT_TYPE: - description: Payment type preferred by the customer - type: string - empty: true - BANK_NAME: - description: Name of the bank - type: string - empty: true - BANK_ACCOUNT_NUMBER: - description: Bank account number - type: string - empty: true - BANK_CODE: - description: Bank code associated with the bank account - type: string - empty: true - BANK_ACCOUNT_OWNER: - description: Owner of the bank account - type: string - empty: true - BANK_IBAN: - description: International Bank Account Number - type: string - empty: true - BANK_BIC: - description: Bank Identification Code - type: string - empty: true - BANK_ACCOUNT_MANDATE_REFERENCE: - description: Reference for the bank account mandate - type: string - empty: true - SHOW_PAYMENT_NOTICE: - description: Flag indicating whether payment notice should be displayed - type: string - empty: true - CUSTOMER_ACCOUNT: - description: Customer account details - type: string - empty: true - CUSTOMER_TYPE: - description: Type of customer - type: string - empty: true - TOP: - description: Top level customer identifier - type: string - empty: true - NEWSLETTER_OPTIN: - description: Opt-in status for receiving newsletters - type: string - empty: true - ORGANIZATION: - description: Organization or company name - type: string - empty: true - POSITION: - description: Position or job title of the customer - type: string - empty: true - ACADEMIC_DEGREE: - description: Academic degree of the customer - type: string - empty: true - SALUTATION: - description: Salutation used when addressing the customer - type: string - empty: true - FIRST_NAME: - description: First name of the customer - type: string - empty: true - LAST_NAME: - description: Last name of the customer - type: string - empty: true - ADDRESS: - description: Primary address of the customer - type: string - empty: true - ADDRESS_2: - description: Secondary address of the customer - type: string - empty: true - ZIPCODE: - description: ZIP or postal code of the customer - type: string - empty: true - CITY: - description: City of the customer - type: string - empty: true - COUNTRY_CODE: - description: Country code of the customer - type: string - SECONDARY_ADDRESS: - description: Secondary address details - type: string - empty: true - PHONE: - description: Primary phone number of the customer - type: string - empty: true - PHONE_2: - description: Secondary phone number of the customer - type: string - empty: true - FAX: - description: Fax number of the customer - type: string - empty: true - MOBILE: - description: Mobile phone number of the customer - type: string - empty: true - EMAIL: - description: Email address of the customer - type: string - empty: true - WEBSITE: - description: Website URL of the customer - type: string - empty: true - VAT_ID: - description: Value Added Tax (VAT) identification number - type: string - CURRENCY_CODE: - description: Currency code used for transactions - type: string - LASTUPDATE: - description: Last update timestamp for the customer record - type: string - TAGS: - description: Tags or labels associated with the customer - type: string - empty: true - DOCUMENT_HISTORY_URL: - description: URL for customer's document history - type: string - empty: true -streams: - - "#/definitions/invoices_stream" - - "#/definitions/recurring_invoices_stream" - - "#/definitions/products_stream" - - "#/definitions/revenues_stream" - - "#/definitions/customers_stream" - -check: - type: CheckStream - stream_names: - - "invoices" - -spec: - type: Spec - documentationUrl: "https://docs.airbyte.com/integrations/sources/fastbill" - connection_specification: - $schema: http://json-schema.org/draft-07/schema# - title: Fastbill Spec - type: object - required: - - username - - api_key - properties: - username: - title: Username - type: string - description: Username for Fastbill account - api_key: - title: API Key - type: string - description: Fastbill API key - airbyte_secret: true diff --git a/airbyte-integrations/connectors/source-fastbill/source_fastbill/run.py b/airbyte-integrations/connectors/source-fastbill/source_fastbill/run.py deleted file mode 100644 index eee32cd7dd6c..000000000000 --- a/airbyte-integrations/connectors/source-fastbill/source_fastbill/run.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch -from source_fastbill import SourceFastbill - - -def run(): - source = SourceFastbill() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-fastbill/source_fastbill/source.py b/airbyte-integrations/connectors/source-fastbill/source_fastbill/source.py deleted file mode 100644 index 4c88c647489f..000000000000 --- a/airbyte-integrations/connectors/source-fastbill/source_fastbill/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceFastbill(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-fastbill/unit_tests/test_components.py b/airbyte-integrations/connectors/source-fastbill/unit_tests/test_components.py deleted file mode 100644 index 7e202dec15f0..000000000000 --- a/airbyte-integrations/connectors/source-fastbill/unit_tests/test_components.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_fastbill.components import CustomAuthenticator - - -def test_token_generation(): - - config = {"username": "example@gmail.com", "api_key": "api_key"} - authenticator = CustomAuthenticator(config=config, username="example@gmail.com", password="api_key", parameters=None) - token = authenticator.token - expected_token = "Basic ZXhhbXBsZUBnbWFpbC5jb206YXBpX2tleQ==" - assert expected_token == token diff --git a/docs/integrations/sources/fastbill.md b/docs/integrations/sources/fastbill.md index 65677892ab7a..614d55c99763 100644 --- a/docs/integrations/sources/fastbill.md +++ b/docs/integrations/sources/fastbill.md @@ -64,6 +64,7 @@ The Fastbill source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.0 | 2024-10-31 | [47297](https://github.com/airbytehq/airbyte/pull/47297) | Migrate to manifest only format | | 0.2.24 | 2024-10-12 | [46777](https://github.com/airbytehq/airbyte/pull/46777) | Update dependencies | | 0.2.23 | 2024-10-05 | [46505](https://github.com/airbytehq/airbyte/pull/46505) | Update dependencies | | 0.2.22 | 2024-09-28 | [46172](https://github.com/airbytehq/airbyte/pull/46172) | Update dependencies | From 57f17ea28c357cbd0d82ea100cca9199c89f64e8 Mon Sep 17 00:00:00 2001 From: Aldo Gonzalez <168454423+aldogonzalez8@users.noreply.github.com> Date: Thu, 31 Oct 2024 18:28:14 -0600 Subject: [PATCH 524/808] source-sftp-bulk: add suuports file transfer flag to metadata (#48065) --- airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml b/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml index 9f3bd38d1555..b4f71cbb1c51 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml +++ b/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml @@ -30,6 +30,7 @@ data: message: "This upgrade migrates the SFTP Bulk source to the Airbyte file-based CDK. This is the first necessary step of transitioning a file connector from community to Airbyte maintained." upgradeDeadline: "2024-04-30" supportLevel: community + supportsFileTransfer: true tags: - language:python - cdk:python-file-based From 412a424cfe5028d96fd2f501e1f4f1446ef6024b Mon Sep 17 00:00:00 2001 From: Artem Inzhyyants <36314070+artem1205@users.noreply.github.com> Date: Fri, 1 Nov 2024 11:49:37 +0100 Subject: [PATCH 525/808] ref(source-amazon-ads): bump cdk to v5 (#47940) Signed-off-by: Artem Inzhyyants Co-authored-by: maxi297 Co-authored-by: Natalie Kwong <38087517+nataliekwong@users.noreply.github.com> --- .../integration_tests/spec.json | 44 +- .../source-amazon-ads/metadata.yaml | 2 +- .../connectors/source-amazon-ads/poetry.lock | 624 +++++++++++++++--- .../source-amazon-ads/pyproject.toml | 9 +- .../declarative_source_adapter.py | 47 -- .../source_amazon_ads/run.py | 3 +- .../source_amazon_ads/schemas/__init__.py | 56 -- .../schemas/attribution_report.py | 24 - ...ttribution_report_performance_adgroup.json | 118 ++++ ...tribution_report_performance_campaign.json | 44 ++ ...tribution_report_performance_creative.json | 44 ++ .../schemas/attribution_report_products.json | 44 ++ .../source_amazon_ads/schemas/common.py | 102 --- .../source_amazon_ads/schemas/portfolios.json | 24 + .../source_amazon_ads/schemas/profile.py | 25 - .../source_amazon_ads/schemas/profiles.json | 23 + .../schemas/sponsored_brands.py | 53 -- .../schemas/sponsored_brands_ad_groups.json | 12 + .../schemas/sponsored_brands_campaigns.json | 26 + .../schemas/sponsored_brands_keywords.json | 12 + .../sponsored_brands_v3_report_stream.json | 32 + .../schemas/sponsored_display.py | 115 ---- .../schemas/sponsored_display_ad_groups.json | 15 + .../sponsored_display_budget_rules.json | 80 +++ .../schemas/sponsored_display_campaigns.json | 18 + .../schemas/sponsored_display_creatives.json | 12 + .../sponsored_display_product_ads.json | 13 + .../sponsored_display_report_stream.json | 96 +++ .../schemas/sponsored_display_targetings.json | 21 + ..._product_ad_group_bid_recommendations.json | 29 + ...d_product_ad_group_suggested_keywords.json | 18 + .../schemas/sponsored_product_ad_groups.json | 13 + .../schemas/sponsored_product_ads.json | 15 + ...ed_product_campaign_negative_keywords.json | 13 + .../schemas/sponsored_product_campaigns.json | 18 + .../schemas/sponsored_product_keywords.json | 14 + .../sponsored_product_negative_keywords.json | 14 + .../schemas/sponsored_product_targetings.json | 22 + .../schemas/sponsored_products.py | 114 ---- .../sponsored_products_report_stream.json | 70 ++ .../source_amazon_ads/source.py | 51 +- .../source_amazon_ads/spec.py | 103 +++ .../streams/attribution_report.py | 8 +- .../source_amazon_ads/streams/common.py | 65 +- .../source_amazon_ads/streams/portfolios.py | 4 +- .../source_amazon_ads/streams/profiles.py | 11 +- .../streams/report_streams/brands_report.py | 1 - .../streams/report_streams/display_report.py | 5 +- .../streams/report_streams/products_report.py | 3 +- .../report_streams/report_stream_models.py | 2 +- .../streams/report_streams/report_streams.py | 63 +- .../streams/sponsored_brands.py | 4 - .../streams/sponsored_display.py | 14 - .../streams/sponsored_products.py | 72 +- .../unit_tests/integrations/utils.py | 3 +- .../unit_tests/test_attribution_report.py | 5 +- .../unit_tests/test_report_streams.py | 19 +- .../unit_tests/test_source.py | 22 +- .../unit_tests/test_streams.py | 3 +- docs/integrations/sources/amazon-ads.md | 1 + 60 files changed, 1707 insertions(+), 830 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/declarative_source_adapter.py delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/__init__.py delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report.py create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_adgroup.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_campaign.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_creative.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_products.json delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/common.py create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/portfolios.json delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/profile.py create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/profiles.json delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands.py create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_ad_groups.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_campaigns.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_keywords.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_v3_report_stream.json delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display.py create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_ad_groups.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_budget_rules.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_campaigns.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_creatives.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_product_ads.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_report_stream.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_targetings.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_group_bid_recommendations.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_group_suggested_keywords.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_groups.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ads.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_campaign_negative_keywords.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_campaigns.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_keywords.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_negative_keywords.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_targetings.json delete mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_products.py create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_products_report_stream.json create mode 100644 airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/spec.py diff --git a/airbyte-integrations/connectors/source-amazon-ads/integration_tests/spec.json b/airbyte-integrations/connectors/source-amazon-ads/integration_tests/spec.json index 9e5131c4148d..f131594106f3 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/integration_tests/spec.json +++ b/airbyte-integrations/connectors/source-amazon-ads/integration_tests/spec.json @@ -1,11 +1,11 @@ { - "documentationUrl": "https://docs.airbyte.com/integrations/sources/amazon-ads", "connectionSpecification": { - "title": "Amazon Ads Spec", + "title": "Source Amazon Ads", "type": "object", "properties": { "auth_type": { "title": "Auth Type", + "default": "oauth2.0", "const": "oauth2.0", "order": 0, "type": "string" @@ -34,18 +34,18 @@ "region": { "title": "Region", "description": "Region to pull data from (EU/NA/FE). See docs for more details.", - "enum": ["NA", "EU", "FE"], - "type": "string", "default": "NA", - "order": 4 + "enum": ["NA", "EU", "FE"], + "order": 4, + "type": "string" }, "start_date": { "title": "Start Date", "description": "The Start date for collecting reports, should not be more than 60 days in the past. In YYYY-MM-DD format", "examples": ["2022-10-10", "2022-10-22"], + "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$", "order": 5, "type": "string", - "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$", "format": "date" }, "profiles": { @@ -69,13 +69,16 @@ "state_filter": { "title": "State Filter", "description": "Reflects the state of the Display, Product, and Brand Campaign streams as enabled, paused, or archived. If you do not populate this field, it will be ignored completely.", + "default": [], + "order": 8, + "type": "array", "items": { - "type": "string", - "enum": ["enabled", "paused", "archived"] + "title": "StateFilterEnum", + "description": "An enumeration.", + "enum": ["enabled", "paused", "archived"], + "type": "string" }, - "type": "array", - "uniqueItems": true, - "order": 8 + "uniqueItems": true }, "look_back_window": { "title": "Look Back Window", @@ -88,8 +91,12 @@ "report_record_types": { "title": "Report Record Types", "description": "Optional configuration which accepts an array of string of record types. Leave blank for default behaviour to pull all report types. Use this config option only if you want to pull specific report type(s). See docs for more details", + "default": [], + "order": 10, + "type": "array", "items": { - "type": "string", + "title": "ReportRecordTypeEnum", + "description": "An enumeration.", "enum": [ "adGroups", "asins", @@ -99,16 +106,17 @@ "keywords", "productAds", "targets" - ] + ], + "type": "string" }, - "type": "array", - "uniqueItems": true, - "order": 10 + "uniqueItems": true } }, - "required": ["client_id", "client_secret", "refresh_token"], - "additionalProperties": true + "required": ["client_id", "client_secret", "refresh_token"] }, + "documentationUrl": "https://docs.airbyte.com/integrations/sources/amazon-ads", + "supportsNormalization": false, + "supportsDBT": false, "advanced_auth": { "auth_flow_type": "oauth2.0", "predicate_key": ["auth_type"], diff --git a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml index 4aaafc13b796..57f4e54868b7 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: c6b0a29e-1da9-4512-9002-7bfd0cba2246 - dockerImageTag: 6.0.0 + dockerImageTag: 6.1.0 dockerRepository: airbyte/source-amazon-ads documentationUrl: https://docs.airbyte.com/integrations/sources/amazon-ads githubIssueLabel: source-amazon-ads diff --git a/airbyte-integrations/connectors/source-amazon-ads/poetry.lock b/airbyte-integrations/connectors/source-amazon-ads/poetry.lock index 714fa302e666..dc1cb5661a16 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-amazon-ads/poetry.lock @@ -2,30 +2,33 @@ [[package]] name = "airbyte-cdk" -version = "0.90.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false -python-versions = "<4.0,>=3.9" +python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-0.90.0-py3-none-any.whl", hash = "sha256:bd0aa5843cdc4901f2e482f0e86695ca4e6db83b65c5017799255dd20535cf56"}, - {file = "airbyte_cdk-0.90.0.tar.gz", hash = "sha256:25cefc010718bada5cce3f87e7ae93068630732c0d34ce5145f8ddf7457d4d3c"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] -airbyte-protocol-models = ">=0.9.0,<1.0" +airbyte-protocol-models-dataclasses = ">=0.13,<0.14" backoff = "*" cachetools = "*" cryptography = ">=42.0.5,<43.0.0" Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" +dpath = ">=2.1.6,<3.0.0" genson = "1.2.2" isodate = ">=0.6.1,<0.7.0" Jinja2 = ">=3.1.2,<3.2.0" jsonref = ">=0.2,<0.3" jsonschema = ">=3.2.0,<3.3.0" langchain_core = "0.1.42" +nltk = "3.8.1" +orjson = ">=3.10.7,<4.0.0" +pandas = "2.2.2" pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" +pydantic = ">=2.7,<3.0" pyjwt = ">=2.8.0,<3.0.0" pyrate-limiter = ">=3.1.0,<3.2.0" python-dateutil = "*" @@ -33,26 +36,37 @@ pytz = "2024.1" PyYAML = ">=6.0.1,<7.0.0" requests = "*" requests_cache = "*" +serpyco-rs = ">=1.10.2,<2.0.0" wcmatch = "8.4" +xmltodict = ">=0.13.0,<0.14.0" [package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] +file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] -name = "airbyte-protocol-models" +name = "airbyte-protocol-models-dataclasses" version = "0.13.0" -description = "Declares the Airbyte Protocol." +description = "Declares the Airbyte Protocol using Python Dataclasses. Dataclasses in Python have less performance overhead compared to Pydantic models, making them a more efficient choice for scenarios where speed and memory usage are critical" optional = false python-versions = ">=3.8" files = [ - {file = "airbyte_protocol_models-0.13.0-py3-none-any.whl", hash = "sha256:fa8b7e1a85f9ae171c50b30d23b317da1740d051994fd3ed648f9dfba00250e2"}, - {file = "airbyte_protocol_models-0.13.0.tar.gz", hash = "sha256:09d8900ba8674a9315fa1799d17026f6b38d2187c08160449540ee93331ed2e7"}, + {file = "airbyte_protocol_models_dataclasses-0.13.0-py3-none-any.whl", hash = "sha256:0aedb99ffc4f9aab0ce91bba2c292fa17cd8fd4b42eeba196d6a16c20bbbd7a5"}, + {file = "airbyte_protocol_models_dataclasses-0.13.0.tar.gz", hash = "sha256:72e67850d661e2808406aec5839b3158ebb94d3553b798dbdae1b4a278548d2f"}, ] -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" +[[package]] +name = "annotated-types" +version = "0.7.0" +description = "Reusable constraint types to use with typing.Annotated" +optional = false +python-versions = ">=3.8" +files = [ + {file = "annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53"}, + {file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"}, +] [[package]] name = "anyio" @@ -76,6 +90,17 @@ doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] +[[package]] +name = "attributes-doc" +version = "0.4.0" +description = "PEP 224 implementation" +optional = false +python-versions = ">=3.8" +files = [ + {file = "attributes-doc-0.4.0.tar.gz", hash = "sha256:b1576c94a714e9fc2c65c47cf10d0c8e1a5f7c4f5ae7f69006be108d95cbfbfb"}, + {file = "attributes_doc-0.4.0-py2.py3-none-any.whl", hash = "sha256:4c3007d9e58f3a6cb4b9c614c4d4ce2d92161581f28e594ddd8241cc3a113bdd"}, +] + [[package]] name = "attrs" version = "24.2.0" @@ -358,6 +383,20 @@ files = [ {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + [[package]] name = "colorama" version = "0.4.6" @@ -442,13 +481,13 @@ dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] [[package]] name = "dpath" -version = "2.0.8" +version = "2.2.0" description = "Filesystem-like pathing and searching for dictionaries" optional = false python-versions = ">=3.7" files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, + {file = "dpath-2.2.0-py3-none-any.whl", hash = "sha256:b330a375ded0a0d2ed404440f6c6a715deae5313af40bbb01c8a41d891900576"}, + {file = "dpath-2.2.0.tar.gz", hash = "sha256:34f7e630dc55ea3f219e555726f5da4b4b25f2200319c8e6902c394258dd6a3e"}, ] [[package]] @@ -602,6 +641,17 @@ MarkupSafe = ">=2.0" [package.extras] i18n = ["Babel (>=2.7)"] +[[package]] +name = "joblib" +version = "1.4.2" +description = "Lightweight pipelining with Python functions" +optional = false +python-versions = ">=3.8" +files = [ + {file = "joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6"}, + {file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"}, +] + [[package]] name = "jsonpatch" version = "1.33" @@ -683,13 +733,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.138" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.138-py3-none-any.whl", hash = "sha256:5c2bd5c11c75f7b3d06a0f06b115186e7326ca969fd26d66ffc65a0669012aee"}, + {file = "langsmith-0.1.138.tar.gz", hash = "sha256:1ecf613bb52f6bf17f1510e24ad8b70d4b0259bc9d3dbfd69b648c66d4644f0b"}, ] [package.dependencies] @@ -769,6 +819,93 @@ files = [ {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] +[[package]] +name = "nltk" +version = "3.8.1" +description = "Natural Language Toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "nltk-3.8.1-py3-none-any.whl", hash = "sha256:fd5c9109f976fa86bcadba8f91e47f5e9293bd034474752e92a520f81c93dda5"}, + {file = "nltk-3.8.1.zip", hash = "sha256:1834da3d0682cba4f2cede2f9aad6b0fafb6461ba451db0efb6f9c39798d64d3"}, +] + +[package.dependencies] +click = "*" +joblib = "*" +regex = ">=2021.8.3" +tqdm = "*" + +[package.extras] +all = ["matplotlib", "numpy", "pyparsing", "python-crfsuite", "requests", "scikit-learn", "scipy", "twython"] +corenlp = ["requests"] +machine-learning = ["numpy", "python-crfsuite", "scikit-learn", "scipy"] +plot = ["matplotlib"] +tgrep = ["pyparsing"] +twitter = ["twython"] + +[[package]] +name = "numpy" +version = "2.1.2" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.10" +files = [ + {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, + {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, + {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, + {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, + {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, + {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, + {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, + {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, + {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, + {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, + {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, + {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, + {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, + {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, + {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, + {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, + {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, + {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, + {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, + {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, + {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, + {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, + {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, + {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, + {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, + {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, + {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, + {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, + {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, + {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, + {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, + {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, + {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, + {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, + {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, + {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, + {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, + {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, +] + [[package]] name = "orjson" version = "3.10.10" @@ -847,6 +984,78 @@ files = [ {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, ] +[[package]] +name = "pandas" +version = "2.2.2" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pandas-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce"}, + {file = "pandas-2.2.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c7adfc142dac335d8c1e0dcbd37eb8617eac386596eb9e1a1b77791cf2498238"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99"}, + {file = "pandas-2.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1"}, + {file = "pandas-2.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32"}, + {file = "pandas-2.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23"}, + {file = "pandas-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2"}, + {file = "pandas-2.2.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9057e6aa78a584bc93a13f0a9bf7e753a5e9770a30b4d758b8d5f2a62a9433cd"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57"}, + {file = "pandas-2.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4"}, + {file = "pandas-2.2.2.tar.gz", hash = "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54"}, +] + +[package.dependencies] +numpy = [ + {version = ">=1.22.4", markers = "python_version < \"3.11\""}, + {version = ">=1.23.2", markers = "python_version == \"3.11\""}, +] +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.7" + +[package.extras] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] +consortium-standard = ["dataframe-api-compat (>=0.1.7)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] +test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.9.2)"] + [[package]] name = "pendulum" version = "2.1.2" @@ -925,62 +1134,124 @@ files = [ [[package]] name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" +version = "2.9.2" +description = "Data validation using Python type hints" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, + {file = "pydantic-2.9.2-py3-none-any.whl", hash = "sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12"}, + {file = "pydantic-2.9.2.tar.gz", hash = "sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f"}, ] [package.dependencies] -typing-extensions = ">=4.2.0" +annotated-types = ">=0.6.0" +pydantic-core = "2.23.4" +typing-extensions = {version = ">=4.6.1", markers = "python_version < \"3.13\""} [package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] +email = ["email-validator (>=2.0.0)"] +timezone = ["tzdata"] + +[[package]] +name = "pydantic-core" +version = "2.23.4" +description = "Core functionality for Pydantic validation and serialization" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:b10bd51f823d891193d4717448fab065733958bdb6a6b351967bd349d48d5c9b"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4fc714bdbfb534f94034efaa6eadd74e5b93c8fa6315565a222f7b6f42ca1166"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63e46b3169866bd62849936de036f901a9356e36376079b05efa83caeaa02ceb"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed1a53de42fbe34853ba90513cea21673481cd81ed1be739f7f2efb931b24916"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cfdd16ab5e59fc31b5e906d1a3f666571abc367598e3e02c83403acabc092e07"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255a8ef062cbf6674450e668482456abac99a5583bbafb73f9ad469540a3a232"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a7cd62e831afe623fbb7aabbb4fe583212115b3ef38a9f6b71869ba644624a2"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f09e2ff1f17c2b51f2bc76d1cc33da96298f0a036a137f5440ab3ec5360b624f"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e38e63e6f3d1cec5a27e0afe90a085af8b6806ee208b33030e65b6516353f1a3"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0dbd8dbed2085ed23b5c04afa29d8fd2771674223135dc9bc937f3c09284d071"}, + {file = "pydantic_core-2.23.4-cp310-none-win32.whl", hash = "sha256:6531b7ca5f951d663c339002e91aaebda765ec7d61b7d1e3991051906ddde119"}, + {file = "pydantic_core-2.23.4-cp310-none-win_amd64.whl", hash = "sha256:7c9129eb40958b3d4500fa2467e6a83356b3b61bfff1b414c7361d9220f9ae8f"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64"}, + {file = "pydantic_core-2.23.4-cp311-none-win32.whl", hash = "sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f"}, + {file = "pydantic_core-2.23.4-cp311-none-win_amd64.whl", hash = "sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24"}, + {file = "pydantic_core-2.23.4-cp312-none-win32.whl", hash = "sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84"}, + {file = "pydantic_core-2.23.4-cp312-none-win_amd64.whl", hash = "sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f"}, + {file = "pydantic_core-2.23.4-cp313-none-win32.whl", hash = "sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769"}, + {file = "pydantic_core-2.23.4-cp313-none-win_amd64.whl", hash = "sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d4488a93b071c04dc20f5cecc3631fc78b9789dd72483ba15d423b5b3689b555"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:81965a16b675b35e1d09dd14df53f190f9129c0202356ed44ab2728b1c905658"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ffa2ebd4c8530079140dd2d7f794a9d9a73cbb8e9d59ffe24c63436efa8f271"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61817945f2fe7d166e75fbfb28004034b48e44878177fc54d81688e7b85a3665"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d2c342c4bc01b88402d60189f3df065fb0dda3654744d5a165a5288a657368"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e11661ce0fd30a6790e8bcdf263b9ec5988e95e63cf901972107efc49218b13"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d18368b137c6295db49ce7218b1a9ba15c5bc254c96d7c9f9e924a9bc7825ad"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ec4e55f79b1c4ffb2eecd8a0cfba9955a2588497d96851f4c8f99aa4a1d39b12"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:374a5e5049eda9e0a44c696c7ade3ff355f06b1fe0bb945ea3cac2bc336478a2"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5c364564d17da23db1106787675fc7af45f2f7b58b4173bfdd105564e132e6fb"}, + {file = "pydantic_core-2.23.4-cp38-none-win32.whl", hash = "sha256:d7a80d21d613eec45e3d41eb22f8f94ddc758a6c4720842dc74c0581f54993d6"}, + {file = "pydantic_core-2.23.4-cp38-none-win_amd64.whl", hash = "sha256:5f5ff8d839f4566a474a969508fe1c5e59c31c80d9e140566f9a37bba7b8d556"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a4fa4fc04dff799089689f4fd502ce7d59de529fc2f40a2c8836886c03e0175a"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7df63886be5e270da67e0966cf4afbae86069501d35c8c1b3b6c168f42cb36"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcedcd19a557e182628afa1d553c3895a9f825b936415d0dbd3cd0bbcfd29b4b"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f54b118ce5de9ac21c363d9b3caa6c800341e8c47a508787e5868c6b79c9323"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86d2f57d3e1379a9525c5ab067b27dbb8a0642fb5d454e17a9ac434f9ce523e3"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de6d1d1b9e5101508cb37ab0d972357cac5235f5c6533d1071964c47139257df"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1278e0d324f6908e872730c9102b0112477a7f7cf88b308e4fc36ce1bdb6d58c"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a6b5099eeec78827553827f4c6b8615978bb4b6a88e5d9b93eddf8bb6790f55"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e55541f756f9b3ee346b840103f32779c695a19826a4c442b7954550a0972040"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a5c7ba8ffb6d6f8f2ab08743be203654bb1aaa8c9dcb09f82ddd34eadb695605"}, + {file = "pydantic_core-2.23.4-cp39-none-win32.whl", hash = "sha256:37b0fe330e4a58d3c58b24d91d1eb102aeec675a3db4c292ec3928ecd892a9a6"}, + {file = "pydantic_core-2.23.4-cp39-none-win_amd64.whl", hash = "sha256:1498bec4c05c9c787bde9125cfdcc63a41004ff167f495063191b863399b1a29"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f455ee30a9d61d3e1a15abd5068827773d6e4dc513e795f380cdd59932c782d5"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1e90d2e3bd2c3863d48525d297cd143fe541be8bbf6f579504b9712cb6b643ec"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e203fdf807ac7e12ab59ca2bfcabb38c7cf0b33c41efeb00f8e5da1d86af480"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e08277a400de01bc72436a0ccd02bdf596631411f592ad985dcee21445bd0068"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f220b0eea5965dec25480b6333c788fb72ce5f9129e8759ef876a1d805d00801"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d06b0c8da4f16d1d1e352134427cb194a0a6e19ad5db9161bf32b2113409e728"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ba1a0996f6c2773bd83e63f18914c1de3c9dd26d55f4ac302a7efe93fb8e7433"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:9a5bce9d23aac8f0cf0836ecfc033896aa8443b501c58d0602dbfd5bd5b37753"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:78ddaaa81421a29574a682b3179d4cf9e6d405a09b99d93ddcf7e5239c742e21"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:883a91b5dd7d26492ff2f04f40fbb652de40fcc0afe07e8129e8ae779c2110eb"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88ad334a15b32a791ea935af224b9de1bf99bcd62fabf745d5f3442199d86d59"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:233710f069d251feb12a56da21e14cca67994eab08362207785cf8c598e74577"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:19442362866a753485ba5e4be408964644dd6a09123d9416c54cd49171f50744"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:624e278a7d29b6445e4e813af92af37820fafb6dcc55c012c834f9e26f9aaaef"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f5ef8f42bec47f21d07668a043f077d507e5bf4e668d5c6dfe6aaba89de1a5b8"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:aea443fffa9fbe3af1a9ba721a87f926fe548d32cab71d188a6ede77d0ff244e"}, + {file = "pydantic_core-2.23.4.tar.gz", hash = "sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863"}, +] + +[package.dependencies] +typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" [[package]] name = "pyjwt" @@ -1192,6 +1463,109 @@ files = [ {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] +[[package]] +name = "regex" +version = "2024.9.11" +description = "Alternative regular expression module, to replace re." +optional = false +python-versions = ">=3.8" +files = [ + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1494fa8725c285a81d01dc8c06b55287a1ee5e0e382d8413adc0a9197aac6408"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0e12c481ad92d129c78f13a2a3662317e46ee7ef96c94fd332e1c29131875b7d"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:16e13a7929791ac1216afde26f712802e3df7bf0360b32e4914dca3ab8baeea5"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46989629904bad940bbec2106528140a218b4a36bb3042d8406980be1941429c"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a906ed5e47a0ce5f04b2c981af1c9acf9e8696066900bf03b9d7879a6f679fc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a091b0550b3b0207784a7d6d0f1a00d1d1c8a11699c1a4d93db3fbefc3ad35"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ddcd9a179c0a6fa8add279a4444015acddcd7f232a49071ae57fa6e278f1f71"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b41e1adc61fa347662b09398e31ad446afadff932a24807d3ceb955ed865cc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ced479f601cd2f8ca1fd7b23925a7e0ad512a56d6e9476f79b8f381d9d37090a"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:635a1d96665f84b292e401c3d62775851aedc31d4f8784117b3c68c4fcd4118d"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c0256beda696edcf7d97ef16b2a33a8e5a875affd6fa6567b54f7c577b30a137"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:3ce4f1185db3fbde8ed8aa223fc9620f276c58de8b0d4f8cc86fd1360829edb6"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:09d77559e80dcc9d24570da3745ab859a9cf91953062e4ab126ba9d5993688ca"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a22ccefd4db3f12b526eccb129390942fe874a3a9fdbdd24cf55773a1faab1a"}, + {file = "regex-2024.9.11-cp310-cp310-win32.whl", hash = "sha256:f745ec09bc1b0bd15cfc73df6fa4f726dcc26bb16c23a03f9e3367d357eeedd0"}, + {file = "regex-2024.9.11-cp310-cp310-win_amd64.whl", hash = "sha256:01c2acb51f8a7d6494c8c5eafe3d8e06d76563d8a8a4643b37e9b2dd8a2ff623"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2cce2449e5927a0bf084d346da6cd5eb016b2beca10d0013ab50e3c226ffc0df"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b37fa423beefa44919e009745ccbf353d8c981516e807995b2bd11c2c77d268"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:64ce2799bd75039b480cc0360907c4fb2f50022f030bf9e7a8705b636e408fad"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4cc92bb6db56ab0c1cbd17294e14f5e9224f0cc6521167ef388332604e92679"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d05ac6fa06959c4172eccd99a222e1fbf17b5670c4d596cb1e5cde99600674c4"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:040562757795eeea356394a7fb13076ad4f99d3c62ab0f8bdfb21f99a1f85664"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6113c008a7780792efc80f9dfe10ba0cd043cbf8dc9a76ef757850f51b4edc50"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e5fb5f77c8745a60105403a774fe2c1759b71d3e7b4ca237a5e67ad066c7199"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54d9ff35d4515debf14bc27f1e3b38bfc453eff3220f5bce159642fa762fe5d4"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:df5cbb1fbc74a8305b6065d4ade43b993be03dbe0f8b30032cced0d7740994bd"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7fb89ee5d106e4a7a51bce305ac4efb981536301895f7bdcf93ec92ae0d91c7f"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a738b937d512b30bf75995c0159c0ddf9eec0775c9d72ac0202076c72f24aa96"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e28f9faeb14b6f23ac55bfbbfd3643f5c7c18ede093977f1df249f73fd22c7b1"}, + {file = "regex-2024.9.11-cp311-cp311-win32.whl", hash = "sha256:18e707ce6c92d7282dfce370cd205098384b8ee21544e7cb29b8aab955b66fa9"}, + {file = "regex-2024.9.11-cp311-cp311-win_amd64.whl", hash = "sha256:313ea15e5ff2a8cbbad96ccef6be638393041b0a7863183c2d31e0c6116688cf"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b0d0a6c64fcc4ef9c69bd5b3b3626cc3776520a1637d8abaa62b9edc147a58f7"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b0e06786ea663f933f3710a51e9385ce0cba0ea56b67107fd841a55d56a231"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5b513b6997a0b2f10e4fd3a1313568e373926e8c252bd76c960f96fd039cd28d"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee439691d8c23e76f9802c42a95cfeebf9d47cf4ffd06f18489122dbb0a7ad64"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8f877c89719d759e52783f7fe6e1c67121076b87b40542966c02de5503ace42"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23b30c62d0f16827f2ae9f2bb87619bc4fba2044911e2e6c2eb1af0161cdb766"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ab7824093d8f10d44330fe1e6493f756f252d145323dd17ab6b48733ff6c0a"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dee5b4810a89447151999428fe096977346cf2f29f4d5e29609d2e19e0199c9"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98eeee2f2e63edae2181c886d7911ce502e1292794f4c5ee71e60e23e8d26b5d"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:57fdd2e0b2694ce6fc2e5ccf189789c3e2962916fb38779d3e3521ff8fe7a822"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d552c78411f60b1fdaafd117a1fca2f02e562e309223b9d44b7de8be451ec5e0"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a0b2b80321c2ed3fcf0385ec9e51a12253c50f146fddb2abbb10f033fe3d049a"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:18406efb2f5a0e57e3a5881cd9354c1512d3bb4f5c45d96d110a66114d84d23a"}, + {file = "regex-2024.9.11-cp312-cp312-win32.whl", hash = "sha256:e464b467f1588e2c42d26814231edecbcfe77f5ac414d92cbf4e7b55b2c2a776"}, + {file = "regex-2024.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:9e8719792ca63c6b8340380352c24dcb8cd7ec49dae36e963742a275dfae6009"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c157bb447303070f256e084668b702073db99bbb61d44f85d811025fcf38f784"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4db21ece84dfeefc5d8a3863f101995de646c6cb0536952c321a2650aa202c36"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:220e92a30b426daf23bb67a7962900ed4613589bab80382be09b48896d211e92"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1ae19e64c14c7ec1995f40bd932448713d3c73509e82d8cd7744dc00e29e86"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47cd43a5bfa48f86925fe26fbdd0a488ff15b62468abb5d2a1e092a4fb10e85"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9d4a76b96f398697fe01117093613166e6aa8195d63f1b4ec3f21ab637632963"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ea51dcc0835eea2ea31d66456210a4e01a076d820e9039b04ae8d17ac11dee6"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7aaa315101c6567a9a45d2839322c51c8d6e81f67683d529512f5bcfb99c802"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c57d08ad67aba97af57a7263c2d9006d5c404d721c5f7542f077f109ec2a4a29"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f8404bf61298bb6f8224bb9176c1424548ee1181130818fcd2cbffddc768bed8"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dd4490a33eb909ef5078ab20f5f000087afa2a4daa27b4c072ccb3cb3050ad84"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:eee9130eaad130649fd73e5cd92f60e55708952260ede70da64de420cdcad554"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a2644a93da36c784e546de579ec1806bfd2763ef47babc1b03d765fe560c9f8"}, + {file = "regex-2024.9.11-cp313-cp313-win32.whl", hash = "sha256:e997fd30430c57138adc06bba4c7c2968fb13d101e57dd5bb9355bf8ce3fa7e8"}, + {file = "regex-2024.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:042c55879cfeb21a8adacc84ea347721d3d83a159da6acdf1116859e2427c43f"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:35f4a6f96aa6cb3f2f7247027b07b15a374f0d5b912c0001418d1d55024d5cb4"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:55b96e7ce3a69a8449a66984c268062fbaa0d8ae437b285428e12797baefce7e"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb130fccd1a37ed894824b8c046321540263013da72745d755f2d35114b81a60"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:323c1f04be6b2968944d730e5c2091c8c89767903ecaa135203eec4565ed2b2b"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be1c8ed48c4c4065ecb19d882a0ce1afe0745dfad8ce48c49586b90a55f02366"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5b029322e6e7b94fff16cd120ab35a253236a5f99a79fb04fda7ae71ca20ae8"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6fff13ef6b5f29221d6904aa816c34701462956aa72a77f1f151a8ec4f56aeb"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:587d4af3979376652010e400accc30404e6c16b7df574048ab1f581af82065e4"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:079400a8269544b955ffa9e31f186f01d96829110a3bf79dc338e9910f794fca"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f9268774428ec173654985ce55fc6caf4c6d11ade0f6f914d48ef4719eb05ebb"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:23f9985c8784e544d53fc2930fc1ac1a7319f5d5332d228437acc9f418f2f168"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2941333154baff9838e88aa71c1d84f4438189ecc6021a12c7573728b5838e"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e93f1c331ca8e86fe877a48ad64e77882c0c4da0097f2212873a69bbfea95d0c"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:846bc79ee753acf93aef4184c040d709940c9d001029ceb7b7a52747b80ed2dd"}, + {file = "regex-2024.9.11-cp38-cp38-win32.whl", hash = "sha256:c94bb0a9f1db10a1d16c00880bdebd5f9faf267273b8f5bd1878126e0fbde771"}, + {file = "regex-2024.9.11-cp38-cp38-win_amd64.whl", hash = "sha256:2b08fce89fbd45664d3df6ad93e554b6c16933ffa9d55cb7e01182baaf971508"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:07f45f287469039ffc2c53caf6803cd506eb5f5f637f1d4acb37a738f71dd066"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4838e24ee015101d9f901988001038f7f0d90dc0c3b115541a1365fb439add62"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6edd623bae6a737f10ce853ea076f56f507fd7726bee96a41ee3d68d347e4d16"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c69ada171c2d0e97a4b5aa78fbb835e0ffbb6b13fc5da968c09811346564f0d3"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02087ea0a03b4af1ed6ebab2c54d7118127fee8d71b26398e8e4b05b78963199"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69dee6a020693d12a3cf892aba4808fe168d2a4cef368eb9bf74f5398bfd4ee8"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297f54910247508e6e5cae669f2bc308985c60540a4edd1c77203ef19bfa63ca"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ecea58b43a67b1b79805f1a0255730edaf5191ecef84dbc4cc85eb30bc8b63b9"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:eab4bb380f15e189d1313195b062a6aa908f5bd687a0ceccd47c8211e9cf0d4a"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0cbff728659ce4bbf4c30b2a1be040faafaa9eca6ecde40aaff86f7889f4ab39"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:54c4a097b8bc5bb0dfc83ae498061d53ad7b5762e00f4adaa23bee22b012e6ba"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:73d6d2f64f4d894c96626a75578b0bf7d9e56dcda8c3d037a2118fdfe9b1c664"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:e53b5fbab5d675aec9f0c501274c467c0f9a5d23696cfc94247e1fb56501ed89"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0ffbcf9221e04502fc35e54d1ce9567541979c3fdfb93d2c554f0ca583a19b35"}, + {file = "regex-2024.9.11-cp39-cp39-win32.whl", hash = "sha256:e4c22e1ac1f1ec1e09f72e6c44d8f2244173db7eb9629cc3a346a8d7ccc31142"}, + {file = "regex-2024.9.11-cp39-cp39-win_amd64.whl", hash = "sha256:faa3c142464efec496967359ca99696c896c591c56c53506bac1ad465f66e919"}, + {file = "regex-2024.9.11.tar.gz", hash = "sha256:6c188c307e8433bcb63dc1915022deb553b4203a70722fc542c363bf120a01fd"}, +] + [[package]] name = "requests" version = "2.32.3" @@ -1276,23 +1650,76 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "responses" -version = "0.23.3" +version = "0.25.3" description = "A utility library for mocking out the `requests` Python library." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "responses-0.23.3-py3-none-any.whl", hash = "sha256:e6fbcf5d82172fecc0aa1860fd91e58cbfd96cee5e96da5b63fa6eb3caa10dd3"}, - {file = "responses-0.23.3.tar.gz", hash = "sha256:205029e1cb334c21cb4ec64fc7599be48b859a0fd381a42443cdd600bfe8b16a"}, + {file = "responses-0.25.3-py3-none-any.whl", hash = "sha256:521efcbc82081ab8daa588e08f7e8a64ce79b91c39f6e62199b19159bea7dbcb"}, + {file = "responses-0.25.3.tar.gz", hash = "sha256:617b9247abd9ae28313d57a75880422d55ec63c29d33d629697590a034358dba"}, ] [package.dependencies] pyyaml = "*" requests = ">=2.30.0,<3.0" -types-PyYAML = "*" urllib3 = ">=1.25.10,<3.0" [package.extras] -tests = ["coverage (>=6.0.0)", "flake8", "mypy", "pytest (>=7.0.0)", "pytest-asyncio", "pytest-cov", "pytest-httpserver", "tomli", "tomli-w", "types-requests"] +tests = ["coverage (>=6.0.0)", "flake8", "mypy", "pytest (>=7.0.0)", "pytest-asyncio", "pytest-cov", "pytest-httpserver", "tomli", "tomli-w", "types-PyYAML", "types-requests"] + +[[package]] +name = "serpyco-rs" +version = "1.11.0" +description = "" +optional = false +python-versions = ">=3.9" +files = [ + {file = "serpyco_rs-1.11.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:4b2bd933539bd8c84315e2fb5ae52ef7a58ace5a6dfe3f8b73f74dc71216779e"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:627f957889ff73c4d2269fc7b6bba93212381befe03633e7cb5495de66ba9a33"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b0933620abc01434023e0e3e22255b7e4ab9b427b5a9a5ee00834656d792377a"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:9ce46683d92e34abb20304817fc5ac6cb141a06fc7468dedb1d8865a8a9682f6"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bda437d86e8859bf91c189c1f4650899822f6d6d7b02b48f5729da904eb7bb7d"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a72bfbd282af17ebe76d122639013e802c09902543fdbbd828fb2159ec9755e"}, + {file = "serpyco_rs-1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d4808df5384e3e8581e31a90ba7a1fa501c0837b1f174284bb8a4555b6864ea"}, + {file = "serpyco_rs-1.11.0-cp310-none-win_amd64.whl", hash = "sha256:c7b60aef4c16d68efb0d6241f05d0a434d873d98449cbb4366b0d385f0a7172b"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:8d47ee577cf4d69b53917615cb031ad8708eb2f59fe78194b1968c13130fc2f7"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6090d9a1487237cdd4e9362a823eede23249602019b917e7bd57846179286e79"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7192eb3df576386fefd595ea31ae25c62522841ffec7e7aeb37a80b55bdc3213"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:b52ef8affb7e71b9b98a7d5216d6a7ad03b04e990acb147cd9211c8b931c5487"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3480e09e473560c60e74aaa789e6b4d079637371aae0a98235440111464bbba7"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c92e36b0ab6fe866601c2331f7e99c809a126d21963c03d8a5c29331526deed"}, + {file = "serpyco_rs-1.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84f497361952d4566bc1f77e9e15a84a2614f593cc671fbf0a0fa80046f9c3d7"}, + {file = "serpyco_rs-1.11.0-cp311-none-win_amd64.whl", hash = "sha256:37fc1cf192bef9784fbf1f4e03cec21750b9e704bef55cc0442f71a715eee920"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:3ea93d485f03dc8b0cfb0d477f0ad2e86e78f0461b53010656ab5b4db1b41fb0"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7772410d15694b03f9c5500a2c47d62eed76e191bea4087ad042250346b1a38e"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42118463c1679846cffd2f06f47744c9b9eb33c5d0448afd88ea19e1a81a8ddd"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:79481a455b76cc56021dc55bb6d5bdda1b2b32bcb6a1ee711b597140d112e9b1"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c8fd79051f9af9591fc03cf7d3033ff180416301f6a4fd3d1e3d92ebd2d68697"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d29c8f9aeed734a3b51f7349d04ec9063516ffa4e10b632d75e9b1309e4930e4"}, + {file = "serpyco_rs-1.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15609158b0d9591ffa118302cd9d0039970cb3faf91dce32975f7d276e7411d5"}, + {file = "serpyco_rs-1.11.0-cp312-none-win_amd64.whl", hash = "sha256:00081eae77fbf4c5d88371c5586317ab02ccb293a330b460869a283edf2b7b69"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:3028893366a1985adcedb13fa8f6f98c087c185efc427f94c2ccdafa40f45832"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c18bf511316f3abf648a68ee62ef88617bec57d3fcde69466b4361102715ae5"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7dde9ef09cdfaf7c62378186b9e29f54ec76114be4c347be6a06dd559c5681e"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:18500ebc5e75285841e35585a238629a990b709e14f68933233640d15ca17d5f"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47c23132d4e03982703a7630aa09877b41e499722142f76b6153f6619b612f3"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5f8e6ba499f6a0825bee0d8f8764569d367af871b563fc6512c171474e8e5383"}, + {file = "serpyco_rs-1.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15438a076047c34cff6601a977df54948e8d39d1a86f89d05c48bc60f4c12a61"}, + {file = "serpyco_rs-1.11.0-cp313-none-win_amd64.whl", hash = "sha256:84ee2c109415bd81904fc9abb9aec86a5dd13166808c21142cf23ec639f683bd"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:5c97c16c865261577fac4effeccc7ef5e0a1e8e35e7a3ee6c90c77c3a4cd7ff9"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47825e70f86fd6ef7c4a835dea3d6e8eef4fee354ed7b39ced99f31aba74a86e"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:24d220220365110edba2f778f41ab3cf396883da0f26e1361a3ada9bd0227f73"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:3a46f334af5a9d77acc6e1e58f355ae497900a2798929371f0545e274f6e6166"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d72b748acce4b4e3c7c9724e1eb33d033a1c26b08a698b393e0288060e0901"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2b8b6f205e8cc038d4d30dd0e70eece7bbecc816eb2f3787c330dc2218e232d"}, + {file = "serpyco_rs-1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:038d748bfff31f150f0c3edab2766b8843edb952cb1bd3bf547886beb0912dae"}, + {file = "serpyco_rs-1.11.0-cp39-none-win_amd64.whl", hash = "sha256:0fee1c89ec2cb013dc232e4ebef88e2844357ce8631063b56639dbfb83762f20"}, + {file = "serpyco_rs-1.11.0.tar.gz", hash = "sha256:70a844615ffb229e6e89c204b3ab7404aacaf2838911814c7d847969b8da2e3a"}, +] + +[package.dependencies] +attributes-doc = "*" +typing-extensions = "*" [[package]] name = "setuptools" @@ -1363,16 +1790,25 @@ files = [ ] [[package]] -name = "types-pyyaml" -version = "6.0.12.20240917" -description = "Typing stubs for PyYAML" +name = "tqdm" +version = "4.66.6" +description = "Fast, Extensible Progress Meter" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "types-PyYAML-6.0.12.20240917.tar.gz", hash = "sha256:d1405a86f9576682234ef83bcb4e6fff7c9305c8b1fbad5e0bcd4f7dbdc9c587"}, - {file = "types_PyYAML-6.0.12.20240917-py3-none-any.whl", hash = "sha256:392b267f1c0fe6022952462bf5d6523f31e37f6cea49b14cee7ad634b6301570"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + [[package]] name = "typing-extensions" version = "4.12.2" @@ -1384,6 +1820,17 @@ files = [ {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] +[[package]] +name = "tzdata" +version = "2024.2" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"}, + {file = "tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc"}, +] + [[package]] name = "url-normalize" version = "1.4.3" @@ -1508,7 +1955,18 @@ files = [ {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, ] +[[package]] +name = "xmltodict" +version = "0.13.0" +description = "Makes working with XML feel like you are working with JSON" +optional = false +python-versions = ">=3.4" +files = [ + {file = "xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852"}, + {file = "xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56"}, +] + [metadata] lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "f9cc9aa4f9fd49406de4d61d63aec486504655fcb1f7f996d633d78ee4183a03" +python-versions = "^3.10,<3.12" +content-hash = "cf8e95efb8a58d09996a9005c63f5455e7198fc508d79a340399617072c1aba0" diff --git a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml index cf80c4716fd3..bc9e6f48b7ad 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.0.0" +version = "6.1.0" name = "source-amazon-ads" description = "Source implementation for Amazon Ads." authors = [ "Airbyte ",] @@ -16,15 +16,14 @@ repository = "https://github.com/airbytehq/airbyte" include = "source_amazon_ads" [tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "0.90.0" -pendulum = "==2.1.2" +python = "^3.10,<3.12" +airbyte-cdk = "^5" [tool.poetry.scripts] source-amazon-ads = "source_amazon_ads.run:run" [tool.poetry.group.dev.dependencies] -responses = "^0.23.1" +responses = "^0.25" freezegun = "*" requests-mock = "*" pytest-mock = "*" diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/declarative_source_adapter.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/declarative_source_adapter.py deleted file mode 100644 index 5772e3ba862d..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/declarative_source_adapter.py +++ /dev/null @@ -1,47 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - - -from logging import Logger -from typing import Any, List, Mapping - -from airbyte_cdk.models import AirbyteConnectionStatus, ConnectorSpecification -from airbyte_cdk.sources import AbstractSource -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource -from airbyte_cdk.sources.streams import Stream - - -class DeclarativeSourceAdapter(YamlDeclarativeSource): - def __init__(self, source: AbstractSource) -> None: - self._source = source - super().__init__(path_to_yaml="manifest.yaml") - self._set_adapted_methods() - - @property - def name(self) -> str: - return self._source.name - - def spec(self, logger: Logger) -> ConnectorSpecification: - return self._source.spec(logger) - - def check(self, logger: Logger, config: Mapping[str, Any]) -> AirbyteConnectionStatus: - return self._source.check(logger, config) - - def streams(self, config: Mapping[str, Any]) -> List[Stream]: - return self._source.streams(config) - - def _validate_source(self) -> None: - """Skipping manifest validation as it can be incomplete when use adapter""" - return - - def _set_adapted_methods(self) -> None: - """ - Since the adapter is intended to smoothly migrate the connector, - this method determines whether each of methods `spec`, `check`, and `streams` was declared in the manifest file - and if yes, makes the source use it, otherwise the method defined in the source will be used - """ - adapted_methods = ("spec", "check", "streams") - for method in adapted_methods: - if method in self.resolved_manifest: - self._source.__setattr__(method, getattr(super(), method)) diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/run.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/run.py index 0436d379599e..a8012240de66 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/run.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/run.py @@ -8,10 +8,9 @@ from airbyte_cdk.entrypoint import launch from source_amazon_ads import SourceAmazonAds from source_amazon_ads.config_migrations import MigrateStartDate -from source_amazon_ads.declarative_source_adapter import DeclarativeSourceAdapter def run(): - source = DeclarativeSourceAdapter(source=SourceAmazonAds()) + source = SourceAmazonAds() MigrateStartDate.migrate(sys.argv[1:], source) launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/__init__.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/__init__.py deleted file mode 100644 index 053c733ac2ff..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/__init__.py +++ /dev/null @@ -1,56 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# -from .attribution_report import AttributionReportModel -from .common import ( - CatalogModel, - Keywords, - MetricsReport, - NegativeKeywords, - Portfolio -) -from .profile import Profile -from .sponsored_brands import ( - BrandsAdGroup, - BrandsCampaign, -) -from .sponsored_display import DisplayAdGroup, DisplayBudgetRules, DisplayCampaign, DisplayCreatives, DisplayProductAds, DisplayTargeting -from .sponsored_products import ( - ProductAd, - ProductAdGroupBidRecommendations, - ProductAdGroups, - ProductAdGroupSuggestedKeywords, - ProductCampaign, - ProductTargeting, - SponsoredProductCampaignNegativeKeywordsModel, - SponsoredProductKeywordsModel, - SponsoredProductNegativeKeywordsModel -) - -__all__ = [ - "BrandsAdGroup", - "BrandsCampaign", - "CatalogModel", - "DisplayAdGroup", - "DisplayCampaign", - "DisplayProductAds", - "DisplayTargeting", - "DisplayBudgetRules", - "Keywords", - "DisplayCreatives", - "MetricsReport", - "NegativeKeywords", - "CampaignNegativeKeywords", - "Portfolio", - "ProductAd", - "ProductAdGroups", - "ProductAdGroupBidRecommendations", - "ProductAdGroupSuggestedKeywords", - "ProductCampaign", - "ProductTargeting", - "Profile", - "AttributionReportModel", - "SponsoredProductCampaignNegativeKeywordsModel", - "SponsoredProductKeywordsModel", - "SponsoredProductNegativeKeywordsModel" -] diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report.py deleted file mode 100644 index b7b3e89c5a79..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report.py +++ /dev/null @@ -1,24 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from typing import Optional - -from .common import CatalogModel - - -class AttributionReportModel(CatalogModel): - date: str - brandName: str - marketplace: str - campaignId: Optional[str] - productAsin: str - productConversionType: str - advertiserName: str - adGroupId: Optional[str] - creativeId: Optional[str] - productName: str - productCategory: str - productSubcategory: str - productGroup: str - publisher: Optional[str] diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_adgroup.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_adgroup.json new file mode 100644 index 000000000000..80422aa45cf3 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_adgroup.json @@ -0,0 +1,118 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "date": { + "type": ["null", "string"] + }, + "brandName": { + "type": ["null", "string"] + }, + "marketplace": { + "type": ["null", "string"] + }, + "campaignId": { + "type": ["null", "string"] + }, + "productAsin": { + "type": ["null", "string"] + }, + "productConversionType": { + "type": ["null", "string"] + }, + "advertiserName": { + "type": ["null", "string"] + }, + "adGroupId": { + "type": ["null", "string"] + }, + "creativeId": { + "type": ["null", "string"] + }, + "productName": { + "type": ["null", "string"] + }, + "productCategory": { + "type": ["null", "string"] + }, + "productSubcategory": { + "type": ["null", "string"] + }, + "productGroup": { + "type": ["null", "string"] + }, + "publisher": { + "type": ["null", "string"] + }, + "Click-throughs": { + "type": ["null", "string"] + }, + "attributedDetailPageViewsClicks14d": { + "type": ["null", "string"] + }, + "attributedAddToCartClicks14d": { + "type": ["null", "string"] + }, + "attributedPurchases14d": { + "type": ["null", "string"] + }, + "unitsSold14d": { + "type": ["null", "string"] + }, + "attributedSales14d": { + "type": ["null", "string"] + }, + "attributedTotalDetailPageViewsClicks14d": { + "type": ["null", "string"] + }, + "attributedTotalAddToCartClicks14d": { + "type": ["null", "string"] + }, + "attributedTotalPurchases14d": { + "type": ["null", "string"] + }, + "totalUnitsSold14d": { + "type": ["null", "string"] + }, + "totalAttributedSales14d": { + "type": ["null", "string"] + }, + "brb_bonus_amount": { + "type": ["null", "string"] + }, + "brandHaloDetailPageViewsClicks14d": { + "type": ["null", "string"] + }, + "brandHaloAttributedAddToCartClicks14d": { + "type": ["null", "string"] + }, + "brandHaloAttributedPurchases14d": { + "type": ["null", "string"] + }, + "brandHaloUnitsSold14d": { + "type": ["null", "string"] + }, + "brandHaloAttributedSales14d": { + "type": ["null", "string"] + }, + "attributedNewToBrandPurchases14d": { + "type": ["null", "string"] + }, + "attributedNewToBrandUnitsSold14d": { + "type": ["null", "string"] + }, + "attributedNewToBrandSales14d": { + "type": ["null", "string"] + }, + "brandHaloNewToBrandPurchases14d": { + "type": ["null", "string"] + }, + "brandHaloNewToBrandUnitsSold14d": { + "type": ["null", "string"] + }, + "brandHaloNewToBrandSales14d": { + "type": ["null", "string"] + } + }, + "title": "attribution_report_performance_adgroup", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_campaign.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_campaign.json new file mode 100644 index 000000000000..2dc5c6ef17a3 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_campaign.json @@ -0,0 +1,44 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "date": { "type": ["null", "string"] }, + "brandName": { "type": ["null", "string"] }, + "marketplace": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "productAsin": { "type": ["null", "string"] }, + "productConversionType": { "type": ["null", "string"] }, + "advertiserName": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "creativeId": { "type": ["null", "string"] }, + "productName": { "type": ["null", "string"] }, + "productCategory": { "type": ["null", "string"] }, + "productSubcategory": { "type": ["null", "string"] }, + "productGroup": { "type": ["null", "string"] }, + "publisher": { "type": ["null", "string"] }, + "Click-throughs": { "type": ["null", "string"] }, + "attributedDetailPageViewsClicks14d": { "type": ["null", "string"] }, + "attributedAddToCartClicks14d": { "type": ["null", "string"] }, + "attributedPurchases14d": { "type": ["null", "string"] }, + "unitsSold14d": { "type": ["null", "string"] }, + "attributedSales14d": { "type": ["null", "string"] }, + "attributedTotalDetailPageViewsClicks14d": { "type": ["null", "string"] }, + "attributedTotalAddToCartClicks14d": { "type": ["null", "string"] }, + "attributedTotalPurchases14d": { "type": ["null", "string"] }, + "totalUnitsSold14d": { "type": ["null", "string"] }, + "totalAttributedSales14d": { "type": ["null", "string"] }, + "brb_bonus_amount": { "type": ["null", "string"] }, + "brandHaloDetailPageViewsClicks14d": { "type": ["null", "string"] }, + "brandHaloAttributedAddToCartClicks14d": { "type": ["null", "string"] }, + "brandHaloAttributedPurchases14d": { "type": ["null", "string"] }, + "brandHaloUnitsSold14d": { "type": ["null", "string"] }, + "brandHaloAttributedSales14d": { "type": ["null", "string"] }, + "attributedNewToBrandPurchases14d": { "type": ["null", "string"] }, + "attributedNewToBrandUnitsSold14d": { "type": ["null", "string"] }, + "attributedNewToBrandSales14d": { "type": ["null", "string"] }, + "brandHaloNewToBrandPurchases14d": { "type": ["null", "string"] }, + "brandHaloNewToBrandUnitsSold14d": { "type": ["null", "string"] }, + "brandHaloNewToBrandSales14d": { "type": ["null", "string"] } + }, + "title": "attribution_report_performance_campaign", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_creative.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_creative.json new file mode 100644 index 000000000000..752537d60c06 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_performance_creative.json @@ -0,0 +1,44 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "date": { "type": ["null", "string"] }, + "brandName": { "type": ["null", "string"] }, + "marketplace": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "productAsin": { "type": ["null", "string"] }, + "productConversionType": { "type": ["null", "string"] }, + "advertiserName": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "creativeId": { "type": ["null", "string"] }, + "productName": { "type": ["null", "string"] }, + "productCategory": { "type": ["null", "string"] }, + "productSubcategory": { "type": ["null", "string"] }, + "productGroup": { "type": ["null", "string"] }, + "publisher": { "type": ["null", "string"] }, + "Click-throughs": { "type": ["null", "string"] }, + "attributedDetailPageViewsClicks14d": { "type": ["null", "string"] }, + "attributedAddToCartClicks14d": { "type": ["null", "string"] }, + "attributedPurchases14d": { "type": ["null", "string"] }, + "unitsSold14d": { "type": ["null", "string"] }, + "attributedSales14d": { "type": ["null", "string"] }, + "attributedTotalDetailPageViewsClicks14d": { "type": ["null", "string"] }, + "attributedTotalAddToCartClicks14d": { "type": ["null", "string"] }, + "attributedTotalPurchases14d": { "type": ["null", "string"] }, + "totalUnitsSold14d": { "type": ["null", "string"] }, + "totalAttributedSales14d": { "type": ["null", "string"] }, + "brb_bonus_amount": { "type": ["null", "string"] }, + "brandHaloDetailPageViewsClicks14d": { "type": ["null", "string"] }, + "brandHaloAttributedAddToCartClicks14d": { "type": ["null", "string"] }, + "brandHaloAttributedPurchases14d": { "type": ["null", "string"] }, + "brandHaloUnitsSold14d": { "type": ["null", "string"] }, + "brandHaloAttributedSales14d": { "type": ["null", "string"] }, + "attributedNewToBrandPurchases14d": { "type": ["null", "string"] }, + "attributedNewToBrandUnitsSold14d": { "type": ["null", "string"] }, + "attributedNewToBrandSales14d": { "type": ["null", "string"] }, + "brandHaloNewToBrandPurchases14d": { "type": ["null", "string"] }, + "brandHaloNewToBrandUnitsSold14d": { "type": ["null", "string"] }, + "brandHaloNewToBrandSales14d": { "type": ["null", "string"] } + }, + "title": "attribution_report_performance_creative", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_products.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_products.json new file mode 100644 index 000000000000..9d367b04ac7b --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/attribution_report_products.json @@ -0,0 +1,44 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "date": { "type": ["null", "string"] }, + "brandName": { "type": ["null", "string"] }, + "marketplace": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "productAsin": { "type": ["null", "string"] }, + "productConversionType": { "type": ["null", "string"] }, + "advertiserName": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "creativeId": { "type": ["null", "string"] }, + "productName": { "type": ["null", "string"] }, + "productCategory": { "type": ["null", "string"] }, + "productSubcategory": { "type": ["null", "string"] }, + "productGroup": { "type": ["null", "string"] }, + "publisher": { "type": ["null", "string"] }, + "Click-throughs": { "type": ["null", "string"] }, + "attributedDetailPageViewsClicks14d": { "type": ["null", "string"] }, + "attributedAddToCartClicks14d": { "type": ["null", "string"] }, + "attributedPurchases14d": { "type": ["null", "string"] }, + "unitsSold14d": { "type": ["null", "string"] }, + "attributedSales14d": { "type": ["null", "string"] }, + "attributedTotalDetailPageViewsClicks14d": { "type": ["null", "string"] }, + "attributedTotalAddToCartClicks14d": { "type": ["null", "string"] }, + "attributedTotalPurchases14d": { "type": ["null", "string"] }, + "totalUnitsSold14d": { "type": ["null", "string"] }, + "totalAttributedSales14d": { "type": ["null", "string"] }, + "brb_bonus_amount": { "type": ["null", "string"] }, + "brandHaloDetailPageViewsClicks14d": { "type": ["null", "string"] }, + "brandHaloAttributedAddToCartClicks14d": { "type": ["null", "string"] }, + "brandHaloAttributedPurchases14d": { "type": ["null", "string"] }, + "brandHaloUnitsSold14d": { "type": ["null", "string"] }, + "brandHaloAttributedSales14d": { "type": ["null", "string"] }, + "attributedNewToBrandPurchases14d": { "type": ["null", "string"] }, + "attributedNewToBrandUnitsSold14d": { "type": ["null", "string"] }, + "attributedNewToBrandSales14d": { "type": ["null", "string"] }, + "brandHaloNewToBrandPurchases14d": { "type": ["null", "string"] }, + "brandHaloNewToBrandUnitsSold14d": { "type": ["null", "string"] }, + "brandHaloNewToBrandSales14d": { "type": ["null", "string"] } + }, + "title": "attribution_report_products", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/common.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/common.py deleted file mode 100644 index 89485a7a8d72..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/common.py +++ /dev/null @@ -1,102 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from decimal import Decimal -from typing import Any, Dict, Iterable, Type - -from pydantic import BaseModel, create_model - - -class CatalogModel(BaseModel): - class Config: - arbitrary_types_allowed = True - - @classmethod - def schema_extra(cls, schema: Dict[str, Any], model: Type["BaseModel"]) -> None: - # Modify pydantic generated jsonschema. - # Remove "title" and "description" fields to reduce size. - schema.pop("title", None) - schema.pop("description", None) - # Remove required section so any missing attribute from API wont break object validation. - schema.pop("required", None) - # According to https://github.com/airbytehq/airbyte/issues/14196 set additionalProperties to True - if schema.pop("additionalProperties", None): - schema["additionalProperties"] = True - for name, prop in schema.get("properties", {}).items(): - prop.pop("title", None) - prop.pop("description", None) - if prop.pop("additionalProperties", None): - prop["additionalProperties"] = True - allow_none = model.__fields__[name].allow_none - # Pydantic doesnt treat Union[None, Any] type correctly when - # generation jsonschema so we cant set field as nullable (i.e. - # field that can have either null and non-null values), - # generate this jsonschema value manually. - if "type" in prop: - if allow_none: - prop["type"] = ["null", prop["type"]] - if prop["type"] == "array" and prop["items"]: - if prop["items"].pop("additionalProperties", None): - prop["items"]["additionalProperties"] = True - if schema["type"] == "object": - schema["type"] = ["object", "null"] - - -class MetricsReport(CatalogModel): - profileId: int - recordType: str - reportDate: str - recordId: str - # This property will be overwritten with autogenerated model based on metrics list - metric: None - - @classmethod - def generate_metric_model(cls, metric_list: Iterable[str]) -> CatalogModel: - metrics_obj_model = create_model("MetricObjModel", **{f: (str, None) for f in metric_list}, __base__=CatalogModel) - return create_model("MetricsModel", metric=(metrics_obj_model, None), __base__=cls) - - -class Targeting(CatalogModel): - targetId: Decimal - adGroupId: Decimal - state: str - expressionType: str - bid: Decimal - - -class KeywordsBase(CatalogModel): - keywordId: Decimal - campaignId: Decimal - adGroupId: Decimal - state: str - keywordText: str - - -class Keywords(KeywordsBase): - nativeLanguageKeyword: str - matchType: str - bid: Decimal - - -class NegativeKeywords(KeywordsBase): - matchType: str - - -class Budget(CatalogModel): - amount: Decimal = None - currencyCode: str = None - policy: str = None - startDate: str = None - endDate: str = None - - -class Portfolio(CatalogModel): - portfolioId: int - name: str = None - budget: Budget = None - inBudget: bool = None - state: str = None - creationDate: int = None - lastUpdatedDate: int = None - servingStatus: str = None diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/portfolios.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/portfolios.json new file mode 100644 index 000000000000..cf7539e2c60e --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/portfolios.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "portfolioId": { "type": ["null", "integer"] }, + "name": { "type": ["null", "string"] }, + "budget": { + "type": ["object", "null"], + "properties": { + "amount": { "type": ["null", "number"] }, + "currencyCode": { "type": ["null", "string"] }, + "policy": { "type": ["null", "string"] }, + "startDate": { "type": ["null", "string"] }, + "endDate": { "type": ["null", "string"] } + } + }, + "inBudget": { "type": ["null", "boolean"] }, + "state": { "type": ["null", "string"] }, + "creationDate": { "type": ["null", "integer"] }, + "lastUpdatedDate": { "type": ["null", "integer"] }, + "servingStatus": { "type": ["null", "string"] } + }, + "title": "portfolios", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/profile.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/profile.py deleted file mode 100644 index 0bc6c509334f..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/profile.py +++ /dev/null @@ -1,25 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from decimal import Decimal - -from .common import CatalogModel - - -class AccountInfo(CatalogModel): - marketplaceStringId: str - id: str - type: str - name: str = None - subType: str = None - validPaymentMethod: bool = None - - -class Profile(CatalogModel): - profileId: int - countryCode: str = None - currencyCode: str = None - dailyBudget: Decimal = None - timezone: str - accountInfo: AccountInfo diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/profiles.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/profiles.json new file mode 100644 index 000000000000..53ba437b6a4b --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/profiles.json @@ -0,0 +1,23 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "profileId": { "type": ["null", "integer"] }, + "countryCode": { "type": ["null", "string"] }, + "currencyCode": { "type": ["null", "string"] }, + "dailyBudget": { "type": ["null", "number"] }, + "timezone": { "type": ["null", "string"] }, + "accountInfo": { + "type": ["object", "null"], + "properties": { + "marketplaceStringId": { "type": ["null", "string"] }, + "id": { "type": ["null", "string"] }, + "type": { "type": ["null", "string"] }, + "name": { "type": ["null", "string"] }, + "subType": { "type": ["null", "string"] }, + "validPaymentMethod": { "type": ["null", "boolean"] } + } + } + }, + "title": "profiles", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands.py deleted file mode 100644 index 51d8f091e81c..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands.py +++ /dev/null @@ -1,53 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from decimal import Decimal -from typing import Any, Dict, List, Optional - -from .common import CatalogModel - - -class LandingPage(CatalogModel): - pageType: str - url: str - - -class BidAdjustment(CatalogModel): - bidAdjustmentPredicate: str - bidAdjustmentPercent: int - - -class Creative(CatalogModel): - brandName: str - brandLogoAssetID: str - brandLogoUrl: str - asins: List[str] - shouldOptimizeAsins: bool - - -class BrandsCampaign(CatalogModel): - campaignId: str - name: str - tags: Dict[str, str] - budget: Decimal - budgetType: str - startDate: str - endDate: str - state: str - brandEntityId: str - portfolioId: str - ruleBasedBudget: Optional[Dict[str, Any]] - bidding: Optional[Dict[str, Any]] - productLocation: Optional[str] - costType: Optional[str] - smartDefault: Optional[List[str]] - extendedData: Optional[Dict[str, Any]] - - -class BrandsAdGroup(CatalogModel): - campaignId: str - adGroupId: str - name: str - state: str - extendedData: Dict[str, Any] diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_ad_groups.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_ad_groups.json new file mode 100644 index 000000000000..7b1232ba8518 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_ad_groups.json @@ -0,0 +1,12 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "campaignId": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "name": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_brands_ad_groups", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_campaigns.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_campaigns.json new file mode 100644 index 000000000000..1c528e9c6535 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_campaigns.json @@ -0,0 +1,26 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "campaignId": { "type": ["null", "string"] }, + "name": { "type": ["null", "string"] }, + "tags": { "type": ["null", "object"], "additionalProperties": true }, + "budget": { "type": ["null", "number"] }, + "budgetType": { "type": ["null", "string"] }, + "startDate": { "type": ["null", "string"] }, + "endDate": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "brandEntityId": { "type": ["null", "string"] }, + "portfolioId": { "type": ["null", "string"] }, + "ruleBasedBudget": { "type": ["null", "object"] }, + "bidding": { "type": ["null", "object"] }, + "productLocation": { "type": ["null", "string"] }, + "costType": { "type": ["null", "string"] }, + "smartDefault": { + "type": ["null", "array"], + "items": { "type": ["null", "string"] } + }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_brands_campaigns", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_keywords.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_keywords.json new file mode 100644 index 000000000000..6a179f71d387 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_keywords.json @@ -0,0 +1,12 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "campaignId": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "name": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_brands_keywords", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_v3_report_stream.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_v3_report_stream.json new file mode 100644 index 000000000000..e83fcc7d2ce0 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_brands_v3_report_stream.json @@ -0,0 +1,32 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "profileId": { "type": ["null", "integer"] }, + "recordType": { "type": ["null", "string"] }, + "reportDate": { "type": ["null", "string"] }, + "recordId": { "type": ["null", "string"] }, + "metric": { + "type": ["object", "null"], + "properties": { + "attributionType": { "type": ["null", "string"] }, + "campaignName": { "type": ["null", "string"] }, + "newToBrandSales14d": { "type": ["null", "string"] }, + "orders14d": { "type": ["null", "string"] }, + "productName": { "type": ["null", "string"] }, + "sales14d": { "type": ["null", "string"] }, + "newToBrandPurchasesPercentage14d": { "type": ["null", "string"] }, + "purchasedAsin": { "type": ["null", "string"] }, + "newToBrandSalesPercentage14d": { "type": ["null", "string"] }, + "productCategory": { "type": ["null", "string"] }, + "newToBrandPurchases14d": { "type": ["null", "string"] }, + "newToBrandUnitsSoldPercentage14d": { "type": ["null", "string"] }, + "unitsSold14d": { "type": ["null", "string"] }, + "adGroupName": { "type": ["null", "string"] }, + "newToBrandUnitsSold14d": { "type": ["null", "string"] }, + "campaignBudgetCurrencyCode": { "type": ["null", "string"] } + } + } + }, + "title": "sponsored_brands_v3_report_stream", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display.py deleted file mode 100644 index 83e845fb36ed..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display.py +++ /dev/null @@ -1,115 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from decimal import Decimal -from typing import Any, Dict, List, Optional - -from .common import CatalogModel, Targeting - - -class DisplayCampaign(CatalogModel): - campaignId: Decimal - name: str - budgetType: str - budget: Decimal - startDate: str - endDate: str = None - costType: str - state: str - portfolioId: int = None - tactic: str - deliveryProfile: str - - -class DisplayAdGroup(CatalogModel): - name: str - campaignId: Decimal - adGroupId: Decimal - defaultBid: Decimal - bidOptimization: str - state: str - tactic: str - creativeType: str - - -class DisplayProductAds(CatalogModel): - state: str - adId: Decimal - campaignId: Decimal - adGroupId: Decimal - asin: str - sku: str - - -class DisplayTargeting(Targeting): - campaignId: Decimal - expression: List[Dict[str, str]] - resolvedExpression: List[Dict[str, str]] - - -class DisplayCreatives(CatalogModel): - adGroupId: Decimal - creativeId: Decimal - creativeType: str - properties: Dict[str, Any] - moderationStatus: str - - -class DisplayBudgetRuleDetailsPerformanceMeasureCondition(CatalogModel): - metricName: str - comparisonOperator: str - threshold: Decimal - - -class DisplayBudgetRuleDetailsRecurrenceIntraDaySchedule(CatalogModel): - startTime: str - endTime: str - - -class DisplayBudgetRuleDetailsRecurrence(CatalogModel): - type: str - daysOfWeek: List[str] = None - intraDaySchedule: List[DisplayBudgetRuleDetailsRecurrenceIntraDaySchedule] = None - threshold: Decimal - - -class DisplayBudgetRuleDetailsBudgetIncreaseBy(CatalogModel): - type: str - value: Decimal - - -class DisplayBudgetRuleDetailsDurationEventTypeRuleDuration(CatalogModel): - eventId: str - endDate: str - eventName: str - startDate: str - - -class DisplayBudgetRuleDetailsDurationDateRangeTypeRuleDuration(CatalogModel): - endDate: Optional[str] - startDate: str - - -class DisplayBudgetRuleDetailsDuration(CatalogModel): - eventTypeRuleDuration: Optional[DisplayBudgetRuleDetailsDurationEventTypeRuleDuration] = None - dateRangeTypeRuleDuration: Optional[DisplayBudgetRuleDetailsDurationDateRangeTypeRuleDuration] = None - - -class DisplayBudgetRuleDetails(CatalogModel): - name: str - ruleType: str = None - duration: Optional[DisplayBudgetRuleDetailsDuration] = None - budgetIncreaseBy: Optional[DisplayBudgetRuleDetailsBudgetIncreaseBy] = None - recurrence: Optional[DisplayBudgetRuleDetailsRecurrence] = None - performanceMeasureCondition: Optional[DisplayBudgetRuleDetailsPerformanceMeasureCondition] = None - - -class DisplayBudgetRules(CatalogModel): - ruleId: str - ruleStatus: str - ruleState: str - lastUpdatedDate: Optional[Decimal] - createdDate: Decimal - ruleDetails: DisplayBudgetRuleDetails = None - ruleStatusDetails: Dict[str, str] = None diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_ad_groups.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_ad_groups.json new file mode 100644 index 000000000000..504e5e24c5fc --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_ad_groups.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "name": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "number"] }, + "adGroupId": { "type": ["null", "number"] }, + "defaultBid": { "type": ["null", "number"] }, + "bidOptimization": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "tactic": { "type": ["null", "string"] }, + "creativeType": { "type": ["null", "string"] } + }, + "title": "sponsored_display_ad_groups", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_budget_rules.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_budget_rules.json new file mode 100644 index 000000000000..e52d1d6ff896 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_budget_rules.json @@ -0,0 +1,80 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "ruleId": { "type": ["null", "string"] }, + "ruleStatus": { "type": ["null", "string"] }, + "ruleState": { "type": ["null", "string"] }, + "lastUpdatedDate": { "type": ["null", "number"] }, + "createdDate": { "type": ["null", "number"] }, + "ruleDetails": { + "type": ["object", "null"], + "properties": { + "name": { "type": ["null", "string"] }, + "ruleType": { "type": ["null", "string"] }, + "duration": { + "type": ["object", "null"], + "properties": { + "eventTypeRuleDuration": { + "type": ["object", "null"], + "properties": { + "eventId": { "type": ["null", "string"] }, + "endDate": { "type": ["null", "string"] }, + "eventName": { "type": ["null", "string"] }, + "startDate": { "type": ["null", "string"] } + } + }, + "dateRangeTypeRuleDuration": { + "type": ["object", "null"], + "properties": { + "endDate": { "type": ["null", "string"] }, + "startDate": { "type": ["null", "string"] } + } + } + } + }, + "budgetIncreaseBy": { + "type": ["object", "null"], + "properties": { + "type": { "type": ["null", "string"] }, + "value": { "type": ["null", "number"] } + } + }, + "recurrence": { + "type": ["object", "null"], + "properties": { + "type": { "type": ["null", "string"] }, + "daysOfWeek": { + "type": ["null", "array"], + "items": { "type": ["null", "string"] } + }, + "intraDaySchedule": { + "type": ["null", "array"], + "items": { + "type": ["object", "null"], + "properties": { + "startTime": { "type": ["null", "string"] }, + "endTime": { "type": ["null", "string"] } + } + } + }, + "threshold": { "type": ["null", "number"] } + } + }, + "performanceMeasureCondition": { + "type": ["object", "null"], + "properties": { + "metricName": { "type": ["null", "string"] }, + "comparisonOperator": { "type": ["null", "string"] }, + "threshold": { "type": ["null", "number"] } + } + } + } + }, + "ruleStatusDetails": { + "type": ["null", "object"], + "additionalProperties": true + } + }, + "title": "sponsored_display_budget_rules", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_campaigns.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_campaigns.json new file mode 100644 index 000000000000..f243730a264b --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_campaigns.json @@ -0,0 +1,18 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "campaignId": { "type": ["null", "number"] }, + "name": { "type": ["null", "string"] }, + "budgetType": { "type": ["null", "string"] }, + "budget": { "type": ["null", "number"] }, + "startDate": { "type": ["null", "string"] }, + "endDate": { "type": ["null", "string"] }, + "costType": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "portfolioId": { "type": ["null", "integer"] }, + "tactic": { "type": ["null", "string"] }, + "deliveryProfile": { "type": ["null", "string"] } + }, + "title": "sponsored_display_campaigns", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_creatives.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_creatives.json new file mode 100644 index 000000000000..e9e88d46bcc0 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_creatives.json @@ -0,0 +1,12 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "adGroupId": { "type": ["null", "number"] }, + "creativeId": { "type": ["null", "number"] }, + "creativeType": { "type": ["null", "string"] }, + "properties": { "type": ["null", "object"] }, + "moderationStatus": { "type": ["null", "string"] } + }, + "title": "sponsored_display_creatives", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_product_ads.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_product_ads.json new file mode 100644 index 000000000000..3381bd7b65b3 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_product_ads.json @@ -0,0 +1,13 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "state": { "type": ["null", "string"] }, + "adId": { "type": ["null", "number"] }, + "campaignId": { "type": ["null", "number"] }, + "adGroupId": { "type": ["null", "number"] }, + "asin": { "type": ["null", "string"] }, + "sku": { "type": ["null", "string"] } + }, + "title": "sponsored_display_product_ads", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_report_stream.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_report_stream.json new file mode 100644 index 000000000000..9bbacd40ff50 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_report_stream.json @@ -0,0 +1,96 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "profileId": { "type": ["null", "integer"] }, + "recordType": { "type": ["null", "string"] }, + "reportDate": { "type": ["null", "string"] }, + "recordId": { "type": ["null", "string"] }, + "metric": { + "type": ["object", "null"], + "properties": { + "videoUnmutes": { "type": ["null", "string"] }, + "royaltyQualifiedBorrowsFromClicks": { "type": ["null", "string"] }, + "newToBrandDetailPageViewClicks": { "type": ["null", "string"] }, + "videoCompleteViews": { "type": ["null", "string"] }, + "unitsSold": { "type": ["null", "string"] }, + "newToBrandPurchases": { "type": ["null", "string"] }, + "addToListFromClicks": { "type": ["null", "string"] }, + "videoMidpointViews": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "campaignStatus": { "type": ["null", "string"] }, + "brandedSearches": { "type": ["null", "string"] }, + "eCPAddToCart": { "type": ["null", "string"] }, + "qualifiedBorrowsFromClicks": { "type": ["null", "string"] }, + "detailPageViews": { "type": ["null", "string"] }, + "sales": { "type": ["null", "string"] }, + "viewabilityRate": { "type": ["null", "string"] }, + "newToBrandECPDetailPageView": { "type": ["null", "string"] }, + "purchases": { "type": ["null", "string"] }, + "newToBrandUnitsSold": { "type": ["null", "string"] }, + "campaignName": { "type": ["null", "string"] }, + "clicks": { "type": ["null", "string"] }, + "addToList": { "type": ["null", "string"] }, + "campaignBudgetAmount": { "type": ["null", "string"] }, + "royaltyQualifiedBorrowsFromViews": { "type": ["null", "string"] }, + "unitsSoldClicks": { "type": ["null", "string"] }, + "brandedSearchesClicks": { "type": ["null", "string"] }, + "addToCartRate": { "type": ["null", "string"] }, + "newToBrandDetailPageViewRate": { "type": ["null", "string"] }, + "endDate": { "type": ["null", "string"] }, + "targetingText": { "type": ["null", "string"] }, + "unitsSoldBrandHalo": { "type": ["null", "string"] }, + "videoFirstQuartileViews": { "type": ["null", "string"] }, + "adId": { "type": ["null", "string"] }, + "costType": { "type": ["null", "string"] }, + "newToBrandUnitsSoldClicks": { "type": ["null", "string"] }, + "brandedSearchesViews": { "type": ["null", "string"] }, + "leads": { "type": ["null", "string"] }, + "startDate": { "type": ["null", "string"] }, + "linkOuts": { "type": ["null", "string"] }, + "qualifiedBorrowsFromViews": { "type": ["null", "string"] }, + "addToListFromViews": { "type": ["null", "string"] }, + "addToCart": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "newToBrandSalesClicks": { "type": ["null", "string"] }, + "detailPageViewsClicks": { "type": ["null", "string"] }, + "promotedSku": { "type": ["null", "string"] }, + "newToBrandPurchasesClicks": { "type": ["null", "string"] }, + "salesBrandHaloClicks": { "type": ["null", "string"] }, + "salesPromotedClicks": { "type": ["null", "string"] }, + "newToBrandDetailPageViews": { "type": ["null", "string"] }, + "conversionsBrandHaloClicks": { "type": ["null", "string"] }, + "addToCartClicks": { "type": ["null", "string"] }, + "unitsSoldBrandHaloClicks": { "type": ["null", "string"] }, + "eCPBrandSearch": { "type": ["null", "string"] }, + "conversionsBrandHalo": { "type": ["null", "string"] }, + "promotedAsin": { "type": ["null", "string"] }, + "addToCartViews": { "type": ["null", "string"] }, + "qualifiedBorrows": { "type": ["null", "string"] }, + "impressionsViews": { "type": ["null", "string"] }, + "leadFormOpens": { "type": ["null", "string"] }, + "newToBrandSales": { "type": ["null", "string"] }, + "newToBrandDetailPageViewViews": { "type": ["null", "string"] }, + "purchasesPromotedClicks": { "type": ["null", "string"] }, + "salesClicks": { "type": ["null", "string"] }, + "salesBrandHalo": { "type": ["null", "string"] }, + "targetingId": { "type": ["null", "string"] }, + "purchasesClicks": { "type": ["null", "string"] }, + "impressions": { "type": ["null", "string"] }, + "cost": { "type": ["null", "string"] }, + "royaltyQualifiedBorrows": { "type": ["null", "string"] }, + "targetingExpression": { "type": ["null", "string"] }, + "brandedSearchRate": { "type": ["null", "string"] }, + "impressionsFrequencyAverage": { "type": ["null", "string"] }, + "bidOptimization": { "type": ["null", "string"] }, + "videoThirdQuartileViews": { "type": ["null", "string"] }, + "cumulativeReach": { "type": ["null", "string"] }, + "asinBrandHalo": { "type": ["null", "string"] }, + "adGroupName": { "type": ["null", "string"] }, + "campaignBudgetCurrencyCode": { "type": ["null", "string"] }, + "viewClickThroughRate": { "type": ["null", "string"] } + } + } + }, + "title": "sponsored_display_report_stream", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_targetings.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_targetings.json new file mode 100644 index 000000000000..86a1ddf5f5a6 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_display_targetings.json @@ -0,0 +1,21 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "targetId": { "type": ["null", "number"] }, + "adGroupId": { "type": ["null", "number"] }, + "state": { "type": ["null", "string"] }, + "expressionType": { "type": ["null", "string"] }, + "bid": { "type": ["null", "number"] }, + "campaignId": { "type": ["null", "number"] }, + "expression": { + "type": "array", + "items": { "type": ["null", "object"], "additionalProperties": true } + }, + "resolvedExpression": { + "type": "array", + "items": { "type": ["null", "object"], "additionalProperties": true } + } + }, + "title": "sponsored_display_targetings", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_group_bid_recommendations.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_group_bid_recommendations.json new file mode 100644 index 000000000000..cb895d6c08e2 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_group_bid_recommendations.json @@ -0,0 +1,29 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "adGroupId": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "theme": { "type": ["null", "string"] }, + "bidRecommendationsForTargetingExpressions": { + "type": "array", + "items": { + "type": ["object", "null"], + "properties": { + "bidValues": { + "type": "array", + "items": { + "type": ["null", "object"], + "additionalProperties": true + } + }, + "targetingExpression": { + "type": ["null", "object"], + "additionalProperties": true + } + } + } + } + }, + "title": "sponsored_product_ad_group_bid_recommendations", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_group_suggested_keywords.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_group_suggested_keywords.json new file mode 100644 index 000000000000..6a5afdb755de --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_group_suggested_keywords.json @@ -0,0 +1,18 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "adGroupId": { "type": ["null", "integer"] }, + "suggestedKeywords": { + "type": ["null", "array"], + "items": { + "type": ["object", "null"], + "properties": { + "keywordText": { "type": ["null", "string"] }, + "matchType": { "type": ["null", "string"] } + } + } + } + }, + "title": "sponsored_product_ad_group_suggested_keywords", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_groups.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_groups.json new file mode 100644 index 000000000000..902592a5567f --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ad_groups.json @@ -0,0 +1,13 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "adGroupId": { "type": ["null", "string"] }, + "name": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "defaultBid": { "type": ["null", "number"] }, + "state": { "type": ["null", "string"] }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_product_ad_groups", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ads.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ads.json new file mode 100644 index 000000000000..8719813651c2 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_ads.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "adId": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "customText": { "type": ["null", "string"] }, + "asin": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "sku": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_product_ads", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_campaign_negative_keywords.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_campaign_negative_keywords.json new file mode 100644 index 000000000000..f8a439d82ec7 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_campaign_negative_keywords.json @@ -0,0 +1,13 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "keywordId": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "number"] }, + "state": { "type": ["null", "string"] }, + "keywordText": { "type": ["null", "string"] }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_product_campaign_negative_keywords", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_campaigns.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_campaigns.json new file mode 100644 index 000000000000..a5864bfb9c11 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_campaigns.json @@ -0,0 +1,18 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "portfolioId": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "name": { "type": ["null", "string"] }, + "tags": { "type": ["null", "object"], "additionalProperties": true }, + "targetingType": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "dynamicBidding": { "type": ["null", "object"] }, + "startDate": { "type": ["null", "string"] }, + "endDate": { "type": ["null", "string"] }, + "budget": { "type": ["null", "object"] }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_product_campaigns", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_keywords.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_keywords.json new file mode 100644 index 000000000000..9c1e8b755145 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_keywords.json @@ -0,0 +1,14 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "keywordId": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "keywordText": { "type": ["null", "string"] }, + "nativeLanguageLocale": { "type": ["null", "string"] }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_product_keywords", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_negative_keywords.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_negative_keywords.json new file mode 100644 index 000000000000..c1b847949b24 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_negative_keywords.json @@ -0,0 +1,14 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "keywordId": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "keywordText": { "type": ["null", "string"] }, + "nativeLanguageLocale": { "type": ["null", "string"] }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_product_negative_keywords", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_targetings.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_targetings.json new file mode 100644 index 000000000000..bb206b1fba35 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_product_targetings.json @@ -0,0 +1,22 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "expression": { + "type": ["null", "array"], + "items": { "type": ["null", "object"], "additionalProperties": true } + }, + "targetId": { "type": ["null", "string"] }, + "resolvedExpression": { + "type": "array", + "items": { "type": ["null", "object"], "additionalProperties": true } + }, + "campaignId": { "type": ["null", "string"] }, + "expressionType": { "type": ["null", "string"] }, + "state": { "type": ["null", "string"] }, + "bid": { "type": ["null", "number"] }, + "adGroupId": { "type": ["null", "string"] }, + "extendedData": { "type": ["null", "object"] } + }, + "title": "sponsored_product_targetings", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_products.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_products.py deleted file mode 100644 index 6ef9a7b5ff1d..000000000000 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_products.py +++ /dev/null @@ -1,114 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from decimal import Decimal -from typing import Any, Dict, List, Optional - -from .common import CatalogModel, KeywordsBase - - -class Adjustments(CatalogModel): - predicate: str - percentage: Decimal - - -class Bidding(CatalogModel): - strategy: str - adjustments: List[Adjustments] - - -class ProductCampaign(CatalogModel): - portfolioId: str - campaignId: str - name: str - tags: Dict[str, str] - targetingType: str - state: str - dynamicBidding: Dict[str, Any] - startDate: str - endDate: str - budget: Dict[str, Any] - extendedData: Optional[Dict[str, Any]] - - -class ProductAdGroups(CatalogModel): - adGroupId: str - name: str - campaignId: str - defaultBid: Decimal - state: str - extendedData: dict - - -class BidRecommendations(CatalogModel): - bidValues: List[Dict[str, str]] - targetingExpression: Dict[str, str] - - -class ProductAdGroupBidRecommendations(CatalogModel): - adGroupId: str - campaignId: str - theme: str - bidRecommendationsForTargetingExpressions: List[BidRecommendations] - - -class SuggestedKeyword(CatalogModel): - keywordText: str - matchType: str - - -class ProductAdGroupSuggestedKeywords(CatalogModel): - adGroupId: int - suggestedKeywords: List[SuggestedKeyword] = None - - -class ProductAd(CatalogModel): - adId: str - campaignId: str - customText: str - asin: str - state: str - sku: str - adGroupId: str - extendedData: Optional[Dict[str, Any]] - - -class ProductTargeting(CatalogModel): - expression: List[Dict[str, str]] - targetId: str - resolvedExpression: List[Dict[str, str]] - campaignId: str - expressionType: str - state: str - bid: float - adGroupId: str - extendedData: Optional[Dict[str, Any]] - - -class SponsoredProductCampaignNegativeKeywordsModel(KeywordsBase): - keywordId: str - campaignId: str - state: str - keywordText: str - extendedData: Optional[Dict[str, Any]] - - -class SponsoredProductKeywordsModel(KeywordsBase): - keywordId: str - nativeLanguageLocale: str - campaignId: str - state: str - adGroupId: str - keywordText: str - extendedData: Optional[Dict[str, Any]] - - -class SponsoredProductNegativeKeywordsModel(KeywordsBase): - keywordId: str - nativeLanguageLocale: str - campaignId: str - state: str - adGroupId: str - keywordText: str - extendedData: Optional[Dict[str, Any]] diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_products_report_stream.json b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_products_report_stream.json new file mode 100644 index 000000000000..0c2a7ce9c560 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/schemas/sponsored_products_report_stream.json @@ -0,0 +1,70 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "profileId": { "type": ["null", "integer"] }, + "recordType": { "type": ["null", "string"] }, + "reportDate": { "type": ["null", "string"] }, + "recordId": { "type": ["null", "string"] }, + "metric": { + "type": ["object", "null"], + "properties": { + "advertisedAsin": { "type": ["null", "string"] }, + "unitsSoldSameSku1d": { "type": ["null", "string"] }, + "unitsSoldSameSku30d": { "type": ["null", "string"] }, + "campaignApplicableBudgetRuleId": { "type": ["null", "string"] }, + "matchType": { "type": ["null", "string"] }, + "purchasesSameSku1d": { "type": ["null", "string"] }, + "unitsSoldClicks7d": { "type": ["null", "string"] }, + "adGroupId": { "type": ["null", "string"] }, + "campaignStatus": { "type": ["null", "string"] }, + "advertisedSku": { "type": ["null", "string"] }, + "campaignRuleBasedBudgetAmount": { "type": ["null", "string"] }, + "unitsSoldSameSku7d": { "type": ["null", "string"] }, + "keywordId": { "type": ["null", "string"] }, + "campaignApplicableBudgetRuleName": { "type": ["null", "string"] }, + "keyword": { "type": ["null", "string"] }, + "sales30d": { "type": ["null", "string"] }, + "campaignName": { "type": ["null", "string"] }, + "clicks": { "type": ["null", "string"] }, + "purchasesSameSku7d": { "type": ["null", "string"] }, + "salesOtherSku14d": { "type": ["null", "string"] }, + "attributedSalesSameSku30d": { "type": ["null", "string"] }, + "salesOtherSku30d": { "type": ["null", "string"] }, + "campaignBudgetAmount": { "type": ["null", "string"] }, + "purchasesSameSku14d": { "type": ["null", "string"] }, + "sales14d": { "type": ["null", "string"] }, + "purchasedAsin": { "type": ["null", "string"] }, + "sales7d": { "type": ["null", "string"] }, + "attributedSalesSameSku14d": { "type": ["null", "string"] }, + "unitsSoldOtherSku30d": { "type": ["null", "string"] }, + "targeting": { "type": ["null", "string"] }, + "salesOtherSku7d": { "type": ["null", "string"] }, + "attributedSalesSameSku7d": { "type": ["null", "string"] }, + "salesOtherSku1d": { "type": ["null", "string"] }, + "purchases14d": { "type": ["null", "string"] }, + "purchases1d": { "type": ["null", "string"] }, + "campaignId": { "type": ["null", "string"] }, + "unitsSoldClicks30d": { "type": ["null", "string"] }, + "unitsSoldClicks14d": { "type": ["null", "string"] }, + "sales1d": { "type": ["null", "string"] }, + "unitsSoldOtherSku1d": { "type": ["null", "string"] }, + "purchases7d": { "type": ["null", "string"] }, + "keywordType": { "type": ["null", "string"] }, + "unitsSoldClicks1d": { "type": ["null", "string"] }, + "purchases30d": { "type": ["null", "string"] }, + "purchasesSameSku30d": { "type": ["null", "string"] }, + "unitsSoldOtherSku7d": { "type": ["null", "string"] }, + "impressions": { "type": ["null", "string"] }, + "attributedSalesSameSku1d": { "type": ["null", "string"] }, + "cost": { "type": ["null", "string"] }, + "unitsSoldOtherSku14d": { "type": ["null", "string"] }, + "unitsSoldSameSku14d": { "type": ["null", "string"] }, + "adId": { "type": ["null", "string"] }, + "adGroupName": { "type": ["null", "string"] }, + "campaignBudgetCurrencyCode": { "type": ["null", "string"] } + } + } + }, + "title": "sponsored_products_report_stream", + "type": ["null", "object"] +} diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/source.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/source.py index cca9dfcd088e..0099d0cf9e51 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/source.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/source.py @@ -7,11 +7,12 @@ from typing import Any, List, Mapping, Optional, Tuple import pendulum +from airbyte_cdk.models import AdvancedAuth, AuthFlowType, ConnectorSpecification, DestinationSyncMode, OAuthConfigSpecification from airbyte_cdk.sources import AbstractSource from airbyte_cdk.sources.streams import Stream from airbyte_cdk.sources.streams.http.requests_native_auth import Oauth2Authenticator -from .schemas import Profile +from .spec import SourceAmazonAdsSpec from .streams import ( AttributionReportPerformanceAdgroup, AttributionReportPerformanceCampaign, @@ -132,7 +133,11 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: AttributionReportProducts, ] portfolios_stream = Portfolios(**stream_args) - return [profiles_stream, portfolios_stream, *[stream_class(**stream_args) for stream_class in non_profile_stream_classes]] + return [ + profiles_stream, + portfolios_stream, + *[stream_class(**stream_args) for stream_class in non_profile_stream_classes], + ] @staticmethod def _make_authenticator(config: Mapping[str, Any]): @@ -144,13 +149,51 @@ def _make_authenticator(config: Mapping[str, Any]): ) @staticmethod - def _choose_profiles(config: Mapping[str, Any], available_profiles: List[Profile]): + def _choose_profiles(config: Mapping[str, Any], available_profiles: List[dict[str, Any]]): requested_profiles = config.get("profiles", []) requested_marketplace_ids = config.get("marketplace_ids", []) if requested_profiles or requested_marketplace_ids: return [ profile for profile in available_profiles - if profile.profileId in requested_profiles or profile.accountInfo.marketplaceStringId in requested_marketplace_ids + if profile["profileId"] in requested_profiles or profile["accountInfo"]["marketplaceStringId"] in requested_marketplace_ids ] return available_profiles + + def spec(self, logger: logging.Logger) -> ConnectorSpecification: + + return ConnectorSpecification( + documentationUrl="https://docs.airbyte.com/integrations/sources/amazon-ads", + connectionSpecification=SourceAmazonAdsSpec.schema(), + supportsDBT=False, + advanced_auth=AdvancedAuth( + auth_flow_type=AuthFlowType.oauth2_0, + predicate_key=["auth_type"], + predicate_value="oauth2.0", + oauth_config_specification=OAuthConfigSpecification( + oauth_user_input_from_connector_config_specification={ + "type": "object", + "additionalProperties": False, + "properties": {"region": {"type": "string", "path_in_connector_config": ["region"]}}, + }, + complete_oauth_output_specification={ + "type": "object", + "additionalProperties": True, + "properties": {"refresh_token": {"type": "string", "path_in_connector_config": ["refresh_token"]}}, + }, + complete_oauth_server_input_specification={ + "type": "object", + "additionalProperties": True, + "properties": {"client_id": {"type": "string"}, "client_secret": {"type": "string"}}, + }, + complete_oauth_server_output_specification={ + "type": "object", + "additionalProperties": True, + "properties": { + "client_id": {"type": "string", "path_in_connector_config": ["client_id"]}, + "client_secret": {"type": "string", "path_in_connector_config": ["client_secret"]}, + }, + }, + ), + ), + ) diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/spec.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/spec.py new file mode 100644 index 000000000000..3156ac42e5a4 --- /dev/null +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/spec.py @@ -0,0 +1,103 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. + + +from datetime import date +from enum import Enum +from typing import List, Optional + +from airbyte_cdk.sources.config import BaseConfig +from pydantic.v1 import Field + + +class StateFilterEnum(str, Enum): + enabled = "enabled" + paused = "paused" + archived = "archived" + + +class ReportRecordTypeEnum(str, Enum): + adGroups = "adGroups" + asins = "asins" + asins_keywords = "asins_keywords" + asins_targets = "asins_targets" + campaigns = "campaigns" + keywords = "keywords" + productAds = "productAds" + targets = "targets" + + +class SourceAmazonAdsSpec(BaseConfig): + class Config: + title = "Source Amazon Ads" + use_enum_values = True + + auth_type: str = Field("oauth2.0", const=True, title="Auth Type", order=0) + client_id: str = Field( + ..., + description='The client ID of your Amazon Ads developer application. See the docs for more information.', + title="Client ID", + airbyte_secret=True, + order=1, + ) + client_secret: str = Field( + ..., + description='The client secret of your Amazon Ads developer application. See the docs for more information.', + title="Client Secret", + airbyte_secret=True, + order=2, + ) + refresh_token: str = Field( + ..., + description='Amazon Ads refresh token. See the docs for more information on how to obtain this token.', + title="Refresh Token", + airbyte_secret=True, + order=3, + ) + region: Optional[str] = Field( + "NA", + description='Region to pull data from (EU/NA/FE). See docs for more details.', + title="Region", + enum=["NA", "EU", "FE"], + order=4, + ) + start_date: Optional[date] = Field( + None, + description="The Start date for collecting reports, should not be more than 60 days in the past. In YYYY-MM-DD format", + examples=["2022-10-10", "2022-10-22"], + pattern="^[0-9]{4}-[0-9]{2}-[0-9]{2}$", + title="Start Date", + order=5, + ) + profiles: Optional[List[int]] = Field( + None, + description='Profile IDs you want to fetch data for. The Amazon Ads source connector supports only profiles with seller and vendor type, profiles with agency type will be ignored. See docs for more details. Note: If Marketplace IDs are also selected, profiles will be selected if they match the Profile ID OR the Marketplace ID.', + title="Profile IDs", + order=6, + ) + marketplace_ids: Optional[List[str]] = Field( + None, + description="Marketplace IDs you want to fetch data for. Note: If Profile IDs are also selected, profiles will be selected if they match the Profile ID OR the Marketplace ID.", + title="Marketplace IDs", + order=7, + ) + state_filter: Optional[List[StateFilterEnum]] = Field( + default=[], + description="Reflects the state of the Display, Product, and Brand Campaign streams as enabled, paused, or archived. If you do not populate this field, it will be ignored completely.", + title="State Filter", + unique_items=True, + order=8, + ) + look_back_window: Optional[int] = Field( + 3, + description="The amount of days to go back in time to get the updated data from Amazon Ads", + examples=[3, 10], + title="Look Back Window", + order=9, + ) + report_record_types: Optional[List[ReportRecordTypeEnum]] = Field( + [], + description='Optional configuration which accepts an array of string of record types. Leave blank for default behaviour to pull all report types. Use this config option only if you want to pull specific report type(s). See docs for more details', + title="Report Record Types", + unique_items=True, + order=10, + ) diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/attribution_report.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/attribution_report.py index 4c683846e6d2..aa9a0cb586c3 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/attribution_report.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/attribution_report.py @@ -8,7 +8,6 @@ import requests from airbyte_cdk.models import SyncMode from requests.exceptions import HTTPError -from source_amazon_ads.schemas import AttributionReportModel from source_amazon_ads.streams.common import AmazonAdsStream BRAND_REFERRAL_BONUS = "brb_bonus_amount" @@ -54,7 +53,6 @@ class AttributionReport(AmazonAdsStream): https://advertising.amazon.com/API/docs/en-us/amazon-attribution-prod-3p/#/ """ - model = AttributionReportModel primary_key = None data_field = "reports" page_size = 300 @@ -95,13 +93,13 @@ def stream_slices( self, sync_mode: SyncMode, cursor_field: List[str] = None, stream_state: Mapping[str, Any] = None ) -> Iterable[Optional[Mapping[str, Any]]]: for profile in self._profiles: - start_date = pendulum.now(tz=profile.timezone).subtract(days=1).date() - end_date = pendulum.now(tz=profile.timezone).date() + start_date = pendulum.now(tz=profile["timezone"]).subtract(days=1).date() + end_date = pendulum.now(tz=profile["timezone"]).date() if self._start_date: start_date = max(self._start_date, end_date.subtract(days=self.REPORTING_PERIOD)) yield { - "profileId": profile.profileId, + "profileId": profile["profileId"], "startDate": start_date.format(self.REPORT_DATE_FORMAT), "endDate": end_date.format(self.REPORT_DATE_FORMAT), } diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/common.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/common.py index 824b739977b5..4618a0d2fa2b 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/common.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/common.py @@ -1,19 +1,18 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # - -from abc import ABC, abstractmethod +import logging +from abc import ABC from http import HTTPStatus -from typing import Any, Iterable, List, Mapping, MutableMapping, Optional +from typing import Any, Iterable, List, Mapping, MutableMapping, Optional, Union import requests +from airbyte_cdk.sources.declarative.models import FailureType from airbyte_cdk.sources.streams.core import Stream from airbyte_cdk.sources.streams.http import HttpStream -from airbyte_cdk.sources.utils.schema_helpers import expand_refs -from pydantic import BaseModel, ValidationError +from airbyte_cdk.sources.streams.http.error_handlers import ErrorHandler, ErrorResolution, HttpStatusErrorHandler, ResponseAction +from pydantic.v1 import BaseModel, ValidationError from source_amazon_ads.constants import URL_MAPPING -from source_amazon_ads.schemas import CatalogModel -from source_amazon_ads.schemas.profile import Profile """ This class hierarchy may seem overcomplicated so here is a visualization of @@ -64,6 +63,8 @@ class to provide explanation why it had been done in this way. """ +LOGGER = logging.getLogger("airbyte") + class ErrorResponse(BaseModel): code: str @@ -71,28 +72,41 @@ class ErrorResponse(BaseModel): requestId: Optional[str] +class AmazonAdsErrorHandler(HttpStatusErrorHandler): + def interpret_response(self, response_or_exception: Optional[Union[requests.Response, Exception]] = None) -> ErrorResolution: + + if response_or_exception.status_code == HTTPStatus.OK: + return ErrorResolution(ResponseAction.SUCCESS) + + try: + resp = ErrorResponse.parse_raw(response_or_exception.text) + except ValidationError: + return ErrorResolution( + response_action=ResponseAction.FAIL, + failure_type=FailureType.system_error, + error_message=f"Response status code: {response_or_exception.status_code}. Unexpected error. {response_or_exception.text=}", + ) + + LOGGER.warning( + f"Unexpected error {resp.code} when processing request {response_or_exception.request.url} for " + f"{response_or_exception.request.headers['Amazon-Advertising-API-Scope']} profile: {resp.details}" + ) + + return ErrorResolution(ResponseAction.SUCCESS) + + class BasicAmazonAdsStream(Stream, ABC): """ Base class for all Amazon Ads streams. """ - def __init__(self, config: Mapping[str, Any], profiles: List[Profile] = None): + is_resumable = False + + def __init__(self, config: Mapping[str, Any], profiles: List[dict[str, Any]] = None): self._profiles = profiles or [] self._client_id = config["client_id"] self._url = URL_MAPPING[config["region"]] - @property - @abstractmethod - def model(self) -> CatalogModel: - """ - Pydantic model to represent json schema - """ - - def get_json_schema(self): - schema = self.model.schema() - expand_refs(schema) - return schema - # Basic full refresh stream class AmazonAdsStream(HttpStream, BasicAmazonAdsStream): @@ -102,7 +116,7 @@ class AmazonAdsStream(HttpStream, BasicAmazonAdsStream): data_field = "" - def __init__(self, config: Mapping[str, Any], *args, profiles: List[Profile] = None, **kwargs): + def __init__(self, config: Mapping[str, Any], *args, profiles: List[dict[str, Any]] = None, **kwargs): # Each AmazonAdsStream instance are dependant on list of profiles. BasicAmazonAdsStream.__init__(self, config, profiles=profiles) HttpStream.__init__(self, *args, **kwargs) @@ -111,10 +125,6 @@ def __init__(self, config: Mapping[str, Any], *args, profiles: List[Profile] = N def url_base(self): return self._url - @property - def raise_on_http_errors(self): - return False - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: return None @@ -164,6 +174,9 @@ def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapp f"{response.request.headers['Amazon-Advertising-API-Scope']} profile: {resp.details}" ) + def get_error_handler(self) -> ErrorHandler: + return AmazonAdsErrorHandler(logger=LOGGER) + class SubProfilesStream(AmazonAdsStream): """ @@ -205,7 +218,7 @@ def read_records(self, *args, **kwargs) -> Iterable[Mapping[str, Any]]: Iterate through self._profiles list and send read all records for each profile. """ for profile in self._profiles: - self._current_profile_id = profile.profileId + self._current_profile_id = profile["profileId"] yield from super().read_records(*args, **kwargs) def request_headers(self, *args, **kwargs) -> MutableMapping[str, Any]: diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/portfolios.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/portfolios.py index 1d253fda57e6..5c698f7020ca 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/portfolios.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/portfolios.py @@ -4,7 +4,6 @@ from typing import Any, Iterable, Mapping, MutableMapping -from source_amazon_ads.schemas import Portfolio from source_amazon_ads.streams.common import AmazonAdsStream @@ -15,7 +14,6 @@ class Portfolios(AmazonAdsStream): """ primary_key = "portfolioId" - model = Portfolio def path(self, **kwargs) -> str: return "v2/portfolios/extended" @@ -25,7 +23,7 @@ def read_records(self, *args, **kwargs) -> Iterable[Mapping[str, Any]]: Iterate through self._profiles list and send read all records for each profile. """ for profile in self._profiles: - self._current_profile_id = profile.profileId + self._current_profile_id = profile["profileId"] yield from super().read_records(*args, **kwargs) def request_headers(self, *args, **kwargs) -> MutableMapping[str, Any]: diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/profiles.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/profiles.py index c6491c052acf..c0af8f2bd62e 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/profiles.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/profiles.py @@ -6,7 +6,6 @@ import requests from airbyte_cdk.models import SyncMode -from source_amazon_ads.schemas import Profile from source_amazon_ads.streams.common import AmazonAdsStream @@ -17,32 +16,30 @@ class Profiles(AmazonAdsStream): """ primary_key = "profileId" - model = Profile def path(self, **kwargs) -> str: return "v2/profiles?profileTypeFilter=seller,vendor" def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: for record in super().parse_response(response, **kwargs): - profile_id_obj = self.model.parse_obj(record) # Populate self._profiles list with profiles objects to not make # unnecessary API calls. - self._profiles.append(profile_id_obj) + self._profiles.append(record) yield record def read_records(self, *args, **kwargs) -> Iterable[Mapping[str, Any]]: if self._profiles: # In case if we have _profiles populated we can use it instead of making API call. - yield from [profile.dict(exclude_unset=True) for profile in self._profiles] + yield from [profile for profile in self._profiles] else: # Make API call by the means of basic HttpStream class. yield from super().read_records(*args, **kwargs) - def get_all_profiles(self) -> List[Profile]: + def get_all_profiles(self) -> List[dict[str, Any]]: """ Fetch all profiles and return it as list. We need this to set dependecies for other streams since all of the Amazon Ads API calls require profile id to be passed. :return List of profile object """ - return [self.model.parse_obj(profile) for profile in self.read_records(SyncMode.full_refresh)] + return [profile for profile in self.read_records(SyncMode.full_refresh)] diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_report.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_report.py index 2a57ef1c3aba..8b28b64b46b8 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_report.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/brands_report.py @@ -5,7 +5,6 @@ from http import HTTPStatus from .products_report import SponsoredProductsReportStream -from .report_streams import ReportStream METRICS_MAP_V3 = { "purchasedAsin": [ diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/display_report.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/display_report.py index f81f4978fd74..fbe3742bc707 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/display_report.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/display_report.py @@ -7,8 +7,7 @@ import requests from airbyte_cdk.sources.streams.http.requests_native_auth import Oauth2Authenticator -from source_amazon_ads.schemas import Profile -from source_amazon_ads.streams.report_streams.report_stream_models import RecordType, ReportInfo +from source_amazon_ads.streams.report_streams.report_stream_models import ReportInfo from source_amazon_ads.streams.report_streams.report_streams import ReportStream METRICS_MAP_V3 = { @@ -323,7 +322,7 @@ class SponsoredDisplayReportStream(ReportStream): metrics_map = METRICS_MAP_V3 metrics_type_to_id_map = METRICS_TYPE_TO_ID_MAP - def __init__(self, config: Mapping[str, Any], profiles: List[Profile], authenticator: Oauth2Authenticator): + def __init__(self, config: Mapping[str, Any], profiles: List[dict[str, Any]], authenticator: Oauth2Authenticator): super().__init__(config, profiles, authenticator) # using session without auth as API returns 400 bad request if Authorization header presents in request # X-Amz-Algorithm and X-Amz-Signature query params already present in the url, that is enough to make proper request diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/products_report.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/products_report.py index 6d4a8b937525..e616d58573a9 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/products_report.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/products_report.py @@ -8,7 +8,6 @@ import requests from airbyte_cdk.sources.streams.http.requests_native_auth import Oauth2Authenticator -from source_amazon_ads.schemas import Profile from .report_streams import ReportInfo, ReportStream @@ -270,7 +269,7 @@ class SponsoredProductsReportStream(ReportStream): metrics_map = METRICS_MAP metrics_type_to_id_map = METRICS_TYPE_TO_ID_MAP - def __init__(self, config: Mapping[str, Any], profiles: List[Profile], authenticator: Oauth2Authenticator): + def __init__(self, config: Mapping[str, Any], profiles: List[dict[str, Any]], authenticator: Oauth2Authenticator): super().__init__(config, profiles, authenticator) # using session without auth as API returns 400 bad request if Authorization header presents in request # X-Amz-Algorithm and X-Amz-Signature query params already present in the url, that is enough to make proper request diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_stream_models.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_stream_models.py index d79bacf08fd5..6b3e3a4b8113 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_stream_models.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_stream_models.py @@ -4,7 +4,7 @@ from enum import Enum from typing import List, Optional -from pydantic import BaseModel +from pydantic.v1 import BaseModel class RecordType(str, Enum): diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py index a2325ca38aba..f92bd7978223 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py @@ -19,7 +19,6 @@ from airbyte_cdk.sources.streams.availability_strategy import AvailabilityStrategy from airbyte_cdk.sources.streams.http.requests_native_auth import Oauth2Authenticator from pendulum import Date -from source_amazon_ads.schemas import CatalogModel, MetricsReport, Profile from source_amazon_ads.streams.common import BasicAmazonAdsStream from source_amazon_ads.utils import get_typed_env, iterate_one_by_one @@ -80,13 +79,12 @@ class ReportStream(BasicAmazonAdsStream, ABC): (406, re.compile(r"^Report date is too far in the past\.")), ] - def __init__(self, config: Mapping[str, Any], profiles: List[Profile], authenticator: Oauth2Authenticator): + def __init__(self, config: Mapping[str, Any], profiles: List[dict[str, Any]], authenticator: Oauth2Authenticator): super().__init__(config, profiles) self._state = {} self._session = requests.Session() self._session.auth = authenticator self._report_download_session = self._session - self._model = self._generate_model() self._start_date: Optional[Date] = config.get("start_date") self._look_back_window: int = config["look_back_window"] # Timeout duration in minutes for Reports. Default is 180 minutes. @@ -95,10 +93,6 @@ def __init__(self, config: Mapping[str, Any], profiles: List[Profile], authentic self.report_generation_maximum_retries: int = get_typed_env("REPORT_GENERATION_MAX_RETRIES", 5) self._report_record_types = config.get("report_record_types") - @property - def model(self) -> CatalogModel: - return self._model - @property def availability_strategy(self) -> Optional["AvailabilityStrategy"]: return None @@ -133,13 +127,13 @@ def read_records( for report_info in report_info_list: for metric_object in report_info.metric_objects: - yield self._model( - profileId=report_info.profile_id, - recordType=report_info.record_type, - reportDate=report_date, - recordId=self.get_record_id(metric_object, report_info.record_type), - metric=metric_object, - ).dict() + yield { + "profileId": report_info.profile_id, + "recordType": report_info.record_type, + "reportDate": report_date, + "recordId": self.get_record_id(metric_object, report_info.record_type), + "metric": metric_object, + } def get_record_id(self, metric_object: dict, record_type: str) -> str: return metric_object.get(self.metrics_type_to_id_map[record_type]) or str(uuid.uuid4()) @@ -161,7 +155,7 @@ def wrapped(self, *args, **kwargs): return wrapped @backoff_max_tries - def _init_and_try_read_records(self, profile: Profile, report_date): + def _init_and_try_read_records(self, profile: dict[str, Any], report_date: str): report_info_list = self._init_reports(profile, report_date) self.logger.info(f"Waiting for {len(report_info_list)} report(s) to be generated") self._try_read_records(report_info_list) @@ -192,17 +186,6 @@ def _try_read_records(self, report_info_list): def _incomplete_report_info(self, report_info_list): return [r for r in report_info_list if r.status != Status.SUCCESS and r.status != Status.COMPLETED] - def _generate_model(self): - """ - Generate pydantic model based on combined list of all the metrics - attributes for particular stream. This model later will be used for - discover schema generation. - """ - metrics = set() - for metric_list in self.metrics_map.values(): - metrics.update(set(metric_list)) - return MetricsReport.generate_metric_model(metrics) - def _get_auth_headers(self, profile_id: int): return ( { @@ -277,9 +260,9 @@ def get_date_range(self, start_date: Date, timezone: str) -> Iterable[str]: yield start_date.format(self.REPORT_DATE_FORMAT) start_date = start_date.add(days=1) - def get_start_date(self, profile: Profile, stream_state: Mapping[str, Any]) -> Date: - today = pendulum.today(tz=profile.timezone).date() - start_date = stream_state.get(str(profile.profileId), {}).get(self.cursor_field) + def get_start_date(self, profile: dict[str, Any], stream_state: Mapping[str, Any]) -> Date: + today = pendulum.today(tz=profile["timezone"]).date() + start_date = stream_state.get(str(profile["profileId"]), {}).get(self.cursor_field) if start_date: start_date = pendulum.from_format(start_date, self.REPORT_DATE_FORMAT).date() # Taking date from state if it's not older than 60 days @@ -288,9 +271,9 @@ def get_start_date(self, profile: Profile, stream_state: Mapping[str, Any]) -> D return max(self._start_date, today.subtract(days=self.REPORTING_PERIOD)) return today - def stream_profile_slices(self, profile: Profile, stream_state: Mapping[str, Any]) -> Iterable[Mapping[str, Any]]: + def stream_profile_slices(self, profile: dict[str, Any], stream_state: Mapping[str, Any]) -> Iterable[Mapping[str, Any]]: start_date = self.get_start_date(profile, stream_state) - for report_date in self.get_date_range(start_date, profile.timezone): + for report_date in self.get_date_range(start_date, profile["timezone"]): yield {"profile": profile, self.cursor_field: report_date} def stream_slices( @@ -319,16 +302,16 @@ def state(self, value): def get_updated_state(self, current_stream_state: Dict[str, Any], latest_data: Mapping[str, Any]) -> Mapping[str, Any]: return self._state - def _update_state(self, profile: Profile, report_date: str): + def _update_state(self, profile: dict[str, Any], report_date: str): report_date = pendulum.from_format(report_date, self.REPORT_DATE_FORMAT).date() - look_back_date = pendulum.today(tz=profile.timezone).date().subtract(days=self._look_back_window - 1) + look_back_date = pendulum.today(tz=profile["timezone"]).date().subtract(days=self._look_back_window - 1) start_date = self.get_start_date(profile, self._state) updated_state = max(min(report_date, look_back_date), start_date).format(self.REPORT_DATE_FORMAT) - stream_state_value = self._state.get(str(profile.profileId), {}).get(self.cursor_field) + stream_state_value = self._state.get(str(profile["profileId"]), {}).get(self.cursor_field) if stream_state_value: updated_state = max(updated_state, stream_state_value) - self._state.setdefault(str(profile.profileId), {})[self.cursor_field] = updated_state + self._state.setdefault(str(profile["profileId"]), {})[self.cursor_field] = updated_state @abstractmethod def _get_init_report_body(self, report_date: str, record_type: str, profile) -> Dict[str, Any]: @@ -341,7 +324,7 @@ def _get_init_report_body(self, report_date: str, record_type: str, profile) -> ReportInitFailure, max_tries=5, ) - def _init_reports(self, profile: Profile, report_date: str) -> List[ReportInfo]: + def _init_reports(self, profile: dict[str, Any], report_date: str) -> List[ReportInfo]: """ Send report generation requests for all profiles and for all record types for specific day. :report_date - date for generating metric report. @@ -362,15 +345,15 @@ def _init_reports(self, profile: Profile, report_date: str) -> List[ReportInfo]: # different metric list for each record. request_record_type = record_type.split("_")[0] self.logger.info( - f"Initiating report generation for {profile.profileId} profile with {record_type} type for {report_date} date" + f"Initiating report generation for {profile['profileId']} profile with {record_type} type for {report_date} date" ) response = self._send_http_request( urljoin(self._url, self.report_init_endpoint(request_record_type)), - profile.profileId, + profile["profileId"], report_init_body, ) if response.status_code != self.report_is_created: - error_msg = f"Unexpected HTTP status code {response.status_code} when registering {record_type}, {type(self).__name__} for {profile.profileId} profile: {response.text}" + error_msg = f"Unexpected HTTP status code {response.status_code} when registering {record_type}, {type(self).__name__} for {profile['profileId']} profile: {response.text}" if self._skip_known_errors(response): self.logger.warning(error_msg) break @@ -381,7 +364,7 @@ def _init_reports(self, profile: Profile, report_date: str) -> List[ReportInfo]: ReportInfo( report_id=response.reportId, record_type=record_type, - profile_id=profile.profileId, + profile_id=profile["profileId"], status=Status.IN_PROGRESS, metric_objects=[], ) diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_brands.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_brands.py index 030ae17f94e0..daecf40f5e4d 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_brands.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_brands.py @@ -4,7 +4,6 @@ from typing import Any, Mapping, MutableMapping from requests import Response -from source_amazon_ads.schemas import BrandsAdGroup, BrandsCampaign from source_amazon_ads.streams.common import SubProfilesStream @@ -61,7 +60,6 @@ def __init__(self, *args, **kwargs): data_field = "campaigns" state_filter = None content_type = "application/vnd.sbcampaignresource.v4+json" - model = BrandsCampaign def path(self, **kwargs) -> str: return "sb/v4/campaigns/list" @@ -83,7 +81,6 @@ class SponsoredBrandsAdGroups(SponsoredBrandsV4): primary_key = "adGroupId" data_field = "adGroups" - model = BrandsAdGroup content_type = "application/vnd.sbadgroupresource.v4+json" def path(self, **kwargs) -> str: @@ -97,7 +94,6 @@ class SponsoredBrandsKeywords(SubProfilesStream): """ primary_key = "adGroupId" - model = BrandsAdGroup def path(self, **kwargs) -> str: return "sb/keywords" diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_display.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_display.py index 9c2b0f24fb85..aa399bbec121 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_display.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_display.py @@ -4,14 +4,6 @@ from typing import Any, Mapping -from source_amazon_ads.schemas import ( - DisplayAdGroup, - DisplayBudgetRules, - DisplayCampaign, - DisplayCreatives, - DisplayProductAds, - DisplayTargeting, -) from source_amazon_ads.streams.common import SubProfilesStream @@ -27,7 +19,6 @@ def __init__(self, *args, **kwargs): primary_key = "campaignId" state_filter = None - model = DisplayCampaign def path(self, **kwargs) -> str: return "sd/campaigns" @@ -46,7 +37,6 @@ class SponsoredDisplayAdGroups(SubProfilesStream): """ primary_key = "adGroupId" - model = DisplayAdGroup def path(self, **kwargs) -> str: return "sd/adGroups" @@ -59,7 +49,6 @@ class SponsoredDisplayProductAds(SubProfilesStream): """ primary_key = "adId" - model = DisplayProductAds def path(self, **kwargs) -> str: return "sd/productAds" @@ -72,7 +61,6 @@ class SponsoredDisplayTargetings(SubProfilesStream): """ primary_key = "targetId" - model = DisplayTargeting def path(self, **kwargs) -> str: return "sd/targets" @@ -85,7 +73,6 @@ class SponsoredDisplayCreatives(SubProfilesStream): """ primary_key = "creativeId" - model = DisplayCreatives def path(self, **kwargs) -> str: return "/sd/creatives" @@ -102,7 +89,6 @@ class SponsoredDisplayBudgetRules(SubProfilesStream): """ primary_key = "ruleId" - model = DisplayBudgetRules data_field = "budgetRulesForAdvertiserResponse" page_size = 30 diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_products.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_products.py index e90467a49d77..31ab7ee28a4e 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_products.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/sponsored_products.py @@ -2,26 +2,19 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # -import json +import logging from abc import ABC from http import HTTPStatus from typing import Any, Iterable, List, Mapping, MutableMapping, Optional -from airbyte_cdk.models import SyncMode +from airbyte_cdk.models import FailureType, SyncMode +from airbyte_cdk.sources.streams.http.error_handlers import ErrorHandler, ErrorResolution, HttpStatusErrorHandler, ResponseAction +from airbyte_cdk.sources.streams.http.error_handlers.default_error_mapping import DEFAULT_ERROR_MAPPING from requests import Response -from source_amazon_ads.schemas import ( - ProductAd, - ProductAdGroupBidRecommendations, - ProductAdGroups, - ProductAdGroupSuggestedKeywords, - ProductCampaign, - ProductTargeting, - SponsoredProductCampaignNegativeKeywordsModel, - SponsoredProductKeywordsModel, - SponsoredProductNegativeKeywordsModel, -) from source_amazon_ads.streams.common import SubProfilesStream +LOGGER = logging.getLogger("airbyte") + class SponsoredProductsV3(SubProfilesStream): """ @@ -75,7 +68,6 @@ def __init__(self, *args, **kwargs): primary_key = "campaignId" data_field = "campaigns" state_filter = None - model = ProductCampaign content_type = "application/vnd.spCampaign.v3+json" def path(self, **kwargs) -> str: @@ -99,7 +91,6 @@ class SponsoredProductAdGroups(SponsoredProductsV3): primary_key = "adGroupId" data_field = "adGroups" content_type = "application/vnd.spAdGroup.v3+json" - model = ProductAdGroups def path(self, **kwargs) -> str: return "/sp/adGroups/list" @@ -128,31 +119,25 @@ def parse_response(self, response: Response, **kwargs) -> Iterable[Mapping]: if response.status_code == HTTPStatus.OK: yield resp - if response.status_code == HTTPStatus.BAD_REQUEST: - # 400 error message for bids recommendation: - # Bid recommendation for AD group in Manual Targeted Campaign is not supported. - # 400 error message for keywords recommendation: - # Getting keyword recommendations for AD Group in Auto Targeted Campaign is not supported - self.logger.warning( - f"Skip current AdGroup because it does not support request {response.request.url} for " - f"{response.request.headers['Amazon-Advertising-API-Scope']} profile: {response.text}" - ) - elif response.status_code == HTTPStatus.UNPROCESSABLE_ENTITY: - # 422 error message for bids recommendation: - # No recommendations can be provided as the input ad group does not have any asins. - self.logger.warning( - f"Skip current AdGroup because the ad group {json.loads(response.request.body)['adGroupId']} does not have any asins {response.request.url}" - ) - elif response.status_code == HTTPStatus.NOT_FOUND: - # 404 Either the specified ad group identifier was not found, - # or the specified ad group was found but no associated bid was found. - self.logger.warning( - f"Skip current AdGroup because the specified ad group has no associated bid {response.request.url} for " - f"{response.request.headers['Amazon-Advertising-API-Scope']} profile: {response.text}" - ) - - else: - response.raise_for_status() + def get_error_handler(self) -> ErrorHandler: + error_mapping = DEFAULT_ERROR_MAPPING | { + 400: ErrorResolution( + response_action=ResponseAction.IGNORE, + failure_type=FailureType.config_error, + error_message="Skip current AdGroup because it does not support request {response.request.url} for current profile", + ), + 422: ErrorResolution( + response_action=ResponseAction.IGNORE, + failure_type=FailureType.config_error, + error_message="Skip current AdGroup because the ad group {json.loads(response.request.body)['adGroupId']} does not have any asins", + ), + 404: ErrorResolution( + response_action=ResponseAction.IGNORE, + failure_type=FailureType.config_error, + error_message="Skip current AdGroup because the specified ad group has no associated bid", + ), + } + return HttpStatusErrorHandler(logger=LOGGER, error_mapping=error_mapping) class SponsoredProductAdGroupBidRecommendations(SponsoredProductAdGroupWithSlicesABC): @@ -164,7 +149,6 @@ class SponsoredProductAdGroupBidRecommendations(SponsoredProductAdGroupWithSlice primary_key = None data_field = "bidRecommendations" content_type = "application/vnd.spthemebasedbidrecommendation.v4+json" - model = ProductAdGroupBidRecommendations def path(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> str: return "/sp/targets/bid/recommendations" @@ -203,7 +187,6 @@ class SponsoredProductAdGroupSuggestedKeywords(SponsoredProductAdGroupWithSlices primary_key = None data_field = "" - model = ProductAdGroupSuggestedKeywords @property def http_method(self, **kwargs) -> str: @@ -238,7 +221,6 @@ class SponsoredProductKeywords(SponsoredProductsV3): primary_key = "keywordId" data_field = "keywords" content_type = "application/vnd.spKeyword.v3+json" - model = SponsoredProductKeywordsModel def path(self, **kwargs) -> str: return "sp/keywords/list" @@ -253,7 +235,6 @@ class SponsoredProductNegativeKeywords(SponsoredProductsV3): primary_key = "keywordId" data_field = "negativeKeywords" content_type = "application/vnd.spNegativeKeyword.v3+json" - model = SponsoredProductNegativeKeywordsModel def path(self, **kwargs) -> str: return "sp/negativeKeywords/list" @@ -268,7 +249,6 @@ class SponsoredProductCampaignNegativeKeywords(SponsoredProductsV3): primary_key = "keywordId" data_field = "campaignNegativeKeywords" content_type = "application/vnd.spCampaignNegativeKeyword.v3+json" - model = SponsoredProductCampaignNegativeKeywordsModel def path(self, **kwargs) -> str: return "sp/campaignNegativeKeywords/list" @@ -283,7 +263,6 @@ class SponsoredProductAds(SponsoredProductsV3): primary_key = "adId" data_field = "productAds" content_type = "application/vnd.spProductAd.v3+json" - model = ProductAd def path(self, **kwargs) -> str: return "sp/productAds/list" @@ -297,7 +276,6 @@ class SponsoredProductTargetings(SponsoredProductsV3): primary_key = "targetId" data_field = "targetingClauses" content_type = "application/vnd.spTargetingClause.v3+json" - model = ProductTargeting def path(self, **kwargs) -> str: return "sp/targets/list" diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/utils.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/utils.py index 2c18d51301b7..e982a6b469dd 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/utils.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/integrations/utils.py @@ -9,7 +9,6 @@ from airbyte_cdk.test.catalog_builder import CatalogBuilder from airbyte_cdk.test.entrypoint_wrapper import EntrypointOutput, read from source_amazon_ads import SourceAmazonAds -from source_amazon_ads.declarative_source_adapter import DeclarativeSourceAdapter def read_stream( @@ -20,7 +19,7 @@ def read_stream( expecting_exception: bool = False ) -> EntrypointOutput: catalog = CatalogBuilder().with_stream(stream_name, sync_mode).build() - return read(DeclarativeSourceAdapter(source=SourceAmazonAds()), config, catalog, state, expecting_exception) + return read(SourceAmazonAds(), config, catalog, state, expecting_exception) def get_log_messages_by_log_level(logs: List[AirbyteMessage], log_level: LogLevel) -> List[str]: diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_attribution_report.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_attribution_report.py index 32203166e150..fed4128be5b9 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_attribution_report.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_attribution_report.py @@ -12,7 +12,6 @@ from freezegun import freeze_time from jsonschema import validate from source_amazon_ads import SourceAmazonAds -from source_amazon_ads.schemas.profile import AccountInfo, Profile from source_amazon_ads.streams import AttributionReportProducts from .utils import read_full_refresh @@ -130,8 +129,8 @@ def _callback(request: requests.PreparedRequest): def test_attribution_report_slices(config): profiles = [ - Profile(profileId=1, timezone="America/Los_Angeles", accountInfo=AccountInfo(id="1", type="seller", marketplaceStringId="")), - Profile(profileId=2, timezone="America/Los_Angeles", accountInfo=AccountInfo(id="1", type="seller", marketplaceStringId="")), + dict(profileId=1, timezone="America/Los_Angeles", accountInfo=dict(id="1", type="seller", marketplaceStringId="")), + dict(profileId=2, timezone="America/Los_Angeles", accountInfo=dict(id="1", type="seller", marketplaceStringId="")), ] stream = AttributionReportProducts(config, profiles=profiles) diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py index 12f187b73306..a0d9d56f4a5e 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py @@ -18,7 +18,6 @@ from pendulum import Date from pytest import raises from requests.exceptions import ConnectionError -from source_amazon_ads.schemas.profile import AccountInfo, Profile from source_amazon_ads.source import CONFIG_DATE_FORMAT from source_amazon_ads.streams import ( SponsoredBrandsCampaigns, @@ -170,10 +169,10 @@ def setup_responses(init_response=None, init_response_products=None, init_respon def make_profiles(profile_type="seller"): return [ - Profile( + dict( profileId=1, timezone="America/Los_Angeles", - accountInfo=AccountInfo(marketplaceStringId="", id="", type=profile_type), + accountInfo=dict(marketplaceStringId="", id="", type=profile_type), ) ] @@ -426,7 +425,7 @@ def test_display_report_stream_slices_full_refresh(config): def test_display_report_stream_slices_incremental(config): profiles = make_profiles() stream = SponsoredDisplayReportStream(config, profiles, authenticator=mock.MagicMock()) - stream_state = {str(profiles[0].profileId): {"reportDate": "2021-07-25"}} + stream_state = {str(profiles[0]['profileId']): {"reportDate": "2021-07-25"}} slices = list(stream.stream_slices(SyncMode.incremental, cursor_field=stream.cursor_field, stream_state=stream_state)) assert slices == [ {"profile": profiles[0], "reportDate": "2021-07-25"}, @@ -436,7 +435,7 @@ def test_display_report_stream_slices_incremental(config): {"profile": profiles[0], "reportDate": "2021-07-29"}, ] - stream_state = {str(profiles[0].profileId): {"reportDate": "2021-07-30"}} + stream_state = {str(profiles[0]['profileId']): {"reportDate": "2021-07-30"}} slices = list(stream.stream_slices(SyncMode.incremental, cursor_field=stream.cursor_field, stream_state=stream_state)) assert slices == [None] @@ -458,7 +457,7 @@ def test_get_start_date(config): stream = SponsoredProductsReportStream(config, profiles, authenticator=mock.MagicMock()) assert stream.get_start_date(profiles[0], {}) == Date(2021, 6, 1) - profile_id = str(profiles[0].profileId) + profile_id = str(profiles[0]['profileId']) stream = SponsoredProductsReportStream(config, profiles, authenticator=mock.MagicMock()) assert stream.get_start_date(profiles[0], {profile_id: {"reportDate": "2021-08-10"}}) == Date(2021, 8, 10) stream = SponsoredProductsReportStream(config, profiles, authenticator=mock.MagicMock()) @@ -471,8 +470,8 @@ def test_get_start_date(config): @freeze_time("2021-08-01 04:00:00") def test_stream_slices_different_timezones(config): - profile1 = Profile(profileId=1, timezone="America/Los_Angeles", accountInfo=AccountInfo(marketplaceStringId="", id="", type="seller")) - profile2 = Profile(profileId=2, timezone="UTC", accountInfo=AccountInfo(marketplaceStringId="", id="", type="seller")) + profile1 = dict(profileId=1, timezone="America/Los_Angeles", accountInfo=dict(marketplaceStringId="", id="", type="seller")) + profile2 = dict(profileId=2, timezone="UTC", accountInfo=dict(marketplaceStringId="", id="", type="seller")) stream = SponsoredProductsReportStream(config, [profile1, profile2], authenticator=mock.MagicMock()) slices = list(stream.stream_slices(SyncMode.incremental, cursor_field=stream.cursor_field, stream_state={})) assert slices == [{"profile": profile1, "reportDate": "2021-07-31"}, {"profile": profile2, "reportDate": "2021-08-01"}] @@ -481,8 +480,8 @@ def test_stream_slices_different_timezones(config): def test_stream_slices_lazy_evaluation(config): with freeze_time("2022-06-01T23:50:00+00:00") as frozen_datetime: config["start_date"] = pendulum.from_format("2021-05-10", CONFIG_DATE_FORMAT).date() - profile1 = Profile(profileId=1, timezone="UTC", accountInfo=AccountInfo(marketplaceStringId="", id="", type="seller")) - profile2 = Profile(profileId=2, timezone="UTC", accountInfo=AccountInfo(marketplaceStringId="", id="", type="seller")) + profile1 = dict(profileId=1, timezone="UTC", accountInfo=dict(marketplaceStringId="", id="", type="seller")) + profile2 = dict(profileId=2, timezone="UTC", accountInfo=dict(marketplaceStringId="", id="", type="seller")) stream = SponsoredProductsReportStream(config, [profile1, profile2], authenticator=mock.MagicMock()) stream.REPORTING_PERIOD = 5 diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_source.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_source.py index 4bc0e636ea59..a48354f15260 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_source.py @@ -7,8 +7,6 @@ from airbyte_cdk.models import AirbyteConnectionStatus, AirbyteMessage, ConnectorSpecification, Status, Type from jsonschema import Draft4Validator from source_amazon_ads import SourceAmazonAds -from source_amazon_ads.declarative_source_adapter import DeclarativeSourceAdapter -from source_amazon_ads.schemas import Profile from .utils import command_check, url_strip_query @@ -41,17 +39,17 @@ def ensure_additional_property_is_boolean(root): @responses.activate def test_discover(config): setup_responses() - source = DeclarativeSourceAdapter(source=SourceAmazonAds()) + source = SourceAmazonAds() catalog = source.discover(None, config) - catalog = AirbyteMessage(type=Type.CATALOG, catalog=catalog).dict(exclude_unset=True) - schemas = [stream["json_schema"] for stream in catalog["catalog"]["streams"]] + catalog = AirbyteMessage(type=Type.CATALOG, catalog=catalog) + schemas = [stream.json_schema for stream in catalog.catalog.streams] for schema in schemas: Draft4Validator.check_schema(schema) ensure_additional_property_is_boolean(schema) def test_spec(): - source = DeclarativeSourceAdapter(source=SourceAmazonAds()) + source = SourceAmazonAds() spec = source.spec(None) assert isinstance(spec, ConnectorSpecification) @@ -59,7 +57,7 @@ def test_spec(): @responses.activate def test_check(config_gen): setup_responses() - source = DeclarativeSourceAdapter(source=SourceAmazonAds()) + source = SourceAmazonAds() assert command_check(source, config_gen(start_date=...)) == AirbyteConnectionStatus(status=Status.SUCCEEDED) assert len(responses.calls) == 2 @@ -90,7 +88,7 @@ def test_check(config_gen): @responses.activate def test_source_streams(config): setup_responses() - source = DeclarativeSourceAdapter(source=SourceAmazonAds()) + source = SourceAmazonAds() streams = source.streams(config) assert len(streams) == 27 actual_stream_names = {stream.name for stream in streams} @@ -129,14 +127,14 @@ def test_filter_profiles_exist(): {"profileId": 333, "timezone": "gtm", "accountInfo": {"marketplaceStringId": "mkt_id_3", "id": "333", "type": "vendor"}}, ] - mock_profiles = [Profile.parse_obj(profile) for profile in mock_objs] + mock_profiles = [profile for profile in mock_objs] filtered_profiles = source._choose_profiles({}, mock_profiles) assert len(filtered_profiles) == 3 filtered_profiles = source._choose_profiles({"profiles": [111]}, mock_profiles) assert len(filtered_profiles) == 1 - assert filtered_profiles[0].profileId == 111 + assert filtered_profiles[0]['profileId'] == 111 filtered_profiles = source._choose_profiles({"profiles": [111, 333]}, mock_profiles) assert len(filtered_profiles) == 2 @@ -149,7 +147,7 @@ def test_filter_profiles_exist(): filtered_profiles = source._choose_profiles({"marketplace_ids": ["mkt_id_1"]}, mock_profiles) assert len(filtered_profiles) == 1 - assert filtered_profiles[0].accountInfo.marketplaceStringId == "mkt_id_1" + assert filtered_profiles[0]['accountInfo']['marketplaceStringId'] == "mkt_id_1" filtered_profiles = source._choose_profiles({"marketplace_ids": ["mkt_id_1", "mkt_id_3"]}, mock_profiles) assert len(filtered_profiles) == 2 @@ -159,4 +157,4 @@ def test_filter_profiles_exist(): filtered_profiles = source._choose_profiles({"profiles": [111], "marketplace_ids": ["mkt_id_1"]}, mock_profiles) assert len(filtered_profiles) == 1 - assert filtered_profiles[0].profileId == 111 + assert filtered_profiles[0]['profileId'] == 111 diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_streams.py index 31264c021008..5f859e757bf4 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_streams.py @@ -9,6 +9,7 @@ import pytest import requests import responses +from airbyte_cdk import AirbyteTracedException from airbyte_cdk.models import SyncMode from jsonschema import validate from source_amazon_ads import SourceAmazonAds @@ -204,7 +205,7 @@ def test_streams_campaigns_pagination_403_error(mocker, status_code, config, pro streams = source.streams(config) campaigns_stream = get_stream_by_name(streams, "sponsored_display_campaigns") - with pytest.raises(requests.exceptions.HTTPError): + with pytest.raises(AirbyteTracedException): get_all_stream_records(campaigns_stream) diff --git a/docs/integrations/sources/amazon-ads.md b/docs/integrations/sources/amazon-ads.md index d53e52624d98..b2f9ba59a43f 100644 --- a/docs/integrations/sources/amazon-ads.md +++ b/docs/integrations/sources/amazon-ads.md @@ -153,6 +153,7 @@ Information about expected report generation waiting time can be found [here](ht | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------| +| 6.1.0 | 2024-10-31 | [47940](https://github.com/airbytehq/airbyte/pull/47940) | Bump CDK to ^5 | | 6.0.0 | 2024-10-28 | [47366](https://github.com/airbytehq/airbyte/pull/47366) | Migrate stream `SponsoredDisplayReportStream` to Amazon Ads Reports v3 | | 5.0.20 | 2024-10-29 | [47032](https://github.com/airbytehq/airbyte/pull/47032) | Update dependencies | | 5.0.19 | 2024-10-12 | [46860](https://github.com/airbytehq/airbyte/pull/46860) | Update dependencies | From 6db5223734b7d3d31498290bc4d92e0ecf2947ee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 20:08:56 +0200 Subject: [PATCH 526/808] =?UTF-8?q?=F0=9F=90=99=20source-faker:=20release?= =?UTF-8?q?=206.2.20=20(#48013)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Catherine Noll --- airbyte-integrations/connectors/source-faker/metadata.yaml | 4 ++-- airbyte-integrations/connectors/source-faker/pyproject.toml | 2 +- docs/integrations/sources/faker.md | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-faker/metadata.yaml b/airbyte-integrations/connectors/source-faker/metadata.yaml index 456dd85753ef..348c0e18c200 100644 --- a/airbyte-integrations/connectors/source-faker/metadata.yaml +++ b/airbyte-integrations/connectors/source-faker/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: api connectorType: source definitionId: dfd88b22-b603-4c3d-aad7-3701784586b1 - dockerImageTag: 6.2.20-rc.1 + dockerImageTag: 6.2.20 dockerRepository: airbyte/source-faker documentationUrl: https://docs.airbyte.com/integrations/sources/faker githubIssueLabel: source-faker @@ -24,7 +24,7 @@ data: releaseStage: beta releases: rolloutConfiguration: - enableProgressiveRollout: true + enableProgressiveRollout: false breakingChanges: 4.0.0: message: This is a breaking change message diff --git a/airbyte-integrations/connectors/source-faker/pyproject.toml b/airbyte-integrations/connectors/source-faker/pyproject.toml index 3ce1d14fb33c..853230dab4ff 100644 --- a/airbyte-integrations/connectors/source-faker/pyproject.toml +++ b/airbyte-integrations/connectors/source-faker/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.2.20-rc.1" +version = "6.2.20" name = "source-faker" description = "Source implementation for fake but realistic looking data." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/faker.md b/docs/integrations/sources/faker.md index 4e4e413c13fe..2be4dfa3f321 100644 --- a/docs/integrations/sources/faker.md +++ b/docs/integrations/sources/faker.md @@ -104,6 +104,7 @@ None! | Version | Date | Pull Request | Subject | |:------------|:-----------| :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------- | +| 6.2.20 | 2024-10-30 | [48013](https://github.com/airbytehq/airbyte/pull/48013) | Promoting release candidate 6.2.20-rc.1 to a main version. | | 6.2.20-rc.1 | 2024-10-21 | [47221](https://github.com/airbytehq/airbyte/pull/46678) | Testing release candidate with RC suffix versioning. | | 6.2.19-rc.1 | 2024-10-21 | [47221](https://github.com/airbytehq/airbyte/pull/47221) | Testing release candidate with RC suffix versioning. | | 6.2.18-rc.1 | 2024-10-09 | [46678](https://github.com/airbytehq/airbyte/pull/46678) | Testing release candidate with RC suffix versioning. | From 3412ff5a42ffd4336a9417e33d14c53d5e70c185 Mon Sep 17 00:00:00 2001 From: Brian Lai <51336873+brianjlai@users.noreply.github.com> Date: Fri, 1 Nov 2024 15:08:38 -0400 Subject: [PATCH 527/808] =?UTF-8?q?=E2=9C=A8=20[source-chargebee]=20Allow?= =?UTF-8?q?=20low-code=20incremental=20streams=20to=20run=20within=20the?= =?UTF-8?q?=20Concurrent=20CDK=20framework=20(#47978)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chargebee/metadata.yaml | 2 +- .../connectors/source-chargebee/poetry.lock | 137 ++++++++++-------- .../source-chargebee/pyproject.toml | 4 +- .../source_chargebee/manifest.yaml | 13 ++ .../source-chargebee/source_chargebee/run.py | 44 +++++- .../source_chargebee/source.py | 8 +- .../source_chargebee/spec.yaml | 12 ++ .../unit_tests/integration/test_addon.py | 15 +- .../unit_tests/integration/test_coupon.py | 15 +- .../unit_tests/integration/test_customer.py | 15 +- .../unit_tests/integration/test_event.py | 15 +- .../integration/test_hosted_page.py | 15 +- .../unit_tests/integration/test_plan.py | 15 +- .../integration/test_site_migration_detail.py | 13 +- .../integration/test_subscription.py | 15 +- ...est_subscription_with_scheduled_changes.py | 18 ++- .../integration/test_virtual_bank_account.py | 15 +- .../unit_tests/resource/config/config.json | 6 + .../source-chargebee/unit_tests/test_run.py | 12 ++ .../unit_tests/test_source.py | 9 -- docs/integrations/sources/chargebee.md | 1 + 21 files changed, 290 insertions(+), 109 deletions(-) create mode 100644 airbyte-integrations/connectors/source-chargebee/unit_tests/resource/config/config.json create mode 100644 airbyte-integrations/connectors/source-chargebee/unit_tests/test_run.py delete mode 100644 airbyte-integrations/connectors/source-chargebee/unit_tests/test_source.py diff --git a/airbyte-integrations/connectors/source-chargebee/metadata.yaml b/airbyte-integrations/connectors/source-chargebee/metadata.yaml index 9946d5a034e2..932a750b0743 100644 --- a/airbyte-integrations/connectors/source-chargebee/metadata.yaml +++ b/airbyte-integrations/connectors/source-chargebee/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 686473f1-76d9-4994-9cc7-9b13da46147c - dockerImageTag: 0.6.18 + dockerImageTag: 0.7.0 dockerRepository: airbyte/source-chargebee documentationUrl: https://docs.airbyte.com/integrations/sources/chargebee githubIssueLabel: source-chargebee diff --git a/airbyte-integrations/connectors/source-chargebee/poetry.lock b/airbyte-integrations/connectors/source-chargebee/poetry.lock index 3a1fef63b3bc..4ab0ce8d2272 100644 --- a/airbyte-integrations/connectors/source-chargebee/poetry.lock +++ b/airbyte-integrations/connectors/source-chargebee/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "5.17.0" +version = "6.1.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, - {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, + {file = "airbyte_cdk-6.1.0-py3-none-any.whl", hash = "sha256:312cda1375f27ccf737cd4812e0c64babc48ecfca445fc4db4d0173d47b72461"}, + {file = "airbyte_cdk-6.1.0.tar.gz", hash = "sha256:55cda86822be047f992f1cee1e87b4dc6c57e0ae4c5fa38d8b7c3e0d6eef3d88"}, ] [package.dependencies] @@ -25,9 +25,11 @@ jsonref = ">=0.2,<0.3" jsonschema = ">=3.2.0,<3.3.0" langchain_core = "0.1.42" nltk = "3.8.1" +numpy = "<2" orjson = ">=3.10.7,<4.0.0" pandas = "2.2.2" pendulum = "<3.0.0" +psutil = "6.1.0" pydantic = ">=2.7,<3.0" pyjwt = ">=2.8.0,<3.0.0" pyrate-limiter = ">=3.1.0,<3.2.0" @@ -856,64 +858,47 @@ twitter = ["twython"] [[package]] name = "numpy" -version = "2.1.2" +version = "1.26.4" description = "Fundamental package for array computing in Python" optional = false -python-versions = ">=3.10" -files = [ - {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, - {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, - {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, - {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, - {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, - {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, - {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, - {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, - {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, - {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, +python-versions = ">=3.9" +files = [ + {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, + {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, + {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, + {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, + {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, + {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, + {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, + {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, + {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, + {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, + {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, ] [[package]] @@ -1131,6 +1116,36 @@ files = [ dev = ["pre-commit", "tox"] testing = ["pytest", "pytest-benchmark"] +[[package]] +name = "psutil" +version = "6.1.0" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"}, + {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"}, + {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"}, + {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"}, + {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"}, + {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"}, + {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"}, + {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"}, +] + +[package.extras] +dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"] +test = ["pytest", "pytest-xdist", "setuptools"] + [[package]] name = "py" version = "1.11.0" @@ -1973,4 +1988,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10,<3.12" -content-hash = "2c6d4faf7e1836ea62aa4c9ac879d18b0b9f29f2d5f0efa2e233170ee6b18b73" +content-hash = "e4e7dd9ffced02e4363b0f1e8dde3125b2d440a472164d010dd1962c6f8731ee" diff --git a/airbyte-integrations/connectors/source-chargebee/pyproject.toml b/airbyte-integrations/connectors/source-chargebee/pyproject.toml index ca3661c86050..34a8198f3e6a 100644 --- a/airbyte-integrations/connectors/source-chargebee/pyproject.toml +++ b/airbyte-integrations/connectors/source-chargebee/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.18" +version = "0.7.0" name = "source-chargebee" description = "Source implementation for Chargebee." authors = [ "Airbyte ",] @@ -17,7 +17,7 @@ include = "source_chargebee" [tool.poetry.dependencies] python = "^3.10,<3.12" -airbyte-cdk = "^5" +airbyte-cdk = "^6" [tool.poetry.scripts] source-chargebee = "source_chargebee.run:run" diff --git a/airbyte-integrations/connectors/source-chargebee/source_chargebee/manifest.yaml b/airbyte-integrations/connectors/source-chargebee/source_chargebee/manifest.yaml index e4ff9489892c..5823b99fbefa 100644 --- a/airbyte-integrations/connectors/source-chargebee/source_chargebee/manifest.yaml +++ b/airbyte-integrations/connectors/source-chargebee/source_chargebee/manifest.yaml @@ -25,6 +25,7 @@ definitions: action: IGNORE error_message: "Stream is available only for Product Catalog 1.0" - type: DefaultErrorHandler + max_retries: 10 backoff_strategies: - type: WaitTimeFromHeader header: "Retry-After" @@ -464,3 +465,15 @@ streams: check: stream_names: - "event" + +# Chargebee offers three tiers of rate limits: +# - Starter: 150 req/min (2.5 req/sec) +# - Performance: 1000 req/min (16 req/sec) +# - Enterprise: 3500 req/min (58 req/sec) +# +# We use defer to a level of 3 because we assume by default that customers are on the Starter tier, but +# customers can specify a higher concurrency level as needed up to the theoretical max rate limit. +concurrency_level: + type: ConcurrencyLevel + default_concurrency: "{{ config.get('num_workers', 3) }}" + max_concurrency: 50 diff --git a/airbyte-integrations/connectors/source-chargebee/source_chargebee/run.py b/airbyte-integrations/connectors/source-chargebee/source_chargebee/run.py index 5c0b427da197..40a7f2665c33 100644 --- a/airbyte-integrations/connectors/source-chargebee/source_chargebee/run.py +++ b/airbyte-integrations/connectors/source-chargebee/source_chargebee/run.py @@ -4,11 +4,49 @@ import sys +import traceback +from datetime import datetime +from typing import List -from airbyte_cdk.entrypoint import launch +from airbyte_cdk.entrypoint import AirbyteEntrypoint, launch +from airbyte_cdk.models import AirbyteErrorTraceMessage, AirbyteMessage, AirbyteMessageSerializer, AirbyteTraceMessage, TraceType, Type +from orjson import orjson from source_chargebee import SourceChargebee +def _get_source(args: List[str]): + catalog_path = AirbyteEntrypoint.extract_catalog(args) + config_path = AirbyteEntrypoint.extract_config(args) + state_path = AirbyteEntrypoint.extract_state(args) + try: + return SourceChargebee( + SourceChargebee.read_catalog(catalog_path) if catalog_path else None, + SourceChargebee.read_config(config_path) if config_path else None, + SourceChargebee.read_state(state_path) if state_path else None, + ) + except Exception as error: + print( + orjson.dumps( + AirbyteMessageSerializer.dump( + AirbyteMessage( + type=Type.TRACE, + trace=AirbyteTraceMessage( + type=TraceType.ERROR, + emitted_at=int(datetime.now().timestamp() * 1000), + error=AirbyteErrorTraceMessage( + message=f"Error starting the sync. This could be due to an invalid configuration or catalog. Please contact Support for assistance. Error: {error}", + stack_trace=traceback.format_exc(), + ), + ), + ) + ) + ).decode() + ) + return None + + def run(): - source = SourceChargebee() - launch(source, sys.argv[1:]) + _args = sys.argv[1:] + source = _get_source(_args) + if source: + launch(source, _args) diff --git a/airbyte-integrations/connectors/source-chargebee/source_chargebee/source.py b/airbyte-integrations/connectors/source-chargebee/source_chargebee/source.py index 23186cfaa5cd..b3903ecfc21a 100644 --- a/airbyte-integrations/connectors/source-chargebee/source_chargebee/source.py +++ b/airbyte-integrations/connectors/source-chargebee/source_chargebee/source.py @@ -2,7 +2,11 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +from typing import Any, Mapping, Optional + +from airbyte_cdk.models import ConfiguredAirbyteCatalog from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource +from airbyte_cdk.sources.source import TState """ This file provides the necessary constructs to interpret a provided declarative YAML configuration file into @@ -14,5 +18,5 @@ # Declarative Source class SourceChargebee(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) + def __init__(self, catalog: Optional[ConfiguredAirbyteCatalog], config: Optional[Mapping[str, Any]], state: TState, **kwargs): + super().__init__(catalog=catalog, config=config, state=state, **{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-chargebee/source_chargebee/spec.yaml b/airbyte-integrations/connectors/source-chargebee/source_chargebee/spec.yaml index 34e151cf6c6c..b71480802d0a 100644 --- a/airbyte-integrations/connectors/source-chargebee/source_chargebee/spec.yaml +++ b/airbyte-integrations/connectors/source-chargebee/source_chargebee/spec.yaml @@ -38,3 +38,15 @@ connectionSpecification: enum: ["1.0", "2.0"] default: "2.0" order: 3 + num_workers: + type: integer + title: Number of concurrent workers + minimum: 1 + maximum: 50 + default: 3 + examples: [1, 2, 3] + description: >- + The number of worker threads to use for the sync. + The performance upper boundary is based on the limit of your Chargebee plan. + More info about the rate limit plan tiers can be found on Chargebee's API docs. + order: 4 diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_addon.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_addon.py index 877c571b3bc1..8d1a4783caed 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_addon.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_addon.py @@ -35,17 +35,22 @@ _NO_STATE = {} _NOW = datetime.now(timezone.utc) + def _a_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.addon_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_record() -> RecordBuilder: return create_record_builder( @@ -55,6 +60,7 @@ def _a_record() -> RecordBuilder: record_cursor_path=NestedPath([_STREAM_NAME, _CURSOR_FIELD]) ) + def _a_response() -> HttpResponseBuilder: return create_response_builder( find_template(_STREAM_NAME, __file__), @@ -70,7 +76,8 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): @@ -203,4 +210,4 @@ def test_given_initial_state_use_state_for_query_params(self, http_mocker: HttpM output = self._read(_config().with_start_date(self._start_date - timedelta(hours=8)), state) most_recent_state = output.most_recent_state assert most_recent_state.stream_descriptor == StreamDescriptor(name=_STREAM_NAME) - assert most_recent_state.stream_state == AirbyteStateBlob(updated_at=record_cursor_value) \ No newline at end of file + assert most_recent_state.stream_state == AirbyteStateBlob(updated_at=record_cursor_value) diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_coupon.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_coupon.py index 32f3a7c5cb80..448ae2df9980 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_coupon.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_coupon.py @@ -35,17 +35,22 @@ _NO_STATE = {} _NOW = datetime.now(timezone.utc) + def _a_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.coupon_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_record() -> RecordBuilder: return create_record_builder( @@ -55,6 +60,7 @@ def _a_record() -> RecordBuilder: record_cursor_path=NestedPath([_STREAM_NAME, _CURSOR_FIELD]) ) + def _a_response() -> HttpResponseBuilder: return create_response_builder( find_template(_STREAM_NAME, __file__), @@ -62,6 +68,7 @@ def _a_response() -> HttpResponseBuilder: pagination_strategy=ChargebeePaginationStrategy() ) + def _read( config_builder: ConfigBuilder, sync_mode: SyncMode, @@ -70,7 +77,9 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) + @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_customer.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_customer.py index 4c7d0441ca37..7e7fe29b5612 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_customer.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_customer.py @@ -35,17 +35,22 @@ _NO_STATE = {} _NOW = datetime.now(timezone.utc) + def _a_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.customer_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_record() -> RecordBuilder: return create_record_builder( @@ -55,6 +60,7 @@ def _a_record() -> RecordBuilder: record_cursor_path=NestedPath([_STREAM_NAME, _CURSOR_FIELD]) ) + def _a_response() -> HttpResponseBuilder: return create_response_builder( find_template(_STREAM_NAME, __file__), @@ -62,6 +68,7 @@ def _a_response() -> HttpResponseBuilder: pagination_strategy=ChargebeePaginationStrategy() ) + def _read( config_builder: ConfigBuilder, sync_mode: SyncMode, @@ -70,7 +77,9 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) + @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_event.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_event.py index c472c62f56e5..b8b44591002a 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_event.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_event.py @@ -35,17 +35,22 @@ _NO_STATE = {} _NOW = datetime.now(timezone.utc) + def _a_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.event_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_record() -> RecordBuilder: return create_record_builder( @@ -55,6 +60,7 @@ def _a_record() -> RecordBuilder: record_cursor_path=NestedPath([_STREAM_NAME, _CURSOR_FIELD]) ) + def _a_response() -> HttpResponseBuilder: return create_response_builder( find_template(_STREAM_NAME, __file__), @@ -62,6 +68,7 @@ def _a_response() -> HttpResponseBuilder: pagination_strategy=ChargebeePaginationStrategy() ) + def _read( config_builder: ConfigBuilder, sync_mode: SyncMode, @@ -70,7 +77,9 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) + @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_hosted_page.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_hosted_page.py index 10a00ae6cf29..aa3336b5bca4 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_hosted_page.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_hosted_page.py @@ -35,17 +35,22 @@ _NO_STATE = {} _NOW = datetime.now(timezone.utc) + def _a_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.hosted_page_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_record() -> RecordBuilder: return create_record_builder( @@ -55,6 +60,7 @@ def _a_record() -> RecordBuilder: record_cursor_path=NestedPath([_STREAM_NAME, _CURSOR_FIELD]) ) + def _a_response() -> HttpResponseBuilder: return create_response_builder( find_template(_STREAM_NAME, __file__), @@ -62,6 +68,7 @@ def _a_response() -> HttpResponseBuilder: pagination_strategy=ChargebeePaginationStrategy() ) + def _read( config_builder: ConfigBuilder, sync_mode: SyncMode, @@ -70,7 +77,9 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) + @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_plan.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_plan.py index c7d651edf35b..e186e7498539 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_plan.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_plan.py @@ -35,17 +35,22 @@ _NO_STATE = {} _NOW = datetime.now(timezone.utc) + def _a_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.plan_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_record() -> RecordBuilder: return create_record_builder( @@ -55,6 +60,7 @@ def _a_record() -> RecordBuilder: record_cursor_path=NestedPath([_STREAM_NAME, _CURSOR_FIELD]) ) + def _a_response() -> HttpResponseBuilder: return create_response_builder( find_template(_STREAM_NAME, __file__), @@ -62,6 +68,7 @@ def _a_response() -> HttpResponseBuilder: pagination_strategy=ChargebeePaginationStrategy() ) + def _read( config_builder: ConfigBuilder, sync_mode: SyncMode, @@ -70,7 +77,9 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) + @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_site_migration_detail.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_site_migration_detail.py index 40972289716a..cf8e8b67164d 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_site_migration_detail.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_site_migration_detail.py @@ -43,14 +43,18 @@ def _a_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.site_migration_detail_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_record() -> RecordBuilder: return create_record_builder( @@ -60,6 +64,7 @@ def _a_record() -> RecordBuilder: record_cursor_path=NestedPath([_STREAM_NAME, _CURSOR_FIELD]) ) + def _a_response() -> HttpResponseBuilder: return create_response_builder( find_template(_STREAM_NAME, __file__), @@ -75,7 +80,9 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) + @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_subscription.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_subscription.py index 86b5f34d3203..fc6878337d67 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_subscription.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_subscription.py @@ -35,17 +35,22 @@ _NO_STATE = {} _NOW = datetime.now(timezone.utc) + def _a_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.subscription_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_record() -> RecordBuilder: return create_record_builder( @@ -55,6 +60,7 @@ def _a_record() -> RecordBuilder: record_cursor_path=NestedPath([_STREAM_NAME, _CURSOR_FIELD]) ) + def _a_response() -> HttpResponseBuilder: return create_response_builder( find_template(_STREAM_NAME, __file__), @@ -62,6 +68,7 @@ def _a_response() -> HttpResponseBuilder: pagination_strategy=ChargebeePaginationStrategy() ) + def _read( config_builder: ConfigBuilder, sync_mode: SyncMode, @@ -70,7 +77,9 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) + @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_subscription_with_scheduled_changes.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_subscription_with_scheduled_changes.py index 0eff336263df..5a78f39eb87e 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_subscription_with_scheduled_changes.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_subscription_with_scheduled_changes.py @@ -36,20 +36,26 @@ _NO_STATE = {} _NOW = datetime.now(timezone.utc) + def _a_parent_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.subscription_endpoint(_SITE, _SITE_API_KEY) + def _a_child_request() -> ChargebeeSubstreamRequestBuilder: return ChargebeeSubstreamRequestBuilder.subscription_with_scheduled_changes_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).with_stream("subscription", sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_parent_record() -> RecordBuilder: return create_record_builder( @@ -59,6 +65,7 @@ def _a_parent_record() -> RecordBuilder: record_cursor_path=NestedPath(["subscription", _CURSOR_FIELD]) ) + def _a_child_record() -> RecordBuilder: return create_record_builder( find_template("subscription_with_scheduled_changes", __file__), @@ -67,6 +74,7 @@ def _a_child_record() -> RecordBuilder: record_cursor_path=NestedPath(["subscription", _CURSOR_FIELD]) ) + def _a_parent_response() -> HttpResponseBuilder: return create_response_builder( find_template("subscription", __file__), @@ -74,6 +82,7 @@ def _a_parent_response() -> HttpResponseBuilder: pagination_strategy=ChargebeePaginationStrategy() ) + def _a_child_response() -> HttpResponseBuilder: return create_response_builder( @@ -82,6 +91,7 @@ def _a_child_response() -> HttpResponseBuilder: pagination_strategy=ChargebeePaginationStrategy() ) + def _read( config_builder: ConfigBuilder, sync_mode: SyncMode, @@ -90,7 +100,9 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) + @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_virtual_bank_account.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_virtual_bank_account.py index 0f986eb87b6f..14548b526c3c 100644 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_virtual_bank_account.py +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/integration/test_virtual_bank_account.py @@ -35,17 +35,22 @@ _NO_STATE = {} _NOW = datetime.now(timezone.utc) + def _a_request() -> ChargebeeRequestBuilder: return ChargebeeRequestBuilder.virtual_bank_account_endpoint(_SITE, _SITE_API_KEY) + def _config() -> ConfigBuilder: return ConfigBuilder().with_site(_SITE).with_site_api_key(_SITE_API_KEY).with_product_catalog(_PRODUCT_CATALOG) + def _catalog(sync_mode: SyncMode) -> ConfiguredAirbyteCatalog: return CatalogBuilder().with_stream(_STREAM_NAME, sync_mode).build() -def _source() -> SourceChargebee: - return SourceChargebee() + +def _source(catalog: ConfiguredAirbyteCatalog, config: Dict[str, Any], state: Optional[Dict[str, Any]]) -> SourceChargebee: + return SourceChargebee(catalog=catalog, config=config, state=state) + def _a_record() -> RecordBuilder: return create_record_builder( @@ -55,6 +60,7 @@ def _a_record() -> RecordBuilder: record_cursor_path=NestedPath([_STREAM_NAME, _CURSOR_FIELD]) ) + def _a_response() -> HttpResponseBuilder: return create_response_builder( find_template(_STREAM_NAME, __file__), @@ -62,6 +68,7 @@ def _a_response() -> HttpResponseBuilder: pagination_strategy=ChargebeePaginationStrategy() ) + def _read( config_builder: ConfigBuilder, sync_mode: SyncMode, @@ -70,7 +77,9 @@ def _read( ) -> EntrypointOutput: catalog = _catalog(sync_mode) config = config_builder.build() - return read(_source(), config, catalog, state, expecting_exception) + source = _source(catalog=catalog, config=config, state=state) + return read(source, config, catalog, state, expecting_exception) + @freezegun.freeze_time(_NOW.isoformat()) class FullRefreshTest(TestCase): diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/resource/config/config.json b/airbyte-integrations/connectors/source-chargebee/unit_tests/resource/config/config.json new file mode 100644 index 000000000000..e17d5c774af4 --- /dev/null +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/resource/config/config.json @@ -0,0 +1,6 @@ +{ + "site": "test", + "site_api_key": "fake-key", + "start_date": "2023-01-01T06:57:44Z", + "product_catalog": "2.0" +} diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/test_run.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/test_run.py new file mode 100644 index 000000000000..b2991eda1ac1 --- /dev/null +++ b/airbyte-integrations/connectors/source-chargebee/unit_tests/test_run.py @@ -0,0 +1,12 @@ +# Copyright (c) 2024 Airbyte, Inc., all rights reserved. + +from unittest.mock import patch + +from source_chargebee.run import run + + +def test_run_with_non_existing_config(): + with patch("sys.argv", ["", "check", "--config", "resource/config/config.json"]): + # A check failed message is expected because the test config doesn't have a valid API key. But this + # still validates that we could instantiate the concurrent source correctly with the incoming args + assert run() is None diff --git a/airbyte-integrations/connectors/source-chargebee/unit_tests/test_source.py b/airbyte-integrations/connectors/source-chargebee/unit_tests/test_source.py deleted file mode 100644 index 62feab67ad1d..000000000000 --- a/airbyte-integrations/connectors/source-chargebee/unit_tests/test_source.py +++ /dev/null @@ -1,9 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from source_chargebee import SourceChargebee - - -def test_source(): - assert SourceChargebee() \ No newline at end of file diff --git a/docs/integrations/sources/chargebee.md b/docs/integrations/sources/chargebee.md index d3808ae294b5..d2515e08a9b5 100644 --- a/docs/integrations/sources/chargebee.md +++ b/docs/integrations/sources/chargebee.md @@ -104,6 +104,7 @@ The Chargebee connector should not run into [Chargebee API](https://apidocs.char | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------| +| 0.7.0 | 2024-10-30 | [47978](https://github.com/airbytehq/airbyte/pull/47978) | Upgrade the CDK and startup files to sync incremental streams concurrently | | 0.6.18 | 2024-10-31 | [47099](https://github.com/airbytehq/airbyte/pull/47099) | Update dependencies | | 0.6.17 | 2024-10-28 | [46846](https://github.com/airbytehq/airbyte/pull/47387) | Update CDK dependencies to yield parent records more frequently | | 0.6.16 | 2024-10-12 | [46846](https://github.com/airbytehq/airbyte/pull/46846) | Update dependencies | From bde10c6d00aa77761cabba5a888acc182998d768 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Fri, 1 Nov 2024 12:13:33 -0700 Subject: [PATCH 528/808] Python-CDK: New text suggestion for raw files option (#48114) Co-authored-by: Alexandre Cuoci --- .../sources/file_based/config/abstract_file_based_spec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py index 38159698816c..edacab2ed697 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py @@ -25,7 +25,7 @@ class Config(OneOfOptionConfig): class DeliverRawFiles(BaseModel): class Config(OneOfOptionConfig): title = "Copy Raw Files" - description = "Copy raw files without parsing their contents. Bits are copied into the destination exactly as they appeared in the source. Recommended for use with unstructured text data, non-text and compressed files." + description = "Copy raw files without parsing their contents. Bits are copied into the destination exactly as they appeared in the source. Recommended for use with unstructured text data, non-text and compressed files.\n\nRequires a supported file destination (see docs for detailed limitations)." discriminator = "delivery_type" delivery_type: Literal["use_file_transfer"] = Field("use_file_transfer", const=True) From 72f7ae83c3d4803f65fba28557044a72cf540c2e Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Fri, 1 Nov 2024 12:32:28 -0700 Subject: [PATCH 529/808] revert config text change (broke CI) (#48119) --- .../sources/file_based/config/abstract_file_based_spec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py b/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py index edacab2ed697..38159698816c 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py @@ -25,7 +25,7 @@ class Config(OneOfOptionConfig): class DeliverRawFiles(BaseModel): class Config(OneOfOptionConfig): title = "Copy Raw Files" - description = "Copy raw files without parsing their contents. Bits are copied into the destination exactly as they appeared in the source. Recommended for use with unstructured text data, non-text and compressed files.\n\nRequires a supported file destination (see docs for detailed limitations)." + description = "Copy raw files without parsing their contents. Bits are copied into the destination exactly as they appeared in the source. Recommended for use with unstructured text data, non-text and compressed files." discriminator = "delivery_type" delivery_type: Literal["use_file_transfer"] = Field("use_file_transfer", const=True) From f9aca266e0c22c8c3b57468dfd34902279943586 Mon Sep 17 00:00:00 2001 From: Xiaohan Song Date: Fri, 1 Nov 2024 12:47:08 -0700 Subject: [PATCH 530/808] [source-mongodb] remove extra check on getDatabaseNames (#48115) --- .../source-mongodb-v2/metadata.yaml | 2 +- .../source/mongodb/MongoDbSource.java | 36 ++++++++----------- .../source/mongodb/MongoUtil.java | 16 --------- .../source/mongodb/MongoDbSourceTest.java | 20 ----------- .../source/mongodb/MongoUtilTest.java | 15 -------- docs/integrations/sources/mongodb-v2.md | 1 + 6 files changed, 17 insertions(+), 73 deletions(-) diff --git a/airbyte-integrations/connectors/source-mongodb-v2/metadata.yaml b/airbyte-integrations/connectors/source-mongodb-v2/metadata.yaml index cb2cc8d32924..50109076da52 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/metadata.yaml +++ b/airbyte-integrations/connectors/source-mongodb-v2/metadata.yaml @@ -8,7 +8,7 @@ data: connectorSubtype: database connectorType: source definitionId: b2e713cd-cc36-4c0a-b5bd-b47cb8a0561e - dockerImageTag: 1.5.11 + dockerImageTag: 1.5.12 dockerRepository: airbyte/source-mongodb-v2 documentationUrl: https://docs.airbyte.com/integrations/sources/mongodb-v2 githubIssueLabel: source-mongodb-v2 diff --git a/airbyte-integrations/connectors/source-mongodb-v2/src/main/java/io/airbyte/integrations/source/mongodb/MongoDbSource.java b/airbyte-integrations/connectors/source-mongodb-v2/src/main/java/io/airbyte/integrations/source/mongodb/MongoDbSource.java index 2eb6d2b212d6..d6f34e4d3e82 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/src/main/java/io/airbyte/integrations/source/mongodb/MongoDbSource.java +++ b/airbyte-integrations/connectors/source-mongodb-v2/src/main/java/io/airbyte/integrations/source/mongodb/MongoDbSource.java @@ -60,27 +60,21 @@ public AirbyteConnectionStatus check(final JsonNode config) { final MongoDbSourceConfig sourceConfig = new MongoDbSourceConfig(config); try (final MongoClient mongoClient = createMongoClient(sourceConfig)) { final String databaseName = sourceConfig.getDatabaseName(); - if (MongoUtil.checkDatabaseExists(mongoClient, databaseName)) { - /* - * Perform the authorized collections check before the cluster type check. The MongoDB Java driver - * needs to actually execute a command in order to fetch the cluster description. Querying for the - * authorized collections guarantees that the cluster description will be available to the driver. - */ - if (MongoUtil.getAuthorizedCollections(mongoClient, databaseName).isEmpty()) { - return new AirbyteConnectionStatus() - .withMessage("Target MongoDB database does not contain any authorized collections.") - .withStatus(AirbyteConnectionStatus.Status.FAILED); - } - if (!ClusterType.REPLICA_SET.equals(mongoClient.getClusterDescription().getType())) { - LOGGER.error("Target MongoDB instance is not a replica set cluster."); - return new AirbyteConnectionStatus() - .withMessage("Target MongoDB instance is not a replica set cluster.") - .withStatus(AirbyteConnectionStatus.Status.FAILED); - } - } else { - LOGGER.error("Unable to perform connection check. Database '" + databaseName + "' does not exist."); - return new AirbyteConnectionStatus().withStatus(AirbyteConnectionStatus.Status.FAILED) - .withMessage("Database does not exist. Please check the source's configured database name."); + /* + * Perform the authorized collections check before the cluster type check. The MongoDB Java driver + * needs to actually execute a command in order to fetch the cluster description. Querying for the + * authorized collections guarantees that the cluster description will be available to the driver. + */ + if (MongoUtil.getAuthorizedCollections(mongoClient, databaseName).isEmpty()) { + return new AirbyteConnectionStatus() + .withMessage("Target MongoDB database does not contain any authorized collections.") + .withStatus(AirbyteConnectionStatus.Status.FAILED); + } + if (!ClusterType.REPLICA_SET.equals(mongoClient.getClusterDescription().getType())) { + LOGGER.error("Target MongoDB instance is not a replica set cluster."); + return new AirbyteConnectionStatus() + .withMessage("Target MongoDB instance is not a replica set cluster.") + .withStatus(AirbyteConnectionStatus.Status.FAILED); } } catch (final MongoSecurityException e) { LOGGER.error("Unable to perform source check operation.", e); diff --git a/airbyte-integrations/connectors/source-mongodb-v2/src/main/java/io/airbyte/integrations/source/mongodb/MongoUtil.java b/airbyte-integrations/connectors/source-mongodb-v2/src/main/java/io/airbyte/integrations/source/mongodb/MongoUtil.java index b2bffab3cbd3..f57fa1ccd8cb 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/src/main/java/io/airbyte/integrations/source/mongodb/MongoUtil.java +++ b/airbyte-integrations/connectors/source-mongodb-v2/src/main/java/io/airbyte/integrations/source/mongodb/MongoUtil.java @@ -18,7 +18,6 @@ import com.mongodb.client.MongoCollection; import com.mongodb.client.MongoCursor; import com.mongodb.client.MongoDatabase; -import com.mongodb.client.MongoIterable; import com.mongodb.client.model.Aggregates; import com.mongodb.client.model.Projections; import io.airbyte.commons.exceptions.ConfigErrorException; @@ -38,7 +37,6 @@ import java.util.Set; import java.util.stream.Collectors; import java.util.stream.Stream; -import java.util.stream.StreamSupport; import org.bson.Document; import org.bson.conversions.Bson; import org.slf4j.Logger; @@ -76,20 +74,6 @@ public class MongoUtil { static final Set SCHEMALESS_FIELDS = Set.of(CDC_UPDATED_AT, CDC_DELETED_AT, DEFAULT_CURSOR_FIELD, DEFAULT_PRIMARY_KEY, SCHEMALESS_MODE_DATA_FIELD); - /** - * Tests whether the database exists in target MongoDB instance. - * - * @param mongoClient The {@link MongoClient} used to query the MongoDB server for the database - * names. - * @param databaseName The database name from the source's configuration. - * @return {@code true} if the database exists, {@code false} otherwise. - */ - public static boolean checkDatabaseExists(final MongoClient mongoClient, final String databaseName) { - final MongoIterable databaseNames = mongoClient.listDatabaseNames(); - return StreamSupport.stream(databaseNames.spliterator(), false) - .anyMatch(name -> name.equalsIgnoreCase(databaseName)); - } - /** * Returns the set of collections that the current credentials are authorized to access. * diff --git a/airbyte-integrations/connectors/source-mongodb-v2/src/test/java/io/airbyte/integrations/source/mongodb/MongoDbSourceTest.java b/airbyte-integrations/connectors/source-mongodb-v2/src/test/java/io/airbyte/integrations/source/mongodb/MongoDbSourceTest.java index b1bc2f484c2a..8967acb09e86 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/src/test/java/io/airbyte/integrations/source/mongodb/MongoDbSourceTest.java +++ b/airbyte-integrations/connectors/source-mongodb-v2/src/test/java/io/airbyte/integrations/source/mongodb/MongoDbSourceTest.java @@ -77,26 +77,6 @@ void testCheckOperation() throws IOException { assertEquals(AirbyteConnectionStatus.Status.SUCCEEDED, airbyteConnectionStatus.getStatus()); } - @Test - void testCheckOperationMissingDatabase() throws IOException { - final ClusterDescription clusterDescription = mock(ClusterDescription.class); - final Document response = Document.parse(MoreResources.readResource("authorized_collections_response.json")); - final MongoDatabase mongoDatabase = mock(MongoDatabase.class); - final MongoIterable iterable = mock(MongoIterable.class); - - when(iterable.spliterator()).thenReturn(List.of("other").spliterator()); - when(mongoClient.listDatabaseNames()).thenReturn(iterable); - - when(clusterDescription.getType()).thenReturn(ClusterType.REPLICA_SET); - when(mongoDatabase.runCommand(any())).thenReturn(response); - when(mongoClient.getDatabase(any())).thenReturn(mongoDatabase); - when(mongoClient.getClusterDescription()).thenReturn(clusterDescription); - - final AirbyteConnectionStatus airbyteConnectionStatus = source.check(airbyteSourceConfig); - assertNotNull(airbyteConnectionStatus); - assertEquals(AirbyteConnectionStatus.Status.FAILED, airbyteConnectionStatus.getStatus()); - } - @Test void testCheckOperationWithMissingConfiguration() throws IOException { final ClusterDescription clusterDescription = mock(ClusterDescription.class); diff --git a/airbyte-integrations/connectors/source-mongodb-v2/src/test/java/io/airbyte/integrations/source/mongodb/MongoUtilTest.java b/airbyte-integrations/connectors/source-mongodb-v2/src/test/java/io/airbyte/integrations/source/mongodb/MongoUtilTest.java index 68b67f3cc7bc..421fbdd49571 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/src/test/java/io/airbyte/integrations/source/mongodb/MongoUtilTest.java +++ b/airbyte-integrations/connectors/source-mongodb-v2/src/test/java/io/airbyte/integrations/source/mongodb/MongoUtilTest.java @@ -37,7 +37,6 @@ import com.mongodb.client.MongoCollection; import com.mongodb.client.MongoCursor; import com.mongodb.client.MongoDatabase; -import com.mongodb.client.MongoIterable; import io.airbyte.commons.exceptions.ConfigErrorException; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.resources.MoreResources; @@ -61,20 +60,6 @@ public class MongoUtilTest { private static final String JSON_TYPE_PROPERTY_NAME = "type"; - @Test - void testCheckDatabaseExists() { - final String databaseName = "test"; - final List databaseNames = List.of("test", "test1", "test2"); - final MongoIterable iterable = mock(MongoIterable.class); - final MongoClient mongoClient = mock(MongoClient.class); - - when(iterable.spliterator()).thenReturn(databaseNames.spliterator()); - when(mongoClient.listDatabaseNames()).thenReturn(iterable); - - assertTrue(MongoUtil.checkDatabaseExists(mongoClient, databaseName)); - assertFalse(MongoUtil.checkDatabaseExists(mongoClient, "other")); - } - @Test void testGetAirbyteStreams() throws IOException { final AggregateIterable aggregateIterable = mock(AggregateIterable.class); diff --git a/docs/integrations/sources/mongodb-v2.md b/docs/integrations/sources/mongodb-v2.md index ee61a645e259..bcb0ecdd9792 100644 --- a/docs/integrations/sources/mongodb-v2.md +++ b/docs/integrations/sources/mongodb-v2.md @@ -199,6 +199,7 @@ For more information regarding configuration parameters, please see [MongoDb Doc | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------------------| +| 1.5.12 | 2024-11-01 | [48115](https://github.com/airbytehq/airbyte/pull/48115) | Remove database name check. | | 1.5.11 | 2024-09-24 | [45883](https://github.com/airbytehq/airbyte/pull/45883) | Lazy init mongocursor to prevent timeout. | | 1.5.10 | 2024-09-17 | [45639](https://github.com/airbytehq/airbyte/pull/45639) | Adopt latest CDK to use the latest apache sshd mina to handle tcpkeepalive requests. | | 1.5.9 | 2024-08-28 | [42927](https://github.com/airbytehq/airbyte/pull/42927) | Support binary subtype. | From ae31af25b6391675667fb8205c8969110953cf34 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Fri, 1 Nov 2024 13:13:37 -0700 Subject: [PATCH 531/808] Bulk load CDK: add complex type tests (#48018) --- .../MockBasicFunctionalityIntegrationTest.kt | 13 + .../io/airbyte/cdk/load/data/AirbyteValue.kt | 2 +- .../cdk/load/data/json/JsonToAirbyteValue.kt | 25 +- .../cdk/load/test/util/RecordDiffer.kt | 3 +- .../BasicFunctionalityIntegrationTest.kt | 437 +++++++++++++++++- .../data/avro/AirbyteValueToAvroRecord.kt | 4 +- .../cdk/load/data/csv/CsvRowToAirbyteValue.kt | 4 +- ...evNullBasicFunctionalityIntegrationTest.kt | 3 + .../destination/s3_v2/S3V2WriteTest.kt | 132 +++++- 9 files changed, 593 insertions(+), 30 deletions(-) diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt index 8eb8c5dc6019..cebaf71bbfff 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt @@ -21,6 +21,9 @@ class MockBasicFunctionalityIntegrationTest : NoopNameMapper, isStreamSchemaRetroactive = false, supportsDedup = true, + stringifySchemalessObjects = false, + promoteUnionToObject = false, + preserveUndeclaredFields = true, ) { @Test override fun testBasicWrite() { @@ -62,4 +65,14 @@ class MockBasicFunctionalityIntegrationTest : override fun testDedup() { super.testDedup() } + + @Test + override fun testContainerTypes() { + super.testContainerTypes() + } + + @Test + override fun testUnions() { + super.testUnions() + } } diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt index 0e9e2cbd123d..65143aaf5eac 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt @@ -148,7 +148,7 @@ value class TimeValue(val value: String) : AirbyteValue, Comparable { @JvmInline value class ArrayValue(val values: List) : AirbyteValue { companion object { - fun from(list: List): ArrayValue = ArrayValue(list.map { it as AirbyteValue }) + fun from(list: List): ArrayValue = ArrayValue(list.map { AirbyteValue.from(it) }) } } diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt index db84e70dd5e0..6145f09e0fb8 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt @@ -40,10 +40,14 @@ class JsonToAirbyteValue { is TimestampTypeWithTimezone, is TimestampTypeWithoutTimezone -> TimestampValue(json.asText()) is UnionType -> toUnion(json, schema.options) - is UnknownType -> UnknownValue("From $schema: $json") + // If we fail to recognize the schema, just pass the json through directly. + // This enables us to more easily add new types, without breaking compatibility + // within existing connections. + is UnknownType -> fromJson(json) } } catch (t: Throwable) { - return UnknownValue(t.message ?: "Unknown error") + // In case of any failure, just pass the json through directly. + return fromJson(json) } } @@ -103,18 +107,13 @@ class JsonToAirbyteValue { if (!json.isObject) { throw IllegalArgumentException("Could not convert $json to Object") } + val objectProperties = LinkedHashMap() + json.fields().forEach { (key, value) -> + val type = schema.properties[key]?.type ?: UnknownType("undeclared field") + objectProperties[key] = convert(value, type) + } - return ObjectValue( - values = - schema.properties - // Note that this will create an ObjectValue where properties in the schema - // might not exist in the value. - // This matches JSON behavior (i.e. explicit null != property not set), - // but we maybe would prefer to set an explicit NullValue. - .filter { (name, _) -> json.has(name) } - .mapValues { (name, field) -> convert(json.get(name), field.type) } - .toMap(LinkedHashMap()) - ) + return ObjectValue(objectProperties) } private fun toObjectWithoutSchema(json: JsonNode): ObjectValue { diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt index b5e260c8268a..2dfe4035b657 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt @@ -297,8 +297,9 @@ class RecordDiffer( } // otherwise, just be a terrible person. // we know these are the same type, so this is safe to do. - else -> + is Comparable<*> -> @Suppress("UNCHECKED_CAST") (v1 as Comparable).compareTo(v2) + else -> if (v1 == v2) 0 else 1 } } } diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt index abcde861434b..a11d8041d4d9 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt @@ -11,14 +11,19 @@ import io.airbyte.cdk.load.command.Dedupe import io.airbyte.cdk.load.command.DestinationCatalog import io.airbyte.cdk.load.command.DestinationStream import io.airbyte.cdk.load.data.AirbyteValue +import io.airbyte.cdk.load.data.ArrayTypeWithoutSchema +import io.airbyte.cdk.load.data.BooleanType import io.airbyte.cdk.load.data.FieldType import io.airbyte.cdk.load.data.IntegerType import io.airbyte.cdk.load.data.IntegerValue import io.airbyte.cdk.load.data.ObjectType +import io.airbyte.cdk.load.data.ObjectTypeWithEmptySchema +import io.airbyte.cdk.load.data.ObjectTypeWithoutSchema import io.airbyte.cdk.load.data.ObjectValue import io.airbyte.cdk.load.data.StringType import io.airbyte.cdk.load.data.StringValue import io.airbyte.cdk.load.data.TimestampTypeWithTimezone +import io.airbyte.cdk.load.data.UnionType import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.message.StreamCheckpoint import io.airbyte.cdk.load.test.util.DestinationCleaner @@ -69,6 +74,9 @@ abstract class BasicFunctionalityIntegrationTest( */ val isStreamSchemaRetroactive: Boolean, val supportsDedup: Boolean, + val stringifySchemalessObjects: Boolean, + val promoteUnionToObject: Boolean, + val preserveUndeclaredFields: Boolean, ) : IntegrationTest(dataDumper, destinationCleaner, recordMangler, nameMapper) { val parsedConfig = ValidatedJsonUtils.parseOne(configSpecClass, configContents) @@ -91,8 +99,6 @@ abstract class BasicFunctionalityIntegrationTest( DestinationRecord( namespace = randomizedNamespace, name = "test_stream", - // The `undeclared` field should be dropped by the destination, because it - // is not present in the stream schema. data = """{"id": 5678, "undeclared": "asdf"}""", emittedAtMs = 1234, changes = @@ -143,7 +149,12 @@ abstract class BasicFunctionalityIntegrationTest( OutputRecord( extractedAt = 1234, generationId = 0, - data = mapOf("id" to 5678), + data = + if (preserveUndeclaredFields) { + mapOf("id" to 5678, "undeclared" to "asdf") + } else { + mapOf("id" to 5678) + }, airbyteMeta = OutputRecord.Meta( changes = @@ -841,6 +852,426 @@ abstract class BasicFunctionalityIntegrationTest( ) } + // TODO basic allTypes() test + + /** + * Some types (object/array) are expected to contain other types. Verify that we handle them + * correctly. + * + * In particular, verify behavior when they don't specify a schema for the values inside them. + * (e.g. `{type: object}` (without an explicit `properties`) / `{type: array}` (without explicit + * `items`). Some destinations can write those types directly; other destinations need to + * serialize them to a JSON string first. + */ + @Test + open fun testContainerTypes() { + assumeTrue(verifyDataWriting) + val stream = + DestinationStream( + DestinationStream.Descriptor(randomizedNamespace, "problematic_types"), + Append, + ObjectType( + linkedMapOf( + "id" to FieldType(IntegerType, nullable = true), + "schematized_object" to + FieldType( + ObjectType( + linkedMapOf( + "id" to FieldType(IntegerType, nullable = true), + "name" to FieldType(StringType, nullable = true), + ) + ), + nullable = true, + ), + "empty_object" to FieldType(ObjectTypeWithEmptySchema, nullable = true), + "schemaless_object" to FieldType(ObjectTypeWithoutSchema, nullable = true), + "schemaless_array" to FieldType(ArrayTypeWithoutSchema, nullable = true), + ), + ), + generationId = 42, + minimumGenerationId = 0, + syncId = 42, + ) + runSync( + configContents, + stream, + listOf( + DestinationRecord( + randomizedNamespace, + "problematic_types", + """ + { + "id": 1, + "schematized_object": { "id": 1, "name": "Joe" }, + "empty_object": {}, + "schemaless_object": { "uuid": "38F52396-736D-4B23-B5B4-F504D8894B97", "probability": 1.5 }, + "schemaless_array": [ 10, "foo", null, { "bar": "qua" } ] + }""".trimIndent(), + emittedAtMs = 1602637589100, + ), + DestinationRecord( + randomizedNamespace, + "problematic_types", + """ + { + "id": 2, + "schematized_object": { "id": 2, "name": "Jane" }, + "empty_object": {"extra": "stuff"}, + "schemaless_object": { "address": { "street": "113 Hickey Rd", "zip": "37932" }, "flags": [ true, false, false ] }, + "schemaless_array": [] + }""".trimIndent(), + emittedAtMs = 1602637589200, + ), + DestinationRecord( + randomizedNamespace, + "problematic_types", + """ + { + "id": 3, + "schematized_object": null, + "empty_object": null, + "schemaless_object": null, + "schemaless_array": null + }""".trimIndent(), + emittedAtMs = 1602637589300, + ), + ) + ) + + val expectedRecords: List = + listOf( + OutputRecord( + extractedAt = 1602637589100, + generationId = 42, + data = + mapOf( + "id" to 1, + "schematized_object" to mapOf("id" to 1, "name" to "Joe"), + "empty_object" to emptyMap(), + "schemaless_object" to + if (stringifySchemalessObjects) { + """{"uuid":"38F52396-736D-4B23-B5B4-F504D8894B97","probability":1.5}""" + } else { + mapOf( + "uuid" to "38F52396-736D-4B23-B5B4-F504D8894B97", + "probability" to 1.5 + ) + }, + "schemaless_array" to + if (stringifySchemalessObjects) { + """[10,"foo",null,{"bar:"qua"}]""" + } else { + listOf(10, "foo", null, mapOf("bar" to "qua")) + }, + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + OutputRecord( + extractedAt = 1602637589200, + generationId = 42, + data = + mapOf( + "id" to 2, + "schematized_object" to mapOf("id" to 2, "name" to "Jane"), + "empty_object" to + if (stringifySchemalessObjects) { + """{"extra":"stuff"}""" + } else { + mapOf("extra" to "stuff") + }, + "schemaless_object" to + if (stringifySchemalessObjects) { + """{"address":{"street":"113 Hickey Rd","zip":"37932"},"flags":[true,false,false]}""" + } else { + mapOf( + "address" to + mapOf( + "street" to "113 Hickey Rd", + "zip" to "37932", + ), + "flags" to listOf(true, false, false) + ) + }, + "schemaless_array" to + if (stringifySchemalessObjects) { + "[]" + } else { + emptyList() + }, + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + OutputRecord( + extractedAt = 1602637589300, + generationId = 42, + data = + mapOf( + "id" to 3, + "schematized_object" to null, + "empty_object" to null, + "schemaless_object" to null, + "schemaless_array" to null, + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + ) + + dumpAndDiffRecords( + parsedConfig, + expectedRecords, + stream, + primaryKey = listOf(listOf("id")), + cursor = null, + ) + } + + /** + * This test verifies that destinations handle unions correctly. + * + * Some destinations have poor native support for union types, and instead promote unions into + * objects. For example, given a schema `Union(String, Integer)`, this field would be written + * into the destination as either `{"string": "foo"}` or `{"integer": 42}`. + */ + @Test + open fun testUnions() { + assumeTrue(verifyDataWriting) + val stream = + DestinationStream( + DestinationStream.Descriptor(randomizedNamespace, "problematic_types"), + Append, + ObjectType( + linkedMapOf( + "id" to FieldType(IntegerType, nullable = true), + // in jsonschema, there are two ways to achieve this: + // {type: [string, int]} + // {oneOf: [{type: string}, {type: int}]} + // Our AirbyteType treats them identically, so we don't need two test cases. + "combined_type" to + FieldType(UnionType(listOf(StringType, IntegerType)), nullable = true), + "union_of_objects_with_properties_identical" to + FieldType( + UnionType( + listOf( + ObjectType( + linkedMapOf( + "id" to FieldType(IntegerType, nullable = true), + "name" to FieldType(StringType, nullable = true), + ) + ), + ObjectType( + linkedMapOf( + "id" to FieldType(IntegerType, nullable = true), + "name" to FieldType(StringType, nullable = true), + ) + ) + ) + ), + nullable = true, + ), + "union_of_objects_with_properties_overlapping" to + FieldType( + UnionType( + listOf( + ObjectType( + linkedMapOf( + "id" to FieldType(IntegerType, nullable = true), + "name" to FieldType(StringType, nullable = true), + ) + ), + ObjectType( + linkedMapOf( + "name" to FieldType(StringType, nullable = true), + "flagged" to + FieldType(BooleanType, nullable = true), + ) + ) + ) + ), + nullable = true, + ), + "union_of_objects_with_properties_nonoverlapping" to + FieldType( + UnionType( + listOf( + ObjectType( + linkedMapOf( + "id" to FieldType(IntegerType, nullable = true), + "name" to FieldType(StringType, nullable = true), + ) + ), + ObjectType( + linkedMapOf( + "flagged" to + FieldType(BooleanType, nullable = true), + "description" to + FieldType(StringType, nullable = true), + ) + ) + ) + ), + nullable = true, + ), + "union_of_objects_with_properties_contradicting" to + FieldType( + UnionType( + listOf( + ObjectType( + linkedMapOf( + "id" to FieldType(IntegerType, nullable = true), + "name" to FieldType(StringType, nullable = true), + ) + ), + ObjectType( + linkedMapOf( + "id" to FieldType(StringType, nullable = true), + "name" to FieldType(StringType, nullable = true), + ) + ) + ) + ), + nullable = true, + ), + ), + ), + generationId = 42, + minimumGenerationId = 0, + syncId = 42, + ) + runSync( + configContents, + stream, + listOf( + DestinationRecord( + randomizedNamespace, + "problematic_types", + """ + { + "id": 1, + "combined_type": "string1", + "union_of_objects_with_properties_identical": { "id": 10, "name": "Joe" }, + "union_of_objects_with_properties_overlapping": { "id": 20, "name": "Jane", "flagged": true }, + "union_of_objects_with_properties_contradicting": { "id": 1, "name": "Jenny" }, + "union_of_objects_with_properties_nonoverlapping": { "id": 30, "name": "Phil", "flagged": false, "description":"Very Phil" } + }""".trimIndent(), + emittedAtMs = 1602637589100, + ), + DestinationRecord( + randomizedNamespace, + "problematic_types", + """ + { + "id": 2, + "combined_type": 20, + "union_of_objects_with_properties_identical": {}, + "union_of_objects_with_properties_overlapping": {}, + "union_of_objects_with_properties_nonoverlapping": {}, + "union_of_objects_with_properties_contradicting": { "id": "seal-one-hippity", "name": "James" } + }""".trimIndent(), + emittedAtMs = 1602637589200, + ), + DestinationRecord( + randomizedNamespace, + "problematic_types", + """ + { + "id": 3, + "combined_type": null, + "union_of_objects_with_properties_identical": null, + "union_of_objects_with_properties_overlapping": null, + "union_of_objects_with_properties_nonoverlapping": null, + "union_of_objects_with_properties_contradicting": null + }""".trimIndent(), + emittedAtMs = 1602637589300, + ), + ) + ) + + fun maybePromote(typeName: String, value: Any?) = + if (promoteUnionToObject) { + mapOf( + "type" to typeName, + typeName to value, + ) + } else { + value + } + val expectedRecords: List = + listOf( + OutputRecord( + extractedAt = 1602637589100, + generationId = 42, + data = + mapOf( + "id" to 1, + "combined_type" to maybePromote("string", "string1"), + "union_of_objects_with_properties_identical" to + maybePromote("object", mapOf("id" to 10, "name" to "Joe")), + "union_of_objects_with_properties_overlapping" to + maybePromote( + "object", + mapOf("id" to 20, "name" to "Jane", "flagged" to true) + ), + "union_of_objects_with_properties_contradicting" to + maybePromote("object", mapOf("id" to 1, "name" to "Jenny")), + "union_of_objects_with_properties_nonoverlapping" to + maybePromote( + "object", + mapOf( + "id" to 30, + "name" to "Phil", + "flagged" to false, + "description" to "Very Phil", + ) + ), + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + OutputRecord( + extractedAt = 1602637589200, + generationId = 42, + data = + mapOf( + "id" to 2, + "combined_type" to maybePromote("integer", 20), + "union_of_objects_with_properties_identical" to + maybePromote("object", emptyMap()), + "union_of_objects_with_properties_nonoverlapping" to + maybePromote("object", emptyMap()), + "union_of_objects_with_properties_overlapping" to + maybePromote("object", emptyMap()), + "union_of_objects_with_properties_contradicting" to + maybePromote( + "object", + mapOf("id" to "seal-one-hippity", "name" to "James") + ), + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + OutputRecord( + extractedAt = 1602637589300, + generationId = 42, + data = + mapOf( + "id" to 3, + "combined_type" to null, + "union_of_objects_with_properties_identical" to null, + "union_of_objects_with_properties_overlapping" to null, + "union_of_objects_with_properties_nonoverlapping" to null, + "union_of_objects_with_properties_contradicting" to null, + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + ) + + dumpAndDiffRecords( + parsedConfig, + expectedRecords, + stream, + primaryKey = listOf(listOf("id")), + cursor = null, + ) + } + companion object { private val intType = FieldType(IntegerType, nullable = true) private val stringType = FieldType(StringType, nullable = true) diff --git a/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteValueToAvroRecord.kt b/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteValueToAvroRecord.kt index cb01f592f90a..c00980bb6871 100644 --- a/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteValueToAvroRecord.kt +++ b/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteValueToAvroRecord.kt @@ -27,7 +27,9 @@ class AirbyteValueToAvroRecord { is ObjectValue -> { val record = GenericData.Record(schema) airbyteValue.values.forEach { (name, value) -> - record.put(name, convert(value, schema.getField(name).schema())) + schema.getField(name)?.let { field -> + record.put(name, convert(value, field.schema())) + } } return record } diff --git a/airbyte-cdk/bulk/toolkits/load-csv/src/testFixtures/kotlin/io/airbyte/cdk/load/data/csv/CsvRowToAirbyteValue.kt b/airbyte-cdk/bulk/toolkits/load-csv/src/testFixtures/kotlin/io/airbyte/cdk/load/data/csv/CsvRowToAirbyteValue.kt index 50c5922a4888..aaa899194cc4 100644 --- a/airbyte-cdk/bulk/toolkits/load-csv/src/testFixtures/kotlin/io/airbyte/cdk/load/data/csv/CsvRowToAirbyteValue.kt +++ b/airbyte-cdk/bulk/toolkits/load-csv/src/testFixtures/kotlin/io/airbyte/cdk/load/data/csv/CsvRowToAirbyteValue.kt @@ -19,6 +19,7 @@ import io.airbyte.cdk.load.data.ObjectTypeWithoutSchema import io.airbyte.cdk.load.data.ObjectValue import io.airbyte.cdk.load.data.StringType import io.airbyte.cdk.load.data.StringValue +import io.airbyte.cdk.load.data.UnknownType import io.airbyte.cdk.load.data.json.toAirbyteValue import io.airbyte.cdk.load.util.deserializeToNode import org.apache.commons.csv.CSVRecord @@ -63,7 +64,8 @@ class CsvRowToAirbyteValue { .fields() .asSequence() .map { entry -> - entry.key to entry.value.toAirbyteValue(field.properties[entry.key]!!.type) + val type = field.properties[entry.key]?.type ?: UnknownType("unknown") + entry.key to entry.value.toAirbyteValue(type) } .toMap(properties) ObjectValue(properties) diff --git a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt index f3eb7195f1bf..13650ff0ac99 100644 --- a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt +++ b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt @@ -19,6 +19,9 @@ class DevNullBasicFunctionalityIntegrationTest : verifyDataWriting = false, isStreamSchemaRetroactive = false, supportsDedup = false, + stringifySchemalessObjects = false, + promoteUnionToObject = false, + preserveUndeclaredFields = false, ) { @Test override fun testBasicWrite() { diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt index f9eb79f78a51..56b6277f2811 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt @@ -10,7 +10,12 @@ import io.airbyte.cdk.load.write.BasicFunctionalityIntegrationTest import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test -abstract class S3V2WriteTest(path: String) : +abstract class S3V2WriteTest( + path: String, + stringifySchemalessObjects: Boolean, + promoteUnionToObject: Boolean, + preserveUndeclaredFields: Boolean, +) : BasicFunctionalityIntegrationTest( S3V2TestUtils.getConfig(path), S3V2Specification::class.java, @@ -19,6 +24,9 @@ abstract class S3V2WriteTest(path: String) : NoopExpectedRecordMapper, isStreamSchemaRetroactive = false, supportsDedup = false, + stringifySchemalessObjects = stringifySchemalessObjects, + promoteUnionToObject = promoteUnionToObject, + preserveUndeclaredFields = preserveUndeclaredFields, ) { @Test override fun testBasicWrite() { @@ -51,21 +59,125 @@ abstract class S3V2WriteTest(path: String) : override fun testTruncateRefresh() { super.testTruncateRefresh() } -} -class S3V2WriteTestJsonUncompressed : S3V2WriteTest(S3V2TestUtils.JSON_UNCOMPRESSED_CONFIG_PATH) + override fun testContainerTypes() { + super.testContainerTypes() + } -class S3V2WriteTestJsonGzip : S3V2WriteTest(S3V2TestUtils.JSON_GZIP_CONFIG_PATH) + @Test + override fun testUnions() { + super.testUnions() + } +} -class S3V2WriteTestCsvUncompressed : S3V2WriteTest(S3V2TestUtils.CSV_UNCOMPRESSED_CONFIG_PATH) +class S3V2WriteTestJsonUncompressed : + S3V2WriteTest( + S3V2TestUtils.JSON_UNCOMPRESSED_CONFIG_PATH, + stringifySchemalessObjects = false, + promoteUnionToObject = false, + preserveUndeclaredFields = true, + ) + +class S3V2WriteTestJsonGzip : + S3V2WriteTest( + S3V2TestUtils.JSON_GZIP_CONFIG_PATH, + stringifySchemalessObjects = false, + promoteUnionToObject = false, + preserveUndeclaredFields = true, + ) + +class S3V2WriteTestCsvUncompressed : + S3V2WriteTest( + S3V2TestUtils.CSV_UNCOMPRESSED_CONFIG_PATH, + stringifySchemalessObjects = false, + promoteUnionToObject = false, + preserveUndeclaredFields = true, + ) + +class S3V2WriteTestCsvGzip : + S3V2WriteTest( + S3V2TestUtils.CSV_GZIP_CONFIG_PATH, + stringifySchemalessObjects = false, + promoteUnionToObject = false, + preserveUndeclaredFields = true, + ) + +class S3V2WriteTestAvroUncompressed : + S3V2WriteTest( + S3V2TestUtils.AVRO_UNCOMPRESSED_CONFIG_PATH, + stringifySchemalessObjects = true, + promoteUnionToObject = false, + preserveUndeclaredFields = false, + ) { + @Disabled("Not yet working") + @Test + override fun testContainerTypes() { + super.testContainerTypes() + } -class S3V2WriteTestCsvGzip : S3V2WriteTest(S3V2TestUtils.CSV_GZIP_CONFIG_PATH) + @Disabled("Not yet working") + @Test + override fun testUnions() { + super.testUnions() + } +} -class S3V2WriteTestAvroUncompressed : S3V2WriteTest(S3V2TestUtils.AVRO_UNCOMPRESSED_CONFIG_PATH) +class S3V2WriteTestAvroBzip2 : + S3V2WriteTest( + S3V2TestUtils.AVRO_BZIP2_CONFIG_PATH, + stringifySchemalessObjects = true, + promoteUnionToObject = false, + preserveUndeclaredFields = false, + ) { + @Disabled("Not yet working") + @Test + override fun testContainerTypes() { + super.testContainerTypes() + } -class S3V2WriteTestAvroBzip2 : S3V2WriteTest(S3V2TestUtils.AVRO_BZIP2_CONFIG_PATH) + @Disabled("Not yet working") + @Test + override fun testUnions() { + super.testUnions() + } +} class S3V2WriteTestParquetUncompressed : - S3V2WriteTest(S3V2TestUtils.PARQUET_UNCOMPRESSED_CONFIG_PATH) + S3V2WriteTest( + S3V2TestUtils.PARQUET_UNCOMPRESSED_CONFIG_PATH, + stringifySchemalessObjects = true, + promoteUnionToObject = true, + preserveUndeclaredFields = false, + ) { + @Disabled("Not yet working") + @Test + override fun testContainerTypes() { + super.testContainerTypes() + } + + @Disabled("Not yet working") + @Test + override fun testUnions() { + super.testUnions() + } +} -class S3V2WriteTestParquetSnappy : S3V2WriteTest(S3V2TestUtils.PARQUET_SNAPPY_CONFIG_PATH) +class S3V2WriteTestParquetSnappy : + S3V2WriteTest( + S3V2TestUtils.PARQUET_SNAPPY_CONFIG_PATH, + stringifySchemalessObjects = true, + promoteUnionToObject = true, + preserveUndeclaredFields = false, + ) { + @Disabled("Not yet working") + @Test + override fun testContainerTypes() { + super.testContainerTypes() + } + + @Disabled("Not yet working") + @Test + override fun testUnions() { + super.testUnions() + } +} From f96215034c8591a0e9a6e070ce86e6e547e70e34 Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Fri, 1 Nov 2024 13:32:37 -0700 Subject: [PATCH 532/808] Bulk Load CDK: Object Storage Dst State from Metadata (#48090) --- .../airbyte/cdk/load/file/StreamProcessor.kt | 3 +- .../object_storage/ObjectStorageClient.kt | 1 + .../ObjectStoragePathFactory.kt | 153 +++++++++-- .../ObjectStorageDestinationStateManager.kt | 55 +++- .../ObjectStorageStreamLoaderFactory.kt | 18 +- .../ObjectStoragePathFactoryTest.kt | 133 +++++++--- .../ObjectStorageDestinationStateTest.kt | 248 ++++++++++++------ .../cdk/load/MockObjectStorageClient.kt | 10 +- .../io/airbyte/cdk/load/MockPathFactory.kt | 21 +- .../load/command/s3/S3PathSpecification.kt | 15 +- .../io/airbyte/cdk/load/file/s3/S3Client.kt | 7 +- .../destination-s3-v2/metadata.yaml | 7 +- .../src/main/kotlin/S3V2Checker.kt | 12 +- .../src/main/kotlin/S3V2Specification.kt | 2 +- .../destination/s3_v2/S3V2CheckTest.kt | 4 + .../destination/s3_v2/S3V2TestUtils.kt | 1 + .../destination/s3_v2/S3V2WriteTest.kt | 8 + .../resources/expected-spec-cloud.json | 6 + .../resources/expected-spec-oss.json | 6 + 19 files changed, 541 insertions(+), 169 deletions(-) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/file/StreamProcessor.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/file/StreamProcessor.kt index 1edc10a2c366..5aaaea338621 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/file/StreamProcessor.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/file/StreamProcessor.kt @@ -5,9 +5,10 @@ package io.airbyte.cdk.load.file import java.io.ByteArrayOutputStream +import java.io.OutputStream import java.util.zip.GZIPOutputStream -interface StreamProcessor { +interface StreamProcessor { val wrapper: (ByteArrayOutputStream) -> T val partFinisher: T.() -> Unit val extension: String? diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt index fec24d185bf6..64da1c4f3130 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageClient.kt @@ -28,6 +28,7 @@ interface ObjectStorageClient> { */ suspend fun streamingUpload( key: String, + metadata: Map = emptyMap(), streamProcessor: StreamProcessor? = null, block: suspend (OutputStream) -> Unit ): T diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt index 5f2fa9994fce..aeffbb18a949 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactory.kt @@ -29,8 +29,24 @@ interface PathFactory { isStaging: Boolean = false, extension: String? = null ): Path + fun getPathMatcher(stream: DestinationStream): PathMatcher + + val supportsStaging: Boolean + val prefix: String +} + +data class PathMatcher(val regex: Regex, val variableToIndex: Map) { + fun match(path: String): PathMatcherResult? { + val match = regex.matchEntire(path) ?: return null + return PathMatcherResult( + path, + variableToIndex["part_number"]?.let { match.groupValues[it].toLong() } + ) + } } +data class PathMatcherResult(val path: String, val partNumber: Long?) + @Singleton @Secondary class ObjectStoragePathFactory( @@ -41,6 +57,11 @@ class ObjectStoragePathFactory( ) : PathFactory { private val loadedAt = timeProvider.let { Instant.ofEpochMilli(it.currentTimeMillis()) } private val pathConfig = pathConfigProvider.objectStoragePathConfiguration + private val stagingPrefixResolved = + pathConfig.stagingPrefix + ?: Paths.get(pathConfig.prefix, DEFAULT_STAGING_PREFIX_SUFFIX).toString() + private val pathPatternResolved = pathConfig.pathSuffixPattern ?: DEFAULT_PATH_FORMAT + private val filePatternResolved = pathConfig.fileNamePattern ?: DEFAULT_FILE_FORMAT private val fileFormatExtension = formatConfigProvider?.objectStorageFormatConfiguration?.extension private val compressionExtension = @@ -52,6 +73,41 @@ class ObjectStoragePathFactory( fileFormatExtension ?: compressionExtension } + private val stagingPrefix: String + get() { + if (!pathConfig.usesStagingDirectory) { + throw UnsupportedOperationException( + "Staging is not supported by this configuration" + ) + } + return stagingPrefixResolved + } + + override val supportsStaging: Boolean + get() = pathConfig.usesStagingDirectory + override val prefix: String + get() = pathConfig.prefix + + /** + * Variable substitution is complex. + * + * 1. There are two types: path variables and file name variables. + * 2. Path variables use the ${NAME} syntax, while file name variables use the {name} syntax. (I + * have no idea why this is.) + * 3. A variable is defined by a [Variable.pattern] and a [Variable.provider] + * 4. [Variable.provider] is a function that takes a [VariableContext] and returns a string. + * It's used for substitution to get the actual path. + * 5. [Variable.pattern] is a regex pattern that can match any results of [Variable.provider]. + * 6. If [Variable.pattern] is null, [Variable.provider] is used to get the value. (Ie, we won't + * match against a pattern, but always against the realized value. In practice this is for + * stream name and namespace, because matching always performed at the stream level.) + * 7. Matching should be considered deprecated. It is only required for configurations that do + * not enable staging, which populate destination state by collecting metadata from object + * headers. It is extremely brittle and can break against malformed paths or paths that do not + * include enough variables to avoid clashes. If you run into a client issue which requires a + * path change anyway (a breaking change for some workflows), consider advising them to enable + * staging. + */ inner class VariableContext( val stream: DestinationStream, val time: Instant = loadedAt, @@ -60,7 +116,9 @@ class ObjectStoragePathFactory( ) interface Variable { + val pattern: String? val provider: (VariableContext) -> String + fun toMacro(): String fun maybeApply(source: String, context: VariableContext): String { val macro = toMacro() @@ -73,14 +131,16 @@ class ObjectStoragePathFactory( data class PathVariable( val variable: String, - override val provider: (VariableContext) -> String + override val pattern: String? = null, + override val provider: (VariableContext) -> String, ) : Variable { override fun toMacro(): String = "\${$variable}" } data class FileVariable( val variable: String, - override val provider: (VariableContext) -> String + override val pattern: String? = null, + override val provider: (VariableContext) -> String, ) : Variable { override fun toMacro(): String = "{$variable}" } @@ -97,31 +157,31 @@ class ObjectStoragePathFactory( listOf( PathVariable("NAMESPACE") { it.stream.descriptor.namespace ?: "" }, PathVariable("STREAM_NAME") { it.stream.descriptor.name }, - PathVariable("YEAR") { + PathVariable("YEAR", """\d{4}""") { ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).year.toString() }, - PathVariable("MONTH") { + PathVariable("MONTH", """\d{2}""") { String.format( "%02d", ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).monthValue ) }, - PathVariable("DAY") { + PathVariable("DAY", """\d{2}""") { String.format( "%02d", ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).dayOfMonth ) }, - PathVariable("HOUR") { + PathVariable("HOUR", """\d{2}""") { String.format("%02d", ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).hour) }, - PathVariable("MINUTE") { + PathVariable("MINUTE", """\d{2}""") { String.format("%02d", ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).minute) }, - PathVariable("SECOND") { + PathVariable("SECOND", """\d{2}""") { String.format("%02d", ZonedDateTime.ofInstant(it.time, ZoneId.of("UTC")).second) }, - PathVariable("MILLISECOND") { + PathVariable("MILLISECOND", """\d{4}""") { // Unclear why this is %04d, but that's what it was in the old code String.format( "%04d", @@ -130,20 +190,20 @@ class ObjectStoragePathFactory( .toNanoOfDay() / 1_000_000 % 1_000 ) }, - PathVariable("EPOCH") { it.time.toEpochMilli().toString() }, - PathVariable("UUID") { UUID.randomUUID().toString() } + PathVariable("EPOCH", """\d+""") { it.time.toEpochMilli().toString() }, + PathVariable("UUID", """[a-fA-F0-9\\-]{36}""") { UUID.randomUUID().toString() } ) val FILENAME_VARIABLES = listOf( - FileVariable("date") { DATE_FORMATTER.format(it.time) }, - FileVariable("timestamp") { it.time.toEpochMilli().toString() }, - FileVariable("part_number") { + FileVariable("date", """\d{4}_\d{2}_\d{2}""") { DATE_FORMATTER.format(it.time) }, + FileVariable("timestamp", """\d+""") { it.time.toEpochMilli().toString() }, + FileVariable("part_number", """\d+""") { it.partNumber?.toString() ?: throw IllegalArgumentException( "part_number is required when {part_number} is present" ) }, - FileVariable("sync_id") { it.stream.syncId.toString() }, + FileVariable("sync_id", """\d+""") { it.stream.syncId.toString() }, FileVariable("format_extension") { it.extension?.let { ext -> ".$ext" } ?: "" } ) @@ -159,16 +219,13 @@ class ObjectStoragePathFactory( } override fun getStagingDirectory(stream: DestinationStream): Path { - val prefix = - pathConfig.stagingPrefix - ?: Paths.get(pathConfig.prefix, DEFAULT_STAGING_PREFIX_SUFFIX).toString() val path = getFormattedPath(stream) - return Paths.get(prefix, path) + return Paths.get(stagingPrefix, path) } override fun getFinalDirectory(stream: DestinationStream): Path { val path = getFormattedPath(stream) - return Paths.get(pathConfig.prefix, path) + return Paths.get(prefix, path) } override fun getPathToFile( @@ -191,15 +248,67 @@ class ObjectStoragePathFactory( } private fun getFormattedPath(stream: DestinationStream): String { - val pattern = pathConfig.pathSuffixPattern ?: DEFAULT_PATH_FORMAT + val pattern = pathPatternResolved val context = VariableContext(stream) return PATH_VARIABLES.fold(pattern) { acc, variable -> variable.maybeApply(acc, context) } } private fun getFormattedFileName(context: VariableContext): String { - val pattern = pathConfig.fileNamePattern ?: DEFAULT_FILE_FORMAT + val pattern = filePatternResolved return FILENAME_VARIABLES.fold(pattern) { acc, variable -> variable.maybeApply(acc, context) } } + + private fun getPathVariableToPattern(stream: DestinationStream): Map { + return PATH_VARIABLES.associate { + it.variable to (it.pattern ?: it.provider(VariableContext(stream))) + } + + FILENAME_VARIABLES.associate { + it.variable to + (it.pattern + ?: it.provider(VariableContext(stream, extension = defaultExtension))) + } + } + + private fun buildPattern( + input: String, + macroPattern: String, + variableToPattern: Map, + variableToIndex: MutableMap + ): String { + return Regex.escapeReplacement(input).replace(macroPattern.toRegex()) { + val variable = it.groupValues[1] + val pattern = variableToPattern[variable] + if (pattern != null) { + variableToIndex[variable] = variableToIndex.size + 1 + "($pattern)" + } else { + variable + } + } + } + + override fun getPathMatcher(stream: DestinationStream): PathMatcher { + val pathVariableToPattern = getPathVariableToPattern(stream) + val variableToIndex = mutableMapOf() + + val replacedForPath = + buildPattern( + pathPatternResolved, + """\\\$\{(\w+)}""", + pathVariableToPattern, + variableToIndex + ) + val replacedForFile = + buildPattern( + filePatternResolved, + """\{(\w+)}""", + pathVariableToPattern, + variableToIndex + ) + val combined = Path.of(prefix).resolve(replacedForPath).resolve(replacedForFile).toString() + + return PathMatcher(Regex(combined), variableToIndex) + } } diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateManager.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateManager.kt index 5dac7e167c2e..e70448e8635d 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateManager.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateManager.kt @@ -10,6 +10,7 @@ import edu.umd.cs.findbugs.annotations.SuppressFBWarnings import io.airbyte.cdk.load.command.DestinationStream import io.airbyte.cdk.load.file.object_storage.ObjectStorageClient import io.airbyte.cdk.load.file.object_storage.PathFactory +import io.airbyte.cdk.load.file.object_storage.RemoteObject import io.airbyte.cdk.load.state.DestinationState import io.airbyte.cdk.load.state.DestinationStatePersister import io.airbyte.cdk.load.util.serializeToJsonBytes @@ -18,11 +19,14 @@ import io.github.oshai.kotlinlogging.KotlinLogging import io.micronaut.context.annotation.Factory import io.micronaut.context.annotation.Secondary import jakarta.inject.Singleton +import kotlinx.coroutines.flow.mapNotNull +import kotlinx.coroutines.flow.toList import kotlinx.coroutines.sync.Mutex import kotlinx.coroutines.sync.withLock @SuppressFBWarnings("NP_NONNULL_PARAM_VIOLATION", justification = "Kotlin async continuation") class ObjectStorageDestinationState( + // (State -> (GenerationId -> (Key -> PartNumber))) @JsonProperty("generations_by_state") var generationMap: MutableMap>> = mutableMapOf(), @@ -32,6 +36,13 @@ class ObjectStorageDestinationState( FINALIZED } + companion object { + const val METADATA_GENERATION_ID_KEY = "ab-generation-id" + + fun metadataFor(stream: DestinationStream): Map = + mapOf(METADATA_GENERATION_ID_KEY to stream.generationId.toString()) + } + @JsonIgnore private val accessLock = Mutex() suspend fun addObject( @@ -124,13 +135,51 @@ class ObjectStorageStagingPersister( } } -@Factory -class ObjectStorageDestinationStatePersisterFactory( +@SuppressFBWarnings("NP_NONNULL_PARAM_VIOLATION", justification = "Kotlin async continuation") +class ObjectStorageFallbackPersister( private val client: ObjectStorageClient<*>, private val pathFactory: PathFactory +) : DestinationStatePersister { + override suspend fun load(stream: DestinationStream): ObjectStorageDestinationState { + val prefix = pathFactory.prefix + val matcher = pathFactory.getPathMatcher(stream) + client + .list(prefix) + .mapNotNull { matcher.match(it.key) } + .toList() + .groupBy { + client + .getMetadata(it.path)[ObjectStorageDestinationState.METADATA_GENERATION_ID_KEY] + ?.toLong() + ?: 0L + } + .mapValues { (_, matches) -> + matches.associate { it.path to (it.partNumber ?: 0L) }.toMutableMap() + } + .toMutableMap() + .let { + return ObjectStorageDestinationState( + mutableMapOf(ObjectStorageDestinationState.State.FINALIZED to it) + ) + } + } + + override suspend fun persist(stream: DestinationStream, state: ObjectStorageDestinationState) { + // No-op; state is persisted when the generation id is set on the object metadata + } +} + +@Factory +class ObjectStorageDestinationStatePersisterFactory>( + private val client: ObjectStorageClient, + private val pathFactory: PathFactory ) { @Singleton @Secondary fun create(): DestinationStatePersister = - ObjectStorageStagingPersister(client, pathFactory) + if (pathFactory.supportsStaging) { + ObjectStorageStagingPersister(client, pathFactory) + } else { + ObjectStorageFallbackPersister(client, pathFactory) + } } diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/write/object_storage/ObjectStorageStreamLoaderFactory.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/write/object_storage/ObjectStorageStreamLoaderFactory.kt index 028fda725672..a524724bceb3 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/write/object_storage/ObjectStorageStreamLoaderFactory.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/write/object_storage/ObjectStorageStreamLoaderFactory.kt @@ -74,10 +74,6 @@ class ObjectStorageStreamLoader, U : OutputStream>( val state = destinationStateManager.getState(stream) val maxPartNumber = state.generations - .map { - println(it) - it - } .filter { it.generationId >= stream.minimumGenerationId } .mapNotNull { it.objects.maxOfOrNull { obj -> obj.partNumber } } .maxOrNull() @@ -90,20 +86,28 @@ class ObjectStorageStreamLoader, U : OutputStream>( totalSizeBytes: Long ): Batch { val partNumber = partNumber.getAndIncrement() - val key = pathFactory.getPathToFile(stream, partNumber, isStaging = true).toString() + val key = + pathFactory + .getPathToFile(stream, partNumber, isStaging = pathFactory.supportsStaging) + .toString() log.info { "Writing records to $key" } val state = destinationStateManager.getState(stream) state.addObject(stream.generationId, key, partNumber) + val metadata = ObjectStorageDestinationState.metadataFor(stream) val obj = - client.streamingUpload(key, streamProcessor = compressor) { outputStream -> + client.streamingUpload(key, metadata, streamProcessor = compressor) { outputStream -> writerFactory.create(stream, outputStream).use { writer -> records.forEach { writer.accept(it) } } } log.info { "Finished writing records to $key" } - return StagedObject(remoteObject = obj, partNumber = partNumber) + return if (pathFactory.supportsStaging) { + StagedObject(remoteObject = obj, partNumber = partNumber) + } else { + FinalizedObject(remoteObject = obj) + } } @Suppress("UNCHECKED_CAST") diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt index 1c9f498d3d3b..7c737330af71 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStoragePathFactoryTest.kt @@ -16,31 +16,23 @@ import io.airbyte.cdk.load.file.GZIPProcessor import io.airbyte.cdk.load.file.MockTimeProvider import io.airbyte.cdk.load.file.TimeProvider import io.micronaut.context.annotation.Primary +import io.micronaut.context.annotation.Property import io.micronaut.context.annotation.Requires import io.micronaut.test.extensions.junit5.annotation.MicronautTest -import jakarta.inject.Inject import jakarta.inject.Singleton import java.time.LocalDateTime import java.time.ZoneId import java.time.format.DateTimeFormatter import java.util.zip.GZIPOutputStream import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Nested import org.junit.jupiter.api.Test -@MicronautTest( - environments = - [ - "ObjectStoragePathFactoryTest", - "MockDestinationCatalog", - ] -) class ObjectStoragePathFactoryTest { - @Inject lateinit var timeProvider: TimeProvider - @Singleton @Primary @Requires(env = ["ObjectStoragePathFactoryTest"]) - class PathTimeProvider : MockTimeProvider() { + class PathTimeProvider : MockTimeProvider(), TimeProvider { init { val dateTime = LocalDateTime.parse( @@ -56,6 +48,7 @@ class ObjectStoragePathFactoryTest { @Singleton @Primary @Requires(env = ["ObjectStoragePathFactoryTest"]) + @Requires(property = "object-storage-path-factory-test.use-staging", value = "true") class MockPathConfigProvider : ObjectStoragePathConfigurationProvider { override val objectStoragePathConfiguration: ObjectStoragePathConfiguration = ObjectStoragePathConfiguration( @@ -68,6 +61,17 @@ class ObjectStoragePathFactoryTest { ) } + @Singleton + @Primary + @Requires(env = ["ObjectStoragePathFactoryTest"]) + @Requires(property = "object-storage-path-factory-test.use-staging", value = "false") + class MockPathConfigProviderWithoutStaging : ObjectStoragePathConfigurationProvider { + override val objectStoragePathConfiguration: ObjectStoragePathConfiguration = + MockPathConfigProvider() + .objectStoragePathConfiguration + .copy(usesStagingDirectory = false) + } + @Singleton @Primary @Requires(env = ["ObjectStoragePathFactoryTest"]) @@ -86,28 +90,89 @@ class ObjectStoragePathFactoryTest { ObjectStorageCompressionConfiguration(compressor = GZIPProcessor) } - @Test - fun testBasicBehavior(pathFactory: ObjectStoragePathFactory) { - val epochMilli = timeProvider.currentTimeMillis() - val stream1 = MockDestinationCatalogFactory.stream1 - val (namespace, name) = stream1.descriptor - val prefixOnly = "prefix/$namespace/$name/2020/01/02/03/04/05/0678/$epochMilli" - val fileName = "2020_01_02-1577934245678-173-42.jsonl.gz" - Assertions.assertEquals( - "staging/$prefixOnly", - pathFactory.getStagingDirectory(stream1).toString(), - ) - Assertions.assertEquals( - prefixOnly, - pathFactory.getFinalDirectory(stream1).toString(), - ) - Assertions.assertEquals( - "staging/$prefixOnly/$fileName", - pathFactory.getPathToFile(stream1, 173, true).toString(), - ) - Assertions.assertEquals( - "$prefixOnly/$fileName", - pathFactory.getPathToFile(stream1, 173, false).toString(), - ) + @Nested + @MicronautTest( + environments = + [ + "ObjectStoragePathFactoryTest", + "MockDestinationCatalog", + ], + ) + @Property(name = "object-storage-path-factory-test.use-staging", value = "true") + inner class ObjectStoragePathFactoryTestWithStaging { + @Test + fun testBasicBehavior(pathFactory: ObjectStoragePathFactory, timeProvider: TimeProvider) { + val epochMilli = timeProvider.currentTimeMillis() + val stream1 = MockDestinationCatalogFactory.stream1 + val (namespace, name) = stream1.descriptor + val prefixOnly = "prefix/$namespace/$name/2020/01/02/03/04/05/0678/$epochMilli" + val fileName = "2020_01_02-1577934245678-173-42.jsonl.gz" + Assertions.assertEquals( + "staging/$prefixOnly", + pathFactory.getStagingDirectory(stream1).toString(), + ) + Assertions.assertEquals( + prefixOnly, + pathFactory.getFinalDirectory(stream1).toString(), + ) + Assertions.assertEquals( + "staging/$prefixOnly/$fileName", + pathFactory.getPathToFile(stream1, 173, true).toString(), + ) + Assertions.assertEquals( + "$prefixOnly/$fileName", + pathFactory.getPathToFile(stream1, 173, false).toString(), + ) + } + + @Test + fun testPathMatchingPattern( + pathFactory: ObjectStoragePathFactory, + timeProvider: TimeProvider + ) { + val epochMilli = timeProvider.currentTimeMillis() + val stream1 = MockDestinationCatalogFactory.stream1 + val (namespace, name) = stream1.descriptor + val expectedToMatch = + "prefix/$namespace/$name/2020/01/02/03/04/05/0678/$epochMilli/2020_01_02-1577934245678-173-42.jsonl.gz" + val match = pathFactory.getPathMatcher(stream1).match(expectedToMatch) + Assertions.assertTrue(match != null) + Assertions.assertTrue(match?.partNumber == 173L) + } + } + + @Nested + @MicronautTest( + environments = + [ + "ObjectStoragePathFactoryTest", + "MockDestinationCatalog", + ], + ) + @Property(name = "object-storage-path-factory-test.use-staging", value = "false") + inner class ObjectStoragePathFactoryTestWithoutStaging { + @Test + fun testBasicBehavior(pathFactory: ObjectStoragePathFactory, timeProvider: TimeProvider) { + val epochMilli = timeProvider.currentTimeMillis() + val stream1 = MockDestinationCatalogFactory.stream1 + val (namespace, name) = stream1.descriptor + val prefixOnly = "prefix/$namespace/$name/2020/01/02/03/04/05/0678/$epochMilli" + val fileName = "2020_01_02-1577934245678-173-42.jsonl.gz" + Assertions.assertEquals( + prefixOnly, + pathFactory.getFinalDirectory(stream1).toString(), + ) + Assertions.assertEquals( + "$prefixOnly/$fileName", + pathFactory.getPathToFile(stream1, 173, false).toString(), + ) + + Assertions.assertThrows(UnsupportedOperationException::class.java) { + pathFactory.getStagingDirectory(stream1) + } + Assertions.assertThrows(UnsupportedOperationException::class.java) { + pathFactory.getPathToFile(stream1, 173, true) + } + } } } diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateTest.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateTest.kt index 4e7fb407379e..ae7f682ee038 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateTest.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/test/kotlin/io/airbyte/cdk/load/state/object_storage/ObjectStorageDestinationStateTest.kt @@ -7,28 +7,27 @@ package io.airbyte.cdk.load.state.object_storage import io.airbyte.cdk.load.MockObjectStorageClient import io.airbyte.cdk.load.MockPathFactory import io.airbyte.cdk.load.command.MockDestinationCatalogFactory +import io.airbyte.cdk.load.file.NoopProcessor import io.airbyte.cdk.load.state.DestinationStateManager +import io.micronaut.context.annotation.Primary +import io.micronaut.context.annotation.Property +import io.micronaut.context.annotation.Requires import io.micronaut.test.extensions.junit5.annotation.MicronautTest -import jakarta.inject.Inject +import jakarta.inject.Singleton import kotlinx.coroutines.flow.toList import kotlinx.coroutines.test.runTest import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Nested import org.junit.jupiter.api.Test -@MicronautTest( - rebuildContext = true, - environments = - [ - "ObjectStorageDestinationStateTest", - "MockDestinationCatalog", - "MockObjectStorageClient", - "MockPathFactory" - ] -) class ObjectStorageDestinationStateTest { - @Inject lateinit var stateManager: DestinationStateManager - @Inject lateinit var mockClient: MockObjectStorageClient - @Inject lateinit var pathFactory: MockPathFactory + @Singleton + @Requires(env = ["ObjectStorageDestinationStateTest"]) + data class Dependencies( + val stateManager: DestinationStateManager, + val mockClient: MockObjectStorageClient, + val pathFactory: MockPathFactory + ) companion object { val stream1 = MockDestinationCatalogFactory.stream1 @@ -36,82 +35,163 @@ class ObjectStorageDestinationStateTest { """{"generations_by_state":{"FINALIZED":{"0":{"key1":0,"key2":1},"1":{"key3":0,"key4":1}}}}""" } - @Test - fun testBasicLifecycle() = runTest { - // TODO: Test fallback to generation id - val state = stateManager.getState(stream1) - Assertions.assertEquals( - emptyList(), - state.generations.toList(), - "state should initially be empty" - ) - state.addObject(0, "key1", 0) - state.addObject(0, "key2", 1) - state.addObject(1, "key3", 0) - state.addObject(1, "key4", 1) - Assertions.assertEquals( - 4, - state.generations.flatMap { it.objects }.toList().size, - "state should contain 4 objects" - ) + @Singleton + @Primary + @Requires(property = "object-storage-destination-state-test.use-staging", value = "true") + class MockPathFactoryWithStaging : MockPathFactory() { + override var doSupportStaging = true + } + + @Singleton + @Primary + @Requires(property = "object-storage-destination-state-test.use-staging", value = "false") + class MockPathFactoryWithoutStaging : MockPathFactory() { + override var doSupportStaging = false + } - stateManager.persistState(stream1) - val obj = mockClient.list("").toList().first() - val data = mockClient.get(obj.key) { it.readBytes() } - Assertions.assertEquals( - PERSISTED, - data.toString(Charsets.UTF_8), - "state should be persisted" - ) + @Nested + @MicronautTest( + rebuildContext = true, + environments = + [ + "ObjectStorageDestinationStateTest", + "MockObjectStorageClient", + "MockDestinationCatalog", + ], + ) + @Property(name = "object-storage-destination-state-test.use-staging", value = "true") + inner class ObjectStorageDestinationStateTestStaging { + @Test + fun testBasicLifecycle(d: Dependencies) = runTest { + // TODO: Test fallback to generation id + val state = d.stateManager.getState(stream1) + Assertions.assertEquals( + emptyList(), + state.generations.toList(), + "state should initially be empty" + ) + state.addObject(0, "key1", 0) + state.addObject(0, "key2", 1) + state.addObject(1, "key3", 0) + state.addObject(1, "key4", 1) + Assertions.assertEquals( + 4, + state.generations.flatMap { it.objects }.toList().size, + "state should contain 4 objects" + ) - state.removeObject(0, "key1") - state.removeObject(0, "key2") - state.removeObject(1, "key3") - state.removeObject(1, "key4") - Assertions.assertEquals( - emptyList(), - state.generations.flatMap { it.objects }.toList(), - "objects should be removed" - ) + d.stateManager.persistState(stream1) + val obj = d.mockClient.list("").toList().first() + val data = d.mockClient.get(obj.key) { it.readBytes() } + Assertions.assertEquals( + PERSISTED, + data.toString(Charsets.UTF_8), + "state should be persisted" + ) - val fetchedState = stateManager.getState(stream1) - Assertions.assertEquals( - 0, - fetchedState.generations.flatMap { it.objects }.toList().size, - "state should still contain 0 objects (managed state is in cache)" - ) - } + state.removeObject(0, "key1") + state.removeObject(0, "key2") + state.removeObject(1, "key3") + state.removeObject(1, "key4") + Assertions.assertEquals( + emptyList(), + state.generations.flatMap { it.objects }.toList(), + "objects should be removed" + ) - @Test - fun testLoadingExistingState() = runTest { - val key = - pathFactory - .getStagingDirectory(stream1) - .resolve(ObjectStorageStagingPersister.STATE_FILENAME) - .toString() - mockClient.put(key, PERSISTED.toByteArray()) - val state = stateManager.getState(stream1) - Assertions.assertEquals( - listOf( - ObjectStorageDestinationState.Generation( - false, - 0, - listOf( - ObjectStorageDestinationState.ObjectAndPart("key1", 0), - ObjectStorageDestinationState.ObjectAndPart("key2", 1) + val fetchedState = d.stateManager.getState(stream1) + Assertions.assertEquals( + 0, + fetchedState.generations.flatMap { it.objects }.toList().size, + "state should still contain 0 objects (managed state is in cache)" + ) + } + + @Test + fun testLoadingExistingState(d: Dependencies) = runTest { + val key = + d.pathFactory + .getStagingDirectory(stream1) + .resolve(ObjectStorageStagingPersister.STATE_FILENAME) + .toString() + d.mockClient.put(key, PERSISTED.toByteArray()) + val state = d.stateManager.getState(stream1) + Assertions.assertEquals( + listOf( + ObjectStorageDestinationState.Generation( + false, + 0, + listOf( + ObjectStorageDestinationState.ObjectAndPart("key1", 0), + ObjectStorageDestinationState.ObjectAndPart("key2", 1) + ) + ), + ObjectStorageDestinationState.Generation( + false, + 1, + listOf( + ObjectStorageDestinationState.ObjectAndPart("key3", 0), + ObjectStorageDestinationState.ObjectAndPart("key4", 1) + ) ) ), - ObjectStorageDestinationState.Generation( - false, - 1, - listOf( - ObjectStorageDestinationState.ObjectAndPart("key3", 0), - ObjectStorageDestinationState.ObjectAndPart("key4", 1) - ) + state.generations.toList(), + "state should be loaded from storage" + ) + } + } + + @Nested + @MicronautTest( + environments = + [ + "ObjectStorageDestinationStateTest", + "MockObjectStorageClient", + "MockDestinationCatalog", + ], + ) + @Property(name = "object-storage-destination-state-test.use-staging", value = "false") + inner class ObjectStorageDestinationStateTestWithoutStaging { + @Test + fun testRecoveringFromMetadata(d: Dependencies) = runTest { + val genIdKey = ObjectStorageDestinationState.METADATA_GENERATION_ID_KEY + val prefix = d.pathFactory.prefix + val generations = + listOf( + Triple(0, "$prefix/key1-0", 0L), + Triple(0, "$prefix/key2-1", 1L), + Triple(1, "$prefix/key3-0", 0L), + Triple(1, "$prefix/key4-1", 1L) ) - ), - state.generations.toList(), - "state should be loaded from storage" - ) + generations.forEach { (genId, key, _) -> + d.mockClient.streamingUpload( + key, + mapOf(genIdKey to genId.toString()), + NoopProcessor + ) { it.write(0) } + } + val state = d.stateManager.getState(stream1) + Assertions.assertEquals( + generations + .groupBy { it.first } + .map { (generationId, triples) -> + ObjectStorageDestinationState.Generation( + false, + generationId.toLong(), + triples + .map { (_, key, partNumber) -> + ObjectStorageDestinationState.ObjectAndPart(key, partNumber) + } + .sortedByDescending { + // Brittle hack to get the order to line up + it.key.contains("key2") || it.key.contains("key3") + } + .toMutableList() + ) + }, + state.generations.toList(), + "state should be recovered from metadata" + ) + } } } diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt index 007dae3d58f8..e9dbd12d47aa 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockObjectStorageClient.kt @@ -4,11 +4,13 @@ package io.airbyte.cdk.load +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings import io.airbyte.cdk.load.file.StreamProcessor import io.airbyte.cdk.load.file.object_storage.ObjectStorageClient import io.airbyte.cdk.load.file.object_storage.RemoteObject import io.micronaut.context.annotation.Requires import jakarta.inject.Singleton +import java.io.ByteArrayOutputStream import java.io.InputStream import java.io.OutputStream import java.util.concurrent.ConcurrentHashMap @@ -21,6 +23,7 @@ class MockRemoteObject( val metadata: Map = emptyMap() ) : RemoteObject +@SuppressFBWarnings("NP_NONNULL_PARAM_VIOLATION", justification = "Kotlin async continuation") @Singleton @Requires(env = ["MockObjectStorageClient"]) class MockObjectStorageClient : ObjectStorageClient { @@ -64,10 +67,15 @@ class MockObjectStorageClient : ObjectStorageClient { override suspend fun streamingUpload( key: String, + metadata: Map, streamProcessor: StreamProcessor?, block: suspend (OutputStream) -> Unit ): MockRemoteObject { - TODO("Not yet implemented") + val outputStream = ByteArrayOutputStream() + block(outputStream) + val remoteObject = MockRemoteObject(key, 0, outputStream.toByteArray(), metadata) + objects[key] = remoteObject + return remoteObject } override suspend fun delete(remoteObject: MockRemoteObject) { diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockPathFactory.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockPathFactory.kt index a31aaa297c08..52f3d8e88052 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockPathFactory.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/MockPathFactory.kt @@ -6,23 +6,31 @@ package io.airbyte.cdk.load import io.airbyte.cdk.load.command.DestinationStream import io.airbyte.cdk.load.file.object_storage.PathFactory +import io.airbyte.cdk.load.file.object_storage.PathMatcher import io.micronaut.context.annotation.Requires import jakarta.inject.Singleton import java.nio.file.Path @Singleton @Requires(env = ["MockPathFactory"]) -class MockPathFactory : PathFactory { +open class MockPathFactory : PathFactory { + open var doSupportStaging = false + + override val supportsStaging: Boolean + get() = doSupportStaging + override val prefix: String + get() = "prefix" + private fun fromStream(stream: DestinationStream): String { return "/${stream.descriptor.namespace}/${stream.descriptor.name}" } override fun getStagingDirectory(stream: DestinationStream): Path { - return Path.of("/staging/${fromStream(stream)}") + return Path.of("$prefix/staging/${fromStream(stream)}") } override fun getFinalDirectory(stream: DestinationStream): Path { - return Path.of("/final/${fromStream(stream)}") + return Path.of("$prefix/${fromStream(stream)}") } override fun getPathToFile( @@ -34,4 +42,11 @@ class MockPathFactory : PathFactory { val prefix = if (isStaging) getStagingDirectory(stream) else getFinalDirectory(stream) return prefix.resolve("file") } + + override fun getPathMatcher(stream: DestinationStream): PathMatcher { + return PathMatcher( + regex = Regex("$prefix/(.*)-(.*)$"), + variableToIndex = mapOf("part_number" to 2) + ) + } } diff --git a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/command/s3/S3PathSpecification.kt b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/command/s3/S3PathSpecification.kt index 96c00a82fc98..ba973732a375 100644 --- a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/command/s3/S3PathSpecification.kt +++ b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/command/s3/S3PathSpecification.kt @@ -50,13 +50,12 @@ interface S3PathSpecification { @get:JsonSchemaInject(json = """{"examples":["data_sync/test"]}""") val s3BucketPath: String - // @get:JsonSchemaTitle("Use a Staging Directory") - // @get:JsonPropertyDescription( - // "Whether to use a staging directory in the bucket based on the s3_staging_prefix. If - // this is not set, airbyte will maintain sync integrity by adding metadata to each object." - // ) - // @get:JsonProperty("use_staging_directory", defaultValue = "false") - // val useStagingDirectory: Boolean + @get:JsonSchemaTitle("Use a Staging Directory") + @get:JsonPropertyDescription( + "Whether to use a staging directory in the bucket based on the s3_staging_prefix. If this is not set, airbyte will maintain sync integrity by adding metadata to each object." + ) + @get:JsonProperty("use_staging_directory", defaultValue = "false") + val useStagingDirectory: Boolean? @get:JsonSchemaTitle("S3 Staging Prefix") @get:JsonPropertyDescription( @@ -72,6 +71,6 @@ interface S3PathSpecification { stagingPrefix = s3StagingPrefix, pathSuffixPattern = s3PathFormat, fileNamePattern = fileNamePattern, - usesStagingDirectory = true + usesStagingDirectory = useStagingDirectory ?: false ) } diff --git a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt index 1dd55a77db21..c5826554ed6f 100644 --- a/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt +++ b/airbyte-cdk/bulk/toolkits/load-s3/src/main/kotlin/io/airbyte/cdk/load/file/s3/S3Client.kt @@ -9,6 +9,7 @@ import aws.sdk.kotlin.services.s3.model.CopyObjectRequest import aws.sdk.kotlin.services.s3.model.CreateMultipartUploadRequest import aws.sdk.kotlin.services.s3.model.DeleteObjectRequest import aws.sdk.kotlin.services.s3.model.GetObjectRequest +import aws.sdk.kotlin.services.s3.model.HeadObjectRequest import aws.sdk.kotlin.services.s3.model.ListObjectsRequest import aws.sdk.kotlin.services.s3.model.PutObjectRequest import aws.smithy.kotlin.runtime.content.ByteStream @@ -94,11 +95,11 @@ class S3Client( } override suspend fun getMetadata(key: String): Map { - val request = GetObjectRequest { + val request = HeadObjectRequest { bucket = bucketConfig.s3BucketName this.key = key } - return client.getObject(request) { it.metadata ?: emptyMap() } + return client.headObject(request).metadata ?: emptyMap() } override suspend fun put(key: String, bytes: ByteArray): S3Object { @@ -125,12 +126,14 @@ class S3Client( override suspend fun streamingUpload( key: String, + metadata: Map, streamProcessor: StreamProcessor?, block: suspend (OutputStream) -> Unit ): S3Object { val request = CreateMultipartUploadRequest { this.bucket = bucketConfig.s3BucketName this.key = key + this.metadata = metadata } val response = client.createMultipartUpload(request) val upload = diff --git a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml index cd38d6344199..665a7a8f6512 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml +++ b/airbyte-integrations/connectors/destination-s3-v2/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: file connectorType: destination definitionId: d6116991-e809-4c7c-ae09-c64712df5b66 - dockerImageTag: 0.1.15 + dockerImageTag: 0.1.16 dockerRepository: airbyte/destination-s3-v2 githubIssueLabel: destination-s3-v2 icon: s3.svg @@ -36,6 +36,11 @@ data: secretStore: type: GSM alias: airbyte-connector-testing-secret-store + - name: SECRET_DESTINATION-S3-V2-JSONL-STAGING + fileName: s3_dest_v2_jsonl_staging_config.json + secretStore: + type: GSM + alias: airbyte-connector-testing-secret-store - name: SECRET_DESTINATION-S3-V2-CSV fileName: s3_dest_v2_csv_config.json secretStore: diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Checker.kt b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Checker.kt index baff49ee5cf3..494f0de84339 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Checker.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Checker.kt @@ -25,13 +25,21 @@ class S3V2Checker(private val timeProvider: TimeProvider) : runBlocking { val s3Client = S3ClientFactory.make(config) val pathFactory = ObjectStoragePathFactory.from(config, timeProvider) - val path = pathFactory.getStagingDirectory(mockStream()) + val path = + if (pathFactory.supportsStaging) { + pathFactory.getStagingDirectory(mockStream()) + } else { + pathFactory.getFinalDirectory(mockStream()) + } val key = path.resolve("_EXAMPLE").toString() log.info { "Checking if destination can write to $path" } var s3Object: S3Object? = null val compressor = config.objectStorageCompressionConfiguration.compressor try { - s3Object = s3Client.streamingUpload(key, compressor) { it.write("""{"data": 1}""") } + s3Object = + s3Client.streamingUpload(key, streamProcessor = compressor) { + it.write("""{"data": 1}""") + } val results = s3Client.list(path.toString()).toList() if (results.isEmpty() || results.find { it.key == key } == null) { throw IllegalStateException("Failed to write to S3 bucket") diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Specification.kt b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Specification.kt index c995e8eedd97..240d1299665b 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Specification.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/main/kotlin/S3V2Specification.kt @@ -34,7 +34,7 @@ class S3V2Specification : override val s3Endpoint: String? = null override val s3PathFormat: String? = null override val fileNamePattern: String? = null - // override val useStagingDirectory: Boolean = false + override val useStagingDirectory: Boolean? = null override val s3StagingPrefix: String? = null } diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2CheckTest.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2CheckTest.kt index 0c28632ae0e0..bbfaa0d90d0f 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2CheckTest.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2CheckTest.kt @@ -19,6 +19,10 @@ class S3V2CheckTest : Path.of(S3V2TestUtils.JSON_UNCOMPRESSED_CONFIG_PATH), setOf(FeatureFlag.AIRBYTE_CLOUD_DEPLOYMENT) ), + CheckTestConfig( + Path.of(S3V2TestUtils.JSON_STAGING_CONFIG_PATH), + setOf(FeatureFlag.AIRBYTE_CLOUD_DEPLOYMENT), + ), CheckTestConfig( Path.of(S3V2TestUtils.JSON_GZIP_CONFIG_PATH), setOf(FeatureFlag.AIRBYTE_CLOUD_DEPLOYMENT), diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2TestUtils.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2TestUtils.kt index 6f50b82467cb..82f32efe609d 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2TestUtils.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2TestUtils.kt @@ -10,6 +10,7 @@ import java.nio.file.Path object S3V2TestUtils { const val JSON_UNCOMPRESSED_CONFIG_PATH = "secrets/s3_dest_v2_minimal_required_config.json" const val JSON_GZIP_CONFIG_PATH = "secrets/s3_dest_v2_jsonl_gzip_config.json" + const val JSON_STAGING_CONFIG_PATH = "secrets/s3_dest_v2_jsonl_staging_config.json" const val CSV_UNCOMPRESSED_CONFIG_PATH = "secrets/s3_dest_v2_csv_config.json" const val CSV_GZIP_CONFIG_PATH = "secrets/s3_dest_v2_csv_gzip_config.json" const val AVRO_UNCOMPRESSED_CONFIG_PATH = "secrets/s3_dest_v2_avro_config.json" diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt index 56b6277f2811..e50c7767192d 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt @@ -78,6 +78,14 @@ class S3V2WriteTestJsonUncompressed : preserveUndeclaredFields = true, ) +class S3V2WriteTestJsonStaging : + S3V2WriteTest( + S3V2TestUtils.JSON_STAGING_CONFIG_PATH, + stringifySchemalessObjects = false, + promoteUnionToObject = false, + preserveUndeclaredFields = true, + ) + class S3V2WriteTestJsonGzip : S3V2WriteTest( S3V2TestUtils.JSON_GZIP_CONFIG_PATH, diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-cloud.json b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-cloud.json index 11f4eedb9caf..2cbf0a0c148d 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-cloud.json +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-cloud.json @@ -294,6 +294,12 @@ "title" : "File Name Pattern", "examples" : [ "{date}", "{date:yyyy_MM}", "{timestamp}", "{part_number}", "{sync_id}" ] }, + "use_staging_directory" : { + "type" : "boolean", + "default" : false, + "description" : "Whether to use a staging directory in the bucket based on the s3_staging_prefix. If this is not set, airbyte will maintain sync integrity by adding metadata to each object.", + "title" : "Use a Staging Directory" + }, "s3_staging_prefix" : { "type" : "string", "default" : "{s3_bucket_path}/__airbyte_tmp", diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-oss.json b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-oss.json index 11f4eedb9caf..2cbf0a0c148d 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-oss.json +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/resources/expected-spec-oss.json @@ -294,6 +294,12 @@ "title" : "File Name Pattern", "examples" : [ "{date}", "{date:yyyy_MM}", "{timestamp}", "{part_number}", "{sync_id}" ] }, + "use_staging_directory" : { + "type" : "boolean", + "default" : false, + "description" : "Whether to use a staging directory in the bucket based on the s3_staging_prefix. If this is not set, airbyte will maintain sync integrity by adding metadata to each object.", + "title" : "Use a Staging Directory" + }, "s3_staging_prefix" : { "type" : "string", "default" : "{s3_bucket_path}/__airbyte_tmp", From ec3c874238c68cd970c313e2e5fb126720d12126 Mon Sep 17 00:00:00 2001 From: Christo Grabowski <108154848+ChristoGrab@users.noreply.github.com> Date: Fri, 1 Nov 2024 16:49:29 -0400 Subject: [PATCH 533/808] CAT Fix: include optional fields when parsing inline spec for manifest-only connectors (#48113) --- .../bases/connector-acceptance-test/CHANGELOG.md | 8 ++++++++ .../connector_acceptance_test/utils/manifest_helper.py | 5 ++++- .../bases/connector-acceptance-test/pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/bases/connector-acceptance-test/CHANGELOG.md b/airbyte-integrations/bases/connector-acceptance-test/CHANGELOG.md index 5c003306152c..18f88bc28357 100644 --- a/airbyte-integrations/bases/connector-acceptance-test/CHANGELOG.md +++ b/airbyte-integrations/bases/connector-acceptance-test/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 3.9.5 + +Fix parsing of inlined manifest specs in `test_match_expected` + +## 3.9.4 + +Upgrade to Dagger 0.13 + ## 3.9.3 Undo failure trace message test case changes from 3.9.1 diff --git a/airbyte-integrations/bases/connector-acceptance-test/connector_acceptance_test/utils/manifest_helper.py b/airbyte-integrations/bases/connector-acceptance-test/connector_acceptance_test/utils/manifest_helper.py index 5f3f3ff9d0fe..06cd950636fe 100644 --- a/airbyte-integrations/bases/connector-acceptance-test/connector_acceptance_test/utils/manifest_helper.py +++ b/airbyte-integrations/bases/connector-acceptance-test/connector_acceptance_test/utils/manifest_helper.py @@ -14,8 +14,11 @@ def is_manifest_file(file_name: Path) -> bool: return file_name.name in MANIFEST_FILE_NAMES -def parse_manifest_spec(manifest_obj: dict) -> dict: +def parse_manifest_spec(manifest_obj: dict) -> ConnectorSpecification: valid_spec_obj = { "connectionSpecification": manifest_obj["spec"]["connection_specification"], + "documentationUrl": manifest_obj["spec"].get("documentation_url", None), + "advanced_auth": manifest_obj["spec"].get("advanced_auth", None), } + return ConnectorSpecification.parse_obj(valid_spec_obj) diff --git a/airbyte-integrations/bases/connector-acceptance-test/pyproject.toml b/airbyte-integrations/bases/connector-acceptance-test/pyproject.toml index 2d9b016dac49..954eef0f8493 100644 --- a/airbyte-integrations/bases/connector-acceptance-test/pyproject.toml +++ b/airbyte-integrations/bases/connector-acceptance-test/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "connector-acceptance-test" -version = "3.9.4" +version = "3.9.5" description = "Contains acceptance tests for connectors." authors = ["Airbyte "] license = "MIT" From ba4a162cfbcdb6d09f3b80bf4be4694f95d6f986 Mon Sep 17 00:00:00 2001 From: Tope Folorunso <66448986+topefolorunso@users.noreply.github.com> Date: Fri, 1 Nov 2024 22:12:50 +0100 Subject: [PATCH 534/808] =?UTF-8?q?=E2=9C=A8=20Source=20Zendesk=20Talk=20:?= =?UTF-8?q?=20Migrate=20to=20Manifest-only=20(#47313)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../source-zendesk-talk/.coveragerc | 3 - .../connectors/source-zendesk-talk/.gitignore | 1 - .../connectors/source-zendesk-talk/README.md | 89 +- .../acceptance-test-config.yml | 14 +- .../{source_zendesk_talk => }/components.py | 0 .../connectors/source-zendesk-talk/main.py | 8 - .../source-zendesk-talk/manifest.yaml | 1714 +++++++++++++++++ .../source-zendesk-talk/metadata.yaml | 17 +- .../source-zendesk-talk/poetry.lock | 1065 ---------- .../source-zendesk-talk/pyproject.toml | 28 - ...onfigured_catalog_activities_overview.json | 172 -- .../sample_files/sample_config.json | 6 - .../source_zendesk_talk/__init__.py | 6 - .../source_zendesk_talk/manifest.yaml | 1620 ---------------- .../source_zendesk_talk/run.py | 14 - .../schemas/account_overview.json | 98 - .../schemas/addresses.json | 42 - .../schemas/agents_activity.json | 106 - .../schemas/agents_overview.json | 94 - .../schemas/call_legs.json | 107 - .../source_zendesk_talk/schemas/calls.json | 167 -- .../schemas/current_queue_activity.json | 34 - .../schemas/greeting_categories.json | 14 - .../schemas/greetings.json | 66 - .../schemas/ivr_menus.json | 26 - .../schemas/ivr_routes.json | 42 - .../source_zendesk_talk/schemas/ivrs.json | 98 - .../schemas/phone_numbers.json | 144 -- .../source_zendesk_talk/source.py | 10 - .../unit_tests/test_components.py | 75 - docs/integrations/sources/zendesk-talk.md | 1 + 31 files changed, 1762 insertions(+), 4119 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/.coveragerc delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/.gitignore rename airbyte-integrations/connectors/source-zendesk-talk/{source_zendesk_talk => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/main.py create mode 100644 airbyte-integrations/connectors/source-zendesk-talk/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/sample_files/configured_catalog_activities_overview.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/sample_files/sample_config.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/__init__.py delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/run.py delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/account_overview.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/addresses.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/agents_activity.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/agents_overview.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/call_legs.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/calls.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/current_queue_activity.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/greeting_categories.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/greetings.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivr_menus.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivr_routes.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivrs.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/phone_numbers.json delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/source.py delete mode 100644 airbyte-integrations/connectors/source-zendesk-talk/unit_tests/test_components.py diff --git a/airbyte-integrations/connectors/source-zendesk-talk/.coveragerc b/airbyte-integrations/connectors/source-zendesk-talk/.coveragerc deleted file mode 100644 index 753140399d72..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/.coveragerc +++ /dev/null @@ -1,3 +0,0 @@ -[run] -omit = - source_zendesk_talk/run.py \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-zendesk-talk/.gitignore b/airbyte-integrations/connectors/source-zendesk-talk/.gitignore deleted file mode 100644 index 29fffc6a50cc..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/.gitignore +++ /dev/null @@ -1 +0,0 @@ -NEW_SOURCE_CHECKLIST.md diff --git a/airbyte-integrations/connectors/source-zendesk-talk/README.md b/airbyte-integrations/connectors/source-zendesk-talk/README.md index df4b0ebdf75f..52a17ad8f4ae 100644 --- a/airbyte-integrations/connectors/source-zendesk-talk/README.md +++ b/airbyte-integrations/connectors/source-zendesk-talk/README.md @@ -1,49 +1,22 @@ -# Zendesk-Talk source connector +# Zendesk Talk source connector -This is the repository for the Zendesk-Talk source connector, written in Python. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/zendesk-talk). +This directory contains the manifest-only connector for `source-zendesk-talk`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development - -### Prerequisites - -- Python (~=3.9) -- Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) - -### Installing the connector - -From this connector directory, run: - -```bash -poetry install --with dev -``` - -### Create credentials +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/zendesk-talk). -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/zendesk-talk) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_zendesk_talk/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `sample_files/sample_config.json` for a sample config file. - -### Locally running the connector - -``` -poetry run source-zendesk-talk spec -poetry run source-zendesk-talk check --config secrets/config.json -poetry run source-zendesk-talk discover --config secrets/config.json -poetry run source-zendesk-talk read --config secrets/config.json --catalog integration_tests/configured_catalog.json -``` +## Local development -### Running unit tests +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -To run unit tests locally, from the connector directory run: - -``` -poetry run pytest unit_tests -``` +If you prefer to develop locally, you can follow the instructions below. ### Building the docker image +You can build any manifest-only connector with `airbyte-ci`: + 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: @@ -53,18 +26,24 @@ airbyte-ci connectors --name=source-zendesk-talk build An image will be available on your host with the tag `airbyte/source-zendesk-talk:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/zendesk-talk) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. + ### Running as a docker container -Then run any of the connector commands as follows: +Then run any of the standard source connector commands: -``` +```bash docker run --rm airbyte/source-zendesk-talk:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-zendesk-talk:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-zendesk-talk:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-zendesk-talk:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): @@ -72,31 +51,13 @@ You can run our full test suite locally using [`airbyte-ci`](https://github.com/ airbyte-ci connectors --name=source-zendesk-talk test ``` -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -### Dependency Management - -All of your dependencies should be managed via Poetry. -To add a new dependency, run: - -```bash -poetry add -``` - -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? - -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-zendesk-talk test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. +If you want to contribute changes to `source-zendesk-talk`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-zendesk-talk test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + - bump the `dockerImageTag` value in in `metadata.yaml` 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/zendesk-talk.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. diff --git a/airbyte-integrations/connectors/source-zendesk-talk/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zendesk-talk/acceptance-test-config.yml index aa7110c4b54e..9ff2673e2e07 100644 --- a/airbyte-integrations/connectors/source-zendesk-talk/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-zendesk-talk/acceptance-test-config.yml @@ -6,7 +6,7 @@ test_strictness_level: "high" acceptance_tests: spec: tests: - - spec_path: "source_zendesk_talk/spec.json" + - spec_path: "manifest.yaml" connection: tests: - config_path: "secrets/config.json" @@ -31,11 +31,17 @@ acceptance_tests: fail_on_extra_columns: false empty_streams: - name: account_overview - bypass_reason: "The stream is not empty, but makes the test failed due to frequently changing primary key value" + bypass_reason: + "The stream is not empty, but makes the test failed due to + frequently changing primary key value" - name: agents_overview - bypass_reason: "The stream is not empty, but makes the test failed due to frequently changing primary key value" + bypass_reason: + "The stream is not empty, but makes the test failed due to + frequently changing primary key value" - name: current_queue_activity - bypass_reason: "The stream is not empty, but makes the test failed due to frequently changing primary key value" + bypass_reason: + "The stream is not empty, but makes the test failed due to + frequently changing primary key value" incremental: tests: - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/components.py b/airbyte-integrations/connectors/source-zendesk-talk/components.py similarity index 100% rename from airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/components.py rename to airbyte-integrations/connectors/source-zendesk-talk/components.py diff --git a/airbyte-integrations/connectors/source-zendesk-talk/main.py b/airbyte-integrations/connectors/source-zendesk-talk/main.py deleted file mode 100644 index 679ec2c79a78..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_zendesk_talk.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-zendesk-talk/manifest.yaml b/airbyte-integrations/connectors/source-zendesk-talk/manifest.yaml new file mode 100644 index 000000000000..3f63886972bf --- /dev/null +++ b/airbyte-integrations/connectors/source-zendesk-talk/manifest.yaml @@ -0,0 +1,1714 @@ +version: 5.15.0 + +type: DeclarativeSource + +check: + type: CheckStream + stream_names: + - account_overview + +definitions: + streams: + addresses: + type: DeclarativeStream + name: addresses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: addresses + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - addresses + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ not response.get(\"next_page\", {}) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/addresses" + agents_activity: + type: DeclarativeStream + name: agents_activity + primary_key: + - agent_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stats/agents_activity + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - agents_activity + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ not response.get(\"next_page\", {}) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/agents_activity" + agents_overview: + type: DeclarativeStream + name: agents_overview + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stats/agents_overview + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - agents_overview + transformations: + - type: AddFields + fields: + - path: + - current_timestamp + value: "{{ now_utc().strftime('%s') }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/agents_overview" + greeting_categories: + type: DeclarativeStream + name: greeting_categories + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /greeting_categories + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - greeting_categories + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ not response.get(\"next_page\", {}) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/greeting_categories" + greetings: + type: DeclarativeStream + name: greetings + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /greetings + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - greetings + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ not response.get(\"next_page\", {}) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/greetings" + phone_numbers: + type: DeclarativeStream + name: phone_numbers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: phone_numbers + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - phone_numbers + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ not response.get(\"next_page\", {}) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/phone_numbers" + call_legs: + type: DeclarativeStream + retriever: + type: SimpleRetriever + ignore_stream_slicer_parameters_on_paginated_requests: true + requester: + $ref: "#/definitions/base_requester" + path: /stats/incremental/legs + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - legs + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ response.get(\"count\", {}) <= 1 }}" + name: call_legs + primary_key: + - id + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%s" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: start_time + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/call_legs" + calls: + type: DeclarativeStream + retriever: + type: SimpleRetriever + ignore_stream_slicer_parameters_on_paginated_requests: true + requester: + $ref: "#/definitions/base_requester" + path: /stats/incremental/calls + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - calls + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ response.get(\"count\", {}) <= 1 }}" + name: calls + primary_key: + - id + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%s" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: start_time + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/calls" + current_queue_activity: + type: DeclarativeStream + name: current_queue_activity + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stats/current_queue_activity + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - current_queue_activity + transformations: + - type: AddFields + fields: + - path: + - current_timestamp + value: "{{ now_utc().strftime('%s') }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/current_queue_activity" + account_overview: + type: DeclarativeStream + name: account_overview + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stats/account_overview + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - account_overview + transformations: + - type: AddFields + fields: + - path: + - current_timestamp + value: "{{ now_utc().strftime('%s') }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/account_overview" + ivrs: + type: DeclarativeStream + name: ivrs + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /ivr + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - ivrs + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ not response.get(\"next_page\", {}) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/ivrs" + ivr_menus: + type: DeclarativeStream + name: ivr_menus + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /ivr + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: CustomRecordExtractor + class_name: source_declarative_manifest.components.IVRMenusRecordExtractor + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ not response.get(\"next_page\", {}) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/ivr_menus" + ivr_routes: + type: DeclarativeStream + name: ivr_routes + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /ivr + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: WaitTimeFromHeader + header: Retry-After + record_selector: + type: RecordSelector + extractor: + type: CustomRecordExtractor + class_name: source_declarative_manifest.components.IVRRoutesRecordExtractor + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get(\"next_page\", {}) }}" + stop_condition: "{{ not response.get(\"next_page\", {}) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/ivr_routes" + base_requester: + type: HttpRequester + url_base: https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/ + authenticator: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.ZendeskTalkAuthenticator + legacy_basic_auth: + type: BasicHttpAuthenticator + password: "{{ config['access_token'] }}" + username: "{{ config['email'] }}/token" + basic_auth: + type: BasicHttpAuthenticator + password: "{{ config['credentials']['api_token'] }}" + username: "{{ config['credentials']['email'] }}/token" + oauth: + type: BearerAuthenticator + api_token: "{{ config['credentials']['access_token'] }}" + +streams: + - $ref: "#/definitions/streams/addresses" + - $ref: "#/definitions/streams/agents_activity" + - $ref: "#/definitions/streams/agents_overview" + - $ref: "#/definitions/streams/greeting_categories" + - $ref: "#/definitions/streams/greetings" + - $ref: "#/definitions/streams/phone_numbers" + - $ref: "#/definitions/streams/call_legs" + - $ref: "#/definitions/streams/calls" + - $ref: "#/definitions/streams/current_queue_activity" + - $ref: "#/definitions/streams/account_overview" + - $ref: "#/definitions/streams/ivrs" + - $ref: "#/definitions/streams/ivr_menus" + - $ref: "#/definitions/streams/ivr_routes" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - subdomain + - start_date + properties: + subdomain: + type: string + description: >- + This is your Zendesk subdomain that can be found in your account URL. + For example, in https://{MY_SUBDOMAIN}.zendesk.com/, where + MY_SUBDOMAIN is the value of your subdomain. + order: 0 + title: Subdomain + credentials: + type: object + description: >- + Zendesk service provides two authentication methods. Choose between: + `OAuth2.0` or `API token`. + title: Authentication + order: 1 + oneOf: + - type: object + title: OAuth2.0 + required: + - access_token + additionalProperties: true + properties: + auth_type: + type: string + const: oauth2.0 + order: 0 + access_token: + type: string + description: >- + The value of the API token generated. See the docs + for more information. + title: Access Token + airbyte_secret: true + client_id: + type: string + description: Client ID + title: Client ID + airbyte_secret: true + client_secret: + type: string + description: Client Secret + title: Client Secret + airbyte_secret: true + - type: object + title: API Token + required: + - email + - api_token + additionalProperties: true + properties: + auth_type: + type: string + const: api_token + email: + type: string + description: The user email for your Zendesk account. + title: Email + api_token: + type: string + description: >- + The value of the API token generated. See the docs + for more information. + title: API Token + airbyte_secret: true + start_date: + type: string + description: >- + The date from which you'd like to replicate data for Zendesk Talk API, + in the format YYYY-MM-DDT00:00:00Z. All data generated after this date + will be replicated. + order: 2 + title: Start Date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + examples: + - "2020-10-15T00:00:00Z" + additionalProperties: true + advanced_auth: + auth_flow_type: oauth2.0 + predicate_key: + - credentials + - auth_type + predicate_value: oauth2.0 + oauth_config_specification: + complete_oauth_output_specification: + type: object + additionalProperties: false + properties: + access_token: + type: string + path_in_connector_config: + - credentials + - access_token + complete_oauth_server_input_specification: + type: object + additionalProperties: false + properties: + client_id: + type: string + client_secret: + type: string + complete_oauth_server_output_specification: + type: object + additionalProperties: false + properties: + client_id: + type: string + path_in_connector_config: + - credentials + - client_id + client_secret: + type: string + path_in_connector_config: + - credentials + - client_secret + oauth_user_input_from_connector_config_specification: + type: object + additionalProperties: false + properties: + subdomain: + type: string + path_in_connector_config: + - subdomain + +metadata: + autoImportSchema: + addresses: false + agents_activity: false + agents_overview: false + greeting_categories: false + greetings: false + phone_numbers: false + call_legs: false + calls: false + current_queue_activity: false + account_overview: false + ivrs: false + ivr_menus: false + ivr_routes: false + yamlComponents: + streams: + ivr_menus: + - recordSelector + ivr_routes: + - recordSelector + global: + - authenticator + testedStreams: {} + assist: {} + +schemas: + addresses: + type: object + $schema: http://json-schema.org/schema# + properties: + city: + type: + - "null" + - string + country_code: + type: + - "null" + - string + id: + type: + - "null" + - integer + name: + type: + - "null" + - string + provider_reference: + type: + - "null" + - string + province: + type: + - "null" + - string + state: + type: + - "null" + - string + street: + type: + - "null" + - string + zip: + type: + - "null" + - string + additionalProperties: true + agents_activity: + type: object + $schema: http://json-schema.org/schema# + properties: + accepted_third_party_conferences: + type: + - "null" + - integer + accepted_transfers: + type: + - "null" + - integer + agent_id: + type: + - "null" + - integer + agent_state: + type: + - "null" + - string + available_time: + type: + - "null" + - integer + avatar_url: + type: + - "null" + - string + average_hold_time: + type: + - "null" + - integer + average_talk_time: + type: + - "null" + - integer + average_wrap_up_time: + type: + - "null" + - integer + away_time: + type: + - "null" + - integer + call_status: + type: + - "null" + - string + calls_accepted: + type: + - "null" + - integer + calls_denied: + type: + - "null" + - integer + calls_missed: + type: + - "null" + - integer + calls_put_on_hold: + type: + - "null" + - integer + forwarding_number: + type: + - "null" + - string + name: + type: + - "null" + - string + online_time: + type: + - "null" + - integer + started_third_party_conferences: + type: + - "null" + - integer + started_transfers: + type: + - "null" + - integer + total_call_duration: + type: + - "null" + - integer + total_hold_time: + type: + - "null" + - integer + total_talk_time: + type: + - "null" + - integer + total_wrap_up_time: + type: + - "null" + - integer + transfers_only_time: + type: + - "null" + - integer + via: + type: + - "null" + - string + additionalProperties: true + agents_overview: + type: object + $schema: http://json-schema.org/schema# + properties: + average_accepted_transfers: + type: + - "null" + - integer + average_available_time: + type: + - "null" + - integer + average_away_time: + type: + - "null" + - integer + average_calls_accepted: + type: + - "null" + - integer + average_calls_denied: + type: + - "null" + - integer + average_calls_missed: + type: + - "null" + - integer + average_calls_put_on_hold: + type: + - "null" + - integer + average_hold_time: + type: + - "null" + - integer + average_online_time: + type: + - "null" + - integer + average_started_transfers: + type: + - "null" + - integer + average_talk_time: + type: + - "null" + - integer + average_transfers_only_time: + type: + - "null" + - integer + average_wrap_up_time: + type: + - "null" + - integer + current_timestamp: + type: integer + total_accepted_transfers: + type: + - "null" + - integer + total_calls_accepted: + type: + - "null" + - integer + total_calls_denied: + type: + - "null" + - integer + total_calls_missed: + type: + - "null" + - integer + total_calls_put_on_hold: + type: + - "null" + - integer + total_hold_time: + type: + - "null" + - integer + total_started_transfers: + type: + - "null" + - integer + total_talk_time: + type: + - "null" + - integer + total_wrap_up_time: + type: + - "null" + - integer + additionalProperties: true + greeting_categories: + type: object + $schema: http://json-schema.org/schema# + properties: + id: + type: + - "null" + - integer + name: + type: + - "null" + - string + additionalProperties: true + greetings: + type: object + $schema: http://json-schema.org/schema# + properties: + active: + type: + - "null" + - boolean + audio_name: + type: + - "null" + - string + audio_url: + type: + - "null" + - string + category_id: + type: + - "null" + - integer + default: + type: + - "null" + - boolean + default_lang: + type: + - "null" + - boolean + has_sub_settings: + type: + - "null" + - boolean + id: + type: + - "null" + - string + ivr_ids: + type: + - "null" + - array + items: + type: + - string + - integer + name: + type: + - "null" + - string + pending: + type: + - "null" + - boolean + phone_number_ids: + type: + - "null" + - array + items: + type: + - integer + - string + upload_id: + type: + - "null" + - integer + additionalProperties: true + phone_numbers: + type: object + $schema: http://json-schema.org/schema# + properties: + call_recording_consent: + type: + - "null" + - string + capabilities: + type: + - "null" + - object + properties: + emergency_address: + type: + - "null" + - boolean + mms: + type: + - "null" + - boolean + sms: + type: + - "null" + - boolean + voice: + type: + - "null" + - boolean + categorised_greetings: + type: + - "null" + - object + categorised_greetings_with_sub_settings: + type: + - "null" + - object + country_code: + type: + - "null" + - string + created_at: + type: + - "null" + - string + default_greeting_ids: + type: + - "null" + - array + items: + type: + - string + default_group_id: + type: + - "null" + - integer + display_number: + type: + - "null" + - string + external: + type: + - "null" + - boolean + failover_number: + type: + - "null" + - string + greeting_ids: + type: + - "null" + - array + group_ids: + type: + - "null" + - array + id: + type: + - "null" + - integer + ivr_id: + type: + - "null" + - integer + line_type: + type: + - "null" + - string + location: + type: + - "null" + - string + name: + type: + - "null" + - string + nickname: + type: + - "null" + - string + number: + type: + - "null" + - string + outbound_enabled: + type: + - "null" + - boolean + priority: + type: + - "null" + - integer + recorded: + type: + - "null" + - boolean + schedule_id: + type: + - "null" + - integer + sms_enabled: + type: + - "null" + - boolean + sms_group_id: + type: + - "null" + - integer + token: + type: + - "null" + - string + toll_free: + type: + - "null" + - boolean + transcription: + type: + - "null" + - boolean + voice_enabled: + type: + - "null" + - boolean + additionalProperties: true + call_legs: + type: object + $schema: http://json-schema.org/schema# + properties: + type: + type: + - "null" + - string + agent_id: + type: + - "null" + - integer + available_via: + type: + - "null" + - string + call_charge: + type: + - "null" + - string + call_id: + type: + - "null" + - integer + completion_status: + type: + - "null" + - string + conference_from: + type: + - "null" + - integer + conference_time: + type: + - "null" + - integer + conference_to: + type: + - "null" + - integer + consultation_from: + type: + - "null" + - integer + consultation_time: + type: + - "null" + - integer + consultation_to: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + duration: + type: + - "null" + - integer + forwarded_to: + type: + - "null" + - string + hold_time: + type: + - "null" + - integer + id: + type: + - "null" + - integer + minutes_billed: + type: + - "null" + - integer + quality_issues: + type: + - "null" + - array + talk_time: + type: + - "null" + - integer + transferred_from: + type: + - "null" + - integer + transferred_to: + type: + - "null" + - integer + updated_at: + type: + - "null" + - string + format: date-time + user_id: + type: + - "null" + - integer + wrap_up_time: + type: + - "null" + - integer + additionalProperties: true + calls: + type: object + $schema: http://json-schema.org/schema# + properties: + agent_id: + type: + - integer + - "null" + call_charge: + type: + - string + - "null" + call_group_id: + type: + - integer + - "null" + call_recording_consent: + type: + - string + - "null" + call_recording_consent_action: + type: + - string + - "null" + call_recording_consent_keypress: + type: + - string + - "null" + callback: + type: + - boolean + - "null" + callback_source: + type: + - string + - "null" + completion_status: + type: + - string + - "null" + consultation_time: + type: + - integer + - "null" + created_at: + type: + - string + - "null" + customer_requested_voicemail: + type: + - boolean + - "null" + default_group: + type: + - boolean + - "null" + direction: + type: + - string + - "null" + duration: + type: + - integer + - "null" + exceeded_queue_time: + type: + - boolean + - "null" + exceeded_queue_wait_time: + type: + - boolean + - "null" + hold_time: + type: + - integer + - "null" + id: + type: + - integer + - "null" + ivr_action: + type: + - string + - "null" + ivr_destination_group_name: + type: + - string + - "null" + ivr_hops: + type: + - integer + - "null" + ivr_routed_to: + type: + - string + - "null" + ivr_time_spent: + type: + - integer + - "null" + minutes_billed: + type: + - integer + - "null" + not_recording_time: + type: + - integer + - "null" + outside_business_hours: + type: + - boolean + - "null" + overflowed: + type: + - boolean + - "null" + overflowed_to: + type: + - string + - "null" + phone_number: + type: + - string + - "null" + phone_number_id: + type: + - integer + - "null" + quality_issues: + type: + - array + - "null" + recording_control_interactions: + type: + - integer + - "null" + recording_time: + type: + - integer + - "null" + talk_time: + type: + - integer + - "null" + ticket_id: + type: + - integer + - "null" + time_to_answer: + type: + - integer + - "null" + updated_at: + type: + - string + - "null" + format: date-time + voicemail: + type: + - boolean + - "null" + wait_time: + type: + - integer + - "null" + wrap_up_time: + type: + - integer + - "null" + additionalProperties: true + current_queue_activity: + type: object + $schema: http://json-schema.org/schema# + properties: + agents_online: + type: + - integer + - "null" + average_wait_time: + type: + - integer + - "null" + callbacks_waiting: + type: + - integer + - "null" + calls_waiting: + type: + - integer + - "null" + current_timestamp: + type: integer + embeddable_callbacks_waiting: + type: + - integer + - "null" + longest_wait_time: + type: + - integer + - "null" + additionalProperties: true + account_overview: + type: object + $schema: http://json-schema.org/schema# + properties: + average_call_duration: + type: + - integer + - "null" + average_callback_wait_time: + type: + - integer + - "null" + average_hold_time: + type: + - integer + - "null" + average_queue_wait_time: + type: + - integer + - "null" + average_time_to_answer: + type: + - integer + - "null" + average_wrap_up_time: + type: + - integer + - "null" + current_timestamp: + type: integer + max_calls_waiting: + type: + - integer + - "null" + max_queue_wait_time: + type: + - integer + - "null" + total_call_duration: + type: + - integer + - "null" + total_callback_calls: + type: + - integer + - "null" + total_calls: + type: + - integer + - "null" + total_calls_abandoned_in_queue: + type: + - integer + - "null" + total_calls_outside_business_hours: + type: + - integer + - "null" + total_calls_with_exceeded_queue_wait_time: + type: + - integer + - "null" + total_calls_with_requested_voicemail: + type: + - integer + - "null" + total_embeddable_callback_calls: + type: + - integer + - "null" + total_hold_time: + type: + - integer + - "null" + total_inbound_calls: + type: + - integer + - "null" + total_outbound_calls: + type: + - integer + - "null" + total_textback_requests: + type: + - integer + - "null" + total_voicemails: + type: + - integer + - "null" + total_wrap_up_time: + type: + - integer + - "null" + additionalProperties: true + ivrs: + type: object + $schema: http://json-schema.org/schema# + properties: + id: + type: + - integer + - "null" + menus: + type: + - array + - "null" + items: + type: object + properties: + default: + type: + - boolean + - "null" + greeting_id: + type: + - integer + - "null" + id: + type: + - integer + - "null" + name: + type: + - string + - "null" + routes: + type: + - array + - "null" + items: + type: object + properties: + action: + type: + - string + - "null" + greeting: + type: + - string + - "null" + id: + type: + - integer + - "null" + keypress: + type: + - string + - "null" + option_text: + type: + - string + - "null" + options: + type: + - object + - "null" + overflow_options: + type: + - array + - "null" + name: + type: + - string + - "null" + phone_number_ids: + type: + - array + - "null" + items: + type: + - string + - integer + phone_number_names: + type: + - array + - "null" + items: + type: + - string + - integer + additionalProperties: true + ivr_menus: + type: object + $schema: http://json-schema.org/schema# + properties: + default: + type: + - boolean + - "null" + greeting_id: + type: + - "null" + - integer + id: + type: + - integer + - "null" + ivr_id: + type: + - integer + - "null" + name: + type: + - string + - "null" + additionalProperties: true + ivr_routes: + type: object + $schema: http://json-schema.org/schema# + properties: + action: + type: + - string + - "null" + greeting: + type: + - string + - "null" + id: + type: + - integer + - "null" + ivr_id: + type: + - integer + - "null" + ivr_menu_id: + type: + - integer + - "null" + keypress: + type: + - string + - "null" + option_text: + type: + - string + - "null" + options: + type: + - object + - "null" + overflow_options: + type: + - array + - "null" + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml index 24d34150d750..678655d44a69 100644 --- a/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml @@ -7,11 +7,11 @@ data: - ${subdomain}.zendesk.com - zendesk.com connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: c8630570-086d-4a40-99ae-ea5b18673071 - dockerImageTag: 1.0.21 + dockerImageTag: 1.1.0-rc.1 dockerRepository: airbyte/source-zendesk-talk documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-talk githubIssueLabel: source-zendesk-talk @@ -21,7 +21,7 @@ data: name: Zendesk Talk remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-zendesk-talk registryOverrides: cloud: @@ -35,9 +35,16 @@ data: 1.0.0: upgradeDeadline: "2024-05-31" message: >- - The source Zendesk Talk connector is being migrated from the Python CDK to our declarative low-code CDK. Due to changes to the incremental stream state message format and the removal of a nonexistent field from the ivrs stream schema, this migration constitutes a breaking change. After updating, please reset your source before resuming syncs. For more information, see our migration documentation for source Zendesk Talk. + The source Zendesk Talk connector is being migrated from the Python CDK + to our declarative low-code CDK. Due to changes to the incremental stream + state message format and the removal of a nonexistent field from the ivrs + stream schema, this migration constitutes a breaking change. After updating, + please reset your source before resuming syncs. For more information, see + our migration documentation for source Zendesk Talk. + rolloutConfiguration: + enableProgressiveRollout: true tags: - - language:python + - language:manifest-only - cdk:low-code connectorTestSuitesOptions: - suite: liveTests diff --git a/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock b/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock deleted file mode 100644 index 75b21a1e048d..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock +++ /dev/null @@ -1,1065 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "0.80.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-0.80.0-py3-none-any.whl", hash = "sha256:060e92323a73674fa4e9e2e4a1eb312b9b9d072c9bbe5fa28f54ef21cb4974f3"}, - {file = "airbyte_cdk-0.80.0.tar.gz", hash = "sha256:1383512a83917fecca5b24cea4c72aa5c561cf96dd464485fbcefda48fe574c5"}, -] - -[package.dependencies] -airbyte-protocol-models = "0.5.1" -backoff = "*" -cachetools = "*" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.0.271)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.5.1" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.5.1-py3-none-any.whl", hash = "sha256:dfe84e130e51ce2ae81a06d5aa36f6c5ce3152b9e36e6f0195fad6c3dab0927e"}, - {file = "airbyte_protocol_models-0.5.1.tar.gz", hash = "sha256:7c8b16c7c1c7956b1996052e40585a3a93b1e44cb509c4e97c1ee4fe507ea086"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "packaging" -version = "24.1" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "setuptools" -version = "75.3.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, - {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "93b64196fc01fe00f7c5d8479d66f4f0ea3ee8a96a646b8fae8d125c1f006ad4" diff --git a/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml b/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml deleted file mode 100644 index 1dce237a360a..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml +++ /dev/null @@ -1,28 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "1.0.21" -name = "source-zendesk-talk" -description = "Source implementation for Zendesk Talk." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/zendesk-talk" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_zendesk_talk" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "0.80.0" - -[tool.poetry.scripts] -source-zendesk-talk = "source_zendesk_talk.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "^1.9.3" -pytest-mock = "^3.6" -pytest = "^6.1" diff --git a/airbyte-integrations/connectors/source-zendesk-talk/sample_files/configured_catalog_activities_overview.json b/airbyte-integrations/connectors/source-zendesk-talk/sample_files/configured_catalog_activities_overview.json deleted file mode 100644 index 7339b1a5ebb2..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/sample_files/configured_catalog_activities_overview.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "agents_activity", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "agent_id": { - "type": ["null", "string"] - }, - "agent_state": { - "type": ["null", "string"] - }, - "available_time": { - "type": ["null", "integer"] - }, - "avatar_url": { - "type": ["null", "string"] - }, - "away_time": { - "type": ["null", "integer"] - }, - "call_status": { - "type": ["null", "string"] - }, - "calls_accepted": { - "type": ["null", "integer"] - }, - "calls_denied": { - "type": ["null", "integer"] - }, - "calls_missed": { - "type": ["null", "integer"] - }, - "forwarding_number": { - "type": ["null", "string"] - }, - "name": { - "type": ["null", "string"] - }, - "online_time": { - "type": ["null", "integer"] - }, - "total_call_duration": { - "type": ["null", "integer"] - }, - "total_talk_time": { - "type": ["null", "integer"] - }, - "total_wrap_up_time": { - "type": ["null", "integer"] - }, - "via": { - "type": ["null", "string"] - }, - "accepted_third_party_conferences": { - "type": ["null", "integer"] - }, - "accepted_transfers": { - "type": ["null", "integer"] - }, - "average_hold_time": { - "type": ["null", "integer"] - }, - "average_talk_time": { - "type": ["null", "integer"] - }, - "average_wrap_up_time": { - "type": ["null", "integer"] - }, - "calls_put_on_hold": { - "type": ["null", "integer"] - }, - "started_third_party_conferences": { - "type": ["null", "integer"] - }, - "started_transfers": { - "type": ["null", "integer"] - }, - "total_hold_time": { - "type": ["null", "integer"] - } - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "agents_overview", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "average_wrap_up_time": { - "type": ["null", "integer"] - }, - "total_calls_accepted": { - "type": ["null", "integer"] - }, - "total_calls_denied": { - "type": ["null", "integer"] - }, - "total_calls_missed": { - "type": ["null", "integer"] - }, - "total_talk_time": { - "type": ["null", "integer"] - }, - "total_wrap_up_time": { - "type": ["null", "integer"] - }, - "average_accepted_transfers": { - "type": ["null", "integer"] - }, - "average_available_time": { - "type": ["null", "integer"] - }, - "average_away_time": { - "type": ["null", "integer"] - }, - "average_calls_accepted": { - "type": ["null", "integer"] - }, - "average_calls_denied": { - "type": ["null", "integer"] - }, - "average_calls_missed": { - "type": ["null", "integer"] - }, - "average_calls_put_on_hold": { - "type": ["null", "integer"] - }, - "average_hold_time": { - "type": ["null", "integer"] - }, - "average_online_time": { - "type": ["null", "integer"] - }, - "average_started_transfers": { - "type": ["null", "integer"] - }, - "average_talk_time": { - "type": ["null", "integer"] - }, - "total_accepted_transfers": { - "type": ["null", "integer"] - }, - "total_calls_put_on_hold": { - "type": ["null", "integer"] - }, - "total_hold_time": { - "type": ["null", "integer"] - }, - "total_started_transfers": { - "type": ["null", "integer"] - } - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - } - ] -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/sample_files/sample_config.json b/airbyte-integrations/connectors/source-zendesk-talk/sample_files/sample_config.json deleted file mode 100644 index b65dc32c5839..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/sample_files/sample_config.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "email": "", - "api_token": "", - "subdomain": "", - "start_date": "2021-04-01T00:00:00Z" -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/__init__.py b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/__init__.py deleted file mode 100644 index cd0c4e4269e4..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -# -# Copyright (c) 2021 Airbyte, Inc., all rights reserved. -# -from .source import SourceZendeskTalk - -__all__ = ["SourceZendeskTalk"] diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/manifest.yaml b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/manifest.yaml deleted file mode 100644 index ff67384e0a17..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/manifest.yaml +++ /dev/null @@ -1,1620 +0,0 @@ -type: DeclarativeSource - -definitions: - authenticator: - class_name: source_zendesk_talk.components.ZendeskTalkAuthenticator - legacy_basic_auth: - type: BasicHttpAuthenticator - password: "{{ config['access_token'] }}" - username: "{{ config['email'] }}/token" - basic_auth: - type: BasicHttpAuthenticator - password: "{{ config['credentials']['api_token'] }}" - username: "{{ config['credentials']['email'] }}/token" - oauth: - type: BearerAuthenticator - api_token: "{{ config['credentials']['access_token'] }}" - non_incremental_paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - pagination_strategy: - type: CursorPagination - cursor_value: '{{ response.get("next_page", {}) }}' - stop_condition: '{{ not response.get("next_page", {}) }}' - -spec: - type: Spec - documentation_url: https://docs.airbyte.com/integrations/sources/zendesk-talk - connection_specification: - type: object - $schema: http://json-schema.org/draft-07/schema# - title: Source Zendesk Talk Spec - required: - - start_date - - subdomain - properties: - subdomain: - type: string - order: 0 - title: Subdomain - description: This is your Zendesk subdomain that can be found in your account URL. For example, in https://{MY_SUBDOMAIN}.zendesk.com/, where MY_SUBDOMAIN is the value of your subdomain. - credentials: - title: Authentication - type: object - order: 1 - description: "Zendesk service provides two authentication methods. Choose between: `OAuth2.0` or `API token`." - oneOf: - - title: OAuth2.0 - type: object - required: - - access_token - additionalProperties: true - properties: - auth_type: - type: string - const: oauth2.0 - order: 0 - access_token: - type: string - title: Access Token - description: 'The value of the API token generated. See the docs for more information.' - airbyte_secret: true - client_id: - type: string - title: Client ID - description: "Client ID" - airbyte_secret: true - client_secret: - type: string - title: Client Secret - description: "Client Secret" - airbyte_secret: true - - title: API Token - type: object - required: - - email - - api_token - additionalProperties: true - properties: - auth_type: - type: string - const: api_token - email: - title: Email - type: string - description: "The user email for your Zendesk account." - api_token: - title: API Token - type: string - description: 'The value of the API token generated. See the docs for more information.' - airbyte_secret: true - start_date: - type: string - order: 2 - title: Start Date - format: "date-time" - pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$" - description: The date from which you'd like to replicate data for Zendesk Talk API, in the format YYYY-MM-DDT00:00:00Z. All data generated after this date will be replicated. - examples: - - "2020-10-15T00:00:00Z" - advanced_auth: - auth_flow_type: oauth2.0 - predicate_key: - - credentials - - auth_type - predicate_value: oauth2.0 - oauth_config_specification: - complete_oauth_output_specification: - type: object - additionalProperties: false - properties: - access_token: - type: string - path_in_connector_config: - - credentials - - access_token - complete_oauth_server_input_specification: - type: object - additionalProperties: false - properties: - client_id: - type: string - client_secret: - type: string - complete_oauth_server_output_specification: - type: object - additionalProperties: false - properties: - client_id: - type: string - path_in_connector_config: - - credentials - - client_id - client_secret: - type: string - path_in_connector_config: - - credentials - - client_secret - oauth_user_input_from_connector_config_specification: - type: object - additionalProperties: false - properties: - subdomain: - type: string - path_in_connector_config: - - subdomain - -check: - type: CheckStream - stream_names: - - account_overview - -streams: - - name: addresses - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: "#/definitions/non_incremental_paginator" - requester: - path: addresses - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - addresses - - "*" - partition_router: [] - primary_key: - - id - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: http://json-schema.org/schema# - properties: - id: - type: - - "null" - - integer - zip: - type: - - "null" - - string - city: - type: - - "null" - - string - name: - type: - - "null" - - string - street: - type: - - "null" - - string - province: - type: - - "null" - - string - state: - type: - - "null" - - string - country_code: - type: - - "null" - - string - provider_reference: - type: - - "null" - - string - - name: agents_activity - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: "#/definitions/non_incremental_paginator" - requester: - path: /stats/agents_activity - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - agents_activity - - "*" - partition_router: [] - primary_key: agent_id - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - via: - type: - - "null" - - string - name: - type: - - "null" - - string - agent_id: - type: - - "null" - - integer - call_status: - type: - - "null" - - string - away_time: - type: - - "null" - - integer - avatar_url: - type: - - "null" - - string - agent_state: - type: - - "null" - - string - online_time: - type: - - "null" - - integer - calls_denied: - type: - - "null" - - integer - calls_missed: - type: - - "null" - - integer - available_time: - type: - - "null" - - integer - calls_accepted: - type: - - "null" - - integer - total_hold_time: - type: - - "null" - - integer - total_talk_time: - type: - - "null" - - integer - average_hold_time: - type: - - "null" - - integer - average_talk_time: - type: - - "null" - - integer - calls_put_on_hold: - type: - - "null" - - integer - started_transfers: - type: - - "null" - - integer - accepted_transfers: - type: - - "null" - - integer - total_wrap_up_time: - type: - - "null" - - integer - total_call_duration: - type: - - "null" - - integer - transfers_only_time: - type: - - "null" - - integer - average_wrap_up_time: - type: - - "null" - - integer - started_third_party_conferences: - type: - - "null" - - integer - accepted_third_party_conferences: - type: - - "null" - - integer - forwarding_number: - type: - - "null" - - string - - name: agents_overview - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: - type: NoPagination - requester: - path: /stats/agents_overview - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - agents_overview - partition_router: [] - transformations: - - type: AddFields - fields: - - path: - - "current_timestamp" - # the python implementation didn't normalize to utc, could cause transient problems - value: "{{ now_utc().strftime('%s') }}" - primary_key: [] - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - total_hold_time: - type: - - "null" - - integer - total_talk_time: - type: - - "null" - - integer - average_away_time: - type: - - "null" - - integer - average_hold_time: - type: - - "null" - - integer - average_talk_time: - type: - - "null" - - integer - total_calls_denied: - type: - - "null" - - integer - total_calls_missed: - type: - - "null" - - integer - total_wrap_up_time: - type: - - "null" - - integer - average_online_time: - type: - - "null" - - integer - average_calls_denied: - type: - - "null" - - integer - average_calls_missed: - type: - - "null" - - integer - average_wrap_up_time: - type: - - "null" - - integer - total_calls_accepted: - type: - - "null" - - integer - average_available_time: - type: - - "null" - - integer - average_calls_accepted: - type: - - "null" - - integer - total_calls_put_on_hold: - type: - - "null" - - integer - total_started_transfers: - type: - - "null" - - integer - total_accepted_transfers: - type: - - "null" - - integer - average_calls_put_on_hold: - type: - - "null" - - integer - average_started_transfers: - type: - - "null" - - integer - average_accepted_transfers: - type: - - "null" - - integer - average_transfers_only_time: - type: - - "null" - - integer - current_timestamp: - type: integer - - name: greeting_categories - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: "#/definitions/non_incremental_paginator" - requester: - path: /greeting_categories - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - greeting_categories - - "*" - partition_router: [] - primary_key: - - id - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - id: - type: - - "null" - - integer - name: - type: - - "null" - - string - - name: greetings - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: "#/definitions/non_incremental_paginator" - requester: - path: /greetings - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - greetings - - "*" - partition_router: [] - primary_key: [] - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - id: - type: - - "null" - - string - name: - type: - - "null" - - string - active: - type: - - "null" - - boolean - default: - type: - - "null" - - boolean - ivr_ids: - type: - - "null" - - array - items: - type: - - string - - integer - pending: - type: - - "null" - - boolean - audio_url: - type: - - "null" - - string - audio_name: - type: - - "null" - - string - category_id: - type: - - "null" - - integer - default_lang: - type: - - "null" - - boolean - has_sub_settings: - type: - - "null" - - boolean - phone_number_ids: - type: - - "null" - - array - items: - type: - - integer - - string - upload_id: - type: - - "null" - - integer - - name: phone_numbers - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: "#/definitions/non_incremental_paginator" - requester: - path: phone_numbers - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - phone_numbers - - "*" - partition_router: [] - primary_key: - - id - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - id: - type: - - "null" - - integer - name: - type: - - "null" - - string - number: - type: - - "null" - - string - external: - type: - - "null" - - boolean - location: - type: - - "null" - - string - priority: - type: - - "null" - - integer - recorded: - type: - - "null" - - boolean - group_ids: - type: - - "null" - - array - line_type: - type: - - "null" - - string - toll_free: - type: - - "null" - - boolean - created_at: - type: - - "null" - - string - sms_enabled: - type: - - "null" - - boolean - capabilities: - type: - - "null" - - object - properties: - mms: - type: - - "null" - - boolean - sms: - type: - - "null" - - boolean - voice: - type: - - "null" - - boolean - emergency_address: - type: - - "null" - - boolean - country_code: - type: - - "null" - - string - greeting_ids: - type: - - "null" - - array - transcription: - type: - - "null" - - boolean - voice_enabled: - type: - - "null" - - boolean - display_number: - type: - - "null" - - string - outbound_enabled: - type: - - "null" - - boolean - default_greeting_ids: - type: - - "null" - - array - items: - type: - - string - categorised_greetings: - type: - - "null" - - object - call_recording_consent: - type: - - "null" - - string - categorised_greetings_with_sub_settings: - type: - - "null" - - object - default_group_id: - type: - - "null" - - integer - failover_number: - type: - - "null" - - string - ivr_id: - type: - - "null" - - integer - nickname: - type: - - "null" - - string - token: - type: - - "null" - - string - schedule_id: - type: - - "null" - - integer - sms_group_id: - type: - - "null" - - integer - - name: call_legs - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - pagination_strategy: - type: CursorPagination - cursor_value: '{{ response.get("next_page", {}) }}' - stop_condition: '{{ response.get("count", {}) <= 1 }}' - ignore_stream_slicer_parameters_on_paginated_requests: true - requester: - path: /stats/incremental/legs - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - legs - - "*" - partition_router: [] - primary_key: - - id - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - id: - type: - - "null" - - integer - type: - type: - - "null" - - string - call_id: - type: - - "null" - - integer - user_id: - type: - - "null" - - integer - agent_id: - type: - - "null" - - integer - duration: - type: - - "null" - - integer - hold_time: - type: - - "null" - - integer - talk_time: - type: - - "null" - - integer - created_at: - type: - - "null" - - string - updated_at: - type: - - "null" - - string - format: "date-time" - call_charge: - type: - - "null" - - string - wrap_up_time: - type: - - "null" - - integer - available_via: - type: - - "null" - - string - minutes_billed: - type: - - "null" - - integer - quality_issues: - type: - - "null" - - array - completion_status: - type: - - "null" - - string - conference_from: - type: - - "null" - - integer - conference_time: - type: - - "null" - - integer - conference_to: - type: - - "null" - - integer - consultation_from: - type: - - "null" - - integer - consultation_time: - type: - - "null" - - integer - consultation_to: - type: - - "null" - - integer - forwarded_to: - type: - - "null" - - string - transferred_from: - type: - - "null" - - integer - transferred_to: - type: - - "null" - - integer - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - datetime_format: "%s" - start_time_option: - type: RequestOption - field_name: start_time - inject_into: request_parameter - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%SZ" - - name: calls - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - pagination_strategy: - type: CursorPagination - cursor_value: '{{ response.get("next_page", {}) }}' - stop_condition: '{{ response.get("count", {}) <= 1 }}' - ignore_stream_slicer_parameters_on_paginated_requests: true - requester: - path: /stats/incremental/calls - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - calls - - "*" - partition_router: [] - primary_key: - - id - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - id: - type: - - integer - - "null" - callback: - type: - - boolean - - "null" - duration: - type: - - integer - - "null" - direction: - type: - - string - - "null" - hold_time: - type: - - integer - - "null" - talk_time: - type: - - integer - - "null" - voicemail: - type: - - boolean - - "null" - wait_time: - type: - - integer - - "null" - created_at: - type: - - string - - "null" - overflowed: - type: - - boolean - - "null" - updated_at: - type: - - string - - "null" - format: "date-time" - call_charge: - type: - - string - - "null" - phone_number: - type: - - string - - "null" - wrap_up_time: - type: - - integer - - "null" - default_group: - type: - - boolean - - "null" - minutes_billed: - type: - - integer - - "null" - quality_issues: - type: - - array - - "null" - recording_time: - type: - - integer - - "null" - phone_number_id: - type: - - integer - - "null" - completion_status: - type: - - string - - "null" - consultation_time: - type: - - integer - - "null" - not_recording_time: - type: - - integer - - "null" - call_recording_consent: - type: - - string - - "null" - outside_business_hours: - type: - - boolean - - "null" - exceeded_queue_wait_time: - type: - - boolean - - "null" - customer_requested_voicemail: - type: - - boolean - - "null" - recording_control_interactions: - type: - - integer - - "null" - agent_id: - type: - - integer - - "null" - call_group_id: - type: - - integer - - "null" - call_recording_consent_action: - type: - - string - - "null" - call_recording_consent_keypress: - type: - - string - - "null" - callback_source: - type: - - string - - "null" - exceeded_queue_time: - type: - - boolean - - "null" - ivr_action: - type: - - string - - "null" - ivr_destination_group_name: - type: - - string - - "null" - ivr_hops: - type: - - integer - - "null" - ivr_routed_to: - type: - - string - - "null" - ivr_time_spent: - type: - - integer - - "null" - overflowed_to: - type: - - string - - "null" - ticket_id: - type: - - integer - - "null" - time_to_answer: - type: - - integer - - "null" - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - datetime_format: "%s" - start_time_option: - type: RequestOption - field_name: start_time - inject_into: request_parameter - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%SZ" - - name: current_queue_activity - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: - type: NoPagination - requester: - path: /stats/current_queue_activity - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - current_queue_activity - partition_router: [] - transformations: - - type: AddFields - fields: - - path: - - "current_timestamp" - # the python implementation didn't normalize to utc, could cause transient problems - value: "{{ now_utc().strftime('%s') }}" - primary_key: [] - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - agents_online: - type: - - integer - - "null" - calls_waiting: - type: - - integer - - "null" - average_wait_time: - type: - - integer - - "null" - callbacks_waiting: - type: - - integer - - "null" - longest_wait_time: - type: - - integer - - "null" - embeddable_callbacks_waiting: - type: - - integer - - "null" - current_timestamp: - type: integer - - name: account_overview - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: - type: NoPagination - requester: - path: /stats/account_overview - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - account_overview - partition_router: [] - transformations: - - type: AddFields - fields: - - path: - - "current_timestamp" - # the python implementation didn't normalize to utc, could cause transient problems - value: "{{ now_utc().strftime('%s') }}" - primary_key: [] - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - current_timestamp: - type: integer - total_calls: - type: - - integer - - "null" - total_hold_time: - type: - - integer - - "null" - total_voicemails: - type: - - integer - - "null" - average_hold_time: - type: - - integer - - "null" - max_calls_waiting: - type: - - integer - - "null" - total_wrap_up_time: - type: - - integer - - "null" - max_queue_wait_time: - type: - - integer - - "null" - total_call_duration: - type: - - integer - - "null" - total_inbound_calls: - type: - - integer - - "null" - average_wrap_up_time: - type: - - integer - - "null" - total_callback_calls: - type: - - integer - - "null" - total_outbound_calls: - type: - - integer - - "null" - average_call_duration: - type: - - integer - - "null" - average_time_to_answer: - type: - - integer - - "null" - average_queue_wait_time: - type: - - integer - - "null" - total_textback_requests: - type: - - integer - - "null" - average_callback_wait_time: - type: - - integer - - "null" - total_calls_abandoned_in_queue: - type: - - integer - - "null" - total_embeddable_callback_calls: - type: - - integer - - "null" - total_calls_outside_business_hours: - type: - - integer - - "null" - total_calls_with_requested_voicemail: - type: - - integer - - "null" - total_calls_with_exceeded_queue_wait_time: - type: - - integer - - "null" - - name: ivrs - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: "#/definitions/non_incremental_paginator" - requester: - path: /ivr - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - ivrs - partition_router: [] - primary_key: - - id - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - id: - type: - - integer - - "null" - name: - type: - - string - - "null" - menus: - type: - - array - - "null" - items: - type: object - properties: - id: - type: - - integer - - "null" - name: - type: - - string - - "null" - greeting_id: - type: - - integer - - "null" - routes: - type: - - array - - "null" - items: - type: object - properties: - id: - type: - - integer - - "null" - action: - type: - - string - - "null" - greeting: - type: - - string - - "null" - options: - type: - - object - - "null" - keypress: - type: - - string - - "null" - option_text: - type: - - string - - "null" - overflow_options: - type: - - array - - "null" - default: - type: - - boolean - - "null" - phone_number_ids: - type: - - array - - "null" - items: - type: - - string - - integer - phone_number_names: - type: - - array - - "null" - items: - type: - - string - - integer - - name: ivr_menus - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: "#/definitions/non_incremental_paginator" - requester: - path: /ivr - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: CustomRecordExtractor - class_name: source_zendesk_talk.components.IVRMenusRecordExtractor - partition_router: [] - primary_key: [] - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - id: - type: - - integer - - "null" - name: - type: - - string - - "null" - ivr_id: - type: - - integer - - "null" - greeting_id: - type: - - "null" - - integer - default: - type: - - boolean - - "null" - - name: ivr_routes - type: DeclarativeStream - retriever: - type: SimpleRetriever - paginator: "#/definitions/non_incremental_paginator" - requester: - path: /ivr - type: HttpRequester - url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/channels/voice/" - http_method: GET - authenticator: "#/definitions/authenticator" - error_handler: - type: "DefaultErrorHandler" - backoff_strategies: - - type: WaitTimeFromHeader - header: "Retry-After" - request_headers: {} - request_body_json: {} - request_parameters: {} - record_selector: - type: RecordSelector - extractor: - type: CustomRecordExtractor - class_name: source_zendesk_talk.components.IVRRoutesRecordExtractor - partition_router: [] - primary_key: [] - schema_loader: - type: InlineSchemaLoader - schema: - type: object - $schema: "http://json-schema.org/schema#" - properties: - action: - type: - - string - - "null" - greeting: - type: - - string - - "null" - id: - type: - - integer - - "null" - ivr_id: - type: - - integer - - "null" - ivr_menu_id: - type: - - integer - - "null" - keypress: - type: - - string - - "null" - option_text: - type: - - string - - "null" - options: - type: - - object - - "null" - overflow_options: - type: - - array - - "null" -version: 0.65.0 diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/run.py b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/run.py deleted file mode 100644 index 154690ce67d1..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/run.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch -from source_zendesk_talk import SourceZendeskTalk - - -def run(): - source = SourceZendeskTalk() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/account_overview.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/account_overview.json deleted file mode 100644 index a20d6b84435e..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/account_overview.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "current_timestamp": { - "description": "Current timestamp at the time of the data retrieval", - "type": "integer" - }, - "average_call_duration": { - "description": "Average duration of calls in seconds", - "type": ["null", "integer"] - }, - "average_queue_wait_time": { - "description": "Average time callers spend waiting in the queue in seconds", - "type": ["null", "integer"] - }, - "average_wrap_up_time": { - "description": "Average time taken by agents to complete call-related work after the call ends in seconds", - "type": ["null", "integer"] - }, - "max_calls_waiting": { - "description": "Maximum number of calls waiting in the queue at a given time", - "type": ["null", "integer"] - }, - "max_queue_wait_time": { - "description": "Longest wait time experienced by a caller in the queue in seconds", - "type": ["null", "integer"] - }, - "total_call_duration": { - "description": "Total duration of all calls combined in seconds", - "type": ["null", "integer"] - }, - "total_calls": { - "description": "Total number of calls handled", - "type": ["null", "integer"] - }, - "total_voicemails": { - "description": "Total voicemails received", - "type": ["null", "integer"] - }, - "total_wrap_up_time": { - "description": "Total time taken by agents for after-call tasks across all calls in seconds", - "type": ["null", "integer"] - }, - "average_callback_wait_time": { - "description": "Average wait time before callback in seconds", - "type": ["null", "integer"] - }, - "average_hold_time": { - "description": "Average time callers are put on hold in seconds", - "type": ["null", "integer"] - }, - "average_time_to_answer": { - "description": "Average time taken to answer calls in seconds", - "type": ["null", "integer"] - }, - "total_callback_calls": { - "description": "Total number of callbacks made", - "type": ["null", "integer"] - }, - "total_calls_abandoned_in_queue": { - "description": "Total calls abandoned by callers while waiting in the queue", - "type": ["null", "integer"] - }, - "total_calls_outside_business_hours": { - "description": "Total calls received outside normal business hours", - "type": ["null", "integer"] - }, - "total_calls_with_exceeded_queue_wait_time": { - "description": "Total calls where wait time exceeded a defined threshold", - "type": ["null", "integer"] - }, - "total_calls_with_requested_voicemail": { - "description": "Total calls where callers requested a voicemail", - "type": ["null", "integer"] - }, - "total_hold_time": { - "description": "Total time callers were put on hold across all calls in seconds", - "type": ["null", "integer"] - }, - "total_inbound_calls": { - "description": "Total incoming calls received", - "type": ["null", "integer"] - }, - "total_outbound_calls": { - "description": "Total outgoing calls made", - "type": ["null", "integer"] - }, - "total_textback_requests": { - "description": "Total requests for textback responses", - "type": ["null", "integer"] - }, - "total_embeddable_callback_calls": { - "description": "Total number of calls that were callbacks from an embedded service", - "type": ["null", "integer"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/addresses.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/addresses.json deleted file mode 100644 index 8cb553af3cb7..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/addresses.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "city": { - "description": "The city where the address is located.", - "type": ["null", "string"] - }, - "country_code": { - "description": "The country code of the address.", - "type": ["null", "string"] - }, - "id": { - "description": "The unique identifier of the address.", - "type": ["null", "integer"] - }, - "name": { - "description": "The name associated with the address.", - "type": ["null", "string"] - }, - "provider_reference": { - "description": "Reference identifier provided by the address provider.", - "type": ["null", "string"] - }, - "province": { - "description": "The province or region of the address.", - "type": ["null", "string"] - }, - "state": { - "description": "The state of the address.", - "type": ["null", "string"] - }, - "street": { - "description": "The street name and number of the address.", - "type": ["null", "string"] - }, - "zip": { - "description": "The postal or zip code of the address.", - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/agents_activity.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/agents_activity.json deleted file mode 100644 index 27404ac9a7be..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/agents_activity.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "agent_id": { - "description": "Unique identifier for the agent.", - "type": ["null", "integer"] - }, - "agent_state": { - "description": "Current state of the agent (e.g., available, away).", - "type": ["null", "string"] - }, - "available_time": { - "description": "Total time the agent is available for calls.", - "type": ["null", "integer"] - }, - "avatar_url": { - "description": "URL to the agent's avatar image.", - "type": ["null", "string"] - }, - "away_time": { - "description": "Total time the agent is marked as away.", - "type": ["null", "integer"] - }, - "call_status": { - "description": "Status of current call (e.g., ongoing, ended).", - "type": ["null", "string"] - }, - "calls_accepted": { - "description": "Total number of calls accepted by the agent.", - "type": ["null", "integer"] - }, - "calls_denied": { - "description": "Total number of calls denied by the agent.", - "type": ["null", "integer"] - }, - "calls_missed": { - "description": "Total number of calls missed by the agent.", - "type": ["null", "integer"] - }, - "forwarding_number": { - "description": "Phone number calls are forwarded to.", - "type": ["null", "string"] - }, - "name": { - "description": "Name of the agent.", - "type": ["null", "string"] - }, - "online_time": { - "description": "Total time the agent is online and active.", - "type": ["null", "integer"] - }, - "total_call_duration": { - "description": "Total duration of all calls handled by the agent.", - "type": ["null", "integer"] - }, - "total_talk_time": { - "description": "Total duration of talk time for all calls handled by the agent.", - "type": ["null", "integer"] - }, - "total_wrap_up_time": { - "description": "Total time taken to wrap up calls after ending for the agent.", - "type": ["null", "integer"] - }, - "via": { - "description": "Platform or channel via which calls are received (e.g., phone, chat).", - "type": ["null", "string"] - }, - "accepted_third_party_conferences": { - "description": "Number of third-party conferences accepted by the agent.", - "type": ["null", "integer"] - }, - "accepted_transfers": { - "description": "Number of transfers accepted by the agent.", - "type": ["null", "integer"] - }, - "average_hold_time": { - "description": "Average time calls are put on hold before being resumed.", - "type": ["null", "integer"] - }, - "average_talk_time": { - "description": "Average duration of talk time for calls.", - "type": ["null", "integer"] - }, - "average_wrap_up_time": { - "description": "Average time taken to wrap up a call after ending.", - "type": ["null", "integer"] - }, - "calls_put_on_hold": { - "description": "Total number of calls put on hold by the agent.", - "type": ["null", "integer"] - }, - "started_third_party_conferences": { - "description": "Number of third-party conferences initiated by the agent.", - "type": ["null", "integer"] - }, - "started_transfers": { - "description": "Number of transfers initiated by the agent.", - "type": ["null", "integer"] - }, - "total_hold_time": { - "description": "Total time calls are put on hold by the agent.", - "type": ["null", "integer"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/agents_overview.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/agents_overview.json deleted file mode 100644 index 382026b7c66c..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/agents_overview.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "current_timestamp": { - "description": "The timestamp when the data was last updated.", - "type": "integer" - }, - "average_wrap_up_time": { - "description": "The average time agents take to wrap up calls.", - "type": ["null", "integer"] - }, - "total_calls_accepted": { - "description": "The total number of calls accepted by agents.", - "type": ["null", "integer"] - }, - "total_calls_denied": { - "description": "The total number of calls denied by agents.", - "type": ["null", "integer"] - }, - "total_calls_missed": { - "description": "The total number of calls missed by agents.", - "type": ["null", "integer"] - }, - "total_talk_time": { - "description": "The total time agents have spent talking on calls.", - "type": ["null", "integer"] - }, - "total_wrap_up_time": { - "description": "The total time agents have taken to wrap up all calls.", - "type": ["null", "integer"] - }, - "average_accepted_transfers": { - "description": "The average number of transfers accepted by agents.", - "type": ["null", "integer"] - }, - "average_available_time": { - "description": "The average amount of time agents are available to take calls.", - "type": ["null", "integer"] - }, - "average_away_time": { - "description": "The average time agents are away from their desks.", - "type": ["null", "integer"] - }, - "average_calls_accepted": { - "description": "The average number of calls accepted by agents.", - "type": ["null", "integer"] - }, - "average_calls_denied": { - "description": "The average number of calls denied by agents.", - "type": ["null", "integer"] - }, - "average_calls_missed": { - "description": "The average number of calls missed by agents.", - "type": ["null", "integer"] - }, - "average_calls_put_on_hold": { - "description": "The average number of calls put on hold by agents.", - "type": ["null", "integer"] - }, - "average_hold_time": { - "description": "The average time calls are put on hold by agents.", - "type": ["null", "integer"] - }, - "average_online_time": { - "description": "The average amount of time agents spend online.", - "type": ["null", "integer"] - }, - "average_started_transfers": { - "description": "The average number of transfers initiated by agents.", - "type": ["null", "integer"] - }, - "average_talk_time": { - "description": "The average time agents spend talking on calls.", - "type": ["null", "integer"] - }, - "total_accepted_transfers": { - "description": "The total number of transfers accepted by agents.", - "type": ["null", "integer"] - }, - "total_calls_put_on_hold": { - "description": "The total number of calls put on hold by agents.", - "type": ["null", "integer"] - }, - "total_hold_time": { - "description": "The total time calls are put on hold by agents.", - "type": ["null", "integer"] - }, - "total_started_transfers": { - "description": "The total number of transfers initiated by agents.", - "type": ["null", "integer"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/call_legs.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/call_legs.json deleted file mode 100644 index e675c288cab3..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/call_legs.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "agent_id": { - "description": "The unique identifier of the agent associated with the call leg.", - "type": ["null", "integer"] - }, - "available_via": { - "description": "The communication channel through which the call leg is available.", - "type": ["null", "string"] - }, - "call_charge": { - "description": "The charge incurred for the call leg.", - "type": ["null", "string"] - }, - "call_id": { - "description": "The unique identifier of the call that the call leg belongs to.", - "type": ["null", "integer"] - }, - "completion_status": { - "description": "The status indicating whether the call leg has been completed or not.", - "type": ["null", "string"] - }, - "conference_from": { - "description": "The party initiating the conference call.", - "type": ["null", "integer"] - }, - "conference_time": { - "description": "The time when the call enters a conference.", - "type": ["null", "integer"] - }, - "conference_to": { - "description": "The party being added to the conference call.", - "type": ["null", "integer"] - }, - "consultation_from": { - "description": "The party initiating the consultation call.", - "type": ["null", "integer"] - }, - "consultation_time": { - "description": "The time when the call enters a consultation.", - "type": ["null", "integer"] - }, - "consultation_to": { - "description": "The party being consulted during the call.", - "type": ["null", "integer"] - }, - "created_at": { - "description": "The timestamp indicating when the call leg was created.", - "type": ["null", "string"] - }, - "duration": { - "description": "The length of the call leg in seconds.", - "type": ["null", "integer"] - }, - "forwarded_to": { - "description": "The party to whom the call was forwarded.", - "type": ["null", "string"] - }, - "hold_time": { - "description": "The duration for which the call leg was on hold.", - "type": ["null", "integer"] - }, - "id": { - "description": "The unique identifier of the call leg.", - "type": ["null", "integer"] - }, - "minutes_billed": { - "description": "The minutes for which the call leg is billed.", - "type": ["null", "integer"] - }, - "quality_issues": { - "description": "Any reported quality issues during the call leg.", - "type": ["null", "array"] - }, - "talk_time": { - "description": "The actual time spent talking during the call leg.", - "type": ["null", "integer"] - }, - "transferred_from": { - "description": "The party from which the call was originally transferred.", - "type": ["null", "integer"] - }, - "transferred_to": { - "description": "The party to whom the call was transferred.", - "type": ["null", "integer"] - }, - "type": { - "description": "The type of call leg (e.g., inbound, outbound, internal).", - "type": ["null", "string"] - }, - "updated_at": { - "description": "The timestamp indicating when the call leg was last updated.", - "type": ["null", "string"], - "format": "date-time" - }, - "user_id": { - "description": "The unique identifier of the user associated with the call leg.", - "type": ["null", "integer"] - }, - "wrap_up_time": { - "description": "The time taken for wrap-up activities after the call leg ends.", - "type": ["null", "integer"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/calls.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/calls.json deleted file mode 100644 index 62e168e9ad67..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/calls.json +++ /dev/null @@ -1,167 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "agent_id": { - "description": "The unique identifier of the agent who handled the call.", - "type": ["null", "integer"] - }, - "call_charge": { - "description": "The cost or charge associated with the call.", - "type": ["null", "string"] - }, - "call_group_id": { - "description": "The ID of the group associated with the call.", - "type": ["null", "integer"] - }, - "call_recording_consent": { - "description": "Indicates whether there is recording consent for the call.", - "type": ["null", "string"] - }, - "call_recording_consent_action": { - "description": "The action taken based on recording consent.", - "type": ["null", "string"] - }, - "call_recording_consent_keypress": { - "description": "Keypress used for call recording consent.", - "type": ["null", "string"] - }, - "callback": { - "description": "Indicates if the call is a callback.", - "type": ["null", "boolean"] - }, - "callback_source": { - "description": "Source of the callback.", - "type": ["null", "string"] - }, - "completion_status": { - "description": "Status indicating if the call was successfully completed.", - "type": ["null", "string"] - }, - "consultation_time": { - "description": "Time spent on consultation during the call.", - "type": ["null", "integer"] - }, - "created_at": { - "description": "Timestamp indicating when the call was created.", - "type": ["null", "string"] - }, - "customer_requested_voicemail": { - "description": "Indicates if the customer requested voicemail.", - "type": ["null", "boolean"] - }, - "default_group": { - "description": "Default group associated with the call.", - "type": ["null", "boolean"] - }, - "direction": { - "description": "Direction of the call (inbound/outbound).", - "type": ["null", "string"] - }, - "duration": { - "description": "Total duration of the call.", - "type": ["null", "integer"] - }, - "exceeded_queue_time": { - "description": "Indicates if the call exceeded queue waiting time.", - "type": ["null", "boolean"] - }, - "hold_time": { - "description": "Time the caller spent on hold during the call.", - "type": ["null", "integer"] - }, - "id": { - "description": "Unique identifier of the call.", - "type": ["null", "integer"] - }, - "ivr_action": { - "description": "Action taken by IVR during the call.", - "type": ["null", "string"] - }, - "ivr_destination_group_name": { - "description": "Name of the IVR destination group.", - "type": ["null", "string"] - }, - "ivr_hops": { - "description": "Number of times call was routed through IVR.", - "type": ["null", "integer"] - }, - "ivr_routed_to": { - "description": "Destination of the call after IVR routing.", - "type": ["null", "string"] - }, - "ivr_time_spent": { - "description": "Time spent on IVR interactions during the call.", - "type": ["null", "integer"] - }, - "minutes_billed": { - "description": "Minutes billed for the call.", - "type": ["null", "integer"] - }, - "not_recording_time": { - "description": "Time when call was not being recorded.", - "type": ["null", "integer"] - }, - "outside_business_hours": { - "description": "Indicates if the call occurred outside business hours.", - "type": ["null", "boolean"] - }, - "overflowed": { - "description": "Indicates if the call overflowed from a queue.", - "type": ["null", "boolean"] - }, - "overflowed_to": { - "description": "Destination where the call overflowed to.", - "type": ["null", "string"] - }, - "phone_number": { - "description": "Phone number associated with the call.", - "type": ["null", "string"] - }, - "phone_number_id": { - "description": "ID of the phone number associated with the call.", - "type": ["null", "integer"] - }, - "quality_issues": { - "description": "Indicates any quality issues during the call.", - "type": ["null", "array"] - }, - "recording_control_interactions": { - "description": "Interactions related to call recording control.", - "type": ["null", "integer"] - }, - "recording_time": { - "description": "Total time the call was recorded.", - "type": ["null", "integer"] - }, - "talk_time": { - "description": "Total talk time during the call.", - "type": ["null", "integer"] - }, - "ticket_id": { - "description": "ID of the ticket associated with the call.", - "type": ["null", "integer"] - }, - "time_to_answer": { - "description": "Time taken to answer the call.", - "type": ["null", "integer"] - }, - "updated_at": { - "description": "Timestamp indicating when the call data was last updated.", - "type": ["null", "string"], - "format": "date-time" - }, - "voicemail": { - "description": "Indicates if voicemail was left during the call.", - "type": ["null", "boolean"] - }, - "wait_time": { - "description": "Total time the caller waited before the call was answered.", - "type": ["null", "integer"] - }, - "wrap_up_time": { - "description": "Time taken for wrap-up activities after the call.", - "type": ["null", "integer"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/current_queue_activity.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/current_queue_activity.json deleted file mode 100644 index 9c47e2f28f9e..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/current_queue_activity.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "current_timestamp": { - "description": "The timestamp indicating the current time when the data was retrieved.", - "type": "integer" - }, - "agents_online": { - "description": "The number of agents who are currently available and online in the queue.", - "type": ["null", "integer"] - }, - "average_wait_time": { - "description": "The average amount of time callers are waiting in the queue before being connected to an agent.", - "type": ["null", "integer"] - }, - "callbacks_waiting": { - "description": "The number of callback requests that are currently in the queue, waiting for agents to be available.", - "type": ["null", "integer"] - }, - "calls_waiting": { - "description": "The number of incoming calls that are currently waiting to be answered by agents.", - "type": ["null", "integer"] - }, - "embeddable_callbacks_waiting": { - "description": "The number of callback requests that are specifically designated for embedding in a webpage or application and are waiting in the queue.", - "type": ["null", "integer"] - }, - "longest_wait_time": { - "description": "The longest amount of time a caller has been waiting in the queue before being connected to an agent.", - "type": ["null", "integer"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/greeting_categories.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/greeting_categories.json deleted file mode 100644 index 75645587bbf0..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/greeting_categories.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier for the greeting category.", - "type": ["null", "integer"] - }, - "name": { - "description": "Name of the greeting category.", - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/greetings.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/greetings.json deleted file mode 100644 index c38cc9ba0fc5..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/greetings.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "active": { - "description": "Indicates if the greeting is currently active or not", - "type": ["null", "boolean"] - }, - "audio_name": { - "description": "Name of the audio file for the greeting", - "type": ["null", "string"] - }, - "audio_url": { - "description": "URL to access the audio file for the greeting", - "type": ["null", "string"] - }, - "category_id": { - "description": "ID of the category to which the greeting belongs", - "type": ["null", "integer"] - }, - "default": { - "description": "Indicates if the greeting is set as the default", - "type": ["null", "boolean"] - }, - "default_lang": { - "description": "Default language for the greeting", - "type": ["null", "boolean"] - }, - "has_sub_settings": { - "description": "Indicates if the greeting has sub settings or not", - "type": ["null", "boolean"] - }, - "id": { - "description": "Unique identifier for the greeting", - "type": ["null", "string"] - }, - "ivr_ids": { - "description": "List of IVR IDs associated with the greeting", - "type": ["null", "array"], - "items": { - "description": "IVR ID", - "type": ["string", "integer"] - } - }, - "name": { - "description": "Name of the greeting", - "type": ["null", "string"] - }, - "pending": { - "description": "Indicates if the greeting is pending for approval", - "type": ["null", "boolean"] - }, - "phone_number_ids": { - "description": "List of phone number IDs linked to the greeting", - "type": ["null", "array"], - "items": { - "description": "Phone number ID", - "type": ["string", "integer"] - } - }, - "upload_id": { - "description": "ID of the uploaded audio file for the greeting", - "type": ["null", "integer"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivr_menus.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivr_menus.json deleted file mode 100644 index af592fd7eac6..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivr_menus.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "default": { - "description": "The default action or response for this IVR menu.", - "type": ["null", "boolean"] - }, - "greeting_id": { - "description": "The ID of the greeting message associated with this IVR menu.", - "type": ["null", "integer"] - }, - "id": { - "description": "The unique identifier of the IVR menu.", - "type": ["null", "integer"] - }, - "ivr_id": { - "description": "The ID of the IVR associated with this menu.", - "type": ["null", "integer"] - }, - "name": { - "description": "The name of the IVR menu.", - "type": ["null", "string"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivr_routes.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivr_routes.json deleted file mode 100644 index c4c839dd2394..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivr_routes.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "action": { - "description": "The action to be taken when this IVR route is triggered.", - "type": ["null", "string"] - }, - "greeting": { - "description": "The message or greeting played to the caller when this IVR route is entered.", - "type": ["null", "string"] - }, - "id": { - "description": "The unique identifier for the IVR route.", - "type": ["null", "integer"] - }, - "ivr_id": { - "description": "The ID of the IVR associated with this route.", - "type": ["null", "integer"] - }, - "ivr_menu_id": { - "description": "The ID of the IVR menu associated with this route.", - "type": ["null", "integer"] - }, - "keypress": { - "description": "The keypress required to trigger this IVR route.", - "type": ["null", "string"] - }, - "option_text": { - "description": "The text displayed for the option linked to this IVR route.", - "type": ["null", "string"] - }, - "options": { - "description": "The list of options available for this IVR route.", - "type": ["null", "object"] - }, - "overflow_options": { - "description": "The additional options presented when the IVR menu overflows.", - "type": ["null", "array"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivrs.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivrs.json deleted file mode 100644 index 53fb4a5dccd9..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/ivrs.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the IVR menu", - "type": ["null", "integer"] - }, - "menus": { - "description": "Collection of IVR menus", - "type": ["null", "array"], - "items": { - "description": "Individual IVR menu item", - "type": "object", - "properties": { - "default": { - "description": "Flag indicating if this menu is set as default", - "type": ["null", "boolean"] - }, - "greeting_id": { - "description": "Identifier of the greeting associated with this IVR menu", - "type": ["null", "integer"] - }, - "id": { - "description": "Unique identifier of the IVR menu item", - "type": ["null", "integer"] - }, - "ivr_id": { - "description": "Identifier of the IVR this menu belongs to", - "type": ["null", "integer"] - }, - "name": { - "description": "Name of the IVR menu item", - "type": ["null", "string"] - }, - "routes": { - "description": "List of available routes within the IVR menu", - "type": ["array", "null"], - "items": { - "description": "Individual route within the IVR menu", - "type": "object", - "properties": { - "action": { - "description": "Action to be taken when this route is selected", - "type": ["null", "string"] - }, - "greeting": { - "description": "Text or audio greeting associated with this route", - "type": ["null", "string"] - }, - "id": { - "description": "Unique identifier of the route", - "type": ["null", "integer"] - }, - "keypress": { - "description": "Keypress for selecting this route", - "type": ["null", "string"] - }, - "option_text": { - "description": "Text of the option presented to the user", - "type": ["null", "string"] - }, - "options": { - "description": "Additional options available for this route", - "type": ["null", "object"] - }, - "overflow_options": { - "description": "Options for handling overflow calls", - "type": ["null", "array"] - } - } - } - } - } - } - }, - "name": { - "description": "Name of the IVR menu", - "type": ["null", "string"] - }, - "phone_number_ids": { - "description": "List of phone number IDs associated with the IVR data", - "type": ["null", "array"], - "items": { - "description": "Identifiers of phone numbers associated with this IVR menu", - "type": ["string", "integer"] - } - }, - "phone_number_names": { - "description": "List of phone number names associated with the IVR data", - "type": ["null", "array"], - "items": { - "description": "Names of phone numbers associated with this IVR menu", - "type": ["integer", "string"] - } - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/phone_numbers.json b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/phone_numbers.json deleted file mode 100644 index d188daa931c3..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/schemas/phone_numbers.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "call_recording_consent": { - "description": "Indicates whether consent for call recordings is given or not", - "type": ["null", "string"] - }, - "capabilities": { - "description": "Capabilities of the phone number", - "type": ["null", "object"], - "properties": { - "mms": { - "description": "Indicates if MMS capability is enabled", - "type": ["null", "boolean"] - }, - "sms": { - "description": "Indicates if SMS capability is enabled", - "type": ["null", "boolean"] - }, - "voice": { - "description": "Indicates if voice calling capability is enabled", - "type": ["null", "boolean"] - } - } - }, - "categorised_greetings": { - "description": "Categorized greetings for the phone number", - "type": ["null", "object"] - }, - "categorised_greetings_with_sub_settings": { - "description": "Categorized greetings with sub-settings for the phone number", - "type": ["null", "object"] - }, - "country_code": { - "description": "Country code of the phone number", - "type": ["null", "string"] - }, - "created_at": { - "description": "Date and time when the phone number was created", - "type": ["null", "string"] - }, - "default_greeting_ids": { - "description": "IDs of default greetings for the phone number", - "type": ["null", "array"], - "items": { - "description": "ID of a default greeting", - "type": "string" - } - }, - "default_group_id": { - "description": "ID of the default group assigned to the phone number", - "type": ["null", "integer"] - }, - "display_number": { - "description": "Phone number to be displayed", - "type": ["null", "string"] - }, - "external": { - "description": "Indicates if the phone number is external", - "type": ["null", "boolean"] - }, - "failover_number": { - "description": "Failover phone number", - "type": ["null", "string"] - }, - "greeting_ids": { - "description": "IDs of greetings associated with the phone number", - "type": ["null", "array"] - }, - "group_ids": { - "description": "IDs of groups associated with the phone number", - "type": ["null", "array"] - }, - "id": { - "description": "Unique identifier of the phone number", - "type": ["null", "integer"] - }, - "ivr_id": { - "description": "IVR (Interactive Voice Response) ID associated with the phone number", - "type": ["null", "integer"] - }, - "line_type": { - "description": "Type of telephone line (e.g., landline, mobile)", - "type": ["null", "string"] - }, - "location": { - "description": "Location of the phone number", - "type": ["null", "string"] - }, - "name": { - "description": "Name of the phone number", - "type": ["null", "string"] - }, - "nickname": { - "description": "Nickname of the phone number", - "type": ["null", "string"] - }, - "number": { - "description": "Actual phone number", - "type": ["null", "string"] - }, - "outbound_enabled": { - "description": "Indicates if outbound calling is enabled", - "type": ["null", "boolean"] - }, - "priority": { - "description": "Priority level of the phone number", - "type": ["null", "integer"] - }, - "recorded": { - "description": "Indicates if calls are recorded", - "type": ["null", "boolean"] - }, - "schedule_id": { - "description": "ID of the schedule associated with the phone number", - "type": ["null", "integer"] - }, - "sms_enabled": { - "description": "Indicates if SMS is enabled", - "type": ["null", "boolean"] - }, - "sms_group_id": { - "description": "ID of the group for SMS", - "type": ["null", "integer"] - }, - "token": { - "description": "Token associated with the phone number", - "type": ["null", "string"] - }, - "toll_free": { - "description": "Indicates if the phone number is a toll-free number", - "type": ["null", "boolean"] - }, - "transcription": { - "description": "Indicates if call transcription is enabled", - "type": ["null", "boolean"] - }, - "voice_enabled": { - "description": "Indicates if voice calling is enabled", - "type": ["null", "boolean"] - } - } -} diff --git a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/source.py b/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/source.py deleted file mode 100644 index 87aa38b3c918..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/source_zendesk_talk/source.py +++ /dev/null @@ -1,10 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - - -class SourceZendeskTalk(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-zendesk-talk/unit_tests/test_components.py b/airbyte-integrations/connectors/source-zendesk-talk/unit_tests/test_components.py deleted file mode 100644 index 6dc83fe5a28f..000000000000 --- a/airbyte-integrations/connectors/source-zendesk-talk/unit_tests/test_components.py +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. - -from unittest.mock import MagicMock - -import pytest -import requests -import requests_mock -from airbyte_cdk.sources.declarative.auth.token import BasicHttpAuthenticator, BearerAuthenticator -from source_zendesk_talk.components import IVRMenusRecordExtractor, IVRRoutesRecordExtractor, ZendeskTalkAuthenticator - - -@pytest.mark.parametrize( - "response_data, expected_records", - [ - # Test cases for IVRMenusRecordExtractor - ( - {"ivrs": [{"id": "ivr_1", "menus": [{"id": "menu_1a", "name": "Menu 1A"}, {"id": "menu_1b", "name": "Menu 1B"}]}, {"id": "ivr_2", "menus": [{"id": "menu_2a", "name": "Menu 2A"}]}]}, - [{"ivr_id": "ivr_1", "id": "menu_1a", "name": "Menu 1A"}, {"ivr_id": "ivr_1", "id": "menu_1b", "name": "Menu 1B"}, {"ivr_id": "ivr_2", "id": "menu_2a", "name": "Menu 2A"}] - ), - ({"ivrs": []}, []), - ({"ivrs": [{"id": "ivr_1", "menus": []}]}, []), - ] -) -def test_ivr_menus_record_extractor(response_data, expected_records): - with requests_mock.Mocker() as m: - m.get('https://not-the-real.api/ivrs', json=response_data) - response = requests.get('https://not-the-real.api/ivrs') - - extractor = IVRMenusRecordExtractor() - records = extractor.extract_records(response) - - assert records == expected_records - -@pytest.mark.parametrize( - "response_data, expected_records", - [ - # Test cases for IVRRoutesRecordExtractor - ( - {"ivrs": [{"id": "ivr_1", "menus": [{"id": "menu_1a", "routes": [{"id": "route_1a1", "name": "Route 1A1"}, {"id": "route_1a2", "name": "Route 1A2"}]}]}]}, - [{"ivr_id": "ivr_1", "ivr_menu_id": "menu_1a", "id": "route_1a1", "name": "Route 1A1"}, {"ivr_id": "ivr_1", "ivr_menu_id": "menu_1a", "id": "route_1a2", "name": "Route 1A2"}] - ), - ({"ivrs": [{"id": "ivr_1", "menus": [{"id": "menu_1a", "routes": []}]}]}, []), - ] -) -def test_ivr_routes_record_extractor(response_data, expected_records): - with requests_mock.Mocker() as m: - m.get('https://not-the-real.api/ivrs', json=response_data) - response = requests.get('https://not-the-real.api/ivrs') - - extractor = IVRRoutesRecordExtractor() - records = extractor.extract_records(response) - - assert records == expected_records - -@pytest.mark.parametrize( - "config, authenticator_type", - [ - ({"access_token": "dummy_token", "email": "dummy@example.com"}, BasicHttpAuthenticator), - ({"credentials": {"auth_type": "api_token"}}, BasicHttpAuthenticator), - ({"credentials": {"auth_type": "oauth2.0"}}, BearerAuthenticator), - ] -) -def test_zendesk_talk_authenticator(config, authenticator_type): - legacy_basic_auth = MagicMock(spec=BasicHttpAuthenticator) - basic_auth = MagicMock(spec=BasicHttpAuthenticator) - oauth = MagicMock(spec=BearerAuthenticator) - - authenticator = ZendeskTalkAuthenticator(legacy_basic_auth, basic_auth, oauth, config) - assert isinstance(authenticator, authenticator_type) - -def test_zendesk_talk_authenticator_invalid(): - with pytest.raises(Exception) as excinfo: - config = {"credentials": {"auth_type": "invalid"}} - ZendeskTalkAuthenticator(None, None, None, config) - assert "Missing valid authenticator" in str(excinfo.value) diff --git a/docs/integrations/sources/zendesk-talk.md b/docs/integrations/sources/zendesk-talk.md index 2964044982eb..259e512a887d 100644 --- a/docs/integrations/sources/zendesk-talk.md +++ b/docs/integrations/sources/zendesk-talk.md @@ -79,6 +79,7 @@ The Zendesk connector should not run into Zendesk API limitations under normal u | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------| +| 1.1.0-rc.1 | 2024-10-31 | [47313](https://github.com/airbytehq/airbyte/pull/47313) | Migrate to Manifest-only | | 1.0.21 | 2024-10-29 | [47082](https://github.com/airbytehq/airbyte/pull/47082) | Update dependencies | | 1.0.20 | 2024-10-12 | [46861](https://github.com/airbytehq/airbyte/pull/46861) | Update dependencies | | 1.0.19 | 2024-10-05 | [46394](https://github.com/airbytehq/airbyte/pull/46394) | Update dependencies | From 484d22bfc174cd38b9573e7b6e4d2eedf120b5a3 Mon Sep 17 00:00:00 2001 From: Davin Chia Date: Fri, 1 Nov 2024 14:51:21 -0700 Subject: [PATCH 535/808] Bulk Load: Mark Completed States as Persisted. (#48109) Closes airbytehq/airbyte-internal-issues#9977 When marking COMPLETE, also mark PERSISTED. This also simplifies the PERSISTED check to no longer need to check for COMPLETED states. --- .../airbyte/cdk/load/state/StreamManager.kt | 27 +++++--- .../cdk/load/state/StreamManagerTest.kt | 66 ++++++++++++++++++- docs/understanding-airbyte/jobs.md | 2 - 3 files changed, 84 insertions(+), 11 deletions(-) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/state/StreamManager.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/state/StreamManager.kt index 80769f1e8cb1..360b2b0e55d3 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/state/StreamManager.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/state/StreamManager.kt @@ -140,9 +140,9 @@ class DefaultStreamManager( } override fun updateBatchState(batch: BatchEnvelope) { - val stateRanges = - rangesState[batch.batch.state] - ?: throw IllegalArgumentException("Invalid batch state: ${batch.batch.state}") + + rangesState[batch.batch.state] + ?: throw IllegalArgumentException("Invalid batch state: ${batch.batch.state}") // Force the ranges to overlap at their endpoints, in order to work around // the behavior of `.encloses`, which otherwise would not consider adjacent ranges as @@ -152,8 +152,21 @@ class DefaultStreamManager( val expanded = batch.ranges.asRanges().map { it.span(Range.singleton(it.upperEndpoint() + 1)) } - stateRanges.addAll(expanded) - log.info { "Updated ranges for ${stream.descriptor}[${batch.batch.state}]: $stateRanges" } + when (batch.batch.state) { + Batch.State.PERSISTED -> { + rangesState[Batch.State.PERSISTED]?.addAll(expanded) + } + Batch.State.COMPLETE -> { + // A COMPLETED state implies PERSISTED, so also mark PERSISTED. + rangesState[Batch.State.PERSISTED]?.addAll(expanded) + rangesState[Batch.State.COMPLETE]?.addAll(expanded) + } + else -> Unit + } + + log.info { + "Updated ranges for ${stream.descriptor}[${batch.batch.state}]: $expanded. PERSISTED is also updated on COMPLETE." + } } /** True if all records in `[0, index)` have reached the given state. */ @@ -172,10 +185,8 @@ class DefaultStreamManager( return isProcessingCompleteForState(recordCount.get(), Batch.State.COMPLETE) } - /** TODO: Handle conflating PERSISTED w/ COMPLETE upstream, to allow for overlap? */ override fun areRecordsPersistedUntil(index: Long): Boolean { - return isProcessingCompleteForState(index, Batch.State.PERSISTED) || - isProcessingCompleteForState(index, Batch.State.COMPLETE) // complete => persisted + return isProcessingCompleteForState(index, Batch.State.PERSISTED) } override fun markSucceeded() { diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/state/StreamManagerTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/state/StreamManagerTest.kt index ceb8f009fb82..fbbc3c2082e8 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/state/StreamManagerTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/state/StreamManagerTest.kt @@ -154,6 +154,34 @@ class StreamManagerTest { Pair(stream1, ExpectComplete(true)), ) ), + TestCase( + "Single stream, multiple batches, complete also persists", + listOf( + Pair(stream1, SetRecordCount(10)), + Pair(stream1, AddComplete(0, 4)), + Pair(stream1, ExpectPersistedUntil(5, true)), + Pair(stream1, ExpectComplete(false)), + Pair(stream1, SetEndOfStream), + Pair(stream1, AddComplete(5, 9)), + Pair(stream1, ExpectComplete(true)), + ) + ), + TestCase( + "Single stream, multiple batches, persist/complete out of order", + listOf( + Pair(stream1, SetRecordCount(10)), + Pair( + stream1, + AddComplete(5, 9) + ), // complete a rangeset before the preceding rangeset is persisted + Pair(stream1, AddPersisted(0, 4)), + Pair(stream1, ExpectPersistedUntil(10, true)), + Pair(stream1, ExpectComplete(false)), + Pair(stream1, AddComplete(0, 4)), + Pair(stream1, SetEndOfStream), + Pair(stream1, ExpectComplete(true)), + ) + ), TestCase( "multiple streams", listOf( @@ -177,7 +205,43 @@ class StreamManagerTest { Pair(stream2, ExpectPersistedUntil(20, true)), Pair(stream2, ExpectComplete(true)), ) - ) + ), + TestCase( + "mingle streams, multiple batches, complete also persists", + listOf( + Pair(stream1, SetRecordCount(10)), + Pair(stream1, AddComplete(0, 4)), + Pair(stream1, ExpectPersistedUntil(5, true)), + Pair(stream2, AddComplete(0, 4)), + Pair(stream2, ExpectPersistedUntil(5, true)), + Pair(stream1, ExpectComplete(false)), + Pair(stream2, ExpectComplete(false)), + Pair(stream1, SetEndOfStream), + Pair(stream1, AddComplete(5, 9)), + Pair(stream2, AddComplete(5, 9)), + Pair(stream2, SetEndOfStream), + Pair(stream1, ExpectComplete(true)), + Pair(stream2, ExpectComplete(true)), + ) + ), + TestCase( + "mingle streams, multiple batches, persist/complete out of order", + listOf( + Pair(stream1, SetRecordCount(10)), + Pair(stream1, AddComplete(5, 9)), + Pair(stream1, ExpectPersistedUntil(10, false)), + Pair(stream2, AddComplete(5, 9)), + Pair(stream2, ExpectPersistedUntil(10, false)), + Pair(stream1, ExpectComplete(false)), + Pair(stream2, ExpectComplete(false)), + Pair(stream1, SetEndOfStream), + Pair(stream1, AddComplete(0, 4)), + Pair(stream2, AddComplete(0, 4)), + Pair(stream2, SetEndOfStream), + Pair(stream1, ExpectComplete(true)), + Pair(stream2, ExpectComplete(true)), + ) + ), ) .map { Arguments.of(it) } .stream() diff --git a/docs/understanding-airbyte/jobs.md b/docs/understanding-airbyte/jobs.md index 5587230efe61..8fd560646c96 100644 --- a/docs/understanding-airbyte/jobs.md +++ b/docs/understanding-airbyte/jobs.md @@ -277,5 +277,3 @@ To help illustrate what is possible, below are a couple examples of how the retr - - From 8002b1ffe93efad49a0fbbf3128f3b49859aa6ed Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Fri, 1 Nov 2024 15:29:03 -0700 Subject: [PATCH 536/808] Docs Update: Create new "Writing Connector Documentation" guide (#48083) Co-authored-by: Aldo Gonzalez --- .../writing-connector-docs.md | 111 ++++++++++++++++++ docs/contributing-to-airbyte/writing-docs.md | 86 ++------------ docs/integrations/sources/sftp-bulk.md | 22 ++++ 3 files changed, 145 insertions(+), 74 deletions(-) create mode 100644 docs/connector-development/writing-connector-docs.md diff --git a/docs/connector-development/writing-connector-docs.md b/docs/connector-development/writing-connector-docs.md new file mode 100644 index 000000000000..348ca5e9db79 --- /dev/null +++ b/docs/connector-development/writing-connector-docs.md @@ -0,0 +1,111 @@ +# Writing Connector Documentation + +This document provides guidance on tools and techniques specifically for writing documentation for Airbyte connectors. + +For more information about writing documentation at Airbyte generally, please also see the [Contributing Guide for Airbyte Documentation](../contributing-to-airbyte/writing-docs.md). + +## Custom markdown extensions for connector docs + +Airbyte's markdown documentation—particularly connector-specific documentation—needs to gracefully support multiple different contexts: key details may differ between open-source builds and Airbyte Cloud, and the more exhaustive explanations appropriate for https://docs.airbyte.com may bury key details when rendered as inline documentation within the Airbyte application. In order to support all these different contexts without resorting to multiple overlapping files that must be maintained in parallel, Airbyte's documentation tooling supports multiple nonstandard features. + +Please familiarize yourself with all the tools available to you when writing documentation for a connector, so that you can provide appropriately tailored information to your readers in whichever context they see it. + +:::note +As a general rule, features that introduce new behavior or prevent certain content from rendering will affect how the Airbyte UI displays markdown content, but have no impact on https://docs.airbyte.com. If you want to test out these in-app features in [a local Airbyte build](https://docs.airbyte.com/contributing-to-airbyte/developing-locally/#develop-on-airbyte-webapp), ensure that you have the `airbyte` git repository checked out to the same parent directory as the airbyte platform repository: if so, development builds will by default fetch connector documentation from your local filesystem, allowing you to freely edit their content and view the rendered output. +::: + +## Mapping UI to Associated Docs + +Sometimes a connector's configuration UI may have a field that requires more explanation than can be provided in the UI itself. In these cases, the connector developer can use the `FieldAnchor` syntax below to link documentation to a specific UI component. + +When a user selects the associated field in the UI, the documentation will automatically scroll to the related documentation section the right-hand panel. + +The `FieldAnchor` syntax accepts a modified `jsonpath` expression, as follows: + +`example-a.md`: +```md +## Configuring Widgets + + + +...config-related instructions here... + + +``` + +Taking a more complex example, you can access deeper-nested fields using `jsonpath` expressions syntax: + +`example-b.md`: +```md +## Configuring Unstructures Streams + + + +...config-related instructions here... + + +``` + +Note: +- The syntax expected is a modified version of jsonpath, without the conventional `$.` prefix. +- The `FieldAnchor` syntax is only supported in the context of connector documentation, and will not render on the documentation site. + +How it works: + +- When a user focuses the field identified by the `field` attribute in the connector setup UI, the documentation pane will automatically scroll to the associated section of the documentation, highlighting all content contained inside the `` tag. +- These are rendered as regular divs in the documentation site, so they have no effect in places other than the in-app documentation panel. +- There must be blank lines between a custom tag like `FieldAnchor` the content it wraps for the documentation site to render markdown syntax inside the custom tag to html. +- The `field` attribute must be a valid `jsonpath` expression to one of the properties nested under `connectionSpecification.properties` in that connector's `spec.json` or `spec.yaml` file. For example, if the connector spec contains a `connectionSpecification.properties.replication_method.replication_slot`, you would mark the start of the related documentation section with `` and its end with ``. +- It's also possible to highlight the same section for multiple fields by separating them with commas, like ``. +- To mark a section as highlighted after the user picks an option from a `oneOf`: use a `field` prop like `path.to.field[value-of-selection-key]`, where the `value-of-selection-key` is the value of a `const` field nested inside that `oneOf`. For example, if the specification of the `oneOf` field is: + +```json +"replication_method": { + "type": "object", + "title": "Update Method", + "oneOf": [ + { + "title": "Read Changes using Binary Log (CDC)", + "required": ["method"], + "properties": { + "method": { + "type": "string", + "const": "CDC", + "order": 0 + }, + "initial_waiting_seconds": { + "type": "integer", + "title": "Initial Waiting Time in Seconds (Advanced)", + }, + } + }, + { + "title": "Scan Changes with User Defined Cursor", + "required": ["method"], + "properties": { + "method": { + "type": "string", + "const": "STANDARD", + "order": 0 + } + } + } + ] +} +``` + +The selection keys are `CDC` and `STANDARD`, so you can wrap a specific replication method's documentation section with a `...` tag, and it will be highlighted if the user selects CDC replication in the UI. + +:::tip +Because of their close connection with the connector setup form fields, `` tags are only enabled for the source and destination setup pages. +::: + +## Prevent specific docs from rendering in the Config UI with `` + +Certain content is important to document, but unhelpful in the context of the Airbyte UI's inline documentation views: + +- background information that helps users understand a connector but doesn't affect configuration +- edge cases that are unusual but time-consuming to solve +- context for readers on the documentation site about environment-specific content (see [below](#environment-specific-in-app-content-with-magic-html-comments)) + +Wrapping such content in a pair of `...` tags will prevent it from being rendered within the Airbyte UI without affecting its presentation on https://docs.airbyte.com. This allows a single markdown file to be the source of truth for both a streamlined in-app reference and a more thorough treatment on the documentation website. diff --git a/docs/contributing-to-airbyte/writing-docs.md b/docs/contributing-to-airbyte/writing-docs.md index 55a004f02581..55455456446c 100644 --- a/docs/contributing-to-airbyte/writing-docs.md +++ b/docs/contributing-to-airbyte/writing-docs.md @@ -20,23 +20,23 @@ The Docs team maintains a list of [good first issues](https://github.com/airbyte If you're new to GitHub and Markdown, complete [the First Contributions tutorial](https://github.com/firstcontributions/first-contributions) and learn [Markdown basics](https://guides.github.com/features/mastering-markdown/) before contributing to Airbyte documentation. Even if you're familiar with the basics, you may be interested in Airbyte's [custom markdown extensions for connector docs](#custom-markdown-extensions-for-connector-docs). ::: -### Editing directly on GitHub +## Editing directly on GitHub To make minor changes (example: fixing typos) or edit a single file, you can edit the file directly on GitHub: 1. Click **Edit this page** at the bottom of any published document on [docs.airbyte.com](https://docs.airbyte.com/). You'll be taken to the GitHub editor. 2. [Edit the file directly on GitHub and open a Pull Request](https://docs.github.com/en/repositories/working-with-files/managing-files/editing-files). -### Editing on your local machine +## Editing on your local machine -#### Prerequisites +### Prerequisites To contribute to our documentation, please ensure following required technologies are installed on your local machine: 1. [`Node.js`](https://nodejs.org/en/learn/getting-started/how-to-install-nodejs) 2. [`pnpm`](https://pnpm.io/installation) -#### Setup and Making Changes +### Setup and Making Changes To make complex changes or edit multiple files, edit the files on your local machine: @@ -98,17 +98,13 @@ To make complex changes or edit multiple files, edit the files on your local mac 6. Assign `airbytehq/docs` as a Reviewer for your pull request. -### Custom markdown extensions for connector docs +## Guide To Writing Connector Docs -Airbyte's markdown documentation—particularly connector-specific documentation—needs to gracefully support multiple different contexts: key details may differ between open-source builds and Airbyte Cloud, and the more exhaustive explanations appropriate for https://docs.airbyte.com may bury key details when rendered as inline documentation within the Airbyte application. In order to support all these different contexts without resorting to multiple overlapping files that must be maintained in parallel, Airbyte's documentation tooling supports multiple nonstandard features. +For instructions specific to connector configuration docs, please see the [Connector Documentation Guide](../connector-development/writing-connector-docs.md). -Please familiarize yourself with all the tools available to you when writing documentation for a connector, so that you can provide appropriately tailored information to your readers in whichever context they see it. +## Common Tools and Patterns -:::note -As a general rule, features that introduce new behavior or prevent certain content from rendering will affect how the Airbyte UI displays markdown content, but have no impact on https://docs.airbyte.com. If you want to test out these in-app features in [a local Airbyte build](https://docs.airbyte.com/contributing-to-airbyte/developing-locally/#develop-on-airbyte-webapp), ensure that you have the `airbyte` git repository checked out to the same parent directory as the airbyte platform repository: if so, development builds will by default fetch connector documentation from your local filesystem, allowing you to freely edit their content and view the rendered output. -::: - -#### Select between mutually-exclusive content options with `` +### Select between mutually-exclusive content options with `` Tabs are a built-in feature of Docusaurus, the tool we use to build `https://docs.airbyte.com`; please refer to [their documentation](https://docusaurus.io/docs/markdown-features/tabs) for their options and behavior in this context. For better site-agnostic documentation, and because we like the feature, we maintain a separate `Tabs` implementation with limited, one-way API compatibility: all usage options we document should behave the same in-app and on `https://docs.airbyte.com`. If you find a discrepancy or breakage, we would appreciate if you [report it as a bug](https://github.com/airbytehq/airbyte/issues/new?assignees=&labels=type%2Fenhancement%2Carea%2Fdocumentation+needs-triage&projects=&template=8-documentation.yaml)! The reverse is not necessarily true, however: Docusaurus supports many use cases besides ours, so supporting its every usage pattern is a deliberate non-goal. @@ -165,64 +161,7 @@ When configuring this hypothetical connector using OAuth authentication, you sho - **however**, due to bugs in our in-app markdown rendering library, you should be dilligent about using empty lines to separate different formatting-related things (surrounding tags and their contents, paragraphs vs lists, etc) - You should also avoid indenting `TabItem` tags and their content according to html conventions, since text indented by four spaces (common for html nested inside two levels of tags) can be interpreted as a code block; different markdown rendering tools can handle this inconsistently. -#### Jump to the relevant documentation section when specific connector setup inputs are focused with `` - -In the documentation, the relevant section needs to be wrapped in a `` component. When a user focuses the field identified by the `field` attribute in the connector setup UI, the documentation pane will automatically scroll to the associated section of the documentation, highlighting all content contained inside the `` tag. These are rendered as regular divs in the documentation site, so they have no effect in places other than the in-app documentation panel—however, note that there must be blank lines between a custom tag like `FieldAnchor` the content it wraps for the documentation site to render markdown syntax inside the custom tag to html. - -The `field` attribute must be a valid json path to one of the properties nested under `connectionSpecification.properties` in that connector's `spec.json` or `spec.yaml` file. For example, if the connector spec contains a `connectionSpecification.properties.replication_method.replication_slot`, you would mark the start of the related documentation section with `` and its end with ``. It's also possible to highlight the same section for multiple fields by separating them with commas, like ``. To mark a section as highlighted after the user picks an option from a `oneOf`: use a `field` prop like `path.to.field[value-of-selection-key]`, where the `value-of-selection-key` is the value of a `const` field nested inside that `oneOf`. For example, if the specification of the `oneOf` field is: - -```json -"replication_method": { - "type": "object", - "title": "Update Method", - "oneOf": [ - { - "title": "Read Changes using Binary Log (CDC)", - "required": ["method"], - "properties": { - "method": { - "type": "string", - "const": "CDC", - "order": 0 - }, - "initial_waiting_seconds": { - "type": "integer", - "title": "Initial Waiting Time in Seconds (Advanced)", - }, - } - }, - { - "title": "Scan Changes with User Defined Cursor", - "required": ["method"], - "properties": { - "method": { - "type": "string", - "const": "STANDARD", - "order": 0 - } - } - } - ] -} -``` - -The selection keys are `CDC` and `STANDARD`, so you can wrap a specific replication method's documentation section with a `...` tag, and it will be highlighted if the user selects CDC replication in the UI. - -:::tip -Because of their close connection with the connector setup form fields, `` tags are only enabled for the source and destination setup pages. -::: - -#### Prevent specific content from rendering in the UI with `` - -Certain content is important to document, but unhelpful in the context of the Airbyte UI's inline documentation views: - -- background information that helps users understand a connector but doesn't affect configuration -- edge cases that are unusual but time-consuming to solve -- context for readers on the documentation site about environment-specific content (see [below](#environment-specific-in-app-content-with-magic-html-comments)) - -Wrapping such content in a pair of `...` tags will prevent it from being rendered within the Airbyte UI without affecting its presentation on https://docs.airbyte.com. This allows a single markdown file to be the source of truth for both a streamlined in-app reference and a more thorough treatment on the documentation website. - -#### Environment-specific in-app content with magic html comments +### Environment-specific in-app content with magic html comments Sometimes, there are connector setup instructions which differ between open-source Airbyte builds and Airbyte Cloud. Document both cases, but wrap each in a pair of special HTML comments: @@ -254,7 +193,7 @@ Content outside of the magic-comment-delimited blocks will be rendered everywher Note that the documentation site will render _all_ environment-specific content, so please introduce environment-specific variants with some documentation-site-only context (like the hidden subheadings in the example above) to disambiguate. -#### Contextually-styled callouts with admonition blocks +### Contextually-styled callouts with admonition blocks We have added support for [Docusaurus' admonition syntax](https://docusaurus.io/docs/markdown-features/admonitions) to Airbyte's in-app markdown renderer. @@ -332,7 +271,7 @@ Some **dangerous** content with _Markdown_ `syntax`. ::: -#### Collapsible content with `
` and `` +### Collapsible content with `
` and `` ```md ## Ordinary markdown content @@ -347,7 +286,7 @@ Back to ordinary markdown content. Eagle-eyed readers may note that _all_ markdown should support this feature since it's part of the html spec. However, it's worth special mention since these dropdowns have been styled to be a graceful visual fit within our rendered documentation in all environments. -#### Documenting PyAirbyte usage +### Documenting PyAirbyte usage PyAirbyte is a Python library that allows to run syncs within a Python script for a subset of connectors. Documentation around PyAirbyte connectors is automatically generated from the connector's JSON schema spec. There are a few approaches to combine full control over the documentation with automatic generation for common cases: @@ -370,7 +309,6 @@ The `PyAirbyteExample` component will generate a code example that can be run wi ## Additional guidelines -- If you're updating a connector doc, follow the [Connector documentation template](https://hackmd.io/Bz75cgATSbm7DjrAqgl4rw) - If you're adding a new file, update the [sidebars.js file](https://github.com/airbytehq/airbyte/blob/master/docusaurus/sidebars.js) - If you're adding a README to a code module, make sure the README has the following components: - A brief description of the module diff --git a/docs/integrations/sources/sftp-bulk.md b/docs/integrations/sources/sftp-bulk.md index 2982fb7a73a0..ca50b008701a 100644 --- a/docs/integrations/sources/sftp-bulk.md +++ b/docs/integrations/sources/sftp-bulk.md @@ -113,6 +113,28 @@ For example, assuming your folder path is not set in the connector configuration If your files are in a folder, include the folder in your glob pattern, like `my_folder/my_prefix_*.csv`. +#### Copy Raw Files Configuration + + + +:::info + +The raw file replication feature has the following requirements and limitations: +- **Supported Airbyte Versions:** + - Cloud: All Workspaces + - OSS / Enterprise: `v1.2.0` or later +- **Max File Size:** `1GB` per file +- **Supported Destinations:** + - S3: `v1.4.0` or later + +::: + +Copy raw files without parsing their contents. Bits are copied into the destination exactly as they appeared in the source. Recommended for use with unstructured text data, non-text and compressed files. + +Format options will not be taken into account. Instead, files will be transferred to the file-based destination without parsing underlying data. + + + ## Supported sync modes The SFTP Bulk source connector supports the following [sync modes](https://docs.airbyte.com/cloud/core-concepts/#connection-sync-modes): From 5bfdf4b16351fc47d0fa6e24db8b7d5bc2c7da79 Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Sat, 2 Nov 2024 06:00:00 +0530 Subject: [PATCH 537/808] Source Retently: Migrate to manifest-only format with components (#47291) Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-retently/README.md | 89 +- .../connectors/source-retently/__init__.py | 3 - .../acceptance-test-config.yml | 3 +- .../{source_retently => }/components.py | 0 .../connectors/source-retently/main.py | 8 - .../connectors/source-retently/manifest.yaml | 1078 +++++++++++++++++ .../connectors/source-retently/metadata.yaml | 8 +- .../connectors/source-retently/poetry.lock | 1065 ---------------- .../connectors/source-retently/pyproject.toml | 28 - .../source_retently/__init__.py | 8 - .../source_retently/manifest.yaml | 952 --------------- .../source-retently/source_retently/run.py | 14 - .../source-retently/source_retently/source.py | 18 - .../source-retently/source_retently/spec.yaml | 96 -- docs/integrations/sources/retently.md | 1 + 15 files changed, 1110 insertions(+), 2261 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-retently/__init__.py rename airbyte-integrations/connectors/source-retently/{source_retently => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-retently/main.py create mode 100644 airbyte-integrations/connectors/source-retently/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-retently/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-retently/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-retently/source_retently/__init__.py delete mode 100644 airbyte-integrations/connectors/source-retently/source_retently/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-retently/source_retently/run.py delete mode 100644 airbyte-integrations/connectors/source-retently/source_retently/source.py delete mode 100644 airbyte-integrations/connectors/source-retently/source_retently/spec.yaml diff --git a/airbyte-integrations/connectors/source-retently/README.md b/airbyte-integrations/connectors/source-retently/README.md index f43e8d7db841..f08ac608277f 100644 --- a/airbyte-integrations/connectors/source-retently/README.md +++ b/airbyte-integrations/connectors/source-retently/README.md @@ -1,49 +1,22 @@ # Retently source connector -This is the repository for the Retently source connector, written in Python. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/retently). +This directory contains the manifest-only connector for `source-retently`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development - -### Prerequisites - -- Python (~=3.9) -- Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) - -### Installing the connector - -From this connector directory, run: - -```bash -poetry install --with dev -``` - -### Create credentials +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/retently). -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/retently) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_retently/spec.yaml` file. -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `sample_files/sample_config.json` for a sample config file. - -### Locally running the connector - -``` -poetry run source-retently spec -poetry run source-retently check --config secrets/config.json -poetry run source-retently discover --config secrets/config.json -poetry run source-retently read --config secrets/config.json --catalog sample_files/configured_catalog.json -``` +## Local development -### Running unit tests +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -To run unit tests locally, from the connector directory run: - -``` -poetry run pytest unit_tests -``` +If you prefer to develop locally, you can follow the instructions below. ### Building the docker image +You can build any manifest-only connector with `airbyte-ci`: + 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: @@ -53,18 +26,24 @@ airbyte-ci connectors --name=source-retently build An image will be available on your host with the tag `airbyte/source-retently:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/retently) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. + ### Running as a docker container -Then run any of the connector commands as follows: +Then run any of the standard source connector commands: -``` +```bash docker run --rm airbyte/source-retently:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-retently:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-retently:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-retently:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): @@ -72,33 +51,15 @@ You can run our full test suite locally using [`airbyte-ci`](https://github.com/ airbyte-ci connectors --name=source-retently test ``` -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -### Dependency Management - -All of your dependencies should be managed via Poetry. -To add a new dependency, run: - -```bash -poetry add -``` - -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? - -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-retently test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. +If you want to contribute changes to `source-retently`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-retently test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + - bump the `dockerImageTag` value in in `metadata.yaml` 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/retently.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. -8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. +8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-retently/__init__.py b/airbyte-integrations/connectors/source-retently/__init__.py deleted file mode 100644 index c941b3045795..000000000000 --- a/airbyte-integrations/connectors/source-retently/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-retently/acceptance-test-config.yml b/airbyte-integrations/connectors/source-retently/acceptance-test-config.yml index a6f87e59bebf..abad282d14c7 100644 --- a/airbyte-integrations/connectors/source-retently/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-retently/acceptance-test-config.yml @@ -4,7 +4,7 @@ connector_image: airbyte/source-retently:dev acceptance_tests: spec: tests: - - spec_path: "source_retently/spec.yaml" + - spec_path: "manifest.yaml" connection: tests: - config_path: "secrets/config.json" @@ -22,6 +22,7 @@ acceptance_tests: configured_catalog_path: "integration_tests/configured_catalog.json" empty_streams: - name: templates + - name: outbox incremental: bypass_reason: "This connector does not implement incremental sync" full_refresh: diff --git a/airbyte-integrations/connectors/source-retently/source_retently/components.py b/airbyte-integrations/connectors/source-retently/components.py similarity index 100% rename from airbyte-integrations/connectors/source-retently/source_retently/components.py rename to airbyte-integrations/connectors/source-retently/components.py diff --git a/airbyte-integrations/connectors/source-retently/main.py b/airbyte-integrations/connectors/source-retently/main.py deleted file mode 100644 index dec9d2267e7b..000000000000 --- a/airbyte-integrations/connectors/source-retently/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from source_retently.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-retently/manifest.yaml b/airbyte-integrations/connectors/source-retently/manifest.yaml new file mode 100644 index 000000000000..83759cd94db7 --- /dev/null +++ b/airbyte-integrations/connectors/source-retently/manifest.yaml @@ -0,0 +1,1078 @@ +version: 5.15.0 + +type: DeclarativeSource + +check: + type: CheckStream + stream_names: + - customers + +definitions: + streams: + campaigns: + type: DeclarativeStream + name: campaigns + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: campaigns + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - campaigns + record_filter: + type: RecordFilter + condition: >- + {{ record['id'] in config['survey_ids'] if config['survey_ids'] + else true}} + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/campaigns" + companies: + type: DeclarativeStream + name: companies + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: companies + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - companies + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 20 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/companies" + customers: + type: DeclarativeStream + name: customers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: nps/customers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - subscribers + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 20 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + feedback: + type: DeclarativeStream + name: feedback + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: feedback + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - responses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 10 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/feedback" + outbox: + type: DeclarativeStream + name: outbox + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: nps/outbox + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - surveys + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 20 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/outbox" + reports: + type: DeclarativeStream + name: reports + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: reports + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/reports" + nps: + type: DeclarativeStream + name: nps + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: nps/score + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/nps" + templates: + type: DeclarativeStream + name: templates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: templates + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 20 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/templates" + base_requester: + type: HttpRequester + url_base: https://app.retently.com/api/v2/ + authenticator: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.AuthenticatorRetently + api_auth: + type: ApiKeyAuthenticator + header: Authorization + api_token: api_key={{ config['credentials']['api_key'] }} + oauth: + type: OAuthAuthenticator + token_refresh_endpoint: https://app.retently.com/api/oauth/token + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + +streams: + - $ref: "#/definitions/streams/campaigns" + - $ref: "#/definitions/streams/companies" + - $ref: "#/definitions/streams/customers" + - $ref: "#/definitions/streams/feedback" + - $ref: "#/definitions/streams/outbox" + - $ref: "#/definitions/streams/reports" + - $ref: "#/definitions/streams/nps" + - $ref: "#/definitions/streams/templates" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: [] + properties: + credentials: + type: object + description: Choose how to authenticate to Retently + title: Authentication Mechanism + oneOf: + - type: object + title: Authenticate via Retently (OAuth) + required: + - client_id + - client_secret + - refresh_token + additionalProperties: true + properties: + auth_type: + type: string + const: Client + order: 0 + client_id: + type: string + description: The Client ID of your Retently developer application. + title: Client ID + client_secret: + type: string + description: The Client Secret of your Retently developer application. + title: Client Secret + airbyte_secret: true + refresh_token: + type: string + description: >- + Retently Refresh Token which can be used to fetch new Bearer + Tokens when the current one expires. + title: Refresh Token + airbyte_secret: true + - type: object + title: Authenticate with API Token + required: + - api_key + additionalProperties: true + properties: + auth_type: + type: string + const: Token + order: 0 + api_key: + type: string + description: >- + Retently API Token. See the docs + for more information on how to obtain this key. + title: API Token + airbyte_secret: true + order: 0 + additionalProperties: true + +schemas: + campaigns: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + type: + type: + - "null" + - string + description: The type of the campaign (e.g., feedback request, promotional offer). + channel: + type: + - "null" + - string + description: >- + The communication channel used for the campaign (e.g., email, SMS, + in-app push notification). + id: + type: + - "null" + - string + description: The unique identifier of the campaign. + isActive: + type: + - "null" + - boolean + description: Indicates whether the campaign is currently active or not. + metric: + type: + - "null" + - string + description: The metric associated with the campaign (e.g., NPS score, CSAT score). + name: + type: + - "null" + - string + description: The name or title of the campaign. + templateId: + type: + - "null" + - string + description: The ID of the template used for the campaign. + companies: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + companyName: + type: + - "null" + - string + description: The name of the company. + contactsCount: + type: + - "null" + - number + description: The number of contacts associated with the company. + createdDate: + type: + - "null" + - string + description: The date and time when the company was created. + format: yyyy-MM-dd'T'HH:mm:ss.SSSZ + cxMetrics: + type: + - "null" + - object + description: Various customer experience metrics associated with the company. + additionalProperties: true + properties: + CES: + type: + - "null" + - number + description: Customer Effort Score for the company. + CSAT: + type: + - "null" + - number + description: Customer Satisfaction Score for the company. + NPS: + type: + - "null" + - number + description: Net Promoter Score for the company. + STAR: + type: + - "null" + - number + description: STAR rating for the company. + domain: + type: + - "null" + - string + description: The domain of the company. + id: + type: + - "null" + - string + description: Unique identifier for the company. + industryName: + type: + - "null" + - string + description: The industry to which the company belongs. + tags: + type: array + description: Tags associated with the company. + items: + type: + - "null" + - string + description: Individual tag related to the company. + customers: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + companyId: + type: + - "null" + - string + description: The unique identifier of the company the customer belongs to. + companyName: + type: + - "null" + - string + description: The name of the company the customer belongs to. + createdDate: + type: + - "null" + - string + description: The date and time when the customer record was created. + format: yyyy-MM-dd'T'HH:mm:ss.SSSZ + email: + type: + - "null" + - string + description: The email address of the customer. + firstName: + type: + - "null" + - string + description: The first name of the customer. + id: + type: + - "null" + - string + description: The unique identifier of the customer. + lastName: + type: + - "null" + - string + description: The last name of the customer. + properties: + type: array + description: Custom properties associated with the customer. + items: + type: + - "null" + - object + additionalProperties: true + properties: + type: + type: + - "null" + - string + description: The data type of the custom property. + label: + type: + - "null" + - string + description: The label for the custom property. + name: + type: + - "null" + - string + description: The name of the custom property. + value: + type: + - "null" + - string + description: The value of the custom property. + tags: + type: array + description: Tags associated with the customer. + items: + type: + - "null" + - string + feedback: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + additionalQuestions: + type: array + description: Additional questions included in the feedback form + items: + type: object + assigned: + type: + - "null" + - string + description: User or team assigned to handle the feedback + campaignId: + type: + - "null" + - string + description: ID of the campaign associated with the feedback + campaignName: + type: + - "null" + - string + description: Name of the campaign associated with the feedback + channel: + type: + - "null" + - string + description: Communication channel used to collect the feedback + checkbox: + type: + - "null" + - boolean + description: Checkbox responses provided in the feedback + city: + type: + - "null" + - string + description: City of the feedback provider + comment: + type: + - "null" + - string + description: Open text comment provided as feedback + companyId: + type: + - "null" + - string + description: ID of the company receiving the feedback + companyName: + type: + - "null" + - string + description: Name of the company receiving the feedback + country: + type: + - "null" + - string + description: Country of the feedback provider + createdDate: + type: + - "null" + - string + description: Date and time when the feedback was created + format: yyyy-MM-dd'T'HH:mm:ss.SSSZ + customProps: + type: array + description: Custom properties associated with the feedback + items: + type: object + customerId: + type: + - "null" + - string + description: ID of the customer providing the feedback + email: + type: + - "null" + - string + description: Email address of the feedback provider + feedbackTags: + type: array + description: Tags associated with the feedback + items: + type: string + feedbackTagsNew: + type: array + description: Additional tags for categorizing the feedback + items: + type: string + feedbackTopics: + type: array + description: Topics covered in the feedback + items: + type: object + firstName: + type: + - "null" + - string + description: First name of the feedback provider + id: + type: + - "null" + - string + description: Unique identifier for the feedback entry + isBogus: + type: + - "null" + - boolean + description: Flag indicating if the feedback is deemed bogus + jobTitle: + type: + - "null" + - string + description: Job title of the feedback provider + lastName: + type: + - "null" + - string + description: Last name of the feedback provider + metricsType: + type: + - "null" + - string + description: Type of metrics used in evaluating the feedback + notes: + type: array + description: Additional notes or comments on the feedback + items: + type: object + ratingCategory: + type: + - "null" + - string + description: Category under which the feedback is rated + resolved: + type: + - "null" + - boolean + description: Indicator of whether the feedback has been resolved or not + score: + type: + - "null" + - number + description: Numeric score assigned to the feedback + state: + type: + - "null" + - string + description: State or region of the feedback provider + status: + type: + - string + - "null" + description: Current status of the feedback entry + tags: + type: array + description: Various tags associated with the feedback entry + items: + type: string + outbox: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + additionalRecipients: + type: + - "null" + - array + description: List of additional email recipients for the outbox message. + items: + type: + - "null" + - object + additionalProperties: true + mandrillMessageId: + type: + - "null" + - string + attributes: + type: + - "null" + - object + description: Additional attributes associated with the outbox data. + additionalProperties: true + properties: + customProps: + type: + - "null" + - array + description: >- + Custom properties with label, name, type, and value for + customization. + items: + type: object + additionalProperties: true + properties: + type: + type: + - "null" + - string + description: Type of the custom property data. + label: + type: + - "null" + - string + description: Label for the custom property. + name: + type: + - "null" + - string + description: Name of the custom property. + value: + type: + - "null" + - string + description: Value of the custom property data. + customerTags: + type: + - "null" + - array + description: Tags associated with the customer for segmentation. + items: + type: string + campaign: + type: + - "null" + - string + description: Name or identifier of the campaign associated with the outbox data. + campaignId: + type: + - "null" + - string + description: Unique ID of the campaign associated with the outbox data. + channel: + type: + - "null" + - string + description: Communication channel used for sending the outbox message. + companyId: + type: + - "null" + - string + description: Unique ID of the company sending the outbox message. + companyName: + type: + - "null" + - string + description: Name of the company sending the outbox message. + customerId: + type: + - "null" + - string + description: Unique ID of the customer who received the outbox message. + detailedStatus: + type: + - "null" + - object + description: >- + Detailed status information about the outbox message delivery and + interaction. + additionalProperties: true + properties: + hasFeedback: + type: + - "null" + - boolean + description: Indicates if there is feedback for the outbox message. + isBounced: + type: + - "null" + - boolean + description: Indicates if the message bounced. + isOpened: + type: + - "null" + - boolean + description: Indicates if the message was opened. + isOptedOut: + type: + - "null" + - boolean + description: Indicates if the recipient opted out of receiving messages. + isResponded: + type: + - "null" + - boolean + description: Indicates if the recipient responded to the message. + openedDate: + type: + - "null" + - string + description: Date and time when the message was opened. + format: yyyy-MM-dd'T'HH:mm:ss.SSSZ + respondedDate: + type: + - "null" + - string + description: Date and time when the recipient responded to the message. + format: yyyy-MM-dd'T'HH:mm:ss.SSSZ + email: + type: + - "null" + - string + description: Email address of the recipient who received the outbox message. + firstName: + type: + - "null" + - string + description: First name of the recipient who received the outbox message. + lastName: + type: + - "null" + - string + description: Last name of the recipient who received the outbox message. + mandrillMessageId: + type: + - "null" + - string + description: Unique ID assigned by Mandrill for the outbox message. + personTags: + type: + - array + - "null" + description: Tags associated with the individual recipient for segmentation. + items: + type: string + sentBy: + type: + - "null" + - string + description: Identifier of the user or system that sent the outbox message. + sentDate: + type: + - "null" + - string + description: Date and time when the outbox message was sent. + format: yyyy-MM-dd'T'HH:mm:ss.SSSZ + status: + type: + - "null" + - string + description: Overall status of the outbox message delivery. + subject: + type: + - "null" + - string + description: Subject of the outbox message. + surveyTemplateId: + type: + - "null" + - string + description: Unique ID of the survey template associated with the outbox message. + reports: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + campaignId: + type: + - "null" + - string + description: Unique identifier for the campaign. + deliveryStats: + type: + - "null" + - object + description: Statistics related to the delivery of the campaign emails. + additionalProperties: true + properties: + isBounced: + type: + - "null" + - number + description: Number of emails that bounced. + opened: + type: + - "null" + - number + description: Number of emails that were opened. + optedOut: + type: + - "null" + - number + description: Number of recipients who opted out of receiving further emails. + responded: + type: + - "null" + - number + description: Number of recipients who responded to the campaign. + totalCount: + type: + - "null" + - number + description: Total count of delivered emails. + last: + type: + - "null" + - object + description: Snapshot of the last feedback received from recipients. + additionalProperties: true + properties: + detractors: + type: + - "null" + - number + description: Number of detractors in the feedback. + passives: + type: + - "null" + - number + description: Number of passives in the feedback. + promoters: + type: + - "null" + - number + description: Number of promoters in the feedback. + score: + type: + - "null" + - number + description: >- + Overall feedback score calculated based on detractors, passives, + and promoters. + total: + type: + - "null" + - number + description: Total count of feedback received. + questionsStats: + type: + - "null" + - array + description: >- + Statistics related to specific questions asked in the campaign + feedback. + items: + type: object + description: Details of each question's statistics. + additionalProperties: true + trend: + type: + - "null" + - array + description: Trend analysis data over a specific period. + items: + type: + - "null" + - object + description: Details of the trend data for each day. + additionalProperties: true + properties: + day: + type: + - "null" + - string + description: Day for which the trend data is recorded. + detractors: + type: + - "null" + - number + description: Number of detractors on the specific day. + passives: + type: + - "null" + - number + description: Number of passives on the specific day. + promoters: + type: + - "null" + - number + description: Number of promoters on the specific day. + score: + type: + - "null" + - number + description: Overall feedback score calculated for the specific day. + total: + type: + - "null" + - number + description: Total feedback count on the specific day. + nps: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + detractors: + type: + - "null" + - integer + description: Array of responses falling under the detractor category. + detractorsCount: + type: + - "null" + - integer + description: Total count of detractor responses. + metricsType: + type: + - "null" + - string + description: Type of metrics being used (e.g., Net Promoter Score). + passives: + type: + - "null" + - integer + description: Array of responses falling under the passive category. + passivesCount: + type: + - "null" + - integer + description: Total count of passive responses. + promoters: + type: + - "null" + - integer + description: Array of responses falling under the promoter category. + promotersCount: + type: + - "null" + - integer + description: Total count of promoter responses. + score: + type: + - "null" + - integer + description: Calculated Net Promoter Score based on the responses. + scoreSum: + type: + - "null" + - integer + description: Sum of scores received from all responses. + totalResponses: + type: + - "null" + - integer + description: Total count of responses received for NPS calculation. + templates: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: + channel: + type: + - "null" + - string + description: >- + The communication channel for the template (e.g., email, SMS, in-app + notification) + id: + type: + - "null" + - string + description: The unique identifier of the template + metric: + type: + - "null" + - string + description: >- + The key metric that this template is associated with (e.g., NPS score, + CSAT rating) + name: + type: + - "null" + - string + description: The name or title of the template diff --git a/airbyte-integrations/connectors/source-retently/metadata.yaml b/airbyte-integrations/connectors/source-retently/metadata.yaml index 7e092ebd40bf..90cb0976a501 100644 --- a/airbyte-integrations/connectors/source-retently/metadata.yaml +++ b/airbyte-integrations/connectors/source-retently/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - "*" connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: db04ecd1-42e7-4115-9cec-95812905c626 - dockerImageTag: 0.2.24 + dockerImageTag: 0.3.0 dockerRepository: airbyte/source-retently documentationUrl: https://docs.airbyte.com/integrations/sources/retently githubIssueLabel: source-retently @@ -25,12 +25,12 @@ data: releaseStage: alpha remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-retently supportLevel: community tags: - - language:python - cdk:low-code + - language:manifest-only connectorTestSuitesOptions: - suite: liveTests testConnections: diff --git a/airbyte-integrations/connectors/source-retently/poetry.lock b/airbyte-integrations/connectors/source-retently/poetry.lock deleted file mode 100644 index a200e9d74ec8..000000000000 --- a/airbyte-integrations/connectors/source-retently/poetry.lock +++ /dev/null @@ -1,1065 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "0.80.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-0.80.0-py3-none-any.whl", hash = "sha256:060e92323a73674fa4e9e2e4a1eb312b9b9d072c9bbe5fa28f54ef21cb4974f3"}, - {file = "airbyte_cdk-0.80.0.tar.gz", hash = "sha256:1383512a83917fecca5b24cea4c72aa5c561cf96dd464485fbcefda48fe574c5"}, -] - -[package.dependencies] -airbyte-protocol-models = "0.5.1" -backoff = "*" -cachetools = "*" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.0.271)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.5.1" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.5.1-py3-none-any.whl", hash = "sha256:dfe84e130e51ce2ae81a06d5aa36f6c5ce3152b9e36e6f0195fad6c3dab0927e"}, - {file = "airbyte_protocol_models-0.5.1.tar.gz", hash = "sha256:7c8b16c7c1c7956b1996052e40585a3a93b1e44cb509c4e97c1ee4fe507ea086"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "packaging" -version = "24.1" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "setuptools" -version = "75.2.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "990042bd8aff2361370f7cea38b2dffbadb5bd28397a241166061ec2619f6426" diff --git a/airbyte-integrations/connectors/source-retently/pyproject.toml b/airbyte-integrations/connectors/source-retently/pyproject.toml deleted file mode 100644 index 0e3dd8627748..000000000000 --- a/airbyte-integrations/connectors/source-retently/pyproject.toml +++ /dev/null @@ -1,28 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "0.2.24" -name = "source-retently" -description = "Source implementation for Retently." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/retently" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_retently" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "0.80.0" - -[tool.poetry.scripts] -source-retently = "source_retently.run:run" - -[tool.poetry.group.dev.dependencies] -pytest-mock = "^3.6.1" -requests-mock = "^1.9.3" -pytest = "^6.2" diff --git a/airbyte-integrations/connectors/source-retently/source_retently/__init__.py b/airbyte-integrations/connectors/source-retently/source_retently/__init__.py deleted file mode 100644 index 5e67e6349bf7..000000000000 --- a/airbyte-integrations/connectors/source-retently/source_retently/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceRetently - -__all__ = ["SourceRetently"] diff --git a/airbyte-integrations/connectors/source-retently/source_retently/manifest.yaml b/airbyte-integrations/connectors/source-retently/source_retently/manifest.yaml deleted file mode 100644 index 0405aef94272..000000000000 --- a/airbyte-integrations/connectors/source-retently/source_retently/manifest.yaml +++ /dev/null @@ -1,952 +0,0 @@ -version: "0.29.0" - -definitions: - selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: ["data", "{{ parameters.path_extractor }}"] - selector_data: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: ["{{ parameters.path_extractor }}"] - - oauth_authenticator: - type: OAuthAuthenticator - token_refresh_endpoint: https://app.retently.com/api/oauth/token - client_id: "{{ config['credentials']['client_id'] }}" - client_secret: "{{ config['credentials']['client_secret'] }}" - refresh_token: "{{ config['credentials']['refresh_token'] }}" - api_authenticator: - type: ApiKeyAuthenticator - header: "Authorization" - api_token: "api_key={{ config['credentials']['api_key'] }}" - - requester: - type: HttpRequester - url_base: "https://app.retently.com/api/v2/" - http_method: "GET" - authenticator: - class_name: source_retently.components.AuthenticatorRetently - api_auth: "#/definitions/api_authenticator" - oauth: "#/definitions/oauth_authenticator" - - retriever: - type: SimpleRetriever - record_selector: - $ref: "#/definitions/selector" - paginator: - type: "DefaultPaginator" - pagination_strategy: - type: "PageIncrement" - page_size: 20 - start_from_page: 1 - page_token_option: - type: "RequestOption" - inject_into: "request_parameter" - field_name: "page" - requester: - $ref: "#/definitions/requester" - - base_stream: - type: DeclarativeStream - retriever: - $ref: "#/definitions/retriever" - - campaigns_stream: - $ref: "#/definitions/base_stream" - retriever: - $ref: "#/definitions/retriever" - record_selector: - $ref: "#/definitions/selector_data" - paginator: - type: NoPagination - name: "campaigns" - primary_key: "id" - $parameters: - path_extractor: "campaigns" - path: "campaigns" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - description: The unique identifier of the campaign. - type: - - "null" - - string - name: - description: The name or title of the campaign. - type: - - "null" - - string - isActive: - description: Indicates whether the campaign is currently active or not. - type: - - "null" - - boolean - templateId: - description: The ID of the template used for the campaign. - type: - - "null" - - string - metric: - description: - The metric associated with the campaign (e.g., NPS score, - CSAT score). - type: - - "null" - - string - type: - description: - The type of the campaign (e.g., feedback request, promotional - offer). - type: - - "null" - - string - channel: - description: - The communication channel used for the campaign (e.g., email, - SMS, in-app push notification). - type: - - "null" - - string - companies_stream: - $ref: "#/definitions/base_stream" - name: "companies" - primary_key: "id" - $parameters: - path_extractor: "companies" - path: "companies" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - description: Unique identifier for the company. - type: - - "null" - - string - createdDate: - description: The date and time when the company was created. - type: - - "null" - - string - format: yyyy-MM-dd'T'HH:mm:ss.SSSZ - domain: - description: The domain of the company. - type: - - "null" - - string - companyName: - description: The name of the company. - type: - - "null" - - string - industryName: - description: The industry to which the company belongs. - type: - - "null" - - string - tags: - description: Tags associated with the company. - type: array - items: - description: Individual tag related to the company. - type: - - "null" - - string - cxMetrics: - description: Various customer experience metrics associated with the company. - type: - - "null" - - object - additionalProperties: true - properties: - NPS: - description: Net Promoter Score for the company. - type: - - "null" - - number - CSAT: - description: Customer Satisfaction Score for the company. - type: - - "null" - - number - CES: - description: Customer Effort Score for the company. - type: - - "null" - - number - STAR: - description: STAR rating for the company. - type: - - "null" - - number - contactsCount: - description: The number of contacts associated with the company. - type: - - "null" - - number - customers_stream: - $ref: "#/definitions/base_stream" - name: "customers" - primary_key: "id" - $parameters: - path_extractor: "subscribers" - path: "nps/customers" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - description: The unique identifier of the customer. - type: - - "null" - - string - email: - description: The email address of the customer. - type: - - "null" - - string - firstName: - description: The first name of the customer. - type: - - "null" - - string - lastName: - description: The last name of the customer. - type: - - "null" - - string - companyName: - description: The name of the company the customer belongs to. - type: - - "null" - - string - companyId: - description: - The unique identifier of the company the customer belongs - to. - type: - - "null" - - string - tags: - description: Tags associated with the customer. - type: array - items: - type: - - "null" - - string - createdDate: - description: The date and time when the customer record was created. - type: - - "null" - - string - format: yyyy-MM-dd'T'HH:mm:ss.SSSZ - properties: - description: Custom properties associated with the customer. - type: array - items: - type: - - "null" - - object - additionalProperties: true - properties: - label: - description: The label for the custom property. - type: - - "null" - - string - name: - description: The name of the custom property. - type: - - "null" - - string - type: - description: The data type of the custom property. - type: - - "null" - - string - value: - description: The value of the custom property. - type: - - "null" - - string - feedback_stream: - $ref: "#/definitions/base_stream" - retriever: - $ref: "#/definitions/retriever" - paginator: - type: "DefaultPaginator" - pagination_strategy: - type: "PageIncrement" - page_size: 10 - start_from_page: 1 - page_token_option: - type: "RequestOption" - inject_into: "request_parameter" - field_name: "page" - name: "feedback" - primary_key: "id" - $parameters: - path_extractor: "responses" - path: "feedback" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - description: Unique identifier for the feedback entry - type: - - "null" - - string - customerId: - description: ID of the customer providing the feedback - type: - - "null" - - string - email: - description: Email address of the feedback provider - type: - - "null" - - string - firstName: - description: First name of the feedback provider - type: - - "null" - - string - lastName: - description: Last name of the feedback provider - type: - - "null" - - string - companyName: - description: Name of the company receiving the feedback - type: - - "null" - - string - companyId: - description: ID of the company receiving the feedback - type: - - "null" - - string - jobTitle: - description: Job title of the feedback provider - type: - - "null" - - string - country: - description: Country of the feedback provider - type: - - "null" - - string - state: - description: State or region of the feedback provider - type: - - "null" - - string - city: - description: City of the feedback provider - type: - - "null" - - string - tags: - description: Various tags associated with the feedback entry - type: array - items: - type: string - customProps: - description: Custom properties associated with the feedback - type: array - items: - type: object - campaignId: - description: ID of the campaign associated with the feedback - type: - - "null" - - string - campaignName: - description: Name of the campaign associated with the feedback - type: - - "null" - - string - createdDate: - description: Date and time when the feedback was created - type: - - "null" - - string - format: yyyy-MM-dd'T'HH:mm:ss.SSSZ - score: - description: Numeric score assigned to the feedback - type: - - "null" - - number - comment: - description: Open text comment provided as feedback - type: - - "null" - - string - checkbox: - description: Checkbox responses provided in the feedback - type: - - "null" - - boolean - additionalQuestions: - description: Additional questions included in the feedback form - type: array - items: - type: object - feedbackTopics: - description: Topics covered in the feedback - type: array - items: - type: object - feedbackTags: - description: Tags associated with the feedback - type: array - items: - type: string - feedbackTagsNew: - description: Additional tags for categorizing the feedback - type: array - items: - type: string - notes: - description: Additional notes or comments on the feedback - type: array - items: - type: object - status: - description: Current status of the feedback entry - type: - - string - - "null" - assigned: - description: User or team assigned to handle the feedback - type: - - "null" - - string - ratingCategory: - description: Category under which the feedback is rated - type: - - "null" - - string - resolved: - description: Indicator of whether the feedback has been resolved or not - type: - - "null" - - boolean - channel: - description: Communication channel used to collect the feedback - type: - - "null" - - string - metricsType: - description: Type of metrics used in evaluating the feedback - type: - - "null" - - string - isBogus: - description: Flag indicating if the feedback is deemed bogus - type: - - "null" - - boolean - outbox_stream: - $ref: "#/definitions/base_stream" - name: "outbox" - $parameters: - path_extractor: "surveys" - path: "nps/outbox" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - email: - description: Email address of the recipient who received the outbox message. - type: - - "null" - - string - customerId: - description: Unique ID of the customer who received the outbox message. - type: - - "null" - - string - firstName: - description: First name of the recipient who received the outbox message. - type: - - "null" - - string - lastName: - description: Last name of the recipient who received the outbox message. - type: - - "null" - - string - companyName: - description: Name of the company sending the outbox message. - type: - - "null" - - string - companyId: - description: Unique ID of the company sending the outbox message. - type: - - "null" - - string - sentDate: - description: Date and time when the outbox message was sent. - type: - - "null" - - string - format: yyyy-MM-dd'T'HH:mm:ss.SSSZ - channel: - description: Communication channel used for sending the outbox message. - type: - - "null" - - string - personTags: - description: Tags associated with the individual recipient for segmentation. - type: - - array - - "null" - items: - type: string - campaign: - description: - Name or identifier of the campaign associated with the outbox - data. - type: - - "null" - - string - campaignId: - description: Unique ID of the campaign associated with the outbox data. - type: - - "null" - - string - surveyTemplateId: - description: - Unique ID of the survey template associated with the outbox - message. - type: - - "null" - - string - subject: - description: Subject of the outbox message. - type: - - "null" - - string - sentBy: - description: Identifier of the user or system that sent the outbox message. - type: - - "null" - - string - status: - description: Overall status of the outbox message delivery. - type: - - "null" - - string - attributes: - description: Additional attributes associated with the outbox data. - type: - - "null" - - object - additionalProperties: true - properties: - customerTags: - description: Tags associated with the customer for segmentation. - type: - - "null" - - array - items: - type: string - customProps: - description: - Custom properties with label, name, type, and value for - customization. - type: - - "null" - - array - items: - type: object - additionalProperties: true - properties: - label: - description: Label for the custom property. - type: - - "null" - - string - name: - description: Name of the custom property. - type: - - "null" - - string - type: - description: Type of the custom property data. - type: - - "null" - - string - value: - description: Value of the custom property data. - type: - - "null" - - string - detailedStatus: - description: - Detailed status information about the outbox message delivery - and interaction. - type: - - "null" - - object - additionalProperties: true - properties: - isOpened: - description: Indicates if the message was opened. - type: - - "null" - - boolean - openedDate: - description: Date and time when the message was opened. - format: yyyy-MM-dd'T'HH:mm:ss.SSSZ - type: - - "null" - - string - isResponded: - description: Indicates if the recipient responded to the message. - type: - - "null" - - boolean - respondedDate: - description: Date and time when the recipient responded to the message. - format: yyyy-MM-dd'T'HH:mm:ss.SSSZ - type: - - "null" - - string - hasFeedback: - description: Indicates if there is feedback for the outbox message. - type: - - "null" - - boolean - isOptedOut: - description: Indicates if the recipient opted out of receiving messages. - type: - - "null" - - boolean - isBounced: - description: Indicates if the message bounced. - type: - - "null" - - boolean - mandrillMessageId: - description: Unique ID assigned by Mandrill for the outbox message. - type: - - "null" - - string - additionalRecipients: - description: List of additional email recipients for the outbox message. - type: - - "null" - - array - items: - type: - - "null" - - object - additionalProperties: true - mandrillMessageId: - type: - - "null" - - string - reports_stream: - $ref: "#/definitions/base_stream" - retriever: - $ref: "#/definitions/retriever" - record_selector: - $ref: "#/definitions/selector_data" - paginator: - type: NoPagination - name: "reports" - $parameters: - path_extractor: "data" - path: "reports" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - campaignId: - description: Unique identifier for the campaign. - type: - - "null" - - string - questionsStats: - description: - Statistics related to specific questions asked in the campaign - feedback. - type: - - "null" - - array - items: - description: Details of each question's statistics. - type: object - additionalProperties: true - trend: - description: Trend analysis data over a specific period. - type: - - "null" - - array - items: - description: Details of the trend data for each day. - type: - - "null" - - object - additionalProperties: true - properties: - day: - description: Day for which the trend data is recorded. - type: - - "null" - - string - promoters: - description: Number of promoters on the specific day. - type: - - "null" - - number - passives: - description: Number of passives on the specific day. - type: - - "null" - - number - detractors: - description: Number of detractors on the specific day. - type: - - "null" - - number - total: - description: Total feedback count on the specific day. - type: - - "null" - - number - score: - description: - Overall feedback score calculated for the specific - day. - type: - - "null" - - number - last: - description: Snapshot of the last feedback received from recipients. - type: - - "null" - - object - additionalProperties: true - properties: - promoters: - description: Number of promoters in the feedback. - type: - - "null" - - number - passives: - description: Number of passives in the feedback. - type: - - "null" - - number - detractors: - description: Number of detractors in the feedback. - type: - - "null" - - number - total: - description: Total count of feedback received. - type: - - "null" - - number - score: - description: - Overall feedback score calculated based on detractors, - passives, and promoters. - type: - - "null" - - number - deliveryStats: - description: Statistics related to the delivery of the campaign emails. - type: - - "null" - - object - additionalProperties: true - properties: - totalCount: - description: Total count of delivered emails. - type: - - "null" - - number - opened: - description: Number of emails that were opened. - type: - - "null" - - number - responded: - description: Number of recipients who responded to the campaign. - type: - - "null" - - number - optedOut: - description: - Number of recipients who opted out of receiving further - emails. - type: - - "null" - - number - isBounced: - description: Number of emails that bounced. - type: - - "null" - - number - nps_stream: - $ref: "#/definitions/base_stream" - retriever: - $ref: "#/definitions/retriever" - record_selector: - $ref: "#/definitions/selector_data" - paginator: - type: NoPagination - name: "nps" - $parameters: - path_extractor: "data" - path: "nps/score" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - score: - description: Calculated Net Promoter Score based on the responses. - type: - - "null" - - integer - scoreSum: - description: Sum of scores received from all responses. - type: - - "null" - - integer - metricsType: - description: Type of metrics being used (e.g., Net Promoter Score). - type: - - "null" - - string - promoters: - description: Array of responses falling under the promoter category. - type: - - "null" - - integer - passives: - description: Array of responses falling under the passive category. - type: - - "null" - - integer - detractors: - description: Array of responses falling under the detractor category. - type: - - "null" - - integer - promotersCount: - description: Total count of promoter responses. - type: - - "null" - - integer - passivesCount: - description: Total count of passive responses. - type: - - "null" - - integer - detractorsCount: - description: Total count of detractor responses. - type: - - "null" - - integer - totalResponses: - description: Total count of responses received for NPS calculation. - type: - - "null" - - integer - templates_stream: - $ref: "#/definitions/base_stream" - name: "templates" - retriever: - $ref: "#/definitions/retriever" - record_selector: - $ref: "#/definitions/selector_data" - primary_key: "id" - $parameters: - path_extractor: "data" - path: "templates" - - schema_loader: - type: InlineSchemaLoader - schema: - $schema: http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - description: The unique identifier of the template - type: - - "null" - - string - name: - description: The name or title of the template - type: - - "null" - - string - channel: - description: - The communication channel for the template (e.g., email, - SMS, in-app notification) - type: - - "null" - - string - metric: - description: - The key metric that this template is associated with (e.g., - NPS score, CSAT rating) - type: - - "null" - - string -streams: - - "#/definitions/campaigns_stream" - - "#/definitions/companies_stream" - - "#/definitions/customers_stream" - - "#/definitions/feedback_stream" - - "#/definitions/outbox_stream" - - "#/definitions/reports_stream" - - "#/definitions/nps_stream" - - "#/definitions/templates_stream" - -check: - type: CheckStream - stream_names: - - "customers" diff --git a/airbyte-integrations/connectors/source-retently/source_retently/run.py b/airbyte-integrations/connectors/source-retently/source_retently/run.py deleted file mode 100644 index 4e0687b5c6a9..000000000000 --- a/airbyte-integrations/connectors/source-retently/source_retently/run.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch -from source_retently import SourceRetently - - -def run(): - source = SourceRetently() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-retently/source_retently/source.py b/airbyte-integrations/connectors/source-retently/source_retently/source.py deleted file mode 100644 index 2443de44572a..000000000000 --- a/airbyte-integrations/connectors/source-retently/source_retently/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2023 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceRetently(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-retently/source_retently/spec.yaml b/airbyte-integrations/connectors/source-retently/source_retently/spec.yaml deleted file mode 100644 index 92b3bb578366..000000000000 --- a/airbyte-integrations/connectors/source-retently/source_retently/spec.yaml +++ /dev/null @@ -1,96 +0,0 @@ ---- -documentationUrl: https://docs.airbyte.com/integrations/sources/retently -connectionSpecification: - "$schema": http://json-schema.org/draft-07/schema# - title: Retently Api Spec - type: object - additionalProperties: true - properties: - credentials: - title: Authentication Mechanism - description: Choose how to authenticate to Retently - type: object - oneOf: - - type: object - title: Authenticate via Retently (OAuth) - required: - - client_id - - client_secret - - refresh_token - additionalProperties: true - properties: - auth_type: - type: string - const: Client - order: 0 - client_id: - title: Client ID - type: string - description: The Client ID of your Retently developer application. - client_secret: - title: Client Secret - type: string - description: The Client Secret of your Retently developer application. - airbyte_secret: true - refresh_token: - title: Refresh Token - type: string - description: - Retently Refresh Token which can be used to fetch new Bearer - Tokens when the current one expires. - airbyte_secret: true - - type: object - title: Authenticate with API Token - required: - - api_key - additionalProperties: true - properties: - auth_type: - type: string - const: Token - order: 0 - api_key: - title: API Token - description: - Retently API Token. See the docs - for more information on how to obtain this key. - type: string - airbyte_secret: true -advanced_auth: - auth_flow_type: oauth2.0 - predicate_key: - - credentials - - auth_type - predicate_value: Client - oauth_config_specification: - complete_oauth_output_specification: - type: object - additionalProperties: true - properties: - refresh_token: - type: string - path_in_connector_config: - - credentials - - refresh_token - complete_oauth_server_input_specification: - type: object - additionalProperties: true - properties: - client_id: - type: string - client_secret: - type: string - complete_oauth_server_output_specification: - type: object - additionalProperties: true - properties: - client_id: - type: string - path_in_connector_config: - - credentials - - client_id - client_secret: - type: string - path_in_connector_config: - - credentials - - client_secret diff --git a/docs/integrations/sources/retently.md b/docs/integrations/sources/retently.md index 8eabe88718fd..276144a38bef 100644 --- a/docs/integrations/sources/retently.md +++ b/docs/integrations/sources/retently.md @@ -49,6 +49,7 @@ OAuth application is [here](https://app.retently.com/settings/oauth). | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.0 | 2024-11-01 | [47291](https://github.com/airbytehq/airbyte/pull/47291) | Migrate to manifest only format | | 0.2.24 | 2024-10-23 | [47108](https://github.com/airbytehq/airbyte/pull/47108) | Update dependencies | | 0.2.23 | 2024-10-12 | [46850](https://github.com/airbytehq/airbyte/pull/46850) | Update dependencies | | 0.2.22 | 2024-10-05 | [46429](https://github.com/airbytehq/airbyte/pull/46429) | Update dependencies | From e1bf7075166b9df8ec32afb4c9978d34ee3674a8 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Fri, 1 Nov 2024 17:42:55 -0700 Subject: [PATCH 538/808] Docs: Add connector docs guide to sidebar (#48124) --- docusaurus/sidebars.js | 1 + 1 file changed, 1 insertion(+) diff --git a/docusaurus/sidebars.js b/docusaurus/sidebars.js index 945c3c0a9701..9b073b6e674c 100644 --- a/docusaurus/sidebars.js +++ b/docusaurus/sidebars.js @@ -342,6 +342,7 @@ const buildAConnector = { ], }, "connector-development/connector-specification-reference", + "connector-development/writing-connector-docs", "connector-development/schema-reference", "connector-development/connector-metadata-file", "connector-development/best-practices", From b47a9ecd3f9636a50354588a2771152a52d1fe7c Mon Sep 17 00:00:00 2001 From: letiescanciano <45267095+letiescanciano@users.noreply.github.com> Date: Mon, 4 Nov 2024 06:51:33 +0100 Subject: [PATCH 539/808] =?UTF-8?q?=F0=9F=93=9A=20docs:=20add=20Youtube=20?= =?UTF-8?q?embed=20component=20(#47467)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docusaurus/package.json | 1 + docusaurus/pnpm-lock.yaml | 14 ++++++++++++++ docusaurus/src/components/YoutubeEmbed.jsx | 12 ++++++++++++ docusaurus/src/theme/MDXComponents/index.js | 3 +++ 4 files changed, 30 insertions(+) create mode 100644 docusaurus/src/components/YoutubeEmbed.jsx diff --git a/docusaurus/package.json b/docusaurus/package.json index 9636f93a0330..f639ed0c16f0 100644 --- a/docusaurus/package.json +++ b/docusaurus/package.json @@ -125,6 +125,7 @@ "prism-react-renderer": "^2.3.1", "react": "^18.2.0", "react-dom": "^18.2.0", + "react-lite-youtube-embed": "^2.4.0", "react-markdown": "^8.0.7", "react-router": "5.3.3", "sanitize-html": "^2.12.1", diff --git a/docusaurus/pnpm-lock.yaml b/docusaurus/pnpm-lock.yaml index 552bc9697283..925ae9d2262a 100644 --- a/docusaurus/pnpm-lock.yaml +++ b/docusaurus/pnpm-lock.yaml @@ -344,6 +344,9 @@ importers: react-dom: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) + react-lite-youtube-embed: + specifier: ^2.4.0 + version: 2.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-markdown: specifier: ^8.0.7 version: 8.0.7(@types/react@18.2.46)(react@18.2.0) @@ -5033,6 +5036,12 @@ packages: peerDependencies: react: ^16.13.1 || ^17.0.0 || ^18.0.0 + react-lite-youtube-embed@2.4.0: + resolution: {integrity: sha512-Xo6cM1zPlROvvM97JkqQIoXstlQDaC4+DawmM7BB7Hh1cXrkBHEGq1iJlQxBTUWAUklmpcC7ph7qg7CztXtABQ==} + peerDependencies: + react: '>=18.2.0' + react-dom: '>=18.2.0' + react-loadable-ssr-addon-v5-slorber@1.0.1: resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==} engines: {node: '>=10.13.0'} @@ -11934,6 +11943,11 @@ snapshots: dependencies: react: 18.2.0 + react-lite-youtube-embed@2.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + dependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2(react@18.2.0))(webpack@5.95.0): dependencies: '@babel/runtime': 7.23.7 diff --git a/docusaurus/src/components/YoutubeEmbed.jsx b/docusaurus/src/components/YoutubeEmbed.jsx new file mode 100644 index 000000000000..c5d94c542fda --- /dev/null +++ b/docusaurus/src/components/YoutubeEmbed.jsx @@ -0,0 +1,12 @@ +import LiteYouTubeEmbed from "react-lite-youtube-embed"; +import "react-lite-youtube-embed/dist/LiteYouTubeEmbed.css"; + +export const YoutubeEmbed = ({ id, title }) => { + return ( + + ); +}; diff --git a/docusaurus/src/theme/MDXComponents/index.js b/docusaurus/src/theme/MDXComponents/index.js index c4fa477cd89a..1a565db351a9 100644 --- a/docusaurus/src/theme/MDXComponents/index.js +++ b/docusaurus/src/theme/MDXComponents/index.js @@ -12,6 +12,8 @@ import { CardWithIcon } from "../../components/Card/Card"; import { Details } from "../../components/Details"; import { EntityRelationshipDiagram } from "../../components/EntityRelationshipDiagram"; import { Grid } from "../../components/Grid/Grid"; +import { YoutubeEmbed } from "../../components/YoutubeEmbed"; + export default { // Re-use the default mapping ...MDXComponents, @@ -27,4 +29,5 @@ export default { EntityRelationshipDiagram, CardWithIcon, Grid, + YoutubeEmbed, }; From af15ef85f92366f888fff755249aaa2057c4948b Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Mon, 4 Nov 2024 15:28:43 +0530 Subject: [PATCH 540/808] Source Zendesk Chat: Migrate to new base URL as per official update (#44898) Co-authored-by: Natik Gadzhi Co-authored-by: Christo Grabowski <108154848+ChristoGrab@users.noreply.github.com> Co-authored-by: Augustin Co-authored-by: alafanechere --- .../source-zendesk-chat/metadata.yaml | 9 +++- .../source-zendesk-chat/pyproject.toml | 2 +- .../source_zendesk_chat/manifest.yaml | 2 +- .../source_zendesk_chat/spec.json | 6 ++- .../components/test_bans_record_extractor.py | 3 +- .../components/test_id_offset_pagination.py | 2 +- .../components/test_time_offset_pagination.py | 2 +- .../sources/zendesk-chat-migrations.md | 33 +++++++++++++++ docs/integrations/sources/zendesk-chat.md | 41 ++++++++++--------- 9 files changed, 71 insertions(+), 29 deletions(-) create mode 100644 docs/integrations/sources/zendesk-chat-migrations.md diff --git a/airbyte-integrations/connectors/source-zendesk-chat/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-chat/metadata.yaml index da1ec249e31b..20a0fff21aaf 100644 --- a/airbyte-integrations/connectors/source-zendesk-chat/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-chat/metadata.yaml @@ -4,13 +4,13 @@ data: sl: 200 allowedHosts: hosts: - - zopim.com + - "*.zendesk.com" connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:1.2.2@sha256:57703de3b4c4204bd68a7b13c9300f8e03c0189bffddaffc796f1da25d2dbea0 connectorSubtype: api connectorType: source definitionId: 40d24d0f-b8f9-4fe0-9e6c-b06c0f3f45e4 - dockerImageTag: 0.3.1 + dockerImageTag: 1.0.0 dockerRepository: airbyte/source-zendesk-chat documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-chat githubIssueLabel: source-zendesk-chat @@ -28,6 +28,11 @@ data: oss: enabled: true releaseStage: generally_available + releases: + breakingChanges: + 1.0.0: + message: "The subdomain configuration field is now required following a Live Chat API update." + upgradeDeadline: "2024-11-12" supportLevel: certified tags: - language:python diff --git a/airbyte-integrations/connectors/source-zendesk-chat/pyproject.toml b/airbyte-integrations/connectors/source-zendesk-chat/pyproject.toml index 7f13a34bfe31..133b224eedda 100644 --- a/airbyte-integrations/connectors/source-zendesk-chat/pyproject.toml +++ b/airbyte-integrations/connectors/source-zendesk-chat/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.1" +version = "1.0.0" name = "source-zendesk-chat" description = "Source implementation for Zendesk Chat." authors = [ "Airbyte ",] diff --git a/airbyte-integrations/connectors/source-zendesk-chat/source_zendesk_chat/manifest.yaml b/airbyte-integrations/connectors/source-zendesk-chat/source_zendesk_chat/manifest.yaml index 5a5ff833c1e7..376591e01d96 100644 --- a/airbyte-integrations/connectors/source-zendesk-chat/source_zendesk_chat/manifest.yaml +++ b/airbyte-integrations/connectors/source-zendesk-chat/source_zendesk_chat/manifest.yaml @@ -68,7 +68,7 @@ definitions: description: >- Default Base Requester for Full Refresh streams type: HttpRequester - url_base: https://www.zopim.com/api/v2/ + url_base: "https://{{ config['subdomain'] }}.zendesk.com/api/v2/chat/" path: "{{ parameters['path'] }}" http_method: GET authenticator: diff --git a/airbyte-integrations/connectors/source-zendesk-chat/source_zendesk_chat/spec.json b/airbyte-integrations/connectors/source-zendesk-chat/source_zendesk_chat/spec.json index 9fd0bba8d7a8..61150ec15c33 100644 --- a/airbyte-integrations/connectors/source-zendesk-chat/source_zendesk_chat/spec.json +++ b/airbyte-integrations/connectors/source-zendesk-chat/source_zendesk_chat/spec.json @@ -4,7 +4,7 @@ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Zendesk Chat Spec", "type": "object", - "required": ["start_date"], + "required": ["subdomain", "start_date"], "additionalProperties": true, "properties": { "start_date": { @@ -18,7 +18,9 @@ "subdomain": { "type": "string", "title": "Subdomain", - "description": "Required if you access Zendesk Chat from a Zendesk Support subdomain.", + "description": "The unique subdomain of your Zendesk account (without https://). See the Zendesk docs to find your subdomain", + "pattern": "^(?!https://)", + "examples": ["myzendeskchat"], "default": "" }, "credentials": { diff --git a/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_bans_record_extractor.py b/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_bans_record_extractor.py index 446bcc8f63de..60ae75a17da1 100644 --- a/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_bans_record_extractor.py +++ b/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_bans_record_extractor.py @@ -7,11 +7,12 @@ def test_bans_stream_record_extractor( + config, requests_mock, bans_stream_record, bans_stream_record_extractor_expected_output, ) -> None: - test_url = "https://www.zopim.com/api/v2/bans" + test_url = f"https://{config['subdomain']}.zendesk.com/api/v2/chat/bans" requests_mock.get(test_url, json=bans_stream_record) test_response = requests.get(test_url) assert ZendeskChatBansRecordExtractor().extract_records(test_response) == bans_stream_record_extractor_expected_output diff --git a/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_id_offset_pagination.py b/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_id_offset_pagination.py index 5c5f4dd46b1a..ddf84932adc0 100644 --- a/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_id_offset_pagination.py +++ b/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_id_offset_pagination.py @@ -26,7 +26,7 @@ def _get_paginator(config, id_field) -> ZendeskChatIdOffsetIncrementPaginationSt ) def test_id_offset_increment_pagination_next_page_token(requests_mock, config, id_field, last_records, expected) -> None: paginator = _get_paginator(config, id_field) - test_url = "https://www.zopim.com/api/v2/agents" + test_url = f"https://{config['subdomain']}.zendesk.com/api/v2/chat/agents" requests_mock.get(test_url, json=last_records) test_response = requests.get(test_url) assert paginator.next_page_token(test_response, last_records) == expected diff --git a/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_time_offset_pagination.py b/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_time_offset_pagination.py index 086ea195fac2..61d793cbc9f9 100644 --- a/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_time_offset_pagination.py +++ b/airbyte-integrations/connectors/source-zendesk-chat/unit_tests/components/test_time_offset_pagination.py @@ -26,7 +26,7 @@ def _get_paginator(config, time_field_name) -> ZendeskChatTimeOffsetIncrementPag ) def test_time_offset_increment_pagination_next_page_token(requests_mock, config, time_field_name, response, last_records, expected) -> None: paginator = _get_paginator(config, time_field_name) - test_url = "https://www.zopim.com/api/v2/chats" + test_url = f"https://{config['subdomain']}.zendesk.com/api/v2/chat/chats" requests_mock.get(test_url, json=response) test_response = requests.get(test_url) assert paginator.next_page_token(test_response, last_records) == expected diff --git a/docs/integrations/sources/zendesk-chat-migrations.md b/docs/integrations/sources/zendesk-chat-migrations.md new file mode 100644 index 000000000000..3d6af4a4b801 --- /dev/null +++ b/docs/integrations/sources/zendesk-chat-migrations.md @@ -0,0 +1,33 @@ +# Zendesk Chat Migration Guide + +## Upgrading to 1.0.0 + +The Live Chat API [changed its URL structure](https://developer.zendesk.com/api-reference/live-chat/introduction/) to use the Zendesk subdomain. +The `subdomain` field of the connector configuration is now required. +You can find your Zendesk subdomain by following instructions [here](https://support.zendesk.com/hc/en-us/articles/4409381383578-Where-can-I-find-my-Zendesk-subdomain). + +### For Airbyte Open Source: Update the local connector image + +Airbyte Open Source users must manually update the connector image in their local registry before proceeding with the migration. To do so: + +1. Select **Settings** in the main navbar. + - Select **Sources**. +2. Find Zendesk Chat in the list of connectors. + +:::note +You will see two versions listed, the current in-use version and the latest version available. +::: + +3. Select **Change** to update your OSS version to the latest available version. + +### For Airbyte Cloud: Update the connector version + +1. Select **Sources** in the main navbar. +2. Select the instance of the connector you wish to upgrade. + +:::note +Each instance of the connector must be updated separately. If you have created multiple instances of a connector, updating one will not affect the others. +::: + +3. Select **Upgrade** + - Follow the prompt to confirm you are ready to upgrade to the new version. diff --git a/docs/integrations/sources/zendesk-chat.md b/docs/integrations/sources/zendesk-chat.md index b45f4c0d4520..3a00856e875b 100644 --- a/docs/integrations/sources/zendesk-chat.md +++ b/docs/integrations/sources/zendesk-chat.md @@ -83,25 +83,26 @@ The connector is restricted by Zendesk's [requests limitation](https://developer | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------- | -| 0.3.1 | 2024-06-06 | [39260](https://github.com/airbytehq/airbyte/pull/39260) | [autopull] Upgrade base image to v1.2.2 | -| 0.3.0 | 2024-03-07 | [35867](https://github.com/airbytehq/airbyte/pull/35867) | Migrated to `YamlDeclarativeSource (Low-code)` Airbyte CDK | -| 0.2.2 | 2024-02-12 | [35185](https://github.com/airbytehq/airbyte/pull/35185) | Manage dependencies with Poetry. | -| 0.2.1 | 2023-10-20 | [31643](https://github.com/airbytehq/airbyte/pull/31643) | Upgrade base image to airbyte/python-connector-base:1.1.0 | -| 0.2.0 | 2023-10-11 | [30526](https://github.com/airbytehq/airbyte/pull/30526) | Use the python connector base image, remove dockerfile and implement build_customization.py | -| 0.1.14 | 2023-02-10 | [24190](https://github.com/airbytehq/airbyte/pull/24190) | Fix remove too high min/max from account stream | -| 0.1.13 | 2023-02-10 | [22819](https://github.com/airbytehq/airbyte/pull/22819) | Specified date formatting in specification | -| 0.1.12 | 2023-01-27 | [22026](https://github.com/airbytehq/airbyte/pull/22026) | Set `AvailabilityStrategy` for streams explicitly to `None` | -| 0.1.11 | 2022-10-18 | [17745](https://github.com/airbytehq/airbyte/pull/17745) | Add Engagements Stream and fix infity looping | -| 0.1.10 | 2022-09-28 | [17326](https://github.com/airbytehq/airbyte/pull/17326) | Migrate to per-stream states. | -| 0.1.9 | 2022-08-23 | [15879](https://github.com/airbytehq/airbyte/pull/15879) | Corrected specification and stream schemas to support backward capability | -| 0.1.8 | 2022-06-28 | [13387](https://github.com/airbytehq/airbyte/pull/13387) | Add state checkpoint to allow long runs | -| 0.1.7 | 2022-05-25 | [12883](https://github.com/airbytehq/airbyte/pull/12883) | Pass timeout in request to prevent a stuck connection | -| 0.1.6 | 2021-12-15 | [7313](https://github.com/airbytehq/airbyte/pull/7313) | Add support of `OAuth 2.0` authentication. Fixed the issue with `created_at` can now be `null` for `bans` stream | -| 0.1.5 | 2021-12-06 | [8425](https://github.com/airbytehq/airbyte/pull/8425) | Update title, description fields in spec | -| 0.1.4 | 2021-11-22 | [8166](https://github.com/airbytehq/airbyte/pull/8166) | Make `Chats` stream incremental + add tests for all streams | -| 0.1.3 | 2021-10-21 | [7210](https://github.com/airbytehq/airbyte/pull/7210) | Chats stream is only getting data from first page | -| 0.1.2 | 2021-08-17 | [5476](https://github.com/airbytehq/airbyte/pull/5476) | Correct field unread to boolean type | -| 0.1.1 | 2021-06-09 | [3973](https://github.com/airbytehq/airbyte/pull/3973) | Add `AIRBYTE_ENTRYPOINT` for Kubernetes support | -| 0.1.0 | 2021-05-03 | [3088](https://github.com/airbytehq/airbyte/pull/3088) | Initial release | +| 1.0.0 | 2024-11-04 | [44898](https://github.com/airbytehq/airbyte/pull/44898) | Migrate to [new base url](https://developer.zendesk.com/api-reference/live-chat/introduction/) | +| 0.3.1 | 2024-06-06 | [39260](https://github.com/airbytehq/airbyte/pull/39260) | [autopull] Upgrade base image to v1.2.2 | +| 0.3.0 | 2024-03-07 | [35867](https://github.com/airbytehq/airbyte/pull/35867) | Migrated to `YamlDeclarativeSource (Low-code)` Airbyte CDK | +| 0.2.2 | 2024-02-12 | [35185](https://github.com/airbytehq/airbyte/pull/35185) | Manage dependencies with Poetry. | +| 0.2.1 | 2023-10-20 | [31643](https://github.com/airbytehq/airbyte/pull/31643) | Upgrade base image to airbyte/python-connector-base:1.1.0 | +| 0.2.0 | 2023-10-11 | [30526](https://github.com/airbytehq/airbyte/pull/30526) | Use the python connector base image, remove dockerfile and implement build_customization.py | +| 0.1.14 | 2023-02-10 | [24190](https://github.com/airbytehq/airbyte/pull/24190) | Fix remove too high min/max from account stream | +| 0.1.13 | 2023-02-10 | [22819](https://github.com/airbytehq/airbyte/pull/22819) | Specified date formatting in specification | +| 0.1.12 | 2023-01-27 | [22026](https://github.com/airbytehq/airbyte/pull/22026) | Set `AvailabilityStrategy` for streams explicitly to `None` | +| 0.1.11 | 2022-10-18 | [17745](https://github.com/airbytehq/airbyte/pull/17745) | Add Engagements Stream and fix infity looping | +| 0.1.10 | 2022-09-28 | [17326](https://github.com/airbytehq/airbyte/pull/17326) | Migrate to per-stream states. | +| 0.1.9 | 2022-08-23 | [15879](https://github.com/airbytehq/airbyte/pull/15879) | Corrected specification and stream schemas to support backward capability | +| 0.1.8 | 2022-06-28 | [13387](https://github.com/airbytehq/airbyte/pull/13387) | Add state checkpoint to allow long runs | +| 0.1.7 | 2022-05-25 | [12883](https://github.com/airbytehq/airbyte/pull/12883) | Pass timeout in request to prevent a stuck connection | +| 0.1.6 | 2021-12-15 | [7313](https://github.com/airbytehq/airbyte/pull/7313) | Add support of `OAuth 2.0` authentication. Fixed the issue with `created_at` can now be `null` for `bans` stream | +| 0.1.5 | 2021-12-06 | [8425](https://github.com/airbytehq/airbyte/pull/8425) | Update title, description fields in spec | +| 0.1.4 | 2021-11-22 | [8166](https://github.com/airbytehq/airbyte/pull/8166) | Make `Chats` stream incremental + add tests for all streams | +| 0.1.3 | 2021-10-21 | [7210](https://github.com/airbytehq/airbyte/pull/7210) | Chats stream is only getting data from first page | +| 0.1.2 | 2021-08-17 | [5476](https://github.com/airbytehq/airbyte/pull/5476) | Correct field unread to boolean type | +| 0.1.1 | 2021-06-09 | [3973](https://github.com/airbytehq/airbyte/pull/3973) | Add `AIRBYTE_ENTRYPOINT` for Kubernetes support | +| 0.1.0 | 2021-05-03 | [3088](https://github.com/airbytehq/airbyte/pull/3088) | Initial release |
From 4ee96c700959d71faa25eb587eb4f7bc944f2d1a Mon Sep 17 00:00:00 2001 From: Augustin Date: Mon, 4 Nov 2024 11:33:23 +0100 Subject: [PATCH 541/808] Temporary GHA workflow to identify secrets with JSON data (#48130) --- .github/workflows/secrets_identifier.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/secrets_identifier.yml diff --git a/.github/workflows/secrets_identifier.yml b/.github/workflows/secrets_identifier.yml new file mode 100644 index 000000000000..fe9df60c2fb5 --- /dev/null +++ b/.github/workflows/secrets_identifier.yml @@ -0,0 +1,20 @@ +name: secret_checker +on: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check secrets for curly braces + env: + SECRETS: ${{ toJSON(secrets) }} + uses: actions/github-script@v6 + with: + script: | + const jsonData = JSON.parse(process.env.SECRETS); + for (const key in jsonData) { + const stringValue = String(jsonData[key]); + if (stringValue.includes('{')) { + console.log(`Key: ${key}`); + } + } From ef7139c37978e5d0018aa48123e56de7fdd118f2 Mon Sep 17 00:00:00 2001 From: Augustin Date: Mon, 4 Nov 2024 11:52:08 +0100 Subject: [PATCH 542/808] Revert "Temporary GHA workflow to identify secrets with JSON data" (#48131) --- .github/workflows/secrets_identifier.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/secrets_identifier.yml diff --git a/.github/workflows/secrets_identifier.yml b/.github/workflows/secrets_identifier.yml deleted file mode 100644 index fe9df60c2fb5..000000000000 --- a/.github/workflows/secrets_identifier.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: secret_checker -on: - workflow_dispatch: -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Check secrets for curly braces - env: - SECRETS: ${{ toJSON(secrets) }} - uses: actions/github-script@v6 - with: - script: | - const jsonData = JSON.parse(process.env.SECRETS); - for (const key in jsonData) { - const stringValue = String(jsonData[key]); - if (stringValue.includes('{')) { - console.log(`Key: ${key}`); - } - } From 036452114e100d197f7b6518ad9703e10c63d9df Mon Sep 17 00:00:00 2001 From: Daryna Ishchenko <80129833+darynaishchenko@users.noreply.github.com> Date: Mon, 4 Nov 2024 12:54:34 +0200 Subject: [PATCH 543/808] docs: updated changelog (#48129) --- docs/integrations/enterprise-connectors/source-workday.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/integrations/enterprise-connectors/source-workday.md b/docs/integrations/enterprise-connectors/source-workday.md index 4b6fa22ad3ba..126c85d45712 100644 --- a/docs/integrations/enterprise-connectors/source-workday.md +++ b/docs/integrations/enterprise-connectors/source-workday.md @@ -25,6 +25,7 @@ Airbyte's incubating Workday enterprise source connector currently offers the fo The connector is still incubating, this section only exists to satisfy Airbyte's QA checks. +- 0.2.0 - 0.1.0
From 06d477127de7ffe9cd6d933d2511e78e9536c580 Mon Sep 17 00:00:00 2001 From: Artem Inzhyyants <36314070+artem1205@users.noreply.github.com> Date: Mon, 4 Nov 2024 14:30:30 +0100 Subject: [PATCH 544/808] fix(source-amazon-ads): fix date parse in reports (#48128) Signed-off-by: Artem Inzhyyants --- .../connectors/source-amazon-ads/metadata.yaml | 2 +- .../connectors/source-amazon-ads/pyproject.toml | 2 +- .../source_amazon_ads/streams/report_streams/report_streams.py | 2 +- docs/integrations/sources/amazon-ads.md | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml index 57f4e54868b7..621ca2b21410 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: c6b0a29e-1da9-4512-9002-7bfd0cba2246 - dockerImageTag: 6.1.0 + dockerImageTag: 6.1.1 dockerRepository: airbyte/source-amazon-ads documentationUrl: https://docs.airbyte.com/integrations/sources/amazon-ads githubIssueLabel: source-amazon-ads diff --git a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml index bc9e6f48b7ad..02a50190910f 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.1.0" +version = "6.1.1" name = "source-amazon-ads" description = "Source implementation for Amazon Ads." authors = [ "Airbyte ",] diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py index f92bd7978223..ab6726072359 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py @@ -264,7 +264,7 @@ def get_start_date(self, profile: dict[str, Any], stream_state: Mapping[str, Any today = pendulum.today(tz=profile["timezone"]).date() start_date = stream_state.get(str(profile["profileId"]), {}).get(self.cursor_field) if start_date: - start_date = pendulum.from_format(start_date, self.REPORT_DATE_FORMAT).date() + start_date = pendulum.parse(start_date).date() # Taking date from state if it's not older than 60 days return max(start_date, today.subtract(days=self.REPORTING_PERIOD)) if self._start_date: diff --git a/docs/integrations/sources/amazon-ads.md b/docs/integrations/sources/amazon-ads.md index b2f9ba59a43f..d3eab187ba0a 100644 --- a/docs/integrations/sources/amazon-ads.md +++ b/docs/integrations/sources/amazon-ads.md @@ -153,7 +153,8 @@ Information about expected report generation waiting time can be found [here](ht | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------| -| 6.1.0 | 2024-10-31 | [47940](https://github.com/airbytehq/airbyte/pull/47940) | Bump CDK to ^5 | +| 6.1.1 | 2024-11-04 | [48128](https://github.com/airbytehq/airbyte/pull/48128) | Fix date parse in report streams | +| 6.1.0 | 2024-11-01 | [47940](https://github.com/airbytehq/airbyte/pull/47940) | Bump CDK to ^5 | | 6.0.0 | 2024-10-28 | [47366](https://github.com/airbytehq/airbyte/pull/47366) | Migrate stream `SponsoredDisplayReportStream` to Amazon Ads Reports v3 | | 5.0.20 | 2024-10-29 | [47032](https://github.com/airbytehq/airbyte/pull/47032) | Update dependencies | | 5.0.19 | 2024-10-12 | [46860](https://github.com/airbytehq/airbyte/pull/46860) | Update dependencies | From eacc0f9aa0c40f31707a851d17757fd703878769 Mon Sep 17 00:00:00 2001 From: Maxime Carbonneau-Leclerc <3360483+maxi297@users.noreply.github.com> Date: Mon, 4 Nov 2024 11:41:59 -0500 Subject: [PATCH 545/808] =?UTF-8?q?=F0=9F=90=9B=20Source=20Amazon=20Ads:?= =?UTF-8?q?=20Fix=20heartbeat=20issues=20on=20report=20processing=20(#4813?= =?UTF-8?q?5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-amazon-ads/metadata.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml index 621ca2b21410..32bebdf91898 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml @@ -19,7 +19,9 @@ data: githubIssueLabel: source-amazon-ads icon: amazonads.svg license: MIT - maxSecondsBetweenMessages: 5400 + # Based on https://advertising.amazon.com/API/docs/en-us/guides/reporting/v3/get-started#checking-report-status, report generation can take up to 3 hours + # We've added one minute on top of the three hours because of the waiting time before we poll the report status + maxSecondsBetweenMessages: 10860 name: Amazon Ads remoteRegistries: pypi: From a9f242f95906c3d4f4aa9570d1cb3aedfbd23958 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Mon, 4 Nov 2024 09:02:09 -0800 Subject: [PATCH 546/808] Bulk load CDK: First test for refreshes behavior (#48107) --- .../MockBasicFunctionalityIntegrationTest.kt | 6 + .../MockDestinationBackend.kt | 17 ++ .../MockDestinationWriter.kt | 58 ++++-- .../cdk/load/test/util/IntegrationTest.kt | 28 ++- .../DestinationUncleanExitException.kt | 17 +- .../DockerizedDestination.kt | 6 +- .../NonDockerizedDestination.kt | 3 +- .../BasicFunctionalityIntegrationTest.kt | 196 ++++++++++++++++++ ...evNullBasicFunctionalityIntegrationTest.kt | 1 + .../destination/s3_v2/S3V2WriteTest.kt | 9 + 10 files changed, 313 insertions(+), 28 deletions(-) diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt index cebaf71bbfff..b6d16b54a92b 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt @@ -24,6 +24,7 @@ class MockBasicFunctionalityIntegrationTest : stringifySchemalessObjects = false, promoteUnionToObject = false, preserveUndeclaredFields = true, + commitDataIncrementally = false, ) { @Test override fun testBasicWrite() { @@ -51,6 +52,11 @@ class MockBasicFunctionalityIntegrationTest : super.testTruncateRefresh() } + @Test + override fun testInterruptedTruncateWithPriorData() { + super.testInterruptedTruncateWithPriorData() + } + @Test override fun testAppend() { super.testAppend() diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationBackend.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationBackend.kt index 174d55aad58b..6fdc8bd5dce6 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationBackend.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationBackend.kt @@ -78,6 +78,23 @@ object MockDestinationBackend { } } + fun commitFrom(srcFilename: String, dstFilename: String) { + val src = getFile(srcFilename) + insert(dstFilename, *src.toTypedArray()) + src.clear() + } + + fun commitAndDedupeFrom( + srcFilename: String, + dstFilename: String, + primaryKey: List>, + cursor: List, + ) { + val src = getFile(srcFilename) + upsert(dstFilename, primaryKey, cursor, *src.toTypedArray()) + src.clear() + } + fun readFile(filename: String): List { return getFile(filename) } diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationWriter.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationWriter.kt index e1524187f2ba..804f5c45e77b 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationWriter.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockDestinationWriter.kt @@ -4,13 +4,14 @@ package io.airbyte.cdk.load.mock_integration_test +import io.airbyte.cdk.load.command.Append import io.airbyte.cdk.load.command.Dedupe import io.airbyte.cdk.load.command.DestinationStream import io.airbyte.cdk.load.data.ObjectValue import io.airbyte.cdk.load.message.Batch import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.message.SimpleBatch -import io.airbyte.cdk.load.mock_integration_test.MockStreamLoader.Companion.getFilename +import io.airbyte.cdk.load.state.StreamIncompleteResult import io.airbyte.cdk.load.test.util.OutputRecord import io.airbyte.cdk.load.write.DestinationWriter import io.airbyte.cdk.load.write.StreamLoader @@ -33,11 +34,30 @@ class MockStreamLoader(override val stream: DestinationStream) : StreamLoader { override val state = Batch.State.PERSISTED } - override suspend fun start() { - MockDestinationBackend.deleteOldRecords( - getFilename(stream.descriptor), - stream.minimumGenerationId - ) + override suspend fun close(streamFailure: StreamIncompleteResult?) { + if (streamFailure == null) { + when (val importType = stream.importType) { + is Append -> { + MockDestinationBackend.commitFrom( + getFilename(stream.descriptor, staging = true), + getFilename(stream.descriptor) + ) + } + is Dedupe -> { + MockDestinationBackend.commitAndDedupeFrom( + getFilename(stream.descriptor, staging = true), + getFilename(stream.descriptor), + importType.primaryKey, + importType.cursor, + ) + } + else -> throw IllegalArgumentException("Unsupported import type $importType") + } + MockDestinationBackend.deleteOldRecords( + getFilename(stream.descriptor), + stream.minimumGenerationId + ) + } } override suspend fun processRecords( @@ -51,7 +71,7 @@ class MockStreamLoader(override val stream: DestinationStream) : StreamLoader { return when (batch) { is LocalBatch -> { batch.records.forEach { - val filename = getFilename(it.stream) + val filename = getFilename(it.stream, staging = true) val record = OutputRecord( UUID.randomUUID(), @@ -64,17 +84,8 @@ class MockStreamLoader(override val stream: DestinationStream) : StreamLoader { syncId = stream.syncId ), ) - val importType = stream.importType - if (importType is Dedupe) { - MockDestinationBackend.upsert( - filename, - importType.primaryKey, - importType.cursor, - record - ) - } else { - MockDestinationBackend.insert(filename, record) - } + // blind insert into the staging area. We'll dedupe on commit. + MockDestinationBackend.insert(filename, record) } PersistedBatch(batch.records) } @@ -84,8 +95,13 @@ class MockStreamLoader(override val stream: DestinationStream) : StreamLoader { } companion object { - fun getFilename(stream: DestinationStream.Descriptor) = - getFilename(stream.namespace, stream.name) - fun getFilename(namespace: String?, name: String) = "(${namespace},${name})" + fun getFilename(stream: DestinationStream.Descriptor, staging: Boolean = false) = + getFilename(stream.namespace, stream.name, staging) + fun getFilename(namespace: String?, name: String, staging: Boolean = false) = + if (staging) { + "(${namespace},${name},staging)" + } else { + "(${namespace},${name})" + } } } diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/IntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/IntegrationTest.kt index 223c110e0209..3e96fc8721c3 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/IntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/IntegrationTest.kt @@ -99,6 +99,7 @@ abstract class IntegrationTest( stream: DestinationStream, primaryKey: List>, cursor: List?, + reason: String? = null, ) { val actualRecords: List = dataDumper.dumpRecords(config, stream) val expectedRecords: List = @@ -110,9 +111,12 @@ abstract class IntegrationTest( ) .diffRecords(expectedRecords, actualRecords) ?.let { - fail( + var message = "Incorrect records for ${stream.descriptor.namespace}.${stream.descriptor.name}:\n$it" - ) + if (reason != null) { + message = reason + "\n" + message + } + fail(message) } } @@ -135,6 +139,26 @@ abstract class IntegrationTest( configContents: String, catalog: DestinationCatalog, messages: List, + /** + * If you set this to anything other than `COMPLETE`, you may run into a race condition. + * It's recommended that you send an explicit state message in [messages], and run the sync + * in a loop until it acks the state message, e.g. + * ``` + * while (true) { + * val e = assertThrows { + * runSync( + * ..., + * listOf( + * ..., + * StreamCheckpoint(...), + * ), + * ... + * ) + * } + * if (e.stateMessages.isNotEmpty()) { break } + * } + * ``` + */ streamStatus: AirbyteStreamStatus? = AirbyteStreamStatus.COMPLETE, ): List { val destination = diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DestinationUncleanExitException.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DestinationUncleanExitException.kt index f07c7cba70b6..63f288ba49a7 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DestinationUncleanExitException.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DestinationUncleanExitException.kt @@ -5,11 +5,17 @@ package io.airbyte.cdk.load.test.util.destination_process import io.airbyte.protocol.models.v0.AirbyteErrorTraceMessage +import io.airbyte.protocol.models.v0.AirbyteStateMessage import io.airbyte.protocol.models.v0.AirbyteTraceMessage class DestinationUncleanExitException( exitCode: Int, - traceMessages: List + traceMessages: List, + /** + * If the destination emitted any state messages before crashing, they will be stored into this + * list. + */ + val stateMessages: List, ) : Exception( """ @@ -24,10 +30,15 @@ class DestinationUncleanExitException( // this can't just be a second constructor, because both constructors // would have signature `traceMessages: List`. // so we have to pull this into a companion object function. - fun of(exitCode: Int, traceMessages: List) = + fun of( + exitCode: Int, + traceMessages: List, + stateMessages: List, + ) = DestinationUncleanExitException( exitCode, - traceMessages.filter { it.type == AirbyteTraceMessage.Type.ERROR }.map { it.error } + traceMessages.filter { it.type == AirbyteTraceMessage.Type.ERROR }.map { it.error }, + stateMessages, ) } } diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DockerizedDestination.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DockerizedDestination.kt index ac6f435269fd..07ab1ea0eb4f 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DockerizedDestination.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/DockerizedDestination.kt @@ -225,7 +225,11 @@ class DockerizedDestination( process.waitFor() val exitCode = process.exitValue() if (exitCode != 0) { - throw DestinationUncleanExitException.of(exitCode, destinationOutput.traces()) + throw DestinationUncleanExitException.of( + exitCode, + destinationOutput.traces(), + destinationOutput.states(), + ) } } } diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/NonDockerizedDestination.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/NonDockerizedDestination.kt index f1726b5702d3..626eb0948704 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/NonDockerizedDestination.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/destination_process/NonDockerizedDestination.kt @@ -63,7 +63,8 @@ class NonDockerizedDestination( } catch (e: ConnectorUncleanExitException) { throw DestinationUncleanExitException.of( e.exitCode, - destination.results.traces() + destination.results.traces(), + destination.results.states(), ) } destinationComplete.complete(Unit) diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt index a11d8041d4d9..905df17c183d 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt @@ -50,6 +50,7 @@ import org.junit.jupiter.api.Assumptions.assumeTrue import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test import org.junit.jupiter.api.assertAll +import org.junit.jupiter.api.assertThrows abstract class BasicFunctionalityIntegrationTest( /** The config to pass into the connector, as a serialized JSON blob */ @@ -77,6 +78,16 @@ abstract class BasicFunctionalityIntegrationTest( val stringifySchemalessObjects: Boolean, val promoteUnionToObject: Boolean, val preserveUndeclaredFields: Boolean, + /** + * Whether the destination commits new data when it receives a non-`COMPLETE` stream status. For + * example: + * * A destination which writes new data to a temporary directory, and moves those files to the + * "real" directory at the end of the sync if and only if it received a COMPLETE status, would + * set this parameter to `false`. + * * A destination which writes new data directly into the real directory throughout the sync, + * would set this parameter to `true`. + */ + val commitDataIncrementally: Boolean, ) : IntegrationTest(dataDumper, destinationCleaner, recordMangler, nameMapper) { val parsedConfig = ValidatedJsonUtils.parseOne(configSpecClass, configContents) @@ -573,6 +584,191 @@ abstract class BasicFunctionalityIntegrationTest( ) } + /** + * Test behavior in a failed truncate refresh. Sync 1 just populates two records with ID 1 and + * 2. The test then runs two more syncs: + * 1. Sync 2 emits ID 1, and then fails the sync (i.e. no COMPLETE stream status). We expect the + * first sync's records to still exist in the destination. The new record may be visible to the + * data dumper, depending on the [commitDataIncrementally] parameter. + * 2. Sync 3 emits ID 2, and then ends the sync normally (i.e. COMPLETE stream status). After + * this sync, the data from the first sync should be deleted, and the data from both the second + * and third syncs should be visible to the data dumper. + */ + @Test + open fun testInterruptedTruncateWithPriorData() { + assumeTrue(verifyDataWriting) + fun makeInputRecord(id: Int, updatedAt: String, extractedAt: Long) = + DestinationRecord( + randomizedNamespace, + "test_stream", + """{"id": $id, "updated_at": "$updatedAt", "name": "foo_${id}_$extractedAt"}""", + emittedAtMs = extractedAt, + ) + fun makeOutputRecord( + id: Int, + updatedAt: String, + extractedAt: Long, + generationId: Long, + syncId: Long, + ) = + OutputRecord( + extractedAt = extractedAt, + generationId = generationId, + data = + mapOf( + "id" to id, + "updated_at" to OffsetDateTime.parse(updatedAt), + "name" to "foo_${id}_$extractedAt", + ), + airbyteMeta = OutputRecord.Meta(syncId = syncId), + ) + // Run a normal sync with nonempty data + val stream1 = + DestinationStream( + DestinationStream.Descriptor(randomizedNamespace, "test_stream"), + Append, + ObjectType( + linkedMapOf( + "id" to intType, + "updated_at" to timestamptzType, + "name" to stringType, + ) + ), + generationId = 41, + minimumGenerationId = 0, + syncId = 41, + ) + runSync( + configContents, + stream1, + listOf( + makeInputRecord(1, "2024-01-23T01:00Z", 100), + makeInputRecord(2, "2024-01-23T01:00Z", 100), + ), + ) + dumpAndDiffRecords( + parsedConfig, + listOf( + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + makeOutputRecord( + id = 2, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + ), + stream1, + primaryKey = listOf(listOf("id")), + cursor = null, + "Records were incorrect after initial sync - this indicates a bug in basic connector behavior", + ) + + val stream2 = + stream1.copy( + generationId = 42, + minimumGenerationId = 42, + syncId = 42, + ) + // Run a sync, but don't emit a stream status. This should not delete any existing data. + // There's a race condition between the end of stream killing the connector, + // and the connector starting to process the record. + // So we run this in a loop until the connector acks the state message. + while (true) { + val e = + assertThrows { + runSync( + configContents, + stream2, + listOf( + makeInputRecord(1, "2024-01-23T02:00Z", 200), + StreamCheckpoint( + randomizedNamespace, + "test_stream", + "{}", + sourceRecordCount = 1, + ) + ), + streamStatus = null, + ) + } + if (e.stateMessages.isNotEmpty()) { + break + } + } + dumpAndDiffRecords( + parsedConfig, + listOfNotNull( + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + makeOutputRecord( + id = 2, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + if (commitDataIncrementally) { + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T02:00Z", + extractedAt = 200, + generationId = 42, + syncId = 42, + ) + } else { + null + } + ), + stream2, + primaryKey = listOf(listOf("id")), + cursor = null, + "Records were incorrect after a failed sync.", + ) + + // Run a third sync, this time with a successful status. + // This should delete the first sync's data, and retain the second+third syncs' data. + runSync( + configContents, + stream2, + listOf(makeInputRecord(2, "2024-01-23T03:00Z", 300)), + ) + dumpAndDiffRecords( + parsedConfig, + listOf( + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T02:00Z", + extractedAt = 200, + generationId = 42, + syncId = 42, + ), + makeOutputRecord( + id = 2, + updatedAt = "2024-01-23T03:00Z", + extractedAt = 300, + generationId = 42, + syncId = 42, + ), + ), + stream2, + primaryKey = listOf(listOf("id")), + cursor = null, + "Records were incorrect after a successful sync following a failed sync. This may indicate that we are not retaining data from the failed sync.", + ) + } + @Test open fun testAppend() { assumeTrue(verifyDataWriting) diff --git a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt index 13650ff0ac99..1d316df778f6 100644 --- a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt +++ b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt @@ -22,6 +22,7 @@ class DevNullBasicFunctionalityIntegrationTest : stringifySchemalessObjects = false, promoteUnionToObject = false, preserveUndeclaredFields = false, + commitDataIncrementally = false, ) { @Test override fun testBasicWrite() { diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt index e50c7767192d..276d3d8da946 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt @@ -15,6 +15,8 @@ abstract class S3V2WriteTest( stringifySchemalessObjects: Boolean, promoteUnionToObject: Boolean, preserveUndeclaredFields: Boolean, + /** This is false for staging mode, and true for non-staging mode. */ + commitDataIncrementally: Boolean = false, ) : BasicFunctionalityIntegrationTest( S3V2TestUtils.getConfig(path), @@ -27,6 +29,7 @@ abstract class S3V2WriteTest( stringifySchemalessObjects = stringifySchemalessObjects, promoteUnionToObject = promoteUnionToObject, preserveUndeclaredFields = preserveUndeclaredFields, + commitDataIncrementally = commitDataIncrementally, ) { @Test override fun testBasicWrite() { @@ -68,6 +71,12 @@ abstract class S3V2WriteTest( override fun testUnions() { super.testUnions() } + + @Disabled("connector doesn't yet do refreshes correctly - data from failed sync is lost") + @Test + override fun testInterruptedTruncateWithPriorData() { + super.testInterruptedTruncateWithPriorData() + } } class S3V2WriteTestJsonUncompressed : From cd8ad3e2a8cdd0291aca20af12ee870ead74fd26 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Mon, 4 Nov 2024 09:23:40 -0800 Subject: [PATCH 547/808] Destination mssql: remove incorrect dedupe sync mode (#48134) --- .../connectors/destination-mssql-strict-encrypt/metadata.yaml | 2 +- .../connectors/destination-mssql/metadata.yaml | 2 +- .../connectors/destination-mssql/src/main/resources/spec.json | 2 +- docs/integrations/destinations/mssql.md | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/destination-mssql-strict-encrypt/metadata.yaml b/airbyte-integrations/connectors/destination-mssql-strict-encrypt/metadata.yaml index 5a42e12cfed4..93b054e4996a 100644 --- a/airbyte-integrations/connectors/destination-mssql-strict-encrypt/metadata.yaml +++ b/airbyte-integrations/connectors/destination-mssql-strict-encrypt/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: database connectorType: destination definitionId: d4353156-9217-4cad-8dd7-c108fd4f74cf - dockerImageTag: 1.0.0 + dockerImageTag: 1.0.1 dockerRepository: airbyte/destination-mssql-strict-encrypt githubIssueLabel: destination-mssql icon: mssql.svg diff --git a/airbyte-integrations/connectors/destination-mssql/metadata.yaml b/airbyte-integrations/connectors/destination-mssql/metadata.yaml index 15af64c5f580..aaab793a0d4b 100644 --- a/airbyte-integrations/connectors/destination-mssql/metadata.yaml +++ b/airbyte-integrations/connectors/destination-mssql/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: d4353156-9217-4cad-8dd7-c108fd4f74cf - dockerImageTag: 1.0.0 + dockerImageTag: 1.0.1 dockerRepository: airbyte/destination-mssql githubIssueLabel: destination-mssql icon: mssql.svg diff --git a/airbyte-integrations/connectors/destination-mssql/src/main/resources/spec.json b/airbyte-integrations/connectors/destination-mssql/src/main/resources/spec.json index 6d690edc7a96..19e5b8178e76 100644 --- a/airbyte-integrations/connectors/destination-mssql/src/main/resources/spec.json +++ b/airbyte-integrations/connectors/destination-mssql/src/main/resources/spec.json @@ -3,7 +3,7 @@ "supportsIncremental": true, "supportsNormalization": true, "supportsDBT": true, - "supported_destination_sync_modes": ["overwrite", "append", "append_dedup"], + "supported_destination_sync_modes": ["overwrite", "append"], "connectionSpecification": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "MS SQL Server Destination Spec", diff --git a/docs/integrations/destinations/mssql.md b/docs/integrations/destinations/mssql.md index dcbb1fa145a5..3d7f57f1538f 100644 --- a/docs/integrations/destinations/mssql.md +++ b/docs/integrations/destinations/mssql.md @@ -119,6 +119,7 @@ Using this feature requires additional configuration, when creating the source. | Version | Date | Pull Request | Subject | | :------ | :--------- | :--------------------------------------------------------- | :-------------------------------------------------------------------------------------------------- | +| 1.0.1 | 2024-11-04 | [\#48134](https://github.com/airbytehq/airbyte/pull/48134) | Fix supported sync modes (destination-mssql 1.x.y does not support dedup) | | 1.0.0 | 2024-04-11 | [\#36050](https://github.com/airbytehq/airbyte/pull/36050) | Update to Dv2 Table Format and Remove normalization | | 0.2.0 | 2023-06-27 | [\#27781](https://github.com/airbytehq/airbyte/pull/27781) | License Update: Elv2 | | 0.1.25 | 2023-06-21 | [\#27555](https://github.com/airbytehq/airbyte/pull/27555) | Reduce image size | @@ -145,4 +146,4 @@ Using this feature requires additional configuration, when creating the source. | 0.1.2 | 2021-05-13 | [\#3367](https://github.com/airbytehq/airbyte/pull/3671) | Fix handle symbols unicode | | 0.1.1 | 2021-05-11 | [\#3566](https://github.com/airbytehq/airbyte/pull/3195) | MS SQL Server Destination Release! | - \ No newline at end of file + From 38c657ca038d0d65c574e22f3718ac7ec9eab58d Mon Sep 17 00:00:00 2001 From: Aazam Thakur <59562284+aazam-gh@users.noreply.github.com> Date: Mon, 4 Nov 2024 23:18:30 +0530 Subject: [PATCH 548/808] source-onfleet contribution from aazam-gh (#47420) Co-authored-by: Marcos Marx --- .../connectors/source-onfleet/README.md | 39 + .../source-onfleet/acceptance-test-config.yml | 17 + .../connectors/source-onfleet/icon.svg | 43 + .../connectors/source-onfleet/manifest.yaml | 827 ++++++++++++++++++ .../connectors/source-onfleet/metadata.yaml | 35 + docs/integrations/sources/onfleet.md | 37 + 6 files changed, 998 insertions(+) create mode 100644 airbyte-integrations/connectors/source-onfleet/README.md create mode 100644 airbyte-integrations/connectors/source-onfleet/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-onfleet/icon.svg create mode 100644 airbyte-integrations/connectors/source-onfleet/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-onfleet/metadata.yaml create mode 100644 docs/integrations/sources/onfleet.md diff --git a/airbyte-integrations/connectors/source-onfleet/README.md b/airbyte-integrations/connectors/source-onfleet/README.md new file mode 100644 index 000000000000..36a39206e30d --- /dev/null +++ b/airbyte-integrations/connectors/source-onfleet/README.md @@ -0,0 +1,39 @@ +# Onfleet +This directory contains the manifest-only connector for `source-onfleet`. + +This is the Onfleet connector that ingests data from the Onfleet API. + +Onfleet is the world's advanced logistics software that delights customers, scale operations, and boost efficiency https://onfleet.com/ + +In order to use this source you must first create an account on Onfleet. Once logged in, you can find the can create an API keys through the settings menu in the dashboard, by going into the API section. + +You can find more information about the API here https://docs.onfleet.com/reference/setup-tutorial + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-onfleet:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-onfleet build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-onfleet test +``` + diff --git a/airbyte-integrations/connectors/source-onfleet/acceptance-test-config.yml b/airbyte-integrations/connectors/source-onfleet/acceptance-test-config.yml new file mode 100644 index 000000000000..f77a7e15f95b --- /dev/null +++ b/airbyte-integrations/connectors/source-onfleet/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-onfleet:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-onfleet/icon.svg b/airbyte-integrations/connectors/source-onfleet/icon.svg new file mode 100644 index 000000000000..6a793049b3b9 --- /dev/null +++ b/airbyte-integrations/connectors/source-onfleet/icon.svg @@ -0,0 +1,43 @@ + + + + + + + diff --git a/airbyte-integrations/connectors/source-onfleet/manifest.yaml b/airbyte-integrations/connectors/source-onfleet/manifest.yaml new file mode 100644 index 000000000000..d6351444f8e6 --- /dev/null +++ b/airbyte-integrations/connectors/source-onfleet/manifest.yaml @@ -0,0 +1,827 @@ +version: 5.16.0 + +type: DeclarativeSource + +description: >- + This is the Onfleet connector that ingests data from the Onfleet API. + + + Onfleet is the world's advanced logistics software that delights customers, + scale operations, and boost efficiency https://onfleet.com/ + + + In order to use this source you must first create an account on Onfleet. Once + logged in, you can find the can create an API keys through the settings menu + in the dashboard, by going into the API section. + + + You can find more information about the API here + https://docs.onfleet.com/reference/setup-tutorial + +check: + type: CheckStream + stream_names: + - workers + +definitions: + streams: + workers: + type: DeclarativeStream + name: workers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/workers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/workers" + administrators: + type: DeclarativeStream + name: administrators + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/admins + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/administrators" + teams: + type: DeclarativeStream + name: teams + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/teams + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/teams" + hubs: + type: DeclarativeStream + name: hubs + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/hubs + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/hubs" + tasks: + type: DeclarativeStream + name: tasks + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/tasks + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: lastId + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('lastId') }}" + stop_condition: "{{ response.get('lastId') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tasks" + containers: + type: DeclarativeStream + name: containers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/containers/workers/{{ stream_slice.worker_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: worker_id + stream: + $ref: "#/definitions/streams/workers" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/containers" + base_requester: + type: HttpRequester + url_base: https://onfleet.com + authenticator: + type: BasicHttpAuthenticator + password: "{{ config[\"password\"] }}" + username: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/workers" + - $ref: "#/definitions/streams/administrators" + - $ref: "#/definitions/streams/teams" + - $ref: "#/definitions/streams/hubs" + - $ref: "#/definitions/streams/tasks" + - $ref: "#/definitions/streams/containers" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - password + properties: + api_key: + type: string + description: >- + API key to use for authenticating requests. You can create and manage + your API keys in the API section of the Onfleet dashboard. + name: api_key + order: 0 + title: API Key + airbyte_secret: true + password: + type: string + description: >- + Placeholder for basic HTTP auth password - should be set to empty + string + name: password + order: 1 + title: Placeholder Password + default: x + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + workers: true + administrators: false + teams: false + hubs: false + tasks: false + containers: true + testedStreams: + workers: + streamHash: 4e4085588a0a68d16ff464a0f06756f90ba1579c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + administrators: + streamHash: 86bf4b87b06b606bf5317cd75403626232cc338e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + teams: + streamHash: 5c5a6e8dfa1d1f93921563dbbe5c24179c4e3b54 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + hubs: + streamHash: 05fc33213f414d818d7100942eb057100bdcdbb5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + tasks: + hasRecords: true + streamHash: e95fcb0a6846523fa0bd74c3aa979463ff7705f0 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + containers: + streamHash: 2621785beff7dd4b16bc99cd0d2da1087166191c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://docs.onfleet.com/reference/setup-tutorial + +schemas: + workers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - array + - "null" + accountStatus: + type: + - string + - "null" + additionalCapacities: + type: + - object + - "null" + properties: + capacityA: + type: + - number + - "null" + capacityB: + type: + - number + - "null" + capacityC: + type: + - number + - "null" + capacity: + type: + - number + - "null" + displayName: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + onDuty: + type: + - boolean + - "null" + organization: + type: + - string + - "null" + phone: + type: + - string + - "null" + tasks: + type: + - array + - "null" + teams: + type: + - array + - "null" + items: + type: + - string + - "null" + timeCreated: + type: + - number + - "null" + timeLastModified: + type: + - number + - "null" + userData: + type: + - object + - "null" + vehicle: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + timeCreated: + type: + - number + - "null" + timeLastModified: + type: + - number + - "null" + required: + - id + administrators: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + metadata: + type: + - array + - "null" + email: + type: + - string + - "null" + id: + type: string + isAccountOwner: + type: + - boolean + - "null" + isActive: + type: + - boolean + - "null" + isReadOnly: + type: + - boolean + - "null" + name: + type: + - string + - "null" + organization: + type: + - string + - "null" + phone: + type: + - string + - "null" + teams: + type: + - array + - "null" + timeCreated: + type: + - number + - "null" + timeLastModified: + type: + - number + - "null" + required: + - id + teams: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} + hubs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + address: + type: + - object + - "null" + properties: + apartment: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + number: + type: + - string + - "null" + postalCode: + type: + - string + - "null" + state: + type: + - string + - "null" + street: + type: + - string + - "null" + id: + type: string + location: + type: + - array + - "null" + items: + type: + - number + - "null" + name: + type: + - string + - "null" + teams: + type: + - array + - "null" + items: + type: + - string + - "null" + required: + - id + tasks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - number + - "null" + metadata: + type: + - array + - "null" + additionalQuantities: + type: + - object + - "null" + properties: + quantityA: + type: + - number + - "null" + quantityB: + type: + - number + - "null" + quantityC: + type: + - number + - "null" + appearance: + type: + - object + - "null" + properties: {} + completeAfter: + type: + - number + - "null" + completionDetails: + type: + - object + - "null" + properties: + actions: + type: + - array + - "null" + events: + type: + - array + - "null" + failureNotes: + type: + - string + - "null" + failureReason: + type: + - string + - "null" + firstLocation: + type: + - array + - "null" + lastLocation: + type: + - array + - "null" + successNotes: + type: + - string + - "null" + unavailableAttachments: + type: + - array + - "null" + container: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + organization: + type: + - string + - "null" + creator: + type: + - string + - "null" + customFields: + type: + - array + - "null" + dependencies: + type: + - array + - "null" + destination: + type: + - object + - "null" + properties: + metadata: + type: + - array + - "null" + address: + type: + - object + - "null" + properties: + apartment: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + number: + type: + - string + - "null" + postalCode: + type: + - string + - "null" + state: + type: + - string + - "null" + street: + type: + - string + - "null" + googlePlaceId: + type: + - string + - "null" + id: + type: + - string + - "null" + location: + type: + - array + - "null" + items: + type: + - number + - "null" + notes: + type: + - string + - "null" + timeCreated: + type: + - number + - "null" + timeLastModified: + type: + - number + - "null" + useGPS: + type: + - boolean + - "null" + warnings: + type: + - array + - "null" + executor: + type: + - string + - "null" + feedback: + type: + - array + - "null" + id: + type: string + identity: + type: + - object + - "null" + properties: + failedScanCount: + type: + - number + - "null" + merchant: + type: + - string + - "null" + notes: + type: + - string + - "null" + organization: + type: + - string + - "null" + overrides: + type: + - object + - "null" + pickupTask: + type: + - boolean + - "null" + quantity: + type: + - number + - "null" + recipients: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + metadata: + type: + - array + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + notes: + type: + - string + - "null" + organization: + type: + - string + - "null" + phone: + type: + - string + - "null" + skipSMSNotifications: + type: + - boolean + - "null" + timeCreated: + type: + - number + - "null" + timeLastModified: + type: + - number + - "null" + scanOnlyRequiredBarcodes: + type: + - boolean + - "null" + serviceTime: + type: + - number + - "null" + shortId: + type: + - string + - "null" + state: + type: + - number + - "null" + timeCreated: + type: + - number + - "null" + timeLastModified: + type: + - number + - "null" + trackingURL: + type: + - string + - "null" + trackingViewed: + type: + - boolean + - "null" + required: + - id + containers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + id: + type: string + organization: + type: + - string + - "null" + tasks: + type: + - array + - "null" + timeCreated: + type: + - number + - "null" + timeLastModified: + type: + - number + - "null" + worker: + type: + - string + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-onfleet/metadata.yaml b/airbyte-integrations/connectors/source-onfleet/metadata.yaml new file mode 100644 index 000000000000..f39cab554be7 --- /dev/null +++ b/airbyte-integrations/connectors/source-onfleet/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "onfleet.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-onfleet + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: e4285e7f-ee6c-4b8b-b231-746c9640164e + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-onfleet + githubIssueLabel: source-onfleet + icon: icon.svg + license: MIT + name: Onfleet + releaseDate: 2024-10-27 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/onfleet + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/onfleet.md b/docs/integrations/sources/onfleet.md new file mode 100644 index 000000000000..dd14c9a799a8 --- /dev/null +++ b/docs/integrations/sources/onfleet.md @@ -0,0 +1,37 @@ +# Onfleet +This is the Onfleet connector that ingests data from the Onfleet API. + +Onfleet is the world's advanced logistics software that delights customers, scale operations, and boost efficiency https://onfleet.com/ + +In order to use this source you must first create an account on Onfleet. Once logged in, you can find the can create an API keys through the settings menu in the dashboard, by going into the API section. + +You can find more information about the API here https://docs.onfleet.com/reference/setup-tutorial + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. API key to use for authenticating requests. You can create and manage your API keys in the API section of the Onfleet dashboard. | | +| `password` | `string` | Placeholder Password. Placeholder for basic HTTP auth password - should be set to empty string | x | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| workers | id | No pagination | ✅ | ❌ | +| administrators | id | No pagination | ✅ | ❌ | +| teams | id | No pagination | ✅ | ❌ | +| hubs | id | No pagination | ✅ | ❌ | +| tasks | id | DefaultPaginator | ✅ | ❌ | +| containers | id | No pagination | ✅ | ❌ | + + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-27 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | + +
From ca767a35b7b25785f42aee99a0b81b17ea6436e0 Mon Sep 17 00:00:00 2001 From: Artem Inzhyyants <36314070+artem1205@users.noreply.github.com> Date: Mon, 4 Nov 2024 19:40:02 +0100 Subject: [PATCH 549/808] Airbyte CDK: fix streams discover (#48110) Signed-off-by: Artem Inzhyyants --- .../sources/declarative/concurrent_declarative_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/concurrent_declarative_source.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/concurrent_declarative_source.py index a64da4758743..46c4c70a83bd 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/concurrent_declarative_source.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/concurrent_declarative_source.py @@ -145,7 +145,7 @@ def _group_streams(self, config: Mapping[str, Any]) -> Tuple[List[AbstractStream name_to_stream_mapping = {stream["name"]: stream for stream in self.resolved_manifest["streams"]} - for declarative_stream in super().streams(config=config): + for declarative_stream in self.streams(config=config): # Some low-code sources use a combination of DeclarativeStream and regular Python streams. We can't inspect # these legacy Python streams the way we do low-code streams to determine if they are concurrent compatible, # so we need to treat them as synchronous From ebcb86d605fe51cfdfa7f25324471ba093b4c87a Mon Sep 17 00:00:00 2001 From: artem1205 Date: Mon, 4 Nov 2024 18:43:29 +0000 Subject: [PATCH 550/808] =?UTF-8?q?=F0=9F=A4=96=20patch=20bump=20Python=20?= =?UTF-8?q?CDK=20to=20version=206.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-cdk/python/CHANGELOG.md | 3 +++ airbyte-cdk/python/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index 327a012c0c58..d892e89ba5f9 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 6.1.1 +fix streams discover + ## 6.1.0 Add option to File Transfer for File-Bases sources diff --git a/airbyte-cdk/python/pyproject.toml b/airbyte-cdk/python/pyproject.toml index fbdba04be599..a8ea4fa7661f 100644 --- a/airbyte-cdk/python/pyproject.toml +++ b/airbyte-cdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-cdk" -version = "6.1.0" +version = "6.1.1" description = "A framework for writing Airbyte Connectors." authors = ["Airbyte "] license = "MIT" From 0ce46211283e089db9eaba35ab9361739f8e6d8f Mon Sep 17 00:00:00 2001 From: artem1205 Date: Mon, 4 Nov 2024 18:49:38 +0000 Subject: [PATCH 551/808] =?UTF-8?q?=F0=9F=A4=96=20Cut=20version=206.1.1=20?= =?UTF-8?q?of=20source-declarative-manifest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-declarative-manifest/metadata.yaml | 2 +- .../connectors/source-declarative-manifest/poetry.lock | 8 ++++---- .../connectors/source-declarative-manifest/pyproject.toml | 4 ++-- docs/integrations/sources/low-code.md | 1 + 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml index 6747ef487fce..01724f3234de 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml +++ b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml @@ -8,7 +8,7 @@ data: connectorType: source definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436 # This version should not be updated manually - it is updated by the CDK release workflow. - dockerImageTag: 6.1.0 + dockerImageTag: 6.1.1 dockerRepository: airbyte/source-declarative-manifest # This page is hidden from the docs for now, since the connector is not in any Airbyte registries. documentationUrl: https://docs.airbyte.com/integrations/sources/low-code diff --git a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock index ee7fd17a0bbf..218b9500329f 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock +++ b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "6.1.0" +version = "6.1.1" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-6.1.0-py3-none-any.whl", hash = "sha256:312cda1375f27ccf737cd4812e0c64babc48ecfca445fc4db4d0173d47b72461"}, - {file = "airbyte_cdk-6.1.0.tar.gz", hash = "sha256:55cda86822be047f992f1cee1e87b4dc6c57e0ae4c5fa38d8b7c3e0d6eef3d88"}, + {file = "airbyte_cdk-6.1.1-py3-none-any.whl", hash = "sha256:f2b93260d34549031ca174bed55d345cf493fd8822790cc72c6c413682885313"}, + {file = "airbyte_cdk-6.1.1.tar.gz", hash = "sha256:6506b09d3f33381b30507ccc1f9e6346892b1a958489df92470c0e5751ef695c"}, ] [package.dependencies] @@ -1779,4 +1779,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10,<3.12" -content-hash = "9d11f2d7a471d9c9a33b3e136bfccc0ad4339a657c38f036652f48e90a484cb5" +content-hash = "4a9cdfc0707227b9909e264617d1ea921827ecfb2fa4e31fbb70bad1fbf50735" diff --git a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml index bb738a7c3dd1..fb1d596f4cc0 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml +++ b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.1.0" +version = "6.1.1" name = "source-declarative-manifest" description = "Base source implementation for low-code sources." authors = ["Airbyte "] @@ -17,7 +17,7 @@ include = "source_declarative_manifest" [tool.poetry.dependencies] python = "^3.10,<3.12" -airbyte-cdk = "6.1.0" +airbyte-cdk = "6.1.1" [tool.poetry.scripts] source-declarative-manifest = "source_declarative_manifest.run:run" diff --git a/docs/integrations/sources/low-code.md b/docs/integrations/sources/low-code.md index 92cc57a78f1d..bb1a4fdb1b50 100644 --- a/docs/integrations/sources/low-code.md +++ b/docs/integrations/sources/low-code.md @@ -9,6 +9,7 @@ The changelog below is automatically updated by the `bump_version` command as pa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 6.1.1 | 2024-11-04 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.1.1 | | 6.1.0 | 2024-10-31 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.1.0 | | 6.0.0 | 2024-10-30 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.0.0 | | 5.17.0 | 2024-10-28 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 5.17.0 | From 7c6b528e1f057921d24b48faee4ec31a5782a145 Mon Sep 17 00:00:00 2001 From: Baz Date: Mon, 4 Nov 2024 20:50:23 +0200 Subject: [PATCH 552/808] fix: fix `error message pattern` to handle the `Product 1.0 catalog` related issues (#48133) --- .../connectors/source-chargebee/acceptance-test-config.yml | 2 +- airbyte-integrations/connectors/source-chargebee/metadata.yaml | 2 +- airbyte-integrations/connectors/source-chargebee/pyproject.toml | 2 +- .../connectors/source-chargebee/source_chargebee/manifest.yaml | 2 +- docs/integrations/sources/chargebee.md | 1 + 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airbyte-integrations/connectors/source-chargebee/acceptance-test-config.yml b/airbyte-integrations/connectors/source-chargebee/acceptance-test-config.yml index 72be3187bb2d..94b4e9024112 100644 --- a/airbyte-integrations/connectors/source-chargebee/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-chargebee/acceptance-test-config.yml @@ -45,7 +45,7 @@ acceptance_tests: expect_records: path: "integration_tests/expected_records.jsonl" exact_order: no - validate_state_messages: False + validate_state_messages: false fail_on_extra_columns: true incremental: tests: diff --git a/airbyte-integrations/connectors/source-chargebee/metadata.yaml b/airbyte-integrations/connectors/source-chargebee/metadata.yaml index 932a750b0743..59731cad0834 100644 --- a/airbyte-integrations/connectors/source-chargebee/metadata.yaml +++ b/airbyte-integrations/connectors/source-chargebee/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 686473f1-76d9-4994-9cc7-9b13da46147c - dockerImageTag: 0.7.0 + dockerImageTag: 0.7.1 dockerRepository: airbyte/source-chargebee documentationUrl: https://docs.airbyte.com/integrations/sources/chargebee githubIssueLabel: source-chargebee diff --git a/airbyte-integrations/connectors/source-chargebee/pyproject.toml b/airbyte-integrations/connectors/source-chargebee/pyproject.toml index 34a8198f3e6a..0dc1bfc7ce52 100644 --- a/airbyte-integrations/connectors/source-chargebee/pyproject.toml +++ b/airbyte-integrations/connectors/source-chargebee/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.7.0" +version = "0.7.1" name = "source-chargebee" description = "Source implementation for Chargebee." authors = [ "Airbyte ",] diff --git a/airbyte-integrations/connectors/source-chargebee/source_chargebee/manifest.yaml b/airbyte-integrations/connectors/source-chargebee/source_chargebee/manifest.yaml index 5823b99fbefa..e590208ddbc7 100644 --- a/airbyte-integrations/connectors/source-chargebee/source_chargebee/manifest.yaml +++ b/airbyte-integrations/connectors/source-chargebee/source_chargebee/manifest.yaml @@ -21,7 +21,7 @@ definitions: error_handlers: - type: DefaultErrorHandler response_filters: - - error_message_contains: "This API operation is not enabled for this site" + - predicate: "{{ 'api_error_code' in response and response['api_error_code'] == 'configuration_incompatible' }}" action: IGNORE error_message: "Stream is available only for Product Catalog 1.0" - type: DefaultErrorHandler diff --git a/docs/integrations/sources/chargebee.md b/docs/integrations/sources/chargebee.md index d2515e08a9b5..c13a7b7beb6e 100644 --- a/docs/integrations/sources/chargebee.md +++ b/docs/integrations/sources/chargebee.md @@ -104,6 +104,7 @@ The Chargebee connector should not run into [Chargebee API](https://apidocs.char | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------| +| 0.7.1 | 2024-11-04 | [48133](https://github.com/airbytehq/airbyte/pull/48133) | Fix `error message pattern` to handle `Product 1.0` related errors | | 0.7.0 | 2024-10-30 | [47978](https://github.com/airbytehq/airbyte/pull/47978) | Upgrade the CDK and startup files to sync incremental streams concurrently | | 0.6.18 | 2024-10-31 | [47099](https://github.com/airbytehq/airbyte/pull/47099) | Update dependencies | | 0.6.17 | 2024-10-28 | [46846](https://github.com/airbytehq/airbyte/pull/47387) | Update CDK dependencies to yield parent records more frequently | From f5454fcd7190aedd0a619e982f3e4d672872b68e Mon Sep 17 00:00:00 2001 From: Augustin Date: Mon, 4 Nov 2024 19:51:31 +0100 Subject: [PATCH 553/808] up-to-date: remove deprecated `airbyte-ci` options from the workflow (#48140) --- .github/workflows/connectors_up_to_date.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/connectors_up_to_date.yml b/.github/workflows/connectors_up_to_date.yml index 4e16eaf02ef6..44e92c4ad580 100644 --- a/.github/workflows/connectors_up_to_date.yml +++ b/.github/workflows/connectors_up_to_date.yml @@ -56,4 +56,4 @@ jobs: sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} s3_build_cache_access_key_id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }} s3_build_cache_secret_key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }} - subcommand: 'connectors --concurrency=10 --language=python --language=low-code --support-level=community --support-level=certified --metadata-query="\"source-declarative-manifest\" not in data.dockerRepository" --metadata-query="\"-rc.\" not in data.dockerImageTag" up-to-date --ignore-connector=source-declarative-manifest --create-prs --auto-merge' + subcommand: 'connectors --concurrency=10 --language=python --language=low-code --support-level=community --support-level=certified --metadata-query="\"source-declarative-manifest\" not in data.dockerRepository" --metadata-query="\"-rc.\" not in data.dockerImageTag" up-to-date --create-prs --auto-merge' From 789f2d1198b8206305a46355b7f3996c401bfa97 Mon Sep 17 00:00:00 2001 From: Aazam Thakur <59562284+aazam-gh@users.noreply.github.com> Date: Tue, 5 Nov 2024 00:31:20 +0530 Subject: [PATCH 554/808] source-revolut-merchant contribution from aazam-gh (#47429) Co-authored-by: Marcos Marx --- .../source-revolut-merchant/README.md | 44 +++ .../acceptance-test-config.yml | 17 + .../source-revolut-merchant/icon.svg | 8 + .../source-revolut-merchant/manifest.yaml | 339 ++++++++++++++++++ .../source-revolut-merchant/metadata.yaml | 35 ++ docs/integrations/sources/revolut-merchant.md | 39 ++ 6 files changed, 482 insertions(+) create mode 100644 airbyte-integrations/connectors/source-revolut-merchant/README.md create mode 100644 airbyte-integrations/connectors/source-revolut-merchant/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-revolut-merchant/icon.svg create mode 100644 airbyte-integrations/connectors/source-revolut-merchant/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-revolut-merchant/metadata.yaml create mode 100644 docs/integrations/sources/revolut-merchant.md diff --git a/airbyte-integrations/connectors/source-revolut-merchant/README.md b/airbyte-integrations/connectors/source-revolut-merchant/README.md new file mode 100644 index 000000000000..80e258841fc7 --- /dev/null +++ b/airbyte-integrations/connectors/source-revolut-merchant/README.md @@ -0,0 +1,44 @@ +# Revolut Merchant +This directory contains the manifest-only connector for `source-revolut-merchant`. + +This is the Revolut Merchant source that ingests data from the Revolut Merchant API. + +Revolut helps you spend, send, and save smarter https://www.revolut.com/ + +The Revolut Merchant account is a sub-account of your Revolut Business account. While a Business account is for managing your business finances, the Merchant account is dedicated to helping you accept online payments from your e-commerce customers. + +This source uses the Merchant API and has the orders, customers and location endpoints. In order to use this API, you must first create a Revolut account. +Log in to your Revolut Business account: Access the Revolut Business log in page and enter your credentials. +Navigate to Merchant API settings: Once logged in, access the Merchant API settings page by clicking your profile icon in the top left corner, then selecting APIs > Merchant API. +Here you can access your Production API keys (Public, Secret) specific to your Merchant account. +Get API keys: If you're visiting this page for the first time, you'll need to initiate the process by clicking the Get started button. To generate your Production API Secret key, click the Generate button. +You can find more about the API here https://developer.revolut.com/docs/merchant/merchant-api + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-revolut-merchant:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-revolut-merchant build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-revolut-merchant test +``` + diff --git a/airbyte-integrations/connectors/source-revolut-merchant/acceptance-test-config.yml b/airbyte-integrations/connectors/source-revolut-merchant/acceptance-test-config.yml new file mode 100644 index 000000000000..51bc125eee7e --- /dev/null +++ b/airbyte-integrations/connectors/source-revolut-merchant/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-revolut-merchant:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-revolut-merchant/icon.svg b/airbyte-integrations/connectors/source-revolut-merchant/icon.svg new file mode 100644 index 000000000000..c5520e22bd4e --- /dev/null +++ b/airbyte-integrations/connectors/source-revolut-merchant/icon.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/airbyte-integrations/connectors/source-revolut-merchant/manifest.yaml b/airbyte-integrations/connectors/source-revolut-merchant/manifest.yaml new file mode 100644 index 000000000000..392da90cf303 --- /dev/null +++ b/airbyte-integrations/connectors/source-revolut-merchant/manifest.yaml @@ -0,0 +1,339 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + This is the Revolut Merchant source that ingests data from the Revolut + Merchant API. + + + Revolut helps you spend, send, and save smarter https://www.revolut.com/ + + + The Revolut Merchant account is a sub-account of your Revolut Business + account. While a Business account is for managing your business finances, the + Merchant account is dedicated to helping you accept online payments from your + e-commerce customers. + + + This source uses the Merchant API and has the orders, customers and location + endpoints. In order to use this API, you must first create a Revolut account. + + Log in to your Revolut Business account: Access the Revolut Business log in + page and enter your credentials. + + Navigate to Merchant API settings: Once logged in, access the Merchant API + settings page by clicking your profile icon in the top left corner, then + selecting APIs > Merchant API. + + Here you can access your Production API keys (Public, Secret) specific to your + Merchant account. + + Get API keys: If you're visiting this page for the first time, you'll need to + initiate the process by clicking the Get started button. To generate your + Production API Secret key, click the Generate button. + + You can find more about the API here + https://developer.revolut.com/docs/merchant/merchant-api + +check: + type: CheckStream + stream_names: + - orders + +definitions: + streams: + orders: + type: DeclarativeStream + name: orders + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/1.0/orders + http_method: GET + request_headers: + Revolut-Api-Version: "{{ config[\"api_version\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: from_created_date + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/orders" + customers: + type: DeclarativeStream + name: customers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/1.0/customers + http_method: GET + request_headers: + Revolut-Api-Version: "{{ config[\"api_version\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + locations: + type: DeclarativeStream + name: locations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/locations + http_method: GET + request_headers: + Revolut-Api-Version: "{{ config[\"api_version\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/locations" + base_requester: + type: HttpRequester + url_base: https://{{ config["environment"] }}.revolut.com + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"secret_api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/orders" + - $ref: "#/definitions/streams/customers" + - $ref: "#/definitions/streams/locations" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_version + - secret_api_key + - start_date + - environment + properties: + api_version: + type: string + description: >- + Specify the API version to use. This is required for certain API + calls. Example: '2024-09-01'. + name: api_version + title: API Version + order: 0 + secret_api_key: + type: string + description: >- + Secret API key to use for authenticating with the Revolut Merchant + API. Find it in your Revolut Business account under APIs > Merchant + API. + name: secret_api_key + title: Secret API Key + airbyte_secret: true + order: 1 + start_date: + type: string + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + order: 2 + environment: + type: string + description: The base url of your environment. Either sandbox or production + title: environment + enum: + - sandbox-merchant + - merchant + order: 3 + additionalProperties: true + +metadata: + autoImportSchema: + orders: true + customers: true + locations: false + testedStreams: + orders: + streamHash: 029edb3159cb90ba6d7e54b216a2d6f118665165 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + customers: + streamHash: dc0f2db5574ead07283be51fafd8d5037e689124 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + locations: + streamHash: 2fbbfea59789b5f870d88a118d29d4fb59b35797 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://developer.revolut.com/docs/merchant/merchant-api + +schemas: + orders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + metadata: + type: + - object + - "null" + capture_mode: + type: + - string + - "null" + created_at: + type: string + id: + type: string + order_amount: + type: + - object + - "null" + properties: + currency: + type: + - string + - "null" + value: + type: + - number + - "null" + order_outstanding_amount: + type: + - object + - "null" + properties: + currency: + type: + - string + - "null" + value: + type: + - number + - "null" + state: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + required: + - id + - created_at + customers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + business_name: + type: + - string + - "null" + created_at: + type: + - string + - "null" + email: + type: + - string + - "null" + full_name: + type: + - string + - "null" + id: + type: string + phone: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + required: + - id + locations: + type: object + $schema: http://json-schema.org/schema# + properties: + type: + type: + - string + - "null" + details: + type: + - object + - "null" + properties: + domain: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + required: + - id + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-revolut-merchant/metadata.yaml b/airbyte-integrations/connectors/source-revolut-merchant/metadata.yaml new file mode 100644 index 000000000000..defdd4ee9900 --- /dev/null +++ b/airbyte-integrations/connectors/source-revolut-merchant/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "https://*.revolut.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-revolut-merchant + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 47a7a5cf-7bfa-406e-8ef8-f23cd041866b + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-revolut-merchant + githubIssueLabel: source-revolut-merchant + icon: icon.svg + license: MIT + name: Revolut Merchant + releaseDate: 2024-10-27 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/revolut-merchant + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/revolut-merchant.md b/docs/integrations/sources/revolut-merchant.md new file mode 100644 index 000000000000..382397a6327f --- /dev/null +++ b/docs/integrations/sources/revolut-merchant.md @@ -0,0 +1,39 @@ +# Revolut Merchant +This is the Revolut Merchant source that ingests data from the Revolut Merchant API. + +Revolut helps you spend, send, and save smarter https://www.revolut.com/ + +The Revolut Merchant account is a sub-account of your Revolut Business account. While a Business account is for managing your business finances, the Merchant account is dedicated to helping you accept online payments from your e-commerce customers. + +This source uses the Merchant API and has the orders, customers and location endpoints. In order to use this API, you must first create a Revolut account. +Log in to your Revolut Business account: Access the Revolut Business log in page and enter your credentials. +Navigate to Merchant API settings: Once logged in, access the Merchant API settings page by clicking your profile icon in the top left corner, then selecting APIs > Merchant API. +Here you can access your Production API keys (Public, Secret) specific to your Merchant account. +Get API keys: If you're visiting this page for the first time, you'll need to initiate the process by clicking the Get started button. To generate your Production API Secret key, click the Generate button. +You can find more about the API here https://developer.revolut.com/docs/merchant/merchant-api + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `secret_api_key` | `string` | Secret API Key. Secret API key to use for authenticating with the Revolut Merchant API. Find it in your Revolut Business account under APIs > Merchant API. | | +| `start_date` | `string` | Start date. | | +| `environment` | `string` | environment. The base url of your environment. Either sandbox or production | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| orders | id | DefaultPaginator | ✅ | ✅ | +| customers | id | No pagination | ✅ | ❌ | +| locations | id | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-27 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | + +
From cbd84f3c5fec01e3589d918aa1606db7755995ff Mon Sep 17 00:00:00 2001 From: Augustin Date: Mon, 4 Nov 2024 20:19:55 +0100 Subject: [PATCH 555/808] source-stripe: add subsciption_schedule to empty streams to make CAT pass (#48136) --- .../connectors/source-stripe/acceptance-test-config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airbyte-integrations/connectors/source-stripe/acceptance-test-config.yml b/airbyte-integrations/connectors/source-stripe/acceptance-test-config.yml index 990c6081d931..091aac107f49 100644 --- a/airbyte-integrations/connectors/source-stripe/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-stripe/acceptance-test-config.yml @@ -49,6 +49,8 @@ acceptance_tests: bypass_reason: "Data expires every 30 days." - name: "subscriptions" bypass_reason: "Data appears to have expired and since we can't access our test account we cannot re-seed or verify this" + - name: "subscription_schedule" + bypass_reason: "Since we don't have subscriptions anymore, we can't get child records of subscriptions" - name: "subscription_items" bypass_reason: "Since we don't have subscriptions anymore, we can't get child records of subscriptions" - name: "usage_records" From 3d65a089f7564c704d245dc49a1b56634588e847 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Tue, 5 Nov 2024 00:53:15 +0530 Subject: [PATCH 556/808] source-akeneo contribution from parthiv11 (#47477) Co-authored-by: Marcos Marx --- .../connectors/source-akeneo/README.md | 33 + .../source-akeneo/acceptance-test-config.yml | 17 + .../connectors/source-akeneo/icon.svg | 4 + .../connectors/source-akeneo/manifest.yaml | 6691 +++++++++++++++++ .../connectors/source-akeneo/metadata.yaml | 34 + docs/integrations/sources/akeneo.md | 38 + 6 files changed, 6817 insertions(+) create mode 100644 airbyte-integrations/connectors/source-akeneo/README.md create mode 100644 airbyte-integrations/connectors/source-akeneo/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-akeneo/icon.svg create mode 100644 airbyte-integrations/connectors/source-akeneo/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-akeneo/metadata.yaml create mode 100644 docs/integrations/sources/akeneo.md diff --git a/airbyte-integrations/connectors/source-akeneo/README.md b/airbyte-integrations/connectors/source-akeneo/README.md new file mode 100644 index 000000000000..6ab13cdaf20d --- /dev/null +++ b/airbyte-integrations/connectors/source-akeneo/README.md @@ -0,0 +1,33 @@ +# Akeneo +This directory contains the manifest-only connector for `source-akeneo`. + +The Akeneo Airbyte connector enables seamless data synchronization between Akeneo PIM (Product Information Management) and other platforms. It allows you to easily extract, transform, and load product information from Akeneo to a desired data destination, facilitating efficient management and integration of product catalogs across systems. This connector supports bidirectional data flows, helping businesses maintain accurate and up-to-date product information for various sales channels. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-akeneo:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-akeneo build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-akeneo test +``` + diff --git a/airbyte-integrations/connectors/source-akeneo/acceptance-test-config.yml b/airbyte-integrations/connectors/source-akeneo/acceptance-test-config.yml new file mode 100644 index 000000000000..90baa0a8534a --- /dev/null +++ b/airbyte-integrations/connectors/source-akeneo/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-akeneo:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-akeneo/icon.svg b/airbyte-integrations/connectors/source-akeneo/icon.svg new file mode 100644 index 000000000000..2356eeec644f --- /dev/null +++ b/airbyte-integrations/connectors/source-akeneo/icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/airbyte-integrations/connectors/source-akeneo/manifest.yaml b/airbyte-integrations/connectors/source-akeneo/manifest.yaml new file mode 100644 index 000000000000..b794af62acde --- /dev/null +++ b/airbyte-integrations/connectors/source-akeneo/manifest.yaml @@ -0,0 +1,6691 @@ +version: 5.16.0 + +type: DeclarativeSource + +description: >- + The Akeneo Airbyte connector enables seamless data synchronization between + Akeneo PIM (Product Information Management) and other platforms. It allows you + to easily extract, transform, and load product information from Akeneo to a + desired data destination, facilitating efficient management and integration of + product catalogs across systems. This connector supports bidirectional data + flows, helping businesses maintain accurate and up-to-date product information + for various sales channels. + +check: + type: CheckStream + stream_names: + - products + +definitions: + streams: + products: + type: DeclarativeStream + name: products + primary_key: + - uuid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /products-uuid + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/products" + "categories ": + type: DeclarativeStream + name: "categories " + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /categories + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/categories " + families: + type: DeclarativeStream + name: families + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /families + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/families" + family_variants: + type: DeclarativeStream + name: family_variants + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /families/{{ stream_partition.family_code }}/variants + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: code + partition_field: family_code + stream: + $ref: "#/definitions/streams/families" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/family_variants" + attributes: + type: DeclarativeStream + name: attributes + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /attributes + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/attributes" + attribute_groups: + type: DeclarativeStream + name: attribute_groups + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /attribute-groups + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/attribute_groups" + association_types: + type: DeclarativeStream + name: association_types + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /association-types + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/association_types" + channels: + type: DeclarativeStream + name: channels + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /channels + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/channels" + locales: + type: DeclarativeStream + name: locales + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /locales + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/locales" + currencies: + type: DeclarativeStream + name: currencies + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /currencies + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/currencies" + measure_families: + type: DeclarativeStream + name: measure_families + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /measure-families + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - _embedded + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/measure_families" + base_requester: + type: HttpRequester + url_base: "{{ config[\"host\"] }}/api/rest/v1" + authenticator: + type: SessionTokenAuthenticator + login_requester: + type: HttpRequester + url_base: "{{ config[\"host\"] }}/api/oauth/v1" + path: token + authenticator: + type: BasicHttpAuthenticator + password: "{{ config[\"secret\"] }}" + username: "{{ config[\"client_id\"] }}" + http_method: POST + request_parameters: {} + request_headers: {} + request_body_json: + password: "{{ config['password'] }}" + username: "{{ config['api_username'] }}" + grant_type: password + session_token_path: + - access_token + expiration_duration: PT1H + request_authentication: + type: Bearer + +streams: + - $ref: "#/definitions/streams/products" + - $ref: "#/definitions/streams/categories " + - $ref: "#/definitions/streams/families" + - $ref: "#/definitions/streams/family_variants" + - $ref: "#/definitions/streams/attributes" + - $ref: "#/definitions/streams/attribute_groups" + - $ref: "#/definitions/streams/association_types" + - $ref: "#/definitions/streams/channels" + - $ref: "#/definitions/streams/locales" + - $ref: "#/definitions/streams/currencies" + - $ref: "#/definitions/streams/measure_families" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - host + - api_username + - password + - client_id + properties: + host: + type: string + description: https://cb8715249e.trial.akeneo.cloud + order: 0 + title: Host + api_username: + type: string + order: 1 + title: API Username + password: + type: string + order: 2 + title: Password + airbyte_secret: true + client_id: + type: string + order: 3 + title: Client ID + secret: + type: string + order: 4 + title: Secret + always_show: true + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + products: true + "categories ": true + families: true + family_variants: true + attributes: true + attribute_groups: true + association_types: true + channels: true + locales: true + currencies: true + measure_families: true + testedStreams: + products: + streamHash: d8f7bdfec50fe02408812c2c01f8555de9c21cc9 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + "categories ": + streamHash: 0a6a99847156f87fe4ebf0d71cb8f5c9bd83977b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + families: + streamHash: 452cd2f922d7607f777254ee34b449386cb98943 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + family_variants: + streamHash: e4029a5e91f267a5eb2199653dd28eef9fe372c2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + attributes: + streamHash: 8ad57ccffc7bdf3f92cee698c0d48ab90b9c5886 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + attribute_groups: + streamHash: ca3773e295515bdc0a0d8d48fddddc4bd442629b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + association_types: + streamHash: 984fa922d3728e1a55a026aecdb165f800af1d6a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + channels: + streamHash: 03f3f97fbf23ccbef66b414c0bf2ac3972423538 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + locales: + streamHash: fa6e0c3364ac475d91e4a8479ed21fef68062831 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + currencies: + streamHash: 5216fc38b15fcfbf35153bafd306f0d05ac29e00 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + measure_families: + hasRecords: true + streamHash: d3c6dc38392923b83ea70d6fc791ac46d53f08af + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://api.akeneo.com/api-reference.html + openapiSpecUrl: >- + https://storage.googleapis.com/akecld-prd-sdk-aep-prd-api-assets/openapi_specification.yml + +schemas: + products: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - object + - "null" + properties: + workflow_status: + type: + - string + - "null" + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + associations: + type: + - object + - "null" + properties: + PACK: + type: + - object + - "null" + properties: + groups: + type: + - array + - "null" + product_models: + type: + - array + - "null" + products: + type: + - array + - "null" + SUBSTITUTION: + type: + - object + - "null" + properties: + groups: + type: + - array + - "null" + product_models: + type: + - array + - "null" + items: + type: + - string + - "null" + products: + type: + - array + - "null" + items: + type: + - string + - "null" + UPSELL: + type: + - object + - "null" + properties: + groups: + type: + - array + - "null" + product_models: + type: + - array + - "null" + products: + type: + - array + - "null" + X_SELL: + type: + - object + - "null" + properties: + groups: + type: + - array + - "null" + product_models: + type: + - array + - "null" + items: + type: + - string + - "null" + products: + type: + - array + - "null" + items: + type: + - string + - "null" + categories: + type: + - array + - "null" + items: + type: + - string + - "null" + created: + type: + - string + - "null" + enabled: + type: + - boolean + - "null" + family: + type: + - string + - "null" + groups: + type: + - array + - "null" + parent: + type: + - string + - "null" + quantified_associations: + type: + - object + - "null" + updated: + type: + - string + - "null" + uuid: + type: string + values: + type: + - object + - "null" + properties: + description: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + scope: + type: + - string + - "null" + 3d_technology: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + adjustable_stand_width: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - number + - "null" + unit: + type: + - string + - "null" + amp_hours: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - number + - "null" + unit: + type: + - string + - "null" + app_aesthetics: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + app_awards: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + app_base_material: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + app_body_material: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + app_edition_text: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + app_finishing: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + app_slices: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + app_top_material: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + app_voltage: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + app_wattage: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - number + - "null" + unit: + type: + - string + - "null" + aspect_ratio_tires: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + atmosphere: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + atmosphere_2: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + authorized_countries: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + auto_exposure: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + auto_focus_assist_beam: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + auto_focus_lock: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + automatic_document_feeder: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + automatic_reduction_enlargement: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + automatic_two_sided_printing: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + backlight_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + bags_all_hardware_colors: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + bags_closure_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + bags_inner_description: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + bags_strap_description: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + bags_typespecific_details: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + battery_included: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + battery_power_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + bluetooth_enabled: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + bluetooth_version: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + brand: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + brief_product: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + built_in_speakers: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + bw_print_speed: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + cable_s_included: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + camera_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + category_code_description: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + certification_logo_1: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + certification_logo_2: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + certification_logo_3: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + certifications: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + chuck_size: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + chuck_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + clothing_care_instructions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + clothing_material: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + clothing_material_text: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + clothing_size: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + color: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + color_category: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + color_name: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + color_pattern: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + color_print_speed: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + color_scanning: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + connector_type_1: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + connector_type_2: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + cord_length_ft: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + cornering_stability: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + cosmetic_allergenes: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + cosmetic_aromatic_components: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + cosmetic_authorized_claim: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + cosmetic_benefits: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + cosmetic_clinical_evaluation: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + cosmetic_cvolume: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + cosmetic_format: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + cosmetic_web_fp_picto1: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + cosmetics_text_bapplication: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + cosmetics_text_benefit: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + cosmetics_text_formula: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + curved_screen: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + customs_description: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + customs_material: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + depth: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + designer: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + designer_color_name: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + designer_id: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + display_color: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + display_diagonal: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - number + - "null" + unit: + type: + - string + - "null" + display_screen: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + display_srgb: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + display_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + drill_bit_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + driving_comfort: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + dry_traction: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + durability_treadwear: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + duty_cycle: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + ean: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + energy_star_certified: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + epeat_qualified: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + erp_name: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + estimated_annual_electricity_use: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + estimated_annual_operating_cost_usd: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + ethernet_port_s: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + exclusive: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + featured_streaming_services: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + features: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + food_allergens: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + food_coeliac: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + food_energy_kcal: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + food_energy_kj: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + food_fat_g: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + food_halal: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + food_ingredients: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + food_kosher: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + food_lactose: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + food_protein_g: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + food_vegan: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + food_vegetarian: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + forme_galenique: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + furniture_fabric_composition: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + furniture_packaging_dimensions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + furniture_yarn_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + gender_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + go_live_date: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + green_tire_technology: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + handling: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + hdmi_audio_return_channel_arc: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + height: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + high_dynamic_range_format: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + high_dynamic_range_hdr: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + hydroplaning_resistance: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + ice_traction: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + image_1: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + image_2: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + image_3: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + image_4: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + image_5: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + image_dimension: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + image_instagram_1: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + image_material_detail: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + includes: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + integrated_fax: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + language_s_displayed: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + led_panel_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + leg_height: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - number + - "null" + unit: + type: + - string + - "null" + length: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + load_index: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + load_range: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + long_description: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + made_in: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + main_market: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + material: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + maximum_frame_rate: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + maximum_print_size: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + maximum_speed_rpm: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + maximum_video_resolution: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + measuring_rim_width: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + meta_description: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + meta_keywords: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + meta_title: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + mobile_device_printing: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + model_name: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + model_number: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + model_year: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + motion_enhancement_technology: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + motor_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + multifunctional_functions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + name: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + network_compatibility: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + noise_level: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + non_textile_part: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + number_of_black_cartridges_included: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_color_cartridges_included: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_component_video_inputs: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_composite_video_inputs: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_digital_optical_audio_outputs: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_dvi_inputs: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_hdmi_hdcp: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_hdmi_inputs: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_ink_bottles_tanks_included: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_ink_bottles_tanks_required: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_pieces: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_usb_2_0_ports: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + number_of_usb_port_s_total: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + optical_zoom: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + original_equipment: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + overall_diameter: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + overall_summer_all_seasons: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + overall_winter: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + peremption: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + pharmaceutical_form: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + picture_quality_enhancement_technology: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + power_requirements: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + power_tool_features: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + power_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + price: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + currency: + type: + - string + - "null" + printer_connectivity: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + printer_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + product_data_pdf: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + product_depth_with_stand: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + product_depth_without_stand: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + product_heading: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + product_height_with_stand: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + product_height_without_stand: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + product_weight_with_stand: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + product_weight_without_stand: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + product_width: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + rechargeable: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + rechargeable_battery_remote_control: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + recommended_cure_days: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + recycled_material: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + refresh_rate: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - number + - "null" + unit: + type: + - string + - "null" + reinforced_tire: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + remote_control_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + resolution: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + response_time: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + rf_antenna_input: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + rim_width_approved: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + runflat_tire_technology: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + runway: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + runway_image: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + _links: + type: + - object + - "null" + properties: + download: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + scanner_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + screen_mirroring: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + screen_mirroring_technology: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + screen_size: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + sensor_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + series: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + shank_style: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + short_description: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + sidewall_lettering: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + sidewall_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + sku: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + smart_capable: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + smart_platform: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + snow_traction: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + speaker_output: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - number + - "null" + unit: + type: + - string + - "null" + specific_manufacturer_technologies: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + speed_rating: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + stand_depth: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + stand_included: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + stand_width: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + studdable_tire: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + style_family_code: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + style_name: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + tire_qualities: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + tire_type: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + tmall_categories: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + tmall_descripton: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + tmall_title: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + total_megapixels: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + touch_screen: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + tray_capacity: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - number + - "null" + tread_depth: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + tread_width: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + tv_tuner: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + uniform_tire_quality_grading_utqg: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + upc: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + usage: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + usage_indicaion: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + locale: + type: + - string + - "null" + uses: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + v_chip: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + variant_name: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + vendor_item_number: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + vesa_wall_mount_standard: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + voltage: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - number + - "null" + unit: + type: + - string + - "null" + weight: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + wet_traction: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - string + - "null" + wheel_diameter: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + wheel_width: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + wide_format_printing: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + wide_format_scanning: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + width: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + unit: + type: + - string + - "null" + winter_designed_tire: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - boolean + - "null" + works_with: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribute_type: + type: + - string + - "null" + data: + type: + - array + - "null" + items: + type: + - string + - "null" + required: + - uuid + "categories ": + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + code: + type: string + labels: + type: + - object + - "null" + properties: + en_US: + type: + - string + - "null" + es_ES: + type: + - string + - "null" + zh_CN: + type: + - string + - "null" + parent: + type: + - string + - "null" + updated: + type: + - string + - "null" + required: + - code + families: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attribute_as_image: + type: + - string + - "null" + attribute_as_label: + type: + - string + - "null" + attribute_requirements: + type: + - object + - "null" + properties: + ecommerce: + type: + - array + - "null" + items: + type: + - string + - "null" + marketplaces: + type: + - array + - "null" + items: + type: + - string + - "null" + pos: + type: + - array + - "null" + items: + type: + - string + - "null" + attributes: + type: + - array + - "null" + items: + type: + - string + - "null" + code: + type: string + labels: + type: + - object + - "null" + properties: + en_US: + type: + - string + - "null" + es_ES: + type: + - string + - "null" + zh_CN: + type: + - string + - "null" + required: + - code + family_variants: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + code: + type: string + labels: + type: + - object + - "null" + properties: + en_US: + type: + - string + - "null" + variant_attribute_sets: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attributes: + type: + - array + - "null" + items: + type: + - string + - "null" + axes: + type: + - array + - "null" + items: + type: + - string + - "null" + level: + type: + - number + - "null" + required: + - code + attributes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + allowed_extensions: + type: + - array + - "null" + items: + type: + - string + - "null" + auto_option_sorting: + type: + - boolean + - "null" + available_locales: + type: + - array + - "null" + code: + type: string + date_min: + type: + - string + - "null" + decimals_allowed: + type: + - boolean + - "null" + default_metric_unit: + type: + - string + - "null" + group: + type: + - string + - "null" + group_labels: + type: + - object + - "null" + properties: + en_US: + type: + - string + - "null" + es_ES: + type: + - string + - "null" + zh_CN: + type: + - string + - "null" + guidelines: + type: + - object + - "null" + properties: + en_US: + type: + - string + - "null" + is_main_identifier: + type: + - boolean + - "null" + labels: + type: + - object + - "null" + properties: + en_US: + type: + - string + - "null" + es_ES: + type: + - string + - "null" + zh_CN: + type: + - string + - "null" + localizable: + type: + - boolean + - "null" + metric_family: + type: + - string + - "null" + minimum_input_length: + type: + - number + - "null" + negative_allowed: + type: + - boolean + - "null" + number_min: + type: + - string + - "null" + scopable: + type: + - boolean + - "null" + sort_order: + type: + - number + - "null" + unique: + type: + - boolean + - "null" + useable_as_grid_filter: + type: + - boolean + - "null" + validation_regexp: + type: + - string + - "null" + validation_rule: + type: + - string + - "null" + wysiwyg_enabled: + type: + - boolean + - "null" + required: + - code + attribute_groups: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + attributes: + type: + - array + - "null" + items: + type: + - string + - "null" + code: + type: string + labels: + type: + - object + - "null" + properties: + en_US: + type: + - string + - "null" + es_ES: + type: + - string + - "null" + zh_CN: + type: + - string + - "null" + sort_order: + type: + - number + - "null" + required: + - code + association_types: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + code: + type: string + is_quantified: + type: + - boolean + - "null" + is_two_way: + type: + - boolean + - "null" + labels: + type: + - object + - "null" + properties: + en_US: + type: + - string + - "null" + es_ES: + type: + - string + - "null" + zh_CN: + type: + - string + - "null" + required: + - code + channels: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + category_tree: + type: + - string + - "null" + code: + type: string + conversion_units: + type: + - object + - "null" + currencies: + type: + - array + - "null" + items: + type: + - string + - "null" + labels: + type: + - object + - "null" + properties: + en_US: + type: + - string + - "null" + es_ES: + type: + - string + - "null" + zh_CN: + type: + - string + - "null" + locales: + type: + - array + - "null" + items: + type: + - string + - "null" + required: + - code + locales: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + code: + type: + - string + - "null" + enabled: + type: + - boolean + - "null" + currencies: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + code: + type: string + enabled: + type: + - boolean + - "null" + label: + type: + - string + - "null" + required: + - code + measure_families: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + _links: + type: + - object + - "null" + properties: + self: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + code: + type: string + standard: + type: + - string + - "null" + units: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + code: + type: + - string + - "null" + convert: + type: + - object + - "null" + properties: + add: + type: + - string + - "null" + div: + type: + - string + - "null" + mul: + type: + - string + - "null" + sub: + type: + - string + - "null" + symbol: + type: + - string + - "null" + required: + - code diff --git a/airbyte-integrations/connectors/source-akeneo/metadata.yaml b/airbyte-integrations/connectors/source-akeneo/metadata.yaml new file mode 100644 index 000000000000..9b5113340e9c --- /dev/null +++ b/airbyte-integrations/connectors/source-akeneo/metadata.yaml @@ -0,0 +1,34 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-akeneo + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: d6754ed7-dd8a-4a0a-a07e-e768fbac420c + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-akeneo + githubIssueLabel: source-akeneo + icon: icon.svg + license: MIT + name: Akeneo + releaseDate: 2024-10-28 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/akeneo + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/akeneo.md b/docs/integrations/sources/akeneo.md new file mode 100644 index 000000000000..4a40955f4011 --- /dev/null +++ b/docs/integrations/sources/akeneo.md @@ -0,0 +1,38 @@ +# Akeneo +The Akeneo Airbyte connector enables seamless data synchronization between Akeneo PIM (Product Information Management) and other platforms. It allows you to easily extract, transform, and load product information from Akeneo to a desired data destination, facilitating efficient management and integration of product catalogs across systems. This connector supports bidirectional data flows, helping businesses maintain accurate and up-to-date product information for various sales channels. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `host` | `string` | Host. | | +| `api_username` | `string` | API Username. | | +| `password` | `string` | password. | | +| `client_id` | `string` | Client ID. | | +| `secret` | `string` | Secret. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| products | uuid | DefaultPaginator | ✅ | ❌ | +| categories | code | DefaultPaginator | ✅ | ❌ | +| families | code | DefaultPaginator | ✅ | ❌ | +| family_variants | code | DefaultPaginator | ✅ | ❌ | +| attributes | code | DefaultPaginator | ✅ | ❌ | +| attribute_groups | code | DefaultPaginator | ✅ | ❌ | +| association_types | code | DefaultPaginator | ✅ | ❌ | +| channels | code | DefaultPaginator | ✅ | ❌ | +| locales | | DefaultPaginator | ✅ | ❌ | +| currencies | code | DefaultPaginator | ✅ | ❌ | +| measure_families | code | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-28 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From 2a86704989684287742004ccf68d5e76d8200dec Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Tue, 5 Nov 2024 01:00:09 +0530 Subject: [PATCH 557/808] source-freightview contribution from parthiv11 (#47480) --- .../connectors/source-freightview/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-freightview/icon.svg | 1 + .../source-freightview/manifest.yaml | 723 ++++++++++++++++++ .../source-freightview/metadata.yaml | 35 + docs/integrations/sources/freightview.md | 27 + 6 files changed, 836 insertions(+) create mode 100644 airbyte-integrations/connectors/source-freightview/README.md create mode 100644 airbyte-integrations/connectors/source-freightview/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-freightview/icon.svg create mode 100644 airbyte-integrations/connectors/source-freightview/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-freightview/metadata.yaml create mode 100644 docs/integrations/sources/freightview.md diff --git a/airbyte-integrations/connectors/source-freightview/README.md b/airbyte-integrations/connectors/source-freightview/README.md new file mode 100644 index 000000000000..a8c2fadec388 --- /dev/null +++ b/airbyte-integrations/connectors/source-freightview/README.md @@ -0,0 +1,33 @@ +# Freightview +This directory contains the manifest-only connector for `source-freightview`. + +An **Airbyte connector for Freightview** enables seamless data integration by extracting and syncing shipping data from Freightview to your target data warehouses or applications. This connector automates the retrieval of essential shipping details, such as quotes, tracking, and shipment reports, allowing businesses to efficiently analyze and manage logistics operations in a centralized system. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-freightview:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-freightview build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-freightview test +``` + diff --git a/airbyte-integrations/connectors/source-freightview/acceptance-test-config.yml b/airbyte-integrations/connectors/source-freightview/acceptance-test-config.yml new file mode 100644 index 000000000000..0f6c879a08bc --- /dev/null +++ b/airbyte-integrations/connectors/source-freightview/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-freightview:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-freightview/icon.svg b/airbyte-integrations/connectors/source-freightview/icon.svg new file mode 100644 index 000000000000..5834cc9c72c7 --- /dev/null +++ b/airbyte-integrations/connectors/source-freightview/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-freightview/manifest.yaml b/airbyte-integrations/connectors/source-freightview/manifest.yaml new file mode 100644 index 000000000000..6ccbca99e37d --- /dev/null +++ b/airbyte-integrations/connectors/source-freightview/manifest.yaml @@ -0,0 +1,723 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + An **Airbyte connector for Freightview** enables seamless data integration by + extracting and syncing shipping data from Freightview to your target data + warehouses or applications. This connector automates the retrieval of + essential shipping details, such as quotes, tracking, and shipment reports, + allowing businesses to efficiently analyze and manage logistics operations in + a centralized system. + +check: + type: CheckStream + stream_names: + - shipments + +definitions: + streams: + quotes: + type: DeclarativeStream + name: quotes + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /shipments/{{ stream_partition.shipmentId }}/quotes + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - quotes + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: + $ref: "#/definitions/streams/shipments" + parent_key: shipmentId + partition_field: shipmentId + primary_key: + - quoteId + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/quotes" + tracking: + type: DeclarativeStream + name: tracking + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /shipments/{{ stream_partition.shipmentId }}/tracking + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: + $ref: "#/definitions/streams/shipments" + parent_key: shipmentId + partition_field: shipmentId + primary_key: + - createdDate + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tracking" + shipments: + type: DeclarativeStream + name: shipments + retriever: + type: SimpleRetriever + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('continuationToken') }}" + stop_condition: "{{ response.get('continuationToken') is none }}" + requester: + $ref: "#/definitions/base_requester" + path: /shipments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - shipments + primary_key: + - shipmentId + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/shipments" + base_requester: + type: HttpRequester + url_base: https://api.freightview.com/v2.0 + authenticator: + type: SessionTokenAuthenticator + login_requester: + type: HttpRequester + path: token + url_base: https://api.freightview.com/v2.0/auth + http_method: POST + authenticator: + type: NoAuth + request_headers: {} + request_body_json: + client_id: "{{ config['client_id'] }}" + grant_type: client_credentials + client_secret: "{{ config['client_secret'] }}" + request_parameters: {} + session_token_path: + - access_token + expiration_duration: P1D + request_authentication: + type: Bearer + +streams: + - $ref: "#/definitions/streams/shipments" + - $ref: "#/definitions/streams/quotes" + - $ref: "#/definitions/streams/tracking" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id + - client_secret + properties: + client_id: + type: string + order: 0 + title: Client ID + airbyte_secret: true + client_secret: + type: string + order: 1 + title: Client Secret + airbyte_secret: true + additionalProperties: true + +metadata: + assist: + docsUrl: https://developer.freightview.com/v2/ + openapiSpecUrl: https://developer.freightview.com/freightview-v2.0.min.yaml + testedStreams: + quotes: + hasRecords: true + streamHash: 177dc0c27f597f453ca998cdc8395f8ddc69f535 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + tracking: + hasRecords: true + streamHash: b63b82cb7e3735030dcc3eb68f4dd1b7106c3fbd + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + shipments: + hasRecords: true + streamHash: f5b80d551a70730df5c0fdd5c50d138050cf4681 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + autoImportSchema: + quotes: false + tracking: true + shipments: true + +schemas: + quotes: + type: object + $schema: http://json-schema.org/schema# + required: + - quoteId + properties: + mode: + type: + - string + - "null" + amount: + type: + - number + - "null" + method: + type: + - string + - "null" + source: + type: + - string + - "null" + status: + type: + - string + - "null" + quoteId: + type: string + currency: + type: + - string + - "null" + quoteNum: + type: + - string + - "null" + carrierId: + type: + - string + - "null" + serviceId: + type: + - string + - "null" + createdDate: + type: + - string + - "null" + pricingType: + type: + - string + - "null" + paymentTerms: + type: + - string + - "null" + providerCode: + type: + - string + - "null" + providerName: + type: + - string + - "null" + equipmentType: + type: + - string + - "null" + pricingMethod: + type: + - string + - "null" + additionalProperties: true + tracking: + type: object + $schema: http://json-schema.org/schema# + required: + - createdDate + properties: + summary: + type: + - string + - "null" + eventDate: + type: + - string + - "null" + eventTime: + type: + - string + - "null" + eventType: + type: + - string + - "null" + createdDate: + type: string + additionalProperties: true + shipments: + type: object + $schema: http://json-schema.org/schema# + required: + - shipmentId + properties: + bol: + type: + - object + - "null" + properties: + status: + type: + - string + - "null" + bolNumber: + type: + - string + - "null" + items: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + itemId: + type: + - string + - "null" + weight: + type: + - number + - "null" + contains: + type: + - array + - "null" + quantity: + type: + - number + - "null" + stackable: + type: + - boolean + - "null" + weightUOM: + type: + - string + - "null" + nmfcNumber: + type: + - number + - "null" + nonStandard: + type: + - boolean + - "null" + dropLocationSequence: + type: + - number + - "null" + declaredValueCurrency: + type: + - string + - "null" + pickupLocationSequence: + type: + - number + - "null" + billTo: + type: + - object + - "null" + properties: + city: + type: + - string + - "null" + state: + type: + - string + - "null" + address: + type: + - string + - "null" + company: + type: + - string + - "null" + country: + type: + - string + - "null" + postalCode: + type: + - string + - "null" + contactName: + type: + - string + - "null" + contactEmail: + type: + - string + - "null" + contactPhone: + type: + - string + - "null" + pickup: + type: + - object + - "null" + properties: + status: + type: + - string + - "null" + requestedDate: + type: + - string + - "null" + status: + type: + - string + - "null" + refNums: + type: + - array + - "null" + bookedBy: + type: + - string + - "null" + quotedBy: + type: + - string + - "null" + tracking: + type: + - object + - "null" + properties: + status: + type: + - string + - "null" + lastUpdatedDate: + type: + - string + - "null" + direction: + type: + - string + - "null" + documents: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + url: + type: + - string + - "null" + source: + type: + - string + - "null" + fileName: + type: + - string + - "null" + mimeType: + type: + - string + - "null" + uploadDate: + type: + - string + - "null" + downloadUrl: + type: + - string + - "null" + equipment: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + mode: + type: + - string + - "null" + weight: + type: + - number + - "null" + weightUOM: + type: + - string + - "null" + isHazardous: + type: + - boolean + - "null" + accessorials: + type: + - array + - "null" + alternateTypes: + type: + - array + - "null" + locations: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + lat: + type: + - number + - "null" + lng: + type: + - number + - "null" + city: + type: + - string + - "null" + state: + type: + - string + - "null" + address: + type: + - string + - "null" + company: + type: + - string + - "null" + country: + type: + - string + - "null" + opensAt: + type: + - string + - "null" + refNums: + type: + - array + - "null" + address2: + type: + - string + - "null" + closesAt: + type: + - string + - "null" + sequence: + type: + - number + - "null" + stopDate: + type: + - string + - "null" + stopType: + type: + - string + - "null" + timezone: + type: + - string + - "null" + postalCode: + type: + - string + - "null" + contactName: + type: + - string + - "null" + accessorials: + type: + - array + - "null" + contactEmail: + type: + - string + - "null" + contactPhone: + type: + - string + - "null" + instructions: + type: + - string + - "null" + stopDateType: + type: + - string + - "null" + bookedDate: + type: + - string + - "null" + isArchived: + type: + - boolean + - "null" + isLiveLoad: + type: + - boolean + - "null" + pickupDate: + type: + - string + - "null" + shipmentId: + type: string + createdDate: + type: + - string + - "null" + selectedQuote: + type: + - object + - "null" + properties: + mode: + type: + - string + - "null" + amount: + type: + - number + - "null" + method: + type: + - string + - "null" + source: + type: + - string + - "null" + status: + type: + - string + - "null" + quoteId: + type: + - string + - "null" + currency: + type: + - string + - "null" + quoteNum: + type: + - string + - "null" + carrierId: + type: + - string + - "null" + serviceId: + type: + - string + - "null" + createdDate: + type: + - string + - "null" + pricingType: + type: + - string + - "null" + paymentTerms: + type: + - string + - "null" + providerCode: + type: + - string + - "null" + providerName: + type: + - string + - "null" + equipmentType: + type: + - string + - "null" + pricingMethod: + type: + - string + - "null" + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-freightview/metadata.yaml b/airbyte-integrations/connectors/source-freightview/metadata.yaml new file mode 100644 index 000000000000..8abf7dd83152 --- /dev/null +++ b/airbyte-integrations/connectors/source-freightview/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.freightview.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-freightview + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: aaedb415-d131-468f-84ab-5319d72e02ed + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-freightview + githubIssueLabel: source-freightview + icon: icon.svg + license: MIT + name: Freightview + releaseDate: 2024-10-28 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/freightview + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/freightview.md b/docs/integrations/sources/freightview.md new file mode 100644 index 000000000000..82bb8bf2be36 --- /dev/null +++ b/docs/integrations/sources/freightview.md @@ -0,0 +1,27 @@ +# Freightview +An **Airbyte connector for Freightview** enables seamless data integration by extracting and syncing shipping data from Freightview to your target data warehouses or applications. This connector automates the retrieval of essential shipping details, such as quotes, tracking, and shipment reports, allowing businesses to efficiently analyze and manage logistics operations in a centralized system. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `client_id` | `string` | Client ID. | | +| `client_secret` | `string` | Client Secret. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| shipments | shipmentId | DefaultPaginator | ✅ | ❌ | +| quotes | quoteId | No pagination | ✅ | ❌ | +| tracking | createdDate | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-28 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From e9f1c4e25361ab3d1098275a078943640a2b5b12 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Tue, 5 Nov 2024 01:27:07 +0530 Subject: [PATCH 558/808] source-e-conomic contribution from parthiv11 (#47481) Co-authored-by: Marcos Marx --- .../connectors/source-e-conomic/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-e-conomic/icon.svg | 8 + .../connectors/source-e-conomic/manifest.yaml | 7032 +++++++++++++++++ .../connectors/source-e-conomic/metadata.yaml | 35 + docs/integrations/sources/e-conomic.md | 57 + 6 files changed, 7182 insertions(+) create mode 100644 airbyte-integrations/connectors/source-e-conomic/README.md create mode 100644 airbyte-integrations/connectors/source-e-conomic/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-e-conomic/icon.svg create mode 100644 airbyte-integrations/connectors/source-e-conomic/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-e-conomic/metadata.yaml create mode 100644 docs/integrations/sources/e-conomic.md diff --git a/airbyte-integrations/connectors/source-e-conomic/README.md b/airbyte-integrations/connectors/source-e-conomic/README.md new file mode 100644 index 000000000000..d7c24953a7d6 --- /dev/null +++ b/airbyte-integrations/connectors/source-e-conomic/README.md @@ -0,0 +1,33 @@ +# e-conomic +This directory contains the manifest-only connector for `source-e-conomic`. + +The Airbyte connector for e-conomic enables seamless integration with the e-conomic accounting platform. It allows users to efficiently extract financial data such as invoices, accounts, customers, and transactions from e-conomic and sync it to your preferred data warehouse or analytics tool. This connector simplifies data flow management, facilitating automated data extraction for comprehensive financial reporting and analysis. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-e-conomic:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-e-conomic build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-e-conomic test +``` + diff --git a/airbyte-integrations/connectors/source-e-conomic/acceptance-test-config.yml b/airbyte-integrations/connectors/source-e-conomic/acceptance-test-config.yml new file mode 100644 index 000000000000..b3d6fda887c7 --- /dev/null +++ b/airbyte-integrations/connectors/source-e-conomic/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-e-conomic:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-e-conomic/icon.svg b/airbyte-integrations/connectors/source-e-conomic/icon.svg new file mode 100644 index 000000000000..7ae093456c55 --- /dev/null +++ b/airbyte-integrations/connectors/source-e-conomic/icon.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/airbyte-integrations/connectors/source-e-conomic/manifest.yaml b/airbyte-integrations/connectors/source-e-conomic/manifest.yaml new file mode 100644 index 000000000000..4cf9f2320160 --- /dev/null +++ b/airbyte-integrations/connectors/source-e-conomic/manifest.yaml @@ -0,0 +1,7032 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + The Airbyte connector for e-conomic enables seamless integration with the + e-conomic accounting platform. It allows users to efficiently extract + financial data such as invoices, accounts, customers, and transactions from + e-conomic and sync it to your preferred data warehouse or analytics tool. This + connector simplifies data flow management, facilitating automated data + extraction for comprehensive financial reporting and analysis. + +check: + type: CheckStream + stream_names: + - accounts + +definitions: + streams: + accounts: + type: DeclarativeStream + name: accounts + primary_key: + - accountNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounts + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + pagination_strategy: + type: PageIncrement + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/accounts" + accounting_years: + type: DeclarativeStream + name: accounting_years + primary_key: + - year + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounting-years + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/accounting_years" + app_roles: + type: DeclarativeStream + name: app_roles + primary_key: + - roleNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /app-roles + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 0 + page_size: 1000 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/app_roles" + currencies: + type: DeclarativeStream + name: currencies + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /currencies + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + pagination_strategy: + type: PageIncrement + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/currencies" + customer_groups: + type: DeclarativeStream + name: customer_groups + primary_key: + - customerGroupNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /customer-groups + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customer_groups" + customers: + type: DeclarativeStream + name: customers + primary_key: + - customerNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /customers + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + pagination_strategy: + type: PageIncrement + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + departmental_distributions: + type: DeclarativeStream + name: departmental_distributions + primary_key: + - departmentalDistributionNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /departmental-distributions + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/departmental_distributions" + departments: + type: DeclarativeStream + name: departments + primary_key: + - departmentNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /departments + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/departments" + employees: + type: DeclarativeStream + name: employees + primary_key: + - employeeNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /employees + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + pagination_strategy: + type: PageIncrement + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/employees" + journals: + type: DeclarativeStream + name: journals + primary_key: + - journalNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /journals + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/journals" + payment_terms: + type: DeclarativeStream + name: payment_terms + primary_key: + - paymentTermsNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /payment-terms + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/payment_terms" + payment_types: + type: DeclarativeStream + name: payment_types + primary_key: + - paymentTypeNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /payment-types + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/payment_types" + product_groups: + type: DeclarativeStream + name: product_groups + primary_key: + - productGroupNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /product-groups + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/product_groups" + products: + type: DeclarativeStream + name: products + primary_key: + - productNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /products + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/products" + draft_quotes: + type: DeclarativeStream + name: draft_quotes + primary_key: + - quoteNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /quotes/drafts + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/draft_quotes" + suppliers: + type: DeclarativeStream + name: suppliers + primary_key: + - supplierNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /suppliers + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/suppliers" + units: + type: DeclarativeStream + name: units + primary_key: + - unitNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /units + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/units" + vat_accounts: + type: DeclarativeStream + name: vat_accounts + primary_key: + - vatCode + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /vat-accounts + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/vat_accounts" + vat_types: + type: DeclarativeStream + name: vat_types + primary_key: + - vatTypeNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /vat-types + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/vat_types" + vat_zones: + type: DeclarativeStream + name: vat_zones + primary_key: + - vatZoneNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /vat-zones + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/vat_zones" + sent_quotes: + type: DeclarativeStream + name: sent_quotes + primary_key: + - quoteNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /quotes/sent + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sent_quotes" + archived_quotes: + type: DeclarativeStream + name: archived_quotes + primary_key: + - quoteNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /quotes/archived + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/archived_quotes" + draft_invoices: + type: DeclarativeStream + name: draft_invoices + primary_key: + - draftInvoiceNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices/drafts + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/draft_invoices" + booked_invoices: + type: DeclarativeStream + name: booked_invoices + primary_key: + - bookedInvoiceNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices/booked + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/booked_invoices" + paid_invoices: + type: DeclarativeStream + name: paid_invoices + primary_key: + - bookedInvoiceNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices/paid + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/paid_invoices" + overdue_invoices: + type: DeclarativeStream + name: overdue_invoices + primary_key: + - bookedInvoiceNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices/overdue + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/overdue_invoices" + unpaid_invoices: + type: DeclarativeStream + name: unpaid_invoices + primary_key: + - bookedInvoiceNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices/unpaid + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/unpaid_invoices" + not_due_invoices: + type: DeclarativeStream + name: not_due_invoices + primary_key: + - bookedInvoiceNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices/not-due + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/not_due_invoices" + total_invoices: + type: DeclarativeStream + name: total_invoices + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices/totals + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/total_invoices" + sent_invoices: + type: DeclarativeStream + name: sent_invoices + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices/sent + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sent_invoices" + draft_orders: + type: DeclarativeStream + name: draft_orders + primary_key: + - orderNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /orders/drafts + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/draft_orders" + sent_orders: + type: DeclarativeStream + name: sent_orders + primary_key: + - orderNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /orders/sent + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sent_orders" + archived_orders: + type: DeclarativeStream + name: archived_orders + primary_key: + - orderNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /orders/archived + http_method: GET + request_headers: + X-AgreementGrantToken: "{{ config[\"agreement_grant_token\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - collection + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: skippages + page_size_option: + type: RequestOption + field_name: page_size + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 0 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/archived_orders" + base_requester: + type: HttpRequester + url_base: https://restapi.e-conomic.com + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"app_secret_token\"] }}" + inject_into: + type: RequestOption + field_name: X-AppSecretToken + inject_into: header + +streams: + - $ref: "#/definitions/streams/accounts" + - $ref: "#/definitions/streams/accounting_years" + - $ref: "#/definitions/streams/app_roles" + - $ref: "#/definitions/streams/currencies" + - $ref: "#/definitions/streams/customer_groups" + - $ref: "#/definitions/streams/customers" + - $ref: "#/definitions/streams/departmental_distributions" + - $ref: "#/definitions/streams/departments" + - $ref: "#/definitions/streams/employees" + - $ref: "#/definitions/streams/journals" + - $ref: "#/definitions/streams/payment_terms" + - $ref: "#/definitions/streams/payment_types" + - $ref: "#/definitions/streams/product_groups" + - $ref: "#/definitions/streams/products" + - $ref: "#/definitions/streams/draft_quotes" + - $ref: "#/definitions/streams/suppliers" + - $ref: "#/definitions/streams/units" + - $ref: "#/definitions/streams/vat_accounts" + - $ref: "#/definitions/streams/vat_types" + - $ref: "#/definitions/streams/vat_zones" + - $ref: "#/definitions/streams/sent_quotes" + - $ref: "#/definitions/streams/archived_quotes" + - $ref: "#/definitions/streams/draft_invoices" + - $ref: "#/definitions/streams/booked_invoices" + - $ref: "#/definitions/streams/paid_invoices" + - $ref: "#/definitions/streams/overdue_invoices" + - $ref: "#/definitions/streams/unpaid_invoices" + - $ref: "#/definitions/streams/not_due_invoices" + - $ref: "#/definitions/streams/total_invoices" + - $ref: "#/definitions/streams/sent_invoices" + - $ref: "#/definitions/streams/draft_orders" + - $ref: "#/definitions/streams/sent_orders" + - $ref: "#/definitions/streams/archived_orders" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - app_secret_token + - agreement_grant_token + properties: + app_secret_token: + type: string + description: >- + Your private token that identifies your app. Find it in your e-conomic + account settings. + name: app_secret_token + order: 0 + title: App Secret Token + airbyte_secret: true + agreement_grant_token: + type: string + description: >- + Token that identifies the grant issued by an agreement, allowing your + app to access data. Obtain it from your e-conomic account settings. + name: agreement_grant_token + order: 1 + title: Agreement Grant Token + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + accounts: true + accounting_years: true + app_roles: true + currencies: true + customer_groups: true + customers: true + departmental_distributions: true + departments: true + employees: true + journals: true + payment_terms: true + payment_types: true + product_groups: true + products: true + draft_quotes: true + suppliers: true + units: true + vat_accounts: true + vat_types: true + vat_zones: true + sent_quotes: true + archived_quotes: true + draft_invoices: true + booked_invoices: true + paid_invoices: true + overdue_invoices: true + unpaid_invoices: true + not_due_invoices: true + total_invoices: true + sent_invoices: true + draft_orders: true + sent_orders: true + archived_orders: true + testedStreams: + accounts: + streamHash: 6a371091607a986dca813986d16550c09796b415 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + accounting_years: + streamHash: e35ac7344fe85423f7234037f3ed7749ac9a2fe4 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + app_roles: + streamHash: faa17330b5271e80f45fbc2e0a332e9a9bf9edf1 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + currencies: + streamHash: e443e91efc903cf7710924c1735986d7440a6d39 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + customer_groups: + streamHash: 1b6df748b66eee85b8d393a464c9c1a691fd67a3 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + customers: + streamHash: 83b089497ee6a436e14b36c49fba56e943f9ebf8 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + departmental_distributions: + streamHash: 0f2cb5c746e7893b09e879960cbf771260ea02e4 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + departments: + streamHash: 2eb947e493f69fdd2b782f7086b7e00452ff7d4b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + employees: + streamHash: 8ab6eb85a94cb55800699aee9bc1cdb4423a0aac + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + journals: + hasRecords: true + streamHash: 17082ac31ac7ae4042e435352ea51f67df66811b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + payment_terms: + hasRecords: true + streamHash: 80678e3509f1b7807160bbed2eb46a36a96dcfec + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + payment_types: + hasRecords: true + streamHash: 647ace19e558c93db93df03a718ce0bbd86c68bd + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + product_groups: + hasRecords: true + streamHash: ffba46fa0aaeb9c4b524d03144c35525bd5d3a66 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + products: + hasRecords: true + streamHash: 1c22486b1ecc86dc4d93eb3d07a3df120a0ee2b0 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + draft_quotes: + hasRecords: true + streamHash: 661b079c0d711e505664ac00305c558dfe3f85da + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + suppliers: + hasRecords: true + streamHash: 9b870e076ec25245410e1b8c41e5360cd314c767 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + units: + hasRecords: true + streamHash: 927ee6a8e8b4c495fbb1d3a0f875024927b8bc3e + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + vat_accounts: + hasRecords: true + streamHash: d648c65212720ae7566dcaf6490aa8c77819e727 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + vat_types: + streamHash: da01a6fe5788c9691bff4162a84d8e1e582cae71 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + vat_zones: + hasRecords: true + streamHash: 0fa9e2e89ec6c86e0b25ad8b9d0119cd783845b4 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + sent_quotes: + hasRecords: true + streamHash: e699b8627cfebb701e67e0a0ab7224cc14409c08 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + archived_quotes: + hasRecords: true + streamHash: 34390dc5c1a7930c2f853b6f5a5368a975064587 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + draft_invoices: + hasRecords: true + streamHash: 81fdb385e3ec7784cc651f02538d73f663ac8a12 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + booked_invoices: + hasRecords: true + streamHash: 3dbe9119db1773a399c68ab03a3a7e46451271c5 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + paid_invoices: + hasRecords: true + streamHash: c2def7996a523fdd39d61321ee95fda20aef5fa2 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + overdue_invoices: + hasRecords: true + streamHash: d28ffc6647c9573fc9674463a27f53a2fece5644 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + unpaid_invoices: + hasRecords: true + streamHash: 7f130cdbb35c2979359ccf682b34048a7a7c076d + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + not_due_invoices: + hasRecords: true + streamHash: e95ee49bc140964d503705fa50a061f6729efa6c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + total_invoices: + hasRecords: true + streamHash: 4a4609ed6304e3bb96bc939414e4de1674db58b1 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + sent_invoices: + hasRecords: true + streamHash: 1aa39528ce530e5c8457cc2b86a069d46aa65752 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + draft_orders: + hasRecords: true + streamHash: 02a8e3b65f4fa0c2dd3b7c24ebc02e68983522ad + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + sent_orders: + hasRecords: true + streamHash: 5f5d474a1f2867069de0ff0e7b537813ddcde6c2 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + archived_orders: + hasRecords: true + streamHash: e855cf3c70f39c24492ebac8549babf73f781603 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://restdocs.e-conomic.com/ + +schemas: + accounts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accountNumber: + type: number + accountType: + type: + - string + - "null" + accountingYears: + type: + - string + - "null" + balance: + type: + - number + - "null" + blockDirectEntries: + type: + - boolean + - "null" + debitCredit: + type: + - string + - "null" + department: + type: + - object + - "null" + properties: + departmentNumber: + type: + - number + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + departmentalDistribution: + type: + - object + - "null" + properties: + departmentalDistributionNumber: + type: + - number + - "null" + distributionType: + type: + - string + - "null" + self: + type: + - string + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + totalFromAccount: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + vatAccount: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatCode: + type: + - string + - "null" + required: + - accountNumber + accounting_years: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + entries: + type: + - string + - "null" + fromDate: + type: + - string + - "null" + periods: + type: + - string + - "null" + self: + type: + - string + - "null" + toDate: + type: + - string + - "null" + totals: + type: + - string + - "null" + vouchers: + type: + - string + - "null" + year: + type: string + required: + - year + app_roles: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + name: + type: + - string + - "null" + requiredModules: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + moduleNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + roleNumber: + type: number + required: + - roleNumber + currencies: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + code: + type: string + isoNumber: + type: + - string + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + required: + - code + customer_groups: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + account: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + accountType: + type: + - string + - "null" + accountingYears: + type: + - string + - "null" + balance: + type: + - number + - "null" + blockDirectEntries: + type: + - boolean + - "null" + debitCredit: + type: + - string + - "null" + name: + type: + - string + - "null" + openingAccount: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + self: + type: + - string + - "null" + customerGroupNumber: + type: number + customers: + type: + - string + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + required: + - customerGroupNumber + customers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + balance: + type: + - number + - "null" + barred: + type: + - boolean + - "null" + city: + type: + - string + - "null" + contacts: + type: + - string + - "null" + corporateIdentificationNumber: + type: + - string + - "null" + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + customerContact: + type: + - object + - "null" + properties: + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerGroup: + type: + - object + - "null" + properties: + customerGroupNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerNumber: + type: number + defaultDeliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + deliveryLocations: + type: + - string + - "null" + dueAmount: + type: + - number + - "null" + eInvoicingDisabledByDefault: + type: + - boolean + - "null" + ean: + type: + - string + - "null" + email: + type: + - string + - "null" + invoices: + type: + - object + - "null" + properties: + booked: + type: + - string + - "null" + drafts: + type: + - string + - "null" + self: + type: + - string + - "null" + lastUpdated: + type: + - string + - "null" + mobilePhone: + type: + - string + - "null" + name: + type: + - string + - "null" + paymentTerms: + type: + - object + - "null" + properties: + paymentTermsNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + self: + type: + - string + - "null" + telephoneAndFaxNumber: + type: + - string + - "null" + templates: + type: + - object + - "null" + properties: + invoice: + type: + - string + - "null" + invoiceLine: + type: + - string + - "null" + self: + type: + - string + - "null" + totals: + type: + - object + - "null" + properties: + booked: + type: + - string + - "null" + drafts: + type: + - string + - "null" + self: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + required: + - customerNumber + departmental_distributions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + barred: + type: + - boolean + - "null" + departmentalDistributionNumber: + type: number + distributionType: + type: + - string + - "null" + distributions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + department: + type: + - object + - "null" + properties: + departmentNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + percentage: + type: + - number + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + required: + - departmentalDistributionNumber + departments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + barred: + type: + - boolean + - "null" + departmentNumber: + type: number + name: + type: + - string + - "null" + self: + type: + - string + - "null" + required: + - departmentNumber + employees: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + barred: + type: + - boolean + - "null" + bookedInvoices: + type: + - string + - "null" + customers: + type: + - string + - "null" + draftInvoices: + type: + - string + - "null" + email: + type: + - string + - "null" + employeeGroup: + type: + - object + - "null" + properties: + employeeGroupNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + employeeNumber: + type: number + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + self: + type: + - string + - "null" + required: + - employeeNumber + journals: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + entries: + type: + - string + - "null" + journalNumber: + type: number + name: + type: + - string + - "null" + self: + type: + - string + - "null" + settings: + type: + - object + - "null" + properties: + contraAccounts: + type: + - object + - "null" + properties: + customerPayments: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + entryTypeRestrictedTo: + type: + - string + - "null" + voucherNumbers: + type: + - object + - "null" + properties: + minimumVoucherNumber: + type: + - number + - "null" + templates: + type: + - object + - "null" + properties: + financeVoucher: + type: + - string + - "null" + manualCustomerInvoice: + type: + - string + - "null" + self: + type: + - string + - "null" + vouchers: + type: + - string + - "null" + required: + - journalNumber + payment_terms: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + contraAccountForPrepaidAmount: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + creditCardCompany: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: number + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + required: + - paymentTermsNumber + payment_types: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + name: + type: + - string + - "null" + paymentTypeNumber: + type: number + self: + type: + - string + - "null" + required: + - paymentTypeNumber + product_groups: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accrual: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + accountType: + type: + - string + - "null" + accountingYears: + type: + - string + - "null" + balance: + type: + - number + - "null" + blockDirectEntries: + type: + - boolean + - "null" + debitCredit: + type: + - string + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatAccount: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatCode: + type: + - string + - "null" + name: + type: + - string + - "null" + productGroupNumber: + type: number + products: + type: + - string + - "null" + salesAccounts: + type: + - string + - "null" + self: + type: + - string + - "null" + required: + - productGroupNumber + products: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + barCode: + type: + - string + - "null" + barred: + type: + - boolean + - "null" + costPrice: + type: + - number + - "null" + invoices: + type: + - object + - "null" + properties: + booked: + type: + - string + - "null" + drafts: + type: + - string + - "null" + self: + type: + - string + - "null" + lastUpdated: + type: + - string + - "null" + minimumStock: + type: + - number + - "null" + name: + type: + - string + - "null" + pricing: + type: + - object + - "null" + properties: + currencySpecificSalesPrices: + type: + - string + - "null" + productGroup: + type: + - object + - "null" + properties: + accrual: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + accountType: + type: + - string + - "null" + accountingYears: + type: + - string + - "null" + balance: + type: + - number + - "null" + blockDirectEntries: + type: + - boolean + - "null" + debitCredit: + type: + - string + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatAccount: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatCode: + type: + - string + - "null" + name: + type: + - string + - "null" + productGroupNumber: + type: + - number + - "null" + products: + type: + - string + - "null" + salesAccounts: + type: + - string + - "null" + self: + type: + - string + - "null" + productNumber: + type: string + recommendedPrice: + type: + - number + - "null" + salesPrice: + type: + - number + - "null" + self: + type: + - string + - "null" + unit: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + products: + type: + - string + - "null" + self: + type: + - string + - "null" + unitNumber: + type: + - number + - "null" + required: + - productNumber + draft_quotes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attachment: + type: + - string + - "null" + costPriceInBaseCurrency: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + lastUpdated: + type: + - string + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + lines: + type: + - array + - "null" + marginInBaseCurrency: + type: + - number + - "null" + marginPercentage: + type: + - number + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + orderNumberDb: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + quoteNumber: + type: number + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + cvr: + type: + - string + - "null" + ean: + type: + - string + - "null" + mobilePhone: + type: + - string + - "null" + name: + type: + - string + - "null" + nemHandelType: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + roundingAmount: + type: + - number + - "null" + salesDocumentType: + type: + - string + - "null" + self: + type: + - string + - "null" + soap: + type: + - object + - "null" + properties: + quoteHandle: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + templates: + type: + - object + - "null" + properties: + draftInvoiceUpgradeInstructions: + type: + - string + - "null" + orderUpgradeInstructions: + type: + - string + - "null" + self: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - quoteNumber + suppliers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + number: + type: + - number + - "null" + self: + type: + - string + - "null" + bankAccount: + type: + - string + - "null" + city: + type: + - string + - "null" + contacts: + type: + - string + - "null" + costAccount: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + defaultInvoiceText: + type: + - string + - "null" + email: + type: + - string + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + metaData: + type: + - object + - "null" + properties: + delete: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + href: + type: + - string + - "null" + httpMethod: + type: + - string + - "null" + name: + type: + - string + - "null" + paymentTerms: + type: + - object + - "null" + properties: + paymentTermsNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + phone: + type: + - string + - "null" + remittanceAdvice: + type: + - object + - "null" + properties: + creditorId: + type: + - string + - "null" + paymentType: + type: + - object + - "null" + properties: + paymentTypeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + self: + type: + - string + - "null" + supplierContact: + type: + - object + - "null" + properties: + number: + type: + - number + - "null" + self: + type: + - string + - "null" + supplierGroup: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + supplierGroupNumber: + type: + - number + - "null" + supplierNumber: + type: number + vatZone: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + required: + - supplierNumber + units: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + name: + type: + - string + - "null" + products: + type: + - string + - "null" + self: + type: + - string + - "null" + unitNumber: + type: number + required: + - unitNumber + vat_accounts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + account: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + contraAccount: + type: + - object + - "null" + properties: + accountNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + name: + type: + - string + - "null" + ratePercentage: + type: + - number + - "null" + self: + type: + - string + - "null" + vatCode: + type: string + vatType: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatTypeNumber: + type: + - number + - "null" + required: + - vatCode + vat_types: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatTypeNumber: + type: number + required: + - vatTypeNumber + vat_zones: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + enabledForCustomer: + type: + - boolean + - "null" + enabledForSupplier: + type: + - boolean + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatZoneNumber: + type: number + required: + - vatZoneNumber + sent_quotes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attachment: + type: + - string + - "null" + costPriceInBaseCurrency: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + lastUpdated: + type: + - string + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + lines: + type: + - array + - "null" + marginInBaseCurrency: + type: + - number + - "null" + marginPercentage: + type: + - number + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + orderNumberDb: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + quoteNumber: + type: number + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + cvr: + type: + - string + - "null" + ean: + type: + - string + - "null" + mobilePhone: + type: + - string + - "null" + name: + type: + - string + - "null" + nemHandelType: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + roundingAmount: + type: + - number + - "null" + salesDocumentType: + type: + - string + - "null" + self: + type: + - string + - "null" + soap: + type: + - object + - "null" + properties: + quoteHandle: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + templates: + type: + - object + - "null" + properties: + draftInvoiceUpgradeInstructions: + type: + - string + - "null" + orderUpgradeInstructions: + type: + - string + - "null" + self: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - quoteNumber + archived_quotes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attachment: + type: + - string + - "null" + costPriceInBaseCurrency: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + lastUpdated: + type: + - string + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + lines: + type: + - array + - "null" + marginInBaseCurrency: + type: + - number + - "null" + marginPercentage: + type: + - number + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + orderNumberDb: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + quoteNumber: + type: number + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + cvr: + type: + - string + - "null" + ean: + type: + - string + - "null" + mobilePhone: + type: + - string + - "null" + name: + type: + - string + - "null" + nemHandelType: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + roundingAmount: + type: + - number + - "null" + salesDocumentType: + type: + - string + - "null" + self: + type: + - string + - "null" + soap: + type: + - object + - "null" + properties: + quoteHandle: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + templates: + type: + - object + - "null" + properties: + draftInvoiceUpgradeInstructions: + type: + - string + - "null" + orderUpgradeInstructions: + type: + - string + - "null" + self: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - quoteNumber + draft_invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attachment: + type: + - string + - "null" + costPriceInBaseCurrency: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + draftInvoiceNumber: + type: number + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + lastUpdated: + type: + - string + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + marginInBaseCurrency: + type: + - number + - "null" + marginPercentage: + type: + - number + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + notes: + type: + - object + - "null" + properties: + heading: + type: + - string + - "null" + textLine1: + type: + - string + - "null" + textLine2: + type: + - string + - "null" + orderNumberDb: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + project: + type: + - object + - "null" + properties: + projectNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + cvr: + type: + - string + - "null" + ean: + type: + - string + - "null" + mobilePhone: + type: + - string + - "null" + name: + type: + - string + - "null" + nemHandelType: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + enabledForCustomer: + type: + - boolean + - "null" + enabledForSupplier: + type: + - boolean + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + other: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + vendorReference: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + roundingAmount: + type: + - number + - "null" + self: + type: + - string + - "null" + soap: + type: + - object + - "null" + properties: + currentInvoiceHandle: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + templates: + type: + - object + - "null" + properties: + bookingInstructions: + type: + - string + - "null" + self: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - draftInvoiceNumber + booked_invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + bookedInvoiceNumber: + type: number + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + notes: + type: + - object + - "null" + properties: + heading: + type: + - string + - "null" + textLine1: + type: + - string + - "null" + textLine2: + type: + - string + - "null" + orderNumber: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + project: + type: + - object + - "null" + properties: + projectNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + ean: + type: + - string + - "null" + name: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + enabledForCustomer: + type: + - boolean + - "null" + enabledForSupplier: + type: + - boolean + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + remainder: + type: + - number + - "null" + remainderInBaseCurrency: + type: + - number + - "null" + roundingAmount: + type: + - number + - "null" + self: + type: + - string + - "null" + sent: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - bookedInvoiceNumber + paid_invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + bookedInvoiceNumber: + type: number + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + notes: + type: + - object + - "null" + properties: + heading: + type: + - string + - "null" + orderNumber: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + project: + type: + - object + - "null" + properties: + projectNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + ean: + type: + - string + - "null" + name: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + enabledForCustomer: + type: + - boolean + - "null" + enabledForSupplier: + type: + - boolean + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + remainder: + type: + - number + - "null" + remainderInBaseCurrency: + type: + - number + - "null" + roundingAmount: + type: + - number + - "null" + self: + type: + - string + - "null" + sent: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - bookedInvoiceNumber + overdue_invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + bookedInvoiceNumber: + type: number + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + notes: + type: + - object + - "null" + properties: + heading: + type: + - string + - "null" + textLine1: + type: + - string + - "null" + textLine2: + type: + - string + - "null" + orderNumber: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + project: + type: + - object + - "null" + properties: + projectNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + ean: + type: + - string + - "null" + name: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + enabledForCustomer: + type: + - boolean + - "null" + enabledForSupplier: + type: + - boolean + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + remainder: + type: + - number + - "null" + remainderInBaseCurrency: + type: + - number + - "null" + roundingAmount: + type: + - number + - "null" + self: + type: + - string + - "null" + sent: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - bookedInvoiceNumber + unpaid_invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + bookedInvoiceNumber: + type: number + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + notes: + type: + - object + - "null" + properties: + heading: + type: + - string + - "null" + textLine1: + type: + - string + - "null" + textLine2: + type: + - string + - "null" + orderNumber: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + project: + type: + - object + - "null" + properties: + projectNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + ean: + type: + - string + - "null" + name: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + enabledForCustomer: + type: + - boolean + - "null" + enabledForSupplier: + type: + - boolean + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + remainder: + type: + - number + - "null" + remainderInBaseCurrency: + type: + - number + - "null" + roundingAmount: + type: + - number + - "null" + self: + type: + - string + - "null" + sent: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - bookedInvoiceNumber + not_due_invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + bookedInvoiceNumber: + type: number + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + notes: + type: + - object + - "null" + properties: + heading: + type: + - string + - "null" + textLine1: + type: + - string + - "null" + textLine2: + type: + - string + - "null" + orderNumber: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + project: + type: + - object + - "null" + properties: + projectNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + ean: + type: + - string + - "null" + name: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + enabledForCustomer: + type: + - boolean + - "null" + enabledForSupplier: + type: + - boolean + - "null" + name: + type: + - string + - "null" + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + remainder: + type: + - number + - "null" + remainderInBaseCurrency: + type: + - number + - "null" + roundingAmount: + type: + - number + - "null" + self: + type: + - string + - "null" + sent: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - bookedInvoiceNumber + total_invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + booked: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + invoiceCount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + paid: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + grossRemainderInBaseCurrency: + type: + - number + - "null" + invoiceCount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + self: + type: + - string + - "null" + self: + type: + - string + - "null" + unpaid: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + grossRemainderInBaseCurrency: + type: + - number + - "null" + invoiceCount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + notOverdue: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + invoiceCount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + self: + type: + - string + - "null" + overdue: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + grossRemainderInBaseCurrency: + type: + - number + - "null" + invoiceCount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + self: + type: + - string + - "null" + self: + type: + - string + - "null" + drafts: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + invoiceCount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + self: + type: + - string + - "null" + predefinedPeriodFilters: + type: + - object + - "null" + properties: + lastFifteenDays: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + self: + type: + - string + - "null" + lastMonth: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + self: + type: + - string + - "null" + lastSevenDays: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + self: + type: + - string + - "null" + lastThirtyDays: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + self: + type: + - string + - "null" + lastWeek: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + self: + type: + - string + - "null" + lastYear: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + self: + type: + - string + - "null" + thisMonth: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + self: + type: + - string + - "null" + thisWeek: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + self: + type: + - string + - "null" + thisYear: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + self: + type: + - string + - "null" + self: + type: + - string + - "null" + sent_invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + createdBy: + type: + - string + - "null" + creationDate: + type: + - string + - "null" + id: + type: number + invoice: + type: + - object + - "null" + properties: + bookedInvoiceNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + ean: + type: + - string + - "null" + self: + type: + - string + - "null" + sentBy: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + draft_orders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attachment: + type: + - string + - "null" + costPriceInBaseCurrency: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + lastUpdated: + type: + - string + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + lines: + type: + - array + - "null" + marginInBaseCurrency: + type: + - number + - "null" + marginPercentage: + type: + - number + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + orderNumber: + type: number + orderNumberDb: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + mobilePhone: + type: + - string + - "null" + name: + type: + - string + - "null" + nemHandelType: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + roundingAmount: + type: + - number + - "null" + salesDocumentType: + type: + - string + - "null" + self: + type: + - string + - "null" + soap: + type: + - object + - "null" + properties: + orderHandle: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + templates: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + upgradeInstructions: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - orderNumber + sent_orders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attachment: + type: + - string + - "null" + costPriceInBaseCurrency: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + lastUpdated: + type: + - string + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + lines: + type: + - array + - "null" + marginInBaseCurrency: + type: + - number + - "null" + marginPercentage: + type: + - number + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + orderNumber: + type: number + orderNumberDb: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + mobilePhone: + type: + - string + - "null" + name: + type: + - string + - "null" + nemHandelType: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + roundingAmount: + type: + - number + - "null" + salesDocumentType: + type: + - string + - "null" + self: + type: + - string + - "null" + soap: + type: + - object + - "null" + properties: + orderHandle: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + templates: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + upgradeInstructions: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - orderNumber + archived_orders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attachment: + type: + - string + - "null" + costPriceInBaseCurrency: + type: + - number + - "null" + currency: + type: + - string + - "null" + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + date: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + zip: + type: + - string + - "null" + deliveryLocation: + type: + - object + - "null" + properties: + deliveryLocationNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + exchangeRate: + type: + - number + - "null" + grossAmount: + type: + - number + - "null" + grossAmountInBaseCurrency: + type: + - number + - "null" + lastUpdated: + type: + - string + - "null" + layout: + type: + - object + - "null" + properties: + layoutNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + lines: + type: + - array + - "null" + marginInBaseCurrency: + type: + - number + - "null" + marginPercentage: + type: + - number + - "null" + netAmount: + type: + - number + - "null" + netAmountInBaseCurrency: + type: + - number + - "null" + orderNumber: + type: number + orderNumberDb: + type: + - number + - "null" + paymentTerms: + type: + - object + - "null" + properties: + description: + type: + - string + - "null" + daysOfCredit: + type: + - number + - "null" + name: + type: + - string + - "null" + paymentTermsNumber: + type: + - number + - "null" + paymentTermsType: + type: + - string + - "null" + self: + type: + - string + - "null" + pdf: + type: + - object + - "null" + properties: + download: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - object + - "null" + properties: + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + mobilePhone: + type: + - string + - "null" + name: + type: + - string + - "null" + nemHandelType: + type: + - string + - "null" + vatZone: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + vatZoneNumber: + type: + - number + - "null" + zip: + type: + - string + - "null" + references: + type: + - object + - "null" + properties: + customerContact: + type: + - object + - "null" + properties: + customer: + type: + - object + - "null" + properties: + customerNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + customerContactNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + salesPerson: + type: + - object + - "null" + properties: + employeeNumber: + type: + - number + - "null" + self: + type: + - string + - "null" + roundingAmount: + type: + - number + - "null" + salesDocumentType: + type: + - string + - "null" + self: + type: + - string + - "null" + soap: + type: + - object + - "null" + properties: + orderHandle: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + templates: + type: + - object + - "null" + properties: + self: + type: + - string + - "null" + upgradeInstructions: + type: + - string + - "null" + vatAmount: + type: + - number + - "null" + required: + - orderNumber diff --git a/airbyte-integrations/connectors/source-e-conomic/metadata.yaml b/airbyte-integrations/connectors/source-e-conomic/metadata.yaml new file mode 100644 index 000000000000..81e1b93074b8 --- /dev/null +++ b/airbyte-integrations/connectors/source-e-conomic/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "restapi.e-conomic.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-e-conomic + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 2724ccae-2503-4348-9f1c-b5645b54a985 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-e-conomic + githubIssueLabel: source-e-conomic + icon: icon.svg + license: MIT + name: e-conomic + releaseDate: 2024-10-28 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/e-conomic + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/e-conomic.md b/docs/integrations/sources/e-conomic.md new file mode 100644 index 000000000000..5c7046a6cab9 --- /dev/null +++ b/docs/integrations/sources/e-conomic.md @@ -0,0 +1,57 @@ +# e-conomic +The Airbyte connector for e-conomic enables seamless integration with the e-conomic accounting platform. It allows users to efficiently extract financial data such as invoices, accounts, customers, and transactions from e-conomic and sync it to your preferred data warehouse or analytics tool. This connector simplifies data flow management, facilitating automated data extraction for comprehensive financial reporting and analysis. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `app_secret_token` | `string` | App Secret Token. Your private token that identifies your app. Find it in your e-conomic account settings. | | +| `agreement_grant_token` | `string` | Agreement Grant Token. Token that identifies the grant issued by an agreement, allowing your app to access data. Obtain it from your e-conomic account settings. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| accounts | accountNumber | DefaultPaginator | ✅ | ❌ | +| accounting_years | year | DefaultPaginator | ✅ | ❌ | +| app_roles | roleNumber | DefaultPaginator | ✅ | ❌ | +| currencies | code | DefaultPaginator | ✅ | ❌ | +| customer_groups | customerGroupNumber | DefaultPaginator | ✅ | ❌ | +| customers | customerNumber | DefaultPaginator | ✅ | ❌ | +| departmental_distributions | departmentalDistributionNumber | DefaultPaginator | ✅ | ❌ | +| departments | departmentNumber | DefaultPaginator | ✅ | ❌ | +| employees | employeeNumber | DefaultPaginator | ✅ | ❌ | +| journals | journalNumber | DefaultPaginator | ✅ | ❌ | +| payment_terms | paymentTermsNumber | DefaultPaginator | ✅ | ❌ | +| payment_types | paymentTypeNumber | DefaultPaginator | ✅ | ❌ | +| product_groups | productGroupNumber | DefaultPaginator | ✅ | ❌ | +| products | productNumber | DefaultPaginator | ✅ | ❌ | +| draft_quotes | quoteNumber | DefaultPaginator | ✅ | ❌ | +| suppliers | supplierNumber | DefaultPaginator | ✅ | ❌ | +| units | unitNumber | DefaultPaginator | ✅ | ❌ | +| vat_accounts | vatCode | DefaultPaginator | ✅ | ❌ | +| vat_types | vatTypeNumber | DefaultPaginator | ✅ | ❌ | +| vat_zones | vatZoneNumber | DefaultPaginator | ✅ | ❌ | +| sent_quotes | quoteNumber | DefaultPaginator | ✅ | ❌ | +| archived_quotes | quoteNumber | DefaultPaginator | ✅ | ❌ | +| draft_invoices | draftInvoiceNumber | DefaultPaginator | ✅ | ❌ | +| booked_invoices | bookedInvoiceNumber | DefaultPaginator | ✅ | ❌ | +| paid_invoices | bookedInvoiceNumber | DefaultPaginator | ✅ | ❌ | +| overdue_invoices | bookedInvoiceNumber | DefaultPaginator | ✅ | ❌ | +| unpaid_invoices | bookedInvoiceNumber | DefaultPaginator | ✅ | ❌ | +| not_due_invoices | bookedInvoiceNumber | DefaultPaginator | ✅ | ❌ | +| total_invoices | | DefaultPaginator | ✅ | ❌ | +| sent_invoices | id | DefaultPaginator | ✅ | ❌ | +| draft_orders | orderNumber | DefaultPaginator | ✅ | ❌ | +| sent_orders | orderNumber | DefaultPaginator | ✅ | ❌ | +| archived_orders | orderNumber | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-28 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From 249b79923ece56aea4c4048a937a3b33d33124ac Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Tue, 5 Nov 2024 01:33:16 +0530 Subject: [PATCH 559/808] source-eventee contribution from parthiv11 (#47486) --- .../connectors/source-eventee/README.md | 33 + .../source-eventee/acceptance-test-config.yml | 17 + .../connectors/source-eventee/icon.svg | 12 + .../connectors/source-eventee/manifest.yaml | 1035 +++++++++++++++++ .../connectors/source-eventee/metadata.yaml | 35 + docs/integrations/sources/eventee.md | 32 + 6 files changed, 1164 insertions(+) create mode 100644 airbyte-integrations/connectors/source-eventee/README.md create mode 100644 airbyte-integrations/connectors/source-eventee/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-eventee/icon.svg create mode 100644 airbyte-integrations/connectors/source-eventee/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-eventee/metadata.yaml create mode 100644 docs/integrations/sources/eventee.md diff --git a/airbyte-integrations/connectors/source-eventee/README.md b/airbyte-integrations/connectors/source-eventee/README.md new file mode 100644 index 000000000000..dd4db49111d9 --- /dev/null +++ b/airbyte-integrations/connectors/source-eventee/README.md @@ -0,0 +1,33 @@ +# Eventee +This directory contains the manifest-only connector for `source-eventee`. + +The Airbyte connector for Eventee enables seamless integration and automated data synchronization between Eventee, a leading event management platform, and your data destinations. It extracts and transfers event-related information such as attendee details, lectures, tracks, and more. This connector ensures real-time or scheduled data flow, helping you centralize and analyze Eventee's data effortlessly for improved event insights and reporting. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-eventee:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-eventee build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-eventee test +``` + diff --git a/airbyte-integrations/connectors/source-eventee/acceptance-test-config.yml b/airbyte-integrations/connectors/source-eventee/acceptance-test-config.yml new file mode 100644 index 000000000000..a3c6567297e9 --- /dev/null +++ b/airbyte-integrations/connectors/source-eventee/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-eventee:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-eventee/icon.svg b/airbyte-integrations/connectors/source-eventee/icon.svg new file mode 100644 index 000000000000..64539a46ed84 --- /dev/null +++ b/airbyte-integrations/connectors/source-eventee/icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-eventee/manifest.yaml b/airbyte-integrations/connectors/source-eventee/manifest.yaml new file mode 100644 index 000000000000..0305f8976596 --- /dev/null +++ b/airbyte-integrations/connectors/source-eventee/manifest.yaml @@ -0,0 +1,1035 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + The Airbyte connector for Eventee enables seamless integration and automated + data synchronization between Eventee, a leading event management platform, and + your data destinations. It extracts and transfers event-related information + such as attendee details, lectures, tracks, and more. This connector ensures + real-time or scheduled data flow, helping you centralize and analyze Eventee's + data effortlessly for improved event insights and reporting. + +check: + type: CheckStream + stream_names: + - halls + +definitions: + streams: + halls: + type: DeclarativeStream + name: halls + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /content + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - halls + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/halls" + days: + type: DeclarativeStream + name: days + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /content + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - days + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/days" + lectures: + type: DeclarativeStream + name: lectures + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /content + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - lectures + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/lectures" + speakers: + type: DeclarativeStream + name: speakers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /content + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - speakers + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/speakers" + workshops: + type: DeclarativeStream + name: workshops + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /content + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - workshops + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/workshops" + pauses: + type: DeclarativeStream + name: pauses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /content + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - pauses + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/pauses" + tracks: + type: DeclarativeStream + name: tracks + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /content + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - tracks + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tracks" + partners: + type: DeclarativeStream + name: partners + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /partners + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/partners" + participants: + type: DeclarativeStream + name: participants + primary_key: + - email + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /participants + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/participants" + base_requester: + type: HttpRequester + url_base: https://api.eventee.co/public/v1 + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_token\"] }}" + +streams: + - $ref: "#/definitions/streams/halls" + - $ref: "#/definitions/streams/days" + - $ref: "#/definitions/streams/lectures" + - $ref: "#/definitions/streams/speakers" + - $ref: "#/definitions/streams/workshops" + - $ref: "#/definitions/streams/pauses" + - $ref: "#/definitions/streams/tracks" + - $ref: "#/definitions/streams/partners" + - $ref: "#/definitions/streams/participants" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_token + properties: + api_token: + type: string + description: >- + API token to use. Generate it at https://admin.eventee.co/ in + 'Settings -> Features'. + name: api_token + order: 0 + title: API Token + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + halls: true + days: true + lectures: true + speakers: true + workshops: true + pauses: true + tracks: true + partners: false + participants: false + testedStreams: + halls: + hasRecords: true + streamHash: e14467f04497713244238dd3d1dcf4698c47349a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + days: + streamHash: 2cdccce2f95e890913399fd07ad7bdea48460b1e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + lectures: + hasRecords: true + streamHash: e5b518d8ab07258cb9b8703e8ccccfcc722e99b0 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + speakers: + streamHash: 6f03a172b1fa1bc70e5a2b6237a9dc0e70139246 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + workshops: + streamHash: f512a236b799a2ae88bb52c7613086e305c289d7 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + pauses: + streamHash: e9f7eb51fab59c7bd0e79c9317a7d2d2f2b966ac + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + tracks: + streamHash: 0750e28cba1c73599df78ecfb7edf0aaebb90693 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + partners: + streamHash: 2af8d537faba2c32e9e34223881948350b08a063 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + participants: + streamHash: 4fe776b5dfcacd254ebfdb2363705671a2be6f5d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://publiceventeeapi.docs.apiary.io/ + +schemas: + halls: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + event_id: + type: + - number + - "null" + id: + type: number + name: + type: + - string + - "null" + order: + type: + - number + - "null" + stream: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + available: + type: + - boolean + - "null" + code: + type: + - string + - "null" + created_at: + type: + - string + - "null" + is_live: + type: + - boolean + - "null" + streamable_id: + type: + - number + - "null" + streamable_type: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + url: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + required: + - id + days: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + content_url: + type: + - string + - "null" + date: + type: + - string + - "null" + event_id: + type: + - number + - "null" + id: + type: number + required: + - id + lectures: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - number + - "null" + description: + type: + - string + - "null" + available: + type: + - number + - "null" + booked: + type: + - boolean + - "null" + booking_info: + type: + - array + - "null" + capacity: + type: + - number + - "null" + code: + type: + - string + - "null" + created_at: + type: + - string + - "null" + discussion: + type: + - number + - "null" + end: + type: + - string + - "null" + event_day_id: + type: + - number + - "null" + event_id: + type: + - number + - "null" + files: + type: + - array + - "null" + hall_id: + type: + - number + - "null" + id: + type: number + laravel_through_key: + type: + - number + - "null" + mentoring: + type: + - boolean + - "null" + moderating: + type: + - boolean + - "null" + name: + type: + - string + - "null" + overlapping: + type: + - boolean + - "null" + panel_discussion: + type: + - number + - "null" + polling: + type: + - boolean + - "null" + qr_code_url: + type: + - string + - "null" + speakers: + type: + - array + - "null" + items: + type: + - number + - "null" + start: + type: + - string + - "null" + tracks: + type: + - array + - "null" + updated_at: + type: + - string + - "null" + required: + - id + speakers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + bio: + type: + - string + - "null" + bio_html: + type: + - string + - "null" + company: + type: + - string + - "null" + country: + type: + - string + - "null" + email: + type: + - string + - "null" + event_id: + type: + - number + - "null" + facebook: + type: + - string + - "null" + id: + type: number + instagram: + type: + - string + - "null" + language: + type: + - string + - "null" + linkedIn: + type: + - string + - "null" + name: + type: + - string + - "null" + order: + type: + - number + - "null" + phone: + type: + - string + - "null" + position: + type: + - string + - "null" + twitter: + type: + - string + - "null" + web: + type: + - string + - "null" + required: + - id + workshops: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - number + - "null" + description: + type: + - string + - "null" + available: + type: + - number + - "null" + booked: + type: + - boolean + - "null" + booking_info: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + available: + type: + - number + - "null" + booked: + type: + - boolean + - "null" + booked_attendees: + type: + - array + - "null" + capacity: + type: + - number + - "null" + id: + type: + - number + - "null" + lecture_id: + type: + - number + - "null" + capacity: + type: + - number + - "null" + code: + type: + - string + - "null" + created_at: + type: + - string + - "null" + discussion: + type: + - number + - "null" + end: + type: + - string + - "null" + event_day_id: + type: + - number + - "null" + event_id: + type: + - number + - "null" + files: + type: + - array + - "null" + hall_id: + type: + - number + - "null" + id: + type: number + laravel_through_key: + type: + - number + - "null" + mentoring: + type: + - boolean + - "null" + moderating: + type: + - boolean + - "null" + name: + type: + - string + - "null" + overlapping: + type: + - boolean + - "null" + panel_discussion: + type: + - number + - "null" + polling: + type: + - boolean + - "null" + qr_code_url: + type: + - string + - "null" + speakers: + type: + - array + - "null" + start: + type: + - string + - "null" + tracks: + type: + - array + - "null" + updated_at: + type: + - string + - "null" + required: + - id + pauses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + created_at: + type: + - string + - "null" + end: + type: + - string + - "null" + event_day_id: + type: + - number + - "null" + event_id: + type: + - number + - "null" + id: + type: number + laravel_through_key: + type: + - number + - "null" + name: + type: + - string + - "null" + start: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + required: + - id + tracks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + color: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + order: + type: + - number + - "null" + updated_at: + type: + - string + - "null" + required: + - id + partners: + type: object + $schema: http://json-schema.org/schema# + properties: + description: + type: + - string + - "null" + address: + type: + - string + - "null" + code: + type: + - string + - "null" + company: + type: + - string + - "null" + created_at: + type: + - string + - "null" + email: + type: + - string + - "null" + exhibitor: + type: + - boolean + - "null" + exhibitor_info: + type: + - object + - "null" + properties: + booth_number: + type: + - string + - "null" + order: + type: + - number + - "null" + photo: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + height: + type: + - number + - "null" + id: + type: + - number + - "null" + thumbnail: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + id: + type: number + logo: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + height: + type: + - number + - "null" + id: + type: + - number + - "null" + thumbnail: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + phone: + type: + - string + - "null" + photo: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + height: + type: + - number + - "null" + id: + type: + - number + - "null" + thumbnail: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + qr_code_url: + type: + - string + - "null" + sections: + type: + - array + - "null" + sponsor: + type: + - boolean + - "null" + sponsor_info: + type: + - object + - "null" + properties: + order: + type: + - number + - "null" + photo: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + height: + type: + - number + - "null" + id: + type: + - number + - "null" + thumbnail: + type: + - string + - "null" + url: + type: + - string + - "null" + width: + type: + - number + - "null" + updated_at: + type: + - string + - "null" + web: + type: + - string + - "null" + required: + - id + additionalProperties: true + participants: + type: object + $schema: http://json-schema.org/schema# + properties: + email: + type: string + name: + type: + - string + - "null" + role: + type: + - string + - "null" + required: + - email + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-eventee/metadata.yaml b/airbyte-integrations/connectors/source-eventee/metadata.yaml new file mode 100644 index 000000000000..f4a33fabe20f --- /dev/null +++ b/airbyte-integrations/connectors/source-eventee/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.eventee.co" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-eventee + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 8be64312-22e6-4c6d-8738-2294bd565139 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-eventee + githubIssueLabel: source-eventee + icon: icon.svg + license: MIT + name: Eventee + releaseDate: 2024-10-28 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/eventee + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/eventee.md b/docs/integrations/sources/eventee.md new file mode 100644 index 000000000000..23b61ad5f487 --- /dev/null +++ b/docs/integrations/sources/eventee.md @@ -0,0 +1,32 @@ +# Eventee +The Airbyte connector for Eventee enables seamless integration and automated data synchronization between Eventee, a leading event management platform, and your data destinations. It extracts and transfers event-related information such as attendee details, lectures, tracks, and more. This connector ensures real-time or scheduled data flow, helping you centralize and analyze Eventee's data effortlessly for improved event insights and reporting. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_token` | `string` | API Token. API token to use. Generate it at https://admin.eventee.co/ in 'Settings -> Features'. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| halls | id | No pagination | ✅ | ❌ | +| days | id | No pagination | ✅ | ❌ | +| lectures | id | No pagination | ✅ | ❌ | +| speakers | id | No pagination | ✅ | ❌ | +| workshops | id | No pagination | ✅ | ❌ | +| pauses | id | No pagination | ✅ | ❌ | +| tracks | id | No pagination | ✅ | ❌ | +| partners | id | No pagination | ✅ | ❌ | +| participants | email | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-28 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From cfe0c7fe9fefc54136cb3532bcafc055ab3ca9cb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:19 +0200 Subject: [PATCH 560/808] =?UTF-8?q?=F0=9F=90=99=20destination-xata:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48162)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-xata/metadata.yaml | 2 +- .../connectors/destination-xata/poetry.lock | 118 +++++++++--------- .../destination-xata/pyproject.toml | 2 +- docs/integrations/destinations/xata.md | 1 + 4 files changed, 62 insertions(+), 61 deletions(-) diff --git a/airbyte-integrations/connectors/destination-xata/metadata.yaml b/airbyte-integrations/connectors/destination-xata/metadata.yaml index 0ef013c4e43a..290fb3f05427 100644 --- a/airbyte-integrations/connectors/destination-xata/metadata.yaml +++ b/airbyte-integrations/connectors/destination-xata/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 2a51c92d-0fb4-4e54-94d2-cce631f24d1f - dockerImageTag: 0.1.25 + dockerImageTag: 0.1.26 dockerRepository: airbyte/destination-xata githubIssueLabel: destination-xata icon: xata.svg diff --git a/airbyte-integrations/connectors/destination-xata/poetry.lock b/airbyte-integrations/connectors/destination-xata/poetry.lock index 53ca7783d18f..76acc7057a36 100644 --- a/airbyte-integrations/connectors/destination-xata/poetry.lock +++ b/airbyte-integrations/connectors/destination-xata/poetry.lock @@ -491,69 +491,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/destination-xata/pyproject.toml b/airbyte-integrations/connectors/destination-xata/pyproject.toml index 249cbde2e37e..88817c816e56 100644 --- a/airbyte-integrations/connectors/destination-xata/pyproject.toml +++ b/airbyte-integrations/connectors/destination-xata/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.25" +version = "0.1.26" name = "destination-xata" description = "Destination implementation for Xata.io" authors = [ "Philip Krauss ",] diff --git a/docs/integrations/destinations/xata.md b/docs/integrations/destinations/xata.md index 5ebb3617a73d..406e1a66a051 100644 --- a/docs/integrations/destinations/xata.md +++ b/docs/integrations/destinations/xata.md @@ -40,6 +40,7 @@ In order to connect, you need: | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------- | +| 0.1.26 | 2024-11-04 | [48162](https://github.com/airbytehq/airbyte/pull/48162) | Update dependencies | | 0.1.25 | 2024-10-29 | [47076](https://github.com/airbytehq/airbyte/pull/47076) | Update dependencies | | 0.1.24 | 2024-10-12 | [46765](https://github.com/airbytehq/airbyte/pull/46765) | Update dependencies | | 0.1.23 | 2024-10-05 | [46467](https://github.com/airbytehq/airbyte/pull/46467) | Update dependencies | From 1e7973faa56e7f8d1f0b74bb840409e9dc1c91b2 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:22 +0200 Subject: [PATCH 561/808] =?UTF-8?q?=F0=9F=90=99=20source-mixmax:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#48160)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mixmax/metadata.yaml | 4 ++-- docs/integrations/sources/mixmax.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mixmax/metadata.yaml b/airbyte-integrations/connectors/source-mixmax/metadata.yaml index 80d24438c0f4..8a562676a238 100644 --- a/airbyte-integrations/connectors/source-mixmax/metadata.yaml +++ b/airbyte-integrations/connectors/source-mixmax/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mixmax connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 63df2e59-d086-4980-af83-01948325eacd - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-mixmax githubIssueLabel: source-mixmax icon: icon.svg diff --git a/docs/integrations/sources/mixmax.md b/docs/integrations/sources/mixmax.md index 9a30125f30ec..af7203b7b60e 100644 --- a/docs/integrations/sources/mixmax.md +++ b/docs/integrations/sources/mixmax.md @@ -44,6 +44,7 @@ Visit `https://developer.mixmax.com/reference/getting-started-with-the-api` for | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-04 | [48160](https://github.com/airbytehq/airbyte/pull/48160) | Update dependencies | | 0.0.3 | 2024-10-29 | [47838](https://github.com/airbytehq/airbyte/pull/47838) | Update dependencies | | 0.0.2 | 2024-10-28 | [47578](https://github.com/airbytehq/airbyte/pull/47578) | Update dependencies | | 0.0.1 | 2024-09-26 | [45921](https://github.com/airbytehq/airbyte/pull/45921) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 83e3710b231954fd0741442c86bf9be5794785dc Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:26 +0200 Subject: [PATCH 562/808] =?UTF-8?q?=F0=9F=90=99=20source-height:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#48158)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-height/metadata.yaml | 4 ++-- docs/integrations/sources/height.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-height/metadata.yaml b/airbyte-integrations/connectors/source-height/metadata.yaml index 1c427d116201..4096c68c1556 100644 --- a/airbyte-integrations/connectors/source-height/metadata.yaml +++ b/airbyte-integrations/connectors/source-height/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-height connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 8f4b2d64-970a-4a6f-b316-3d1144c67be8 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-height githubIssueLabel: source-height icon: icon.svg diff --git a/docs/integrations/sources/height.md b/docs/integrations/sources/height.md index fca1d71b76e0..b3842a0f3d89 100644 --- a/docs/integrations/sources/height.md +++ b/docs/integrations/sources/height.md @@ -37,6 +37,7 @@ API Documentation: https://height.notion.site/API-documentation-643aea5bf01742de | Version | Date | Pull Request | Subject | | ------------------ | ------------ | ---- | ---------------- | +| 0.0.4 | 2024-11-04 | [48158](https://github.com/airbytehq/airbyte/pull/48158) | Update dependencies | | 0.0.3 | 2024-10-29 | [47790](https://github.com/airbytehq/airbyte/pull/47790) | Update dependencies | | 0.0.2 | 2024-10-28 | [47615](https://github.com/airbytehq/airbyte/pull/47615) | Update dependencies | | 0.0.1 | 2024-08-31 | [45065](https://github.com/airbytehq/airbyte/pull/45065) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 1c5920bd7ef619c9360a78116dfee992cb35fb60 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:29 +0200 Subject: [PATCH 563/808] =?UTF-8?q?=F0=9F=90=99=20source-planhat:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48157)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-planhat/metadata.yaml | 4 ++-- docs/integrations/sources/planhat.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-planhat/metadata.yaml b/airbyte-integrations/connectors/source-planhat/metadata.yaml index 14ad2ec83177..bb5ea7f47c91 100644 --- a/airbyte-integrations/connectors/source-planhat/metadata.yaml +++ b/airbyte-integrations/connectors/source-planhat/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-planhat connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 03fdd212-bd09-4e7b-b472-5b8f1b73969b - dockerImageTag: 0.0.4 + dockerImageTag: 0.0.5 dockerRepository: airbyte/source-planhat githubIssueLabel: source-planhat icon: icon.svg diff --git a/docs/integrations/sources/planhat.md b/docs/integrations/sources/planhat.md index 230586382953..6b611ba003e2 100644 --- a/docs/integrations/sources/planhat.md +++ b/docs/integrations/sources/planhat.md @@ -54,6 +54,7 @@ This Source is capable of syncing the following core Streams: | Version | Date | Pull Request | Subject | | ------- | ---------- | ------------ | ---------------------------------------------------- | +| 0.0.5 | 2024-11-04 | [48157](https://github.com/airbytehq/airbyte/pull/48157) | Update dependencies | | 0.0.4 | 2024-10-29 | [47778](https://github.com/airbytehq/airbyte/pull/47778) | Update dependencies | | 0.0.3 | 2024-10-28 | [47625](https://github.com/airbytehq/airbyte/pull/47625) | Update dependencies | | 0.0.2 | 2024-09-30 | [46271](https://github.com/airbytehq/airbyte/pull/46271) | Documentation update | From 85870ef89765fb620573c62e22da9a5b600343ee Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:31 +0200 Subject: [PATCH 564/808] =?UTF-8?q?=F0=9F=90=99=20source-cimis:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-11-04]=20(#48156)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-cimis/metadata.yaml | 4 ++-- docs/integrations/sources/cimis.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-cimis/metadata.yaml b/airbyte-integrations/connectors/source-cimis/metadata.yaml index 7c50fb1a9259..828ad3280d89 100644 --- a/airbyte-integrations/connectors/source-cimis/metadata.yaml +++ b/airbyte-integrations/connectors/source-cimis/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-cimis connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: d169ef9b-6741-4af6-b4c8-7ec4410d7f0e - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-cimis githubIssueLabel: source-cimis icon: icon.svg diff --git a/docs/integrations/sources/cimis.md b/docs/integrations/sources/cimis.md index 13fcf3d8c6d8..cebef2bd54d7 100644 --- a/docs/integrations/sources/cimis.md +++ b/docs/integrations/sources/cimis.md @@ -33,6 +33,7 @@ To get started, register and request your appKey from the [CIMIS website](https: | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [48156](https://github.com/airbytehq/airbyte/pull/48156) | Update dependencies | | 0.0.2 | 2024-10-28 | [47556](https://github.com/airbytehq/airbyte/pull/47556) | Update dependencies | | 0.0.1 | 2024-09-18 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From ee7004820b23f20e8b3007d7a15abceafd81970f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:35 +0200 Subject: [PATCH 565/808] =?UTF-8?q?=F0=9F=90=99=20source-firebolt:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48154)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-firebolt/metadata.yaml | 2 +- .../connectors/source-firebolt/poetry.lock | 136 +++++++++--------- .../connectors/source-firebolt/pyproject.toml | 2 +- docs/integrations/sources/firebolt.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-firebolt/metadata.yaml b/airbyte-integrations/connectors/source-firebolt/metadata.yaml index ce7ede0d5d37..0880f19e849b 100644 --- a/airbyte-integrations/connectors/source-firebolt/metadata.yaml +++ b/airbyte-integrations/connectors/source-firebolt/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: source definitionId: 6f2ac653-8623-43c4-8950-19218c7caf3d - dockerImageTag: 2.0.23 + dockerImageTag: 2.0.24 dockerRepository: airbyte/source-firebolt githubIssueLabel: source-firebolt connectorBuildOptions: diff --git a/airbyte-integrations/connectors/source-firebolt/poetry.lock b/airbyte-integrations/connectors/source-firebolt/poetry.lock index e7ea02037e02..9402f9c24d87 100644 --- a/airbyte-integrations/connectors/source-firebolt/poetry.lock +++ b/airbyte-integrations/connectors/source-firebolt/poetry.lock @@ -807,13 +807,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -895,69 +895,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1474,23 +1474,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-firebolt/pyproject.toml b/airbyte-integrations/connectors/source-firebolt/pyproject.toml index 612e6c807f0d..08ce69a2ec74 100644 --- a/airbyte-integrations/connectors/source-firebolt/pyproject.toml +++ b/airbyte-integrations/connectors/source-firebolt/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.23" +version = "2.0.24" name = "source-firebolt" description = "Source implementation for Firebolt." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/firebolt.md b/docs/integrations/sources/firebolt.md index c08b4f5b92f4..8872864689b7 100644 --- a/docs/integrations/sources/firebolt.md +++ b/docs/integrations/sources/firebolt.md @@ -54,6 +54,7 @@ You can now use the Airbyte Firebolt source. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------- | +| 2.0.24 | 2024-11-04 | [48154](https://github.com/airbytehq/airbyte/pull/48154) | Update dependencies | | 2.0.23 | 2024-10-28 | [47109](https://github.com/airbytehq/airbyte/pull/47109) | Update dependencies | | 2.0.22 | 2024-10-12 | [46826](https://github.com/airbytehq/airbyte/pull/46826) | Update dependencies | | 2.0.21 | 2024-10-05 | [46471](https://github.com/airbytehq/airbyte/pull/46471) | Update dependencies | From 03ab1450e00d38dcad598789dc7e88a96b702908 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:39 +0200 Subject: [PATCH 566/808] =?UTF-8?q?=F0=9F=90=99=20source-guru:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-04]=20(#48152)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-guru/metadata.yaml | 4 ++-- docs/integrations/sources/guru.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-guru/metadata.yaml b/airbyte-integrations/connectors/source-guru/metadata.yaml index 4a9ae3e31ac2..dbde2e2c9b69 100644 --- a/airbyte-integrations/connectors/source-guru/metadata.yaml +++ b/airbyte-integrations/connectors/source-guru/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-guru connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 30e2d5f2-63c1-4993-8079-c8abf24e747d - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-guru githubIssueLabel: source-guru icon: icon.svg diff --git a/docs/integrations/sources/guru.md b/docs/integrations/sources/guru.md index 92ed77ba5c46..fe5201473644 100644 --- a/docs/integrations/sources/guru.md +++ b/docs/integrations/sources/guru.md @@ -50,6 +50,7 @@ To set up the Guru source connector, you'll need the [Guru Auth keys](https://de | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-04 | [48152](https://github.com/airbytehq/airbyte/pull/48152) | Update dependencies | | 0.0.3 | 2024-10-29 | [47830](https://github.com/airbytehq/airbyte/pull/47830) | Update dependencies | | 0.0.2 | 2024-10-28 | [47665](https://github.com/airbytehq/airbyte/pull/47665) | Update dependencies | | 0.0.1 | 2024-08-31 | [45066](https://github.com/airbytehq/airbyte/pull/45066) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 7ab53e68f09298ed1d4d8fde95c23e82de741884 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:42 +0200 Subject: [PATCH 567/808] =?UTF-8?q?=F0=9F=90=99=20source-kissmetrics:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48151)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-kissmetrics/metadata.yaml | 4 ++-- docs/integrations/sources/kissmetrics.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml b/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml index d60688e5cfb4..b19bff0c7362 100644 --- a/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml +++ b/airbyte-integrations/connectors/source-kissmetrics/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-kissmetrics connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: ea2607ce-b94d-4218-83f8-724010403c9e - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-kissmetrics githubIssueLabel: source-kissmetrics icon: icon.svg diff --git a/docs/integrations/sources/kissmetrics.md b/docs/integrations/sources/kissmetrics.md index f9c2e0c63dc8..52719266bdd8 100644 --- a/docs/integrations/sources/kissmetrics.md +++ b/docs/integrations/sources/kissmetrics.md @@ -30,6 +30,7 @@ Refer `https://support.kissmetrics.io/reference/authorization` for more details. | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-04 | [48151](https://github.com/airbytehq/airbyte/pull/48151) | Update dependencies | | 0.0.3 | 2024-10-29 | [47756](https://github.com/airbytehq/airbyte/pull/47756) | Update dependencies | | 0.0.2 | 2024-10-28 | [47650](https://github.com/airbytehq/airbyte/pull/47650) | Update dependencies | | 0.0.1 | 2024-09-21 | [45839](https://github.com/airbytehq/airbyte/pull/45839) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From d5908451a92b0099e4e81ea84cc4803798e29519 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:45 +0200 Subject: [PATCH 568/808] =?UTF-8?q?=F0=9F=90=99=20source-sigma-computing:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48150)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sigma-computing/metadata.yaml | 4 ++-- docs/integrations/sources/sigma-computing.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sigma-computing/metadata.yaml b/airbyte-integrations/connectors/source-sigma-computing/metadata.yaml index 4434a1c6d40f..62d3449a072d 100644 --- a/airbyte-integrations/connectors/source-sigma-computing/metadata.yaml +++ b/airbyte-integrations/connectors/source-sigma-computing/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-sigma-computing connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 40fed53b-3a55-4ce3-a25f-93af5b5379b0 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-sigma-computing githubIssueLabel: source-sigma-computing icon: icon.svg diff --git a/docs/integrations/sources/sigma-computing.md b/docs/integrations/sources/sigma-computing.md index 6655ebc0416e..005bb1380ba6 100644 --- a/docs/integrations/sources/sigma-computing.md +++ b/docs/integrations/sources/sigma-computing.md @@ -38,6 +38,7 @@ Next, head over to Developer Access and click on create. This will generate your | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48150](https://github.com/airbytehq/airbyte/pull/48150) | Update dependencies | | 0.0.2 | 2024-10-28 | [47514](https://github.com/airbytehq/airbyte/pull/47514) | Update dependencies | | 0.0.1 | 2024-10-13 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 145d175a0c89697edd0e037dcabde86d7a3c8e81 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:48 +0200 Subject: [PATCH 569/808] =?UTF-8?q?=F0=9F=90=99=20source-teamwork:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48149)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-teamwork/metadata.yaml | 4 ++-- docs/integrations/sources/teamwork.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-teamwork/metadata.yaml b/airbyte-integrations/connectors/source-teamwork/metadata.yaml index b8df2dab5ee5..556c24798ffc 100644 --- a/airbyte-integrations/connectors/source-teamwork/metadata.yaml +++ b/airbyte-integrations/connectors/source-teamwork/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-teamwork connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 7fcd456d-2c13-4437-a05b-cf436699a519 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-teamwork githubIssueLabel: source-teamwork icon: icon.svg diff --git a/docs/integrations/sources/teamwork.md b/docs/integrations/sources/teamwork.md index 95e9db059680..a4d753c9f3a9 100644 --- a/docs/integrations/sources/teamwork.md +++ b/docs/integrations/sources/teamwork.md @@ -57,6 +57,7 @@ Your default login username and password could be used as secrets, ref: `https:/ | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-11-04 | [48149](https://github.com/airbytehq/airbyte/pull/48149) | Update dependencies | | 0.0.2 | 2024-10-28 | [47552](https://github.com/airbytehq/airbyte/pull/47552) | Update dependencies | | 0.0.1 | 2024-09-05 | [45155](https://github.com/airbytehq/airbyte/pull/45155) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From ae64f49672ce0127511b4a6741a14d39b290c246 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:51 +0200 Subject: [PATCH 570/808] =?UTF-8?q?=F0=9F=90=99=20source-goldcast:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48148)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-goldcast/metadata.yaml | 4 ++-- docs/integrations/sources/goldcast.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-goldcast/metadata.yaml b/airbyte-integrations/connectors/source-goldcast/metadata.yaml index eb36d5128a2a..da4e0ca8b648 100644 --- a/airbyte-integrations/connectors/source-goldcast/metadata.yaml +++ b/airbyte-integrations/connectors/source-goldcast/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: c2c25d04-9bb1-4171-8a7a-bb7cead8add0 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-goldcast githubIssueLabel: source-goldcast icon: goldcast.svg diff --git a/docs/integrations/sources/goldcast.md b/docs/integrations/sources/goldcast.md index b7726040a0a4..1b30752624ff 100644 --- a/docs/integrations/sources/goldcast.md +++ b/docs/integrations/sources/goldcast.md @@ -96,6 +96,7 @@ This is a child stream of the events stream indicating webinars that belong to t | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 0.2.3 | 2024-11-04 | [48148](https://github.com/airbytehq/airbyte/pull/48148) | Update dependencies | | 0.2.2 | 2024-10-29 | [47875](https://github.com/airbytehq/airbyte/pull/47875) | Update dependencies | | 0.2.1 | 2024-10-28 | [47533](https://github.com/airbytehq/airbyte/pull/47533) | Update dependencies | | 0.2.0 | 2024-08-22 | [44568](https://github.com/airbytehq/airbyte/pull/44568) | Refactor connector to manifest-only format | From b1b719bf8ca09da42f658e0c64a10e248e57d1d1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:55 +0200 Subject: [PATCH 571/808] =?UTF-8?q?=F0=9F=90=99=20source-copper:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#48146)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-copper/metadata.yaml | 4 ++-- docs/integrations/sources/copper.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-copper/metadata.yaml b/airbyte-integrations/connectors/source-copper/metadata.yaml index ee6f899aab3d..95c752393355 100644 --- a/airbyte-integrations/connectors/source-copper/metadata.yaml +++ b/airbyte-integrations/connectors/source-copper/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - https://api.copper.com/ connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 44f3002f-2df9-4f6d-b21c-02cd3b47d0dc - dockerImageTag: 0.4.2 + dockerImageTag: 0.4.3 dockerRepository: airbyte/source-copper documentationUrl: https://docs.airbyte.com/integrations/sources/copper githubIssueLabel: source-copper diff --git a/docs/integrations/sources/copper.md b/docs/integrations/sources/copper.md index 6d8b1cebb0c7..57e6530ad479 100644 --- a/docs/integrations/sources/copper.md +++ b/docs/integrations/sources/copper.md @@ -44,6 +44,7 @@ The Copper source connector supports the following [sync modes](https://docs.air | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.4.3 | 2024-11-04 | [48146](https://github.com/airbytehq/airbyte/pull/48146) | Update dependencies | | 0.4.2 | 2024-10-28 | [47660](https://github.com/airbytehq/airbyte/pull/47660) | Update dependencies | | 0.4.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.4.0 | 2024-08-15 | [44159](https://github.com/airbytehq/airbyte/pull/44159) | Refactor connector to manifest-only format | From 1de64145d9dd864ac11bf272c3d08c42fd93df0f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:08:57 +0200 Subject: [PATCH 572/808] =?UTF-8?q?=F0=9F=90=99=20source-fleetio:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48145)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-fleetio/metadata.yaml | 4 ++-- docs/integrations/sources/fleetio.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-fleetio/metadata.yaml b/airbyte-integrations/connectors/source-fleetio/metadata.yaml index f3adf798f88e..9613897c318f 100644 --- a/airbyte-integrations/connectors/source-fleetio/metadata.yaml +++ b/airbyte-integrations/connectors/source-fleetio/metadata.yaml @@ -5,11 +5,11 @@ data: oss: enabled: true connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 13a7652d-1d94-4033-931a-613d22d3cbb3 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-fleetio githubIssueLabel: source-fleetio icon: icon.svg diff --git a/docs/integrations/sources/fleetio.md b/docs/integrations/sources/fleetio.md index 2bdc32aff985..bf79dad224bf 100644 --- a/docs/integrations/sources/fleetio.md +++ b/docs/integrations/sources/fleetio.md @@ -51,6 +51,7 @@ Our source connector adheres to the standard rate limiting with the Airbyte low- | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------| +| 0.2.2 | 2024-11-04 | [48145](https://github.com/airbytehq/airbyte/pull/48145) | Update dependencies | | 0.2.1 | 2024-10-29 | [47932](https://github.com/airbytehq/airbyte/pull/47932) | Update dependencies | | 0.2.0 | 2024-08-22 | [44567](https://github.com/airbytehq/airbyte/pull/44567) | Refactor connector to manifest-only format | | 0.1.11 | 2024-08-17 | [44268](https://github.com/airbytehq/airbyte/pull/44268) | Update dependencies | From 14769fada0e146cbfbbd16fe34323566aadac198 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:09:02 +0200 Subject: [PATCH 573/808] =?UTF-8?q?=F0=9F=90=99=20source-news-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48143)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-news-api/metadata.yaml | 4 ++-- docs/integrations/sources/news-api.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-news-api/metadata.yaml b/airbyte-integrations/connectors/source-news-api/metadata.yaml index 746be876d2d2..0e9c559e246a 100644 --- a/airbyte-integrations/connectors/source-news-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-news-api/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: df38991e-f35b-4af2-996d-36817f614587 - dockerImageTag: 0.2.3 + dockerImageTag: 0.2.4 dockerRepository: airbyte/source-news-api githubIssueLabel: source-news-api icon: newsapi.svg diff --git a/docs/integrations/sources/news-api.md b/docs/integrations/sources/news-api.md index 23eaa8381e89..7e1fc4988fb3 100644 --- a/docs/integrations/sources/news-api.md +++ b/docs/integrations/sources/news-api.md @@ -61,6 +61,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :--------------------------------------- | +| 0.2.4 | 2024-11-04 | [48143](https://github.com/airbytehq/airbyte/pull/48143) | Update dependencies | | 0.2.3 | 2024-10-29 | [47866](https://github.com/airbytehq/airbyte/pull/47866) | Update dependencies | | 0.2.2 | 2024-10-28 | [47562](https://github.com/airbytehq/airbyte/pull/47562) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | From 24ba92d5b28fe884febb10e2393d528179627ff9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:09:05 +0200 Subject: [PATCH 574/808] =?UTF-8?q?=F0=9F=90=99=20source-thinkific:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48142)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-thinkific/metadata.yaml | 4 ++-- docs/integrations/sources/thinkific.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-thinkific/metadata.yaml b/airbyte-integrations/connectors/source-thinkific/metadata.yaml index d46459891f05..4ed91819c3ee 100644 --- a/airbyte-integrations/connectors/source-thinkific/metadata.yaml +++ b/airbyte-integrations/connectors/source-thinkific/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-thinkific connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 80e5803c-7013-4ecc-a3b1-2344ce43e054 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-thinkific githubIssueLabel: source-thinkific icon: icon.svg diff --git a/docs/integrations/sources/thinkific.md b/docs/integrations/sources/thinkific.md index 088118788d23..39b79ad4f612 100644 --- a/docs/integrations/sources/thinkific.md +++ b/docs/integrations/sources/thinkific.md @@ -30,6 +30,7 @@ Airbyte connector for Thinkific, allowing you to seamlessly sync data like users | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48142](https://github.com/airbytehq/airbyte/pull/48142) | Update dependencies | | 0.0.2 | 2024-10-29 | [47525](https://github.com/airbytehq/airbyte/pull/47525) | Update dependencies | | 0.0.1 | 2024-10-07 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 0ac5f51b86ac606d0660217915707b0bee606915 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:09:29 +0200 Subject: [PATCH 575/808] =?UTF-8?q?=F0=9F=90=99=20source-mode:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-04]=20(#47868)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mode/metadata.yaml | 4 ++-- docs/integrations/sources/mode.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mode/metadata.yaml b/airbyte-integrations/connectors/source-mode/metadata.yaml index 5055f32f1afc..c7d258312f73 100644 --- a/airbyte-integrations/connectors/source-mode/metadata.yaml +++ b/airbyte-integrations/connectors/source-mode/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mode connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 948f3a37-f80b-4f57-a918-9fd733f7a018 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-mode githubIssueLabel: source-mode icon: icon.svg diff --git a/docs/integrations/sources/mode.md b/docs/integrations/sources/mode.md index 3209cc7a70b3..25563a63e90f 100644 --- a/docs/integrations/sources/mode.md +++ b/docs/integrations/sources/mode.md @@ -39,6 +39,7 @@ This Airbyte connector for Mode allows you to seamlessly sync data between Mode | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [47868](https://github.com/airbytehq/airbyte/pull/47868) | Update dependencies | | 0.0.1 | 2024-10-12 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 5ad5d6eacda5237c9fae6b192c3ae12ad9edccb2 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:09:38 +0200 Subject: [PATCH 576/808] =?UTF-8?q?=F0=9F=90=99=20source-dropbox-sign:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-04]=20(#47831)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-dropbox-sign/metadata.yaml | 4 ++-- docs/integrations/sources/dropbox-sign.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-dropbox-sign/metadata.yaml b/airbyte-integrations/connectors/source-dropbox-sign/metadata.yaml index bb6a5839a7d1..19afbced3e20 100644 --- a/airbyte-integrations/connectors/source-dropbox-sign/metadata.yaml +++ b/airbyte-integrations/connectors/source-dropbox-sign/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-dropbox-sign connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: da9cccd2-7319-44ea-b6cf-ddc08f13e959 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-dropbox-sign githubIssueLabel: source-dropbox-sign icon: icon.svg diff --git a/docs/integrations/sources/dropbox-sign.md b/docs/integrations/sources/dropbox-sign.md index 79645ef76bfb..b49cd606314d 100644 --- a/docs/integrations/sources/dropbox-sign.md +++ b/docs/integrations/sources/dropbox-sign.md @@ -23,6 +23,7 @@ See the [API docs](https://developers.hellosign.com/api/reference/authentication | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [47831](https://github.com/airbytehq/airbyte/pull/47831) | Update dependencies | | 0.0.2 | 2024-10-28 | [47607](https://github.com/airbytehq/airbyte/pull/47607) | Update dependencies | | 0.0.1 | 2024-09-20 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From df44f1537b91e639bfbbbb04754ba640c82ef55a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Mon, 4 Nov 2024 22:11:21 +0200 Subject: [PATCH 577/808] =?UTF-8?q?=F0=9F=90=99=20source-cart:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-04]=20(#43726)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-cart/metadata.yaml | 4 +- .../connectors/source-cart/poetry.lock | 611 +++++++++--------- .../connectors/source-cart/pyproject.toml | 2 +- docs/integrations/sources/cart.md | 1 + 4 files changed, 323 insertions(+), 295 deletions(-) diff --git a/airbyte-integrations/connectors/source-cart/metadata.yaml b/airbyte-integrations/connectors/source-cart/metadata.yaml index bed846a4729e..a9536ab00817 100644 --- a/airbyte-integrations/connectors/source-cart/metadata.yaml +++ b/airbyte-integrations/connectors/source-cart/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 100 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.2@sha256:57703de3b4c4204bd68a7b13c9300f8e03c0189bffddaffc796f1da25d2dbea0 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorSubtype: api connectorType: source definitionId: bb1a6d31-6879-4819-a2bd-3eed299ea8e2 - dockerImageTag: 0.3.6 + dockerImageTag: 0.3.7 dockerRepository: airbyte/source-cart documentationUrl: https://docs.airbyte.com/integrations/sources/cart githubIssueLabel: source-cart diff --git a/airbyte-integrations/connectors/source-cart/poetry.lock b/airbyte-integrations/connectors/source-cart/poetry.lock index 7f50cbe7a597..7a6a3934921d 100644 --- a/airbyte-integrations/connectors/source-cart/poetry.lock +++ b/airbyte-integrations/connectors/source-cart/poetry.lock @@ -62,22 +62,22 @@ files = [ [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "backoff" @@ -92,35 +92,35 @@ files = [ [[package]] name = "bracex" -version = "2.4" +version = "2.5.post1" description = "Bash style brace expander." optional = false python-versions = ">=3.8" files = [ - {file = "bracex-2.4-py3-none-any.whl", hash = "sha256:efdc71eff95eaff5e0f8cfebe7d01adf2c8637c8c92edaf63ef348c241a82418"}, - {file = "bracex-2.4.tar.gz", hash = "sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb"}, + {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, + {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, ] [[package]] name = "cachetools" -version = "5.3.3" +version = "5.5.0" description = "Extensible memoizing collections and decorators" optional = false python-versions = ">=3.7" files = [ - {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, - {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, + {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, + {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, ] [[package]] name = "cattrs" -version = "23.2.3" +version = "24.1.2" description = "Composable complex class support for attrs and dataclasses." optional = false python-versions = ">=3.8" files = [ - {file = "cattrs-23.2.3-py3-none-any.whl", hash = "sha256:0341994d94971052e9ee70662542699a3162ea1e0c62f7ce1b4a57f563685108"}, - {file = "cattrs-23.2.3.tar.gz", hash = "sha256:a934090d95abaa9e911dac357e3a8699e0b4b14f8529bcc7d2b1ad9d51672b9f"}, + {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, + {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, ] [package.dependencies] @@ -132,6 +132,7 @@ typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_ver bson = ["pymongo (>=4.4.0)"] cbor2 = ["cbor2 (>=5.4.6)"] msgpack = ["msgpack (>=1.0.5)"] +msgspec = ["msgspec (>=0.18.5)"] orjson = ["orjson (>=3.9.2)"] pyyaml = ["pyyaml (>=6.0)"] tomlkit = ["tomlkit (>=0.11.8)"] @@ -139,112 +140,127 @@ ujson = ["ujson (>=5.7.0)"] [[package]] name = "certifi" -version = "2024.6.2" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.6.2-py3-none-any.whl", hash = "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56"}, - {file = "certifi-2024.6.2.tar.gz", hash = "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] @@ -288,13 +304,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -312,15 +328,18 @@ files = [ [[package]] name = "idna" -version = "3.7" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, - {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + [[package]] name = "iniconfig" version = "2.0.0" @@ -397,71 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -511,19 +531,19 @@ pytzdata = ">=2020.1" [[package]] name = "platformdirs" -version = "4.2.2" +version = "4.3.6" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, - {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] -type = ["mypy (>=1.8)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "pluggy" @@ -553,54 +573,54 @@ files = [ [[package]] name = "pydantic" -version = "1.10.17" +version = "1.10.18" description = "Data validation and settings management using python type hints" optional = false python-versions = ">=3.7" files = [ - {file = "pydantic-1.10.17-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0fa51175313cc30097660b10eec8ca55ed08bfa07acbfe02f7a42f6c242e9a4b"}, - {file = "pydantic-1.10.17-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c7e8988bb16988890c985bd2093df9dd731bfb9d5e0860db054c23034fab8f7a"}, - {file = "pydantic-1.10.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:371dcf1831f87c9e217e2b6a0c66842879a14873114ebb9d0861ab22e3b5bb1e"}, - {file = "pydantic-1.10.17-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4866a1579c0c3ca2c40575398a24d805d4db6cb353ee74df75ddeee3c657f9a7"}, - {file = "pydantic-1.10.17-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:543da3c6914795b37785703ffc74ba4d660418620cc273490d42c53949eeeca6"}, - {file = "pydantic-1.10.17-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7623b59876f49e61c2e283551cc3647616d2fbdc0b4d36d3d638aae8547ea681"}, - {file = "pydantic-1.10.17-cp310-cp310-win_amd64.whl", hash = "sha256:409b2b36d7d7d19cd8310b97a4ce6b1755ef8bd45b9a2ec5ec2b124db0a0d8f3"}, - {file = "pydantic-1.10.17-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fa43f362b46741df8f201bf3e7dff3569fa92069bcc7b4a740dea3602e27ab7a"}, - {file = "pydantic-1.10.17-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2a72d2a5ff86a3075ed81ca031eac86923d44bc5d42e719d585a8eb547bf0c9b"}, - {file = "pydantic-1.10.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4ad32aed3bf5eea5ca5decc3d1bbc3d0ec5d4fbcd72a03cdad849458decbc63"}, - {file = "pydantic-1.10.17-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aeb4e741782e236ee7dc1fb11ad94dc56aabaf02d21df0e79e0c21fe07c95741"}, - {file = "pydantic-1.10.17-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d2f89a719411cb234105735a520b7c077158a81e0fe1cb05a79c01fc5eb59d3c"}, - {file = "pydantic-1.10.17-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db3b48d9283d80a314f7a682f7acae8422386de659fffaba454b77a083c3937d"}, - {file = "pydantic-1.10.17-cp311-cp311-win_amd64.whl", hash = "sha256:9c803a5113cfab7bbb912f75faa4fc1e4acff43e452c82560349fff64f852e1b"}, - {file = "pydantic-1.10.17-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:820ae12a390c9cbb26bb44913c87fa2ff431a029a785642c1ff11fed0a095fcb"}, - {file = "pydantic-1.10.17-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c1e51d1af306641b7d1574d6d3307eaa10a4991542ca324f0feb134fee259815"}, - {file = "pydantic-1.10.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e53fb834aae96e7b0dadd6e92c66e7dd9cdf08965340ed04c16813102a47fab"}, - {file = "pydantic-1.10.17-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e2495309b1266e81d259a570dd199916ff34f7f51f1b549a0d37a6d9b17b4dc"}, - {file = "pydantic-1.10.17-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:098ad8de840c92ea586bf8efd9e2e90c6339d33ab5c1cfbb85be66e4ecf8213f"}, - {file = "pydantic-1.10.17-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:525bbef620dac93c430d5d6bdbc91bdb5521698d434adf4434a7ef6ffd5c4b7f"}, - {file = "pydantic-1.10.17-cp312-cp312-win_amd64.whl", hash = "sha256:6654028d1144df451e1da69a670083c27117d493f16cf83da81e1e50edce72ad"}, - {file = "pydantic-1.10.17-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c87cedb4680d1614f1d59d13fea353faf3afd41ba5c906a266f3f2e8c245d655"}, - {file = "pydantic-1.10.17-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11289fa895bcbc8f18704efa1d8020bb9a86314da435348f59745473eb042e6b"}, - {file = "pydantic-1.10.17-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94833612d6fd18b57c359a127cbfd932d9150c1b72fea7c86ab58c2a77edd7c7"}, - {file = "pydantic-1.10.17-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d4ecb515fa7cb0e46e163ecd9d52f9147ba57bc3633dca0e586cdb7a232db9e3"}, - {file = "pydantic-1.10.17-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:7017971ffa7fd7808146880aa41b266e06c1e6e12261768a28b8b41ba55c8076"}, - {file = "pydantic-1.10.17-cp37-cp37m-win_amd64.whl", hash = "sha256:e840e6b2026920fc3f250ea8ebfdedf6ea7a25b77bf04c6576178e681942ae0f"}, - {file = "pydantic-1.10.17-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bfbb18b616abc4df70591b8c1ff1b3eabd234ddcddb86b7cac82657ab9017e33"}, - {file = "pydantic-1.10.17-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ebb249096d873593e014535ab07145498957091aa6ae92759a32d40cb9998e2e"}, - {file = "pydantic-1.10.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8c209af63ccd7b22fba94b9024e8b7fd07feffee0001efae50dd99316b27768"}, - {file = "pydantic-1.10.17-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4b40c9e13a0b61583e5599e7950490c700297b4a375b55b2b592774332798b7"}, - {file = "pydantic-1.10.17-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c31d281c7485223caf6474fc2b7cf21456289dbaa31401844069b77160cab9c7"}, - {file = "pydantic-1.10.17-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ae5184e99a060a5c80010a2d53c99aee76a3b0ad683d493e5f0620b5d86eeb75"}, - {file = "pydantic-1.10.17-cp38-cp38-win_amd64.whl", hash = "sha256:ad1e33dc6b9787a6f0f3fd132859aa75626528b49cc1f9e429cdacb2608ad5f0"}, - {file = "pydantic-1.10.17-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e17c0ee7192e54a10943f245dc79e36d9fe282418ea05b886e1c666063a7b54"}, - {file = "pydantic-1.10.17-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cafb9c938f61d1b182dfc7d44a7021326547b7b9cf695db5b68ec7b590214773"}, - {file = "pydantic-1.10.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95ef534e3c22e5abbdbdd6f66b6ea9dac3ca3e34c5c632894f8625d13d084cbe"}, - {file = "pydantic-1.10.17-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62d96b8799ae3d782df7ec9615cb59fc32c32e1ed6afa1b231b0595f6516e8ab"}, - {file = "pydantic-1.10.17-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ab2f976336808fd5d539fdc26eb51f9aafc1f4b638e212ef6b6f05e753c8011d"}, - {file = "pydantic-1.10.17-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b8ad363330557beac73159acfbeed220d5f1bfcd6b930302a987a375e02f74fd"}, - {file = "pydantic-1.10.17-cp39-cp39-win_amd64.whl", hash = "sha256:48db882e48575ce4b39659558b2f9f37c25b8d348e37a2b4e32971dd5a7d6227"}, - {file = "pydantic-1.10.17-py3-none-any.whl", hash = "sha256:e41b5b973e5c64f674b3b4720286ded184dcc26a691dd55f34391c62c6934688"}, - {file = "pydantic-1.10.17.tar.gz", hash = "sha256:f434160fb14b353caf634149baaf847206406471ba70e64657c1e8330277a991"}, + {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, + {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, + {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, + {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, + {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, + {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, + {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, + {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, + {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, + {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, + {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, + {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, + {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, + {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, + {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, + {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, + {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, + {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, + {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, + {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, + {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, + {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, + {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, + {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, + {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, + {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, + {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, + {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, + {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, + {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, + {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, + {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, + {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, + {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, + {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, + {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, + {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, + {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, + {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, + {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, + {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, + {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, + {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, ] [package.dependencies] @@ -734,62 +754,64 @@ files = [ [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0.2" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] @@ -862,18 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "70.1.1" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-70.1.1-py3-none-any.whl", hash = "sha256:a58a8fde0541dab0419750bcc521fbdf8585f6e5cb41909df3a472ef7b81ca95"}, - {file = "setuptools-70.1.1.tar.gz", hash = "sha256:937a48c7cdb7a21eb53cd7f9b59e525503aa8abaf3584c730dc5f7a5bec3a650"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.10.0)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.1)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -924,13 +951,13 @@ six = "*" [[package]] name = "urllib3" -version = "2.2.2" +version = "2.2.3" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.8" files = [ - {file = "urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472"}, - {file = "urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168"}, + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-cart/pyproject.toml b/airbyte-integrations/connectors/source-cart/pyproject.toml index 3c6b8c8b4795..d37d8a57eaa0 100644 --- a/airbyte-integrations/connectors/source-cart/pyproject.toml +++ b/airbyte-integrations/connectors/source-cart/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.6" +version = "0.3.7" name = "source-cart" description = "Source implementation for Cart." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/cart.md b/docs/integrations/sources/cart.md index 338521140bca..d027f5d51caa 100644 --- a/docs/integrations/sources/cart.md +++ b/docs/integrations/sources/cart.md @@ -53,6 +53,7 @@ Please follow these [steps](https://developers.cart.com/docs/rest-api/docs/READM | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------- | +| 0.3.7 | 2024-11-04 | [43726](https://github.com/airbytehq/airbyte/pull/43726) | Update dependencies | | 0.3.6 | 2024-06-29 | [40011](https://github.com/airbytehq/airbyte/pull/40011) | Update dependencies | | 0.3.5 | 2024-04-19 | [37131](https://github.com/airbytehq/airbyte/pull/37131) | Updating to 0.80.0 CDK | | 0.3.4 | 2024-04-18 | [37131](https://github.com/airbytehq/airbyte/pull/37131) | Manage dependencies with Poetry. | From 6ed3dc3f191ebd2746118d5dc2d00db569448cb1 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Tue, 5 Nov 2024 03:12:47 +0530 Subject: [PATCH 578/808] source-zoho-campaign contribution from bishalbera (#46881) Co-authored-by: Marcos Marx --- .../connectors/source-zoho-campaign/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-zoho-campaign/icon.svg | 337 ++++ .../source-zoho-campaign/manifest.yaml | 1367 +++++++++++++++++ .../source-zoho-campaign/metadata.yaml | 35 + docs/integrations/sources/zoho-campaign.md | 37 + 6 files changed, 1826 insertions(+) create mode 100644 airbyte-integrations/connectors/source-zoho-campaign/README.md create mode 100644 airbyte-integrations/connectors/source-zoho-campaign/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-zoho-campaign/icon.svg create mode 100644 airbyte-integrations/connectors/source-zoho-campaign/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-zoho-campaign/metadata.yaml create mode 100644 docs/integrations/sources/zoho-campaign.md diff --git a/airbyte-integrations/connectors/source-zoho-campaign/README.md b/airbyte-integrations/connectors/source-zoho-campaign/README.md new file mode 100644 index 000000000000..56b17f170d7a --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-campaign/README.md @@ -0,0 +1,33 @@ +# Zoho Campaign +This directory contains the manifest-only connector for `source-zoho-campaign`. + +The Zoho Campaigns connector enables seamless integration of mailing lists, campaign data, and subscriber management into your data workflows. Easily extract subscriber information, campaign reports, and list details to sync with your data warehouse or BI tools, automating marketing insights and analytics + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-zoho-campaign:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-zoho-campaign build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-zoho-campaign test +``` + diff --git a/airbyte-integrations/connectors/source-zoho-campaign/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zoho-campaign/acceptance-test-config.yml new file mode 100644 index 000000000000..f3d3459412f2 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-campaign/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-zoho-campaign:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-zoho-campaign/icon.svg b/airbyte-integrations/connectors/source-zoho-campaign/icon.svg new file mode 100644 index 000000000000..e1657142b390 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-campaign/icon.svg @@ -0,0 +1,337 @@ + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-zoho-campaign/manifest.yaml b/airbyte-integrations/connectors/source-zoho-campaign/manifest.yaml new file mode 100644 index 000000000000..2f92bd5e012a --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-campaign/manifest.yaml @@ -0,0 +1,1367 @@ +version: 5.13.0 + +type: DeclarativeSource + +description: >- + The Zoho Campaigns connector enables seamless integration of mailing lists, + campaign data, and subscriber management into your data workflows. Easily + extract subscriber information, campaign reports, and list details to sync + with your data warehouse or BI tools, automating marketing insights and + analytics + +check: + type: CheckStream + stream_names: + - recent_campaigns + +definitions: + streams: + recent_campaigns: + type: DeclarativeStream + name: recent_campaigns + primary_key: + - campaign_key + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /recentcampaigns + http_method: GET + request_parameters: + resfmt: JSON + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 1800 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - recent_campaigns + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: fromindex + page_size_option: + type: RequestOption + field_name: range + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/recent_campaigns" + subscribers: + type: DeclarativeStream + name: subscribers + primary_key: + - contact_email + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /getlistsubscribers + http_method: GET + request_parameters: + resfmt: JSON + listkey: "{{ stream_partition.mailinglist }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 1800 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - list_of_details + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: fromindex + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: range + pagination_strategy: + type: OffsetIncrement + page_size: 100 + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: listkey + partition_field: mailinglist + stream: + $ref: "#/definitions/streams/mailing_lists" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/subscribers" + campaign_recipients: + type: DeclarativeStream + name: campaign_recipients + primary_key: + - contactid + - sent_time + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /getcampaignrecipientsdata + http_method: POST + request_parameters: + resfmt: JSON + campaignkey: "{{ stream_partition.campaign }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 1800 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - list_of_details + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: fromindex + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: range + pagination_strategy: + type: OffsetIncrement + page_size: 100 + partition_router: + - type: ListPartitionRouter + values: + - sentcontacts + - sentleads + - openedleads + - optoutleads + - spamleads + - unopenedleads + - clickedleads + - senthardbounce + - sentsoftbounce + - unsentleads + cursor_field: action + request_option: + type: RequestOption + inject_into: request_parameter + field_name: action + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: campaign_key + partition_field: campaign + stream: + $ref: "#/definitions/streams/recent_campaigns" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/campaign_recipients" + campaign_reports: + type: DeclarativeStream + name: campaign_reports + primary_key: + - campaign_name + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /campaignreports + http_method: GET + request_parameters: + resfmt: JSON + campaignkey: "{{ stream_partition.campaign }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 1800 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - campaign-reports + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: campaign_key + partition_field: campaign + stream: + $ref: "#/definitions/streams/recent_campaigns" + transformations: + - type: AddFields + fields: + - path: + - campaign_id + value: "{{ stream_slice.campaign }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/campaign_reports" + recent_sent_campaigns: + type: DeclarativeStream + name: recent_sent_campaigns + primary_key: + - campaign_key + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /recentsentcampaigns + http_method: GET + request_parameters: + resfmt: JSON + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 1800 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - recent_sent_campaigns + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/recent_sent_campaigns" + mailing_lists: + type: DeclarativeStream + name: mailing_lists + primary_key: + - listunino + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /getmailinglists + http_method: GET + request_parameters: + resfmt: JSON + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + response_filters: + - type: HttpResponseFilter + action: IGNORE + error_message: "{{ response.code == 2401 }}" + - type: DefaultErrorHandler + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - list_of_details + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: fromindex + page_size_option: + type: RequestOption + field_name: range + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/mailing_lists" + totalcontacts: + type: DeclarativeStream + name: totalcontacts + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /listsubscriberscount + http_method: GET + request_parameters: + resfmt: JSON + listkey: "{{ stream_partition.list }}" + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 1800 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/totalcontacts" + topics: + type: DeclarativeStream + name: topics + primary_key: + - topicId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /topics + http_method: GET + request_parameters: + resfmt: JSON + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 1800 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - topicDetails + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/topics" + campaign_details: + type: DeclarativeStream + name: campaign_details + primary_key: + - campaign_name + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /getcampaigndetails + http_method: GET + request_parameters: + resfmt: JSON + campaignkey: "{{ stream_partition.campaign }}" + campaigntype: abtesting + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 1800 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - campaign-details + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: campaign_key + partition_field: campaign + stream: + $ref: "#/definitions/streams/recent_campaigns" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/campaign_details" + all_tags: + type: DeclarativeStream + name: all_tags + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tag/getalltags + http_method: GET + request_parameters: + resfmt: JSON + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 1800 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - tags + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/all_tags" + base_requester: + type: HttpRequester + url_base: https://campaigns.zoho.{{ config["data_center"] }}/api/v1.1 + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id_2\"] }}" + grant_type: refresh_token + client_secret: "{{ config[\"client_secret_2\"] }}" + refresh_token: "{{ config[\"client_refresh_token\"] }}" + refresh_request_body: {} + token_refresh_endpoint: https://accounts.zoho.{{ config["data_center"] }}/oauth/v2/token + +streams: + - $ref: "#/definitions/streams/recent_campaigns" + - $ref: "#/definitions/streams/subscribers" + - $ref: "#/definitions/streams/campaign_recipients" + - $ref: "#/definitions/streams/campaign_reports" + - $ref: "#/definitions/streams/recent_sent_campaigns" + - $ref: "#/definitions/streams/mailing_lists" + - $ref: "#/definitions/streams/totalcontacts" + - $ref: "#/definitions/streams/topics" + - $ref: "#/definitions/streams/campaign_details" + - $ref: "#/definitions/streams/all_tags" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id_2 + - client_secret_2 + - client_refresh_token + - data_center + properties: + client_id_2: + type: string + order: 0 + title: Client ID + airbyte_secret: true + client_secret_2: + type: string + order: 1 + title: Client secret + airbyte_secret: true + client_refresh_token: + type: string + order: 2 + title: Refresh token + airbyte_secret: true + data_center: + type: string + enum: + - com + - eu + - in + - com.au + - .jp + - .com.cn + order: 3 + title: Data Center + additionalProperties: true + +metadata: + autoImportSchema: + recent_campaigns: true + subscribers: true + campaign_recipients: true + campaign_reports: true + recent_sent_campaigns: true + mailing_lists: true + totalcontacts: true + topics: true + campaign_details: true + all_tags: true + testedStreams: + recent_campaigns: + streamHash: 052f317ac38ff9053fcf422d6d74e98b41b6d6fb + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + subscribers: + streamHash: d3396ae328d2f89c19cd5e43ff992471f53dd2d0 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + campaign_recipients: + streamHash: 76b350a63b309d97e64422702c1819f81ac05f24 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + campaign_reports: + streamHash: 4d4771e0500c2dd6b3a00f1bc9c035a30bb89d8b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + recent_sent_campaigns: + streamHash: f725af920df289a0cd6d56f41a39125125844d5c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + mailing_lists: + streamHash: 6fb0504ab9f914cb8ffc60915f8e33256bb9b8fb + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + totalcontacts: + hasRecords: true + streamHash: 0e65a5ac5c8668c0fc525db00b39df7925f056c6 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + topics: + streamHash: cdc2bebe838eb98ad13d5c51b7484bb8a925ec82 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + campaign_details: + streamHash: 0cc0ec37e3628ed58daa3b9c91b7a7572cc35447 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + all_tags: + streamHash: 2f50415e2d6e086d57a235042080daa49c75009e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://www.zoho.com/campaigns/help/developers/access-token.html + +schemas: + recent_campaigns: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + campaign_key: + type: string + campaign_name: + type: + - string + - "null" + campaign_preview: + type: + - string + - "null" + campaign_status: + type: + - string + - "null" + campaigntype: + type: + - string + - "null" + created_date_string: + type: + - string + - "null" + created_time: + type: + - string + - "null" + created_time_gmt: + type: + - string + - "null" + folder_id: + type: + - string + - "null" + from_email: + type: + - string + - "null" + is_hybrid: + type: + - string + - "null" + reply_to: + type: + - string + - "null" + sent_date_string: + type: + - string + - "null" + sent_time: + type: + - string + - "null" + sent_time_gmt: + type: + - string + - "null" + sent_time_zone: + type: + - string + - "null" + subject: + type: + - string + - "null" + updated_date_string: + type: + - string + - "null" + updated_time: + type: + - string + - "null" + updated_time_gmt: + type: + - string + - "null" + zuid: + type: + - string + - "null" + required: + - campaign_key + subscribers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + added_time: + type: + - string + - "null" + companyname: + type: + - string + - "null" + contact_email: + type: string + firstname: + type: + - string + - "null" + lastname: + type: + - string + - "null" + phone: + type: + - string + - "null" + zuid: + type: + - string + - "null" + required: + - contact_email + campaign_recipients: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + address: + type: + - string + - "null" + city: + type: + - string + - "null" + companyname: + type: + - string + - "null" + contactemailaddress: + type: + - string + - "null" + contactfn: + type: + - string + - "null" + contactid: + type: string + contactln: + type: + - string + - "null" + contactstatus: + type: + - string + - "null" + country: + type: + - string + - "null" + facebook_handle: + type: + - string + - "null" + jobtitle: + type: + - string + - "null" + linkedin_handle: + type: + - string + - "null" + mobile: + type: + - string + - "null" + note: + type: + - string + - "null" + phone: + type: + - string + - "null" + secondary_email: + type: + - string + - "null" + sent_time: + type: string + sentdate: + type: + - string + - "null" + state: + type: + - string + - "null" + timezone: + type: + - string + - "null" + title: + type: + - string + - "null" + twitter_handle: + type: + - string + - "null" + website: + type: + - string + - "null" + zipcode: + type: + - string + - "null" + required: + - contactid + - sent_time + campaign_reports: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + autoreply_count: + type: + - string + - "null" + bounce_percent: + type: + - string + - "null" + bounces_count: + type: + - string + - "null" + campaign_id: + type: + - string + - "null" + campaign_name: + type: string + clicksperopenrate: + type: + - string + - "null" + complaints_count: + type: + - string + - "null" + complaints_percent: + type: + - string + - "null" + delivered_count: + type: + - string + - "null" + delivered_percent: + type: + - string + - "null" + emails_sent_count: + type: + - string + - "null" + forward_percent: + type: + - string + - "null" + forwards_count: + type: + - string + - "null" + hardbounce_count: + type: + - string + - "null" + open_percent: + type: + - string + - "null" + opens_count: + type: + - string + - "null" + softbounce_count: + type: + - string + - "null" + spam_percent: + type: + - string + - "null" + spams_count: + type: + - string + - "null" + unique_clicked_percent: + type: + - string + - "null" + unique_clicks_count: + type: + - string + - "null" + unopened: + type: + - string + - "null" + unopened_percent: + type: + - string + - "null" + unsent_count: + type: + - string + - "null" + unsent_percent: + type: + - string + - "null" + unsub_count: + type: + - string + - "null" + unsubscribe_percent: + type: + - string + - "null" + required: + - campaign_name + recent_sent_campaigns: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + campaign_key: + type: string + campaign_name: + type: + - string + - "null" + campaign_status: + type: + - string + - "null" + campaignid: + type: + - string + - "null" + campaigntype: + type: + - string + - "null" + created_date_string: + type: + - string + - "null" + created_time: + type: + - string + - "null" + created_time_gmt: + type: + - string + - "null" + folder_id: + type: + - string + - "null" + from_name: + type: + - string + - "null" + is_hybrid: + type: + - string + - "null" + previewtype: + type: + - string + - "null" + sent_date_string: + type: + - string + - "null" + sent_time: + type: + - string + - "null" + sent_time_gmt: + type: + - string + - "null" + sent_time_zone: + type: + - string + - "null" + zuid: + type: + - string + - "null" + required: + - campaign_key + mailing_lists: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_time: + type: + - string + - "null" + created_time_gmt: + type: + - string + - "null" + date: + type: + - string + - "null" + deletable: + type: + - string + - "null" + editable: + type: + - string + - "null" + is_public: + type: + - string + - "null" + issmart: + type: + - string + - "null" + list_campaigns_count: + type: + - string + - "null" + list_created_date: + type: + - string + - "null" + list_created_time: + type: + - string + - "null" + listdesc: + type: + - string + - "null" + listdgs: + type: + - string + - "null" + listkey: + type: + - string + - "null" + listname: + type: + - string + - "null" + listnotifications: + type: + - string + - "null" + listtype: + type: + - string + - "null" + listunino: + type: string + lockstatus: + type: + - string + - "null" + noofbouncecnt: + type: + - string + - "null" + noofcontacts: + type: + - string + - "null" + noofunsubcnt: + type: + - string + - "null" + otherslist: + type: + - string + - "null" + owner: + type: + - string + - "null" + segments: + type: + - object + - "null" + sentcnt: + type: + - string + - "null" + servicetype: + type: + - string + - "null" + sno: + type: + - string + - "null" + updated_time_gmt: + type: + - string + - "null" + zuid: + type: + - string + - "null" + zx: + type: + - string + - "null" + required: + - listunino + totalcontacts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - string + - "null" + Code: + type: + - string + - "null" + URI: + type: + - string + - "null" + message: + type: + - string + - "null" + status: + type: + - string + - "null" + topics: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + primaryList: + type: + - number + - "null" + topicDesc: + type: + - string + - "null" + topicId: + type: string + topicName: + type: + - string + - "null" + required: + - topicId + campaign_details: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + advanceTypeString: + type: + - string + - "null" + campaign_key: + type: + - string + - "null" + campaign_name: + type: string + campaign_preview: + type: + - string + - "null" + campaigntype: + type: + - string + - "null" + created_date_string: + type: + - string + - "null" + created_time: + type: + - string + - "null" + created_time_gmt: + type: + - string + - "null" + email_from: + type: + - string + - "null" + email_options: + type: + - string + - "null" + email_subject: + type: + - string + - "null" + email_type: + type: + - string + - "null" + encodeName: + type: + - string + - "null" + folder_id: + type: + - string + - "null" + isGAConfig: + type: + - string + - "null" + isReplyTrackingEnabled: + type: + - string + - "null" + isToNameConfig: + type: + - string + - "null" + isWistia: + type: + - string + - "null" + is_advance: + type: + - string + - "null" + is_hybrid: + type: + - string + - "null" + modified_time: + type: + - string + - "null" + modified_time_gmt: + type: + - string + - "null" + modifieddate: + type: + - string + - "null" + preheader: + type: + - string + - "null" + reply_to: + type: + - string + - "null" + schedule_type: + type: + - string + - "null" + sender_name: + type: + - string + - "null" + sent_date_string: + type: + - string + - "null" + sent_time: + type: + - string + - "null" + sent_time_gmt: + type: + - string + - "null" + sent_time_zone: + type: + - string + - "null" + sent_time_zone_short: + type: + - string + - "null" + topic_id: + type: + - string + - "null" + topic_name: + type: + - string + - "null" + updated_date_string: + type: + - string + - "null" + updated_time: + type: + - string + - "null" + updated_time_gmt: + type: + - string + - "null" + webAutoStatus: + type: + - string + - "null" + zuid: + type: + - string + - "null" + required: + - campaign_name + all_tags: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + "169443000000020045": + type: + - object + - "null" + properties: + is_crm_tag: + type: + - string + - "null" + tag_color: + type: + - string + - "null" + tag_created_time: + type: + - string + - "null" + tag_desc: + type: + - string + - "null" + tag_modified_time: + type: + - string + - "null" + tag_name: + type: + - string + - "null" + tagged_contact_count: + type: + - string + - "null" + tagowner: + type: + - string + - "null" + zuid: + type: + - string + - "null" diff --git a/airbyte-integrations/connectors/source-zoho-campaign/metadata.yaml b/airbyte-integrations/connectors/source-zoho-campaign/metadata.yaml new file mode 100644 index 000000000000..3453a623e01b --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-campaign/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "https://campaigns.zoho.*/api/" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-zoho-campaign + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.13.0@sha256:ffc5977f59e1f38bf3f5dd70b6fa0520c2450ebf85153c5a8df315b8c918d5c3 + connectorSubtype: api + connectorType: source + definitionId: 1d0d5605-604b-401a-8a69-92f841a95a90 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-zoho-campaign + githubIssueLabel: source-zoho-campaign + icon: icon.svg + license: MIT + name: Zoho Campaign + releaseDate: 2024-10-14 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/zoho-campaign + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/zoho-campaign.md b/docs/integrations/sources/zoho-campaign.md new file mode 100644 index 000000000000..d61471cf53d8 --- /dev/null +++ b/docs/integrations/sources/zoho-campaign.md @@ -0,0 +1,37 @@ +# Zoho Campaign +The Zoho Campaigns connector enables seamless integration of mailing lists, campaign data, and subscriber management into your data workflows. Easily extract subscriber information, campaign reports, and list details to sync with your data warehouse or BI tools, automating marketing insights and analytics + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `client_id_2` | `string` | Client ID. | | +| `client_secret_2` | `string` | Client secret. | | +| `client_refresh_token` | `string` | Refresh token. | | +| `domain` | `string` | Domain. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| recent_campaigns | campaign_key | DefaultPaginator | ✅ | ❌ | +| campaign_recipients | contactid, sent_time | DefaultPaginator | ✅ | ❌ | +| campaign_details | campaign_name | No pagination | ✅ | ❌ | +| campaign_reports | campaign_name | No pagination | ✅ | ❌ | +| recent_sent_campaigns | campaign_key | DefaultPaginator | ✅ | ❌ | +| mailing_lists | listunino | DefaultPaginator | ✅ | ❌ | +| subscribers | contact_email | DefaultPaginator | ✅ | ❌ | +| lists | listkey | No pagination | ✅ | ❌ | +| total_contacts | | No pagination | ✅ | ❌ | +| topics | topicId | No pagination | ✅ | ❌ | +| all_tags | | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-14 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From b790cae6bb6882c41a271261136a679585cdcb08 Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Tue, 5 Nov 2024 03:17:33 +0530 Subject: [PATCH 579/808] Source Salesloft: Migrate to manifest-only format with components (#47298) Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-salesloft/README.md | 87 +- .../connectors/source-salesloft/__init__.py | 3 - .../acceptance-test-config.yml | 2 +- ...custom_authenticators.py => components.py} | 0 .../connectors/source-salesloft/main.py | 8 - .../connectors/source-salesloft/manifest.yaml | 12602 ++++++++++++++++ .../connectors/source-salesloft/metadata.yaml | 8 +- .../connectors/source-salesloft/poetry.lock | 1480 -- .../source-salesloft/pyproject.toml | 29 - .../source_salesloft/__init__.py | 8 - .../source_salesloft/manifest.yaml | 4476 ------ .../source-salesloft/source_salesloft/run.py | 15 - .../source_salesloft/source.py | 18 - .../source-salesloft/unit_tests/conftest.py | 20 - .../unit_tests/test_source.py | 29 - .../unit_tests/test_streams.py | 88 - docs/integrations/sources/salesloft.md | 1 + 17 files changed, 12636 insertions(+), 6238 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-salesloft/__init__.py rename airbyte-integrations/connectors/source-salesloft/{source_salesloft/custom_authenticators.py => components.py} (100%) delete mode 100644 airbyte-integrations/connectors/source-salesloft/main.py create mode 100644 airbyte-integrations/connectors/source-salesloft/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-salesloft/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-salesloft/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-salesloft/source_salesloft/__init__.py delete mode 100644 airbyte-integrations/connectors/source-salesloft/source_salesloft/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-salesloft/source_salesloft/run.py delete mode 100644 airbyte-integrations/connectors/source-salesloft/source_salesloft/source.py delete mode 100644 airbyte-integrations/connectors/source-salesloft/unit_tests/conftest.py delete mode 100644 airbyte-integrations/connectors/source-salesloft/unit_tests/test_source.py delete mode 100644 airbyte-integrations/connectors/source-salesloft/unit_tests/test_streams.py diff --git a/airbyte-integrations/connectors/source-salesloft/README.md b/airbyte-integrations/connectors/source-salesloft/README.md index fcf3c5dbd01b..fa381e8bc5f4 100644 --- a/airbyte-integrations/connectors/source-salesloft/README.md +++ b/airbyte-integrations/connectors/source-salesloft/README.md @@ -1,47 +1,22 @@ # Salesloft source connector -This is the repository for the Salesloft configuration based source connector. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/salesloft). +This directory contains the manifest-only connector for `source-salesloft`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development - -### Prerequisites -* Python (^3.9) -* Poetry (^1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) - -### Installing the connector - -From this connector directory, run: -```bash -poetry install --with dev -``` - -### Create credentials -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/salesloft) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_salesloft/spec.yaml` file. - -Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -See `sample_files/sample_config.json` for a sample config file. - - -### Locally running the connector -``` -poetry run source-salesloft spec -poetry run source-salesloft check --config secrets/config.json -poetry run source-salesloft discover --config secrets/config.json -poetry run source-salesloft read --config secrets/config.json --catalog integration_tests/configured_catalog.json -``` +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/salesloft). -### Running tests +## Local development -To run tests locally, from the connector directory run: +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -``` -poetry run pytest tests -``` +If you prefer to develop locally, you can follow the instructions below. ### Building the docker image +You can build any manifest-only connector with `airbyte-ci`: + 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: @@ -51,46 +26,40 @@ airbyte-ci connectors --name=source-salesloft build An image will be available on your host with the tag `airbyte/source-salesloft:dev`. +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/salesloft) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. + ### Running as a docker container -Then run any of the connector commands as follows: -``` + +Then run any of the standard source connector commands: + +```bash docker run --rm airbyte/source-salesloft:dev spec docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-salesloft:dev check --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-salesloft:dev discover --config /secrets/config.json docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-salesloft:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): -```bash -airbyte-ci connectors --name=source-salesloft test -``` - -### Customizing acceptance Tests - -Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. -### Dependency Management - -All of your dependencies should be managed via Poetry. -To add a new dependency, run: ```bash -poetry add +airbyte-ci connectors --name=source-salesloft test ``` -Please commit the changes to `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-salesloft test` -2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + +If you want to contribute changes to `source-salesloft`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-salesloft test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): - bump the `dockerImageTag` value in in `metadata.yaml` - - bump the `version` value in `pyproject.toml` -3. Make sure the `metadata.yaml` content is up to date. 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/salesloft.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. -8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. +8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-salesloft/__init__.py b/airbyte-integrations/connectors/source-salesloft/__init__.py deleted file mode 100644 index 66f6de8cb2bb..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-salesloft/acceptance-test-config.yml b/airbyte-integrations/connectors/source-salesloft/acceptance-test-config.yml index f16683cb483a..af50efd60922 100644 --- a/airbyte-integrations/connectors/source-salesloft/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-salesloft/acceptance-test-config.yml @@ -4,7 +4,7 @@ connector_image: airbyte/source-salesloft:dev acceptance_tests: spec: tests: - - spec_path: "source_salesloft/spec.yaml" + - spec_path: "manifest.yaml" connection: tests: - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-salesloft/source_salesloft/custom_authenticators.py b/airbyte-integrations/connectors/source-salesloft/components.py similarity index 100% rename from airbyte-integrations/connectors/source-salesloft/source_salesloft/custom_authenticators.py rename to airbyte-integrations/connectors/source-salesloft/components.py diff --git a/airbyte-integrations/connectors/source-salesloft/main.py b/airbyte-integrations/connectors/source-salesloft/main.py deleted file mode 100644 index 7a6c7f75fe43..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from source_salesloft.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-salesloft/manifest.yaml b/airbyte-integrations/connectors/source-salesloft/manifest.yaml new file mode 100644 index 000000000000..41caeddf6158 --- /dev/null +++ b/airbyte-integrations/connectors/source-salesloft/manifest.yaml @@ -0,0 +1,12602 @@ +version: 4.3.2 +type: DeclarativeSource +check: + type: CheckStream + stream_names: + - users +definitions: + custom_oauth_authenticator: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + bearer_authenticator: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + selective_authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + streams: + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + guid: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + job_role: + type: + - "null" + - string + active: + type: + - "null" + - boolean + time_zone: + type: + - "null" + - string + slack_username: + type: + - "null" + - string + twitter_handle: + type: + - "null" + - string + email: + type: + - "null" + - string + email_client_email_address: + type: + - "null" + - string + sending_email_address: + type: + - "null" + - string + from_address: + type: + - "null" + - string + full_email_address: + type: + - "null" + - string + bcc_email_address: + type: + - "null" + - string + email_signature: + type: + - "null" + - string + email_signature_type: + type: + - "null" + - string + email_signature_click_tracking_disabled: + type: + - "null" + - boolean + team_admin: + type: + - "null" + - boolean + local_dial_enabled: + type: + - "null" + - boolean + click_to_call_enabled: + type: + - "null" + - boolean + email_client_configured: + type: + - "null" + - boolean + crm_connected: + type: + - "null" + - boolean + external_feature_flags: + type: + - "null" + - object + additionalProperties: true + properties: {} + phone_client: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + phone_number_assignment: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + group: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + team: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + role: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + - string + account_tiers: + type: DeclarativeStream + name: account_tiers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /account_tiers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + order: + type: + - "null" + - integer + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + import: + type: DeclarativeStream + name: import + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /imports + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + current_people_count: + type: + - "null" + - integer + imported_people_count: + type: + - "null" + - integer + person_stages: + type: DeclarativeStream + name: person_stages + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /person_stages + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + order: + type: + - "null" + - integer + phone_number_assignments: + type: DeclarativeStream + name: phone_number_assignments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /phone_number_assignments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + number: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + steps: + type: DeclarativeStream + name: steps + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /steps + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + disabled: + type: + - "null" + - boolean + type: + type: + - "null" + - string + name: + type: + - "null" + - string + display_name: + type: + - "null" + - string + day: + type: + - "null" + - integer + step_number: + type: + - "null" + - integer + details: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + team_template_attachments: + type: DeclarativeStream + name: team_template_attachments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /team_template_attachments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + attachment_id: + type: + - "null" + - integer + team_template: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + name: + type: + - "null" + - string + download_url: + type: + - "null" + - string + attachment_file_size: + type: + - "null" + - integer + email_template_attachments: + type: DeclarativeStream + name: email_template_attachments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: email_template_attachments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + attachment_id: + type: + - "null" + - integer + team_template: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + name: + type: + - "null" + - string + download_url: + type: + - "null" + - string + attachment_file_size: + type: + - "null" + - integer + crm_users: + type: DeclarativeStream + name: crm_users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: crm_users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + crm_id: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + groups: + type: DeclarativeStream + name: groups + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /groups + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + parent_id: + type: + - "null" + - integer + custom_fields: + type: DeclarativeStream + name: custom_fields + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /custom_fields + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + name: + type: + - "null" + - string + field_type: + type: + - "null" + - string + value_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + call_dispositions: + type: DeclarativeStream + name: call_dispositions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /call_dispositions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + call_sentiments: + type: DeclarativeStream + name: call_sentiments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /call_sentiments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + meetings: + type: DeclarativeStream + name: meetings + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /meetings + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + title: + type: + - "null" + - string + start_time: + type: + - "null" + - string + format: date-time + end_time: + type: + - "null" + - string + format: date-time + calendar_id: + type: + - "null" + - string + calendar_type: + type: + - "null" + - string + meeting_type: + type: + - "null" + - string + recipient_name: + type: + - "null" + - string + recipient_email: + type: + - "null" + - string + location: + type: + - "null" + - string + description: + type: + - "null" + - string + event_id: + type: + - "null" + - string + account_id: + type: + - "null" + - string + task_id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + guests: + type: + - "null" + - array + items: + type: + - "null" + - string + attendees: + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + properties: + email: + type: + - "null" + - string + name: + type: + - "null" + - string + organizer: + type: + - "null" + - boolean + status: + type: + - "null" + - string + status_changed: + type: + - "null" + - boolean + deleted_at: + type: + - "null" + - string + format: date-time + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + booked_by_user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + crm_references: + type: + - "null" + - object + additionalProperties: true + event_source: + type: + - "null" + - string + canceled_at: + type: + - "null" + - string + format: date-time + all_day: + type: + - "null" + - boolean + no_show: + type: + - "null" + - boolean + crm_custom_fields: + type: + - "null" + - object + additionalProperties: true + strict_attribution: + type: + - "null" + - boolean + i_cal_uid: + type: + - "null" + - string + status: + type: + - "null" + - string + reschedule_status: + type: + - "null" + - string + owned_by_meetings_settings: + type: + - "null" + - object + additionalProperties: true + properties: + id: + email_address: + - "null" + - string + booked_by_meetings_settings: + type: + - "null" + - object + additionalProperties: true + properties: + id: + email_address: + - "null" + - string + people: + type: DeclarativeStream + name: people + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /people + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + last_contacted_at: + type: + - "null" + - string + format: date-time + last_replied_at: + type: + - "null" + - string + format: date-time + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + display_name: + type: + - "null" + - string + email_address: + type: + - "null" + - string + full_email_address: + type: + - "null" + - string + secondary_email_address: + type: + - "null" + - string + personal_email_address: + type: + - "null" + - string + phone: + type: + - "null" + - string + phone_extension: + type: + - "null" + - string + home_phone: + type: + - "null" + - string + mobile_phone: + type: + - "null" + - string + linkedin_url: + type: + - "null" + - string + title: + type: + - "null" + - string + city: + type: + - "null" + - string + state: + type: + - "null" + - string + country: + type: + - "null" + - string + work_city: + type: + - "null" + - string + work_state: + type: + - "null" + - string + work_country: + type: + - "null" + - string + crm_url: + type: + - "null" + - string + crm_id: + type: + - "null" + - string + crm_object_type: + type: + - "null" + - string + owner_crm_id: + type: + - "null" + - string + person_company_name: + type: + - "null" + - string + person_company_website: + type: + - "null" + - string + person_company_industry: + type: + - "null" + - string + do_not_contact: + type: + - "null" + - boolean + bouncing: + type: + - "null" + - boolean + locale: + type: + - "null" + - string + personal_website: + type: + - "null" + - string + twitter_handle: + type: + - "null" + - string + last_contacted_type: + type: + - "null" + - string + job_seniority: + type: + - "null" + - string + custom_fields: + type: + - "null" + - object + additionalProperties: true + properties: {} + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + contact_restrictions: + type: + - "null" + - array + items: + type: + - "null" + - string + counts: + type: + - "null" + - object + additionalProperties: true + properties: + emails_sent: + type: + - "null" + - integer + emails_viewed: + type: + - "null" + - integer + emails_clicked: + type: + - "null" + - integer + emails_replied_to: + type: + - "null" + - integer + emails_bounced: + type: + - "null" + - integer + calls: + type: + - "null" + - integer + account: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + owner: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_contacted_by: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + import: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + person_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + most_recent_cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_completed_step_cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_completed_step: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + cadences: + type: DeclarativeStream + name: cadences + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /cadences + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + team_cadence: + type: + - "null" + - boolean + shared: + type: + - "null" + - boolean + remove_bounces_enabled: + type: + - "null" + - boolean + remove_replies_enabled: + type: + - "null" + - boolean + opt_out_link_included: + type: + - "null" + - boolean + name: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + creator: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + owner: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + bounced_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + replied_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + added_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + finished_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + counts: + type: + - "null" + - object + additionalProperties: true + properties: + cadence_people: + type: + - "null" + - integer + target_daily_people: + type: + - "null" + - integer + latest_active_date: + type: + - "null" + - string + format: date + cadence_memberships: + type: DeclarativeStream + name: cadence_memberships + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /cadence_memberships + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + added_at: + type: + - "null" + - string + format: date-time + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + person_deleted: + type: + - "null" + - boolean + currently_on_cadence: + type: + - "null" + - boolean + current_state: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + person: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + user: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + latest_action: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + counts: + type: + - "null" + - object + additionalProperties: true + properties: + views: + type: + - "null" + - integer + clicks: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + calls: + type: + - "null" + - integer + sent_emails: + type: + - "null" + - integer + bounces: + type: + - "null" + - integer + emails: + type: DeclarativeStream + name: emails + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /activities/emails + http_method: GET + request_parameters: + sent_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + recipient_email_address: + type: + - "null" + - string + status: + type: + - "null" + - string + bounced: + type: + - "null" + - boolean + send_after: + type: + - "null" + - string + format: date-time + sent_at: + type: + - "null" + - string + format: date-time + view_tracking: + type: + - "null" + - boolean + click_tracking: + type: + - "null" + - boolean + personalization: + type: + - "null" + - string + counts: + type: + - "null" + - object + additionalProperties: true + properties: + clicks: + type: + - "null" + - integer + views: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + unique_devices: + type: + - "null" + - integer + unique_locations: + type: + - "null" + - integer + attachments: + type: + - "null" + - integer + headers: + type: + - "null" + - object + additionalProperties: true + properties: + In-Reply-To: + type: + - "null" + - string + References: + type: + - "null" + - string + to: + type: + - "null" + - string + cc: + type: + - "null" + - string + in_reply_to: + type: + - "null" + - string + bcc: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + recipient: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + mailing: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + action: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + crm_activity: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + step: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + email_template: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + calls: + type: DeclarativeStream + name: calls + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /activities/calls + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + to: + type: + - "null" + - string + duration: + type: + - "null" + - integer + sentiment: + type: + - "null" + - string + disposition: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + action: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + called_person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + crm_activity: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + note: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + accounts: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /accounts + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + domain: + type: + - "null" + - string + conversational_name: + type: + - "null" + - string + description: + type: + - "null" + - string + phone: + type: + - "null" + - string + website: + type: + - "null" + - string + linkedin_url: + type: + - "null" + - string + twitter_handle: + type: + - "null" + - string + street: + type: + - "null" + - string + city: + type: + - "null" + - string + state: + type: + - "null" + - string + postal_code: + type: + - "null" + - string + country: + type: + - "null" + - string + locale: + type: + - "null" + - string + industry: + type: + - "null" + - string + company_type: + type: + - "null" + - string + founded: + type: + - "null" + - string + revenue_range: + type: + - "null" + - string + size: + type: + - "null" + - string + crm_id: + type: + - "null" + - string + crm_url: + type: + - "null" + - string + crm_object_type: + type: + - "null" + - string + owner_crm_id: + type: + - "null" + - string + last_contacted_at: + type: + - "null" + - string + format: date-time + last_contacted_type: + type: + - "null" + - string + do_not_contact: + type: + - "null" + - boolean + counts: + type: + - "null" + - object + additionalProperties: true + properties: + people: + type: + - "null" + - integer + owner: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + creator: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + last_contacted_by: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + last_contacted_person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + company_stage: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + account_tier: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + account_stages: + type: DeclarativeStream + name: account_stages + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /account_stages + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + order: + type: + - "null" + - integer + actions: + type: DeclarativeStream + name: actions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /actions + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + due: + type: + - "null" + - boolean + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + type: + type: + - "null" + - string + status: + type: + - "null" + - string + due_on: + type: + - "null" + - string + format: date-time + multitouch_group_id: + type: + - "null" + - integer + action_details: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + email_templates: + type: DeclarativeStream + name: email_templates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /email_templates + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + title: + type: + - "null" + - string + subject: + type: + - "null" + - string + body: + type: + - "null" + - string + body_preview: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + last_used_at: + type: + - "null" + - string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + shared: + type: + - "null" + - boolean + open_tracking_enabled: + type: + - "null" + - boolean + click_tracking_enabled: + type: + - "null" + - boolean + cadence_template: + type: + - "null" + - boolean + counts: + type: + - "null" + - object + additionalProperties: true + properties: + sent_emails: + type: + - "null" + - integer + views: + type: + - "null" + - integer + clicks: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + bounces: + type: + - "null" + - integer + template_owner: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + team_template: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + _links: + type: + - "null" + - object + additionalProperties: true + properties: + attachments: + type: + - "null" + - string + groups: + type: + - "null" + - array + items: + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + notes: + type: DeclarativeStream + name: notes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /notes + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + content: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + associated_with: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + call: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + team_templates: + type: DeclarativeStream + name: team_templates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /team_templates + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: string + title: + type: + - "null" + - string + subject: + type: + - "null" + - string + body: + type: + - "null" + - string + body_preview: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + last_used_at: + type: + - "null" + - string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + last_modified_at: + type: + - "null" + - string + format: date-time + open_tracking_enabled: + type: + - "null" + - boolean + click_tracking_enabled: + type: + - "null" + - boolean + counts: + type: + - "null" + - object + additionalProperties: true + properties: + sent_emails: + type: + - "null" + - integer + views: + type: + - "null" + - integer + clicks: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + bounces: + type: + - "null" + - integer + last_modified_user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + _links: + type: + - "null" + - object + additionalProperties: true + properties: + attachments: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + crm_activities: + type: DeclarativeStream + name: crm_activities + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /crm_activities + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + subject: + type: + - "null" + - string + description: + type: + - "null" + - string + crm_id: + type: + - "null" + - string + activity_type: + type: + - "null" + - string + error: + type: + - "null" + - string + custom_crm_fields: + type: + - "null" + - object + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + successes: + type: DeclarativeStream + name: successes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /successes + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + succeeded_at: + type: + - "null" + - string + format: date-time + success_window_started_at: + type: + - "null" + - string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_email: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_call: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_action: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + latest_cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + counts: + type: + - "null" + - object + additionalProperties: true + properties: + total_emails: + type: + - "null" + - integer + total_calls: + type: + - "null" + - integer + total_other_touches: + type: + - "null" + - integer + call_data_records: + type: DeclarativeStream + name: call_data_records + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /call_data_records + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + to: + type: + - "null" + - string + from: + type: + - "null" + - string + duration: + type: + - "null" + - integer + direction: + type: + - "null" + - string + status: + type: + - "null" + - string + call_type: + type: + - "null" + - string + call_uuid: + type: + - "null" + - string + recording: + type: + - "null" + - object + additionalProperties: true + properties: + url: + type: + - "null" + - string + status: + type: + - "null" + - string + recording_status: + type: + - "null" + - string + call: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + called_person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + searches: + type: DeclarativeStream + name: searches + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /meetings/settings/searches + http_method: POST + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined + else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + user_slug: + type: + - "null" + - string + primary_calendar_id: + type: + - "null" + - string + primary_calendar_name: + type: + - "null" + - string + email_address: + type: + - "null" + - string + user_details: + type: + - "null" + - object + additionalProperties: true + calendar_type: + type: + - "null" + - string + title: + type: + - "null" + - string + description: + type: + - "null" + - string + location: + type: + - "null" + - string + default_meeting_length: + type: + - "null" + - integer + availability_limit_enabled: + type: + - "null" + - boolean + availability_limit: + type: + - "null" + - integer + schedule_delay: + type: + - "null" + - integer + buffer_time_duration: + type: + - "null" + - integer + schedule_buffer_enabled: + type: + - "null" + - boolean + times_available: + type: + - "null" + - object + additionalProperties: true + allow_booking_on_behalf: + type: + - "null" + - boolean + allow_booking_overtime: + type: + - "null" + - boolean + allow_event_overlap: + type: + - "null" + - boolean + allow_event_detail: + type: + - "null" + - boolean + enable_dynamic_location: + type: + - "null" + - boolean + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + time_zone: + type: + - "null" + - string + primary_calendar_connection_failed: + type: + - "null" + - boolean + enable_calendar_sync: + type: + - "null" + - boolean + reschedule_meetings_enabled: + type: + - "null" + - boolean + active_meeting_url: + type: + - "null" + - object + additionalProperties: true + properties: + url: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + base_requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" +streams: +- type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + guid: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + job_role: + type: + - "null" + - string + active: + type: + - "null" + - boolean + time_zone: + type: + - "null" + - string + slack_username: + type: + - "null" + - string + twitter_handle: + type: + - "null" + - string + email: + type: + - "null" + - string + email_client_email_address: + type: + - "null" + - string + sending_email_address: + type: + - "null" + - string + from_address: + type: + - "null" + - string + full_email_address: + type: + - "null" + - string + bcc_email_address: + type: + - "null" + - string + email_signature: + type: + - "null" + - string + email_signature_type: + type: + - "null" + - string + email_signature_click_tracking_disabled: + type: + - "null" + - boolean + team_admin: + type: + - "null" + - boolean + local_dial_enabled: + type: + - "null" + - boolean + click_to_call_enabled: + type: + - "null" + - boolean + email_client_configured: + type: + - "null" + - boolean + crm_connected: + type: + - "null" + - boolean + external_feature_flags: + type: + - "null" + - object + additionalProperties: true + properties: {} + phone_client: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + phone_number_assignment: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + group: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + team: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + role: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + - string +- type: DeclarativeStream + name: account_tiers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /account_tiers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + order: + type: + - "null" + - integer + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time +- type: DeclarativeStream + name: import + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /imports + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + current_people_count: + type: + - "null" + - integer + imported_people_count: + type: + - "null" + - integer +- type: DeclarativeStream + name: person_stages + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /person_stages + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + order: + type: + - "null" + - integer +- type: DeclarativeStream + name: phone_number_assignments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /phone_number_assignments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + number: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string +- type: DeclarativeStream + name: steps + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /steps + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + disabled: + type: + - "null" + - boolean + type: + type: + - "null" + - string + name: + type: + - "null" + - string + display_name: + type: + - "null" + - string + day: + type: + - "null" + - integer + step_number: + type: + - "null" + - integer + details: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string +- type: DeclarativeStream + name: team_template_attachments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /team_template_attachments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + attachment_id: + type: + - "null" + - integer + team_template: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + name: + type: + - "null" + - string + download_url: + type: + - "null" + - string + attachment_file_size: + type: + - "null" + - integer +- type: DeclarativeStream + name: email_template_attachments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: email_template_attachments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + attachment_id: + type: + - "null" + - integer + team_template: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + name: + type: + - "null" + - string + download_url: + type: + - "null" + - string + attachment_file_size: + type: + - "null" + - integer +- type: DeclarativeStream + name: crm_users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: crm_users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + crm_id: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string +- type: DeclarativeStream + name: groups + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /groups + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + parent_id: + type: + - "null" + - integer +- type: DeclarativeStream + name: custom_fields + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /custom_fields + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + name: + type: + - "null" + - string + field_type: + type: + - "null" + - string + value_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time +- type: DeclarativeStream + name: call_dispositions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /call_dispositions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string +- type: DeclarativeStream + name: call_sentiments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /call_sentiments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string +- type: DeclarativeStream + name: meetings + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /meetings + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + title: + type: + - "null" + - string + start_time: + type: + - "null" + - string + format: date-time + end_time: + type: + - "null" + - string + format: date-time + calendar_id: + type: + - "null" + - string + calendar_type: + type: + - "null" + - string + meeting_type: + type: + - "null" + - string + recipient_name: + type: + - "null" + - string + recipient_email: + type: + - "null" + - string + location: + type: + - "null" + - string + description: + type: + - "null" + - string + event_id: + type: + - "null" + - string + account_id: + type: + - "null" + - string + task_id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + guests: + type: + - "null" + - array + items: + type: + - "null" + - string + attendees: + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + properties: + email: + type: + - "null" + - string + name: + type: + - "null" + - string + organizer: + type: + - "null" + - boolean + status: + type: + - "null" + - string + status_changed: + type: + - "null" + - boolean + deleted_at: + type: + - "null" + - string + format: date-time + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + booked_by_user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + crm_references: + type: + - "null" + - object + additionalProperties: true + event_source: + type: + - "null" + - string + canceled_at: + type: + - "null" + - string + format: date-time + all_day: + type: + - "null" + - boolean + no_show: + type: + - "null" + - boolean + crm_custom_fields: + type: + - "null" + - object + additionalProperties: true + strict_attribution: + type: + - "null" + - boolean + i_cal_uid: + type: + - "null" + - string + status: + type: + - "null" + - string + reschedule_status: + type: + - "null" + - string + owned_by_meetings_settings: + type: + - "null" + - object + additionalProperties: true + properties: + id: + email_address: + - "null" + - string + booked_by_meetings_settings: + type: + - "null" + - object + additionalProperties: true + properties: + id: + email_address: + - "null" + - string +- type: DeclarativeStream + name: people + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /people + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + last_contacted_at: + type: + - "null" + - string + format: date-time + last_replied_at: + type: + - "null" + - string + format: date-time + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + display_name: + type: + - "null" + - string + email_address: + type: + - "null" + - string + full_email_address: + type: + - "null" + - string + secondary_email_address: + type: + - "null" + - string + personal_email_address: + type: + - "null" + - string + phone: + type: + - "null" + - string + phone_extension: + type: + - "null" + - string + home_phone: + type: + - "null" + - string + mobile_phone: + type: + - "null" + - string + linkedin_url: + type: + - "null" + - string + title: + type: + - "null" + - string + city: + type: + - "null" + - string + state: + type: + - "null" + - string + country: + type: + - "null" + - string + work_city: + type: + - "null" + - string + work_state: + type: + - "null" + - string + work_country: + type: + - "null" + - string + crm_url: + type: + - "null" + - string + crm_id: + type: + - "null" + - string + crm_object_type: + type: + - "null" + - string + owner_crm_id: + type: + - "null" + - string + person_company_name: + type: + - "null" + - string + person_company_website: + type: + - "null" + - string + person_company_industry: + type: + - "null" + - string + do_not_contact: + type: + - "null" + - boolean + bouncing: + type: + - "null" + - boolean + locale: + type: + - "null" + - string + personal_website: + type: + - "null" + - string + twitter_handle: + type: + - "null" + - string + last_contacted_type: + type: + - "null" + - string + job_seniority: + type: + - "null" + - string + custom_fields: + type: + - "null" + - object + additionalProperties: true + properties: {} + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + contact_restrictions: + type: + - "null" + - array + items: + type: + - "null" + - string + counts: + type: + - "null" + - object + additionalProperties: true + properties: + emails_sent: + type: + - "null" + - integer + emails_viewed: + type: + - "null" + - integer + emails_clicked: + type: + - "null" + - integer + emails_replied_to: + type: + - "null" + - integer + emails_bounced: + type: + - "null" + - integer + calls: + type: + - "null" + - integer + account: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + owner: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_contacted_by: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + import: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + person_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + most_recent_cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_completed_step_cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_completed_step: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer +- type: DeclarativeStream + name: cadences + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /cadences + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + team_cadence: + type: + - "null" + - boolean + shared: + type: + - "null" + - boolean + remove_bounces_enabled: + type: + - "null" + - boolean + remove_replies_enabled: + type: + - "null" + - boolean + opt_out_link_included: + type: + - "null" + - boolean + name: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + creator: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + owner: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + bounced_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + replied_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + added_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + finished_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + counts: + type: + - "null" + - object + additionalProperties: true + properties: + cadence_people: + type: + - "null" + - integer + target_daily_people: + type: + - "null" + - integer + latest_active_date: + type: + - "null" + - string + format: date +- type: DeclarativeStream + name: cadence_memberships + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /cadence_memberships + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + added_at: + type: + - "null" + - string + format: date-time + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + person_deleted: + type: + - "null" + - boolean + currently_on_cadence: + type: + - "null" + - boolean + current_state: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + person: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + user: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + latest_action: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + counts: + type: + - "null" + - object + additionalProperties: true + properties: + views: + type: + - "null" + - integer + clicks: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + calls: + type: + - "null" + - integer + sent_emails: + type: + - "null" + - integer + bounces: + type: + - "null" + - integer +- type: DeclarativeStream + name: emails + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /activities/emails + http_method: GET + request_parameters: + sent_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + recipient_email_address: + type: + - "null" + - string + status: + type: + - "null" + - string + bounced: + type: + - "null" + - boolean + send_after: + type: + - "null" + - string + format: date-time + sent_at: + type: + - "null" + - string + format: date-time + view_tracking: + type: + - "null" + - boolean + click_tracking: + type: + - "null" + - boolean + personalization: + type: + - "null" + - string + counts: + type: + - "null" + - object + additionalProperties: true + properties: + clicks: + type: + - "null" + - integer + views: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + unique_devices: + type: + - "null" + - integer + unique_locations: + type: + - "null" + - integer + attachments: + type: + - "null" + - integer + headers: + type: + - "null" + - object + additionalProperties: true + properties: + In-Reply-To: + type: + - "null" + - string + References: + type: + - "null" + - string + to: + type: + - "null" + - string + cc: + type: + - "null" + - string + in_reply_to: + type: + - "null" + - string + bcc: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + recipient: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + mailing: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + action: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + crm_activity: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + step: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + email_template: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer +- type: DeclarativeStream + name: calls + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /activities/calls + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + to: + type: + - "null" + - string + duration: + type: + - "null" + - integer + sentiment: + type: + - "null" + - string + disposition: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + action: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + called_person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + crm_activity: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + note: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string +- type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /accounts + http_method: GET + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + domain: + type: + - "null" + - string + conversational_name: + type: + - "null" + - string + description: + type: + - "null" + - string + phone: + type: + - "null" + - string + website: + type: + - "null" + - string + linkedin_url: + type: + - "null" + - string + twitter_handle: + type: + - "null" + - string + street: + type: + - "null" + - string + city: + type: + - "null" + - string + state: + type: + - "null" + - string + postal_code: + type: + - "null" + - string + country: + type: + - "null" + - string + locale: + type: + - "null" + - string + industry: + type: + - "null" + - string + company_type: + type: + - "null" + - string + founded: + type: + - "null" + - string + revenue_range: + type: + - "null" + - string + size: + type: + - "null" + - string + crm_id: + type: + - "null" + - string + crm_url: + type: + - "null" + - string + crm_object_type: + type: + - "null" + - string + owner_crm_id: + type: + - "null" + - string + last_contacted_at: + type: + - "null" + - string + format: date-time + last_contacted_type: + type: + - "null" + - string + do_not_contact: + type: + - "null" + - boolean + counts: + type: + - "null" + - object + additionalProperties: true + properties: + people: + type: + - "null" + - integer + owner: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + creator: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + last_contacted_by: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + last_contacted_person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + company_stage: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + account_tier: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string +- type: DeclarativeStream + name: account_stages + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /account_stages + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + order: + type: + - "null" + - integer +- type: DeclarativeStream + name: actions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /actions + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + due: + type: + - "null" + - boolean + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + type: + type: + - "null" + - string + status: + type: + - "null" + - string + due_on: + type: + - "null" + - string + format: date-time + multitouch_group_id: + type: + - "null" + - integer + action_details: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string +- type: DeclarativeStream + name: email_templates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /email_templates + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + title: + type: + - "null" + - string + subject: + type: + - "null" + - string + body: + type: + - "null" + - string + body_preview: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + last_used_at: + type: + - "null" + - string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + shared: + type: + - "null" + - boolean + open_tracking_enabled: + type: + - "null" + - boolean + click_tracking_enabled: + type: + - "null" + - boolean + cadence_template: + type: + - "null" + - boolean + counts: + type: + - "null" + - object + additionalProperties: true + properties: + sent_emails: + type: + - "null" + - integer + views: + type: + - "null" + - integer + clicks: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + bounces: + type: + - "null" + - integer + template_owner: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + team_template: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + _links: + type: + - "null" + - object + additionalProperties: true + properties: + attachments: + type: + - "null" + - string + groups: + type: + - "null" + - array + items: + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string +- type: DeclarativeStream + name: notes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /notes + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + content: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + associated_with: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + call: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string +- type: DeclarativeStream + name: team_templates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /team_templates + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: string + title: + type: + - "null" + - string + subject: + type: + - "null" + - string + body: + type: + - "null" + - string + body_preview: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + last_used_at: + type: + - "null" + - string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + last_modified_at: + type: + - "null" + - string + format: date-time + open_tracking_enabled: + type: + - "null" + - boolean + click_tracking_enabled: + type: + - "null" + - boolean + counts: + type: + - "null" + - object + additionalProperties: true + properties: + sent_emails: + type: + - "null" + - integer + views: + type: + - "null" + - integer + clicks: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + bounces: + type: + - "null" + - integer + last_modified_user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + _links: + type: + - "null" + - object + additionalProperties: true + properties: + attachments: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string +- type: DeclarativeStream + name: crm_activities + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /crm_activities + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + subject: + type: + - "null" + - string + description: + type: + - "null" + - string + crm_id: + type: + - "null" + - string + activity_type: + type: + - "null" + - string + error: + type: + - "null" + - string + custom_crm_fields: + type: + - "null" + - object + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string +- type: DeclarativeStream + name: successes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /successes + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + succeeded_at: + type: + - "null" + - string + format: date-time + success_window_started_at: + type: + - "null" + - string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_email: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_call: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_action: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + latest_cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + counts: + type: + - "null" + - object + additionalProperties: true + properties: + total_emails: + type: + - "null" + - integer + total_calls: + type: + - "null" + - integer + total_other_touches: + type: + - "null" + - integer +- type: DeclarativeStream + name: call_data_records + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /call_data_records + http_method: GET + request_parameters: + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + to: + type: + - "null" + - string + from: + type: + - "null" + - string + duration: + type: + - "null" + - integer + direction: + type: + - "null" + - string + status: + type: + - "null" + - string + call_type: + type: + - "null" + - string + call_uuid: + type: + - "null" + - string + recording: + type: + - "null" + - object + additionalProperties: true + properties: + url: + type: + - "null" + - string + status: + type: + - "null" + - string + recording_status: + type: + - "null" + - string + call: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + called_person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string +- type: DeclarativeStream + name: searches + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://api.salesloft.com/v2 + authenticator: + type: SelectiveAuthenticator + authenticator_selection_path: + - "credentials" + - "auth_type" + authenticators: + oauth2.0: + type: CustomAuthenticator + class_name: source_declarative_manifest.components.SingleUseOauth2Authenticator + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + refresh_request_body: {} + token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" + grant_type: refresh_token + api_key: + type: BearerAuthenticator + api_token: "{{ config['credentials']['api_key'] }}" + path: /meetings/settings/searches + http_method: POST + request_parameters: + created_at[gt]: "{{ config['start_date'] }}" + updated_at[gt]: >- + {{ + format_datetime( + (config['start_date'] if stream_state['updated_at'] is not defined else + (stream_state.updated_at if stream_state.updated_at < now_utc() else + now_utc())), + '%Y-%m-%dT%H:%M:%S.%fZ' + ) + }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response['metadata']['paging']['next_page'] }}" + stop_condition: >- + {{ response['metadata']['paging'] is not defined or not + response['metadata']['paging'] or + response['metadata']['paging']['next_page'] is not defined or not + response['metadata']['paging']['next_page'] }} + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%f%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + user_slug: + type: + - "null" + - string + primary_calendar_id: + type: + - "null" + - string + primary_calendar_name: + type: + - "null" + - string + email_address: + type: + - "null" + - string + user_details: + type: + - "null" + - object + additionalProperties: true + calendar_type: + type: + - "null" + - string + title: + type: + - "null" + - string + description: + type: + - "null" + - string + location: + type: + - "null" + - string + default_meeting_length: + type: + - "null" + - integer + availability_limit_enabled: + type: + - "null" + - boolean + availability_limit: + type: + - "null" + - integer + schedule_delay: + type: + - "null" + - integer + buffer_time_duration: + type: + - "null" + - integer + schedule_buffer_enabled: + type: + - "null" + - boolean + times_available: + type: + - "null" + - object + additionalProperties: true + allow_booking_on_behalf: + type: + - "null" + - boolean + allow_booking_overtime: + type: + - "null" + - boolean + allow_event_overlap: + type: + - "null" + - boolean + allow_event_detail: + type: + - "null" + - boolean + enable_dynamic_location: + type: + - "null" + - boolean + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + time_zone: + type: + - "null" + - string + primary_calendar_connection_failed: + type: + - "null" + - boolean + enable_calendar_sync: + type: + - "null" + - boolean + reschedule_meetings_enabled: + type: + - "null" + - boolean + active_meeting_url: + type: + - "null" + - object + additionalProperties: true + properties: + url: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - credentials + - start_date + properties: + credentials: + type: object + oneOf: + - type: object + title: Authenticate via OAuth + required: + - client_id + - client_secret + - refresh_token + - access_token + - token_expiry_date + - auth_type + properties: + auth_type: + type: string + const: oauth2.0 + client_id: + type: string + title: Client ID + description: The Client ID of your Salesloft developer application. + access_token: + type: string + description: Access Token for making authenticated requests. + airbyte_secret: true + client_secret: + type: string + title: Client Secret + description: The Client Secret of your Salesloft developer application. + airbyte_secret: true + refresh_token: + type: string + title: Refresh Token + description: The token for obtaining a new access token. + airbyte_secret: true + token_expiry_date: + type: string + format: date-time + description: The date-time when the access token should be refreshed. + - type: object + title: Authenticate via API Key + required: + - api_key + - auth_type + properties: + api_key: + type: string + title: API Key + description: >- + API Key for making authenticated requests. More instruction on + how to find this value in our docs + airbyte_secret: true + auth_type: + type: string + const: api_key + order: 0 + title: Credentials + start_date: + type: string + title: Start Date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + order: 1 + examples: + - "2020-11-16T00:00:00Z" + description: >- + The date from which you'd like to replicate data for Salesloft API, in + the format YYYY-MM-DDT00:00:00Z. All data generated after this date + will be replicated. + additionalProperties: true +metadata: + autoImportSchema: + users: false + account_tiers: false + import: false + person_stages: false + phone_number_assignments: false + steps: false + team_template_attachments: false + email_template_attachments: false + crm_users: false + groups: false + custom_fields: false + call_dispositions: false + call_sentiments: false + meetings: false + people: false + cadences: false + cadence_memberships: false + emails: false + calls: false + accounts: false + account_stages: false + actions: false + email_templates: false + notes: false + team_templates: false + crm_activities: false + successes: false + call_data_records: false + searches: false +schemas: + users: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + guid: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + job_role: + type: + - "null" + - string + active: + type: + - "null" + - boolean + time_zone: + type: + - "null" + - string + slack_username: + type: + - "null" + - string + twitter_handle: + type: + - "null" + - string + email: + type: + - "null" + - string + email_client_email_address: + type: + - "null" + - string + sending_email_address: + type: + - "null" + - string + from_address: + type: + - "null" + - string + full_email_address: + type: + - "null" + - string + bcc_email_address: + type: + - "null" + - string + email_signature: + type: + - "null" + - string + email_signature_type: + type: + - "null" + - string + email_signature_click_tracking_disabled: + type: + - "null" + - boolean + team_admin: + type: + - "null" + - boolean + local_dial_enabled: + type: + - "null" + - boolean + click_to_call_enabled: + type: + - "null" + - boolean + email_client_configured: + type: + - "null" + - boolean + crm_connected: + type: + - "null" + - boolean + external_feature_flags: + type: + - "null" + - object + additionalProperties: true + properties: {} + phone_client: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + phone_number_assignment: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + group: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + team: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + role: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + - string + account_tiers: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + order: + type: + - "null" + - integer + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + import: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + current_people_count: + type: + - "null" + - integer + imported_people_count: + type: + - "null" + - integer + person_stages: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + order: + type: + - "null" + - integer + phone_number_assignments: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + number: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + steps: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + disabled: + type: + - "null" + - boolean + type: + type: + - "null" + - string + name: + type: + - "null" + - string + display_name: + type: + - "null" + - string + day: + type: + - "null" + - integer + step_number: + type: + - "null" + - integer + details: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + team_template_attachments: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + attachment_id: + type: + - "null" + - integer + team_template: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + name: + type: + - "null" + - string + download_url: + type: + - "null" + - string + attachment_file_size: + type: + - "null" + - integer + email_template_attachments: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + attachment_id: + type: + - "null" + - integer + team_template: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + name: + type: + - "null" + - string + download_url: + type: + - "null" + - string + attachment_file_size: + type: + - "null" + - integer + crm_users: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + crm_id: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + groups: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + parent_id: + type: + - "null" + - integer + custom_fields: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + name: + type: + - "null" + - string + field_type: + type: + - "null" + - string + value_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + call_dispositions: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + call_sentiments: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + meetings: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + title: + type: + - "null" + - string + start_time: + type: + - "null" + - string + format: date-time + end_time: + type: + - "null" + - string + format: date-time + calendar_id: + type: + - "null" + - string + calendar_type: + type: + - "null" + - string + meeting_type: + type: + - "null" + - string + recipient_name: + type: + - "null" + - string + recipient_email: + type: + - "null" + - string + location: + type: + - "null" + - string + description: + type: + - "null" + - string + event_id: + type: + - "null" + - string + account_id: + type: + - "null" + - string + task_id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + guests: + type: + - "null" + - array + items: + type: + - "null" + - string + attendees: + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + properties: + email: + type: + - "null" + - string + name: + type: + - "null" + - string + organizer: + type: + - "null" + - boolean + status: + type: + - "null" + - string + status_changed: + type: + - "null" + - boolean + deleted_at: + type: + - "null" + - string + format: date-time + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + booked_by_user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + crm_references: + type: + - "null" + - object + additionalProperties: true + event_source: + type: + - "null" + - string + canceled_at: + type: + - "null" + - string + format: date-time + all_day: + type: + - "null" + - boolean + no_show: + type: + - "null" + - boolean + crm_custom_fields: + type: + - "null" + - object + additionalProperties: true + strict_attribution: + type: + - "null" + - boolean + i_cal_uid: + type: + - "null" + - string + status: + type: + - "null" + - string + reschedule_status: + type: + - "null" + - string + owned_by_meetings_settings: + type: + - "null" + - object + additionalProperties: true + properties: + id: + email_address: + - "null" + - string + booked_by_meetings_settings: + type: + - "null" + - object + additionalProperties: true + properties: + id: + email_address: + - "null" + - string + people: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + last_contacted_at: + type: + - "null" + - string + format: date-time + last_replied_at: + type: + - "null" + - string + format: date-time + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + display_name: + type: + - "null" + - string + email_address: + type: + - "null" + - string + full_email_address: + type: + - "null" + - string + secondary_email_address: + type: + - "null" + - string + personal_email_address: + type: + - "null" + - string + phone: + type: + - "null" + - string + phone_extension: + type: + - "null" + - string + home_phone: + type: + - "null" + - string + mobile_phone: + type: + - "null" + - string + linkedin_url: + type: + - "null" + - string + title: + type: + - "null" + - string + city: + type: + - "null" + - string + state: + type: + - "null" + - string + country: + type: + - "null" + - string + work_city: + type: + - "null" + - string + work_state: + type: + - "null" + - string + work_country: + type: + - "null" + - string + crm_url: + type: + - "null" + - string + crm_id: + type: + - "null" + - string + crm_object_type: + type: + - "null" + - string + owner_crm_id: + type: + - "null" + - string + person_company_name: + type: + - "null" + - string + person_company_website: + type: + - "null" + - string + person_company_industry: + type: + - "null" + - string + do_not_contact: + type: + - "null" + - boolean + bouncing: + type: + - "null" + - boolean + locale: + type: + - "null" + - string + personal_website: + type: + - "null" + - string + twitter_handle: + type: + - "null" + - string + last_contacted_type: + type: + - "null" + - string + job_seniority: + type: + - "null" + - string + custom_fields: + type: + - "null" + - object + additionalProperties: true + properties: {} + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + contact_restrictions: + type: + - "null" + - array + items: + type: + - "null" + - string + counts: + type: + - "null" + - object + additionalProperties: true + properties: + emails_sent: + type: + - "null" + - integer + emails_viewed: + type: + - "null" + - integer + emails_clicked: + type: + - "null" + - integer + emails_replied_to: + type: + - "null" + - integer + emails_bounced: + type: + - "null" + - integer + calls: + type: + - "null" + - integer + account: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + owner: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_contacted_by: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + import: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + person_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + most_recent_cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_completed_step_cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + last_completed_step: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + cadences: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + team_cadence: + type: + - "null" + - boolean + shared: + type: + - "null" + - boolean + remove_bounces_enabled: + type: + - "null" + - boolean + remove_replies_enabled: + type: + - "null" + - boolean + opt_out_link_included: + type: + - "null" + - boolean + name: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + creator: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + owner: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + bounced_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + replied_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + added_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + finished_stage: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + counts: + type: + - "null" + - object + additionalProperties: true + properties: + cadence_people: + type: + - "null" + - integer + target_daily_people: + type: + - "null" + - integer + latest_active_date: + type: + - "null" + - string + format: date + cadence_memberships: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + added_at: + type: + - "null" + - string + format: date-time + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + person_deleted: + type: + - "null" + - boolean + currently_on_cadence: + type: + - "null" + - boolean + current_state: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + person: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + user: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + latest_action: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + counts: + type: + - "null" + - object + additionalProperties: true + properties: + views: + type: + - "null" + - integer + clicks: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + calls: + type: + - "null" + - integer + sent_emails: + type: + - "null" + - integer + bounces: + type: + - "null" + - integer + emails: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + recipient_email_address: + type: + - "null" + - string + status: + type: + - "null" + - string + bounced: + type: + - "null" + - boolean + send_after: + type: + - "null" + - string + format: date-time + sent_at: + type: + - "null" + - string + format: date-time + view_tracking: + type: + - "null" + - boolean + click_tracking: + type: + - "null" + - boolean + personalization: + type: + - "null" + - string + counts: + type: + - "null" + - object + additionalProperties: true + properties: + clicks: + type: + - "null" + - integer + views: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + unique_devices: + type: + - "null" + - integer + unique_locations: + type: + - "null" + - integer + attachments: + type: + - "null" + - integer + headers: + type: + - "null" + - object + additionalProperties: true + properties: + In-Reply-To: + type: + - "null" + - string + References: + type: + - "null" + - string + to: + type: + - "null" + - string + cc: + type: + - "null" + - string + in_reply_to: + type: + - "null" + - string + bcc: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + recipient: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + mailing: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + action: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + crm_activity: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + step: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + email_template: + type: + - "null" + - object + additionalProperties: true + properties: + _href: + type: + - "null" + - string + id: + type: + - "null" + - integer + calls: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + to: + type: + - "null" + - string + duration: + type: + - "null" + - integer + sentiment: + type: + - "null" + - string + disposition: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + action: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + called_person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + crm_activity: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + note: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + accounts: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + name: + type: + - "null" + - string + domain: + type: + - "null" + - string + conversational_name: + type: + - "null" + - string + description: + type: + - "null" + - string + phone: + type: + - "null" + - string + website: + type: + - "null" + - string + linkedin_url: + type: + - "null" + - string + twitter_handle: + type: + - "null" + - string + street: + type: + - "null" + - string + city: + type: + - "null" + - string + state: + type: + - "null" + - string + postal_code: + type: + - "null" + - string + country: + type: + - "null" + - string + locale: + type: + - "null" + - string + industry: + type: + - "null" + - string + company_type: + type: + - "null" + - string + founded: + type: + - "null" + - string + revenue_range: + type: + - "null" + - string + size: + type: + - "null" + - string + crm_id: + type: + - "null" + - string + crm_url: + type: + - "null" + - string + crm_object_type: + type: + - "null" + - string + owner_crm_id: + type: + - "null" + - string + last_contacted_at: + type: + - "null" + - string + format: date-time + last_contacted_type: + type: + - "null" + - string + do_not_contact: + type: + - "null" + - boolean + counts: + type: + - "null" + - object + additionalProperties: true + properties: + people: + type: + - "null" + - integer + owner: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + creator: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + last_contacted_by: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + last_contacted_person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + company_stage: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + account_tier: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + account_stages: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + name: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + order: + type: + - "null" + - integer + actions: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + due: + type: + - "null" + - boolean + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + type: + type: + - "null" + - string + status: + type: + - "null" + - string + due_on: + type: + - "null" + - string + format: date-time + multitouch_group_id: + type: + - "null" + - integer + action_details: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + email_templates: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + title: + type: + - "null" + - string + subject: + type: + - "null" + - string + body: + type: + - "null" + - string + body_preview: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + last_used_at: + type: + - "null" + - string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + shared: + type: + - "null" + - boolean + open_tracking_enabled: + type: + - "null" + - boolean + click_tracking_enabled: + type: + - "null" + - boolean + cadence_template: + type: + - "null" + - boolean + counts: + type: + - "null" + - object + additionalProperties: true + properties: + sent_emails: + type: + - "null" + - integer + views: + type: + - "null" + - integer + clicks: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + bounces: + type: + - "null" + - integer + template_owner: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + team_template: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + _links: + type: + - "null" + - object + additionalProperties: true + properties: + attachments: + type: + - "null" + - string + groups: + type: + - "null" + - array + items: + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + notes: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + content: + type: + - "null" + - string + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + associated_with: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + call: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + team_templates: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: string + title: + type: + - "null" + - string + subject: + type: + - "null" + - string + body: + type: + - "null" + - string + body_preview: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + last_used_at: + type: + - "null" + - string + format: date-time + archived_at: + type: + - "null" + - string + format: date-time + last_modified_at: + type: + - "null" + - string + format: date-time + open_tracking_enabled: + type: + - "null" + - boolean + click_tracking_enabled: + type: + - "null" + - boolean + counts: + type: + - "null" + - object + additionalProperties: true + properties: + sent_emails: + type: + - "null" + - integer + views: + type: + - "null" + - integer + clicks: + type: + - "null" + - integer + replies: + type: + - "null" + - integer + bounces: + type: + - "null" + - integer + last_modified_user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + _links: + type: + - "null" + - object + additionalProperties: true + properties: + attachments: + type: + - "null" + - string + tags: + type: + - "null" + - array + items: + type: + - "null" + - string + crm_activities: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + subject: + type: + - "null" + - string + description: + type: + - "null" + - string + crm_id: + type: + - "null" + - string + activity_type: + type: + - "null" + - string + error: + type: + - "null" + - string + custom_crm_fields: + type: + - "null" + - object + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + successes: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: integer + created_at: + type: string + format: date-time + updated_at: + type: string + format: date-time + succeeded_at: + type: + - "null" + - string + format: date-time + success_window_started_at: + type: + - "null" + - string + format: date-time + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_email: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_call: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_action: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + latest_cadence: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + latest_step: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + counts: + type: + - "null" + - object + additionalProperties: true + properties: + total_emails: + type: + - "null" + - integer + total_calls: + type: + - "null" + - integer + total_other_touches: + type: + - "null" + - integer + call_data_records: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + to: + type: + - "null" + - string + from: + type: + - "null" + - string + duration: + type: + - "null" + - integer + direction: + type: + - "null" + - string + status: + type: + - "null" + - string + call_type: + type: + - "null" + - string + call_uuid: + type: + - "null" + - string + recording: + type: + - "null" + - object + additionalProperties: true + properties: + url: + type: + - "null" + - string + status: + type: + - "null" + - string + recording_status: + type: + - "null" + - string + call: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + called_person: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + _href: + type: + - "null" + - string + searches: + "$schema": http://json-schema.org/draft-07/schema# + type: object + additionalProperties: true + properties: + id: + type: + - "null" + - integer + user: + type: + - "null" + - object + additionalProperties: true + properties: + id: + type: + - "null" + - string + _href: + type: + - "null" + - string + user_slug: + type: + - "null" + - string + primary_calendar_id: + type: + - "null" + - string + primary_calendar_name: + type: + - "null" + - string + email_address: + type: + - "null" + - string + user_details: + type: + - "null" + - object + additionalProperties: true + calendar_type: + type: + - "null" + - string + title: + type: + - "null" + - string + description: + type: + - "null" + - string + location: + type: + - "null" + - string + default_meeting_length: + type: + - "null" + - integer + availability_limit_enabled: + type: + - "null" + - boolean + availability_limit: + type: + - "null" + - integer + schedule_delay: + type: + - "null" + - integer + buffer_time_duration: + type: + - "null" + - integer + schedule_buffer_enabled: + type: + - "null" + - boolean + times_available: + type: + - "null" + - object + additionalProperties: true + allow_booking_on_behalf: + type: + - "null" + - boolean + allow_booking_overtime: + type: + - "null" + - boolean + allow_event_overlap: + type: + - "null" + - boolean + allow_event_detail: + type: + - "null" + - boolean + enable_dynamic_location: + type: + - "null" + - boolean + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + time_zone: + type: + - "null" + - string + primary_calendar_connection_failed: + type: + - "null" + - boolean + enable_calendar_sync: + type: + - "null" + - boolean + reschedule_meetings_enabled: + type: + - "null" + - boolean + active_meeting_url: + type: + - "null" + - object + additionalProperties: true + properties: + url: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time diff --git a/airbyte-integrations/connectors/source-salesloft/metadata.yaml b/airbyte-integrations/connectors/source-salesloft/metadata.yaml index fae7c1da1cd7..531c5e36ab6b 100644 --- a/airbyte-integrations/connectors/source-salesloft/metadata.yaml +++ b/airbyte-integrations/connectors/source-salesloft/metadata.yaml @@ -12,17 +12,17 @@ data: enabled: true remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-salesloft connectorBuildOptions: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: 41991d12-d4b5-439e-afd0-260a31d4c53f - dockerImageTag: 1.2.24 + dockerImageTag: 1.3.0 dockerRepository: airbyte/source-salesloft githubIssueLabel: source-salesloft icon: icon.svg @@ -33,8 +33,8 @@ data: supportLevel: community documentationUrl: https://docs.airbyte.com/integrations/sources/salesloft tags: - - language:python - cdk:low-code + - language:manifest-only connectorTestSuitesOptions: - suite: liveTests testConnections: diff --git a/airbyte-integrations/connectors/source-salesloft/poetry.lock b/airbyte-integrations/connectors/source-salesloft/poetry.lock deleted file mode 100644 index 732d61e9625f..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/poetry.lock +++ /dev/null @@ -1,1480 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "0.83.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-0.83.0-py3-none-any.whl", hash = "sha256:03c5b3dec45bbf9726d69239d992a0a411726727cc9ba405e30cfa86321b3a0f"}, - {file = "airbyte_cdk-0.83.0.tar.gz", hash = "sha256:131f6f0f50c3ddc36d1772ac897cf3e9a6be8d15a52b338e70d3a747f44f9d39"}, -] - -[package.dependencies] -airbyte-protocol-models = "*" -backoff = "*" -cachetools = "*" -cryptography = ">=42.0.5,<43.0.0" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -langchain_core = "0.1.42" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyjwt = ">=2.8.0,<3.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.13.0" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.13.0-py3-none-any.whl", hash = "sha256:fa8b7e1a85f9ae171c50b30d23b317da1740d051994fd3ed648f9dfba00250e2"}, - {file = "airbyte_protocol_models-0.13.0.tar.gz", hash = "sha256:09d8900ba8674a9315fa1799d17026f6b38d2187c08160449540ee93331ed2e7"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "anyio" -version = "4.6.2.post1" -description = "High level compatibility layer for multiple asynchronous event loop implementations" -optional = false -python-versions = ">=3.9" -files = [ - {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, - {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, -] - -[package.dependencies] -exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} -idna = ">=2.8" -sniffio = ">=1.1" -typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} - -[package.extras] -doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] -trio = ["trio (>=0.26.1)"] - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "cffi" -version = "1.17.1" -description = "Foreign Function Interface for Python calling C code." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, - {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, - {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, - {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, - {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, - {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, - {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, - {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, - {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, - {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, - {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, - {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, - {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, - {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, - {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, - {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, - {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, - {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, - {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, - {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, - {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, - {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, - {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, - {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, - {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, - {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, - {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, - {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, - {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, - {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, - {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, -] - -[package.dependencies] -pycparser = "*" - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "cryptography" -version = "42.0.8" -description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -optional = false -python-versions = ">=3.7" -files = [ - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e"}, - {file = "cryptography-42.0.8-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949"}, - {file = "cryptography-42.0.8-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b"}, - {file = "cryptography-42.0.8-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7"}, - {file = "cryptography-42.0.8-cp37-abi3-win32.whl", hash = "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2"}, - {file = "cryptography-42.0.8-cp37-abi3-win_amd64.whl", hash = "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba"}, - {file = "cryptography-42.0.8-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c"}, - {file = "cryptography-42.0.8-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1"}, - {file = "cryptography-42.0.8-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14"}, - {file = "cryptography-42.0.8-cp39-abi3-win32.whl", hash = "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c"}, - {file = "cryptography-42.0.8-cp39-abi3-win_amd64.whl", hash = "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71"}, - {file = "cryptography-42.0.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648"}, - {file = "cryptography-42.0.8-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad"}, - {file = "cryptography-42.0.8.tar.gz", hash = "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2"}, -] - -[package.dependencies] -cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} - -[package.extras] -docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] -docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] -nox = ["nox"] -pep8test = ["check-sdist", "click", "mypy", "ruff"] -sdist = ["build"] -ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] -test-randomorder = ["pytest-randomly"] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "h11" -version = "0.14.0" -description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -optional = false -python-versions = ">=3.7" -files = [ - {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, - {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, -] - -[[package]] -name = "httpcore" -version = "1.0.6" -description = "A minimal low-level HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, - {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, -] - -[package.dependencies] -certifi = "*" -h11 = ">=0.13,<0.15" - -[package.extras] -asyncio = ["anyio (>=4.0,<5.0)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<1.0)"] - -[[package]] -name = "httpx" -version = "0.27.2" -description = "The next generation HTTP client." -optional = false -python-versions = ">=3.8" -files = [ - {file = "httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0"}, - {file = "httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2"}, -] - -[package.dependencies] -anyio = "*" -certifi = "*" -httpcore = "==1.*" -idna = "*" -sniffio = "*" - -[package.extras] -brotli = ["brotli", "brotlicffi"] -cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] -http2 = ["h2 (>=3,<5)"] -socks = ["socksio (==1.*)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonpatch" -version = "1.33" -description = "Apply JSON-Patches (RFC 6902)" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" -files = [ - {file = "jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade"}, - {file = "jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c"}, -] - -[package.dependencies] -jsonpointer = ">=1.9" - -[[package]] -name = "jsonpointer" -version = "3.0.0" -description = "Identify specific nodes in a JSON document (RFC 6901)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, - {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, -] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "langchain-core" -version = "0.1.42" -description = "Building applications with LLMs through composability" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_core-0.1.42-py3-none-any.whl", hash = "sha256:c5653ffa08a44f740295c157a24c0def4a753333f6a2c41f76bf431cd00be8b5"}, - {file = "langchain_core-0.1.42.tar.gz", hash = "sha256:40751bf60ea5d8e2b2efe65290db434717ee3834870c002e40e2811f09d814e6"}, -] - -[package.dependencies] -jsonpatch = ">=1.33,<2.0" -langsmith = ">=0.1.0,<0.2.0" -packaging = ">=23.2,<24.0" -pydantic = ">=1,<3" -PyYAML = ">=5.3" -tenacity = ">=8.1.0,<9.0.0" - -[package.extras] -extended-testing = ["jinja2 (>=3,<4)"] - -[[package]] -name = "langsmith" -version = "0.1.137" -description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, -] - -[package.dependencies] -httpx = ">=0.23.0,<1" -orjson = ">=3.9.14,<4.0.0" -pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""} -requests = ">=2,<3" -requests-toolbelt = ">=1.0.0,<2.0.0" - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "orjson" -version = "3.10.10" -description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -optional = false -python-versions = ">=3.8" -files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, -] - -[[package]] -name = "packaging" -version = "23.2" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pycparser" -version = "2.22" -description = "C parser in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, - {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyjwt" -version = "2.9.0" -description = "JSON Web Token implementation in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, - {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, -] - -[package.extras] -crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] -tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "requests-toolbelt" -version = "1.0.0" -description = "A utility belt for advanced users of python-requests" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, - {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, -] - -[package.dependencies] -requests = ">=2.0.1,<3.0.0" - -[[package]] -name = "setuptools" -version = "75.3.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, - {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "sniffio" -version = "1.3.1" -description = "Sniff out which async library your code is running under" -optional = false -python-versions = ">=3.7" -files = [ - {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, - {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, -] - -[[package]] -name = "tenacity" -version = "8.5.0" -description = "Retry code until it succeeds" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, - {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, -] - -[package.extras] -doc = ["reno", "sphinx"] -test = ["pytest", "tornado (>=4.5)", "typeguard"] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "2716d2a16b00d9d809aeb2c60b080c75cd8b652a853860e7cabffd9de85ba3ac" diff --git a/airbyte-integrations/connectors/source-salesloft/pyproject.toml b/airbyte-integrations/connectors/source-salesloft/pyproject.toml deleted file mode 100644 index 34ea141a90fa..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/pyproject.toml +++ /dev/null @@ -1,29 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "1.2.24" -name = "source-salesloft" -description = "Source implementation for Salesloft." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/salesloft" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_salesloft" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -pendulum = "==2.1.2" -airbyte-cdk = "0.83.0" - -[tool.poetry.scripts] -source-salesloft = "source_salesloft.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "^1.12.1" -pytest-mock = "^3.6.1" -pytest = "^6.1" diff --git a/airbyte-integrations/connectors/source-salesloft/source_salesloft/__init__.py b/airbyte-integrations/connectors/source-salesloft/source_salesloft/__init__.py deleted file mode 100644 index aea360546b43..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/source_salesloft/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - - -from .source import SourceSalesloft - -__all__ = ["SourceSalesloft", "custom_authenticators"] diff --git a/airbyte-integrations/connectors/source-salesloft/source_salesloft/manifest.yaml b/airbyte-integrations/connectors/source-salesloft/source_salesloft/manifest.yaml deleted file mode 100644 index a98faca2decd..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/source_salesloft/manifest.yaml +++ /dev/null @@ -1,4476 +0,0 @@ -version: 0.78.1 - -type: DeclarativeSource - -check: - type: CheckStream - stream_names: - - users - -definitions: - custom_oauth_authenticator: - type: CustomAuthenticator - class_name: source_salesloft.custom_authenticators.SingleUseOauth2Authenticator - client_id: "{{ config['credentials']['client_id'] }}" - client_secret: "{{ config['credentials']['client_secret'] }}" - refresh_token: "{{ config['credentials']['refresh_token'] }}" - refresh_request_body: {} - token_refresh_endpoint: "https://accounts.salesloft.com/oauth/token" - grant_type: refresh_token - - bearer_authenticator: - type: BearerAuthenticator - api_token: "{{ config['credentials']['api_key'] }}" - - selective_authenticator: - type: SelectiveAuthenticator - authenticator_selection_path: ["credentials", "auth_type"] - authenticators: - oauth2.0: "#/definitions/custom_oauth_authenticator" - api_key: "#/definitions/bearer_authenticator" - - streams: - users: - type: DeclarativeStream - name: users - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /users - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/users" - account_tiers: - type: DeclarativeStream - name: account_tiers - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /account_tiers - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/account_tiers" - import: - type: DeclarativeStream - name: import - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /imports - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/import" - person_stages: - type: DeclarativeStream - name: person_stages - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /person_stages - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/person_stages" - phone_number_assignments: - type: DeclarativeStream - name: phone_number_assignments - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /phone_number_assignments - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/phone_number_assignments" - steps: - type: DeclarativeStream - name: steps - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /steps - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/steps" - team_template_attachments: - type: DeclarativeStream - name: team_template_attachments - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /team_template_attachments - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/team_template_attachments" - email_template_attachments: - type: DeclarativeStream - name: email_template_attachments - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: email_template_attachments - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/email_template_attachments" - crm_users: - type: DeclarativeStream - name: crm_users - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: crm_users - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/crm_users" - groups: - type: DeclarativeStream - name: groups - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /groups - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/groups" - custom_fields: - type: DeclarativeStream - name: custom_fields - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /custom_fields - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/custom_fields" - call_dispositions: - type: DeclarativeStream - name: call_dispositions - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /call_dispositions - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/call_dispositions" - call_sentiments: - type: DeclarativeStream - name: call_sentiments - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /call_sentiments - http_method: GET - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/call_sentiments" - meetings: - type: DeclarativeStream - name: meetings - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /meetings - http_method: GET - request_parameters: - created_at[gt]: "{{ config['start_date'] }}" - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/meetings" - people: - type: DeclarativeStream - name: people - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /people - http_method: GET - request_parameters: - created_at[gt]: "{{ config['start_date'] }}" - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/people" - cadences: - type: DeclarativeStream - name: cadences - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /cadences - http_method: GET - request_parameters: - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/cadences" - cadence_memberships: - type: DeclarativeStream - name: cadence_memberships - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /cadence_memberships - http_method: GET - request_parameters: - created_at[gt]: "{{ config['start_date'] }}" - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/cadence_memberships" - emails: - type: DeclarativeStream - name: emails - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /activities/emails - http_method: GET - request_parameters: - sent_at[gt]: "{{ config['start_date'] }}" - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/emails" - calls: - type: DeclarativeStream - name: calls - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /activities/calls - http_method: GET - request_parameters: - created_at[gt]: "{{ config['start_date'] }}" - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/calls" - accounts: - type: DeclarativeStream - name: accounts - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /accounts - http_method: GET - request_parameters: - created_at[gt]: "{{ config['start_date'] }}" - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/accounts" - account_stages: - type: DeclarativeStream - name: account_stages - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /account_stages - http_method: GET - request_parameters: - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/account_stages" - actions: - type: DeclarativeStream - name: actions - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /actions - http_method: GET - request_parameters: - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/actions" - email_templates: - type: DeclarativeStream - name: email_templates - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /email_templates - http_method: GET - request_parameters: - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/email_templates" - notes: - type: DeclarativeStream - name: notes - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /notes - http_method: GET - request_parameters: - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/notes" - team_templates: - type: DeclarativeStream - name: team_templates - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /team_templates - http_method: GET - request_parameters: - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/team_templates" - crm_activities: - type: DeclarativeStream - name: crm_activities - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /crm_activities - http_method: GET - request_parameters: - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/crm_activities" - successes: - type: DeclarativeStream - name: successes - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /successes - http_method: GET - request_parameters: - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/successes" - call_data_records: - type: DeclarativeStream - name: call_data_records - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /call_data_records - http_method: GET - request_parameters: - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/call_data_records" - searches: - type: DeclarativeStream - name: searches - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /meetings/settings/searches - http_method: POST - request_parameters: - created_at[gt]: "{{ config['start_date'] }}" - updated_at[gt]: >- - {{ - format_datetime( - (config['start_date'] if stream_state['updated_at'] is not defined else - (stream_state.updated_at if stream_state.updated_at < now_utc() else now_utc())), - '%Y-%m-%dT%H:%M:%S.%fZ' - ) - }} - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: page - page_size_option: - type: RequestOption - field_name: per_page - inject_into: request_parameter - pagination_strategy: - type: CursorPagination - page_size: 100 - cursor_value: "{{ response['metadata']['paging']['next_page'] }}" - stop_condition: >- - {{ response['metadata']['paging'] is not defined or not - response['metadata']['paging'] or - response['metadata']['paging']['next_page'] is not defined or not - response['metadata']['paging']['next_page'] }} - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%S.%f%z" - datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['start_date'] }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/searches" - base_requester: - type: HttpRequester - url_base: https://api.salesloft.com/v2 - authenticator: - $ref: "#/definitions/selective_authenticator" - -streams: - - $ref: "#/definitions/streams/users" - - $ref: "#/definitions/streams/account_tiers" - - $ref: "#/definitions/streams/import" - - $ref: "#/definitions/streams/person_stages" - - $ref: "#/definitions/streams/phone_number_assignments" - - $ref: "#/definitions/streams/steps" - - $ref: "#/definitions/streams/team_template_attachments" - - $ref: "#/definitions/streams/email_template_attachments" - - $ref: "#/definitions/streams/crm_users" - - $ref: "#/definitions/streams/groups" - - $ref: "#/definitions/streams/custom_fields" - - $ref: "#/definitions/streams/call_dispositions" - - $ref: "#/definitions/streams/call_sentiments" - - $ref: "#/definitions/streams/meetings" - - $ref: "#/definitions/streams/people" - - $ref: "#/definitions/streams/cadences" - - $ref: "#/definitions/streams/cadence_memberships" - - $ref: "#/definitions/streams/emails" - - $ref: "#/definitions/streams/calls" - - $ref: "#/definitions/streams/accounts" - - $ref: "#/definitions/streams/account_stages" - - $ref: "#/definitions/streams/actions" - - $ref: "#/definitions/streams/email_templates" - - $ref: "#/definitions/streams/notes" - - $ref: "#/definitions/streams/team_templates" - - $ref: "#/definitions/streams/crm_activities" - - $ref: "#/definitions/streams/successes" - - $ref: "#/definitions/streams/call_data_records" - - $ref: "#/definitions/streams/searches" - -spec: - type: Spec - connection_specification: - type: object - $schema: http://json-schema.org/draft-07/schema# - required: - - credentials - - start_date - properties: - credentials: - type: object - oneOf: - - type: object - title: Authenticate via OAuth - required: - - client_id - - client_secret - - refresh_token - - access_token - - token_expiry_date - - auth_type - properties: - auth_type: - type: string - const: oauth2.0 - client_id: - type: string - title: Client ID - description: The Client ID of your Salesloft developer application. - access_token: - type: string - description: Access Token for making authenticated requests. - airbyte_secret: true - client_secret: - type: string - title: Client Secret - description: The Client Secret of your Salesloft developer application. - airbyte_secret: true - refresh_token: - type: string - title: Refresh Token - description: The token for obtaining a new access token. - airbyte_secret: true - token_expiry_date: - type: string - format: date-time - description: The date-time when the access token should be refreshed. - - type: object - title: Authenticate via API Key - required: - - api_key - - auth_type - properties: - api_key: - type: string - title: API Key - description: >- - API Key for making authenticated requests. More instruction on - how to find this value in our docs - airbyte_secret: true - auth_type: - type: string - const: api_key - order: 0 - title: Credentials - start_date: - type: string - title: Start Date - format: date-time - pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ - order: 1 - examples: - - "2020-11-16T00:00:00Z" - description: >- - The date from which you'd like to replicate data for Salesloft API, in - the format YYYY-MM-DDT00:00:00Z. All data generated after this date - will be replicated. - additionalProperties: true - -metadata: - autoImportSchema: - users: false - account_tiers: false - import: false - person_stages: false - phone_number_assignments: false - steps: false - team_template_attachments: false - email_template_attachments: false - crm_users: false - groups: false - custom_fields: false - call_dispositions: false - call_sentiments: false - meetings: false - people: false - cadences: false - cadence_memberships: false - emails: false - calls: false - accounts: false - account_stages: false - actions: false - email_templates: false - notes: false - team_templates: false - crm_activities: false - successes: false - call_data_records: false - searches: false - -schemas: - users: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - guid: - type: - - "null" - - string - created_at: - type: string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - name: - type: - - "null" - - string - first_name: - type: - - "null" - - string - last_name: - type: - - "null" - - string - job_role: - type: - - "null" - - string - active: - type: - - "null" - - boolean - time_zone: - type: - - "null" - - string - slack_username: - type: - - "null" - - string - twitter_handle: - type: - - "null" - - string - email: - type: - - "null" - - string - email_client_email_address: - type: - - "null" - - string - sending_email_address: - type: - - "null" - - string - from_address: - type: - - "null" - - string - full_email_address: - type: - - "null" - - string - bcc_email_address: - type: - - "null" - - string - email_signature: - type: - - "null" - - string - email_signature_type: - type: - - "null" - - string - email_signature_click_tracking_disabled: - type: - - "null" - - boolean - team_admin: - type: - - "null" - - boolean - local_dial_enabled: - type: - - "null" - - boolean - click_to_call_enabled: - type: - - "null" - - boolean - email_client_configured: - type: - - "null" - - boolean - crm_connected: - type: - - "null" - - boolean - external_feature_flags: - type: - - "null" - - object - additionalProperties: true - properties: {} - phone_client: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - phone_number_assignment: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - group: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - team: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - role: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - - string - account_tiers: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - name: - type: - - "null" - - string - order: - type: - - "null" - - integer - created_at: - type: string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - import: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - created_at: - type: string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - name: - type: - - "null" - - string - current_people_count: - type: - - "null" - - integer - imported_people_count: - type: - - "null" - - integer - person_stages: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - name: - type: - - "null" - - string - created_at: - type: string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - order: - type: - - "null" - - integer - phone_number_assignments: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - number: - type: - - "null" - - string - user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - steps: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - disabled: - type: - - "null" - - boolean - type: - type: - - "null" - - string - name: - type: - - "null" - - string - display_name: - type: - - "null" - - string - day: - type: - - "null" - - integer - step_number: - type: - - "null" - - integer - details: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - cadence: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - team_template_attachments: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - attachment_id: - type: - - "null" - - integer - team_template: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - string - _href: - type: - - "null" - - string - name: - type: - - "null" - - string - download_url: - type: - - "null" - - string - attachment_file_size: - type: - - "null" - - integer - email_template_attachments: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - attachment_id: - type: - - "null" - - integer - team_template: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - name: - type: - - "null" - - string - download_url: - type: - - "null" - - string - attachment_file_size: - type: - - "null" - - integer - crm_users: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - crm_id: - type: - - "null" - - string - created_at: - type: string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - groups: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - name: - type: - - "null" - - string - parent_id: - type: - - "null" - - integer - custom_fields: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - name: - type: - - "null" - - string - field_type: - type: - - "null" - - string - value_type: - type: - - "null" - - string - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - call_dispositions: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - name: - type: - - "null" - - string - call_sentiments: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - name: - type: - - "null" - - string - meetings: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - title: - type: - - "null" - - string - start_time: - type: - - "null" - - string - format: date-time - end_time: - type: - - "null" - - string - format: date-time - calendar_id: - type: - - "null" - - string - calendar_type: - type: - - "null" - - string - meeting_type: - type: - - "null" - - string - recipient_name: - type: - - "null" - - string - recipient_email: - type: - - "null" - - string - location: - type: - - "null" - - string - description: - type: - - "null" - - string - event_id: - type: - - "null" - - string - account_id: - type: - - "null" - - string - task_id: - type: - - "null" - - integer - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - guests: - type: - - "null" - - array - items: - type: - - "null" - - string - attendees: - type: - - "null" - - array - items: - type: - - "null" - - object - additionalProperties: true - properties: - email: - type: - - "null" - - string - name: - type: - - "null" - - string - organizer: - type: - - "null" - - boolean - status: - type: - - "null" - - string - status_changed: - type: - - "null" - - boolean - deleted_at: - type: - - "null" - - string - format: date-time - person: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - cadence: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - step: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - booked_by_user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - string - _href: - type: - - "null" - - string - crm_references: - type: - - "null" - - object - additionalProperties: true - event_source: - type: - - "null" - - string - canceled_at: - type: - - "null" - - string - format: date-time - all_day: - type: - - "null" - - boolean - no_show: - type: - - "null" - - boolean - crm_custom_fields: - type: - - "null" - - object - additionalProperties: true - strict_attribution: - type: - - "null" - - boolean - i_cal_uid: - type: - - "null" - - string - status: - type: - - "null" - - string - reschedule_status: - type: - - "null" - - string - owned_by_meetings_settings: - type: - - "null" - - object - additionalProperties: true - properties: - id: - email_address: - - "null" - - string - booked_by_meetings_settings: - type: - - "null" - - object - additionalProperties: true - properties: - id: - email_address: - - "null" - - string - people: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - last_contacted_at: - type: - - "null" - - string - format: date-time - last_replied_at: - type: - - "null" - - string - format: date-time - first_name: - type: - - "null" - - string - last_name: - type: - - "null" - - string - display_name: - type: - - "null" - - string - email_address: - type: - - "null" - - string - full_email_address: - type: - - "null" - - string - secondary_email_address: - type: - - "null" - - string - personal_email_address: - type: - - "null" - - string - phone: - type: - - "null" - - string - phone_extension: - type: - - "null" - - string - home_phone: - type: - - "null" - - string - mobile_phone: - type: - - "null" - - string - linkedin_url: - type: - - "null" - - string - title: - type: - - "null" - - string - city: - type: - - "null" - - string - state: - type: - - "null" - - string - country: - type: - - "null" - - string - work_city: - type: - - "null" - - string - work_state: - type: - - "null" - - string - work_country: - type: - - "null" - - string - crm_url: - type: - - "null" - - string - crm_id: - type: - - "null" - - string - crm_object_type: - type: - - "null" - - string - owner_crm_id: - type: - - "null" - - string - person_company_name: - type: - - "null" - - string - person_company_website: - type: - - "null" - - string - person_company_industry: - type: - - "null" - - string - do_not_contact: - type: - - "null" - - boolean - bouncing: - type: - - "null" - - boolean - locale: - type: - - "null" - - string - personal_website: - type: - - "null" - - string - twitter_handle: - type: - - "null" - - string - last_contacted_type: - type: - - "null" - - string - job_seniority: - type: - - "null" - - string - custom_fields: - type: - - "null" - - object - additionalProperties: true - properties: {} - tags: - type: - - "null" - - array - items: - type: - - "null" - - string - contact_restrictions: - type: - - "null" - - array - items: - type: - - "null" - - string - counts: - type: - - "null" - - object - additionalProperties: true - properties: - emails_sent: - type: - - "null" - - integer - emails_viewed: - type: - - "null" - - integer - emails_clicked: - type: - - "null" - - integer - emails_replied_to: - type: - - "null" - - integer - emails_bounced: - type: - - "null" - - integer - calls: - type: - - "null" - - integer - account: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - owner: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - last_contacted_by: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - import: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - person_stage: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - most_recent_cadence: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - last_completed_step_cadence: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - last_completed_step: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - cadences: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - archived_at: - type: - - "null" - - string - format: date-time - team_cadence: - type: - - "null" - - boolean - shared: - type: - - "null" - - boolean - remove_bounces_enabled: - type: - - "null" - - boolean - remove_replies_enabled: - type: - - "null" - - boolean - opt_out_link_included: - type: - - "null" - - boolean - name: - type: - - "null" - - string - tags: - type: - - "null" - - array - items: - type: - - "null" - - string - creator: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - owner: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - bounced_stage: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - replied_stage: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - added_stage: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - finished_stage: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - counts: - type: - - "null" - - object - additionalProperties: true - properties: - cadence_people: - type: - - "null" - - integer - target_daily_people: - type: - - "null" - - integer - latest_active_date: - type: - - "null" - - string - format: date - cadence_memberships: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - added_at: - type: - - "null" - - string - format: date-time - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - person_deleted: - type: - - "null" - - boolean - currently_on_cadence: - type: - - "null" - - boolean - current_state: - type: - - "null" - - string - cadence: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - person: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - user: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - latest_action: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - counts: - type: - - "null" - - object - additionalProperties: true - properties: - views: - type: - - "null" - - integer - clicks: - type: - - "null" - - integer - replies: - type: - - "null" - - integer - calls: - type: - - "null" - - integer - sent_emails: - type: - - "null" - - integer - bounces: - type: - - "null" - - integer - emails: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - recipient_email_address: - type: - - "null" - - string - status: - type: - - "null" - - string - bounced: - type: - - "null" - - boolean - send_after: - type: - - "null" - - string - format: date-time - sent_at: - type: - - "null" - - string - format: date-time - view_tracking: - type: - - "null" - - boolean - click_tracking: - type: - - "null" - - boolean - personalization: - type: - - "null" - - string - counts: - type: - - "null" - - object - additionalProperties: true - properties: - clicks: - type: - - "null" - - integer - views: - type: - - "null" - - integer - replies: - type: - - "null" - - integer - unique_devices: - type: - - "null" - - integer - unique_locations: - type: - - "null" - - integer - attachments: - type: - - "null" - - integer - headers: - type: - - "null" - - object - additionalProperties: true - properties: - In-Reply-To: - type: - - "null" - - string - References: - type: - - "null" - - string - to: - type: - - "null" - - string - cc: - type: - - "null" - - string - in_reply_to: - type: - - "null" - - string - bcc: - type: - - "null" - - string - user: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - recipient: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - mailing: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - action: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - crm_activity: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - cadence: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - step: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - email_template: - type: - - "null" - - object - additionalProperties: true - properties: - _href: - type: - - "null" - - string - id: - type: - - "null" - - integer - calls: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - to: - type: - - "null" - - string - duration: - type: - - "null" - - integer - sentiment: - type: - - "null" - - string - disposition: - type: - - "null" - - string - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - action: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - called_person: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - crm_activity: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - note: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - cadence: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - step: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - accounts: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - archived_at: - type: - - "null" - - string - format: date-time - name: - type: - - "null" - - string - domain: - type: - - "null" - - string - conversational_name: - type: - - "null" - - string - description: - type: - - "null" - - string - phone: - type: - - "null" - - string - website: - type: - - "null" - - string - linkedin_url: - type: - - "null" - - string - twitter_handle: - type: - - "null" - - string - street: - type: - - "null" - - string - city: - type: - - "null" - - string - state: - type: - - "null" - - string - postal_code: - type: - - "null" - - string - country: - type: - - "null" - - string - locale: - type: - - "null" - - string - industry: - type: - - "null" - - string - company_type: - type: - - "null" - - string - founded: - type: - - "null" - - string - revenue_range: - type: - - "null" - - string - size: - type: - - "null" - - string - crm_id: - type: - - "null" - - string - crm_url: - type: - - "null" - - string - crm_object_type: - type: - - "null" - - string - owner_crm_id: - type: - - "null" - - string - last_contacted_at: - type: - - "null" - - string - format: date-time - last_contacted_type: - type: - - "null" - - string - do_not_contact: - type: - - "null" - - boolean - counts: - type: - - "null" - - object - additionalProperties: true - properties: - people: - type: - - "null" - - integer - owner: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - creator: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - last_contacted_by: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - last_contacted_person: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - company_stage: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - account_tier: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - tags: - type: - - "null" - - array - items: - type: - - "null" - - string - account_stages: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - name: - type: - - "null" - - string - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - order: - type: - - "null" - - integer - actions: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - due: - type: - - "null" - - boolean - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - type: - type: - - "null" - - string - status: - type: - - "null" - - string - due_on: - type: - - "null" - - string - format: date-time - multitouch_group_id: - type: - - "null" - - integer - action_details: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - person: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - cadence: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - step: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - email_templates: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - title: - type: - - "null" - - string - subject: - type: - - "null" - - string - body: - type: - - "null" - - string - body_preview: - type: - - "null" - - string - created_at: - type: string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - last_used_at: - type: - - "null" - - string - format: date-time - archived_at: - type: - - "null" - - string - format: date-time - shared: - type: - - "null" - - boolean - open_tracking_enabled: - type: - - "null" - - boolean - click_tracking_enabled: - type: - - "null" - - boolean - cadence_template: - type: - - "null" - - boolean - counts: - type: - - "null" - - object - additionalProperties: true - properties: - sent_emails: - type: - - "null" - - integer - views: - type: - - "null" - - integer - clicks: - type: - - "null" - - integer - replies: - type: - - "null" - - integer - bounces: - type: - - "null" - - integer - template_owner: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - team_template: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - string - _href: - type: - - "null" - - string - _links: - type: - - "null" - - object - additionalProperties: true - properties: - attachments: - type: - - "null" - - string - groups: - type: - - "null" - - array - items: - type: object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - tags: - type: - - "null" - - array - items: - type: - - "null" - - string - notes: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - content: - type: - - "null" - - string - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - associated_with: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - call: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - team_templates: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: string - title: - type: - - "null" - - string - subject: - type: - - "null" - - string - body: - type: - - "null" - - string - body_preview: - type: - - "null" - - string - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - last_used_at: - type: - - "null" - - string - format: date-time - archived_at: - type: - - "null" - - string - format: date-time - last_modified_at: - type: - - "null" - - string - format: date-time - open_tracking_enabled: - type: - - "null" - - boolean - click_tracking_enabled: - type: - - "null" - - boolean - counts: - type: - - "null" - - object - additionalProperties: true - properties: - sent_emails: - type: - - "null" - - integer - views: - type: - - "null" - - integer - clicks: - type: - - "null" - - integer - replies: - type: - - "null" - - integer - bounces: - type: - - "null" - - integer - last_modified_user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - _links: - type: - - "null" - - object - additionalProperties: true - properties: - attachments: - type: - - "null" - - string - tags: - type: - - "null" - - array - items: - type: - - "null" - - string - crm_activities: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - subject: - type: - - "null" - - string - description: - type: - - "null" - - string - crm_id: - type: - - "null" - - string - activity_type: - type: - - "null" - - string - error: - type: - - "null" - - string - custom_crm_fields: - type: - - "null" - - object - person: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - successes: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: integer - created_at: - type: string - format: date-time - updated_at: - type: string - format: date-time - succeeded_at: - type: - - "null" - - string - format: date-time - success_window_started_at: - type: - - "null" - - string - format: date-time - user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - person: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - latest_email: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - latest_call: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - latest_action: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - latest_cadence: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - latest_step: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - counts: - type: - - "null" - - object - additionalProperties: true - properties: - total_emails: - type: - - "null" - - integer - total_calls: - type: - - "null" - - integer - total_other_touches: - type: - - "null" - - integer - call_data_records: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - to: - type: - - "null" - - string - from: - type: - - "null" - - string - duration: - type: - - "null" - - integer - direction: - type: - - "null" - - string - status: - type: - - "null" - - string - call_type: - type: - - "null" - - string - call_uuid: - type: - - "null" - - string - recording: - type: - - "null" - - object - additionalProperties: true - properties: - url: - type: - - "null" - - string - status: - type: - - "null" - - string - recording_status: - type: - - "null" - - string - call: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - called_person: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - _href: - type: - - "null" - - string - searches: - "$schema": http://json-schema.org/draft-07/schema# - type: object - additionalProperties: true - properties: - id: - type: - - "null" - - integer - user: - type: - - "null" - - object - additionalProperties: true - properties: - id: - type: - - "null" - - string - _href: - type: - - "null" - - string - user_slug: - type: - - "null" - - string - primary_calendar_id: - type: - - "null" - - string - primary_calendar_name: - type: - - "null" - - string - email_address: - type: - - "null" - - string - user_details: - type: - - "null" - - object - additionalProperties: true - calendar_type: - type: - - "null" - - string - title: - type: - - "null" - - string - description: - type: - - "null" - - string - location: - type: - - "null" - - string - default_meeting_length: - type: - - "null" - - integer - availability_limit_enabled: - type: - - "null" - - boolean - availability_limit: - type: - - "null" - - integer - schedule_delay: - type: - - "null" - - integer - buffer_time_duration: - type: - - "null" - - integer - schedule_buffer_enabled: - type: - - "null" - - boolean - times_available: - type: - - "null" - - object - additionalProperties: true - allow_booking_on_behalf: - type: - - "null" - - boolean - allow_booking_overtime: - type: - - "null" - - boolean - allow_event_overlap: - type: - - "null" - - boolean - allow_event_detail: - type: - - "null" - - boolean - enable_dynamic_location: - type: - - "null" - - boolean - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - time_zone: - type: - - "null" - - string - primary_calendar_connection_failed: - type: - - "null" - - boolean - enable_calendar_sync: - type: - - "null" - - boolean - reschedule_meetings_enabled: - type: - - "null" - - boolean - active_meeting_url: - type: - - "null" - - object - additionalProperties: true - properties: - url: - type: - - "null" - - string - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time diff --git a/airbyte-integrations/connectors/source-salesloft/source_salesloft/run.py b/airbyte-integrations/connectors/source-salesloft/source_salesloft/run.py deleted file mode 100644 index aa9f841fa8df..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/source_salesloft/run.py +++ /dev/null @@ -1,15 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch - -from .source import SourceSalesloft - - -def run(): - source = SourceSalesloft() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-salesloft/source_salesloft/source.py b/airbyte-integrations/connectors/source-salesloft/source_salesloft/source.py deleted file mode 100644 index ed97803a6c6c..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/source_salesloft/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceSalesloft(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-salesloft/unit_tests/conftest.py b/airbyte-integrations/connectors/source-salesloft/unit_tests/conftest.py deleted file mode 100644 index 5f7390d53f95..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/unit_tests/conftest.py +++ /dev/null @@ -1,20 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from pytest import fixture - - -@fixture -def config(): - return { - "credentials": { - "auth_type": "oauth2.0", - "client_id": "client_id", - "client_secret": "client_secret", - "refresh_token": "refresh_token", - "access_token": "access_token", - "token_expiry_date": "2222-02-02T00:00:00Z", - }, - "start_date": "2020-01-01T00:00:00.000Z", - } diff --git a/airbyte-integrations/connectors/source-salesloft/unit_tests/test_source.py b/airbyte-integrations/connectors/source-salesloft/unit_tests/test_source.py deleted file mode 100644 index 1f5966263483..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/unit_tests/test_source.py +++ /dev/null @@ -1,29 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -import logging - -import pytest -from source_salesloft.source import SourceSalesloft - - -def mock_response(): - return {"data": [{"id": "mock1"}, {"id": "mock2"}]} - - -def test_streams(config): - source = SourceSalesloft() - streams = source.streams(config) - expected_streams_number = 29 - assert len(streams) == expected_streams_number - - -@pytest.mark.parametrize("status_code, check_successful", ((403, False), (200, True))) -def test_check_connection(requests_mock, config, status_code, check_successful): - requests_mock.post("https://accounts.salesloft.com/oauth/token", json={"access_token": "token", "expires_in": 7200}) - requests_mock.get("https://api.salesloft.com/v2/users", status_code=status_code, json=mock_response()) - source = SourceSalesloft() - ok, error = source.check_connection(logging.getLogger(), config) - assert ok is check_successful - assert bool(error) is not check_successful diff --git a/airbyte-integrations/connectors/source-salesloft/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-salesloft/unit_tests/test_streams.py deleted file mode 100644 index 29effbdbc95d..000000000000 --- a/airbyte-integrations/connectors/source-salesloft/unit_tests/test_streams.py +++ /dev/null @@ -1,88 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from typing import Any, Mapping - -import pytest -from airbyte_cdk.sources.streams import Stream -from airbyte_protocol.models import SyncMode -from jsonref import requests -from source_salesloft.source import SourceSalesloft - - -def mock_response(): - return {"data": [{"id": "mock1"}, {"id": "mock2"}]} - - -def get_stream_by_name(stream_name: str, config: Mapping[str, Any]) -> Stream: - source = SourceSalesloft() - matches_by_name = [stream_config for stream_config in source.streams(config) if stream_config.name == stream_name] - if not matches_by_name: - raise ValueError("Please provide a valid stream name.") - return matches_by_name[0] - - -def test_request_params(config): - stream = get_stream_by_name("users", config) - inputs = {"stream_slice": None, "stream_state": None, "next_page_token": None} - expected_params = {} - assert stream.retriever.requester.get_request_params(**inputs) == expected_params - - -def test_incremental_request_params(config): - stream = get_stream_by_name("accounts", config) - inputs = {"stream_slice": None, "stream_state": None, "next_page_token": None} - expected_params = { - "created_at[gt]": "2020-01-01T00:00:00.000Z", - "updated_at[gt]": "2020-01-01T00:00:00.000000Z", - } - assert stream.retriever.requester.get_request_params(**inputs) == expected_params - - -def test_next_page_token(requests_mock, config): - stream = get_stream_by_name("users", config) - response = {"metadata": {"paging": {"next_page": 2}}} - requests_mock.post("https://accounts.salesloft.com/oauth/token", json={"access_token": "token", "expires_in": 7200}) - requests_mock.get("https://api.salesloft.com/v2/users", status_code=200, json=response) - inputs = {"response": requests.get("https://api.salesloft.com/v2/users")} - expected_token = {"next_page_token": 2} - assert stream.retriever._next_page_token(**inputs) == expected_token - - -def test_next_page_token_invalid(requests_mock, config): - stream = get_stream_by_name("users", config) - response = {"metadata": {"paginfffg": {"next_pagaae": 2}}} - requests_mock.post("https://accounts.salesloft.com/oauth/token", json={"access_token": "token", "expires_in": 7200}) - requests_mock.get("https://api.salesloft.com/v2/users", status_code=200, json=response) - inputs = {"response": requests.get("https://api.salesloft.com/v2/users")} - with pytest.raises(AttributeError) as ex: - stream.retriever._next_page_token(**inputs).get("next_page_token") - assert isinstance(ex.value, AttributeError) - - -def test_get_updated_state(config): - stream = get_stream_by_name("accounts", config) - inputs = {"current_stream_state": {}, "latest_record": {}} - expected_state = {} - assert stream.get_updated_state(**inputs) == expected_state - - -@pytest.mark.parametrize( - "return_value, expected_records", (({"metadata": {}}, []), ({"data": [{"id": 1}, {"id": 2}], "metadata": {}}, [{"id": 1}, {"id": 2}])) -) -def test_parse_response(requests_mock, config, return_value, expected_records): - stream = get_stream_by_name("users", config) - requests_mock.post("https://accounts.salesloft.com/oauth/token", json={"access_token": "token", "expires_in": 7200}) - requests_mock.get("https://api.salesloft.com/v2/users", status_code=200, json=return_value) - records = [] - for stream_slice in stream.stream_slices(sync_mode=SyncMode.full_refresh): - records.extend(list(stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream_slice))) - assert len(records) == len(expected_records) - for i in range(len(records)): - assert records[i].keys() == expected_records[i].keys() - - -def test_stream_has_path(config): - for stream in SourceSalesloft().streams(config): - assert stream.retriever.requester.path diff --git a/docs/integrations/sources/salesloft.md b/docs/integrations/sources/salesloft.md index dbecf965ffde..dc271154a287 100644 --- a/docs/integrations/sources/salesloft.md +++ b/docs/integrations/sources/salesloft.md @@ -105,6 +105,7 @@ Salesloft has the [rate limits](hhttps://developers.salesloft.com/api.html#!/Top | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------------- | +| 1.3.0 | 2024-11-04 | [47298](https://github.com/airbytehq/airbyte/pull/47298) | Migrate to manifest only format | | 1.2.24 | 2024-10-29 | [47048](https://github.com/airbytehq/airbyte/pull/47048) | Update dependencies | | 1.2.23 | 2024-10-12 | [46833](https://github.com/airbytehq/airbyte/pull/46833) | Update dependencies | | 1.2.22 | 2024-10-05 | [46491](https://github.com/airbytehq/airbyte/pull/46491) | Update dependencies | From d07793d284f5a92d585fec417512172c64596860 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:07:58 +0200 Subject: [PATCH 580/808] =?UTF-8?q?=F0=9F=90=99=20source-mailersend:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48203)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailersend/metadata.yaml | 4 ++-- docs/integrations/sources/mailersend.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailersend/metadata.yaml b/airbyte-integrations/connectors/source-mailersend/metadata.yaml index c5259fd0fecb..2ea28eb22090 100644 --- a/airbyte-integrations/connectors/source-mailersend/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailersend/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2707d529-3c04-46eb-9c7e-40d4038df6f7 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-mailersend githubIssueLabel: source-mailersend icon: mailersend.svg @@ -38,5 +38,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/mailersend.md b/docs/integrations/sources/mailersend.md index 81a16d844bda..38b40520e36f 100644 --- a/docs/integrations/sources/mailersend.md +++ b/docs/integrations/sources/mailersend.md @@ -28,6 +28,7 @@ MailerSend has a default [rate limit](https://developers.mailersend.com/general. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------- | +| 0.2.3 | 2024-11-04 | [48203](https://github.com/airbytehq/airbyte/pull/48203) | Update dependencies | | 0.2.2 | 2024-10-29 | [47785](https://github.com/airbytehq/airbyte/pull/47785) | Update dependencies | | 0.2.1 | 2024-10-28 | [47592](https://github.com/airbytehq/airbyte/pull/47592) | Update dependencies | | 0.2.0 | 2024-08-26 | [44766](https://github.com/airbytehq/airbyte/pull/44766) | Refactor connector to manifest-only format | From 84eccd834d96327de03d1650f89c0b81b09054af Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:00 +0200 Subject: [PATCH 581/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-lists:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48202)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-microsoft-lists/metadata.yaml | 4 ++-- docs/integrations/sources/microsoft-lists.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml index da60bb599f13..5a2ab608e4ae 100644 --- a/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-lists/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-microsoft-lists connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 18ea5fae-f0b1-4d82-9aef-832bb922a5b5 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-microsoft-lists githubIssueLabel: source-microsoft-lists icon: icon.svg diff --git a/docs/integrations/sources/microsoft-lists.md b/docs/integrations/sources/microsoft-lists.md index 619ab8473725..2295ec7f35f6 100644 --- a/docs/integrations/sources/microsoft-lists.md +++ b/docs/integrations/sources/microsoft-lists.md @@ -61,6 +61,7 @@ Microsoft Lists connector enables seamless data integration and synchronization | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.4 | 2024-11-04 | [48202](https://github.com/airbytehq/airbyte/pull/48202) | Update dependencies | | 0.0.3 | 2024-10-29 | [47925](https://github.com/airbytehq/airbyte/pull/47925) | Update dependencies | | 0.0.2 | 2024-10-28 | [47544](https://github.com/airbytehq/airbyte/pull/47544) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 688601d6438be8b9a205d9affaf78c3e8ceef17d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:05 +0200 Subject: [PATCH 582/808] =?UTF-8?q?=F0=9F=90=99=20source-tplcentral:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48200)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tplcentral/metadata.yaml | 2 +- .../connectors/source-tplcentral/poetry.lock | 12 ++++++------ .../connectors/source-tplcentral/pyproject.toml | 2 +- docs/integrations/sources/tplcentral.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-tplcentral/metadata.yaml b/airbyte-integrations/connectors/source-tplcentral/metadata.yaml index 78b7bc32602b..a3861e871740 100644 --- a/airbyte-integrations/connectors/source-tplcentral/metadata.yaml +++ b/airbyte-integrations/connectors/source-tplcentral/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: f9b6c538-ee12-42fe-8d4b-0c10f5955417 - dockerImageTag: 0.1.25 + dockerImageTag: 0.1.26 dockerRepository: airbyte/source-tplcentral githubIssueLabel: source-tplcentral icon: tplcentral.svg diff --git a/airbyte-integrations/connectors/source-tplcentral/poetry.lock b/airbyte-integrations/connectors/source-tplcentral/poetry.lock index 8d0245990452..857650ac5172 100644 --- a/airbyte-integrations/connectors/source-tplcentral/poetry.lock +++ b/airbyte-integrations/connectors/source-tplcentral/poetry.lock @@ -898,23 +898,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-tplcentral/pyproject.toml b/airbyte-integrations/connectors/source-tplcentral/pyproject.toml index 556fd2b225a8..3306691eec70 100644 --- a/airbyte-integrations/connectors/source-tplcentral/pyproject.toml +++ b/airbyte-integrations/connectors/source-tplcentral/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.25" +version = "0.1.26" name = "source-tplcentral" description = "Source implementation for Tplcentral." authors = [ "Labanoras Tech ",] diff --git a/docs/integrations/sources/tplcentral.md b/docs/integrations/sources/tplcentral.md index d5190e4779c6..da4ca021d4d7 100644 --- a/docs/integrations/sources/tplcentral.md +++ b/docs/integrations/sources/tplcentral.md @@ -49,6 +49,7 @@ Please read [How to get your APIs credentials](https://help.3plcentral.com/hc/en | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------- | +| 0.1.26 | 2024-11-04 | [48200](https://github.com/airbytehq/airbyte/pull/48200) | Update dependencies | | 0.1.25 | 2024-10-28 | [47030](https://github.com/airbytehq/airbyte/pull/47030) | Update dependencies | | 0.1.24 | 2024-10-12 | [46809](https://github.com/airbytehq/airbyte/pull/46809) | Update dependencies | | 0.1.23 | 2024-10-05 | [46508](https://github.com/airbytehq/airbyte/pull/46508) | Update dependencies | From db7320aa45c06be2eace46496bfd0fff1308b658 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:09 +0200 Subject: [PATCH 583/808] =?UTF-8?q?=F0=9F=90=99=20source-hubspot:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48199)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-hubspot/metadata.yaml | 2 +- .../connectors/source-hubspot/poetry.lock | 124 +++++++++--------- .../connectors/source-hubspot/pyproject.toml | 2 +- docs/integrations/sources/hubspot.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-hubspot/metadata.yaml b/airbyte-integrations/connectors/source-hubspot/metadata.yaml index e82812a6ce59..0ec53dba239e 100644 --- a/airbyte-integrations/connectors/source-hubspot/metadata.yaml +++ b/airbyte-integrations/connectors/source-hubspot/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 36c891d9-4bd9-43ac-bad2-10e12756272c - dockerImageTag: 4.2.25 + dockerImageTag: 4.2.26 dockerRepository: airbyte/source-hubspot documentationUrl: https://docs.airbyte.com/integrations/sources/hubspot erdUrl: https://dbdocs.io/airbyteio/source-hubspot?view=relationships diff --git a/airbyte-integrations/connectors/source-hubspot/poetry.lock b/airbyte-integrations/connectors/source-hubspot/poetry.lock index 848eb250eb78..2d4920b19fcc 100644 --- a/airbyte-integrations/connectors/source-hubspot/poetry.lock +++ b/airbyte-integrations/connectors/source-hubspot/poetry.lock @@ -705,13 +705,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -809,69 +809,69 @@ test = ["pytest", "pytest-cov"] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-hubspot/pyproject.toml b/airbyte-integrations/connectors/source-hubspot/pyproject.toml index 76073d22a5ce..64d77c068c13 100644 --- a/airbyte-integrations/connectors/source-hubspot/pyproject.toml +++ b/airbyte-integrations/connectors/source-hubspot/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.2.25" +version = "4.2.26" name = "source-hubspot" description = "Source implementation for HubSpot." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/hubspot.md b/docs/integrations/sources/hubspot.md index b7c3da361c9b..8f38382370a2 100644 --- a/docs/integrations/sources/hubspot.md +++ b/docs/integrations/sources/hubspot.md @@ -336,6 +336,7 @@ The connector is restricted by normal HubSpot [rate limitations](https://legacyd | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 4.2.26 | 2024-11-04 | [48199](https://github.com/airbytehq/airbyte/pull/48199) | Update dependencies | | 4.2.25 | 2024-10-29 | [47028](https://github.com/airbytehq/airbyte/pull/47028) | Update dependencies | | 4.2.24 | 2024-10-12 | [46827](https://github.com/airbytehq/airbyte/pull/46827) | Update dependencies | | 4.2.23 | 2024-10-05 | [46494](https://github.com/airbytehq/airbyte/pull/46494) | Update dependencies | From f8a3e150ed4912f9a198485b3c8d7a79a9d3ad19 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:15 +0200 Subject: [PATCH 584/808] =?UTF-8?q?=F0=9F=90=99=20source-ashby:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-11-04]=20(#48196)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-ashby/metadata.yaml | 4 ++-- docs/integrations/sources/ashby.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-ashby/metadata.yaml b/airbyte-integrations/connectors/source-ashby/metadata.yaml index 705f8ce529ed..c8a33afd24c9 100644 --- a/airbyte-integrations/connectors/source-ashby/metadata.yaml +++ b/airbyte-integrations/connectors/source-ashby/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4e8c9fa0-3634-499b-b948-11581b5c3efa - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-ashby githubIssueLabel: source-ashby icon: ashby.svg @@ -29,5 +29,5 @@ data: connectorTestSuitesOptions: - suite: unitTests connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/ashby.md b/docs/integrations/sources/ashby.md index ba4aeab9dfee..2b0f275b41db 100644 --- a/docs/integrations/sources/ashby.md +++ b/docs/integrations/sources/ashby.md @@ -48,6 +48,7 @@ The Ashby connector should not run into Ashby API limitations under normal usage | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- |:--------------------------------------------| +| 0.2.3 | 2024-11-04 | [48196](https://github.com/airbytehq/airbyte/pull/48196) | Update dependencies | | 0.2.2 | 2024-10-29 | [47729](https://github.com/airbytehq/airbyte/pull/47729) | Update dependencies | | 0.2.1 | 2024-10-28 | [47616](https://github.com/airbytehq/airbyte/pull/47616) | Update dependencies | | 0.2.0 | 2024-08-19 | [44420](https://github.com/airbytehq/airbyte/pull/44420) | Refactor connector to manifest-only format | From f48e39f1c30836b2240f7284e2798b06f3f4583b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:23 +0200 Subject: [PATCH 585/808] =?UTF-8?q?=F0=9F=90=99=20destination-qdrant:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48191)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-qdrant/metadata.yaml | 2 +- .../connectors/destination-qdrant/poetry.lock | 352 +++++++++--------- .../destination-qdrant/pyproject.toml | 2 +- docs/integrations/destinations/qdrant.md | 1 + 4 files changed, 177 insertions(+), 180 deletions(-) diff --git a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml index 25f79fcb2fed..0de956891531 100644 --- a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml +++ b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 6eb1198a-6d38-43e5-aaaa-dccd8f71db2b - dockerImageTag: 0.1.19 + dockerImageTag: 0.1.20 dockerRepository: airbyte/destination-qdrant githubIssueLabel: destination-qdrant icon: qdrant.svg diff --git a/airbyte-integrations/connectors/destination-qdrant/poetry.lock b/airbyte-integrations/connectors/destination-qdrant/poetry.lock index bbc36fa7173d..7493f0469a54 100644 --- a/airbyte-integrations/connectors/destination-qdrant/poetry.lock +++ b/airbyte-integrations/connectors/destination-qdrant/poetry.lock @@ -1857,13 +1857,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1963,13 +1963,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.23.0" +version = "3.23.1" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.9" files = [ - {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, - {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, + {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, + {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, ] [package.dependencies] @@ -1977,7 +1977,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "simplejson"] [[package]] @@ -2318,36 +2318,32 @@ reference = ["Pillow", "google-re2"] [[package]] name = "onnxruntime" -version = "1.19.2" +version = "1.20.0" description = "ONNX Runtime is a runtime accelerator for Machine Learning models" optional = false python-versions = "*" files = [ - {file = "onnxruntime-1.19.2-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:84fa57369c06cadd3c2a538ae2a26d76d583e7c34bdecd5769d71ca5c0fc750e"}, - {file = "onnxruntime-1.19.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bdc471a66df0c1cdef774accef69e9f2ca168c851ab5e4f2f3341512c7ef4666"}, - {file = "onnxruntime-1.19.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e3a4ce906105d99ebbe817f536d50a91ed8a4d1592553f49b3c23c4be2560ae6"}, - {file = "onnxruntime-1.19.2-cp310-cp310-win32.whl", hash = "sha256:4b3d723cc154c8ddeb9f6d0a8c0d6243774c6b5930847cc83170bfe4678fafb3"}, - {file = "onnxruntime-1.19.2-cp310-cp310-win_amd64.whl", hash = "sha256:17ed7382d2c58d4b7354fb2b301ff30b9bf308a1c7eac9546449cd122d21cae5"}, - {file = "onnxruntime-1.19.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:d863e8acdc7232d705d49e41087e10b274c42f09e259016a46f32c34e06dc4fd"}, - {file = "onnxruntime-1.19.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c1dfe4f660a71b31caa81fc298a25f9612815215a47b286236e61d540350d7b6"}, - {file = "onnxruntime-1.19.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a36511dc07c5c964b916697e42e366fa43c48cdb3d3503578d78cef30417cb84"}, - {file = "onnxruntime-1.19.2-cp311-cp311-win32.whl", hash = "sha256:50cbb8dc69d6befad4746a69760e5b00cc3ff0a59c6c3fb27f8afa20e2cab7e7"}, - {file = "onnxruntime-1.19.2-cp311-cp311-win_amd64.whl", hash = "sha256:1c3e5d415b78337fa0b1b75291e9ea9fb2a4c1f148eb5811e7212fed02cfffa8"}, - {file = "onnxruntime-1.19.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:68e7051bef9cfefcbb858d2d2646536829894d72a4130c24019219442b1dd2ed"}, - {file = "onnxruntime-1.19.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d2d366fbcc205ce68a8a3bde2185fd15c604d9645888703785b61ef174265168"}, - {file = "onnxruntime-1.19.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:477b93df4db467e9cbf34051662a4b27c18e131fa1836e05974eae0d6e4cf29b"}, - {file = "onnxruntime-1.19.2-cp312-cp312-win32.whl", hash = "sha256:9a174073dc5608fad05f7cf7f320b52e8035e73d80b0a23c80f840e5a97c0147"}, - {file = "onnxruntime-1.19.2-cp312-cp312-win_amd64.whl", hash = "sha256:190103273ea4507638ffc31d66a980594b237874b65379e273125150eb044857"}, - {file = "onnxruntime-1.19.2-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:636bc1d4cc051d40bc52e1f9da87fbb9c57d9d47164695dfb1c41646ea51ea66"}, - {file = "onnxruntime-1.19.2-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5bd8b875757ea941cbcfe01582970cc299893d1b65bd56731e326a8333f638a3"}, - {file = "onnxruntime-1.19.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b2046fc9560f97947bbc1acbe4c6d48585ef0f12742744307d3364b131ac5778"}, - {file = "onnxruntime-1.19.2-cp38-cp38-win32.whl", hash = "sha256:31c12840b1cde4ac1f7d27d540c44e13e34f2345cf3642762d2a3333621abb6a"}, - {file = "onnxruntime-1.19.2-cp38-cp38-win_amd64.whl", hash = "sha256:016229660adea180e9a32ce218b95f8f84860a200f0f13b50070d7d90e92956c"}, - {file = "onnxruntime-1.19.2-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:006c8d326835c017a9e9f74c9c77ebb570a71174a1e89fe078b29a557d9c3848"}, - {file = "onnxruntime-1.19.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:df2a94179a42d530b936f154615b54748239c2908ee44f0d722cb4df10670f68"}, - {file = "onnxruntime-1.19.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fae4b4de45894b9ce7ae418c5484cbf0341db6813effec01bb2216091c52f7fb"}, - {file = "onnxruntime-1.19.2-cp39-cp39-win32.whl", hash = "sha256:dc5430f473e8706fff837ae01323be9dcfddd3ea471c900a91fa7c9b807ec5d3"}, - {file = "onnxruntime-1.19.2-cp39-cp39-win_amd64.whl", hash = "sha256:38475e29a95c5f6c62c2c603d69fc7d4c6ccbf4df602bd567b86ae1138881c49"}, + {file = "onnxruntime-1.20.0-cp310-cp310-macosx_13_0_universal2.whl", hash = "sha256:2ac38bc6cbf7bb8527ded58711af6ef2c8c59d070f0fde58f83824422526922a"}, + {file = "onnxruntime-1.20.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cfd5a22abc11b273ec76fa773e22db19b749e27bf1ed05dd50d207f1817aae1"}, + {file = "onnxruntime-1.20.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6b5daee2d03909b589f1a9ab24c325cc3c33ab7f736228158784fb1a97a92308"}, + {file = "onnxruntime-1.20.0-cp310-cp310-win32.whl", hash = "sha256:e1eb08c13f91f830eb8df4f4e17a2a2652d1165f50bbed4f28f2afbf425c55d7"}, + {file = "onnxruntime-1.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:cfcc1d21a12076bcc213441b405c48e1f21dedb36943e31eb93cb7a12b34678e"}, + {file = "onnxruntime-1.20.0-cp311-cp311-macosx_13_0_universal2.whl", hash = "sha256:3398354e9145c68edc09dbc72265401150027e76716ae758e8d9b52e6a7ddca0"}, + {file = "onnxruntime-1.20.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a831b720d0a7be8241a230cb06f592e8bb66652d7cea54ce02d83769651fdee"}, + {file = "onnxruntime-1.20.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:041fefe60af844ebd90f344c84f908201490555cd0a6d78dd0a7acdc27b59972"}, + {file = "onnxruntime-1.20.0-cp311-cp311-win32.whl", hash = "sha256:83da64d2824809d0f6977db8bfc5091f742c26f09dfd66a3934e673780f5f87a"}, + {file = "onnxruntime-1.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:bfa390046332f5fca6f8af8c9d17164621ac52e66b11518e187278b19364800c"}, + {file = "onnxruntime-1.20.0-cp312-cp312-macosx_13_0_universal2.whl", hash = "sha256:97c2b91bfea063f9c3457422d28a336bfd2859001cd880645adfa7184e29dd79"}, + {file = "onnxruntime-1.20.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51e7b34e398089c4ed8d0f50722d7a64a4d5f11b38c4a42576458a03c6dbc72e"}, + {file = "onnxruntime-1.20.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e259378ff2843321e0bf4552adcbee48822c91d77d42dde78b87dcdf10ad01f"}, + {file = "onnxruntime-1.20.0-cp312-cp312-win32.whl", hash = "sha256:428abc1f7d8eb425887e2b7726044f2af7b5a098359455e7d2d92343f04ad0ff"}, + {file = "onnxruntime-1.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:d5f23cbfeb546e16ffea81c28d2e796a53197fdc6c92540648e2aa53a7c7a637"}, + {file = "onnxruntime-1.20.0-cp313-cp313-macosx_13_0_universal2.whl", hash = "sha256:95b91126bc3e1754868da1d3d2d08a7a10279b8ff5cea5e34e92fbe3fd691dcf"}, + {file = "onnxruntime-1.20.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d57c10d7729347d6663f32b3f569f33d69a95e150d37ff6af4be9b9ab1ffdc25"}, + {file = "onnxruntime-1.20.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b9c38735dac127d0eeb957ec312c8f1ae90ecae2779a55b2fa279aa7bd116cbd"}, + {file = "onnxruntime-1.20.0-cp313-cp313-win_amd64.whl", hash = "sha256:25514cec4ea251d492aa1e38a7395d8801e64a4c940a154aef84cfad97ae4628"}, + {file = "onnxruntime-1.20.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:640ad9ea72d322f0325a51544eddb54f4fa843c4348573c88a9cb44f46678f3f"}, + {file = "onnxruntime-1.20.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc4e7c10c98c1f407835448c26a7e14ebff3234f131e1fbc53bd9500c828df89"}, ] [package.dependencies] @@ -2405,69 +2401,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -3281,13 +3277,13 @@ files = [ [[package]] name = "qdrant-client" -version = "1.12.0" +version = "1.12.1" description = "Client library for the Qdrant vector search engine" optional = false python-versions = ">=3.8" files = [ - {file = "qdrant_client-1.12.0-py3-none-any.whl", hash = "sha256:6db5ac1e244272f8b67e9dbc0da557816efef6f919cd8ee134469c751fe72c03"}, - {file = "qdrant_client-1.12.0.tar.gz", hash = "sha256:f443db39988aa6ff7c7a605770084ddaca8fdb5f8b22f77c10e661bdf0974cda"}, + {file = "qdrant_client-1.12.1-py3-none-any.whl", hash = "sha256:b2d17ce18e9e767471368380dd3bbc4a0e3a0e2061fedc9af3542084b48451e0"}, + {file = "qdrant_client-1.12.1.tar.gz", hash = "sha256:35e8e646f75b7b883b3d2d0ee4c69c5301000bba41c82aa546e985db0f1aeb72"}, ] [package.dependencies] @@ -4160,93 +4156,93 @@ files = [ [[package]] name = "yarl" -version = "1.17.0" +version = "1.17.1" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, - {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, - {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, - {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, - {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, - {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, - {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, - {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, - {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, - {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, - {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, - {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, - {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml index 2dcc8e53ee76..ca1ae5f3955e 100644 --- a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml +++ b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-qdrant" -version = "0.1.19" +version = "0.1.20" description = "Airbyte destination implementation for Qdrant." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/qdrant.md b/docs/integrations/destinations/qdrant.md index 02605c7d2519..dc46ae08b0f3 100644 --- a/docs/integrations/destinations/qdrant.md +++ b/docs/integrations/destinations/qdrant.md @@ -73,6 +73,7 @@ You should now have all the requirements needed to configure Qdrant as a destina | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------- | +| 0.1.20 | 2024-11-04 | [48191](https://github.com/airbytehq/airbyte/pull/48191) | Update dependencies | | 0.1.19 | 2024-10-29 | [47757](https://github.com/airbytehq/airbyte/pull/47757) | Update dependencies | | 0.1.18 | 2024-10-28 | [47621](https://github.com/airbytehq/airbyte/pull/47621) | Update dependencies | | 0.1.17 | 2024-10-28 | [47054](https://github.com/airbytehq/airbyte/pull/47054) | Update dependencies | From 2ace6b871f20bb08c7040af129edf948e8d295d5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:26 +0200 Subject: [PATCH 586/808] =?UTF-8?q?=F0=9F=90=99=20source-kyve:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-04]=20(#48190)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-kyve/metadata.yaml | 2 +- .../connectors/source-kyve/poetry.lock | 12 ++++++------ .../connectors/source-kyve/pyproject.toml | 2 +- docs/integrations/sources/kyve.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-kyve/metadata.yaml b/airbyte-integrations/connectors/source-kyve/metadata.yaml index 22ff88a7ac73..0af1a163164c 100644 --- a/airbyte-integrations/connectors/source-kyve/metadata.yaml +++ b/airbyte-integrations/connectors/source-kyve/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 60a1efcc-c31c-4c63-b508-5b48b6a9f4a6 - dockerImageTag: 0.2.20 + dockerImageTag: 0.2.21 maxSecondsBetweenMessages: 7200 dockerRepository: airbyte/source-kyve githubIssueLabel: source-kyve diff --git a/airbyte-integrations/connectors/source-kyve/poetry.lock b/airbyte-integrations/connectors/source-kyve/poetry.lock index a200e9d74ec8..43a15cee8460 100644 --- a/airbyte-integrations/connectors/source-kyve/poetry.lock +++ b/airbyte-integrations/connectors/source-kyve/poetry.lock @@ -884,23 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-kyve/pyproject.toml b/airbyte-integrations/connectors/source-kyve/pyproject.toml index c58802e36c66..fecacbe1953d 100644 --- a/airbyte-integrations/connectors/source-kyve/pyproject.toml +++ b/airbyte-integrations/connectors/source-kyve/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.20" +version = "0.2.21" name = "source-kyve" description = "Source implementation for KYVE." authors = [ "KYVE Core Team ",] diff --git a/docs/integrations/sources/kyve.md b/docs/integrations/sources/kyve.md index 3eaa4fc8cbc9..26ff7e14964e 100644 --- a/docs/integrations/sources/kyve.md +++ b/docs/integrations/sources/kyve.md @@ -29,6 +29,7 @@ You can fetch with one source configuration more than one pool simultaneously. Y | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------- | :--------------------------------------------------- | +| 0.2.21 | 2024-11-04 | [48190](https://github.com/airbytehq/airbyte/pull/48190) | Update dependencies | | 0.2.20 | 2024-10-28 | [47078](https://github.com/airbytehq/airbyte/pull/47078) | Update dependencies | | 0.2.19 | 2024-10-12 | [46477](https://github.com/airbytehq/airbyte/pull/46477) | Update dependencies | | 0.2.18 | 2024-09-28 | [45815](https://github.com/airbytehq/airbyte/pull/45815) | Update dependencies | From d767e90c192f417a080a8d605b9722544b58750e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:29 +0200 Subject: [PATCH 587/808] =?UTF-8?q?=F0=9F=90=99=20source-oura:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-04]=20(#48189)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-oura/metadata.yaml | 4 ++-- docs/integrations/sources/oura.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-oura/metadata.yaml b/airbyte-integrations/connectors/source-oura/metadata.yaml index ffd8db94318b..5feb88e79d4a 100644 --- a/airbyte-integrations/connectors/source-oura/metadata.yaml +++ b/airbyte-integrations/connectors/source-oura/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 2bf6c581-bec5-4e32-891d-de33036bd631 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-oura githubIssueLabel: source-oura icon: oura.svg diff --git a/docs/integrations/sources/oura.md b/docs/integrations/sources/oura.md index f7e80d137554..85d7d81c77a1 100644 --- a/docs/integrations/sources/oura.md +++ b/docs/integrations/sources/oura.md @@ -56,6 +56,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------| +| 0.2.3 | 2024-11-04 | [48189](https://github.com/airbytehq/airbyte/pull/48189) | Update dependencies | | 0.2.2 | 2024-10-29 | [47800](https://github.com/airbytehq/airbyte/pull/47800) | Update dependencies | | 0.2.1 | 2024-10-28 | [47576](https://github.com/airbytehq/airbyte/pull/47576) | Update dependencies | | 0.2.0 | 2024-08-19 | [44409](https://github.com/airbytehq/airbyte/pull/44409) | Refactor connector to manifest-only format | From 5277dbcd1e88eea31e66e4c53029edb13804186b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:32 +0200 Subject: [PATCH 588/808] =?UTF-8?q?=F0=9F=90=99=20source-sharetribe:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48188)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sharetribe/metadata.yaml | 4 ++-- docs/integrations/sources/sharetribe.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sharetribe/metadata.yaml b/airbyte-integrations/connectors/source-sharetribe/metadata.yaml index ebe3b8a2f029..2582be9c356e 100644 --- a/airbyte-integrations/connectors/source-sharetribe/metadata.yaml +++ b/airbyte-integrations/connectors/source-sharetribe/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-sharetribe connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: efe368ce-cd19-4be4-a2b1-11c69dc6bffb - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-sharetribe githubIssueLabel: source-sharetribe icon: icon.svg diff --git a/docs/integrations/sources/sharetribe.md b/docs/integrations/sources/sharetribe.md index cc1d5333828a..eeeecd7ac70d 100644 --- a/docs/integrations/sources/sharetribe.md +++ b/docs/integrations/sources/sharetribe.md @@ -52,6 +52,7 @@ For more details about the API, check out https://www.sharetribe.com/api-referen | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [48188](https://github.com/airbytehq/airbyte/pull/48188) | Update dependencies | | 0.0.1 | 2024-10-03 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 75f671903e8fa6a734e466ec4a7d084a78e2f0a8 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:35 +0200 Subject: [PATCH 589/808] =?UTF-8?q?=F0=9F=90=99=20source-clazar:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#48187)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-clazar/metadata.yaml | 4 +-- docs/integrations/sources/clazar.md | 35 ++++++++++--------- 2 files changed, 20 insertions(+), 19 deletions(-) diff --git a/airbyte-integrations/connectors/source-clazar/metadata.yaml b/airbyte-integrations/connectors/source-clazar/metadata.yaml index 2d552b5d5bb2..c58525cc8af8 100644 --- a/airbyte-integrations/connectors/source-clazar/metadata.yaml +++ b/airbyte-integrations/connectors/source-clazar/metadata.yaml @@ -12,11 +12,11 @@ data: enabled: false packageName: airbyte-source-clazar connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: d7df7b64-6266-45b5-ad83-e1515578f371 - dockerImageTag: 0.4.3 + dockerImageTag: 0.4.4 dockerRepository: airbyte/source-clazar githubIssueLabel: source-clazar icon: clazar.svg diff --git a/docs/integrations/sources/clazar.md b/docs/integrations/sources/clazar.md index 992b7d3a6573..4e5256d1265f 100644 --- a/docs/integrations/sources/clazar.md +++ b/docs/integrations/sources/clazar.md @@ -112,23 +112,24 @@ Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------| -| 0.4.3 | 2024-10-30 | [46949](https://github.com/airbytehq/airbyte/pull/46949) | Updated the logo | -| 0.4.2 | 2024-10-29 | [47843](https://github.com/airbytehq/airbyte/pull/47843) | Update dependencies | -| 0.4.1 | 2024-10-28 | [47598](https://github.com/airbytehq/airbyte/pull/47598) | Update dependencies | -| 0.4.0 | 2024-08-30 | [44855](https://github.com/airbytehq/airbyte/pull/44855) | Using incremental APIs for online data | -| 0.3.0 | 2024-08-21 | [44523](https://github.com/airbytehq/airbyte/pull/44523) | Refactor connector to manifest-only format | -| 0.2.6 | 2024-08-17 | [44217](https://github.com/airbytehq/airbyte/pull/44217) | Update dependencies | -| 0.2.5 | 2024-08-12 | [43768](https://github.com/airbytehq/airbyte/pull/43768) | Update dependencies | -| 0.2.4 | 2024-08-05 | [42851](https://github.com/airbytehq/airbyte/pull/42851) | Updated schema of Analytics AWS opportunities table | -| 0.2.3 | 2024-08-03 | [43155](https://github.com/airbytehq/airbyte/pull/43155) | Update dependencies | -| 0.2.2 | 2024-07-27 | [42617](https://github.com/airbytehq/airbyte/pull/42617) | Update dependencies | -| 0.2.1 | 2024-07-20 | [42315](https://github.com/airbytehq/airbyte/pull/42315) | Update dependencies | -| 0.2.0 | 2024-07-18 | [41657](https://github.com/airbytehq/airbyte/pull/41657) | removed redundant columns from streams, added documentation for analytics | -| 0.1.4 | 2024-07-13 | [41759](https://github.com/airbytehq/airbyte/pull/41759) | Update dependencies | -| 0.1.3 | 2024-07-10 | [41351](https://github.com/airbytehq/airbyte/pull/41351) | Update dependencies | -| 0.1.2 | 2024-07-09 | [41123](https://github.com/airbytehq/airbyte/pull/41123) | Update dependencies | -| 0.1.1 | 2024-07-06 | [40922](https://github.com/airbytehq/airbyte/pull/40922) | Update dependencies | -| 0.1.0 | 2024-07-02 | [40562](https://github.com/airbytehq/airbyte/pull/40562) | New Source: Clazar | +| 0.4.4 | 2024-11-04 | [48187](https://github.com/airbytehq/airbyte/pull/48187) | Update dependencies | +| 0.4.3 | 2024-10-30 | [46949](https://github.com/airbytehq/airbyte/pull/46949) | Updated the logo | +| 0.4.2 | 2024-10-29 | [47843](https://github.com/airbytehq/airbyte/pull/47843) | Update dependencies | +| 0.4.1 | 2024-10-28 | [47598](https://github.com/airbytehq/airbyte/pull/47598) | Update dependencies | +| 0.4.0 | 2024-08-30 | [44855](https://github.com/airbytehq/airbyte/pull/44855) | Using incremental APIs for online data | +| 0.3.0 | 2024-08-21 | [44523](https://github.com/airbytehq/airbyte/pull/44523) | Refactor connector to manifest-only format | +| 0.2.6 | 2024-08-17 | [44217](https://github.com/airbytehq/airbyte/pull/44217) | Update dependencies | +| 0.2.5 | 2024-08-12 | [43768](https://github.com/airbytehq/airbyte/pull/43768) | Update dependencies | +| 0.2.4 | 2024-08-05 | [42851](https://github.com/airbytehq/airbyte/pull/42851) | Updated schema of Analytics AWS opportunities table | +| 0.2.3 | 2024-08-03 | [43155](https://github.com/airbytehq/airbyte/pull/43155) | Update dependencies | +| 0.2.2 | 2024-07-27 | [42617](https://github.com/airbytehq/airbyte/pull/42617) | Update dependencies | +| 0.2.1 | 2024-07-20 | [42315](https://github.com/airbytehq/airbyte/pull/42315) | Update dependencies | +| 0.2.0 | 2024-07-18 | [41657](https://github.com/airbytehq/airbyte/pull/41657) | removed redundant columns from streams, added documentation for analytics | +| 0.1.4 | 2024-07-13 | [41759](https://github.com/airbytehq/airbyte/pull/41759) | Update dependencies | +| 0.1.3 | 2024-07-10 | [41351](https://github.com/airbytehq/airbyte/pull/41351) | Update dependencies | +| 0.1.2 | 2024-07-09 | [41123](https://github.com/airbytehq/airbyte/pull/41123) | Update dependencies | +| 0.1.1 | 2024-07-06 | [40922](https://github.com/airbytehq/airbyte/pull/40922) | Update dependencies | +| 0.1.0 | 2024-07-02 | [40562](https://github.com/airbytehq/airbyte/pull/40562) | New Source: Clazar | From 9a24694029d4f5a1f13b12b7eaf0af4f667ef987 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:38 +0200 Subject: [PATCH 590/808] =?UTF-8?q?=F0=9F=90=99=20source-commercetools:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-11-04]=20(#48186)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-commercetools/metadata.yaml | 2 +- .../source-commercetools/poetry.lock | 124 +++++++++--------- .../source-commercetools/pyproject.toml | 2 +- docs/integrations/sources/commercetools.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-commercetools/metadata.yaml b/airbyte-integrations/connectors/source-commercetools/metadata.yaml index 6a547e186f70..876df574521f 100644 --- a/airbyte-integrations/connectors/source-commercetools/metadata.yaml +++ b/airbyte-integrations/connectors/source-commercetools/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: 008b2e26-11a3-11ec-82a8-0242ac130003 - dockerImageTag: 0.2.22 + dockerImageTag: 0.2.23 dockerRepository: airbyte/source-commercetools githubIssueLabel: source-commercetools icon: commercetools.svg diff --git a/airbyte-integrations/connectors/source-commercetools/poetry.lock b/airbyte-integrations/connectors/source-commercetools/poetry.lock index c2268c5899fb..0c25732c130a 100644 --- a/airbyte-integrations/connectors/source-commercetools/poetry.lock +++ b/airbyte-integrations/connectors/source-commercetools/poetry.lock @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -767,69 +767,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-commercetools/pyproject.toml b/airbyte-integrations/connectors/source-commercetools/pyproject.toml index 51279f3a853d..126045f143ed 100644 --- a/airbyte-integrations/connectors/source-commercetools/pyproject.toml +++ b/airbyte-integrations/connectors/source-commercetools/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.22" +version = "0.2.23" name = "source-commercetools" description = "Source implementation for Commercetools." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/commercetools.md b/docs/integrations/sources/commercetools.md index ee879e82ef3e..8cfdcfef79c4 100644 --- a/docs/integrations/sources/commercetools.md +++ b/docs/integrations/sources/commercetools.md @@ -52,6 +52,7 @@ Commercetools has some [rate limit restrictions](https://docs.commercetools.com/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------ | +| 0.2.23 | 2024-11-04 | [48186](https://github.com/airbytehq/airbyte/pull/48186) | Update dependencies | | 0.2.22 | 2024-10-29 | [47859](https://github.com/airbytehq/airbyte/pull/47859) | Update dependencies | | 0.2.21 | 2024-10-28 | [47112](https://github.com/airbytehq/airbyte/pull/47112) | Update dependencies | | 0.2.20 | 2024-10-12 | [46779](https://github.com/airbytehq/airbyte/pull/46779) | Update dependencies | From 7809382396d99a04ee5bc8f694806a7eb638515b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:41 +0200 Subject: [PATCH 591/808] =?UTF-8?q?=F0=9F=90=99=20source-smartsheets:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48185)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-smartsheets/metadata.yaml | 2 +- .../connectors/source-smartsheets/poetry.lock | 12 ++++++------ .../connectors/source-smartsheets/pyproject.toml | 2 +- docs/integrations/sources/smartsheets.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-smartsheets/metadata.yaml b/airbyte-integrations/connectors/source-smartsheets/metadata.yaml index 9000aa9dd982..aebc8168b9e2 100644 --- a/airbyte-integrations/connectors/source-smartsheets/metadata.yaml +++ b/airbyte-integrations/connectors/source-smartsheets/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: api connectorType: source definitionId: 374ebc65-6636-4ea0-925c-7d35999a8ffc - dockerImageTag: 1.1.24 + dockerImageTag: 1.1.25 dockerRepository: airbyte/source-smartsheets documentationUrl: https://docs.airbyte.com/integrations/sources/smartsheets githubIssueLabel: source-smartsheets diff --git a/airbyte-integrations/connectors/source-smartsheets/poetry.lock b/airbyte-integrations/connectors/source-smartsheets/poetry.lock index 4bd15a1c6b4a..3269d12f52dd 100644 --- a/airbyte-integrations/connectors/source-smartsheets/poetry.lock +++ b/airbyte-integrations/connectors/source-smartsheets/poetry.lock @@ -875,23 +875,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-smartsheets/pyproject.toml b/airbyte-integrations/connectors/source-smartsheets/pyproject.toml index 027d94fe3185..8edbedb9d406 100644 --- a/airbyte-integrations/connectors/source-smartsheets/pyproject.toml +++ b/airbyte-integrations/connectors/source-smartsheets/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.24" +version = "1.1.25" name = "source-smartsheets" description = "Source implementation for Smartsheets." authors = [ "Nate Nowack ",] diff --git a/docs/integrations/sources/smartsheets.md b/docs/integrations/sources/smartsheets.md index f03ac7130ca9..f07c67809814 100644 --- a/docs/integrations/sources/smartsheets.md +++ b/docs/integrations/sources/smartsheets.md @@ -117,6 +117,7 @@ The remaining column datatypes supported by Smartsheets are more complex types ( | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------- | +| 1.1.25 | 2024-11-04 | [48185](https://github.com/airbytehq/airbyte/pull/48185) | Update dependencies | | 1.1.24 | 2024-10-28 | [47024](https://github.com/airbytehq/airbyte/pull/47024) | Update dependencies | | 1.1.23 | 2024-10-12 | [46783](https://github.com/airbytehq/airbyte/pull/46783) | Update dependencies | | 1.1.22 | 2024-10-05 | [46427](https://github.com/airbytehq/airbyte/pull/46427) | Update dependencies | From ea6b5a8637f2358c3273f526e4a10c262f8219b3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:44 +0200 Subject: [PATCH 592/808] =?UTF-8?q?=F0=9F=90=99=20source-partnerstack:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-04]=20(#48184)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-partnerstack/metadata.yaml | 2 +- .../source-partnerstack/poetry.lock | 124 +++++++++--------- .../source-partnerstack/pyproject.toml | 2 +- docs/integrations/sources/partnerstack.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-partnerstack/metadata.yaml b/airbyte-integrations/connectors/source-partnerstack/metadata.yaml index bb28bbee6f5f..6c165c55de45 100644 --- a/airbyte-integrations/connectors/source-partnerstack/metadata.yaml +++ b/airbyte-integrations/connectors/source-partnerstack/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d30fb809-6456-484d-8e2c-ee12e0f6888d - dockerImageTag: 0.1.24 + dockerImageTag: 0.1.25 dockerRepository: airbyte/source-partnerstack githubIssueLabel: source-partnerstack icon: partnerstack.svg diff --git a/airbyte-integrations/connectors/source-partnerstack/poetry.lock b/airbyte-integrations/connectors/source-partnerstack/poetry.lock index 3a612d453b37..d40d70c2eeee 100644 --- a/airbyte-integrations/connectors/source-partnerstack/poetry.lock +++ b/airbyte-integrations/connectors/source-partnerstack/poetry.lock @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -767,69 +767,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-partnerstack/pyproject.toml b/airbyte-integrations/connectors/source-partnerstack/pyproject.toml index 0b221460234a..94359912eeaf 100644 --- a/airbyte-integrations/connectors/source-partnerstack/pyproject.toml +++ b/airbyte-integrations/connectors/source-partnerstack/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.24" +version = "0.1.25" name = "source-partnerstack" description = "Source implementation for Partnerstack." authors = [ "Elliot Trabac ",] diff --git a/docs/integrations/sources/partnerstack.md b/docs/integrations/sources/partnerstack.md index f4435992a92e..7bbc906267ae 100644 --- a/docs/integrations/sources/partnerstack.md +++ b/docs/integrations/sources/partnerstack.md @@ -41,6 +41,7 @@ The Partnerstack connector should not run into Partnerstack API limitations unde | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------| +| 0.1.25 | 2024-11-04 | [48184](https://github.com/airbytehq/airbyte/pull/48184) | Update dependencies | | 0.1.24 | 2024-10-29 | [47762](https://github.com/airbytehq/airbyte/pull/47762) | Update dependencies | | 0.1.23 | 2024-10-28 | [47045](https://github.com/airbytehq/airbyte/pull/47045) | Update dependencies | | 0.1.22 | 2024-10-12 | [46808](https://github.com/airbytehq/airbyte/pull/46808) | Update dependencies | From 6a853eeeb691f0c03c7da62733b55a66867c829e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:47 +0200 Subject: [PATCH 593/808] =?UTF-8?q?=F0=9F=90=99=20source-codefresh:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48183)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-codefresh/metadata.yaml | 4 ++-- docs/integrations/sources/codefresh.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-codefresh/metadata.yaml b/airbyte-integrations/connectors/source-codefresh/metadata.yaml index b01c2731b675..843059c2ce16 100644 --- a/airbyte-integrations/connectors/source-codefresh/metadata.yaml +++ b/airbyte-integrations/connectors/source-codefresh/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-codefresh connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: cd8313fe-05cb-4439-aed5-26a2adc4856c - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-codefresh githubIssueLabel: source-codefresh icon: icon.svg diff --git a/docs/integrations/sources/codefresh.md b/docs/integrations/sources/codefresh.md index b8b37fdfc7d8..54a87ebb636d 100644 --- a/docs/integrations/sources/codefresh.md +++ b/docs/integrations/sources/codefresh.md @@ -36,6 +36,7 @@ It provides streams like agents, builds, audit, analytics etc. | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48183](https://github.com/airbytehq/airbyte/pull/48183) | Update dependencies | | 0.0.2 | 2024-10-28 | [47574](https://github.com/airbytehq/airbyte/pull/47574) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 08ad6d5d615aa8e00fe60ac64afd8d85c154cbd6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:51 +0200 Subject: [PATCH 594/808] =?UTF-8?q?=F0=9F=90=99=20source-algolia:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48182)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-algolia/metadata.yaml | 4 ++-- docs/integrations/sources/algolia.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-algolia/metadata.yaml b/airbyte-integrations/connectors/source-algolia/metadata.yaml index 40adb570a99d..317ca1d949e0 100644 --- a/airbyte-integrations/connectors/source-algolia/metadata.yaml +++ b/airbyte-integrations/connectors/source-algolia/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-algolia connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: a20aa64a-bb59-4782-97bf-afd6a241c737 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-algolia githubIssueLabel: source-algolia icon: icon.svg diff --git a/docs/integrations/sources/algolia.md b/docs/integrations/sources/algolia.md index 714040af133b..59b44241d60d 100644 --- a/docs/integrations/sources/algolia.md +++ b/docs/integrations/sources/algolia.md @@ -35,6 +35,7 @@ Visit `https://www.algolia.com/doc/rest-api/search/#section/Authentication` for | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-11-04 | [48182](https://github.com/airbytehq/airbyte/pull/48182) | Update dependencies | | 0.0.2 | 2024-10-29 | [47659](https://github.com/airbytehq/airbyte/pull/47659) | Update dependencies | | 0.0.1 | 2024-09-16 | [45605](https://github.com/airbytehq/airbyte/pull/45605) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 130417732226174b796e11893dd1a1f27df8f513 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:55 +0200 Subject: [PATCH 595/808] =?UTF-8?q?=F0=9F=90=99=20source-ezofficeinventory?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48180)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-ezofficeinventory/metadata.yaml | 4 ++-- docs/integrations/sources/ezofficeinventory.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml b/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml index 691456e30b98..60ed2ddbc2e8 100644 --- a/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml +++ b/airbyte-integrations/connectors/source-ezofficeinventory/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-ezofficeinventory connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 7b6be0f6-4139-42f8-a89e-2ca25560979a - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-ezofficeinventory githubIssueLabel: source-ezofficeinventory icon: icon.svg diff --git a/docs/integrations/sources/ezofficeinventory.md b/docs/integrations/sources/ezofficeinventory.md index ea7a4c20dab1..5d99564cbf7f 100644 --- a/docs/integrations/sources/ezofficeinventory.md +++ b/docs/integrations/sources/ezofficeinventory.md @@ -37,6 +37,7 @@ A manifest only source for EZOfficeInventory. https://ezo.io/ezofficeinventory/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| +| 0.0.4 | 2024-11-04 | [48180](https://github.com/airbytehq/airbyte/pull/48180) | Update dependencies | | 0.0.3 | 2024-10-29 | [47913](https://github.com/airbytehq/airbyte/pull/47913) | Update dependencies | | 0.0.2 | 2024-10-28 | [47535](https://github.com/airbytehq/airbyte/pull/47535) | Update dependencies | | 0.0.1 | 2024-09-15 | [45590](https://github.com/airbytehq/airbyte/pull/45590) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | From 31c38a5ff8d0b644ba2cff2e14aae9067fd89990 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:08:58 +0200 Subject: [PATCH 596/808] =?UTF-8?q?=F0=9F=90=99=20source-jotform:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48179)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-jotform/metadata.yaml | 4 ++-- docs/integrations/sources/jotform.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-jotform/metadata.yaml b/airbyte-integrations/connectors/source-jotform/metadata.yaml index 510af22e783c..867e58a554bc 100644 --- a/airbyte-integrations/connectors/source-jotform/metadata.yaml +++ b/airbyte-integrations/connectors/source-jotform/metadata.yaml @@ -16,11 +16,11 @@ data: enabled: false packageName: airbyte-source-jotform connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 3456679e-2ff2-4ef7-aa9f-da6c0cc13894 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-jotform githubIssueLabel: source-jotform icon: icon.svg diff --git a/docs/integrations/sources/jotform.md b/docs/integrations/sources/jotform.md index e1a3427ff09e..02f451865025 100644 --- a/docs/integrations/sources/jotform.md +++ b/docs/integrations/sources/jotform.md @@ -32,6 +32,7 @@ To get started, you need a valid API key. | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.4 | 2024-11-04 | [48179](https://github.com/airbytehq/airbyte/pull/48179) | Update dependencies | | 0.0.3 | 2024-10-29 | [47930](https://github.com/airbytehq/airbyte/pull/47930) | Update dependencies | | 0.0.2 | 2024-10-28 | [47603](https://github.com/airbytehq/airbyte/pull/47603) | Update dependencies | | 0.0.1 | 2024-09-12 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 27eaab54bfaa72caa36d72a1b41a96bb20e15f44 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:02 +0200 Subject: [PATCH 597/808] =?UTF-8?q?=F0=9F=90=99=20source-captain-data:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-04]=20(#48177)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-captain-data/metadata.yaml | 4 ++-- docs/integrations/sources/captain-data.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-captain-data/metadata.yaml b/airbyte-integrations/connectors/source-captain-data/metadata.yaml index 6feb52aee37d..df28de29ca43 100644 --- a/airbyte-integrations/connectors/source-captain-data/metadata.yaml +++ b/airbyte-integrations/connectors/source-captain-data/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: fa290790-1dca-43e7-8ced-6a40b2a66099 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-captain-data githubIssueLabel: source-captain-data icon: captain-data.svg @@ -27,5 +27,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/captain-data.md b/docs/integrations/sources/captain-data.md index 7950fc64d4e8..d504cbbc6e1e 100644 --- a/docs/integrations/sources/captain-data.md +++ b/docs/integrations/sources/captain-data.md @@ -65,6 +65,7 @@ Captain Data [API reference](https://docs.captaindata.co/#intro) has v3 at prese | Version | Date | Pull Request | Subject | | :------ |:-----------| :------------------------------------------------------ |:--------------------------------------------| +| 0.2.2 | 2024-11-04 | [48177](https://github.com/airbytehq/airbyte/pull/48177) | Update dependencies | | 0.2.1 | 2024-10-29 | [47769](https://github.com/airbytehq/airbyte/pull/47769) | Update dependencies | | 0.2.0 | 2024-08-19 | [44419](https://github.com/airbytehq/airbyte/pull/44419) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-17 | [44340](https://github.com/airbytehq/airbyte/pull/44340) | Update dependencies | From 9a780cb79f1315529678e9312cb133d8dbdbdc2e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:07 +0200 Subject: [PATCH 598/808] =?UTF-8?q?=F0=9F=90=99=20source-asana:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-11-04]=20(#48175)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-asana/metadata.yaml | 2 +- .../connectors/source-asana/poetry.lock | 136 +++++++++--------- .../connectors/source-asana/pyproject.toml | 2 +- docs/integrations/sources/asana.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-asana/metadata.yaml b/airbyte-integrations/connectors/source-asana/metadata.yaml index 8e19094d7a74..ed3584d2f7be 100644 --- a/airbyte-integrations/connectors/source-asana/metadata.yaml +++ b/airbyte-integrations/connectors/source-asana/metadata.yaml @@ -28,7 +28,7 @@ data: connectorSubtype: api connectorType: source definitionId: d0243522-dccf-4978-8ba0-37ed47a0bdbf - dockerImageTag: 1.2.13 + dockerImageTag: 1.2.14 dockerRepository: airbyte/source-asana githubIssueLabel: source-asana icon: asana.svg diff --git a/airbyte-integrations/connectors/source-asana/poetry.lock b/airbyte-integrations/connectors/source-asana/poetry.lock index 02302faf1ed9..ac55c79c32d9 100644 --- a/airbyte-integrations/connectors/source-asana/poetry.lock +++ b/airbyte-integrations/connectors/source-asana/poetry.lock @@ -669,13 +669,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -757,69 +757,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1262,23 +1262,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-asana/pyproject.toml b/airbyte-integrations/connectors/source-asana/pyproject.toml index f13fbdc682fc..8b5b7822fd59 100644 --- a/airbyte-integrations/connectors/source-asana/pyproject.toml +++ b/airbyte-integrations/connectors/source-asana/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.2.13" +version = "1.2.14" name = "source-asana" description = "Source implementation for asana." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/asana.md b/docs/integrations/sources/asana.md index 9ac31ea0907b..a7ce159ab26f 100644 --- a/docs/integrations/sources/asana.md +++ b/docs/integrations/sources/asana.md @@ -106,6 +106,7 @@ The connector is restricted by [Asana rate limits](https://developers.asana.com/ | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------| +| 1.2.14 | 2024-11-04 | [48175](https://github.com/airbytehq/airbyte/pull/48175) | Update dependencies | | 1.2.13 | 2024-10-28 | [47026](https://github.com/airbytehq/airbyte/pull/47026) | Update dependencies | | 1.2.12 | 2024-10-12 | [46825](https://github.com/airbytehq/airbyte/pull/46825) | Update dependencies | | 1.2.11 | 2024-10-05 | [46501](https://github.com/airbytehq/airbyte/pull/46501) | Update dependencies | From 1fcfcc166197c598c8dc600725057797dd0773a5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:09 +0200 Subject: [PATCH 599/808] =?UTF-8?q?=F0=9F=90=99=20source-7shifts:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48174)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-7shifts/metadata.yaml | 4 ++-- docs/integrations/sources/7shifts.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-7shifts/metadata.yaml b/airbyte-integrations/connectors/source-7shifts/metadata.yaml index 1b8787138aaf..a94b6bd9f8ff 100644 --- a/airbyte-integrations/connectors/source-7shifts/metadata.yaml +++ b/airbyte-integrations/connectors/source-7shifts/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-7shifts connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: a8b458a3-024f-430e-8f62-a200c3eb79fd - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-7shifts githubIssueLabel: source-7shifts icon: icon.svg diff --git a/docs/integrations/sources/7shifts.md b/docs/integrations/sources/7shifts.md index 2a411f4945c6..1d18f8abc18e 100644 --- a/docs/integrations/sources/7shifts.md +++ b/docs/integrations/sources/7shifts.md @@ -33,6 +33,7 @@ Generate an Access Token by navigating to "Company Settings", then "Developer To | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.4 | 2024-11-04 | [48174](https://github.com/airbytehq/airbyte/pull/48174) | Update dependencies | | 0.0.3 | 2024-10-29 | [47829](https://github.com/airbytehq/airbyte/pull/47829) | Update dependencies | | 0.0.2 | 2024-10-28 | [47575](https://github.com/airbytehq/airbyte/pull/47575) | Update dependencies | | 0.0.1 | 2024-09-18 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From ad168f8cc65c403442b751e0fd6a0527ae394fec Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:12 +0200 Subject: [PATCH 600/808] =?UTF-8?q?=F0=9F=90=99=20source-zoho-books:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48173)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zoho-books/metadata.yaml | 4 ++-- docs/integrations/sources/zoho-books.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-zoho-books/metadata.yaml b/airbyte-integrations/connectors/source-zoho-books/metadata.yaml index c45f81efa319..741a534d2c7f 100644 --- a/airbyte-integrations/connectors/source-zoho-books/metadata.yaml +++ b/airbyte-integrations/connectors/source-zoho-books/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-zoho-books connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: b67f9de8-177d-4d48-9c5c-8a767d845885 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-zoho-books githubIssueLabel: source-zoho-books icon: icon.svg diff --git a/docs/integrations/sources/zoho-books.md b/docs/integrations/sources/zoho-books.md index 8510e71011e0..a0d91fa0c766 100644 --- a/docs/integrations/sources/zoho-books.md +++ b/docs/integrations/sources/zoho-books.md @@ -38,6 +38,7 @@ The Zoho Books connector enables seamless integration of financial data, automa | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48173](https://github.com/airbytehq/airbyte/pull/48173) | Update dependencies | | 0.0.2 | 2024-10-28 | [47582](https://github.com/airbytehq/airbyte/pull/47582) | Update dependencies | | 0.0.1 | 2024-10-19 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 3cd669226812520c414573d177d86bc0b705de30 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:17 +0200 Subject: [PATCH 601/808] =?UTF-8?q?=F0=9F=90=99=20source-bitly:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-11-04]=20(#48171)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-bitly/metadata.yaml | 4 ++-- docs/integrations/sources/bitly.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-bitly/metadata.yaml b/airbyte-integrations/connectors/source-bitly/metadata.yaml index b8db33dcd4f6..9fe6581990a1 100644 --- a/airbyte-integrations/connectors/source-bitly/metadata.yaml +++ b/airbyte-integrations/connectors/source-bitly/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-bitly connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 3631f862-646b-4abf-abde-dc37acf3847c - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-bitly githubIssueLabel: source-bitly icon: icon.svg diff --git a/docs/integrations/sources/bitly.md b/docs/integrations/sources/bitly.md index b2429ab2a0de..c9e4e3cfdd06 100644 --- a/docs/integrations/sources/bitly.md +++ b/docs/integrations/sources/bitly.md @@ -33,6 +33,7 @@ Generate API Key [here](https://app.bitly.com/settings/api/) or go to Settings | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [48171](https://github.com/airbytehq/airbyte/pull/48171) | Update dependencies | | 0.0.2 | 2024-10-28 | [47516](https://github.com/airbytehq/airbyte/pull/47516) | Update dependencies | | 0.0.1 | 2024-09-01 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 6746eabe22447e7205173b08e648fc349e6e4b38 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:20 +0200 Subject: [PATCH 602/808] =?UTF-8?q?=F0=9F=90=99=20source-jina-ai-reader:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48170)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-jina-ai-reader/metadata.yaml | 2 +- .../source-jina-ai-reader/poetry.lock | 136 +++++++++--------- .../source-jina-ai-reader/pyproject.toml | 2 +- docs/integrations/sources/jina-ai-reader.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml b/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml index 08cb01915223..10d133cd62a1 100644 --- a/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml +++ b/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: 47077a7f-7ab0-47ee-b428-650396a708c7 - dockerImageTag: 0.1.20 + dockerImageTag: 0.1.21 dockerRepository: airbyte/source-jina-ai-reader githubIssueLabel: source-jina-ai-reader icon: jina-ai-reader.svg diff --git a/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock b/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock index 02302faf1ed9..ac55c79c32d9 100644 --- a/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock +++ b/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock @@ -669,13 +669,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -757,69 +757,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1262,23 +1262,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml b/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml index eec6162224be..44a3332e70ef 100644 --- a/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml +++ b/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.20" +version = "0.1.21" name = "source-jina-ai-reader" description = "Source implementation for jina-ai-reader." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/jina-ai-reader.md b/docs/integrations/sources/jina-ai-reader.md index 3aea9f742eeb..350d3707c0ad 100644 --- a/docs/integrations/sources/jina-ai-reader.md +++ b/docs/integrations/sources/jina-ai-reader.md @@ -50,6 +50,7 @@ The website also provides a free bearer token for testing with its interface. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 0.1.21 | 2024-11-04 | [48170](https://github.com/airbytehq/airbyte/pull/48170) | Update dependencies | | 0.1.20 | 2024-10-28 | [47085](https://github.com/airbytehq/airbyte/pull/47085) | Update dependencies | | 0.1.19 | 2024-10-12 | [46768](https://github.com/airbytehq/airbyte/pull/46768) | Update dependencies | | 0.1.18 | 2024-10-05 | [46446](https://github.com/airbytehq/airbyte/pull/46446) | Update dependencies | From 5bec2739a432f43d310a497555a628bc326f2e87 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:23 +0200 Subject: [PATCH 603/808] =?UTF-8?q?=F0=9F=90=99=20source-bing-ads:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48169)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-bing-ads/metadata.yaml | 2 +- .../connectors/source-bing-ads/poetry.lock | 234 +++++++++--------- .../connectors/source-bing-ads/pyproject.toml | 2 +- docs/integrations/sources/bing-ads.md | 1 + 4 files changed, 121 insertions(+), 118 deletions(-) diff --git a/airbyte-integrations/connectors/source-bing-ads/metadata.yaml b/airbyte-integrations/connectors/source-bing-ads/metadata.yaml index c9593fe72124..b8dee060472b 100644 --- a/airbyte-integrations/connectors/source-bing-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-bing-ads/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 47f25999-dd5e-4636-8c39-e7cea2453331 - dockerImageTag: 2.8.2 + dockerImageTag: 2.8.3 dockerRepository: airbyte/source-bing-ads documentationUrl: https://docs.airbyte.com/integrations/sources/bing-ads erdUrl: https://dbdocs.io/airbyteio/source-bing-ads?view=relationships diff --git a/airbyte-integrations/connectors/source-bing-ads/poetry.lock b/airbyte-integrations/connectors/source-bing-ads/poetry.lock index 031cb250f54c..7336a23f6cc9 100644 --- a/airbyte-integrations/connectors/source-bing-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-bing-ads/poetry.lock @@ -768,13 +768,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -881,131 +881,133 @@ twitter = ["twython"] [[package]] name = "numpy" -version = "2.1.2" +version = "2.1.3" description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.10" files = [ - {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, - {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, - {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, - {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, - {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, - {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, - {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, - {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, - {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, - {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c894b4305373b9c5576d7a12b473702afdf48ce5369c074ba304cc5ad8730dff"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b47fbb433d3260adcd51eb54f92a2ffbc90a4595f8970ee00e064c644ac788f5"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:825656d0743699c529c5943554d223c021ff0494ff1442152ce887ef4f7561a1"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:6a4825252fcc430a182ac4dee5a505053d262c807f8a924603d411f6718b88fd"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e711e02f49e176a01d0349d82cb5f05ba4db7d5e7e0defd026328e5cfb3226d3"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78574ac2d1a4a02421f25da9559850d59457bac82f2b8d7a44fe83a64f770098"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c7662f0e3673fe4e832fe07b65c50342ea27d989f92c80355658c7f888fcc83c"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:fa2d1337dc61c8dc417fbccf20f6d1e139896a30721b7f1e832b2bb6ef4eb6c4"}, + {file = "numpy-2.1.3-cp310-cp310-win32.whl", hash = "sha256:72dcc4a35a8515d83e76b58fdf8113a5c969ccd505c8a946759b24e3182d1f23"}, + {file = "numpy-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:ecc76a9ba2911d8d37ac01de72834d8849e55473457558e12995f4cd53e778e0"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d1167c53b93f1f5d8a139a742b3c6f4d429b54e74e6b57d0eff40045187b15d"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c80e4a09b3d95b4e1cac08643f1152fa71a0a821a2d4277334c88d54b2219a41"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:576a1c1d25e9e02ed7fa5477f30a127fe56debd53b8d2c89d5578f9857d03ca9"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:973faafebaae4c0aaa1a1ca1ce02434554d67e628b8d805e61f874b84e136b09"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:762479be47a4863e261a840e8e01608d124ee1361e48b96916f38b119cfda04a"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc6f24b3d1ecc1eebfbf5d6051faa49af40b03be1aaa781ebdadcbc090b4539b"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:17ee83a1f4fef3c94d16dc1802b998668b5419362c8a4f4e8a491de1b41cc3ee"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15cb89f39fa6d0bdfb600ea24b250e5f1a3df23f901f51c8debaa6a5d122b2f0"}, + {file = "numpy-2.1.3-cp311-cp311-win32.whl", hash = "sha256:d9beb777a78c331580705326d2367488d5bc473b49a9bc3036c154832520aca9"}, + {file = "numpy-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:d89dd2b6da69c4fff5e39c28a382199ddedc3a5be5390115608345dec660b9e2"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f55ba01150f52b1027829b50d70ef1dafd9821ea82905b63936668403c3b471e"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13138eadd4f4da03074851a698ffa7e405f41a0845a6b1ad135b81596e4e9958"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a6b46587b14b888e95e4a24d7b13ae91fa22386c199ee7b418f449032b2fa3b8"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:0fa14563cc46422e99daef53d725d0c326e99e468a9320a240affffe87852564"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8637dcd2caa676e475503d1f8fdb327bc495554e10838019651b76d17b98e512"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2312b2aa89e1f43ecea6da6ea9a810d06aae08321609d8dc0d0eda6d946a541b"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a38c19106902bb19351b83802531fea19dee18e5b37b36454f27f11ff956f7fc"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02135ade8b8a84011cbb67dc44e07c58f28575cf9ecf8ab304e51c05528c19f0"}, + {file = "numpy-2.1.3-cp312-cp312-win32.whl", hash = "sha256:e6988e90fcf617da2b5c78902fe8e668361b43b4fe26dbf2d7b0f8034d4cafb9"}, + {file = "numpy-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:0d30c543f02e84e92c4b1f415b7c6b5326cbe45ee7882b6b77db7195fb971e3a"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96fe52fcdb9345b7cd82ecd34547fca4321f7656d500eca497eb7ea5a926692f"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f653490b33e9c3a4c1c01d41bc2aef08f9475af51146e4a7710c450cf9761598"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dc258a761a16daa791081d026f0ed4399b582712e6fc887a95af09df10c5ca57"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:016d0f6f5e77b0f0d45d77387ffa4bb89816b57c835580c3ce8e099ef830befe"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c181ba05ce8299c7aa3125c27b9c2167bca4a4445b7ce73d5febc411ca692e43"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5641516794ca9e5f8a4d17bb45446998c6554704d888f86df9b200e66bdcce56"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea4dedd6e394a9c180b33c2c872b92f7ce0f8e7ad93e9585312b0c5a04777a4a"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0df3635b9c8ef48bd3be5f862cf71b0a4716fa0e702155c45067c6b711ddcef"}, + {file = "numpy-2.1.3-cp313-cp313-win32.whl", hash = "sha256:50ca6aba6e163363f132b5c101ba078b8cbd3fa92c7865fd7d4d62d9779ac29f"}, + {file = "numpy-2.1.3-cp313-cp313-win_amd64.whl", hash = "sha256:747641635d3d44bcb380d950679462fae44f54b131be347d5ec2bce47d3df9ed"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:996bb9399059c5b82f76b53ff8bb686069c05acc94656bb259b1d63d04a9506f"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:45966d859916ad02b779706bb43b954281db43e185015df6eb3323120188f9e4"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:baed7e8d7481bfe0874b566850cb0b85243e982388b7b23348c6db2ee2b2ae8e"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f7f672a3388133335589cfca93ed468509cb7b93ba3105fce780d04a6576a0"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7aac50327da5d208db2eec22eb11e491e3fe13d22653dce51b0f4109101b408"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4394bc0dbd074b7f9b52024832d16e019decebf86caf909d94f6b3f77a8ee3b6"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:50d18c4358a0a8a53f12a8ba9d772ab2d460321e6a93d6064fc22443d189853f"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:14e253bd43fc6b37af4921b10f6add6925878a42a0c5fe83daee390bca80bc17"}, + {file = "numpy-2.1.3-cp313-cp313t-win32.whl", hash = "sha256:08788d27a5fd867a663f6fc753fd7c3ad7e92747efc73c53bca2f19f8bc06f48"}, + {file = "numpy-2.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2564fbdf2b99b3f815f2107c1bbc93e2de8ee655a69c261363a1172a79a257d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4f2015dfe437dfebbfce7c85c7b53d81ba49e71ba7eadbf1df40c915af75979f"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:3522b0dfe983a575e6a9ab3a4a4dfe156c3e428468ff08ce582b9bb6bd1d71d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c006b607a865b07cd981ccb218a04fc86b600411d83d6fc261357f1c0966755d"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:e14e26956e6f1696070788252dcdff11b4aca4c3e8bd166e0df1bb8f315a67cb"}, + {file = "numpy-2.1.3.tar.gz", hash = "sha256:aa08e04e08aaf974d4458def539dece0d28146d866a39da5639596f4921fd761"}, ] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-bing-ads/pyproject.toml b/airbyte-integrations/connectors/source-bing-ads/pyproject.toml index 50147b7d2deb..57088b15b8f8 100644 --- a/airbyte-integrations/connectors/source-bing-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-bing-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.8.2" +version = "2.8.3" name = "source-bing-ads" description = "Source implementation for Bing Ads." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/bing-ads.md b/docs/integrations/sources/bing-ads.md index dc0d1a3d2796..f4261c8686e7 100644 --- a/docs/integrations/sources/bing-ads.md +++ b/docs/integrations/sources/bing-ads.md @@ -261,6 +261,7 @@ The Bing Ads API limits the number of requests for all Microsoft Advertising cli | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------| +| 2.8.3 | 2024-11-04 | [48169](https://github.com/airbytehq/airbyte/pull/48169) | Update dependencies | | 2.8.2 | 2024-10-29 | [47850](https://github.com/airbytehq/airbyte/pull/47850) | Update dependencies | | 2.8.1 | 2024-10-28 | [47093](https://github.com/airbytehq/airbyte/pull/47093) | Update dependencies | | 2.8.0 | 2024-10-21 | [46991](https://github.com/airbytehq/airbyte/pull/46991) | Update CDK to v5 | From 846fd94fc4f19d72d73f37cc317c169e8adbd3b6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:26 +0200 Subject: [PATCH 604/808] =?UTF-8?q?=F0=9F=90=99=20source-surveymonkey:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-04]=20(#48168)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-surveymonkey/metadata.yaml | 2 +- .../source-surveymonkey/poetry.lock | 290 +++++++++--------- .../source-surveymonkey/pyproject.toml | 2 +- docs/integrations/sources/surveymonkey.md | 1 + 4 files changed, 148 insertions(+), 147 deletions(-) diff --git a/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml b/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml index aeb153b6fd41..829697975cd1 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml +++ b/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: badc5925-0485-42be-8caa-b34096cb71b5 - dockerImageTag: 0.3.28 + dockerImageTag: 0.3.29 dockerRepository: airbyte/source-surveymonkey documentationUrl: https://docs.airbyte.com/integrations/sources/surveymonkey githubIssueLabel: source-surveymonkey diff --git a/airbyte-integrations/connectors/source-surveymonkey/poetry.lock b/airbyte-integrations/connectors/source-surveymonkey/poetry.lock index 79d4eda2bdc7..ca209949bd6d 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/poetry.lock +++ b/airbyte-integrations/connectors/source-surveymonkey/poetry.lock @@ -669,13 +669,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -861,69 +861,69 @@ typing-extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1692,93 +1692,93 @@ files = [ [[package]] name = "yarl" -version = "1.17.0" +version = "1.17.1" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, - {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, - {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, - {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, - {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, - {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, - {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, - {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, - {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, - {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, - {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, - {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, - {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml b/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml index 1354d3720414..5dc87d2872ce 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml +++ b/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.28" +version = "0.3.29" name = "source-surveymonkey" description = "Source implementation for Surveymonkey." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/surveymonkey.md b/docs/integrations/sources/surveymonkey.md index c597a0d27150..aef4ec4d7aac 100644 --- a/docs/integrations/sources/surveymonkey.md +++ b/docs/integrations/sources/surveymonkey.md @@ -75,6 +75,7 @@ To cover more data from this source we use caching. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------- | +| 0.3.29 | 2024-11-04 | [48168](https://github.com/airbytehq/airbyte/pull/48168) | Update dependencies | | 0.3.28 | 2024-10-29 | [47754](https://github.com/airbytehq/airbyte/pull/47754) | Update dependencies | | 0.3.27 | 2024-10-28 | [47073](https://github.com/airbytehq/airbyte/pull/47073) | Update dependencies | | 0.3.26 | 2024-10-12 | [46801](https://github.com/airbytehq/airbyte/pull/46801) | Update dependencies | From 6f349c7e7693dfc9fee1d42c41a7225fd6646ce3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:29 +0200 Subject: [PATCH 605/808] =?UTF-8?q?=F0=9F=90=99=20source-twelve-data:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48167)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-twelve-data/metadata.yaml | 4 ++-- docs/integrations/sources/twelve-data.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-twelve-data/metadata.yaml b/airbyte-integrations/connectors/source-twelve-data/metadata.yaml index ff28af0008b5..a91fc77dfdab 100644 --- a/airbyte-integrations/connectors/source-twelve-data/metadata.yaml +++ b/airbyte-integrations/connectors/source-twelve-data/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-twelve-data connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 162f084d-3a9f-42c0-8785-81aa18abf339 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-twelve-data githubIssueLabel: source-twelve-data icon: icon.svg diff --git a/docs/integrations/sources/twelve-data.md b/docs/integrations/sources/twelve-data.md index f7cf5f5a2a11..9b4c17bd0362 100644 --- a/docs/integrations/sources/twelve-data.md +++ b/docs/integrations/sources/twelve-data.md @@ -44,6 +44,7 @@ Docs : https://twelvedata.com/docs | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [48167](https://github.com/airbytehq/airbyte/pull/48167) | Update dependencies | | 0.0.1 | 2024-10-20 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | From 57ee80910ae83109a2a9fb474dd533b7ceb6bab1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:31 +0200 Subject: [PATCH 606/808] =?UTF-8?q?=F0=9F=90=99=20source-senseforce:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48166)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-senseforce/metadata.yaml | 4 ++-- docs/integrations/sources/senseforce.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-senseforce/metadata.yaml b/airbyte-integrations/connectors/source-senseforce/metadata.yaml index a918cfc8f411..ed060d6171fa 100644 --- a/airbyte-integrations/connectors/source-senseforce/metadata.yaml +++ b/airbyte-integrations/connectors/source-senseforce/metadata.yaml @@ -6,7 +6,7 @@ data: connectorSubtype: api connectorType: source definitionId: 39de93cb-1511-473e-a673-5cbedb9436af - dockerImageTag: 0.2.3 + dockerImageTag: 0.2.4 dockerRepository: airbyte/source-senseforce githubIssueLabel: source-senseforce icon: senseforce.svg @@ -47,5 +47,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/senseforce.md b/docs/integrations/sources/senseforce.md index f48fade80f1e..ad13c4f87d95 100644 --- a/docs/integrations/sources/senseforce.md +++ b/docs/integrations/sources/senseforce.md @@ -87,6 +87,7 @@ Senseforce utilizes an undocumented rate limit which - under normal use - should | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | +| 0.2.4 | 2024-11-04 | [48166](https://github.com/airbytehq/airbyte/pull/48166) | Update dependencies | | 0.2.3 | 2024-10-29 | [47765](https://github.com/airbytehq/airbyte/pull/47765) | Update dependencies | | 0.2.2 | 2024-10-28 | [47567](https://github.com/airbytehq/airbyte/pull/47567) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | From f466f06feb1ae6d7ead82fba4cd2669c335801ce Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:38 +0200 Subject: [PATCH 607/808] =?UTF-8?q?=F0=9F=90=99=20source-justcall:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48164)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-justcall/metadata.yaml | 4 ++-- docs/integrations/sources/justcall.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-justcall/metadata.yaml b/airbyte-integrations/connectors/source-justcall/metadata.yaml index dbf857ce5a44..7c1c58612312 100644 --- a/airbyte-integrations/connectors/source-justcall/metadata.yaml +++ b/airbyte-integrations/connectors/source-justcall/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-justcall connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 488cdc64-36cd-451d-bcfa-c6478b461e94 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-justcall githubIssueLabel: source-justcall icon: icon.svg diff --git a/docs/integrations/sources/justcall.md b/docs/integrations/sources/justcall.md index 973ac9073846..6b0e3e7e749a 100644 --- a/docs/integrations/sources/justcall.md +++ b/docs/integrations/sources/justcall.md @@ -25,6 +25,7 @@ JustCall connector enables seamless data integration by syncing call logs, conta | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48164](https://github.com/airbytehq/airbyte/pull/48164) | Update dependencies | | 0.0.2 | 2024-10-29 | [47799](https://github.com/airbytehq/airbyte/pull/47799) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 8afa7bfc71077c214d636fd02c9575f0a5f9323a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:45 +0200 Subject: [PATCH 608/808] =?UTF-8?q?=F0=9F=90=99=20source-facebook-marketin?= =?UTF-8?q?g:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48155)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-facebook-marketing/metadata.yaml | 2 +- .../source-facebook-marketing/poetry.lock | 400 +++++++++--------- .../source-facebook-marketing/pyproject.toml | 2 +- .../sources/facebook-marketing.md | 1 + 4 files changed, 204 insertions(+), 201 deletions(-) diff --git a/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml b/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml index c675cda30b89..78a19491568c 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: e7778cfc-e97c-4458-9ecb-b4f2bba8946c - dockerImageTag: 3.3.18 + dockerImageTag: 3.3.19 dockerRepository: airbyte/source-facebook-marketing documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-marketing githubIssueLabel: source-facebook-marketing diff --git a/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock b/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock index bb52418e1d79..27b00b0e7c93 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock +++ b/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock @@ -1037,13 +1037,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1254,131 +1254,133 @@ twitter = ["twython"] [[package]] name = "numpy" -version = "2.1.2" +version = "2.1.3" description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.10" files = [ - {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, - {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, - {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, - {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, - {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, - {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, - {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, - {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, - {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, - {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c894b4305373b9c5576d7a12b473702afdf48ce5369c074ba304cc5ad8730dff"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b47fbb433d3260adcd51eb54f92a2ffbc90a4595f8970ee00e064c644ac788f5"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:825656d0743699c529c5943554d223c021ff0494ff1442152ce887ef4f7561a1"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:6a4825252fcc430a182ac4dee5a505053d262c807f8a924603d411f6718b88fd"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e711e02f49e176a01d0349d82cb5f05ba4db7d5e7e0defd026328e5cfb3226d3"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78574ac2d1a4a02421f25da9559850d59457bac82f2b8d7a44fe83a64f770098"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c7662f0e3673fe4e832fe07b65c50342ea27d989f92c80355658c7f888fcc83c"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:fa2d1337dc61c8dc417fbccf20f6d1e139896a30721b7f1e832b2bb6ef4eb6c4"}, + {file = "numpy-2.1.3-cp310-cp310-win32.whl", hash = "sha256:72dcc4a35a8515d83e76b58fdf8113a5c969ccd505c8a946759b24e3182d1f23"}, + {file = "numpy-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:ecc76a9ba2911d8d37ac01de72834d8849e55473457558e12995f4cd53e778e0"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d1167c53b93f1f5d8a139a742b3c6f4d429b54e74e6b57d0eff40045187b15d"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c80e4a09b3d95b4e1cac08643f1152fa71a0a821a2d4277334c88d54b2219a41"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:576a1c1d25e9e02ed7fa5477f30a127fe56debd53b8d2c89d5578f9857d03ca9"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:973faafebaae4c0aaa1a1ca1ce02434554d67e628b8d805e61f874b84e136b09"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:762479be47a4863e261a840e8e01608d124ee1361e48b96916f38b119cfda04a"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc6f24b3d1ecc1eebfbf5d6051faa49af40b03be1aaa781ebdadcbc090b4539b"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:17ee83a1f4fef3c94d16dc1802b998668b5419362c8a4f4e8a491de1b41cc3ee"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15cb89f39fa6d0bdfb600ea24b250e5f1a3df23f901f51c8debaa6a5d122b2f0"}, + {file = "numpy-2.1.3-cp311-cp311-win32.whl", hash = "sha256:d9beb777a78c331580705326d2367488d5bc473b49a9bc3036c154832520aca9"}, + {file = "numpy-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:d89dd2b6da69c4fff5e39c28a382199ddedc3a5be5390115608345dec660b9e2"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f55ba01150f52b1027829b50d70ef1dafd9821ea82905b63936668403c3b471e"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13138eadd4f4da03074851a698ffa7e405f41a0845a6b1ad135b81596e4e9958"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a6b46587b14b888e95e4a24d7b13ae91fa22386c199ee7b418f449032b2fa3b8"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:0fa14563cc46422e99daef53d725d0c326e99e468a9320a240affffe87852564"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8637dcd2caa676e475503d1f8fdb327bc495554e10838019651b76d17b98e512"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2312b2aa89e1f43ecea6da6ea9a810d06aae08321609d8dc0d0eda6d946a541b"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a38c19106902bb19351b83802531fea19dee18e5b37b36454f27f11ff956f7fc"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02135ade8b8a84011cbb67dc44e07c58f28575cf9ecf8ab304e51c05528c19f0"}, + {file = "numpy-2.1.3-cp312-cp312-win32.whl", hash = "sha256:e6988e90fcf617da2b5c78902fe8e668361b43b4fe26dbf2d7b0f8034d4cafb9"}, + {file = "numpy-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:0d30c543f02e84e92c4b1f415b7c6b5326cbe45ee7882b6b77db7195fb971e3a"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96fe52fcdb9345b7cd82ecd34547fca4321f7656d500eca497eb7ea5a926692f"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f653490b33e9c3a4c1c01d41bc2aef08f9475af51146e4a7710c450cf9761598"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dc258a761a16daa791081d026f0ed4399b582712e6fc887a95af09df10c5ca57"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:016d0f6f5e77b0f0d45d77387ffa4bb89816b57c835580c3ce8e099ef830befe"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c181ba05ce8299c7aa3125c27b9c2167bca4a4445b7ce73d5febc411ca692e43"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5641516794ca9e5f8a4d17bb45446998c6554704d888f86df9b200e66bdcce56"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea4dedd6e394a9c180b33c2c872b92f7ce0f8e7ad93e9585312b0c5a04777a4a"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0df3635b9c8ef48bd3be5f862cf71b0a4716fa0e702155c45067c6b711ddcef"}, + {file = "numpy-2.1.3-cp313-cp313-win32.whl", hash = "sha256:50ca6aba6e163363f132b5c101ba078b8cbd3fa92c7865fd7d4d62d9779ac29f"}, + {file = "numpy-2.1.3-cp313-cp313-win_amd64.whl", hash = "sha256:747641635d3d44bcb380d950679462fae44f54b131be347d5ec2bce47d3df9ed"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:996bb9399059c5b82f76b53ff8bb686069c05acc94656bb259b1d63d04a9506f"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:45966d859916ad02b779706bb43b954281db43e185015df6eb3323120188f9e4"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:baed7e8d7481bfe0874b566850cb0b85243e982388b7b23348c6db2ee2b2ae8e"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f7f672a3388133335589cfca93ed468509cb7b93ba3105fce780d04a6576a0"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7aac50327da5d208db2eec22eb11e491e3fe13d22653dce51b0f4109101b408"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4394bc0dbd074b7f9b52024832d16e019decebf86caf909d94f6b3f77a8ee3b6"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:50d18c4358a0a8a53f12a8ba9d772ab2d460321e6a93d6064fc22443d189853f"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:14e253bd43fc6b37af4921b10f6add6925878a42a0c5fe83daee390bca80bc17"}, + {file = "numpy-2.1.3-cp313-cp313t-win32.whl", hash = "sha256:08788d27a5fd867a663f6fc753fd7c3ad7e92747efc73c53bca2f19f8bc06f48"}, + {file = "numpy-2.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2564fbdf2b99b3f815f2107c1bbc93e2de8ee655a69c261363a1172a79a257d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4f2015dfe437dfebbfce7c85c7b53d81ba49e71ba7eadbf1df40c915af75979f"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:3522b0dfe983a575e6a9ab3a4a4dfe156c3e428468ff08ce582b9bb6bd1d71d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c006b607a865b07cd981ccb218a04fc86b600411d83d6fc261357f1c0966755d"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:e14e26956e6f1696070788252dcdff11b4aca4c3e8bd166e0df1bb8f315a67cb"}, + {file = "numpy-2.1.3.tar.gz", hash = "sha256:aa08e04e08aaf974d4458def539dece0d28146d866a39da5639596f4921fd761"}, ] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -2475,93 +2477,93 @@ files = [ [[package]] name = "yarl" -version = "1.17.0" +version = "1.17.1" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, - {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, - {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, - {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, - {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, - {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, - {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, - {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, - {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, - {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, - {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, - {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, - {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml b/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml index e81362dd6c3c..f0ad9c287c11 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml +++ b/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.3.18" +version = "3.3.19" name = "source-facebook-marketing" description = "Source implementation for Facebook Marketing." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/facebook-marketing.md b/docs/integrations/sources/facebook-marketing.md index 921dca360424..15a7efd80260 100644 --- a/docs/integrations/sources/facebook-marketing.md +++ b/docs/integrations/sources/facebook-marketing.md @@ -269,6 +269,7 @@ This response indicates that the Facebook Graph API requires you to reduce the f | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 3.3.19 | 2024-11-04 | [48155](https://github.com/airbytehq/airbyte/pull/48155) | Update dependencies | | 3.3.18 | 2024-10-29 | [47894](https://github.com/airbytehq/airbyte/pull/47894) | Update dependencies | | 3.3.17 | 2024-10-28 | [43787](https://github.com/airbytehq/airbyte/pull/43787) | Update dependencies | | 3.3.16 | 2024-07-15 | [46546](https://github.com/airbytehq/airbyte/pull/46546) | Raise exception on missing stream | From 598a54bd039bb02ad61e0e21f6a37ec20286e9e9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:09:56 +0200 Subject: [PATCH 609/808] =?UTF-8?q?=F0=9F=90=99=20source-close-com:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47933)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-close-com/metadata.yaml | 2 +- .../connectors/source-close-com/poetry.lock | 135 +++++++++--------- .../source-close-com/pyproject.toml | 2 +- docs/integrations/sources/close-com.md | 1 + 4 files changed, 71 insertions(+), 69 deletions(-) diff --git a/airbyte-integrations/connectors/source-close-com/metadata.yaml b/airbyte-integrations/connectors/source-close-com/metadata.yaml index ffdfbb2aef7a..e18e167d4bbd 100644 --- a/airbyte-integrations/connectors/source-close-com/metadata.yaml +++ b/airbyte-integrations/connectors/source-close-com/metadata.yaml @@ -8,7 +8,7 @@ data: connectorSubtype: api connectorType: source definitionId: dfffecb7-9a13-43e9-acdc-b92af7997ca9 - dockerImageTag: 0.5.24 + dockerImageTag: 0.5.25 dockerRepository: airbyte/source-close-com documentationUrl: https://docs.airbyte.com/integrations/sources/close-com githubIssueLabel: source-close-com diff --git a/airbyte-integrations/connectors/source-close-com/poetry.lock b/airbyte-integrations/connectors/source-close-com/poetry.lock index ad049cdbb1a4..d87f174b71c2 100644 --- a/airbyte-integrations/connectors/source-close-com/poetry.lock +++ b/airbyte-integrations/connectors/source-close-com/poetry.lock @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.136" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.136-py3-none-any.whl", hash = "sha256:cad2215eb7a754ee259878e19c558f4f8d3795aa1b699f087d4500e640f80d0a"}, - {file = "langsmith-0.1.136.tar.gz", hash = "sha256:5c0de01a313db70dd9a85845c0f416a69b5b653b3e98ba413d7d41e8851315b1"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -767,68 +767,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.9" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.9-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a377186a11b48c55969e34f0aa414c2826a234f212d6f2b312ba512e3cdb2c6f"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bf37bf0ca538065c34efe1803378b2dadd7e05b06610a086c2857f15ee59e12"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7d9d83a91168aa48309acba804e393b7d9216b66f15e38f339b9fbb00db8986d"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e0014038a17a1fe273da0a5489787677ef5a64566ab383ad6d929e44ed5683f4"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d6ae1b1733e4528e45675ed09a732b6ac37d716bce2facaf467f84ce774adecd"}, - {file = "orjson-3.10.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe91c2259c4a859356b6db1c6e649b40577492f66d483da8b8af6da0f87c00e3"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a04f912c32463386ba117591c99a3d9e40b3b69bed9c5123d89dff06f0f5a4b0"}, - {file = "orjson-3.10.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae82ca347829ca47431767b079f96bb977f592189250ccdede676339a80c8982"}, - {file = "orjson-3.10.9-cp310-none-win32.whl", hash = "sha256:fd5083906825d7f5d23089425ce5424d783d6294020bcabb8518a3e1f97833e5"}, - {file = "orjson-3.10.9-cp310-none-win_amd64.whl", hash = "sha256:e9ff9521b5be0340c8e686bcfe2619777fd7583f71e7b494601cc91ad3919d2e"}, - {file = "orjson-3.10.9-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f3bd9df47385b8fabb3b2ee1e83f9960b8accc1905be971a1c257f16c32b491e"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4948961b6bce1e2086b2cf0b56cc454cdab589d40c7f85be71fb5a5556c51d3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a9fc7a6cf2b229ddc323e136df13b3fb4466c50d84ed600cd0898223dd2fea3"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2314846e1029a2d2b899140f350eaaf3a73281df43ba84ac44d94ca861b5b269"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f52d993504827503411df2d60e60acf52885561458d6273f99ecd172f31c4352"}, - {file = "orjson-3.10.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e29bbf08d907756c145a3a3a1f7ce2f11f15e3edbd3342842589d6030981b76f"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7ae82992c00b480c3cc7dac6739324554be8c5d8e858a90044928506a3333ef4"}, - {file = "orjson-3.10.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6fdf8d32b6d94019dc15163542d345e9ce4c4661f56b318608aa3088a1a3a23b"}, - {file = "orjson-3.10.9-cp311-none-win32.whl", hash = "sha256:01f5fef452b4d7615f2e94153479370a4b59e0c964efb32dd902978f807a45cd"}, - {file = "orjson-3.10.9-cp311-none-win_amd64.whl", hash = "sha256:95361c4197c7ce9afdf56255de6f4e2474c39d16a277cce31d1b99a2520486d8"}, - {file = "orjson-3.10.9-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:43ad5560db54331c007dc38be5ba7706cb72974a29ae8227019d89305d750a6f"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1471c3274b1a4a9b8f4b9ed6effaea9ad885796373797515c44b365b375c256d"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:41d8cac575acd15918903d74cfaabb5dbe57b357b93341332f647d1013928dcc"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2920c8754f1aedc98bd357ec172af18ce48f5f1017a92244c85fe41d16d3c6e0"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7fa3ff6a0d9d15a0d0d2254cca16cd919156a18423654ce5574591392fe9914"}, - {file = "orjson-3.10.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1e91b90c0c26bd79593967c1adef421bcff88c9e723d49c93bb7ad8af80bc6b"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f11949024f785ace1a516db32fa6255f6227226b2c988abf66f5aee61d43d8f7"}, - {file = "orjson-3.10.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:060e020d85d0ec145bc1b536b1fd9c10a0519c91991ead9724d6f759ebe26b9a"}, - {file = "orjson-3.10.9-cp312-none-win32.whl", hash = "sha256:71f73439999fe662843da3607cdf6e75b1551c330f487e5801d463d969091c63"}, - {file = "orjson-3.10.9-cp312-none-win_amd64.whl", hash = "sha256:12e2efe81356b8448f1cd130f8d75d3718de583112d71f2e2f8baa81bd835bb9"}, - {file = "orjson-3.10.9-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:0ab6e3ad10e964392f0e838751bcce2ef9c8fa8be7deddffff83088e5791566d"}, - {file = "orjson-3.10.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68ef65223baab00f469c8698f771ab3e6ccf6af2a987e77de5b566b4ec651150"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6f130848205fea90a2cb9fa2b11cafff9a9f31f4efad225800bc8b9e4a702f24"}, - {file = "orjson-3.10.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2ea7a98f3295ed8adb6730a5788cc78dafea28300d19932a1d2143457f7db802"}, - {file = "orjson-3.10.9-cp313-none-win32.whl", hash = "sha256:bdce39f96149a74fddeb2674c54f1da5e57724d32952eb6df2ac719b66d453cc"}, - {file = "orjson-3.10.9-cp313-none-win_amd64.whl", hash = "sha256:d11383701d4b58e795039b662ada46987744293d57bfa2719e7379b8d67bc796"}, - {file = "orjson-3.10.9-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1c3a1e845916a3739ab4162bb48dee66e0e727a19faf397176a7db0d9826cc3c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:063ca59d93d93d1387f0c4bb766c6d4f5b0e423fe7c366d0bd4401a56d1669d1"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:938b7fcd79cf06fe348fb24b6163fbaa2fdc9fbed8b1f06318f24467f1487e63"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cc32a9e43c7693011ccde6f8eff8cba75ca0d2a55de11092faa4a716101e67f5"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1b3069b7e2f57f3eef2282029b9c2ba21f08a55f1018e483663a3356f046af4c"}, - {file = "orjson-3.10.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4289b5d1f88fd05dcafdd7a1f3b17bb722e77712b7618f98e86bdda560e0a1a"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:74f5a7a7f282d326be71b722b0c350da7af6f5f15b9378da177e0e4a09bd91a3"}, - {file = "orjson-3.10.9-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:80e0c013e50cf7198319d8137931684eb9f32daa067e8276d9dbdd4010bb4add"}, - {file = "orjson-3.10.9-cp38-none-win32.whl", hash = "sha256:9d989152df8f60a76867354e0e08d896292ab9fb96a7ef89a5b3838de174522c"}, - {file = "orjson-3.10.9-cp38-none-win_amd64.whl", hash = "sha256:485358fe9892d6bfd88e5885b66bf88496e1842c8f35f61682ff9928b12a6cf0"}, - {file = "orjson-3.10.9-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ca54e6f320e33c8a6e471c424ee16576361d905c15d69e134c2906d3fcb31795"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9a9eb03a29c9b30b6c8bb35e5fa20d96589a76e0042005be59b7c3af10a7e43"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:731e8859fc99b398c286320726906404091141e9223dd5e9e6917f7e32e1cc68"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:75b061c11f5aab979a95927a76394b4a85e3e4d63d0a2a16b56a4f7c6503afab"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b61b08f6397f004570fd6a840f4a58946b63b4c7029408cdedb45fe85c7d17f7"}, - {file = "orjson-3.10.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c4f5e0360b7f0aba91dafe12469108109a0e8973956d4a9865ca262a6881406"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e403429e2947a059545e305d97e4b0eb90d3bb44b396d6f327d7ae2018391e13"}, - {file = "orjson-3.10.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0e492b93e122264c2dc78700859122631a4715bda88fabf57d9226954cfe7ec5"}, - {file = "orjson-3.10.9-cp39-none-win32.whl", hash = "sha256:bfba9605e85bfd19b83a21c2c25c2bed2000d5f097f3fa3ad5b5f8a7263a3148"}, - {file = "orjson-3.10.9-cp39-none-win_amd64.whl", hash = "sha256:77d277fa138d4bf145e8b24042004891c188c52ac8492724a183f42b0031cf0c"}, - {file = "orjson-3.10.9.tar.gz", hash = "sha256:c378074e0c46035dc66e57006993233ec66bf8487d501bab41649b4b7289ed4d"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1284,23 +1285,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-close-com/pyproject.toml b/airbyte-integrations/connectors/source-close-com/pyproject.toml index 56865f5c1803..73ddacb59858 100644 --- a/airbyte-integrations/connectors/source-close-com/pyproject.toml +++ b/airbyte-integrations/connectors/source-close-com/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.24" +version = "0.5.25" name = "source-close-com" description = "Source implementation for Close.com." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/close-com.md b/docs/integrations/sources/close-com.md index a34c20cc4deb..8c8f73d1d26b 100644 --- a/docs/integrations/sources/close-com.md +++ b/docs/integrations/sources/close-com.md @@ -109,6 +109,7 @@ The Close.com connector is subject to rate limits. For more information on this | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------- | +| 0.5.25 | 2024-11-04 | [47933](https://github.com/airbytehq/airbyte/pull/47933) | Update dependencies | | 0.5.24 | 2024-10-21 | [47047](https://github.com/airbytehq/airbyte/pull/47047) | Update dependencies | | 0.5.23 | 2024-10-12 | [46803](https://github.com/airbytehq/airbyte/pull/46803) | Update dependencies | | 0.5.22 | 2024-10-05 | [46449](https://github.com/airbytehq/airbyte/pull/46449) | Update dependencies | From 4192ceb1869925639de2c5179f7e68171d1e9e99 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:10:03 +0200 Subject: [PATCH 610/808] =?UTF-8?q?=F0=9F=90=99=20source-tyntec-sms:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47910)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tyntec-sms/metadata.yaml | 4 ++-- docs/integrations/sources/tyntec-sms.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml b/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml index a20bcc97a11b..23c856042dfe 100644 --- a/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml +++ b/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3c0c3cd1-b3e0-464a-9090-d3ceb5f92346 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-tyntec-sms githubIssueLabel: source-tyntec-sms icon: tyntec.svg @@ -27,5 +27,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/tyntec-sms.md b/docs/integrations/sources/tyntec-sms.md index cb45bf8b3d55..54602accb2bd 100644 --- a/docs/integrations/sources/tyntec-sms.md +++ b/docs/integrations/sources/tyntec-sms.md @@ -65,6 +65,7 @@ The Tyntec SMS connector should not run into limitations under normal usage. Ple | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------ | +| 0.2.3 | 2024-11-04 | [47910](https://github.com/airbytehq/airbyte/pull/47910) | Update dependencies | | 0.2.2 | 2024-10-28 | [43782](https://github.com/airbytehq/airbyte/pull/43782) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-14 | [44054](https://github.com/airbytehq/airbyte/pull/44054) | Refactor connector to manifest-only format | From 28ad92c6053421118d409b9330504e861ab3aeaf Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:10:21 +0200 Subject: [PATCH 611/808] =?UTF-8?q?=F0=9F=90=99=20source-incident-io:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#47842)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-incident-io/metadata.yaml | 4 ++-- docs/integrations/sources/incident-io.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-incident-io/metadata.yaml b/airbyte-integrations/connectors/source-incident-io/metadata.yaml index 9c9ecafa8452..93a23bdfc0de 100644 --- a/airbyte-integrations/connectors/source-incident-io/metadata.yaml +++ b/airbyte-integrations/connectors/source-incident-io/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-incident-io connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.10.2@sha256:81db4f78a92d199f33c38c17f5b63fc87c56739f14dc10276ddec86c7b707b7a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 7926da90-399e-4f9f-9833-52d8dc3fcb29 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-incident-io githubIssueLabel: source-incident-io icon: icon.svg diff --git a/docs/integrations/sources/incident-io.md b/docs/integrations/sources/incident-io.md index 210f01d85e12..b8c9d0c17c9a 100644 --- a/docs/integrations/sources/incident-io.md +++ b/docs/integrations/sources/incident-io.md @@ -54,6 +54,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [47842](https://github.com/airbytehq/airbyte/pull/47842) | Update dependencies | | 0.0.1 | 2024-10-03 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 9a238cb4cf4e11e62f6c1334e82b1549680f90a1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:10:24 +0200 Subject: [PATCH 612/808] =?UTF-8?q?=F0=9F=90=99=20source-uppromote:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47828)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-uppromote/metadata.yaml | 4 ++-- docs/integrations/sources/uppromote.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-uppromote/metadata.yaml b/airbyte-integrations/connectors/source-uppromote/metadata.yaml index 8eb122d54e89..7a97f249bece 100644 --- a/airbyte-integrations/connectors/source-uppromote/metadata.yaml +++ b/airbyte-integrations/connectors/source-uppromote/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-uppromote connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: d75a7792-e5db-4645-93c3-b4a16ad62ab0 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-uppromote githubIssueLabel: source-uppromote icon: icon.svg diff --git a/docs/integrations/sources/uppromote.md b/docs/integrations/sources/uppromote.md index 18f1a79b3f58..6e6ad2d6a437 100644 --- a/docs/integrations/sources/uppromote.md +++ b/docs/integrations/sources/uppromote.md @@ -21,6 +21,7 @@ The Uppromote Connector for Airbyte enables seamless data integration between Up | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [47828](https://github.com/airbytehq/airbyte/pull/47828) | Update dependencies | | 0.0.2 | 2024-10-28 | [47589](https://github.com/airbytehq/airbyte/pull/47589) | Update dependencies | | 0.0.1 | 2024-10-10 | | Initial release by [@avirajsingh7](https://github.com/avirajsingh7) via Connector Builder | From edbcdff87e9343f31549825a504d7ee5261c3817 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:10:50 +0200 Subject: [PATCH 613/808] =?UTF-8?q?=F0=9F=90=99=20source-shortcut:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47658)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-shortcut/metadata.yaml | 4 ++-- docs/integrations/sources/shortcut.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-shortcut/metadata.yaml b/airbyte-integrations/connectors/source-shortcut/metadata.yaml index 4ea80c92bf5f..e4e332a3956b 100644 --- a/airbyte-integrations/connectors/source-shortcut/metadata.yaml +++ b/airbyte-integrations/connectors/source-shortcut/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-shortcut connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 72b4b6ad-bf46-4113-a97e-c8e2666f7230 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-shortcut githubIssueLabel: source-shortcut icon: icon.svg diff --git a/docs/integrations/sources/shortcut.md b/docs/integrations/sources/shortcut.md index 779acdd07bcf..a8b9d4282456 100644 --- a/docs/integrations/sources/shortcut.md +++ b/docs/integrations/sources/shortcut.md @@ -53,6 +53,7 @@ Refer `https://developer.shortcut.com/api/rest/v3#Authentication` for more detai | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.2 | 2024-11-04 | [47658](https://github.com/airbytehq/airbyte/pull/47658) | Update dependencies | | 0.0.1 | 2024-09-05 | [45176](https://github.com/airbytehq/airbyte/pull/45176) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 62c7d4cc821e7fddaa738268ccc250a7643e628d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:11:20 +0200 Subject: [PATCH 614/808] =?UTF-8?q?=F0=9F=90=99=20source-zenloop:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#47107)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zenloop/metadata.yaml | 2 +- .../connectors/source-zenloop/poetry.lock | 136 +++++++++--------- .../connectors/source-zenloop/pyproject.toml | 2 +- docs/integrations/sources/zenloop.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-zenloop/metadata.yaml b/airbyte-integrations/connectors/source-zenloop/metadata.yaml index 6389134ef935..3bb4317600a8 100644 --- a/airbyte-integrations/connectors/source-zenloop/metadata.yaml +++ b/airbyte-integrations/connectors/source-zenloop/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: f1e4c7f6-db5c-4035-981f-d35ab4998794 - dockerImageTag: 0.1.34 + dockerImageTag: 0.1.35 dockerRepository: airbyte/source-zenloop documentationUrl: https://docs.airbyte.com/integrations/sources/zenloop githubIssueLabel: source-zenloop diff --git a/airbyte-integrations/connectors/source-zenloop/poetry.lock b/airbyte-integrations/connectors/source-zenloop/poetry.lock index a3da2444447b..ea20f620623c 100644 --- a/airbyte-integrations/connectors/source-zenloop/poetry.lock +++ b/airbyte-integrations/connectors/source-zenloop/poetry.lock @@ -416,72 +416,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -903,23 +903,23 @@ tests = ["coverage (>=3.7.1,<6.0.0)", "flake8", "mypy", "pytest (>=4.6)", "pytes [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-zenloop/pyproject.toml b/airbyte-integrations/connectors/source-zenloop/pyproject.toml index 2ccb6021b56e..975027758187 100644 --- a/airbyte-integrations/connectors/source-zenloop/pyproject.toml +++ b/airbyte-integrations/connectors/source-zenloop/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.34" +version = "0.1.35" name = "source-zenloop" description = "Source implementation for Zenloop." authors = [ "Alexander Batoulis ",] diff --git a/docs/integrations/sources/zenloop.md b/docs/integrations/sources/zenloop.md index 931e84df9583..52b6a418cbe1 100644 --- a/docs/integrations/sources/zenloop.md +++ b/docs/integrations/sources/zenloop.md @@ -77,6 +77,7 @@ The Zenloop connector should not run into Zenloop API limitations under normal u | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.35 | 2024-11-04 | [47107](https://github.com/airbytehq/airbyte/pull/47107) | Update dependencies | | 0.1.34 | 2024-10-12 | [46780](https://github.com/airbytehq/airbyte/pull/46780) | Update dependencies | | 0.1.33 | 2024-10-05 | [46431](https://github.com/airbytehq/airbyte/pull/46431) | Update dependencies | | 0.1.32 | 2024-09-28 | [46141](https://github.com/airbytehq/airbyte/pull/46141) | Update dependencies | From 1a2ee2d2226257c3b67826d9ab1282ff6ed415d3 Mon Sep 17 00:00:00 2001 From: Bakare Samuel Oluwadamilola <49197462+itsxdamdam@users.noreply.github.com> Date: Mon, 4 Nov 2024 23:21:13 +0100 Subject: [PATCH 615/808] source-zoho-desk contribution from itsxdamdam (#46863) Co-authored-by: Marcos Marx --- .../connectors/source-zoho-desk/README.md | 37 + .../acceptance-test-config.yml | 17 + .../connectors/source-zoho-desk/icon.svg | 40 + .../connectors/source-zoho-desk/manifest.yaml | 5122 +++++++++++++++++ .../connectors/source-zoho-desk/metadata.yaml | 35 + docs/integrations/sources/zoho-desk.md | 62 + 6 files changed, 5313 insertions(+) create mode 100644 airbyte-integrations/connectors/source-zoho-desk/README.md create mode 100644 airbyte-integrations/connectors/source-zoho-desk/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-zoho-desk/icon.svg create mode 100644 airbyte-integrations/connectors/source-zoho-desk/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-zoho-desk/metadata.yaml create mode 100644 docs/integrations/sources/zoho-desk.md diff --git a/airbyte-integrations/connectors/source-zoho-desk/README.md b/airbyte-integrations/connectors/source-zoho-desk/README.md new file mode 100644 index 000000000000..01db87f261ad --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-desk/README.md @@ -0,0 +1,37 @@ +# Zoho Desk +This directory contains the manifest-only connector for `source-zoho-desk`(https://www.zoho.com/desk). + +## Documentation reference: +- Visit `https://desk.zoho.com/DeskAPIDocument#Introduction` for API documentation + +## Authentication setup +`Zoho Desk's` APIs use the industry-standard OAuth 2.0 protocol for authentication and authorization, Visit `https://desk.zoho.com/DeskAPIDocument#OauthTokens` for getting your api keys. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-zoho-desk:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-zoho-desk build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-zoho-desk test +``` + diff --git a/airbyte-integrations/connectors/source-zoho-desk/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zoho-desk/acceptance-test-config.yml new file mode 100644 index 000000000000..6484f0c6bcee --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-desk/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-zoho-desk:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-zoho-desk/icon.svg b/airbyte-integrations/connectors/source-zoho-desk/icon.svg new file mode 100644 index 000000000000..d3fe704da11f --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-desk/icon.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-zoho-desk/manifest.yaml b/airbyte-integrations/connectors/source-zoho-desk/manifest.yaml new file mode 100644 index 000000000000..76854337fb35 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-desk/manifest.yaml @@ -0,0 +1,5122 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: |- + Website: https://www.zoho.com/desk + API Docs: https://desk.zoho.com/DeskAPIDocument#Introduction + Auth Docs: https://desk.zoho.com/DeskAPIDocument#OauthTokens + +check: + type: CheckStream + stream_names: + - organization + +definitions: + streams: + organization: + type: DeclarativeStream + name: organization + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: organizations/{{ stream_partition.organization_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: organization_id + stream: + $ref: "#/definitions/streams/all_organizations" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/organization" + all_organizations: + type: DeclarativeStream + name: all_organizations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /organizations + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/all_organizations" + accessible_organizations: + type: DeclarativeStream + name: accessible_organizations + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accessibleOrganizations + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/accessible_organizations" + agent: + type: DeclarativeStream + name: agent + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /agents/{{ stream_partition.agent_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: agent_id + stream: + $ref: "#/definitions/streams/list_agents" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/agent" + list_agents: + type: DeclarativeStream + name: list_agents + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /agents + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_agents" + agent_details_by_id: + type: DeclarativeStream + name: agent_details_by_id + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /agentsByIds?agentIds={{ stream_partition.agent_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: agent_id + stream: + $ref: "#/definitions/streams/list_agents" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/agent_details_by_id" + profiles: + type: DeclarativeStream + name: profiles + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /profiles + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/profiles" + list_roles: + type: DeclarativeStream + name: list_roles + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /roles + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_roles" + teams: + type: DeclarativeStream + name: teams + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /teams + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - teams + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/teams" + team_members: + type: DeclarativeStream + name: team_members + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /teams/{{ stream_partition.team_id }}/members + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - members + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: team_id + stream: + $ref: "#/definitions/streams/teams" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/team_members" + list_departments: + type: DeclarativeStream + name: list_departments + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /departments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_departments" + channels: + type: DeclarativeStream + name: channels + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /channels + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/channels" + list_tickets: + type: DeclarativeStream + name: list_tickets + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tickets + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_tickets" + list_all_threads: + type: DeclarativeStream + name: list_all_threads + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tickets/{{ stream_partition.ticket_id }}/threads + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: ticket_id + stream: + $ref: "#/definitions/streams/list_tickets" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_all_threads" + get_latest_thread: + type: DeclarativeStream + name: get_latest_thread + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tickets/{{ stream_partition.ticket_id }}/latestThread + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: ticket_id + stream: + $ref: "#/definitions/streams/list_tickets" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/get_latest_thread" + list_contacts: + type: DeclarativeStream + name: list_contacts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /contacts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_contacts" + webhooks: + type: DeclarativeStream + name: webhooks + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /webhooks + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/webhooks" + list_accounts: + type: DeclarativeStream + name: list_accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_accounts" + list_contracts: + type: DeclarativeStream + name: list_contracts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounts/{{ stream_partition.account_id }}/contracts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + $ref: "#/definitions/streams/list_accounts" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_contracts" + list_tasks: + type: DeclarativeStream + name: list_tasks + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tasks + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_tasks" + list_products: + type: DeclarativeStream + name: list_products + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /products + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_products" + list_articles: + type: DeclarativeStream + name: list_articles + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /articles + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_articles" + list_events: + type: DeclarativeStream + name: list_events + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /events + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_events" + modules: + type: DeclarativeStream + name: modules + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /organizationModules + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/modules" + list_users: + type: DeclarativeStream + name: list_users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_users" + ticket_activities: + type: DeclarativeStream + name: ticket_activities + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tickets/{{ stream_partition.ticket_id }}/activities + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: ticket_id + stream: + $ref: "#/definitions/streams/list_tickets" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/ticket_activities" + list_attachments: + type: DeclarativeStream + name: list_attachments + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /products/{{ stream_partition.product_id }}/attachments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: product_id + stream: + $ref: "#/definitions/streams/list_products" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_attachments" + product: + type: DeclarativeStream + name: product + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /products/{{ stream_partition.product_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: product_id + stream: + $ref: "#/definitions/streams/list_products" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/product" + task_attachments: + type: DeclarativeStream + name: task_attachments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tasks/{{ stream_partition.task_id }}/attachments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: task_id + stream: + $ref: "#/definitions/streams/list_tasks" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/task_attachments" + list_calls: + type: DeclarativeStream + name: list_calls + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /calls + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_calls" + call: + type: DeclarativeStream + name: call + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /calls/{{ stream_partition.call_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: call_id + stream: + $ref: "#/definitions/streams/list_calls" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/call" + list_call_comments: + type: DeclarativeStream + name: list_call_comments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /calls/{{ stream_partition.call_id }}/comments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: call_id + stream: + $ref: "#/definitions/streams/list_calls" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_call_comments" + dashboard_created_tickets: + type: DeclarativeStream + name: dashboard_created_tickets + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /dashboards/createdTickets + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + - type: ListPartitionRouter + values: + - date + - channel + - agent + cursor_field: groupBy + request_option: + type: RequestOption + field_name: groupBy + inject_into: request_parameter + - type: ListPartitionRouter + values: + - LAST_7_DAYS + cursor_field: duration + request_option: + type: RequestOption + field_name: duration + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/dashboard_created_tickets" + list_user_groups: + type: DeclarativeStream + name: list_user_groups + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /users/{{ stream_partition.user_id }}/groups + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 50 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: user_id + stream: + $ref: "#/definitions/streams/list_users" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/list_user_groups" + dashboard_onhold_tickets: + type: DeclarativeStream + name: dashboard_onhold_tickets + primary_key: + - value + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /dashboards/onholdTickets + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - ticketCount + partition_router: + - type: ListPartitionRouter + values: + - date + - channel + - agent + cursor_field: groupBy + request_option: + type: RequestOption + field_name: groupBy + inject_into: request_parameter + - type: ListPartitionRouter + values: + - LAST_7_DAYS + cursor_field: duration + request_option: + type: RequestOption + field_name: duration + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/dashboard_onhold_tickets" + base_requester: + type: HttpRequester + url_base: https://desk.zoho.com/api/v1 + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id\"] }}" + grant_type: refresh_token + client_secret: "{{ config[\"client_secret\"] }}" + refresh_token: "{{ config[\"refresh_token\"] }}" + expires_in_name: expires_in + access_token_name: access_token + refresh_request_body: {} + token_refresh_endpoint: "{{ config[\"token_refresh_endpoint\"] }}" + +streams: + - $ref: "#/definitions/streams/organization" + - $ref: "#/definitions/streams/all_organizations" + - $ref: "#/definitions/streams/accessible_organizations" + - $ref: "#/definitions/streams/agent" + - $ref: "#/definitions/streams/list_agents" + - $ref: "#/definitions/streams/agent_details_by_id" + - $ref: "#/definitions/streams/profiles" + - $ref: "#/definitions/streams/list_roles" + - $ref: "#/definitions/streams/teams" + - $ref: "#/definitions/streams/team_members" + - $ref: "#/definitions/streams/list_departments" + - $ref: "#/definitions/streams/channels" + - $ref: "#/definitions/streams/list_tickets" + - $ref: "#/definitions/streams/list_all_threads" + - $ref: "#/definitions/streams/get_latest_thread" + - $ref: "#/definitions/streams/list_contacts" + - $ref: "#/definitions/streams/webhooks" + - $ref: "#/definitions/streams/list_accounts" + - $ref: "#/definitions/streams/list_contracts" + - $ref: "#/definitions/streams/list_tasks" + - $ref: "#/definitions/streams/list_products" + - $ref: "#/definitions/streams/list_articles" + - $ref: "#/definitions/streams/list_events" + - $ref: "#/definitions/streams/modules" + - $ref: "#/definitions/streams/list_users" + - $ref: "#/definitions/streams/ticket_activities" + - $ref: "#/definitions/streams/list_attachments" + - $ref: "#/definitions/streams/product" + - $ref: "#/definitions/streams/task_attachments" + - $ref: "#/definitions/streams/list_calls" + - $ref: "#/definitions/streams/call" + - $ref: "#/definitions/streams/list_call_comments" + - $ref: "#/definitions/streams/dashboard_created_tickets" + - $ref: "#/definitions/streams/list_user_groups" + - $ref: "#/definitions/streams/dashboard_onhold_tickets" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id + - client_secret + - token_refresh_endpoint + - refresh_token + properties: + client_id: + type: string + order: 0 + title: Client ID + airbyte_secret: true + client_secret: + type: string + order: 1 + title: Client secret + airbyte_secret: true + token_refresh_endpoint: + type: string + name: token_refresh_endpoint + order: 2 + title: Token Refresh Endpoint + refresh_token: + type: string + name: refresh_token + order: 3 + title: OAuth Refresh Token + airbyte_secret: true + include_custom_domain: + type: boolean + order: 4 + title: include Custom Domain + additionalProperties: true + +metadata: + autoImportSchema: + organization: true + all_organizations: true + accessible_organizations: false + agent: false + list_agents: false + agent_details_by_id: true + profiles: true + list_roles: true + teams: true + team_members: true + list_departments: true + channels: true + list_tickets: true + list_all_threads: true + get_latest_thread: true + list_contacts: true + webhooks: true + list_accounts: true + list_contracts: true + list_tasks: true + list_products: true + list_articles: true + list_events: true + modules: true + list_users: true + ticket_activities: true + list_attachments: true + product: true + task_attachments: false + list_calls: true + call: true + list_call_comments: true + dashboard_created_tickets: true + list_user_groups: true + dashboard_onhold_tickets: true + testedStreams: + organization: + hasRecords: true + streamHash: c7474fdc181562625a167a16855f8487649920e7 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + all_organizations: + hasRecords: true + streamHash: 65331d4ff0ce0918979fa07398fc6cd189b6a8aa + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + accessible_organizations: + hasRecords: true + streamHash: 579a5a75e86b46a236f44e22399f0c2d2e2aaade + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + agent: + hasRecords: true + streamHash: f29421eb7df4101ddb3cda487aa843ff2df20824 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_agents: + hasRecords: true + streamHash: 3d7c1c2deaaf9aca63175baade6df1760c8942e0 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + agent_details_by_id: + hasRecords: true + streamHash: 34c952e5f484b818dd88efe3b91906e235716ee1 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + profiles: + hasRecords: true + streamHash: 665eac4c08235e16608481cc1e06207920a1b266 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_roles: + hasRecords: true + streamHash: ea36b640fed755bea0f3b0a8478da6ad12048b02 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + teams: + hasRecords: true + streamHash: e50031af9f6d3cdfbd829e737581e72eed8a0293 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + team_members: + hasRecords: true + streamHash: 08adb08a9a2758a0b8d8878ec393c7b8f351eb53 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_departments: + hasRecords: true + streamHash: a52794803739fae526a5ea14c52730b27fce67be + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + channels: + hasRecords: true + streamHash: d9b6a1896c261d4f84327fdd15069fa77a8c1b1d + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_tickets: + hasRecords: true + streamHash: 4d0886f40f123633c969d3344aa27a435bc75e2c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_all_threads: + hasRecords: true + streamHash: d49ff74630c3f0b00e6748e430acd013ee98815c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + get_latest_thread: + hasRecords: true + streamHash: 494839a05573d745a5d7f38ccbf2baaaacad70cd + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_contacts: + hasRecords: true + streamHash: 5b5d8224e5f4824af32b711faabf6e1636ff7d79 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + webhooks: + hasRecords: true + streamHash: fa1d5f9ab3643b61717ea63ba5f7d914c0d903f0 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_accounts: + hasRecords: true + streamHash: f423eacdfb8de296b15b8e72b15488ecd4c02ef6 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_contracts: + hasRecords: true + streamHash: a722a43cb1fc8466921a60eff9c622ab89094f9a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_tasks: + hasRecords: true + streamHash: d8c270148e1e7c22005a136cdea2de5347b73245 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_products: + hasRecords: true + streamHash: 38a7ca22f0eec3037f47eb7906ddf0fdd85f98eb + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_articles: + streamHash: d3b131b9cbd84461e43059802adb9bc32290d2a2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + list_events: + hasRecords: true + streamHash: 1c50a3f32a4b9fb66c00b7fa3579eb8705e999bd + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + modules: + hasRecords: true + streamHash: 65b4ef477933db9cb4a76bcfdc51d5db8b7ce1cf + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_users: + hasRecords: true + streamHash: 453457445af4b1492c7d425fe74d80ebd38e7408 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + ticket_activities: + hasRecords: true + streamHash: 63924fcb8ee340210157fed5f0cb21d3501e1c47 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_attachments: + hasRecords: true + streamHash: 40fc06423f1035cc78f732dfb830d0b117658f0e + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + product: + hasRecords: true + streamHash: b971c0e0e97fa2ae85acdb2f935f1d05b6314eac + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + task_attachments: + hasRecords: true + streamHash: a6353a112894b0c954f4c621161a7d0b7252c083 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_calls: + hasRecords: true + streamHash: c29edb110ef142088a0fdcd7d7574024e67910a2 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + call: + hasRecords: true + streamHash: 2a0b4bd52569c5d0439fef01c208136f32b08e40 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_call_comments: + hasRecords: true + streamHash: 4ec232254a8f343213e09be088dd7be12025db28 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + dashboard_created_tickets: + hasRecords: true + streamHash: b09e6d48aca75d2f9ca5926c3c0e4e2522ae2dbd + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + list_user_groups: + hasRecords: true + streamHash: 581eb05ccdd057ca3e6fb991abc23a0842f22b3c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + dashboard_onhold_tickets: + hasRecords: true + streamHash: 88da2a446c150b77378a8fbc4d5d5edec6693e34 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://desk.zoho.com/DeskAPIDocument + +schemas: + organization: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + city: + type: + - string + - "null" + companyName: + type: + - string + - "null" + country: + type: + - string + - "null" + currencyCode: + type: + - string + - "null" + currencyLocale: + type: + - string + - "null" + currencySymbol: + type: + - string + - "null" + edition: + type: + - string + - "null" + employeeCount: + type: + - number + - "null" + faviconURL: + type: + - string + - "null" + fax: + type: + - string + - "null" + id: + type: number + isAdminInOrg: + type: + - boolean + - "null" + isDefault: + type: + - boolean + - "null" + isPayloadEncryptionEnabled: + type: + - boolean + - "null" + isSandboxPortal: + type: + - boolean + - "null" + logoURL: + type: + - string + - "null" + mobile: + type: + - string + - "null" + phoneNumber: + type: + - string + - "null" + portalName: + type: + - string + - "null" + portalURL: + type: + - string + - "null" + primaryContact: + type: + - string + - "null" + state: + type: + - string + - "null" + street: + type: + - string + - "null" + website: + type: + - string + - "null" + zip: + type: + - string + - "null" + required: + - id + all_organizations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + city: + type: + - string + - "null" + companyName: + type: + - string + - "null" + country: + type: + - string + - "null" + currencyCode: + type: + - string + - "null" + currencyLocale: + type: + - string + - "null" + currencySymbol: + type: + - string + - "null" + edition: + type: + - string + - "null" + employeeCount: + type: + - number + - "null" + faviconURL: + type: + - string + - "null" + fax: + type: + - string + - "null" + id: + type: number + isAdminInOrg: + type: + - boolean + - "null" + isDefault: + type: + - boolean + - "null" + isPayloadEncryptionEnabled: + type: + - boolean + - "null" + isSandboxPortal: + type: + - boolean + - "null" + logoURL: + type: + - string + - "null" + mobile: + type: + - string + - "null" + phoneNumber: + type: + - string + - "null" + portalName: + type: + - string + - "null" + portalURL: + type: + - string + - "null" + primaryContact: + type: + - string + - "null" + state: + type: + - string + - "null" + street: + type: + - string + - "null" + website: + type: + - string + - "null" + zip: + type: + - string + - "null" + required: + - id + accessible_organizations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + city: + type: + - string + - "null" + companyName: + type: + - string + - "null" + country: + type: + - string + - "null" + currencyCode: + type: + - string + - "null" + currencyLocale: + type: + - string + - "null" + currencySymbol: + type: + - string + - "null" + edition: + type: + - string + - "null" + employeeCount: + type: + - number + - "null" + faviconURL: + type: + - string + - "null" + fax: + type: + - string + - "null" + id: + type: + - number + - "null" + isAdminInOrg: + type: + - boolean + - "null" + isDefault: + type: + - boolean + - "null" + isPayloadEncryptionEnabled: + type: + - boolean + - "null" + isSandboxPortal: + type: + - boolean + - "null" + logoURL: + type: + - string + - "null" + mobile: + type: + - string + - "null" + phoneNumber: + type: + - string + - "null" + portalName: + type: + - string + - "null" + portalURL: + type: + - string + - "null" + primaryContact: + type: + - string + - "null" + state: + type: + - string + - "null" + street: + type: + - string + - "null" + website: + type: + - string + - "null" + zip: + type: + - string + - "null" + agent: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + aboutInfo: + type: + - string + - "null" + associatedChatDepartmentIds: + type: + - array + - "null" + associatedDepartmentIds: + type: + - array + - "null" + items: + type: + - string + - "null" + cf: + type: + - object + - "null" + channelExpert: + type: + - array + - "null" + countryCode: + type: + - string + - "null" + emailId: + type: + - string + - "null" + extn: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: + - string + - "null" + isConfirmed: + type: + - boolean + - "null" + langCode: + type: + - string + - "null" + lastName: + type: + - string + - "null" + mobile: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + profileId: + type: + - string + - "null" + roleId: + type: + - string + - "null" + rolePermissionType: + type: + - string + - "null" + status: + type: + - string + - "null" + timeZone: + type: + - string + - "null" + zuid: + type: + - string + - "null" + list_agents: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + aboutInfo: + type: + - string + - "null" + associatedChatDepartmentIds: + type: + - array + - "null" + associatedDepartmentIds: + type: + - array + - "null" + items: + type: + - string + - "null" + cf: + type: + - object + - "null" + channelExpert: + type: + - array + - "null" + countryCode: + type: + - string + - "null" + emailId: + type: + - string + - "null" + extn: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: string + isConfirmed: + type: + - boolean + - "null" + langCode: + type: + - string + - "null" + lastName: + type: + - string + - "null" + mobile: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + profileId: + type: + - string + - "null" + roleId: + type: + - string + - "null" + rolePermissionType: + type: + - string + - "null" + status: + type: + - string + - "null" + timeZone: + type: + - string + - "null" + zuid: + type: + - string + - "null" + required: + - id + agent_details_by_id: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + aboutInfo: + type: + - string + - "null" + associatedDepartmentIds: + type: + - array + - "null" + channelExpert: + type: + - array + - "null" + emailId: + type: + - string + - "null" + extn: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: string + isConfirmed: + type: + - boolean + - "null" + lastName: + type: + - string + - "null" + mobile: + type: + - string + - "null" + phone: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + profileId: + type: + - string + - "null" + roleId: + type: + - string + - "null" + rolePermissionType: + type: + - string + - "null" + status: + type: + - string + - "null" + zuid: + type: + - string + - "null" + required: + - id + profiles: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + default: + type: + - boolean + - "null" + id: + type: string + isVisible: + type: + - boolean + - "null" + name: + type: + - string + - "null" + permissions: + type: + - object + - "null" + properties: + CommunityComment: + type: + - object + - "null" + properties: + view: + type: + - boolean + - "null" + CommunityTopic: + type: + - object + - "null" + properties: + view: + type: + - boolean + - "null" + accounts: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + agents: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + overview: + type: + - boolean + - "null" + viewAllFields: + type: + - boolean + - "null" + calls: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + chat: + type: + - object + - "null" + properties: + view: + type: + - boolean + - "null" + comments: + type: + - object + - "null" + properties: + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + community: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + moderate: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + contacts: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + contracts: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + crmInteg: + type: + - object + - "null" + properties: + crmAccountsActivityCalls: + type: + - boolean + - "null" + crmAccountsActivityEvents: + type: + - boolean + - "null" + crmAccountsActivityTasks: + type: + - boolean + - "null" + crmAccountsInfo: + type: + - boolean + - "null" + crmAccountsNotes: + type: + - boolean + - "null" + crmAccountsPotentials: + type: + - boolean + - "null" + crmContactsActivityCalls: + type: + - boolean + - "null" + crmContactsActivityEvents: + type: + - boolean + - "null" + crmContactsActivityTasks: + type: + - boolean + - "null" + crmContactsInfo: + type: + - boolean + - "null" + crmContactsNotes: + type: + - boolean + - "null" + crmContactsPotentials: + type: + - boolean + - "null" + events: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + financeInteg: + type: + - object + - "null" + properties: + createContact: + type: + - boolean + - "null" + createEstimate: + type: + - boolean + - "null" + createInvoice: + type: + - boolean + - "null" + createSalesOrder: + type: + - boolean + - "null" + sendEstimate: + type: + - boolean + - "null" + sendInvoice: + type: + - boolean + - "null" + sendSalesOrder: + type: + - boolean + - "null" + viewEstimate: + type: + - boolean + - "null" + viewInvoice: + type: + - boolean + - "null" + viewSalesOrder: + type: + - boolean + - "null" + viewSubscription: + type: + - boolean + - "null" + gc: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + im: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + kbCategory: + type: + - object + - "null" + properties: + admin: + type: + - boolean + - "null" + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + editAllArticles: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + manageKB: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + mobileapp: + type: + - object + - "null" + properties: + deskapp: + type: + - boolean + - "null" + radar: + type: + - boolean + - "null" + products: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + reports: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + setup: + type: + - object + - "null" + properties: + automation: + type: + - boolean + - "null" + buttons: + type: + - boolean + - "null" + chat: + type: + - boolean + - "null" + community: + type: + - boolean + - "null" + customerHappiness: + type: + - boolean + - "null" + department: + type: + - boolean + - "null" + email: + type: + - boolean + - "null" + exportPortalUsers: + type: + - boolean + - "null" + exportUsers: + type: + - boolean + - "null" + featureConfig: + type: + - boolean + - "null" + gamification: + type: + - boolean + - "null" + googleAnalytics: + type: + - boolean + - "null" + im: + type: + - boolean + - "null" + importHistory: + type: + - boolean + - "null" + layouts: + type: + - boolean + - "null" + localization: + type: + - boolean + - "null" + manageAgents: + type: + - boolean + - "null" + manageMarketplace: + type: + - boolean + - "null" + managerDashboard: + type: + - boolean + - "null" + massReply: + type: + - boolean + - "null" + permission: + type: + - boolean + - "null" + pinnedConversations: + type: + - boolean + - "null" + portal: + type: + - boolean + - "null" + portalUsers: + type: + - boolean + - "null" + privacySettings: + type: + - boolean + - "null" + rebranding: + type: + - boolean + - "null" + recycleBin: + type: + - boolean + - "null" + sandbox: + type: + - boolean + - "null" + securitySettings: + type: + - boolean + - "null" + shareSnippet: + type: + - boolean + - "null" + signUpApproval: + type: + - boolean + - "null" + social: + type: + - boolean + - "null" + tabsAndFields: + type: + - boolean + - "null" + teams: + type: + - boolean + - "null" + telephony: + type: + - boolean + - "null" + templates: + type: + - boolean + - "null" + timeTracking: + type: + - boolean + - "null" + webForm: + type: + - boolean + - "null" + webhooks: + type: + - boolean + - "null" + social: + type: + - object + - "null" + properties: + twitterConversationReply: + type: + - boolean + - "null" + twitterPostCreate: + type: + - boolean + - "null" + twitterPostDelete: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + tasks: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + tickets: + type: + - object + - "null" + properties: + addFollowers: + type: + - boolean + - "null" + changeOwner: + type: + - boolean + - "null" + closeTicket: + type: + - boolean + - "null" + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + deleteTags: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + editTags: + type: + - boolean + - "null" + export: + type: + - boolean + - "null" + handleUnassigned: + type: + - boolean + - "null" + import: + type: + - boolean + - "null" + mailReview: + type: + - boolean + - "null" + mailSend: + type: + - boolean + - "null" + mergeTickets: + type: + - boolean + - "null" + revokeBlueprint: + type: + - boolean + - "null" + unassignedChangeOwner: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + timeEntry: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + zia: + type: + - object + - "null" + properties: + create: + type: + - boolean + - "null" + delete: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + view: + type: + - boolean + - "null" + required: + - id + list_roles: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + id: + type: string + immediateSubRoles: + type: + - array + - "null" + items: + type: + - string + - "null" + isDefault: + type: + - boolean + - "null" + isVisible: + type: + - boolean + - "null" + name: + type: + - string + - "null" + reportsTo: + type: + - string + - "null" + shareDataWithPeers: + type: + - boolean + - "null" + required: + - id + teams: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + agents: + type: + - array + - "null" + items: + type: + - string + - "null" + departmentId: + type: + - string + - "null" + derivedAgents: + type: + - array + - "null" + items: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + roles: + type: + - array + - "null" + rolesWithSubordinates: + type: + - array + - "null" + subTeams: + type: + - array + - "null" + required: + - id + team_members: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + emailId: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: string + lastName: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + profileId: + type: + - string + - "null" + roleId: + type: + - string + - "null" + zuid: + type: + - string + - "null" + required: + - id + list_departments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + data: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + chatStatus: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + creatorId: + type: + - string + - "null" + hasLogo: + type: + - boolean + - "null" + id: + type: + - string + - "null" + isAssignToTeamEnabled: + type: + - boolean + - "null" + isDefault: + type: + - boolean + - "null" + isEnabled: + type: + - boolean + - "null" + isVisibleInCustomerPortal: + type: + - boolean + - "null" + name: + type: + - string + - "null" + nameInCustomerPortal: + type: + - string + - "null" + sanitizedName: + type: + - string + - "null" + channels: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + acceptsReplies: + type: + - boolean + - "null" + code: + type: string + name: + type: + - string + - "null" + replyConfig: + type: + - object + - "null" + properties: + acceptsAttachments: + type: + - boolean + - "null" + contentTypes: + type: + - array + - "null" + items: + type: + - string + - "null" + includeQuotedMessage: + type: + - boolean + - "null" + updateRecords: + type: + - boolean + - "null" + required: + - code + list_tickets: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + assigneeId: + type: + - string + - "null" + channel: + type: + - string + - "null" + commentCount: + type: + - string + - "null" + contactId: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + customerResponseTime: + type: + - string + - "null" + departmentId: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + email: + type: + - string + - "null" + id: + type: string + isArchived: + type: + - boolean + - "null" + isSpam: + type: + - boolean + - "null" + language: + type: + - string + - "null" + lastThread: + type: + - object + - "null" + properties: + channel: + type: + - string + - "null" + direction: + type: + - string + - "null" + isDraft: + type: + - boolean + - "null" + isForward: + type: + - boolean + - "null" + layoutId: + type: + - string + - "null" + phone: + type: + - string + - "null" + productId: + type: + - string + - "null" + source: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + status: + type: + - string + - "null" + statusType: + type: + - string + - "null" + subject: + type: + - string + - "null" + threadCount: + type: + - string + - "null" + ticketNumber: + type: + - string + - "null" + webUrl: + type: + - string + - "null" + required: + - id + list_all_threads: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + actions: + type: + - array + - "null" + attachmentCount: + type: + - string + - "null" + author: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + email: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: + - string + - "null" + lastName: + type: + - string + - "null" + name: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + bcc: + type: + - string + - "null" + canReply: + type: + - boolean + - "null" + cc: + type: + - string + - "null" + channel: + type: + - string + - "null" + contentType: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + direction: + type: + - string + - "null" + fromEmailAddress: + type: + - string + - "null" + hasAttach: + type: + - boolean + - "null" + id: + type: string + isDescriptionThread: + type: + - boolean + - "null" + isForward: + type: + - boolean + - "null" + respondedIn: + type: + - string + - "null" + responderId: + type: + - string + - "null" + source: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + status: + type: + - string + - "null" + summary: + type: + - string + - "null" + to: + type: + - string + - "null" + visibility: + type: + - string + - "null" + required: + - id + get_latest_thread: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + actions: + type: + - array + - "null" + attachmentCount: + type: + - string + - "null" + attachments: + type: + - array + - "null" + author: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + email: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: + - string + - "null" + lastName: + type: + - string + - "null" + name: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + bcc: + type: + - string + - "null" + canReply: + type: + - boolean + - "null" + cc: + type: + - string + - "null" + channel: + type: + - string + - "null" + content: + type: + - string + - "null" + contentType: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + direction: + type: + - string + - "null" + fromEmailAddress: + type: + - string + - "null" + hasAttach: + type: + - boolean + - "null" + id: + type: string + isContentTruncated: + type: + - boolean + - "null" + isDescriptionThread: + type: + - boolean + - "null" + isForward: + type: + - boolean + - "null" + replyTo: + type: + - string + - "null" + responderId: + type: + - string + - "null" + source: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + status: + type: + - string + - "null" + summary: + type: + - string + - "null" + to: + type: + - string + - "null" + visibility: + type: + - string + - "null" + required: + - id + list_contacts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accountCount: + type: + - string + - "null" + accountId: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + customerHappiness: + type: + - object + - "null" + properties: + badPercentage: + type: + - string + - "null" + goodPercentage: + type: + - string + - "null" + okPercentage: + type: + - string + - "null" + email: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: string + isAnonymous: + type: + - boolean + - "null" + isEndUser: + type: + - boolean + - "null" + isSpam: + type: + - boolean + - "null" + lastName: + type: + - string + - "null" + mobile: + type: + - string + - "null" + ownerId: + type: + - string + - "null" + phone: + type: + - string + - "null" + webUrl: + type: + - string + - "null" + required: + - id + webhooks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + createdBy: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + id: + type: + - string + - "null" + ignoreSourceId: + type: + - string + - "null" + isEnabled: + type: + - boolean + - "null" + modifiedTime: + type: + - string + - "null" + name: + type: + - string + - "null" + subscriptions: + type: + - object + - "null" + properties: {} + url: + type: + - string + - "null" + list_accounts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accountName: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + customerHappiness: + type: + - object + - "null" + properties: + badPercentage: + type: + - string + - "null" + goodPercentage: + type: + - string + - "null" + okPercentage: + type: + - string + - "null" + email: + type: + - string + - "null" + id: + type: string + phone: + type: + - string + - "null" + webUrl: + type: + - string + - "null" + website: + type: + - string + - "null" + required: + - id + list_contracts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accountId: + type: + - string + - "null" + associatedSLAId: + type: + - string + - "null" + contractName: + type: + - string + - "null" + contractStatus: + type: + - string + - "null" + departmentId: + type: + - string + - "null" + id: + type: string + slaName: + type: + - string + - "null" + startDate: + type: + - string + - "null" + supportPlan: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + status: + type: + - string + - "null" + supportType: + type: + - string + - "null" + required: + - id + list_tasks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + activityTime: + type: + - string + - "null" + contactId: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + creatorId: + type: + - string + - "null" + departmentId: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + id: + type: string + isCommented: + type: + - boolean + - "null" + isSpam: + type: + - boolean + - "null" + isTrashed: + type: + - boolean + - "null" + layoutId: + type: + - string + - "null" + modifiedBy: + type: + - object + - "null" + properties: + emailId: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: + - string + - "null" + lastName: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + modifiedTime: + type: + - string + - "null" + ownerId: + type: + - string + - "null" + priority: + type: + - string + - "null" + status: + type: + - string + - "null" + statusType: + type: + - string + - "null" + subject: + type: + - string + - "null" + ticketId: + type: + - string + - "null" + webUrl: + type: + - string + - "null" + required: + - id + list_products: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: string + productCode: + type: + - string + - "null" + productName: + type: + - string + - "null" + unitPrice: + type: + - string + - "null" + required: + - id + list_articles: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attachmentCount: + type: + - string + - "null" + author: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + status: + type: + - string + - "null" + zuid: + type: + - string + - "null" + authorId: + type: + - string + - "null" + availableLocaleTranslations: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + authorId: + type: + - string + - "null" + href: + type: + - string + - "null" + isLocked: + type: + - boolean + - "null" + isTrashed: + type: + - boolean + - "null" + latestPublishedVersion: + type: + - string + - "null" + latestVersion: + type: + - string + - "null" + latestVersionStatus: + type: + - string + - "null" + locale: + type: + - string + - "null" + status: + type: + - string + - "null" + translationId: + type: + - string + - "null" + translationState: + type: + - string + - "null" + category: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + locale: + type: + - string + - "null" + name: + type: + - string + - "null" + categoryId: + type: + - string + - "null" + commentCount: + type: + - string + - "null" + createdBy: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + status: + type: + - string + - "null" + zuid: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + creatorId: + type: + - string + - "null" + departmentId: + type: + - string + - "null" + dislikeCount: + type: + - string + - "null" + feedbackCount: + type: + - string + - "null" + id: + type: string + isLocked: + type: + - boolean + - "null" + isTrashed: + type: + - boolean + - "null" + latestPublishedVersion: + type: + - string + - "null" + latestVersion: + type: + - string + - "null" + latestVersionModifiedBy: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + status: + type: + - string + - "null" + zuid: + type: + - string + - "null" + latestVersionModifierId: + type: + - string + - "null" + latestVersionStatus: + type: + - string + - "null" + likeCount: + type: + - string + - "null" + locale: + type: + - string + - "null" + modifiedBy: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + status: + type: + - string + - "null" + zuid: + type: + - string + - "null" + modifiedTime: + type: + - string + - "null" + modifierId: + type: + - string + - "null" + owner: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + status: + type: + - string + - "null" + zuid: + type: + - string + - "null" + ownerId: + type: + - string + - "null" + permalink: + type: + - string + - "null" + permission: + type: + - string + - "null" + portalUrl: + type: + - string + - "null" + position: + type: + - string + - "null" + rootCategoryId: + type: + - string + - "null" + sourceLocale: + type: + - string + - "null" + status: + type: + - string + - "null" + summary: + type: + - string + - "null" + title: + type: + - string + - "null" + translationId: + type: + - string + - "null" + translationState: + type: + - string + - "null" + usageCount: + type: + - string + - "null" + viewCount: + type: + - string + - "null" + webUrl: + type: + - string + - "null" + required: + - id + list_events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + activityTime: + type: + - string + - "null" + category: + type: + - string + - "null" + contactId: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + creatorId: + type: + - string + - "null" + departmentId: + type: + - string + - "null" + id: + type: string + isCommented: + type: + - boolean + - "null" + isSpam: + type: + - boolean + - "null" + isTrashed: + type: + - boolean + - "null" + layoutId: + type: + - string + - "null" + modifiedBy: + type: + - object + - "null" + properties: + emailId: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: + - string + - "null" + lastName: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + modifiedTime: + type: + - string + - "null" + ownerId: + type: + - string + - "null" + priority: + type: + - string + - "null" + startTime: + type: + - string + - "null" + status: + type: + - string + - "null" + statusType: + type: + - string + - "null" + subject: + type: + - string + - "null" + webUrl: + type: + - string + - "null" + required: + - id + modules: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + apiName: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + displayLabel: + type: + - string + - "null" + hasRecycleBin: + type: + - boolean + - "null" + id: + type: string + isCustomModule: + type: + - boolean + - "null" + isDeptSpecific: + type: + - boolean + - "null" + modifiedTime: + type: + - string + - "null" + nameField: + type: + - string + - "null" + pluralLabel: + type: + - string + - "null" + singularLabel: + type: + - string + - "null" + required: + - id + list_users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + emailAddress: + type: + - string + - "null" + id: + type: string + lastAccessedTime: + type: + - string + - "null" + name: + type: + - string + - "null" + status: + type: + - string + - "null" + userType: + type: + - string + - "null" + required: + - id + ticket_activities: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + activityTime: + type: + - string + - "null" + activityType: + type: + - string + - "null" + completedTime: + type: + - string + - "null" + contactId: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + creatorId: + type: + - string + - "null" + departmentId: + type: + - string + - "null" + direction: + type: + - string + - "null" + dueDate: + type: + - string + - "null" + id: + type: string + isCommented: + type: + - boolean + - "null" + isSpam: + type: + - boolean + - "null" + isTrashed: + type: + - boolean + - "null" + layoutId: + type: + - string + - "null" + modifiedBy: + type: + - object + - "null" + properties: + emailId: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: + - string + - "null" + lastName: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + modifiedTime: + type: + - string + - "null" + ownerId: + type: + - string + - "null" + priority: + type: + - string + - "null" + startTime: + type: + - string + - "null" + status: + type: + - string + - "null" + statusType: + type: + - string + - "null" + subject: + type: + - string + - "null" + ticketId: + type: + - string + - "null" + webUrl: + type: + - string + - "null" + required: + - id + list_attachments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + data: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + createdTime: + type: + - string + - "null" + creatorId: + type: + - string + - "null" + href: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + size: + type: + - string + - "null" + product: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + cf: + type: + - object + - "null" + createdBy: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + customFields: + type: + - object + - "null" + departmentIds: + type: + - array + - "null" + items: + type: + - string + - "null" + id: + type: string + isDeleted: + type: + - boolean + - "null" + layoutDetails: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + layoutName: + type: + - string + - "null" + layoutId: + type: + - string + - "null" + modifiedBy: + type: + - string + - "null" + modifiedTime: + type: + - string + - "null" + ownerId: + type: + - string + - "null" + productCategory: + type: + - string + - "null" + productCode: + type: + - string + - "null" + productName: + type: + - string + - "null" + unitPrice: + type: + - string + - "null" + required: + - id + task_attachments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + createdTime: + type: + - string + - "null" + creatorId: + type: + - string + - "null" + href: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + size: + type: + - string + - "null" + required: + - id + list_calls: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + activityTime: + type: + - string + - "null" + completedTime: + type: + - string + - "null" + contactId: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + creatorId: + type: + - string + - "null" + departmentId: + type: + - string + - "null" + direction: + type: + - string + - "null" + id: + type: string + isCommented: + type: + - boolean + - "null" + isSpam: + type: + - boolean + - "null" + isTrashed: + type: + - boolean + - "null" + layoutId: + type: + - string + - "null" + modifiedBy: + type: + - object + - "null" + properties: + emailId: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: + - string + - "null" + lastName: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + modifiedTime: + type: + - string + - "null" + ownerId: + type: + - string + - "null" + priority: + type: + - string + - "null" + startTime: + type: + - string + - "null" + status: + type: + - string + - "null" + statusType: + type: + - string + - "null" + subject: + type: + - string + - "null" + ticketId: + type: + - string + - "null" + webUrl: + type: + - string + - "null" + required: + - id + call: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + activityTime: + type: + - string + - "null" + cf: + type: + - object + - "null" + completedTime: + type: + - string + - "null" + contactId: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + creatorId: + type: + - string + - "null" + customFields: + type: + - object + - "null" + departmentId: + type: + - string + - "null" + direction: + type: + - string + - "null" + duration: + type: + - string + - "null" + id: + type: string + isSpam: + type: + - boolean + - "null" + isTrashed: + type: + - boolean + - "null" + layoutId: + type: + - string + - "null" + modifiedBy: + type: + - object + - "null" + properties: + emailId: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: + - string + - "null" + lastName: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + modifiedTime: + type: + - string + - "null" + ownerId: + type: + - string + - "null" + priority: + type: + - string + - "null" + startTime: + type: + - string + - "null" + status: + type: + - string + - "null" + statusType: + type: + - string + - "null" + subject: + type: + - string + - "null" + ticketId: + type: + - string + - "null" + webUrl: + type: + - string + - "null" + required: + - id + list_call_comments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attachments: + type: + - array + - "null" + commentedTime: + type: + - string + - "null" + commenter: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + email: + type: + - string + - "null" + firstName: + type: + - string + - "null" + id: + type: + - string + - "null" + lastName: + type: + - string + - "null" + name: + type: + - string + - "null" + photoURL: + type: + - string + - "null" + roleName: + type: + - string + - "null" + commenterId: + type: + - string + - "null" + content: + type: + - string + - "null" + contentType: + type: + - string + - "null" + encodedContent: + type: + - string + - "null" + id: + type: string + modifiedTime: + type: + - string + - "null" + required: + - id + dashboard_created_tickets: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + avg: + type: + - string + - "null" + groupedBy: + type: + - string + - "null" + ticketCount: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + count: + type: + - string + - "null" + value: + type: + - string + - "null" + totalTicketCount: + type: + - string + - "null" + list_user_groups: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + addedTime: + type: + - string + - "null" + helpCenterId: + type: + - string + - "null" + id: + type: string + logoUrl: + type: + - string + - "null" + name: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + dashboard_onhold_tickets: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + count: + type: + - string + - "null" + value: + type: string + required: + - value diff --git a/airbyte-integrations/connectors/source-zoho-desk/metadata.yaml b/airbyte-integrations/connectors/source-zoho-desk/metadata.yaml new file mode 100644 index 000000000000..5ea207a528e4 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-desk/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "desk.zoho.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-zoho-desk + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + connectorSubtype: api + connectorType: source + definitionId: 08164461-a3fd-49d5-8185-b83d51013585 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-zoho-desk + githubIssueLabel: source-zoho-desk + icon: icon.svg + license: MIT + name: Zoho Desk + releaseDate: 2024-10-28 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/zoho-desk + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/zoho-desk.md b/docs/integrations/sources/zoho-desk.md new file mode 100644 index 000000000000..fd7c752a4bb9 --- /dev/null +++ b/docs/integrations/sources/zoho-desk.md @@ -0,0 +1,62 @@ +# Zoho Desk +This directory contains the manifest-only connector for source-zoho-desk + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `client_id` | `string` | Client ID. | | +| `client_secret` | `string` | Client secret. | | +| `token_refresh_endpoint` | `string` | Token Refresh Endpoint. | | +| `refresh_token` | `string` | OAuth Refresh Token. | | +| `include_custom_domain` | `boolean` | include Custom Domain. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| organization | id | No pagination | ✅ | ❌ | +| all_organizations | id | No pagination | ✅ | ❌ | +| accessible_organizations | | No pagination | ✅ | ❌ | +| agent | | No pagination | ✅ | ❌ | +| list_agents | id | DefaultPaginator | ✅ | ❌ | +| agent_details_by_id | id | No pagination | ✅ | ❌ | +| profiles | id | No pagination | ✅ | ❌ | +| list_roles | id | DefaultPaginator | ✅ | ❌ | +| teams | id | No pagination | ✅ | ❌ | +| team_members | id | No pagination | ✅ | ❌ | +| list_departments | | DefaultPaginator | ✅ | ❌ | +| channels | code | No pagination | ✅ | ❌ | +| list_tickets | id | DefaultPaginator | ✅ | ❌ | +| list_all_threads | id | DefaultPaginator | ✅ | ❌ | +| get_latest_thread | id | No pagination | ✅ | ❌ | +| list_contacts | id | DefaultPaginator | ✅ | ❌ | +| webhooks | | No pagination | ✅ | ❌ | +| list_accounts | id | DefaultPaginator | ✅ | ❌ | +| list_contracts | id | DefaultPaginator | ✅ | ❌ | +| list_tasks | id | DefaultPaginator | ✅ | ❌ | +| list_products | id | DefaultPaginator | ✅ | ❌ | +| list_articles | id | No pagination | ✅ | ❌ | +| list_events | id | DefaultPaginator | ✅ | ❌ | +| modules | id | No pagination | ✅ | ❌ | +| list_users | id | DefaultPaginator | ✅ | ❌ | +| ticket_activities | id | DefaultPaginator | ✅ | ❌ | +| list_attachments | | DefaultPaginator | ✅ | ❌ | +| product | id | No pagination | ✅ | ❌ | +| task_attachments | id | DefaultPaginator | ✅ | ❌ | +| list_calls | id | DefaultPaginator | ✅ | ❌ | +| call | id | No pagination | ✅ | ❌ | +| list_call_comments | id | DefaultPaginator | ✅ | ❌ | +| dashboard_created_tickets | | No pagination | ✅ | ❌ | +| list_user_groups | id | DefaultPaginator | ✅ | ❌ | +| dashboard_onhold_tickets | value | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-28 | [46863](https://github.com/airbytehq/airbyte/pull/46863) | Initial release by [@itsxdamdam](https://github.com/itsxdamdam) via Connector Builder | + +
From c42ffce3024d57fc2ab1d79f70de83ca8fa4f637 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:33:02 +0200 Subject: [PATCH 616/808] =?UTF-8?q?=F0=9F=90=99=20destination-cumulio:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-04]=20(#47029)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-cumulio/metadata.yaml | 2 +- .../destination-cumulio/poetry.lock | 136 +++++++++--------- .../destination-cumulio/pyproject.toml | 2 +- docs/integrations/destinations/cumulio.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/destination-cumulio/metadata.yaml b/airbyte-integrations/connectors/destination-cumulio/metadata.yaml index b24b2e3a99eb..b5e6d328814d 100644 --- a/airbyte-integrations/connectors/destination-cumulio/metadata.yaml +++ b/airbyte-integrations/connectors/destination-cumulio/metadata.yaml @@ -1,7 +1,7 @@ data: connectorType: destination definitionId: e088acb6-9780-4568-880c-54c2dd7f431b - dockerImageTag: 0.1.23 + dockerImageTag: 0.1.24 dockerRepository: airbyte/destination-cumulio githubIssueLabel: destination-cumulio connectorSubtype: api diff --git a/airbyte-integrations/connectors/destination-cumulio/poetry.lock b/airbyte-integrations/connectors/destination-cumulio/poetry.lock index e6de97a1c9e7..df205a0ca366 100644 --- a/airbyte-integrations/connectors/destination-cumulio/poetry.lock +++ b/airbyte-integrations/connectors/destination-cumulio/poetry.lock @@ -421,72 +421,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -842,23 +842,23 @@ yaml = ["pyyaml (>=6.0.1)"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-cumulio/pyproject.toml b/airbyte-integrations/connectors/destination-cumulio/pyproject.toml index ed7e67eabf40..6a483b28b9a2 100644 --- a/airbyte-integrations/connectors/destination-cumulio/pyproject.toml +++ b/airbyte-integrations/connectors/destination-cumulio/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.23" +version = "0.1.24" name = "destination-cumulio" description = "Airbyte destination connector implementation for Cumul.io." authors = [ "Cumul.io ",] diff --git a/docs/integrations/destinations/cumulio.md b/docs/integrations/destinations/cumulio.md index 27ac0ac96c92..6d246600dd1e 100644 --- a/docs/integrations/destinations/cumulio.md +++ b/docs/integrations/destinations/cumulio.md @@ -161,6 +161,7 @@ data less frequently** rather than _smaller amounts of data more frequently_! | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :-------------------------------------------------- | +| 0.1.24 | 2024-11-04 | [47029](https://github.com/airbytehq/airbyte/pull/47029) | Update dependencies | | 0.1.23 | 2024-10-12 | [46816](https://github.com/airbytehq/airbyte/pull/46816) | Update dependencies | | 0.1.22 | 2024-10-05 | [46445](https://github.com/airbytehq/airbyte/pull/46445) | Update dependencies | | 0.1.21 | 2024-09-28 | [46201](https://github.com/airbytehq/airbyte/pull/46201) | Update dependencies | From f0e18580d210357b54b14384ab9e9515a3865926 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 00:33:27 +0200 Subject: [PATCH 617/808] =?UTF-8?q?=F0=9F=90=99=20source-sentry:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#43855)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sentry/metadata.yaml | 2 +- .../connectors/source-sentry/poetry.lock | 259 +++++++++--------- .../connectors/source-sentry/pyproject.toml | 2 +- docs/integrations/sources/sentry.md | 55 ++-- 4 files changed, 167 insertions(+), 151 deletions(-) diff --git a/airbyte-integrations/connectors/source-sentry/metadata.yaml b/airbyte-integrations/connectors/source-sentry/metadata.yaml index 35c1e1961fec..f94e94457972 100644 --- a/airbyte-integrations/connectors/source-sentry/metadata.yaml +++ b/airbyte-integrations/connectors/source-sentry/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: cdaf146a-9b75-49fd-9dd2-9d64a0bb4781 - dockerImageTag: 0.6.0 + dockerImageTag: 0.6.1 dockerRepository: airbyte/source-sentry documentationUrl: https://docs.airbyte.com/integrations/sources/sentry githubIssueLabel: source-sentry diff --git a/airbyte-integrations/connectors/source-sentry/poetry.lock b/airbyte-integrations/connectors/source-sentry/poetry.lock index e42fe59c49ee..d28c3a50e15f 100644 --- a/airbyte-integrations/connectors/source-sentry/poetry.lock +++ b/airbyte-integrations/connectors/source-sentry/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "6.0.0" +version = "6.1.1" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-6.0.0-py3-none-any.whl", hash = "sha256:c0d317202b73655307089fd43571444fcd14e68a97c826763bf0b76fb018d5a4"}, - {file = "airbyte_cdk-6.0.0.tar.gz", hash = "sha256:ebedcfb431cc229427f0526b16a639ffafb3e153fbacadf4c859415d702c7e85"}, + {file = "airbyte_cdk-6.1.1-py3-none-any.whl", hash = "sha256:f2b93260d34549031ca174bed55d345cf493fd8822790cc72c6c413682885313"}, + {file = "airbyte_cdk-6.1.1.tar.gz", hash = "sha256:6506b09d3f33381b30507ccc1f9e6346892b1a958489df92470c0e5751ef695c"}, ] [package.dependencies] @@ -25,9 +25,11 @@ jsonref = ">=0.2,<0.3" jsonschema = ">=3.2.0,<3.3.0" langchain_core = "0.1.42" nltk = "3.8.1" +numpy = "<2" orjson = ">=3.10.7,<4.0.0" pandas = "2.2.2" pendulum = "<3.0.0" +psutil = "6.1.0" pydantic = ">=2.7,<3.0" pyjwt = ">=2.8.0,<3.0.0" pyrate-limiter = ">=3.1.0,<3.2.0" @@ -729,13 +731,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -842,131 +844,114 @@ twitter = ["twython"] [[package]] name = "numpy" -version = "2.1.2" +version = "1.26.4" description = "Fundamental package for array computing in Python" optional = false -python-versions = ">=3.10" -files = [ - {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, - {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, - {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, - {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, - {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, - {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, - {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, - {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, - {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, - {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, +python-versions = ">=3.9" +files = [ + {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, + {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, + {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, + {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, + {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, + {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, + {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, + {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, + {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, + {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, + {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, ] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1117,6 +1102,36 @@ files = [ dev = ["pre-commit", "tox"] testing = ["pytest", "pytest-benchmark"] +[[package]] +name = "psutil" +version = "6.1.0" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"}, + {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"}, + {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"}, + {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"}, + {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"}, + {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"}, + {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"}, + {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"}, +] + +[package.extras] +dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"] +test = ["pytest", "pytest-xdist", "setuptools"] + [[package]] name = "py" version = "1.11.0" diff --git a/airbyte-integrations/connectors/source-sentry/pyproject.toml b/airbyte-integrations/connectors/source-sentry/pyproject.toml index 374a7c121bab..8f0287d3f44d 100644 --- a/airbyte-integrations/connectors/source-sentry/pyproject.toml +++ b/airbyte-integrations/connectors/source-sentry/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.0" +version = "0.6.1" name = "source-sentry" description = "Source implementation for Sentry." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/sentry.md b/docs/integrations/sources/sentry.md index c9cb965c110d..9c78ce07586d 100644 --- a/docs/integrations/sources/sentry.md +++ b/docs/integrations/sources/sentry.md @@ -65,32 +65,33 @@ Please be aware: this also means that any change older than 90 days will not be | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------| -| 0.6.0 | 2024-10-30 | [47988](https://github.com/airbytehq/airbyte/pull/47988) | Upgrade the CDK and startup files to sync incremental streams concurrently | -| 0.5.3 | 2024-06-06 | [39180](https://github.com/airbytehq/airbyte/pull/39180) | [autopull] Upgrade base image to v1.2.2 | -| 0.5.2 | 2024-05-20 | [38263](https://github.com/airbytehq/airbyte/pull/38263) | Replace AirbyteLogger with logging.Logger | -| 0.5.1 | 2024-04-01 | [36731](https://github.com/airbytehq/airbyte/pull/36731) | Add `%Y-%m-%dT%H:%M:%S%z` to date time formats. | -| 0.5.0 | 2024-03-27 | [35755](https://github.com/airbytehq/airbyte/pull/35755) | Migrate to low-code. | -| 0.4.2 | 2024-03-25 | [36448](https://github.com/airbytehq/airbyte/pull/36448) | Unpin CDK version | -| 0.4.1 | 2024-02-12 | [35145](https://github.com/airbytehq/airbyte/pull/35145) | Manage dependencies with Poetry | -| 0.4.0 | 2024-01-05 | [32957](https://github.com/airbytehq/airbyte/pull/32957) | Added undeclared fields to schema and migrated to base image | -| 0.3.0 | 2023-09-05 | [30192](https://github.com/airbytehq/airbyte/pull/30192) | Added undeclared fields to schema | -| 0.2.4 | 2023-08-14 | [29401](https://github.com/airbytehq/airbyte/pull/29401) | Fix `null` value in stream state | -| 0.2.3 | 2023-08-03 | [29023](https://github.com/airbytehq/airbyte/pull/29023) | Add incremental for `issues` stream | -| 0.2.2 | 2023-05-02 | [25759](https://github.com/airbytehq/airbyte/pull/25759) | Change stream that used in check_connection | -| 0.2.1 | 2023-04-27 | [25602](https://github.com/airbytehq/airbyte/pull/25602) | Add validation of project and organization names during connector setup | -| 0.2.0 | 2023-04-03 | [23923](https://github.com/airbytehq/airbyte/pull/23923) | Add Releases stream | -| 0.1.12 | 2023-03-01 | [23619](https://github.com/airbytehq/airbyte/pull/23619) | Fix bug when `stream state` is `None` or any other bad value occurs | -| 0.1.11 | 2023-02-02 | [22303](https://github.com/airbytehq/airbyte/pull/22303) | Turn ON default AvailabilityStrategy | -| 0.1.10 | 2023-01-27 | [22041](https://github.com/airbytehq/airbyte/pull/22041) | Set `AvailabilityStrategy` for streams explicitly to `None` | -| 0.1.9 | 2022-12-20 | [21864](https://github.com/airbytehq/airbyte/pull/21864) | Add state persistence to incremental sync | -| 0.1.8 | 2022-12-20 | [20709](https://github.com/airbytehq/airbyte/pull/20709) | Add incremental sync | -| 0.1.7 | 2022-09-30 | [17466](https://github.com/airbytehq/airbyte/pull/17466) | Migrate to per-stream states | -| 0.1.6 | 2022-08-29 | [16112](https://github.com/airbytehq/airbyte/pull/16112) | Revert back to the Python CDK | -| 0.1.5 | 2022-08-24 | [15911](https://github.com/airbytehq/airbyte/pull/15911) | Bugfix to allowing reading schemas at runtime | -| 0.1.4 | 2022-08-19 | [15800](https://github.com/airbytehq/airbyte/pull/15800) | Bugfix to allow reading sentry.yaml at runtime | -| 0.1.3 | 2022-08-17 | [15734](https://github.com/airbytehq/airbyte/pull/15734) | Fix yaml based on the new schema validator | -| 0.1.2 | 2021-12-28 | [15345](https://github.com/airbytehq/airbyte/pull/15345) | Migrate to config-based framework | -| 0.1.1 | 2021-12-28 | [8628](https://github.com/airbytehq/airbyte/pull/8628) | Update fields in source-connectors specifications | -| 0.1.0 | 2021-10-12 | [6975](https://github.com/airbytehq/airbyte/pull/6975) | New Source: Sentry | +| 0.6.1 | 2024-11-04 | [43855](https://github.com/airbytehq/airbyte/pull/43855) | Update dependencies | +| 0.6.0 | 2024-10-30 | [47988](https://github.com/airbytehq/airbyte/pull/47988) | Upgrade the CDK and startup files to sync incremental streams concurrently | +| 0.5.3 | 2024-06-06 | [39180](https://github.com/airbytehq/airbyte/pull/39180) | [autopull] Upgrade base image to v1.2.2 | +| 0.5.2 | 2024-05-20 | [38263](https://github.com/airbytehq/airbyte/pull/38263) | Replace AirbyteLogger with logging.Logger | +| 0.5.1 | 2024-04-01 | [36731](https://github.com/airbytehq/airbyte/pull/36731) | Add `%Y-%m-%dT%H:%M:%S%z` to date time formats. | +| 0.5.0 | 2024-03-27 | [35755](https://github.com/airbytehq/airbyte/pull/35755) | Migrate to low-code. | +| 0.4.2 | 2024-03-25 | [36448](https://github.com/airbytehq/airbyte/pull/36448) | Unpin CDK version | +| 0.4.1 | 2024-02-12 | [35145](https://github.com/airbytehq/airbyte/pull/35145) | Manage dependencies with Poetry | +| 0.4.0 | 2024-01-05 | [32957](https://github.com/airbytehq/airbyte/pull/32957) | Added undeclared fields to schema and migrated to base image | +| 0.3.0 | 2023-09-05 | [30192](https://github.com/airbytehq/airbyte/pull/30192) | Added undeclared fields to schema | +| 0.2.4 | 2023-08-14 | [29401](https://github.com/airbytehq/airbyte/pull/29401) | Fix `null` value in stream state | +| 0.2.3 | 2023-08-03 | [29023](https://github.com/airbytehq/airbyte/pull/29023) | Add incremental for `issues` stream | +| 0.2.2 | 2023-05-02 | [25759](https://github.com/airbytehq/airbyte/pull/25759) | Change stream that used in check_connection | +| 0.2.1 | 2023-04-27 | [25602](https://github.com/airbytehq/airbyte/pull/25602) | Add validation of project and organization names during connector setup | +| 0.2.0 | 2023-04-03 | [23923](https://github.com/airbytehq/airbyte/pull/23923) | Add Releases stream | +| 0.1.12 | 2023-03-01 | [23619](https://github.com/airbytehq/airbyte/pull/23619) | Fix bug when `stream state` is `None` or any other bad value occurs | +| 0.1.11 | 2023-02-02 | [22303](https://github.com/airbytehq/airbyte/pull/22303) | Turn ON default AvailabilityStrategy | +| 0.1.10 | 2023-01-27 | [22041](https://github.com/airbytehq/airbyte/pull/22041) | Set `AvailabilityStrategy` for streams explicitly to `None` | +| 0.1.9 | 2022-12-20 | [21864](https://github.com/airbytehq/airbyte/pull/21864) | Add state persistence to incremental sync | +| 0.1.8 | 2022-12-20 | [20709](https://github.com/airbytehq/airbyte/pull/20709) | Add incremental sync | +| 0.1.7 | 2022-09-30 | [17466](https://github.com/airbytehq/airbyte/pull/17466) | Migrate to per-stream states | +| 0.1.6 | 2022-08-29 | [16112](https://github.com/airbytehq/airbyte/pull/16112) | Revert back to the Python CDK | +| 0.1.5 | 2022-08-24 | [15911](https://github.com/airbytehq/airbyte/pull/15911) | Bugfix to allowing reading schemas at runtime | +| 0.1.4 | 2022-08-19 | [15800](https://github.com/airbytehq/airbyte/pull/15800) | Bugfix to allow reading sentry.yaml at runtime | +| 0.1.3 | 2022-08-17 | [15734](https://github.com/airbytehq/airbyte/pull/15734) | Fix yaml based on the new schema validator | +| 0.1.2 | 2021-12-28 | [15345](https://github.com/airbytehq/airbyte/pull/15345) | Migrate to config-based framework | +| 0.1.1 | 2021-12-28 | [8628](https://github.com/airbytehq/airbyte/pull/8628) | Update fields in source-connectors specifications | +| 0.1.0 | 2021-10-12 | [6975](https://github.com/airbytehq/airbyte/pull/6975) | New Source: Sentry | From cea2537249404609b5b72fe3238896b8ab861b2d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:35:14 +0200 Subject: [PATCH 618/808] =?UTF-8?q?=F0=9F=90=99=20source-mention:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48258)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mention/metadata.yaml | 4 ++-- docs/integrations/sources/mention.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mention/metadata.yaml b/airbyte-integrations/connectors/source-mention/metadata.yaml index eca6df4e25fd..383b43c273d0 100644 --- a/airbyte-integrations/connectors/source-mention/metadata.yaml +++ b/airbyte-integrations/connectors/source-mention/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mention connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 1180b5a7-8658-4510-ba65-611191333ba8 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-mention githubIssueLabel: source-mention icon: icon.svg diff --git a/docs/integrations/sources/mention.md b/docs/integrations/sources/mention.md index 9ab8da6a0607..8f67b0e158c3 100644 --- a/docs/integrations/sources/mention.md +++ b/docs/integrations/sources/mention.md @@ -33,6 +33,7 @@ Docs: https://dev.mention.com/current/ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.4 | 2024-11-04 | [48258](https://github.com/airbytehq/airbyte/pull/48258) | Update dependencies | | 0.0.3 | 2024-10-29 | [47841](https://github.com/airbytehq/airbyte/pull/47841) | Update dependencies | | 0.0.2 | 2024-10-28 | [47538](https://github.com/airbytehq/airbyte/pull/47538) | Update dependencies | | 0.0.1 | 2024-10-23 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | From 4e499fa07fbd9657b4041563ad09b1b46c31cab4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:17 +0200 Subject: [PATCH 619/808] =?UTF-8?q?=F0=9F=90=99=20source-northpass-lms:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-11-04]=20(#48257)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-northpass-lms/metadata.yaml | 4 ++-- docs/integrations/sources/northpass-lms.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml b/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml index 25b144d5e912..7098f8ce3c79 100644 --- a/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml +++ b/airbyte-integrations/connectors/source-northpass-lms/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: dd4d317e-7537-456c-b6ba-264b17ce6daa - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-northpass-lms githubIssueLabel: source-northpass-lms icon: icon.svg diff --git a/docs/integrations/sources/northpass-lms.md b/docs/integrations/sources/northpass-lms.md index cadb26618ed3..940b39b82d0d 100644 --- a/docs/integrations/sources/northpass-lms.md +++ b/docs/integrations/sources/northpass-lms.md @@ -81,6 +81,7 @@ Link to Northpass LMS API documentation [here](https://developers.northpass.com/ | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 0.2.3 | 2024-11-04 | [48257](https://github.com/airbytehq/airbyte/pull/48257) | Update dependencies | | 0.2.2 | 2024-10-29 | [47863](https://github.com/airbytehq/airbyte/pull/47863) | Update dependencies | | 0.2.1 | 2024-10-28 | [47520](https://github.com/airbytehq/airbyte/pull/47520) | Update dependencies | | 0.2.0 | 2024-08-26 | [44771](https://github.com/airbytehq/airbyte/pull/44771) | Refactor connector to manifest-only format | From 3511cb3dc72751b10bd73aebc579beac62b7b3ff Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:22 +0200 Subject: [PATCH 620/808] =?UTF-8?q?=F0=9F=90=99=20source-veeqo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-11-04]=20(#48254)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-veeqo/metadata.yaml | 4 ++-- docs/integrations/sources/veeqo.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-veeqo/metadata.yaml b/airbyte-integrations/connectors/source-veeqo/metadata.yaml index 0ab7f6eebef5..86bbc93b5207 100644 --- a/airbyte-integrations/connectors/source-veeqo/metadata.yaml +++ b/airbyte-integrations/connectors/source-veeqo/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-veeqo connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: ae647c65-da81-4ae5-958a-86490ce53a5e - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-veeqo githubIssueLabel: source-veeqo icon: icon.svg diff --git a/docs/integrations/sources/veeqo.md b/docs/integrations/sources/veeqo.md index 75c165963284..b8d3eb1b48a5 100644 --- a/docs/integrations/sources/veeqo.md +++ b/docs/integrations/sources/veeqo.md @@ -30,6 +30,7 @@ Veeqo Airbyte connector for Veeqo enables seamless data integration between Veeq | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.4 | 2024-11-04 | [48254](https://github.com/airbytehq/airbyte/pull/48254) | Update dependencies | | 0.0.3 | 2024-10-29 | [47811](https://github.com/airbytehq/airbyte/pull/47811) | Update dependencies | | 0.0.2 | 2024-10-28 | [47488](https://github.com/airbytehq/airbyte/pull/47488) | Update dependencies | | 0.0.1 | 2024-10-17 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 1bdbe356057eed82fc3e8a020387fea789ba16fa Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:26 +0200 Subject: [PATCH 621/808] =?UTF-8?q?=F0=9F=90=99=20source-rss:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-11-04]=20(#48252)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rss/metadata.yaml | 2 +- .../connectors/source-rss/poetry.lock | 124 +++++++++--------- .../connectors/source-rss/pyproject.toml | 2 +- docs/integrations/sources/rss.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-rss/metadata.yaml b/airbyte-integrations/connectors/source-rss/metadata.yaml index a223dc0df961..d588d879e7dc 100644 --- a/airbyte-integrations/connectors/source-rss/metadata.yaml +++ b/airbyte-integrations/connectors/source-rss/metadata.yaml @@ -24,7 +24,7 @@ data: connectorSubtype: api connectorType: source definitionId: 0efee448-6948-49e2-b786-17db50647908 - dockerImageTag: 1.0.23 + dockerImageTag: 1.0.24 dockerRepository: airbyte/source-rss githubIssueLabel: source-rss icon: rss.svg diff --git a/airbyte-integrations/connectors/source-rss/poetry.lock b/airbyte-integrations/connectors/source-rss/poetry.lock index 8c1e317345cf..cf89eae36ec8 100644 --- a/airbyte-integrations/connectors/source-rss/poetry.lock +++ b/airbyte-integrations/connectors/source-rss/poetry.lock @@ -682,13 +682,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -770,69 +770,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-rss/pyproject.toml b/airbyte-integrations/connectors/source-rss/pyproject.toml index e0e3e8935ffe..80de4f8502c0 100644 --- a/airbyte-integrations/connectors/source-rss/pyproject.toml +++ b/airbyte-integrations/connectors/source-rss/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.23" +version = "1.0.24" name = "source-rss" description = "Source implementation for rss." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/rss.md b/docs/integrations/sources/rss.md index 485f5b5c13c2..da2799346ed5 100644 --- a/docs/integrations/sources/rss.md +++ b/docs/integrations/sources/rss.md @@ -38,6 +38,7 @@ None | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------- | +| 1.0.24 | 2024-11-04 | [48252](https://github.com/airbytehq/airbyte/pull/48252) | Update dependencies | | 1.0.23 | 2024-10-29 | [47104](https://github.com/airbytehq/airbyte/pull/47104) | Update dependencies | | 1.0.22 | 2024-10-12 | [46793](https://github.com/airbytehq/airbyte/pull/46793) | Update dependencies | | 1.0.21 | 2024-10-05 | [46454](https://github.com/airbytehq/airbyte/pull/46454) | Update dependencies | From 135f6d1a0c0c98f4866e2c94122b8d83a7cf6f46 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:30 +0200 Subject: [PATCH 622/808] =?UTF-8?q?=F0=9F=90=99=20source-chameleon:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48250)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chameleon/metadata.yaml | 4 ++-- docs/integrations/sources/chameleon.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-chameleon/metadata.yaml b/airbyte-integrations/connectors/source-chameleon/metadata.yaml index bd1ee3cb3d99..607a020b8d8a 100644 --- a/airbyte-integrations/connectors/source-chameleon/metadata.yaml +++ b/airbyte-integrations/connectors/source-chameleon/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-chameleon connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 64a0240a-81a4-4e40-8002-e063b17cfbbe - dockerImageTag: 0.1.1 + dockerImageTag: 0.1.2 dockerRepository: airbyte/source-chameleon githubIssueLabel: source-chameleon icon: icon.svg diff --git a/docs/integrations/sources/chameleon.md b/docs/integrations/sources/chameleon.md index ee93b87f7d7a..c20a1f3c4faa 100644 --- a/docs/integrations/sources/chameleon.md +++ b/docs/integrations/sources/chameleon.md @@ -40,6 +40,7 @@ Refer `https://app.chameleon.io/settings/tokens` for getting your API key. | Version | Date | Pull Request | Subject | |------------------|------------|--------------|----------------| +| 0.1.2 | 2024-11-04 | [48250](https://github.com/airbytehq/airbyte/pull/48250) | Update dependencies | | 0.1.1 | 2024-10-29 | [47822](https://github.com/airbytehq/airbyte/pull/47822) | Update dependencies | | 0.1.0 | 2024-09-29 | [46248](https://github.com/airbytehq/airbyte/pull/46248) | Fix survey_responses stream schema and icon | | 0.0.2 | 2024-09-21 | [45708](https://github.com/airbytehq/airbyte/pull/45708) | Make end date optional | From a5cc616c7fe09d427805d2ee0de172a628bce459 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:33 +0200 Subject: [PATCH 623/808] =?UTF-8?q?=F0=9F=90=99=20source-picqer:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#48249)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-picqer/metadata.yaml | 4 ++-- docs/integrations/sources/picqer.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-picqer/metadata.yaml b/airbyte-integrations/connectors/source-picqer/metadata.yaml index ca0f4d5840a4..cc8df41d9554 100644 --- a/airbyte-integrations/connectors/source-picqer/metadata.yaml +++ b/airbyte-integrations/connectors/source-picqer/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-picqer connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 860ca029-c88c-4c0a-a7d8-08ce6e84729c - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-picqer githubIssueLabel: source-picqer icon: icon.svg diff --git a/docs/integrations/sources/picqer.md b/docs/integrations/sources/picqer.md index 53a631825d28..29bb968e7eda 100644 --- a/docs/integrations/sources/picqer.md +++ b/docs/integrations/sources/picqer.md @@ -42,6 +42,7 @@ Configure the API key as your username and leave password field as blank | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-04 | [48249](https://github.com/airbytehq/airbyte/pull/48249) | Update dependencies | | 0.0.3 | 2024-10-29 | [47876](https://github.com/airbytehq/airbyte/pull/47876) | Update dependencies | | 0.0.2 | 2024-10-22 | [47235](https://github.com/airbytehq/airbyte/pull/47235) | Update dependencies | | 0.0.1 | 2024-09-05 | [45159](https://github.com/airbytehq/airbyte/pull/45159) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 158325619b1157acd5c6623e8ec6893155efc36b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:35 +0200 Subject: [PATCH 624/808] =?UTF-8?q?=F0=9F=90=99=20source-recurly:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48248)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recurly/metadata.yaml | 2 +- .../connectors/source-recurly/poetry.lock | 12 ++++++------ .../connectors/source-recurly/pyproject.toml | 2 +- docs/integrations/sources/recurly.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-recurly/metadata.yaml b/airbyte-integrations/connectors/source-recurly/metadata.yaml index a09c31c91544..0ddc5256bd70 100644 --- a/airbyte-integrations/connectors/source-recurly/metadata.yaml +++ b/airbyte-integrations/connectors/source-recurly/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: cd42861b-01fc-4658-a8ab-5d11d0510f01 - dockerImageTag: 1.1.12 + dockerImageTag: 1.1.13 dockerRepository: airbyte/source-recurly documentationUrl: https://docs.airbyte.com/integrations/sources/recurly githubIssueLabel: source-recurly diff --git a/airbyte-integrations/connectors/source-recurly/poetry.lock b/airbyte-integrations/connectors/source-recurly/poetry.lock index a5b4b7f8e604..f67eff452904 100644 --- a/airbyte-integrations/connectors/source-recurly/poetry.lock +++ b/airbyte-integrations/connectors/source-recurly/poetry.lock @@ -895,23 +895,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-recurly/pyproject.toml b/airbyte-integrations/connectors/source-recurly/pyproject.toml index 835af1388b0e..48543e8ea9b0 100644 --- a/airbyte-integrations/connectors/source-recurly/pyproject.toml +++ b/airbyte-integrations/connectors/source-recurly/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.12" +version = "1.1.13" name = "source-recurly" description = "Source implementation for Recurly." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/recurly.md b/docs/integrations/sources/recurly.md index 0aa7653e2ce4..ba9392db25e8 100644 --- a/docs/integrations/sources/recurly.md +++ b/docs/integrations/sources/recurly.md @@ -66,6 +66,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------- | +| 1.1.13 | 2024-11-04 | [48248](https://github.com/airbytehq/airbyte/pull/48248) | Update dependencies | | 1.1.12 | 2024-10-28 | [47067](https://github.com/airbytehq/airbyte/pull/47067) | Update dependencies | | 1.1.11 | 2024-10-12 | [46829](https://github.com/airbytehq/airbyte/pull/46829) | Update dependencies | | 1.1.10 | 2024-10-05 | [46456](https://github.com/airbytehq/airbyte/pull/46456) | Update dependencies | From c1662f855c5c9144e07bd19cea1f468f88c9c39b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:38 +0200 Subject: [PATCH 625/808] =?UTF-8?q?=F0=9F=90=99=20source-persona:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48247)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-persona/metadata.yaml | 4 ++-- docs/integrations/sources/persona.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-persona/metadata.yaml b/airbyte-integrations/connectors/source-persona/metadata.yaml index a761ea4527ce..4d0cc7bd9d99 100644 --- a/airbyte-integrations/connectors/source-persona/metadata.yaml +++ b/airbyte-integrations/connectors/source-persona/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-persona connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 7e55429a-a1ea-43c2-81c2-4fc3cf88f81f - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-persona githubIssueLabel: source-persona icon: icon.svg diff --git a/docs/integrations/sources/persona.md b/docs/integrations/sources/persona.md index 1a0b7ce0f672..aaedcdce58d0 100644 --- a/docs/integrations/sources/persona.md +++ b/docs/integrations/sources/persona.md @@ -28,6 +28,7 @@ Airbyte connector for [Persona](https://withpersona.com) that makes it easy to m | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48247](https://github.com/airbytehq/airbyte/pull/48247) | Update dependencies | | 0.0.2 | 2024-10-28 | [47498](https://github.com/airbytehq/airbyte/pull/47498) | Update dependencies | | 0.0.1 | 2024-10-03 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 308ca66ad365204f5fc47d322dcbbe86c2105fab Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:43 +0200 Subject: [PATCH 626/808] =?UTF-8?q?=F0=9F=90=99=20destination-weaviate:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-11-04]=20(#48244)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-weaviate/metadata.yaml | 2 +- .../destination-weaviate/poetry.lock | 298 +++++++++--------- .../destination-weaviate/pyproject.toml | 2 +- docs/integrations/destinations/weaviate.md | 1 + 4 files changed, 152 insertions(+), 151 deletions(-) diff --git a/airbyte-integrations/connectors/destination-weaviate/metadata.yaml b/airbyte-integrations/connectors/destination-weaviate/metadata.yaml index 64dbf8286a35..c9c900e4816f 100644 --- a/airbyte-integrations/connectors/destination-weaviate/metadata.yaml +++ b/airbyte-integrations/connectors/destination-weaviate/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 7b7d7a0d-954c-45a0-bcfc-39a634b97736 - dockerImageTag: 0.2.42 + dockerImageTag: 0.2.43 dockerRepository: airbyte/destination-weaviate documentationUrl: https://docs.airbyte.com/integrations/destinations/weaviate githubIssueLabel: destination-weaviate diff --git a/airbyte-integrations/connectors/destination-weaviate/poetry.lock b/airbyte-integrations/connectors/destination-weaviate/poetry.lock index ae02958ca616..c369dfbd5d8e 100644 --- a/airbyte-integrations/connectors/destination-weaviate/poetry.lock +++ b/airbyte-integrations/connectors/destination-weaviate/poetry.lock @@ -1550,13 +1550,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1638,13 +1638,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.23.0" +version = "3.23.1" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.9" files = [ - {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, - {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, + {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, + {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, ] [package.dependencies] @@ -1652,7 +1652,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "simplejson"] [[package]] @@ -1979,69 +1979,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -3472,93 +3472,93 @@ files = [ [[package]] name = "yarl" -version = "1.17.0" +version = "1.17.1" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, - {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, - {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, - {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, - {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, - {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, - {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, - {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, - {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, - {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, - {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, - {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, - {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-weaviate/pyproject.toml b/airbyte-integrations/connectors/destination-weaviate/pyproject.toml index 7cee0cb8ef2a..da8ebb696c73 100644 --- a/airbyte-integrations/connectors/destination-weaviate/pyproject.toml +++ b/airbyte-integrations/connectors/destination-weaviate/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-weaviate" -version = "0.2.42" +version = "0.2.43" description = "Airbyte destination implementation for Weaviate." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/weaviate.md b/docs/integrations/destinations/weaviate.md index e0e011a898ba..1ba14c1f8de5 100644 --- a/docs/integrations/destinations/weaviate.md +++ b/docs/integrations/destinations/weaviate.md @@ -90,6 +90,7 @@ When using [multi-tenancy](https://weaviate.io/developers/weaviate/manage-data/m | Version | Date | Pull Request | Subject | |:--------| :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.2.43 | 2024-11-04 | [48244](https://github.com/airbytehq/airbyte/pull/48244) | Update dependencies | | 0.2.42 | 2024-10-29 | [47063](https://github.com/airbytehq/airbyte/pull/47063) | Update dependencies | | 0.2.41 | 2024-10-12 | [46848](https://github.com/airbytehq/airbyte/pull/46848) | Update dependencies | | 0.2.40 | 2024-10-05 | [46465](https://github.com/airbytehq/airbyte/pull/46465) | Update dependencies | From 46fbd978944a7ce937e2154659e0ae733fb307f6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:46 +0200 Subject: [PATCH 627/808] =?UTF-8?q?=F0=9F=90=99=20destination-aws-datalake?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48243)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-aws-datalake/metadata.yaml | 2 +- .../destination-aws-datalake/poetry.lock | 138 +++++++++--------- .../destination-aws-datalake/pyproject.toml | 2 +- .../integrations/destinations/aws-datalake.md | 1 + 4 files changed, 72 insertions(+), 71 deletions(-) diff --git a/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml b/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml index ef3975745e2d..68d280e078e2 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml +++ b/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml @@ -4,7 +4,7 @@ data: definitionId: 99878c90-0fbd-46d3-9d98-ffde879d17fc connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 - dockerImageTag: 0.1.36 + dockerImageTag: 0.1.37 dockerRepository: airbyte/destination-aws-datalake githubIssueLabel: destination-aws-datalake icon: awsdatalake.svg diff --git a/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock b/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock index 0d71b2b2b458..f46a16521cc1 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock +++ b/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock @@ -144,17 +144,17 @@ files = [ [[package]] name = "boto3" -version = "1.35.50" +version = "1.35.54" description = "The AWS SDK for Python" optional = false python-versions = ">=3.8" files = [ - {file = "boto3-1.35.50-py3-none-any.whl", hash = "sha256:14724b905fd13f26d9d8f7cdcea0fa65a9acad79f60f41f7662667f4e233d97c"}, - {file = "boto3-1.35.50.tar.gz", hash = "sha256:4f15d1ccb481d66f6925b8c91c970ce41b956b6ecf7c479f23e2159531b37eec"}, + {file = "boto3-1.35.54-py3-none-any.whl", hash = "sha256:2d5e160b614db55fbee7981001c54476cb827c441cef65b2fcb2c52a62019909"}, + {file = "boto3-1.35.54.tar.gz", hash = "sha256:7d9c359bbbc858a60b51c86328db813353c8bd1940212cdbd0a7da835291c2e1"}, ] [package.dependencies] -botocore = ">=1.35.50,<1.36.0" +botocore = ">=1.35.54,<1.36.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.10.0,<0.11.0" @@ -163,13 +163,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.35.50" +version = "1.35.54" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" files = [ - {file = "botocore-1.35.50-py3-none-any.whl", hash = "sha256:965d3b99179ac04aa98e4c4baf4a970ebce77a5e02bb2a0a21cb6304e2bc0955"}, - {file = "botocore-1.35.50.tar.gz", hash = "sha256:136ecef8d5a1088f1ba485c0bbfca40abd42b9f9fe9e11d8cde4e53b4c05b188"}, + {file = "botocore-1.35.54-py3-none-any.whl", hash = "sha256:9cca1811094b6cdc144c2c063a3ec2db6d7c88194b04d4277cd34fc8e3473aff"}, + {file = "botocore-1.35.54.tar.gz", hash = "sha256:131bb59ce59c8a939b31e8e647242d70cf11d32d4529fa4dca01feea1e891a76"}, ] [package.dependencies] @@ -757,13 +757,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -890,69 +890,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml b/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml index 5d8fb96495f7..917564d725ae 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml +++ b/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.36" +version = "0.1.37" name = "destination-aws-datalake" description = "Destination Implementation for AWS Datalake." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/aws-datalake.md b/docs/integrations/destinations/aws-datalake.md index 19fbb03e5fbe..f06ec8abf098 100644 --- a/docs/integrations/destinations/aws-datalake.md +++ b/docs/integrations/destinations/aws-datalake.md @@ -94,6 +94,7 @@ which will be translated for compatibility with the Glue Data Catalog: | Version | Date | Pull Request | Subject | |:--------| :--------- | :--------------------------------------------------------- | :--------------------------------------------------- | +| 0.1.37 | 2024-11-04 | [48243](https://github.com/airbytehq/airbyte/pull/48243) | Update dependencies | | 0.1.36 | 2024-10-29 | [47878](https://github.com/airbytehq/airbyte/pull/47878) | Update dependencies | | 0.1.35 | 2024-10-28 | [47590](https://github.com/airbytehq/airbyte/pull/47590) | Update dependencies | | 0.1.34 | 2024-10-22 | [47091](https://github.com/airbytehq/airbyte/pull/47091) | Update dependencies | From 8785a4a4a046915c2a36c34ddb76dd22c93ae58a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:48 +0200 Subject: [PATCH 628/808] =?UTF-8?q?=F0=9F=90=99=20source-recharge:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48242)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recharge/metadata.yaml | 2 +- .../connectors/source-recharge/poetry.lock | 124 +++++++++--------- .../connectors/source-recharge/pyproject.toml | 2 +- docs/integrations/sources/recharge.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-recharge/metadata.yaml b/airbyte-integrations/connectors/source-recharge/metadata.yaml index cf7331178e17..03773b52fb04 100644 --- a/airbyte-integrations/connectors/source-recharge/metadata.yaml +++ b/airbyte-integrations/connectors/source-recharge/metadata.yaml @@ -7,7 +7,7 @@ data: connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 definitionId: 45d2e135-2ede-49e1-939f-3e3ec357a65e - dockerImageTag: 2.4.14 + dockerImageTag: 2.4.15 dockerRepository: airbyte/source-recharge githubIssueLabel: source-recharge icon: recharge.svg diff --git a/airbyte-integrations/connectors/source-recharge/poetry.lock b/airbyte-integrations/connectors/source-recharge/poetry.lock index 85ebd0d56886..7036c39c0cf5 100644 --- a/airbyte-integrations/connectors/source-recharge/poetry.lock +++ b/airbyte-integrations/connectors/source-recharge/poetry.lock @@ -731,13 +731,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -844,69 +844,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-recharge/pyproject.toml b/airbyte-integrations/connectors/source-recharge/pyproject.toml index f2fc34540a9b..0e42c25c3c42 100644 --- a/airbyte-integrations/connectors/source-recharge/pyproject.toml +++ b/airbyte-integrations/connectors/source-recharge/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.4.14" +version = "2.4.15" name = "source-recharge" description = "Source implementation for Recharge." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/recharge.md b/docs/integrations/sources/recharge.md index 1a237d191a02..a15bc8169779 100644 --- a/docs/integrations/sources/recharge.md +++ b/docs/integrations/sources/recharge.md @@ -79,6 +79,7 @@ The Recharge connector should gracefully handle Recharge API limitations under n | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:-------------------------------------------------------------------------------------------------------------------------------| +| 2.4.15 | 2024-11-04 | [48242](https://github.com/airbytehq/airbyte/pull/48242) | Update dependencies | | 2.4.14 | 2024-10-29 | [47890](https://github.com/airbytehq/airbyte/pull/47890) | Update dependencies | | 2.4.13 | 2024-10-28 | [47037](https://github.com/airbytehq/airbyte/pull/47037) | Update dependencies | | 2.4.12 | 2024-10-12 | [46797](https://github.com/airbytehq/airbyte/pull/46797) | Update dependencies | From bfcf47edc64e36e7477df74a74ccf702a81b79fa Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:52 +0200 Subject: [PATCH 629/808] =?UTF-8?q?=F0=9F=90=99=20source-rootly:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#48240)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-rootly/metadata.yaml | 4 ++-- docs/integrations/sources/rootly.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-rootly/metadata.yaml b/airbyte-integrations/connectors/source-rootly/metadata.yaml index d5a0373dcf3c..4ca4544ab62b 100644 --- a/airbyte-integrations/connectors/source-rootly/metadata.yaml +++ b/airbyte-integrations/connectors/source-rootly/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-rootly connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 2f111b00-0b92-4329-8481-6d7aa27a3991 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-rootly githubIssueLabel: source-rootly icon: icon.svg diff --git a/docs/integrations/sources/rootly.md b/docs/integrations/sources/rootly.md index 338223c0e52a..d72e621c8ac2 100644 --- a/docs/integrations/sources/rootly.md +++ b/docs/integrations/sources/rootly.md @@ -52,6 +52,7 @@ Documentation: https://rootly.com/api#/ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48240](https://github.com/airbytehq/airbyte/pull/48240) | Update dependencies | | 0.0.2 | 2024-10-29 | [47833](https://github.com/airbytehq/airbyte/pull/47833) | Update dependencies | | 0.0.1 | 2024-10-09 | [46669](https://github.com/airbytehq/airbyte/pull/46669) | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | From 775e12f8b8e5466049e6dac57ce449323dc2c0b6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:36:58 +0200 Subject: [PATCH 630/808] =?UTF-8?q?=F0=9F=90=99=20destination-chroma:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48236)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-chroma/metadata.yaml | 2 +- .../connectors/destination-chroma/poetry.lock | 572 +++++++++--------- .../destination-chroma/pyproject.toml | 2 +- docs/integrations/destinations/chroma.md | 1 + 4 files changed, 293 insertions(+), 284 deletions(-) diff --git a/airbyte-integrations/connectors/destination-chroma/metadata.yaml b/airbyte-integrations/connectors/destination-chroma/metadata.yaml index da91459d91d9..35b5f91f2cb8 100644 --- a/airbyte-integrations/connectors/destination-chroma/metadata.yaml +++ b/airbyte-integrations/connectors/destination-chroma/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 0b75218b-f702-4a28-85ac-34d3d84c0fc2 - dockerImageTag: 0.0.33 + dockerImageTag: 0.0.34 dockerRepository: airbyte/destination-chroma githubIssueLabel: destination-chroma icon: chroma.svg diff --git a/airbyte-integrations/connectors/destination-chroma/poetry.lock b/airbyte-integrations/connectors/destination-chroma/poetry.lock index c6ef4d42d3f1..deb6a1576139 100644 --- a/airbyte-integrations/connectors/destination-chroma/poetry.lock +++ b/airbyte-integrations/connectors/destination-chroma/poetry.lock @@ -553,13 +553,13 @@ numpy = "*" [[package]] name = "chromadb" -version = "0.5.16" +version = "0.5.17" description = "Chroma." optional = false python-versions = ">=3.8" files = [ - {file = "chromadb-0.5.16-py3-none-any.whl", hash = "sha256:ae96f1c81fa691a163a2d625dc769c5c1afa3219d1ac26796fbf9d60d7924d71"}, - {file = "chromadb-0.5.16.tar.gz", hash = "sha256:ab947065125908b228cc343e7d9f21bcea5036dcd237d993caa66e5fc262dd9e"}, + {file = "chromadb-0.5.17-py3-none-any.whl", hash = "sha256:d1403b9f78678effdc42240759041272b4ead013ab205a16f656da923e542cae"}, + {file = "chromadb-0.5.17.tar.gz", hash = "sha256:6d744dbab036d48d83c2425d3459006022dbcbe9e428affb011c72c91af04a39"}, ] [package.dependencies] @@ -1915,13 +1915,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -2027,13 +2027,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.23.0" +version = "3.23.1" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.9" files = [ - {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, - {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, + {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, + {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, ] [package.dependencies] @@ -2041,7 +2041,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "simplejson"] [[package]] @@ -2491,36 +2491,32 @@ signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] [[package]] name = "onnxruntime" -version = "1.19.2" +version = "1.20.0" description = "ONNX Runtime is a runtime accelerator for Machine Learning models" optional = false python-versions = "*" files = [ - {file = "onnxruntime-1.19.2-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:84fa57369c06cadd3c2a538ae2a26d76d583e7c34bdecd5769d71ca5c0fc750e"}, - {file = "onnxruntime-1.19.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bdc471a66df0c1cdef774accef69e9f2ca168c851ab5e4f2f3341512c7ef4666"}, - {file = "onnxruntime-1.19.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e3a4ce906105d99ebbe817f536d50a91ed8a4d1592553f49b3c23c4be2560ae6"}, - {file = "onnxruntime-1.19.2-cp310-cp310-win32.whl", hash = "sha256:4b3d723cc154c8ddeb9f6d0a8c0d6243774c6b5930847cc83170bfe4678fafb3"}, - {file = "onnxruntime-1.19.2-cp310-cp310-win_amd64.whl", hash = "sha256:17ed7382d2c58d4b7354fb2b301ff30b9bf308a1c7eac9546449cd122d21cae5"}, - {file = "onnxruntime-1.19.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:d863e8acdc7232d705d49e41087e10b274c42f09e259016a46f32c34e06dc4fd"}, - {file = "onnxruntime-1.19.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c1dfe4f660a71b31caa81fc298a25f9612815215a47b286236e61d540350d7b6"}, - {file = "onnxruntime-1.19.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a36511dc07c5c964b916697e42e366fa43c48cdb3d3503578d78cef30417cb84"}, - {file = "onnxruntime-1.19.2-cp311-cp311-win32.whl", hash = "sha256:50cbb8dc69d6befad4746a69760e5b00cc3ff0a59c6c3fb27f8afa20e2cab7e7"}, - {file = "onnxruntime-1.19.2-cp311-cp311-win_amd64.whl", hash = "sha256:1c3e5d415b78337fa0b1b75291e9ea9fb2a4c1f148eb5811e7212fed02cfffa8"}, - {file = "onnxruntime-1.19.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:68e7051bef9cfefcbb858d2d2646536829894d72a4130c24019219442b1dd2ed"}, - {file = "onnxruntime-1.19.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d2d366fbcc205ce68a8a3bde2185fd15c604d9645888703785b61ef174265168"}, - {file = "onnxruntime-1.19.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:477b93df4db467e9cbf34051662a4b27c18e131fa1836e05974eae0d6e4cf29b"}, - {file = "onnxruntime-1.19.2-cp312-cp312-win32.whl", hash = "sha256:9a174073dc5608fad05f7cf7f320b52e8035e73d80b0a23c80f840e5a97c0147"}, - {file = "onnxruntime-1.19.2-cp312-cp312-win_amd64.whl", hash = "sha256:190103273ea4507638ffc31d66a980594b237874b65379e273125150eb044857"}, - {file = "onnxruntime-1.19.2-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:636bc1d4cc051d40bc52e1f9da87fbb9c57d9d47164695dfb1c41646ea51ea66"}, - {file = "onnxruntime-1.19.2-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5bd8b875757ea941cbcfe01582970cc299893d1b65bd56731e326a8333f638a3"}, - {file = "onnxruntime-1.19.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b2046fc9560f97947bbc1acbe4c6d48585ef0f12742744307d3364b131ac5778"}, - {file = "onnxruntime-1.19.2-cp38-cp38-win32.whl", hash = "sha256:31c12840b1cde4ac1f7d27d540c44e13e34f2345cf3642762d2a3333621abb6a"}, - {file = "onnxruntime-1.19.2-cp38-cp38-win_amd64.whl", hash = "sha256:016229660adea180e9a32ce218b95f8f84860a200f0f13b50070d7d90e92956c"}, - {file = "onnxruntime-1.19.2-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:006c8d326835c017a9e9f74c9c77ebb570a71174a1e89fe078b29a557d9c3848"}, - {file = "onnxruntime-1.19.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:df2a94179a42d530b936f154615b54748239c2908ee44f0d722cb4df10670f68"}, - {file = "onnxruntime-1.19.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fae4b4de45894b9ce7ae418c5484cbf0341db6813effec01bb2216091c52f7fb"}, - {file = "onnxruntime-1.19.2-cp39-cp39-win32.whl", hash = "sha256:dc5430f473e8706fff837ae01323be9dcfddd3ea471c900a91fa7c9b807ec5d3"}, - {file = "onnxruntime-1.19.2-cp39-cp39-win_amd64.whl", hash = "sha256:38475e29a95c5f6c62c2c603d69fc7d4c6ccbf4df602bd567b86ae1138881c49"}, + {file = "onnxruntime-1.20.0-cp310-cp310-macosx_13_0_universal2.whl", hash = "sha256:2ac38bc6cbf7bb8527ded58711af6ef2c8c59d070f0fde58f83824422526922a"}, + {file = "onnxruntime-1.20.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cfd5a22abc11b273ec76fa773e22db19b749e27bf1ed05dd50d207f1817aae1"}, + {file = "onnxruntime-1.20.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6b5daee2d03909b589f1a9ab24c325cc3c33ab7f736228158784fb1a97a92308"}, + {file = "onnxruntime-1.20.0-cp310-cp310-win32.whl", hash = "sha256:e1eb08c13f91f830eb8df4f4e17a2a2652d1165f50bbed4f28f2afbf425c55d7"}, + {file = "onnxruntime-1.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:cfcc1d21a12076bcc213441b405c48e1f21dedb36943e31eb93cb7a12b34678e"}, + {file = "onnxruntime-1.20.0-cp311-cp311-macosx_13_0_universal2.whl", hash = "sha256:3398354e9145c68edc09dbc72265401150027e76716ae758e8d9b52e6a7ddca0"}, + {file = "onnxruntime-1.20.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a831b720d0a7be8241a230cb06f592e8bb66652d7cea54ce02d83769651fdee"}, + {file = "onnxruntime-1.20.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:041fefe60af844ebd90f344c84f908201490555cd0a6d78dd0a7acdc27b59972"}, + {file = "onnxruntime-1.20.0-cp311-cp311-win32.whl", hash = "sha256:83da64d2824809d0f6977db8bfc5091f742c26f09dfd66a3934e673780f5f87a"}, + {file = "onnxruntime-1.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:bfa390046332f5fca6f8af8c9d17164621ac52e66b11518e187278b19364800c"}, + {file = "onnxruntime-1.20.0-cp312-cp312-macosx_13_0_universal2.whl", hash = "sha256:97c2b91bfea063f9c3457422d28a336bfd2859001cd880645adfa7184e29dd79"}, + {file = "onnxruntime-1.20.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51e7b34e398089c4ed8d0f50722d7a64a4d5f11b38c4a42576458a03c6dbc72e"}, + {file = "onnxruntime-1.20.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e259378ff2843321e0bf4552adcbee48822c91d77d42dde78b87dcdf10ad01f"}, + {file = "onnxruntime-1.20.0-cp312-cp312-win32.whl", hash = "sha256:428abc1f7d8eb425887e2b7726044f2af7b5a098359455e7d2d92343f04ad0ff"}, + {file = "onnxruntime-1.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:d5f23cbfeb546e16ffea81c28d2e796a53197fdc6c92540648e2aa53a7c7a637"}, + {file = "onnxruntime-1.20.0-cp313-cp313-macosx_13_0_universal2.whl", hash = "sha256:95b91126bc3e1754868da1d3d2d08a7a10279b8ff5cea5e34e92fbe3fd691dcf"}, + {file = "onnxruntime-1.20.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d57c10d7729347d6663f32b3f569f33d69a95e150d37ff6af4be9b9ab1ffdc25"}, + {file = "onnxruntime-1.20.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b9c38735dac127d0eeb957ec312c8f1ae90ecae2779a55b2fa279aa7bd116cbd"}, + {file = "onnxruntime-1.20.0-cp313-cp313-win_amd64.whl", hash = "sha256:25514cec4ea251d492aa1e38a7395d8801e64a4c940a154aef84cfad97ae4628"}, + {file = "onnxruntime-1.20.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:640ad9ea72d322f0325a51544eddb54f4fa843c4348573c88a9cb44f46678f3f"}, + {file = "onnxruntime-1.20.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc4e7c10c98c1f407835448c26a7e14ebff3234f131e1fbc53bd9500c828df89"}, ] [package.dependencies] @@ -2741,69 +2737,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -3775,13 +3771,13 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "rich" -version = "13.9.3" +version = "13.9.4" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" optional = false python-versions = ">=3.8.0" files = [ - {file = "rich-13.9.3-py3-none-any.whl", hash = "sha256:9836f5096eb2172c9e77df411c1b009bace4193d6a481d534fea75ebba758283"}, - {file = "rich-13.9.3.tar.gz", hash = "sha256:bc1e01b899537598cf02579d2b9f4a415104d3fc439313a7a2c165d76557a08e"}, + {file = "rich-13.9.4-py3-none-any.whl", hash = "sha256:6049d5e6ec054bf2779ab3358186963bac2ea89175919d699e378b99738c2a90"}, + {file = "rich-13.9.4.tar.gz", hash = "sha256:439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098"}, ] [package.dependencies] @@ -4180,111 +4176,123 @@ blobfile = ["blobfile (>=2)"] [[package]] name = "tokenizers" -version = "0.20.1" +version = "0.20.2" description = "" optional = false python-versions = ">=3.7" files = [ - {file = "tokenizers-0.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:439261da7c0a5c88bda97acb284d49fbdaf67e9d3b623c0bfd107512d22787a9"}, - {file = "tokenizers-0.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:03dae629d99068b1ea5416d50de0fea13008f04129cc79af77a2a6392792d93c"}, - {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b61f561f329ffe4b28367798b89d60c4abf3f815d37413b6352bc6412a359867"}, - {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ec870fce1ee5248a10be69f7a8408a234d6f2109f8ea827b4f7ecdbf08c9fd15"}, - {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d388d1ea8b7447da784e32e3b86a75cce55887e3b22b31c19d0b186b1c677800"}, - {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:299c85c1d21135bc01542237979bf25c32efa0d66595dd0069ae259b97fb2dbe"}, - {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e96f6c14c9752bb82145636b614d5a78e9cde95edfbe0a85dad0dd5ddd6ec95c"}, - {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc9e95ad49c932b80abfbfeaf63b155761e695ad9f8a58c52a47d962d76e310f"}, - {file = "tokenizers-0.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:f22dee205329a636148c325921c73cf3e412e87d31f4d9c3153b302a0200057b"}, - {file = "tokenizers-0.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2ffd9a8895575ac636d44500c66dffaef133823b6b25067604fa73bbc5ec09d"}, - {file = "tokenizers-0.20.1-cp310-none-win32.whl", hash = "sha256:2847843c53f445e0f19ea842a4e48b89dd0db4e62ba6e1e47a2749d6ec11f50d"}, - {file = "tokenizers-0.20.1-cp310-none-win_amd64.whl", hash = "sha256:f9aa93eacd865f2798b9e62f7ce4533cfff4f5fbd50c02926a78e81c74e432cd"}, - {file = "tokenizers-0.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:4a717dcb08f2dabbf27ae4b6b20cbbb2ad7ed78ce05a829fae100ff4b3c7ff15"}, - {file = "tokenizers-0.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3f84dad1ff1863c648d80628b1b55353d16303431283e4efbb6ab1af56a75832"}, - {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:929c8f3afa16a5130a81ab5079c589226273ec618949cce79b46d96e59a84f61"}, - {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d10766473954397e2d370f215ebed1cc46dcf6fd3906a2a116aa1d6219bfedc3"}, - {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9300fac73ddc7e4b0330acbdda4efaabf74929a4a61e119a32a181f534a11b47"}, - {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0ecaf7b0e39caeb1aa6dd6e0975c405716c82c1312b55ac4f716ef563a906969"}, - {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5170be9ec942f3d1d317817ced8d749b3e1202670865e4fd465e35d8c259de83"}, - {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef3f1ae08fa9aea5891cbd69df29913e11d3841798e0bfb1ff78b78e4e7ea0a4"}, - {file = "tokenizers-0.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ee86d4095d3542d73579e953c2e5e07d9321af2ffea6ecc097d16d538a2dea16"}, - {file = "tokenizers-0.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:86dcd08da163912e17b27bbaba5efdc71b4fbffb841530fdb74c5707f3c49216"}, - {file = "tokenizers-0.20.1-cp311-none-win32.whl", hash = "sha256:9af2dc4ee97d037bc6b05fa4429ddc87532c706316c5e11ce2f0596dfcfa77af"}, - {file = "tokenizers-0.20.1-cp311-none-win_amd64.whl", hash = "sha256:899152a78b095559c287b4c6d0099469573bb2055347bb8154db106651296f39"}, - {file = "tokenizers-0.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:407ab666b38e02228fa785e81f7cf79ef929f104bcccf68a64525a54a93ceac9"}, - {file = "tokenizers-0.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2f13a2d16032ebc8bd812eb8099b035ac65887d8f0c207261472803b9633cf3e"}, - {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e98eee4dca22849fbb56a80acaa899eec5b72055d79637dd6aa15d5e4b8628c9"}, - {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47c1bcdd61e61136087459cb9e0b069ff23b5568b008265e5cbc927eae3387ce"}, - {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:128c1110e950534426e2274837fc06b118ab5f2fa61c3436e60e0aada0ccfd67"}, - {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2e2d47a819d2954f2c1cd0ad51bb58ffac6f53a872d5d82d65d79bf76b9896d"}, - {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bdd67a0e3503a9a7cf8bc5a4a49cdde5fa5bada09a51e4c7e1c73900297539bd"}, - {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:689b93d2e26d04da337ac407acec8b5d081d8d135e3e5066a88edd5bdb5aff89"}, - {file = "tokenizers-0.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0c6a796ddcd9a19ad13cf146997cd5895a421fe6aec8fd970d69f9117bddb45c"}, - {file = "tokenizers-0.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3ea919687aa7001a8ff1ba36ac64f165c4e89035f57998fa6cedcfd877be619d"}, - {file = "tokenizers-0.20.1-cp312-none-win32.whl", hash = "sha256:6d3ac5c1f48358ffe20086bf065e843c0d0a9fce0d7f0f45d5f2f9fba3609ca5"}, - {file = "tokenizers-0.20.1-cp312-none-win_amd64.whl", hash = "sha256:b0874481aea54a178f2bccc45aa2d0c99cd3f79143a0948af6a9a21dcc49173b"}, - {file = "tokenizers-0.20.1-cp37-cp37m-macosx_10_12_x86_64.whl", hash = "sha256:96af92e833bd44760fb17f23f402e07a66339c1dcbe17d79a9b55bb0cc4f038e"}, - {file = "tokenizers-0.20.1-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:65f34e5b731a262dfa562820818533c38ce32a45864437f3d9c82f26c139ca7f"}, - {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17f98fccb5c12ab1ce1f471731a9cd86df5d4bd2cf2880c5a66b229802d96145"}, - {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b8c0fc3542cf9370bf92c932eb71bdeb33d2d4aeeb4126d9fd567b60bd04cb30"}, - {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b39356df4575d37f9b187bb623aab5abb7b62c8cb702867a1768002f814800c"}, - {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfdad27b0e50544f6b838895a373db6114b85112ba5c0cefadffa78d6daae563"}, - {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:094663dd0e85ee2e573126918747bdb40044a848fde388efb5b09d57bc74c680"}, - {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14e4cf033a2aa207d7ac790e91adca598b679999710a632c4a494aab0fc3a1b2"}, - {file = "tokenizers-0.20.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9310951c92c9fb91660de0c19a923c432f110dbfad1a2d429fbc44fa956bf64f"}, - {file = "tokenizers-0.20.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:05e41e302c315bd2ed86c02e917bf03a6cf7d2f652c9cee1a0eb0d0f1ca0d32c"}, - {file = "tokenizers-0.20.1-cp37-none-win32.whl", hash = "sha256:212231ab7dfcdc879baf4892ca87c726259fa7c887e1688e3f3cead384d8c305"}, - {file = "tokenizers-0.20.1-cp37-none-win_amd64.whl", hash = "sha256:896195eb9dfdc85c8c052e29947169c1fcbe75a254c4b5792cdbd451587bce85"}, - {file = "tokenizers-0.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:741fb22788482d09d68e73ece1495cfc6d9b29a06c37b3df90564a9cfa688e6d"}, - {file = "tokenizers-0.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:10be14ebd8082086a342d969e17fc2d6edc856c59dbdbddd25f158fa40eaf043"}, - {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:514cf279b22fa1ae0bc08e143458c74ad3b56cd078b319464959685a35c53d5e"}, - {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a647c5b7cb896d6430cf3e01b4e9a2d77f719c84cefcef825d404830c2071da2"}, - {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7cdf379219e1e1dd432091058dab325a2e6235ebb23e0aec8d0508567c90cd01"}, - {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ba72260449e16c4c2f6f3252823b059fbf2d31b32617e582003f2b18b415c39"}, - {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:910b96ed87316e4277b23c7bcaf667ce849c7cc379a453fa179e7e09290eeb25"}, - {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e53975a6694428a0586534cc1354b2408d4e010a3103117f617cbb550299797c"}, - {file = "tokenizers-0.20.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:07c4b7be58da142b0730cc4e5fd66bb7bf6f57f4986ddda73833cd39efef8a01"}, - {file = "tokenizers-0.20.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b605c540753e62199bf15cf69c333e934077ef2350262af2ccada46026f83d1c"}, - {file = "tokenizers-0.20.1-cp38-none-win32.whl", hash = "sha256:88b3bc76ab4db1ab95ead623d49c95205411e26302cf9f74203e762ac7e85685"}, - {file = "tokenizers-0.20.1-cp38-none-win_amd64.whl", hash = "sha256:d412a74cf5b3f68a90c615611a5aa4478bb303d1c65961d22db45001df68afcb"}, - {file = "tokenizers-0.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a25dcb2f41a0a6aac31999e6c96a75e9152fa0127af8ece46c2f784f23b8197a"}, - {file = "tokenizers-0.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a12c3cebb8c92e9c35a23ab10d3852aee522f385c28d0b4fe48c0b7527d59762"}, - {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02e18da58cf115b7c40de973609c35bde95856012ba42a41ee919c77935af251"}, - {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f326a1ac51ae909b9760e34671c26cd0dfe15662f447302a9d5bb2d872bab8ab"}, - {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b4872647ea6f25224e2833b044b0b19084e39400e8ead3cfe751238b0802140"}, - {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce6238a3311bb8e4c15b12600927d35c267b92a52c881ef5717a900ca14793f7"}, - {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57b7a8880b208866508b06ce365dc631e7a2472a3faa24daa430d046fb56c885"}, - {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a908c69c2897a68f412aa05ba38bfa87a02980df70f5a72fa8490479308b1f2d"}, - {file = "tokenizers-0.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:da1001aa46f4490099c82e2facc4fbc06a6a32bf7de3918ba798010954b775e0"}, - {file = "tokenizers-0.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:42c097390e2f0ed0a5c5d569e6669dd4e9fff7b31c6a5ce6e9c66a61687197de"}, - {file = "tokenizers-0.20.1-cp39-none-win32.whl", hash = "sha256:3d4d218573a3d8b121a1f8c801029d70444ffb6d8f129d4cca1c7b672ee4a24c"}, - {file = "tokenizers-0.20.1-cp39-none-win_amd64.whl", hash = "sha256:37d1e6f616c84fceefa7c6484a01df05caf1e207669121c66213cb5b2911d653"}, - {file = "tokenizers-0.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48689da7a395df41114f516208d6550e3e905e1239cc5ad386686d9358e9cef0"}, - {file = "tokenizers-0.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:712f90ea33f9bd2586b4a90d697c26d56d0a22fd3c91104c5858c4b5b6489a79"}, - {file = "tokenizers-0.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:359eceb6a620c965988fc559cebc0a98db26713758ec4df43fb76d41486a8ed5"}, - {file = "tokenizers-0.20.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0d3caf244ce89d24c87545aafc3448be15870096e796c703a0d68547187192e1"}, - {file = "tokenizers-0.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03b03cf8b9a32254b1bf8a305fb95c6daf1baae0c1f93b27f2b08c9759f41dee"}, - {file = "tokenizers-0.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:218e5a3561561ea0f0ef1559c6d95b825308dbec23fb55b70b92589e7ff2e1e8"}, - {file = "tokenizers-0.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f40df5e0294a95131cc5f0e0eb91fe86d88837abfbee46b9b3610b09860195a7"}, - {file = "tokenizers-0.20.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl", hash = "sha256:08aaa0d72bb65058e8c4b0455f61b840b156c557e2aca57627056624c3a93976"}, - {file = "tokenizers-0.20.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:998700177b45f70afeb206ad22c08d9e5f3a80639dae1032bf41e8cbc4dada4b"}, - {file = "tokenizers-0.20.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62f7fbd3c2c38b179556d879edae442b45f68312019c3a6013e56c3947a4e648"}, - {file = "tokenizers-0.20.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31e87fca4f6bbf5cc67481b562147fe932f73d5602734de7dd18a8f2eee9c6dd"}, - {file = "tokenizers-0.20.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:956f21d359ae29dd51ca5726d2c9a44ffafa041c623f5aa33749da87cfa809b9"}, - {file = "tokenizers-0.20.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:1fbbaf17a393c78d8aedb6a334097c91cb4119a9ced4764ab8cfdc8d254dc9f9"}, - {file = "tokenizers-0.20.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ebe63e31f9c1a970c53866d814e35ec2ec26fda03097c486f82f3891cee60830"}, - {file = "tokenizers-0.20.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:81970b80b8ac126910295f8aab2d7ef962009ea39e0d86d304769493f69aaa1e"}, - {file = "tokenizers-0.20.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:130e35e76f9337ed6c31be386e75d4925ea807055acf18ca1a9b0eec03d8fe23"}, - {file = "tokenizers-0.20.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd28a8614f5c82a54ab2463554e84ad79526c5184cf4573bbac2efbbbcead457"}, - {file = "tokenizers-0.20.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9041ee665d0fa7f5c4ccf0f81f5e6b7087f797f85b143c094126fc2611fec9d0"}, - {file = "tokenizers-0.20.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:62eb9daea2a2c06bcd8113a5824af8ef8ee7405d3a71123ba4d52c79bb3d9f1a"}, - {file = "tokenizers-0.20.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f861889707b54a9ab1204030b65fd6c22bdd4a95205deec7994dc22a8baa2ea4"}, - {file = "tokenizers-0.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:89d5c337d74ea6e5e7dc8af124cf177be843bbb9ca6e58c01f75ea103c12c8a9"}, - {file = "tokenizers-0.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:0b7f515c83397e73292accdbbbedc62264e070bae9682f06061e2ddce67cacaf"}, - {file = "tokenizers-0.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e0305fc1ec6b1e5052d30d9c1d5c807081a7bd0cae46a33d03117082e91908c"}, - {file = "tokenizers-0.20.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5dc611e6ac0fa00a41de19c3bf6391a05ea201d2d22b757d63f5491ec0e67faa"}, - {file = "tokenizers-0.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5ffe0d7f7bfcfa3b2585776ecf11da2e01c317027c8573c78ebcb8985279e23"}, - {file = "tokenizers-0.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:e7edb8ec12c100d5458d15b1e47c0eb30ad606a05641f19af7563bc3d1608c14"}, - {file = "tokenizers-0.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:de291633fb9303555793cc544d4a86e858da529b7d0b752bcaf721ae1d74b2c9"}, - {file = "tokenizers-0.20.1.tar.gz", hash = "sha256:84edcc7cdeeee45ceedb65d518fffb77aec69311c9c8e30f77ad84da3025f002"}, + {file = "tokenizers-0.20.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:dce8801285a2cd8eea906d8bede3c6a92bfc79a9a6bf164cc69940586e2aee97"}, + {file = "tokenizers-0.20.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cd34334d90663bc7a6d6cb5fd4bc667687cd016e92b2624086ea03830221c489"}, + {file = "tokenizers-0.20.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12e87dd9eb607685423396b1c87f035658b6ea594c07a144378e2d63a10b90b5"}, + {file = "tokenizers-0.20.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b0d77497dc8f619a3cae519116c8d23c07fd3cf9cc62ca8dad6140f490aa282"}, + {file = "tokenizers-0.20.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cf7b25d1098130a73806037d4370f946ff8cbc68025e1e37c2122eecd199de22"}, + {file = "tokenizers-0.20.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:858cf33522c6d8d4f35f28fca06e9ec735d577ed05881c6df9c51068b4c3abee"}, + {file = "tokenizers-0.20.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58defb199ce5708626e5dcafffd108c3b5eeb170d9a473382e40f7ea6362d786"}, + {file = "tokenizers-0.20.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93cf8fb1dc7244b1595eecffbd018400c437c7e092e3075452b3e4225e90b1df"}, + {file = "tokenizers-0.20.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0dd4f1f0d2c141ad7c0736677b3d2e5437e5ecd1e73e3e1f3f24c12db83646a9"}, + {file = "tokenizers-0.20.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b52f19163f790870b4d9e4dfa0f7a4c75a372e0dffb80537efe652d6b3ab8c96"}, + {file = "tokenizers-0.20.2-cp310-none-win32.whl", hash = "sha256:7b397bd0eb8dc871983669e2cb15b3913f7f23af3ea98dc07bd48cc11a8bdbe9"}, + {file = "tokenizers-0.20.2-cp310-none-win_amd64.whl", hash = "sha256:0f1da11ead494c62ab7da17a649f2ea2de468198bcf8e3b902ce7aaf8c6f42ce"}, + {file = "tokenizers-0.20.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:b072bc2f125936ba6a86a4c8604696cd5bd1bb2dbd1fec4cce0f194f2dfad04d"}, + {file = "tokenizers-0.20.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:90808ce914e6aeea8d14db7119eedb591998493467c7b34929a9dc9b29ef5fab"}, + {file = "tokenizers-0.20.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f57f4c0206048d561226879c04d43c78a360a919be305b9dc3e64c5e4103744b"}, + {file = "tokenizers-0.20.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0b91272d52e37367be87c06074db1e70f92ed4b997ad9a9422ad24bbeb50410c"}, + {file = "tokenizers-0.20.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19b888bece6ff5ed6834551f7043f4b55f0535b2911dcc655733f7009c177e4a"}, + {file = "tokenizers-0.20.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:43011f17b2544d9dfe3f1fd3e8acf9e6bec29147e7e166c405ecd4ae79994a7e"}, + {file = "tokenizers-0.20.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d95091c6f74f1c4f28a962d923442e492fe88ac3224c11daa999da438320eaa1"}, + {file = "tokenizers-0.20.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd8dea683e84f795bb69ab822ef5b83921f22e6d9ef3ca7135ce35ba82d55249"}, + {file = "tokenizers-0.20.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:625ac108243a714bb8d099927d3723b01a03b258ef44af04c6d65620d19c9527"}, + {file = "tokenizers-0.20.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:04d4010d3e5fb0c4c98060fb6ecbe42ca67a91b4eab2ddda2749b8ec18ac952c"}, + {file = "tokenizers-0.20.2-cp311-none-win32.whl", hash = "sha256:a12ddc02cd8db6c3f6a66faf1e23e065f6ec50a1ff93077cc0ee526a60225cc0"}, + {file = "tokenizers-0.20.2-cp311-none-win_amd64.whl", hash = "sha256:0427b592f9be8a8377602fa8996508c4d5fed6aa07971f4a866ef21ed6137dea"}, + {file = "tokenizers-0.20.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:ae574dd21ddef77163e9bdf65b0d61d41eb435a11ae545c92d1bb1d2aebfd9eb"}, + {file = "tokenizers-0.20.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a90476820f64dc0e7fe9469eebf4dcdaa2bebebbe8f9b69bc74cbd9b08256427"}, + {file = "tokenizers-0.20.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:075d933b283e8aa07007f420e79876cf38f266dcecf617225b530aa17fb842f9"}, + {file = "tokenizers-0.20.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dc485a81f260d2673cfde202327c611b627c5da33ee363254767bf7a7618aa94"}, + {file = "tokenizers-0.20.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35a51898c0953f501b402e7219aec157a66e750349a9fbd35a337f8813654b33"}, + {file = "tokenizers-0.20.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:61383c265696215bfbf50175663076a8e4c3dc48a82022f86c26f9b2d9650b6e"}, + {file = "tokenizers-0.20.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:143b8015b2ece56cd31116bbffb96ba20d6bbb64407daed0fc8a146ec858045d"}, + {file = "tokenizers-0.20.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6818ff76e51aa3bc7b358debffceaeb8b6827720083ceec026afadb3f44a9744"}, + {file = "tokenizers-0.20.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1b8cf59f36c51a549a4d9c7b06d902bba5434c46ad2c8209e5512ac1e42ca348"}, + {file = "tokenizers-0.20.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3d1711852ba36a8944a76213543790e854d422e81b99ca678b4995d0d6accc44"}, + {file = "tokenizers-0.20.2-cp312-none-win32.whl", hash = "sha256:f8d77aaefc4a4f23cfdedae2e28e5c99b301734ea57fc510de5c192408601b9b"}, + {file = "tokenizers-0.20.2-cp312-none-win_amd64.whl", hash = "sha256:4dcce9e042e5b80e056beacd2e97a344316c29965e7f00b82f658ba08b9870cf"}, + {file = "tokenizers-0.20.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:2643fee18919da76f498214e253ae7409a61f02823814d8a4486624d8a7b3706"}, + {file = "tokenizers-0.20.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1ccef0ae85121b6c0d07e05cb77fe29842b29dd5b48abf0d340bfff8ce3f463b"}, + {file = "tokenizers-0.20.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c58cc2ca193018455618a27e165220f36aa83efe39e051cf976a5502a9a9b799"}, + {file = "tokenizers-0.20.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f49a325322ec52aecda02847b9dc1fd190f9352e45ad16ff438fd7634ba6376d"}, + {file = "tokenizers-0.20.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a074fefd2874458dedafd450a7c74c075f0bf20f15172e8b6692c4aaab6e0dc"}, + {file = "tokenizers-0.20.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02d450342011c18a8b5324ff97c42a325a10a1ce5ab097313fad829cbe89fcef"}, + {file = "tokenizers-0.20.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4573bb25b93d359869a867bd9cfb5896a86b9c2b9a9ca81956c5dfe891667774"}, + {file = "tokenizers-0.20.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eab036b5a5e36559d9e91cdc4a517badfdba6e91f1047485b9c8906810fd68a1"}, + {file = "tokenizers-0.20.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:ae4924d8596565470106b859be577734d75fdd2911d2dd266fcd7dbf4da7c193"}, + {file = "tokenizers-0.20.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef33b0ffc41bfa6473103d16995e0a71b65a21b09f013f0872d119c251e95639"}, + {file = "tokenizers-0.20.2-cp313-none-win32.whl", hash = "sha256:68576b8cfaadcb43384ba70b98b12f566c50843a5ed1c48237c086ad6cfaa93a"}, + {file = "tokenizers-0.20.2-cp313-none-win_amd64.whl", hash = "sha256:ee4a89d33a39bfa9e24a7bd74df3cafcd23f45142e51ea0226cf4f63f7292854"}, + {file = "tokenizers-0.20.2-cp37-cp37m-macosx_10_12_x86_64.whl", hash = "sha256:b33e077d00200c40248f69b437ab95959155fbf3e199bb70f24cc54b5e5b33d0"}, + {file = "tokenizers-0.20.2-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:dd4eafddbdc8ae2d01115d7731907b75f80110cb5dcabaab46facd19d881451a"}, + {file = "tokenizers-0.20.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2121bdf9461aa522e4e324d71cfcbb1a99cc8ec5aa817438ea0aac996b14d4b3"}, + {file = "tokenizers-0.20.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ca9dd9291e126879bcbe35b95861b8152312d230a1a491d4026828aa6b58730f"}, + {file = "tokenizers-0.20.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64d5bd597e1f64112c1c3c8c7058b6d35f95e7ef6dfacc80e00963527082f45e"}, + {file = "tokenizers-0.20.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc55370604ade0a8cca9bd2351489c39e13ae34210a2adfa3e78ddebaf0a4102"}, + {file = "tokenizers-0.20.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9f8be47b38456376b4e067334ad09d2ec6142a34872b0f95e2a63a38d068d38a"}, + {file = "tokenizers-0.20.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd7bf1c8bc0f5103cf1f31988f63c46d30056b9d7a5191691c4cf9c7cd888bb6"}, + {file = "tokenizers-0.20.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d1d791190fd55b3c6243e888c7206830bdd0e0c3ef61a21fe9577d72406266bf"}, + {file = "tokenizers-0.20.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:b9ad4b4954b06d5a7f31cec1a2815bc02303de45d907b1d5372cb35f9bd26e88"}, + {file = "tokenizers-0.20.2-cp37-none-win32.whl", hash = "sha256:0cb864f0fcb59a82b27168a3e28dd47df6fef9449424b1c63af0c3239ef90d97"}, + {file = "tokenizers-0.20.2-cp37-none-win_amd64.whl", hash = "sha256:340ad77d916590f07e0ea0a536a769c61c570c35893094268621eda7d7bc125d"}, + {file = "tokenizers-0.20.2-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:43c00dba54b30736a444fb302d205e34fe079e2845d989f796f1b13295e7ef71"}, + {file = "tokenizers-0.20.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:845107fb7da8fb3fab988bde10d323f70d46a2e8a4585aaadacf7e3a0cb6fd89"}, + {file = "tokenizers-0.20.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa64548c61de8b7fccb53fcfa82935f77726bc6a50518dff88efa6e5fd56aae0"}, + {file = "tokenizers-0.20.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04b80dda85dc4ca2cc26c736490a116da02a48d54835d6f358496b12fe201fd5"}, + {file = "tokenizers-0.20.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e023e89382d54f721c2bae19f37e5abef8d43739c0625d3a28f9c5b0565b13"}, + {file = "tokenizers-0.20.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d9b0099662a1e555cf3c7341c54c831e7f4394c953b7d93bfe0786c3a9fe7fd"}, + {file = "tokenizers-0.20.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4db2aa974374ce87aa7bfea3573a4d006e31c8d093be12bccd25f29e1551b245"}, + {file = "tokenizers-0.20.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cca5de082aa78850d6c2528abc9a076110bdbdd9873399c2c4bb4d3704574b0"}, + {file = "tokenizers-0.20.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2daec7c4b2b99a2d4cf1ce83616432dbb2480d784b6a3a5a28aabb8a91665378"}, + {file = "tokenizers-0.20.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:97a2294588de369008337864a466e9637729445a7261c6ae3e9de9bcd4f17721"}, + {file = "tokenizers-0.20.2-cp38-none-win32.whl", hash = "sha256:5b8c4afd7816d836ceeec990855f65b115e7a39dbbd26bdfa20b360a43b4d35e"}, + {file = "tokenizers-0.20.2-cp38-none-win_amd64.whl", hash = "sha256:871cac55ac333674254d476d75d22855aec6a16c4939a7d455317e447afda00c"}, + {file = "tokenizers-0.20.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:f2512fd654af3d8316524767b18c2548226b01fe6d79f559ef200d95488e8187"}, + {file = "tokenizers-0.20.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ad42cca87d7a8c69c3995d53d473e14c160fcdf9cedfe91092b458f2aa1d2c84"}, + {file = "tokenizers-0.20.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a4fe4d9c68e29274dde8b6ed56c83a12df8164f4f7a2a8c6edc20c5124aa65a"}, + {file = "tokenizers-0.20.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2e2404ffdf47b59e54c902055ff7e83b955a6bddaa1f09f4330c772d9b60f284"}, + {file = "tokenizers-0.20.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:520c69ca7a6e108a6ca7ed8b5fd5e23eac37ca9bc0788892b41065184564337d"}, + {file = "tokenizers-0.20.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:165c63342671df3c792ab3f4c5b763b2a5e73257e7faeab2767675929fe05853"}, + {file = "tokenizers-0.20.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b4c610a1b740539872257a76d3308ef1e84936a1cb11223268b8505ee023f23"}, + {file = "tokenizers-0.20.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1265baa0190729f83e5857fbee31842c96c4fc8a1ad7003e055c7560ad2885fe"}, + {file = "tokenizers-0.20.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:eade373618be551b962d55818c978289eab58376073ceb4339554df1ef550d08"}, + {file = "tokenizers-0.20.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e4c9656d1f985c274208ff9dcbe7c9c2bbb328457a27508f6044e468f6137c9a"}, + {file = "tokenizers-0.20.2-cp39-none-win32.whl", hash = "sha256:1203e8d0adb0b36d2494c084a35ba8afa52e0735ce3e86aab033aec9e65164cd"}, + {file = "tokenizers-0.20.2-cp39-none-win_amd64.whl", hash = "sha256:a6926bc2692f7ded544fed1a1596b7b22eee9590afc284696421e745b5bcb65d"}, + {file = "tokenizers-0.20.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:8c26f5d1bda22dc91c41a6d708e03ded5ee60975d2dda87f79651c74cb2b8829"}, + {file = "tokenizers-0.20.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:97b1e631945cb505407c7cc7b6c34518a6fd82e20c5f6c7d54cba325b7eeba6e"}, + {file = "tokenizers-0.20.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:602ded63e106066969d04ce614c6ad25d432e28ebb16543e7876b30e33cccc5b"}, + {file = "tokenizers-0.20.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:625137be04e38208aea6a8b6e458e0ece8d5e96f608f8bcad703f47b4ab72868"}, + {file = "tokenizers-0.20.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:258fb8a23c548192ab117b2286a199ef93bed186b338b5700f4d7f20b6aa36f6"}, + {file = "tokenizers-0.20.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:7b5485d33b234ed042b2d3da24edb6f2ad0e8d796a747cdf0af28daf2d57b436"}, + {file = "tokenizers-0.20.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:39b469c53d01d4b01b5f9031f2a37c2f686ccded1e5237a326aa9fedf9cb92b8"}, + {file = "tokenizers-0.20.2-pp37-pypy37_pp73-macosx_10_12_x86_64.whl", hash = "sha256:4498d7e06123521d7fba85fc8cb9509591ed2f6fd8cb57fa238eebb420d11a1f"}, + {file = "tokenizers-0.20.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69edc940db9510790d8642c7ca3fe40d4b6645ded943f8d7641ee77d4926534a"}, + {file = "tokenizers-0.20.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a5ac72c3fb1387a1c2ed77a755c1b2c5188e0e995620051aec987540c5ae0e2b"}, + {file = "tokenizers-0.20.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c3e02f718163947da345bf52a4396f037d7b773118a0d03ed9e87e1a26c100d"}, + {file = "tokenizers-0.20.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:b7ac0e0075de89be1310cd30d13e6587af8c3a0f951096fe4f079fece4cba7a9"}, + {file = "tokenizers-0.20.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:4bc6acea6d541614c42f9a689aef63a765c12aeccecf4fc34d8606c41d66cdbf"}, + {file = "tokenizers-0.20.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:85b19ceb27994a03db4d13e568eb70e50354b3d3d364c95ba44fb5d56ca37d8a"}, + {file = "tokenizers-0.20.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:7438d992e9816b52e1e60967bea71fe03f6966a7e5946358cec6b43fb6588df9"}, + {file = "tokenizers-0.20.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2b19540a4a478df61270a55af4b78d2ef995f751d2ec07dee72aadb93c23e249"}, + {file = "tokenizers-0.20.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c89ac11bb920e5cac941537aded586b2ea70e1e34de2c8b8c08c87bdc143f8af"}, + {file = "tokenizers-0.20.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:300b6c814ec0e2ee086861632a9c4bfc9c6497aa8521be93e421deb3e35b6516"}, + {file = "tokenizers-0.20.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:6b7d6584b73fbc54cb93e960acc504f9a02b8cd3e9fcf664f5ed9213b4ea5a32"}, + {file = "tokenizers-0.20.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:bf69a9f201ccd8409f1ab265899ac64ec672ac9148bd048f365ed5b39758a697"}, + {file = "tokenizers-0.20.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:477eaca81c233612f0a4eba2f90c1eb584ed6cb845f1f48e1a4374220dae6891"}, + {file = "tokenizers-0.20.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:6ca7781d98858825ebe84d2ce692b1c4de5ec45733d30dd3a9398e804e79c8ae"}, + {file = "tokenizers-0.20.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0912a257b67053d070f9dd539befbcf0f9e6d86f456d099f7c30750dad6985ac"}, + {file = "tokenizers-0.20.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cdefc3e44ff71e36b116d6b152344666212a07b91129ce41b667687869a7a3f4"}, + {file = "tokenizers-0.20.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efbef80ef87459fffe3c615ba393b185ebe1e3069083b7619549d3d22dd08ba2"}, + {file = "tokenizers-0.20.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:0e0d0b6814a2285323fe669d2da5614fdb999b4b5d963d964f6fc8092065447d"}, + {file = "tokenizers-0.20.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:efaa29e985e2a9eff6a8fb2d454ba23dfd82324f04a76e8e193673261fc54ffe"}, + {file = "tokenizers-0.20.2.tar.gz", hash = "sha256:05c95c59b200c2fcf9b2da2d17df9236fb7a6df4136cfb251dfaa8803c0127fd"}, ] [package.dependencies] @@ -4800,93 +4808,93 @@ files = [ [[package]] name = "yarl" -version = "1.17.0" +version = "1.17.1" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, - {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, - {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, - {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, - {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, - {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, - {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, - {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, - {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, - {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, - {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, - {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, - {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-chroma/pyproject.toml b/airbyte-integrations/connectors/destination-chroma/pyproject.toml index 721fd47b43cb..657d6047567e 100644 --- a/airbyte-integrations/connectors/destination-chroma/pyproject.toml +++ b/airbyte-integrations/connectors/destination-chroma/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-chroma" -version = "0.0.33" +version = "0.0.34" description = "Airbyte destination implementation for Chroma." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/chroma.md b/docs/integrations/destinations/chroma.md index 020c33a3f289..c578964d0512 100644 --- a/docs/integrations/destinations/chroma.md +++ b/docs/integrations/destinations/chroma.md @@ -77,6 +77,7 @@ You should now have all the requirements needed to configure Chroma as a destina | Version | Date | Pull Request | Subject | |:--------|:-----------| :-------------------------------------------------------- |:-------------------------------------------------------------| +| 0.0.34 | 2024-11-04 | [48236](https://github.com/airbytehq/airbyte/pull/48236) | Update dependencies | | 0.0.33 | 2024-10-29 | [47053](https://github.com/airbytehq/airbyte/pull/47053) | Update dependencies | | 0.0.32 | 2024-10-12 | [46434](https://github.com/airbytehq/airbyte/pull/46434) | Update dependencies | | 0.0.31 | 2024-09-28 | [46192](https://github.com/airbytehq/airbyte/pull/46192) | Update dependencies | From e96eea2ed747086633ec870e4a17002d4127feb1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:01 +0200 Subject: [PATCH 631/808] =?UTF-8?q?=F0=9F=90=99=20source-canny:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-11-04]=20(#48235)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-canny/metadata.yaml | 4 ++-- docs/integrations/sources/canny.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-canny/metadata.yaml b/airbyte-integrations/connectors/source-canny/metadata.yaml index 1420f844848e..07f62a162ab1 100644 --- a/airbyte-integrations/connectors/source-canny/metadata.yaml +++ b/airbyte-integrations/connectors/source-canny/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-canny connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: ec1ffa33-bfd9-428a-a645-ece66a1a9f44 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-canny githubIssueLabel: source-canny icon: icon.svg diff --git a/docs/integrations/sources/canny.md b/docs/integrations/sources/canny.md index 5ae710f465e9..eda11cdc13e2 100644 --- a/docs/integrations/sources/canny.md +++ b/docs/integrations/sources/canny.md @@ -28,6 +28,7 @@ A manifest only source for Canny. https://canny.io/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| +| 0.0.3 | 2024-11-04 | [48235](https://github.com/airbytehq/airbyte/pull/48235) | Update dependencies | | 0.0.2 | 2024-10-29 | [47727](https://github.com/airbytehq/airbyte/pull/47727) | Update dependencies | | 0.0.1 | 2024-09-15 | [45588](https://github.com/airbytehq/airbyte/pull/45588) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | From b76ba0bb587337c9529f277741f68c9f141c35fc Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:04 +0200 Subject: [PATCH 632/808] =?UTF-8?q?=F0=9F=90=99=20source-bigcommerce:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48234)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-bigcommerce/metadata.yaml | 4 ++-- docs/integrations/sources/bigcommerce.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml b/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml index 43aca29cf39c..254c63e500b5 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml +++ b/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 59c5501b-9f95-411e-9269-7143c939adbd - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 dockerRepository: airbyte/source-bigcommerce documentationUrl: https://docs.airbyte.com/integrations/sources/bigcommerce githubIssueLabel: source-bigcommerce @@ -47,5 +47,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/bigcommerce.md b/docs/integrations/sources/bigcommerce.md index 8af729f92416..a6cf86369bf2 100644 --- a/docs/integrations/sources/bigcommerce.md +++ b/docs/integrations/sources/bigcommerce.md @@ -58,7 +58,8 @@ BigCommerce has some [rate limit restrictions](https://developer.bigcommerce.com | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------- | -| 0.3.0 | 2024-10-30 | [47277](https://github.com/airbytehq/airbyte/pull/47277) | Migrate to Manifest-only | +| 0.3.1 | 2024-11-04 | [48234](https://github.com/airbytehq/airbyte/pull/48234) | Update dependencies | +| 0.3.0 | 2024-10-30 | [47277](https://github.com/airbytehq/airbyte/pull/47277) | Migrate to Manifest-only | | 0.2.22 | 2024-10-28 | [47117](https://github.com/airbytehq/airbyte/pull/47117) | Update dependencies | | 0.2.21 | 2024-10-12 | [46840](https://github.com/airbytehq/airbyte/pull/46840) | Update dependencies | | 0.2.20 | 2024-10-05 | [46453](https://github.com/airbytehq/airbyte/pull/46453) | Update dependencies | From f34b3d8a1449aaed13ef72e9e52979647af1e76f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:07 +0200 Subject: [PATCH 633/808] =?UTF-8?q?=F0=9F=90=99=20source-squarespace:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48233)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-squarespace/metadata.yaml | 4 ++-- docs/integrations/sources/squarespace.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-squarespace/metadata.yaml b/airbyte-integrations/connectors/source-squarespace/metadata.yaml index 428b14bcd3ed..5a207da80280 100644 --- a/airbyte-integrations/connectors/source-squarespace/metadata.yaml +++ b/airbyte-integrations/connectors/source-squarespace/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-squarespace connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 861e1bde-0d7c-4f15-9f96-e845df8d3544 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-squarespace githubIssueLabel: source-squarespace icon: icon.svg diff --git a/docs/integrations/sources/squarespace.md b/docs/integrations/sources/squarespace.md index 605cd3b9272e..964d6c70aa64 100644 --- a/docs/integrations/sources/squarespace.md +++ b/docs/integrations/sources/squarespace.md @@ -25,6 +25,7 @@ The Squarespace connector enables seamless integration with your Squarespace sto | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48233](https://github.com/airbytehq/airbyte/pull/48233) | Update dependencies | | 0.0.2 | 2024-10-29 | [47806](https://github.com/airbytehq/airbyte/pull/47806) | Update dependencies | | 0.0.1 | 2024-10-10 | | Initial release by [@avirajsingh7](https://github.com/avirajsingh7) via Connector Builder | From b966ac43b91b86b446043ea89e3a53c06a5ea7f9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:11 +0200 Subject: [PATCH 634/808] =?UTF-8?q?=F0=9F=90=99=20source-campaign-monitor:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48232)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-campaign-monitor/metadata.yaml | 4 ++-- docs/integrations/sources/campaign-monitor.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-campaign-monitor/metadata.yaml b/airbyte-integrations/connectors/source-campaign-monitor/metadata.yaml index 94ba17d4a0db..353f85a291eb 100644 --- a/airbyte-integrations/connectors/source-campaign-monitor/metadata.yaml +++ b/airbyte-integrations/connectors/source-campaign-monitor/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-campaign-monitor connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 9d350ec7-2860-4106-a331-7d9403dd9a02 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-campaign-monitor githubIssueLabel: source-campaign-monitor icon: icon.svg diff --git a/docs/integrations/sources/campaign-monitor.md b/docs/integrations/sources/campaign-monitor.md index 1a7ca0e9ae3a..fd239a72a8df 100644 --- a/docs/integrations/sources/campaign-monitor.md +++ b/docs/integrations/sources/campaign-monitor.md @@ -59,6 +59,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48232](https://github.com/airbytehq/airbyte/pull/48232) | Update dependencies | | 0.0.2 | 2024-10-28 | [47643](https://github.com/airbytehq/airbyte/pull/47643) | Update dependencies | | 0.0.1 | 2024-10-05 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 031f2505003419c9d0d04c1814a57e480e1d6072 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:13 +0200 Subject: [PATCH 635/808] =?UTF-8?q?=F0=9F=90=99=20source-mux:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-11-04]=20(#48231)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-mux/metadata.yaml | 4 ++-- docs/integrations/sources/mux.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mux/metadata.yaml b/airbyte-integrations/connectors/source-mux/metadata.yaml index 3a83cc657fe5..328c989fc9ca 100644 --- a/airbyte-integrations/connectors/source-mux/metadata.yaml +++ b/airbyte-integrations/connectors/source-mux/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-mux connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 7bc19e81-14ee-43cb-a2ac-f3bcf6ba0459 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-mux githubIssueLabel: source-mux icon: icon.svg diff --git a/docs/integrations/sources/mux.md b/docs/integrations/sources/mux.md index c334ee2bec40..9f4908c7c8bb 100644 --- a/docs/integrations/sources/mux.md +++ b/docs/integrations/sources/mux.md @@ -34,6 +34,7 @@ Visit `https://docs.mux.com/api-reference` for API documentation | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-04 | [48231](https://github.com/airbytehq/airbyte/pull/48231) | Update dependencies | | 0.0.3 | 2024-10-29 | [47880](https://github.com/airbytehq/airbyte/pull/47880) | Update dependencies | | 0.0.2 | 2024-10-28 | [47492](https://github.com/airbytehq/airbyte/pull/47492) | Update dependencies | | 0.0.1 | 2024-09-27 | [45921](https://github.com/airbytehq/airbyte/pull/45921) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From a6f40c0718d11023c40296865994ef9a8d85b881 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:16 +0200 Subject: [PATCH 636/808] =?UTF-8?q?=F0=9F=90=99=20source-public-apis:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48230)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-public-apis/metadata.yaml | 2 +- .../connectors/source-public-apis/poetry.lock | 124 +++++++++--------- .../source-public-apis/pyproject.toml | 2 +- docs/integrations/sources/public-apis.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-public-apis/metadata.yaml b/airbyte-integrations/connectors/source-public-apis/metadata.yaml index b398ce95e783..c8b2ea000a29 100644 --- a/airbyte-integrations/connectors/source-public-apis/metadata.yaml +++ b/airbyte-integrations/connectors/source-public-apis/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: a4617b39-3c14-44cd-a2eb-6e720f269235 - dockerImageTag: 0.2.21 + dockerImageTag: 0.2.22 dockerRepository: airbyte/source-public-apis documentationUrl: https://docs.airbyte.com/integrations/sources/public-apis githubIssueLabel: source-public-apis diff --git a/airbyte-integrations/connectors/source-public-apis/poetry.lock b/airbyte-integrations/connectors/source-public-apis/poetry.lock index c2268c5899fb..0c25732c130a 100644 --- a/airbyte-integrations/connectors/source-public-apis/poetry.lock +++ b/airbyte-integrations/connectors/source-public-apis/poetry.lock @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -767,69 +767,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-public-apis/pyproject.toml b/airbyte-integrations/connectors/source-public-apis/pyproject.toml index 2ae92364b3b3..dbc40495673e 100644 --- a/airbyte-integrations/connectors/source-public-apis/pyproject.toml +++ b/airbyte-integrations/connectors/source-public-apis/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.21" +version = "0.2.22" name = "source-public-apis" description = "Source implementation for Public Apis." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/public-apis.md b/docs/integrations/sources/public-apis.md index c745a395e425..539be5bf24ab 100644 --- a/docs/integrations/sources/public-apis.md +++ b/docs/integrations/sources/public-apis.md @@ -46,6 +46,7 @@ This source requires no setup. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------- | +| 0.2.22 | 2024-11-04 | [48230](https://github.com/airbytehq/airbyte/pull/48230) | Update dependencies | | 0.2.21 | 2024-10-29 | [47035](https://github.com/airbytehq/airbyte/pull/47035) | Update dependencies | | 0.2.20 | 2024-10-12 | [46839](https://github.com/airbytehq/airbyte/pull/46839) | Update dependencies | | 0.2.19 | 2024-10-05 | [46440](https://github.com/airbytehq/airbyte/pull/46440) | Update dependencies | From cbf974b9803685e4949e6ceccbd3a062c5bab0b1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:20 +0200 Subject: [PATCH 637/808] =?UTF-8?q?=F0=9F=90=99=20source-buzzsprout:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48228)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-buzzsprout/metadata.yaml | 4 ++-- docs/integrations/sources/buzzsprout.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml b/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml index 3be8be923a9f..51fd4f5ca696 100644 --- a/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml +++ b/airbyte-integrations/connectors/source-buzzsprout/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-buzzsprout connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 6ad23bfc-cb11-4faa-a243-f9ccdb0145cc - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-buzzsprout githubIssueLabel: source-buzzsprout icon: icon.svg diff --git a/docs/integrations/sources/buzzsprout.md b/docs/integrations/sources/buzzsprout.md index 8921b9744bcd..127bc77734cf 100644 --- a/docs/integrations/sources/buzzsprout.md +++ b/docs/integrations/sources/buzzsprout.md @@ -30,6 +30,7 @@ Visit `https://github.com/buzzsprout/buzzsprout-api/tree/master?tab=readme-ov-fi | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-04 | [48228](https://github.com/airbytehq/airbyte/pull/48228) | Update dependencies | | 0.0.3 | 2024-10-29 | [47747](https://github.com/airbytehq/airbyte/pull/47747) | Update dependencies | | 0.0.2 | 2024-10-28 | [47645](https://github.com/airbytehq/airbyte/pull/47645) | Update dependencies | | 0.0.1 | 2024-09-16 | [45608](https://github.com/airbytehq/airbyte/pull/45608) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From d9b5451136524a285b23414b49085c18acbd92b0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:23 +0200 Subject: [PATCH 638/808] =?UTF-8?q?=F0=9F=90=99=20source-lob:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-11-04]=20(#48226)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-lob/metadata.yaml | 4 ++-- docs/integrations/sources/lob.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-lob/metadata.yaml b/airbyte-integrations/connectors/source-lob/metadata.yaml index 5d3f2a0b4a7a..50ff2d87fb9b 100644 --- a/airbyte-integrations/connectors/source-lob/metadata.yaml +++ b/airbyte-integrations/connectors/source-lob/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-lob connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: c6d14c44-cd3e-4f94-8924-201c5615f3a7 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-lob githubIssueLabel: source-lob icon: icon.svg diff --git a/docs/integrations/sources/lob.md b/docs/integrations/sources/lob.md index d409b1aa4984..5af728e5a364 100644 --- a/docs/integrations/sources/lob.md +++ b/docs/integrations/sources/lob.md @@ -34,6 +34,7 @@ Visit `https://docs.lob.com/` for API documentation | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-04 | [48226](https://github.com/airbytehq/airbyte/pull/48226) | Update dependencies | | 0.0.3 | 2024-10-29 | [47867](https://github.com/airbytehq/airbyte/pull/47867) | Update dependencies | | 0.0.2 | 2024-10-28 | [47627](https://github.com/airbytehq/airbyte/pull/47627) | Update dependencies | | 0.0.1 | 2024-09-22 | [45843](https://github.com/airbytehq/airbyte/pull/45843) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 5b2c08149ef2e19c4df3ba63a8f9aed9ed2c4bcc Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:26 +0200 Subject: [PATCH 639/808] =?UTF-8?q?=F0=9F=90=99=20source-customer-io:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48225)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-customer-io/metadata.yaml | 4 ++-- docs/integrations/sources/customer-io.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-customer-io/metadata.yaml b/airbyte-integrations/connectors/source-customer-io/metadata.yaml index 2a91487f4bd3..daeca7670d68 100644 --- a/airbyte-integrations/connectors/source-customer-io/metadata.yaml +++ b/airbyte-integrations/connectors/source-customer-io/metadata.yaml @@ -15,11 +15,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 34f697bc-b989-4eda-b06f-d0f39b88825b - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-customer-io githubIssueLabel: source-customer-io icon: customer-io.svg diff --git a/docs/integrations/sources/customer-io.md b/docs/integrations/sources/customer-io.md index 4cf8ec61555f..00b5b874d99e 100644 --- a/docs/integrations/sources/customer-io.md +++ b/docs/integrations/sources/customer-io.md @@ -47,6 +47,7 @@ Please follow the [their documentation for generating an App API Key](https://cu | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------------- | :------------------------- | +| 0.3.3 | 2024-11-04 | [48225](https://github.com/airbytehq/airbyte/pull/48225) | Update dependencies | | 0.3.2 | 2024-10-28 | [47464](https://github.com/airbytehq/airbyte/pull/47464) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44158](https://github.com/airbytehq/airbyte/pull/44158) | Refactor connector to manifest-only format | From acf0379c4fc923d2893176ea648c47a1a9bc20ed Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:31 +0200 Subject: [PATCH 640/808] =?UTF-8?q?=F0=9F=90=99=20destination-firestore:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48223)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-firestore/metadata.yaml | 2 +- .../destination-firestore/poetry.lock | 234 +++++++++--------- .../destination-firestore/pyproject.toml | 2 +- docs/integrations/destinations/firestore.md | 1 + 4 files changed, 121 insertions(+), 118 deletions(-) diff --git a/airbyte-integrations/connectors/destination-firestore/metadata.yaml b/airbyte-integrations/connectors/destination-firestore/metadata.yaml index 82026c96db07..ddb02b888e9d 100644 --- a/airbyte-integrations/connectors/destination-firestore/metadata.yaml +++ b/airbyte-integrations/connectors/destination-firestore/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 27dc7500-6d1b-40b1-8b07-e2f2aea3c9f4 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/destination-firestore githubIssueLabel: destination-firestore icon: firestore.svg diff --git a/airbyte-integrations/connectors/destination-firestore/poetry.lock b/airbyte-integrations/connectors/destination-firestore/poetry.lock index b0c8e4f25138..405c767fc8fa 100644 --- a/airbyte-integrations/connectors/destination-firestore/poetry.lock +++ b/airbyte-integrations/connectors/destination-firestore/poetry.lock @@ -913,13 +913,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1026,131 +1026,133 @@ twitter = ["twython"] [[package]] name = "numpy" -version = "2.1.2" +version = "2.1.3" description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.10" files = [ - {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, - {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, - {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, - {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, - {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, - {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, - {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, - {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, - {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, - {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c894b4305373b9c5576d7a12b473702afdf48ce5369c074ba304cc5ad8730dff"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b47fbb433d3260adcd51eb54f92a2ffbc90a4595f8970ee00e064c644ac788f5"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:825656d0743699c529c5943554d223c021ff0494ff1442152ce887ef4f7561a1"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:6a4825252fcc430a182ac4dee5a505053d262c807f8a924603d411f6718b88fd"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e711e02f49e176a01d0349d82cb5f05ba4db7d5e7e0defd026328e5cfb3226d3"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78574ac2d1a4a02421f25da9559850d59457bac82f2b8d7a44fe83a64f770098"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c7662f0e3673fe4e832fe07b65c50342ea27d989f92c80355658c7f888fcc83c"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:fa2d1337dc61c8dc417fbccf20f6d1e139896a30721b7f1e832b2bb6ef4eb6c4"}, + {file = "numpy-2.1.3-cp310-cp310-win32.whl", hash = "sha256:72dcc4a35a8515d83e76b58fdf8113a5c969ccd505c8a946759b24e3182d1f23"}, + {file = "numpy-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:ecc76a9ba2911d8d37ac01de72834d8849e55473457558e12995f4cd53e778e0"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d1167c53b93f1f5d8a139a742b3c6f4d429b54e74e6b57d0eff40045187b15d"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c80e4a09b3d95b4e1cac08643f1152fa71a0a821a2d4277334c88d54b2219a41"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:576a1c1d25e9e02ed7fa5477f30a127fe56debd53b8d2c89d5578f9857d03ca9"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:973faafebaae4c0aaa1a1ca1ce02434554d67e628b8d805e61f874b84e136b09"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:762479be47a4863e261a840e8e01608d124ee1361e48b96916f38b119cfda04a"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc6f24b3d1ecc1eebfbf5d6051faa49af40b03be1aaa781ebdadcbc090b4539b"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:17ee83a1f4fef3c94d16dc1802b998668b5419362c8a4f4e8a491de1b41cc3ee"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15cb89f39fa6d0bdfb600ea24b250e5f1a3df23f901f51c8debaa6a5d122b2f0"}, + {file = "numpy-2.1.3-cp311-cp311-win32.whl", hash = "sha256:d9beb777a78c331580705326d2367488d5bc473b49a9bc3036c154832520aca9"}, + {file = "numpy-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:d89dd2b6da69c4fff5e39c28a382199ddedc3a5be5390115608345dec660b9e2"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f55ba01150f52b1027829b50d70ef1dafd9821ea82905b63936668403c3b471e"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13138eadd4f4da03074851a698ffa7e405f41a0845a6b1ad135b81596e4e9958"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a6b46587b14b888e95e4a24d7b13ae91fa22386c199ee7b418f449032b2fa3b8"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:0fa14563cc46422e99daef53d725d0c326e99e468a9320a240affffe87852564"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8637dcd2caa676e475503d1f8fdb327bc495554e10838019651b76d17b98e512"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2312b2aa89e1f43ecea6da6ea9a810d06aae08321609d8dc0d0eda6d946a541b"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a38c19106902bb19351b83802531fea19dee18e5b37b36454f27f11ff956f7fc"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02135ade8b8a84011cbb67dc44e07c58f28575cf9ecf8ab304e51c05528c19f0"}, + {file = "numpy-2.1.3-cp312-cp312-win32.whl", hash = "sha256:e6988e90fcf617da2b5c78902fe8e668361b43b4fe26dbf2d7b0f8034d4cafb9"}, + {file = "numpy-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:0d30c543f02e84e92c4b1f415b7c6b5326cbe45ee7882b6b77db7195fb971e3a"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96fe52fcdb9345b7cd82ecd34547fca4321f7656d500eca497eb7ea5a926692f"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f653490b33e9c3a4c1c01d41bc2aef08f9475af51146e4a7710c450cf9761598"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dc258a761a16daa791081d026f0ed4399b582712e6fc887a95af09df10c5ca57"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:016d0f6f5e77b0f0d45d77387ffa4bb89816b57c835580c3ce8e099ef830befe"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c181ba05ce8299c7aa3125c27b9c2167bca4a4445b7ce73d5febc411ca692e43"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5641516794ca9e5f8a4d17bb45446998c6554704d888f86df9b200e66bdcce56"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea4dedd6e394a9c180b33c2c872b92f7ce0f8e7ad93e9585312b0c5a04777a4a"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0df3635b9c8ef48bd3be5f862cf71b0a4716fa0e702155c45067c6b711ddcef"}, + {file = "numpy-2.1.3-cp313-cp313-win32.whl", hash = "sha256:50ca6aba6e163363f132b5c101ba078b8cbd3fa92c7865fd7d4d62d9779ac29f"}, + {file = "numpy-2.1.3-cp313-cp313-win_amd64.whl", hash = "sha256:747641635d3d44bcb380d950679462fae44f54b131be347d5ec2bce47d3df9ed"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:996bb9399059c5b82f76b53ff8bb686069c05acc94656bb259b1d63d04a9506f"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:45966d859916ad02b779706bb43b954281db43e185015df6eb3323120188f9e4"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:baed7e8d7481bfe0874b566850cb0b85243e982388b7b23348c6db2ee2b2ae8e"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f7f672a3388133335589cfca93ed468509cb7b93ba3105fce780d04a6576a0"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7aac50327da5d208db2eec22eb11e491e3fe13d22653dce51b0f4109101b408"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4394bc0dbd074b7f9b52024832d16e019decebf86caf909d94f6b3f77a8ee3b6"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:50d18c4358a0a8a53f12a8ba9d772ab2d460321e6a93d6064fc22443d189853f"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:14e253bd43fc6b37af4921b10f6add6925878a42a0c5fe83daee390bca80bc17"}, + {file = "numpy-2.1.3-cp313-cp313t-win32.whl", hash = "sha256:08788d27a5fd867a663f6fc753fd7c3ad7e92747efc73c53bca2f19f8bc06f48"}, + {file = "numpy-2.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2564fbdf2b99b3f815f2107c1bbc93e2de8ee655a69c261363a1172a79a257d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4f2015dfe437dfebbfce7c85c7b53d81ba49e71ba7eadbf1df40c915af75979f"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:3522b0dfe983a575e6a9ab3a4a4dfe156c3e428468ff08ce582b9bb6bd1d71d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c006b607a865b07cd981ccb218a04fc86b600411d83d6fc261357f1c0966755d"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:e14e26956e6f1696070788252dcdff11b4aca4c3e8bd166e0df1bb8f315a67cb"}, + {file = "numpy-2.1.3.tar.gz", hash = "sha256:aa08e04e08aaf974d4458def539dece0d28146d866a39da5639596f4921fd761"}, ] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/destination-firestore/pyproject.toml b/airbyte-integrations/connectors/destination-firestore/pyproject.toml index c438db9f24cd..90dae2ece72c 100644 --- a/airbyte-integrations/connectors/destination-firestore/pyproject.toml +++ b/airbyte-integrations/connectors/destination-firestore/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.1" +version = "0.2.2" name = "destination-firestore" description = "Destination implementation for Google Firestore." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/firestore.md b/docs/integrations/destinations/firestore.md index e273826285c6..f5ec3ec7d7e5 100644 --- a/docs/integrations/destinations/firestore.md +++ b/docs/integrations/destinations/firestore.md @@ -39,6 +39,7 @@ Each stream will be output into a BigQuery table. | Version | Date | Pull Request | Subject | |:--------| :--------- | :----------------------------------------------------- | :---------------------------- | +| 0.2.2 | 2024-11-04 | [48223](https://github.com/airbytehq/airbyte/pull/48223) | Update dependencies | | 0.2.1 | 2024-10-29 | [43758](https://github.com/airbytehq/airbyte/pull/43758) | Update dependencies | | 0.2.0 | 2024-10-14 | [46874](https://github.com/airbytehq/airbyte/pull/46874) | Bump Airbyte CDK version to 5.13 | | 0.1.8 | 2024-08-22 | [44530](https://github.com/airbytehq/airbyte/pull/44530) | Update test dependencies | From d259f81776a0b6e4fcaa3a614b0e8485dd46e0be Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:34 +0200 Subject: [PATCH 641/808] =?UTF-8?q?=F0=9F=90=99=20destination-vectara:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-04]=20(#48222)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-vectara/metadata.yaml | 2 +- .../destination-vectara/poetry.lock | 124 +++++++++--------- .../destination-vectara/pyproject.toml | 2 +- docs/integrations/destinations/vectara.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/destination-vectara/metadata.yaml b/airbyte-integrations/connectors/destination-vectara/metadata.yaml index be729c0683f1..d62e1fc7215c 100644 --- a/airbyte-integrations/connectors/destination-vectara/metadata.yaml +++ b/airbyte-integrations/connectors/destination-vectara/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 102900e7-a236-4c94-83e4-a4189b99adc2 - dockerImageTag: 0.2.29 + dockerImageTag: 0.2.30 dockerRepository: airbyte/destination-vectara githubIssueLabel: destination-vectara icon: vectara.svg diff --git a/airbyte-integrations/connectors/destination-vectara/poetry.lock b/airbyte-integrations/connectors/destination-vectara/poetry.lock index e16a33689c65..9a91ee03d7dc 100644 --- a/airbyte-integrations/connectors/destination-vectara/poetry.lock +++ b/airbyte-integrations/connectors/destination-vectara/poetry.lock @@ -533,13 +533,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -685,69 +685,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/destination-vectara/pyproject.toml b/airbyte-integrations/connectors/destination-vectara/pyproject.toml index b292987b9f2a..af1c0797331e 100644 --- a/airbyte-integrations/connectors/destination-vectara/pyproject.toml +++ b/airbyte-integrations/connectors/destination-vectara/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-vectara" -version = "0.2.29" +version = "0.2.30" description = "Airbyte destination implementation for Vectara" authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/vectara.md b/docs/integrations/destinations/vectara.md index 5db4d5c7b426..3d707efe5126 100644 --- a/docs/integrations/destinations/vectara.md +++ b/docs/integrations/destinations/vectara.md @@ -68,6 +68,7 @@ In addition, in the connector UI you define two set of fields for this connector | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------- | +| 0.2.30 | 2024-11-04 | [48222](https://github.com/airbytehq/airbyte/pull/48222) | Update dependencies | | 0.2.29 | 2024-10-29 | [47744](https://github.com/airbytehq/airbyte/pull/47744) | Update dependencies | | 0.2.28 | 2024-10-23 | [47084](https://github.com/airbytehq/airbyte/pull/47084) | Update dependencies | | 0.2.27 | 2024-10-12 | [46812](https://github.com/airbytehq/airbyte/pull/46812) | Update dependencies | From 96c9756a83407496ea32991ce3078cb6458beb4c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:37 +0200 Subject: [PATCH 642/808] =?UTF-8?q?=F0=9F=90=99=20source-genesys:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48221)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-genesys/metadata.yaml | 2 +- .../connectors/source-genesys/poetry.lock | 12 ++++++------ .../connectors/source-genesys/pyproject.toml | 2 +- docs/integrations/sources/genesys.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-genesys/metadata.yaml b/airbyte-integrations/connectors/source-genesys/metadata.yaml index 8e7565a34a11..3d44377181a4 100644 --- a/airbyte-integrations/connectors/source-genesys/metadata.yaml +++ b/airbyte-integrations/connectors/source-genesys/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5ea4459a-8f1a-452a-830f-a65c38cc438d - dockerImageTag: 0.1.21 + dockerImageTag: 0.1.22 dockerRepository: airbyte/source-genesys githubIssueLabel: source-genesys icon: genesys.svg diff --git a/airbyte-integrations/connectors/source-genesys/poetry.lock b/airbyte-integrations/connectors/source-genesys/poetry.lock index daa4d036e32d..7a6a3934921d 100644 --- a/airbyte-integrations/connectors/source-genesys/poetry.lock +++ b/airbyte-integrations/connectors/source-genesys/poetry.lock @@ -884,23 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-genesys/pyproject.toml b/airbyte-integrations/connectors/source-genesys/pyproject.toml index 4e6c7feb81e4..993db27e8c75 100644 --- a/airbyte-integrations/connectors/source-genesys/pyproject.toml +++ b/airbyte-integrations/connectors/source-genesys/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.21" +version = "0.1.22" name = "source-genesys" description = "Source implementation for Genesys." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/genesys.md b/docs/integrations/sources/genesys.md index 37d04076ee10..696edb6bc758 100644 --- a/docs/integrations/sources/genesys.md +++ b/docs/integrations/sources/genesys.md @@ -31,6 +31,7 @@ You can follow the documentation on [API credentials](https://developer.genesys. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------- | +| 0.1.22 | 2024-11-04 | [48221](https://github.com/airbytehq/airbyte/pull/48221) | Update dependencies | | 0.1.21 | 2024-10-28 | [47056](https://github.com/airbytehq/airbyte/pull/47056) | Update dependencies | | 0.1.20 | 2024-10-12 | [46776](https://github.com/airbytehq/airbyte/pull/46776) | Update dependencies | | 0.1.19 | 2024-10-05 | [46466](https://github.com/airbytehq/airbyte/pull/46466) | Update dependencies | From ceeb9ae2e507bd39a1d157bcb03c4dced69e9724 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:42 +0200 Subject: [PATCH 643/808] =?UTF-8?q?=F0=9F=90=99=20source-xsolla:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#48219)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-xsolla/metadata.yaml | 4 ++-- docs/integrations/sources/xsolla.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-xsolla/metadata.yaml b/airbyte-integrations/connectors/source-xsolla/metadata.yaml index ca88d21af590..b066d58be43f 100644 --- a/airbyte-integrations/connectors/source-xsolla/metadata.yaml +++ b/airbyte-integrations/connectors/source-xsolla/metadata.yaml @@ -13,10 +13,10 @@ data: enabled: false packageName: airbyte-source-xsolla connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorType: source definitionId: 6ff73a16-05a8-4f7e-8771-5433764678f1 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-xsolla githubIssueLabel: source-xsolla icon: icon.svg diff --git a/docs/integrations/sources/xsolla.md b/docs/integrations/sources/xsolla.md index d59d26f69765..f06a827aaecd 100644 --- a/docs/integrations/sources/xsolla.md +++ b/docs/integrations/sources/xsolla.md @@ -26,6 +26,7 @@ The Xsolla Airbyte Connector enables seamless integration between Xsolla and var | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48219](https://github.com/airbytehq/airbyte/pull/48219) | Update dependencies | | 0.0.2 | 2024-10-28 | [47595](https://github.com/airbytehq/airbyte/pull/47595) | Update dependencies | | 0.0.1 | 2024-10-01 | | Initial release by [@avirajsingh7](https://github.com/avirajsingh7) via Connector Builder | From c71a81bb96d48492fcba023c4e9547016a0958cd Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:47 +0200 Subject: [PATCH 644/808] =?UTF-8?q?=F0=9F=90=99=20source-convertkit:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48217)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-convertkit/metadata.yaml | 4 ++-- docs/integrations/sources/convertkit.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-convertkit/metadata.yaml b/airbyte-integrations/connectors/source-convertkit/metadata.yaml index d04a39bbd6e3..0a69d7318332 100644 --- a/airbyte-integrations/connectors/source-convertkit/metadata.yaml +++ b/airbyte-integrations/connectors/source-convertkit/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: be9ee02f-6efe-4970-979b-95f797a37188 - dockerImageTag: 0.2.3 + dockerImageTag: 0.2.4 dockerRepository: airbyte/source-convertkit githubIssueLabel: source-convertkit icon: convertkit.svg @@ -39,5 +39,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/convertkit.md b/docs/integrations/sources/convertkit.md index 8dfb75302ce3..88c2ca6eb500 100644 --- a/docs/integrations/sources/convertkit.md +++ b/docs/integrations/sources/convertkit.md @@ -36,6 +36,7 @@ The connector has a rate limit of no more than 120 requests over a rolling 60 se | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------- | +| 0.2.4 | 2024-11-04 | [48217](https://github.com/airbytehq/airbyte/pull/48217) | Update dependencies | | 0.2.3 | 2024-10-29 | [47764](https://github.com/airbytehq/airbyte/pull/47764) | Update dependencies | | 0.2.2 | 2024-10-28 | [47619](https://github.com/airbytehq/airbyte/pull/47619) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | From 11978454e0389b1c2b5041b4c9137164c613bbfc Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:50 +0200 Subject: [PATCH 645/808] =?UTF-8?q?=F0=9F=90=99=20source-concord:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48215)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-concord/metadata.yaml | 4 ++-- docs/integrations/sources/concord.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-concord/metadata.yaml b/airbyte-integrations/connectors/source-concord/metadata.yaml index 2f1ba9ddb465..ea5716569d67 100644 --- a/airbyte-integrations/connectors/source-concord/metadata.yaml +++ b/airbyte-integrations/connectors/source-concord/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-concord connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: dc50b4e6-862e-4b49-8ed7-3c988f4b1db0 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-concord githubIssueLabel: source-concord icon: icon.svg diff --git a/docs/integrations/sources/concord.md b/docs/integrations/sources/concord.md index 9ac539a61060..32712ffc9173 100644 --- a/docs/integrations/sources/concord.md +++ b/docs/integrations/sources/concord.md @@ -32,6 +32,7 @@ The API is accessible from two environments, sandbox and production. You can lea | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [48215](https://github.com/airbytehq/airbyte/pull/48215) | Update dependencies | | 0.0.1 | 2024-10-16 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 48936dbafaca11d38a670cd59783f0fe2764302c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:54 +0200 Subject: [PATCH 646/808] =?UTF-8?q?=F0=9F=90=99=20source-you-need-a-budget?= =?UTF-8?q?-ynab:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48213)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-you-need-a-budget-ynab/metadata.yaml | 4 ++-- docs/integrations/sources/you-need-a-budget-ynab.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-you-need-a-budget-ynab/metadata.yaml b/airbyte-integrations/connectors/source-you-need-a-budget-ynab/metadata.yaml index 1e698debcbb9..c5ab4e670951 100644 --- a/airbyte-integrations/connectors/source-you-need-a-budget-ynab/metadata.yaml +++ b/airbyte-integrations/connectors/source-you-need-a-budget-ynab/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-you-need-a-budget-ynab connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: a60d9f16-e0bd-459f-9419-fd47f9788be1 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-you-need-a-budget-ynab githubIssueLabel: source-you-need-a-budget-ynab icon: icon.svg diff --git a/docs/integrations/sources/you-need-a-budget-ynab.md b/docs/integrations/sources/you-need-a-budget-ynab.md index 7d29ea7a0d6e..72bbd81efae4 100644 --- a/docs/integrations/sources/you-need-a-budget-ynab.md +++ b/docs/integrations/sources/you-need-a-budget-ynab.md @@ -24,6 +24,7 @@ Replicates the budgets, accounts, categories, payees, transactions, and category | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [48213](https://github.com/airbytehq/airbyte/pull/48213) | Update dependencies | | 0.0.2 | 2024-10-29 | [47760](https://github.com/airbytehq/airbyte/pull/47760) | Update dependencies | | 0.0.1 | 2024-09-25 | | Initial release by [@bnmry](https://github.com/bnmry) via Connector Builder | From ee77d880df803656321ff8dc02379b931d97e607 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:37:57 +0200 Subject: [PATCH 647/808] =?UTF-8?q?=F0=9F=90=99=20source-braintree:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48212)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-braintree/metadata.yaml | 2 +- .../connectors/source-braintree/poetry.lock | 18 +++++++++--------- .../connectors/source-braintree/pyproject.toml | 2 +- docs/integrations/sources/braintree.md | 1 + 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/airbyte-integrations/connectors/source-braintree/metadata.yaml b/airbyte-integrations/connectors/source-braintree/metadata.yaml index b5d07fa241a5..927c2c098368 100644 --- a/airbyte-integrations/connectors/source-braintree/metadata.yaml +++ b/airbyte-integrations/connectors/source-braintree/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: 63cea06f-1c75-458d-88fe-ad48c7cb27fd - dockerImageTag: 0.3.20 + dockerImageTag: 0.3.21 dockerRepository: airbyte/source-braintree documentationUrl: https://docs.airbyte.com/integrations/sources/braintree githubIssueLabel: source-braintree diff --git a/airbyte-integrations/connectors/source-braintree/poetry.lock b/airbyte-integrations/connectors/source-braintree/poetry.lock index 8d1cf6f51f83..d00a3d1f668e 100644 --- a/airbyte-integrations/connectors/source-braintree/poetry.lock +++ b/airbyte-integrations/connectors/source-braintree/poetry.lock @@ -102,13 +102,13 @@ files = [ [[package]] name = "braintree" -version = "4.30.0" +version = "4.31.0" description = "Braintree Python Library" optional = false python-versions = "*" files = [ - {file = "braintree-4.30.0-py2.py3-none-any.whl", hash = "sha256:a0a754439155c820e14db9e637d648a3c848be895c00c941bc1e0f9521bce3d3"}, - {file = "braintree-4.30.0.tar.gz", hash = "sha256:3b7fa20d1eb76737da4dd170c09df39d6b6eeb3625ed68a6520bbbe5aa66c0fb"}, + {file = "braintree-4.31.0-py2.py3-none-any.whl", hash = "sha256:426011f92418703809007f387c3ce13b03535ad6f67244171ff2b417369e3693"}, + {file = "braintree-4.31.0.tar.gz", hash = "sha256:de383469ae0f824efba7e2d726c13927090d6a9305e1c49de1cb258b2868d43d"}, ] [package.dependencies] @@ -919,23 +919,23 @@ yaml = ["pyyaml (>=6.0.1)"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-braintree/pyproject.toml b/airbyte-integrations/connectors/source-braintree/pyproject.toml index 35c60e1503e9..4f1c12c8905c 100644 --- a/airbyte-integrations/connectors/source-braintree/pyproject.toml +++ b/airbyte-integrations/connectors/source-braintree/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.20" +version = "0.3.21" name = "source-braintree" description = "Source implementation for Braintree." authors = ["Airbyte "] diff --git a/docs/integrations/sources/braintree.md b/docs/integrations/sources/braintree.md index d71b0d6ccb13..a23d6fb26f40 100644 --- a/docs/integrations/sources/braintree.md +++ b/docs/integrations/sources/braintree.md @@ -72,6 +72,7 @@ The Braintree connector should not run into Braintree API limitations under norm | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------- | +| 0.3.21 | 2024-11-04 | [48212](https://github.com/airbytehq/airbyte/pull/48212) | Update dependencies | | 0.3.20 | 2024-10-21 | [47062](https://github.com/airbytehq/airbyte/pull/47062) | Update dependencies | | 0.3.19 | 2024-10-12 | [46849](https://github.com/airbytehq/airbyte/pull/46849) | Update dependencies | | 0.3.18 | 2024-10-05 | [46496](https://github.com/airbytehq/airbyte/pull/46496) | Update dependencies | From 7e59dbe08d1d226a6ff657f7d9d1f812fa15954c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:38:02 +0200 Subject: [PATCH 648/808] =?UTF-8?q?=F0=9F=90=99=20source-pandadoc:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48210)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pandadoc/metadata.yaml | 4 ++-- docs/integrations/sources/pandadoc.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-pandadoc/metadata.yaml b/airbyte-integrations/connectors/source-pandadoc/metadata.yaml index 542c24e0c9cf..1e4b46c2fe4f 100644 --- a/airbyte-integrations/connectors/source-pandadoc/metadata.yaml +++ b/airbyte-integrations/connectors/source-pandadoc/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-pandadoc connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: c5719626-6fc3-48e6-8f1d-ca5d4ecd2b5c - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-pandadoc githubIssueLabel: source-pandadoc icon: icon.svg diff --git a/docs/integrations/sources/pandadoc.md b/docs/integrations/sources/pandadoc.md index 942265df6488..e5f22cc4d35d 100644 --- a/docs/integrations/sources/pandadoc.md +++ b/docs/integrations/sources/pandadoc.md @@ -33,6 +33,7 @@ Airbyte connector for PandaDoc allows users to extract data from PandaDoc and in | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48210](https://github.com/airbytehq/airbyte/pull/48210) | Update dependencies | | 0.0.2 | 2024-10-29 | [47911](https://github.com/airbytehq/airbyte/pull/47911) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 1877bb7313b9be468067186b4eb407eaee5a332a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:38:08 +0200 Subject: [PATCH 649/808] =?UTF-8?q?=F0=9F=90=99=20destination-meilisearch:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48207)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-meilisearch/metadata.yaml | 2 +- .../destination-meilisearch/poetry.lock | 124 +++++++++--------- .../destination-meilisearch/pyproject.toml | 2 +- docs/integrations/destinations/meilisearch.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml b/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml index 2868612d3256..a65570be7143 100644 --- a/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml +++ b/airbyte-integrations/connectors/destination-meilisearch/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: destination definitionId: af7c921e-5892-4ff2-b6c1-4a5ab258fb7e - dockerImageTag: 1.0.5 + dockerImageTag: 1.0.6 dockerRepository: airbyte/destination-meilisearch githubIssueLabel: destination-meilisearch icon: meilisearch.svg diff --git a/airbyte-integrations/connectors/destination-meilisearch/poetry.lock b/airbyte-integrations/connectors/destination-meilisearch/poetry.lock index ffb1d190839b..884933134b5b 100644 --- a/airbyte-integrations/connectors/destination-meilisearch/poetry.lock +++ b/airbyte-integrations/connectors/destination-meilisearch/poetry.lock @@ -697,13 +697,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -800,69 +800,69 @@ requests = "*" [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml b/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml index 5689b72af17e..ce0dba20a846 100644 --- a/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml +++ b/airbyte-integrations/connectors/destination-meilisearch/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-meilisearch" -version = "1.0.5" +version = "1.0.6" description = "Airbyte destination implementation for Meilisearch." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/meilisearch.md b/docs/integrations/destinations/meilisearch.md index 71ee3252ff85..2d93fe47a56f 100644 --- a/docs/integrations/destinations/meilisearch.md +++ b/docs/integrations/destinations/meilisearch.md @@ -48,6 +48,7 @@ the MeiliSearch docs. | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------- | +| 1.0.6 | 2024-11-04 | [48207](https://github.com/airbytehq/airbyte/pull/48207) | Update dependencies | | 1.0.5 | 2024-10-29 | [47889](https://github.com/airbytehq/airbyte/pull/47889) | Update dependencies | | 1.0.4 | 2024-10-28 | [47646](https://github.com/airbytehq/airbyte/pull/47646) | Update dependencies | | 1.0.3 | 2024-07-08 | [#TODO](https://github.com/airbytehq/airbyte/pull/TODO) | Switching to Poetry and base image | From 3876cd13e8d0b3b5ee7273ff59fd4e435dc62fbf Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:38:11 +0200 Subject: [PATCH 650/808] =?UTF-8?q?=F0=9F=90=99=20source-google-analytics-?= =?UTF-8?q?v4:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48206)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-google-analytics-v4/metadata.yaml | 2 +- .../source-google-analytics-v4/poetry.lock | 124 +++++++++--------- .../source-google-analytics-v4/pyproject.toml | 2 +- .../sources/google-analytics-v4.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-analytics-v4/metadata.yaml b/airbyte-integrations/connectors/source-google-analytics-v4/metadata.yaml index 3c782805bff1..4762ad64bf4f 100644 --- a/airbyte-integrations/connectors/source-google-analytics-v4/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-analytics-v4/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: eff3616a-f9c3-11eb-9a03-0242ac130003 - dockerImageTag: 0.4.1 + dockerImageTag: 0.4.2 dockerRepository: airbyte/source-google-analytics-v4 documentationUrl: https://docs.airbyte.com/integrations/sources/google-analytics-v4 githubIssueLabel: source-google-analytics-v4 diff --git a/airbyte-integrations/connectors/source-google-analytics-v4/poetry.lock b/airbyte-integrations/connectors/source-google-analytics-v4/poetry.lock index 9d8da31a8441..766a3d4207b4 100644 --- a/airbyte-integrations/connectors/source-google-analytics-v4/poetry.lock +++ b/airbyte-integrations/connectors/source-google-analytics-v4/poetry.lock @@ -681,13 +681,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -769,69 +769,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-google-analytics-v4/pyproject.toml b/airbyte-integrations/connectors/source-google-analytics-v4/pyproject.toml index 22ad38fbc137..47c254ddd018 100644 --- a/airbyte-integrations/connectors/source-google-analytics-v4/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-analytics-v4/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.1" +version = "0.4.2" name = "source-google-analytics-v4" description = "Source implementation for Google Analytics V4." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-analytics-v4.md b/docs/integrations/sources/google-analytics-v4.md index 09f56216e3a5..9fd7951ed054 100644 --- a/docs/integrations/sources/google-analytics-v4.md +++ b/docs/integrations/sources/google-analytics-v4.md @@ -276,6 +276,7 @@ The Google Analytics connector should not run into the "requests per 100 seconds | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------- | +| 0.4.2 | 2024-11-04 | [48206](https://github.com/airbytehq/airbyte/pull/48206) | Update dependencies | | 0.4.1 | 2024-10-29 | [47766](https://github.com/airbytehq/airbyte/pull/47766) | Update dependencies | | 0.4.0 | 2024-07-01 | [40244](https://github.com/airbytehq/airbyte/pull/40244) | Deprecate the connector | | 0.3.3 | 2024-06-21 | [39940](https://github.com/airbytehq/airbyte/pull/39940) | Update dependencies | From cd0fff343298df45c6de25dbc195710422b6b4d0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:38:13 +0200 Subject: [PATCH 651/808] =?UTF-8?q?=F0=9F=90=99=20source-chargedesk:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48205)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chargedesk/metadata.yaml | 4 ++-- docs/integrations/sources/chargedesk.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-chargedesk/metadata.yaml b/airbyte-integrations/connectors/source-chargedesk/metadata.yaml index eab427a58169..ae8d6f1cf7c7 100644 --- a/airbyte-integrations/connectors/source-chargedesk/metadata.yaml +++ b/airbyte-integrations/connectors/source-chargedesk/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-chargedesk connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: cd803254-3d2c-4613-a870-20d205ee6267 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-chargedesk githubIssueLabel: source-chargedesk icon: icon.svg diff --git a/docs/integrations/sources/chargedesk.md b/docs/integrations/sources/chargedesk.md index a548eae020d0..71677efd6498 100644 --- a/docs/integrations/sources/chargedesk.md +++ b/docs/integrations/sources/chargedesk.md @@ -30,6 +30,7 @@ You can find more about the API here https://chargedesk.com/api-docs | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.4 | 2024-11-04 | [48205](https://github.com/airbytehq/airbyte/pull/48205) | Update dependencies | | 0.0.3 | 2024-10-29 | [47832](https://github.com/airbytehq/airbyte/pull/47832) | Update dependencies | | 0.0.2 | 2024-10-28 | [47560](https://github.com/airbytehq/airbyte/pull/47560) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 21b1f0b875a10aa793245a460eaa1044e0e77b80 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:38:46 +0200 Subject: [PATCH 652/808] =?UTF-8?q?=F0=9F=90=99=20source-teamtailor:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47909)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-teamtailor/metadata.yaml | 4 ++-- docs/integrations/sources/teamtailor.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-teamtailor/metadata.yaml b/airbyte-integrations/connectors/source-teamtailor/metadata.yaml index c2e3c5b34681..d66120f44285 100644 --- a/airbyte-integrations/connectors/source-teamtailor/metadata.yaml +++ b/airbyte-integrations/connectors/source-teamtailor/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-teamtailor connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 6d811b1b-5b94-4d5a-a74a-c2e46e5cb87c - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-teamtailor githubIssueLabel: source-teamtailor icon: icon.svg diff --git a/docs/integrations/sources/teamtailor.md b/docs/integrations/sources/teamtailor.md index e14befe8dfcc..b97798eacf68 100644 --- a/docs/integrations/sources/teamtailor.md +++ b/docs/integrations/sources/teamtailor.md @@ -45,6 +45,7 @@ Make sure to have the add-ons installed in your account for using the `nps-respo | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [47909](https://github.com/airbytehq/airbyte/pull/47909) | Update dependencies | | 0.0.2 | 2024-10-28 | [47540](https://github.com/airbytehq/airbyte/pull/47540) | Update dependencies | | 0.0.1 | 2024-10-14 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From 95ff480f7e0fb7ed5cbc8be4e39832fbb3aef25a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:38:51 +0200 Subject: [PATCH 653/808] =?UTF-8?q?=F0=9F=90=99=20source-pennylane:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47902)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pennylane/metadata.yaml | 4 ++-- docs/integrations/sources/pennylane.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-pennylane/metadata.yaml b/airbyte-integrations/connectors/source-pennylane/metadata.yaml index febde32d6307..b33eedc28bf7 100644 --- a/airbyte-integrations/connectors/source-pennylane/metadata.yaml +++ b/airbyte-integrations/connectors/source-pennylane/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-pennylane connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: b9e4a306-4e3b-4387-a01d-c00d03d8c28c - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-pennylane githubIssueLabel: source-pennylane icon: icon.svg diff --git a/docs/integrations/sources/pennylane.md b/docs/integrations/sources/pennylane.md index 12aac8154815..f28a6ad48103 100644 --- a/docs/integrations/sources/pennylane.md +++ b/docs/integrations/sources/pennylane.md @@ -27,6 +27,7 @@ | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [47902](https://github.com/airbytehq/airbyte/pull/47902) | Update dependencies | | 0.0.2 | 2024-10-28 | [47536](https://github.com/airbytehq/airbyte/pull/47536) | Update dependencies | | 0.0.1 | 2024-08-21 | | Initial release by natikgadzhi via Connector Builder | From 12c680257cf13cd102aa4c45e5dc25dc50fb29f5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:38:54 +0200 Subject: [PATCH 654/808] =?UTF-8?q?=F0=9F=90=99=20source-okta:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-04]=20(#47900)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-okta/metadata.yaml | 2 +- .../connectors/source-okta/poetry.lock | 136 +++++++++--------- .../connectors/source-okta/pyproject.toml | 2 +- docs/integrations/sources/okta.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-okta/metadata.yaml b/airbyte-integrations/connectors/source-okta/metadata.yaml index 73ec5fa8045b..5eb81c69fcd6 100644 --- a/airbyte-integrations/connectors/source-okta/metadata.yaml +++ b/airbyte-integrations/connectors/source-okta/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1d4fdb25-64fc-4569-92da-fcdca79a8372 - dockerImageTag: 0.3.10 + dockerImageTag: 0.3.11 dockerRepository: airbyte/source-okta githubIssueLabel: source-okta icon: icon.svg diff --git a/airbyte-integrations/connectors/source-okta/poetry.lock b/airbyte-integrations/connectors/source-okta/poetry.lock index 17e1b3f16e04..1d39ad8b2d79 100644 --- a/airbyte-integrations/connectors/source-okta/poetry.lock +++ b/airbyte-integrations/connectors/source-okta/poetry.lock @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -767,69 +767,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1285,23 +1285,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-okta/pyproject.toml b/airbyte-integrations/connectors/source-okta/pyproject.toml index de6af65e7afc..79439025510c 100644 --- a/airbyte-integrations/connectors/source-okta/pyproject.toml +++ b/airbyte-integrations/connectors/source-okta/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.10" +version = "0.3.11" name = "source-okta" description = "Source implementation for okta." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/okta.md b/docs/integrations/sources/okta.md index 159ffd0cefa4..ef966f224ad6 100644 --- a/docs/integrations/sources/okta.md +++ b/docs/integrations/sources/okta.md @@ -86,6 +86,7 @@ The connector is restricted by normal Okta [requests limitation](https://develop | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------| +| 0.3.11 | 2024-11-04 | [47900](https://github.com/airbytehq/airbyte/pull/47900) | Update dependencies | | 0.3.10 | 2024-10-28 | [47058](https://github.com/airbytehq/airbyte/pull/47058) | Update dependencies | | 0.3.9 | 2024-10-12 | [46804](https://github.com/airbytehq/airbyte/pull/46804) | Update dependencies | | 0.3.8 | 2024-10-05 | [46481](https://github.com/airbytehq/airbyte/pull/46481) | Update dependencies | From 3b2fab617553f10747911b6bede842aaff42d59e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:39:02 +0200 Subject: [PATCH 655/808] =?UTF-8?q?=F0=9F=90=99=20source-coassemble:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47865)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-coassemble/metadata.yaml | 4 ++-- docs/integrations/sources/coassemble.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-coassemble/metadata.yaml b/airbyte-integrations/connectors/source-coassemble/metadata.yaml index 9fb55b2b49c7..acd043200787 100644 --- a/airbyte-integrations/connectors/source-coassemble/metadata.yaml +++ b/airbyte-integrations/connectors/source-coassemble/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-coassemble connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 85999b05-fae0-4312-a3ae-f4987f50d434 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-coassemble githubIssueLabel: source-coassemble icon: icon.svg diff --git a/docs/integrations/sources/coassemble.md b/docs/integrations/sources/coassemble.md index e7744cd47649..fb5559b33f53 100644 --- a/docs/integrations/sources/coassemble.md +++ b/docs/integrations/sources/coassemble.md @@ -26,6 +26,7 @@ See the [Coassemble API docs](https://developers.coassemble.com/get-started) for | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [47865](https://github.com/airbytehq/airbyte/pull/47865) | Update dependencies | | 0.0.2 | 2024-10-28 | [47526](https://github.com/airbytehq/airbyte/pull/47526) | Update dependencies | | 0.0.1 | 2024-09-19 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 17b7e7ec7f871da59ca1f6755f8c9e4f630aafbe Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:39:09 +0200 Subject: [PATCH 656/808] =?UTF-8?q?=F0=9F=90=99=20source-savvycal:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47816)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-savvycal/metadata.yaml | 4 ++-- docs/integrations/sources/savvycal.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-savvycal/metadata.yaml b/airbyte-integrations/connectors/source-savvycal/metadata.yaml index dd1140887566..51768fa0d834 100644 --- a/airbyte-integrations/connectors/source-savvycal/metadata.yaml +++ b/airbyte-integrations/connectors/source-savvycal/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-savvycal connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: a554ed06-74e2-4c60-9510-d63f7dc463b6 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-savvycal githubIssueLabel: source-savvycal icon: icon.svg diff --git a/docs/integrations/sources/savvycal.md b/docs/integrations/sources/savvycal.md index e560228ea746..848875364355 100644 --- a/docs/integrations/sources/savvycal.md +++ b/docs/integrations/sources/savvycal.md @@ -21,6 +21,7 @@ Sync your scheduled meetings and scheduling links from SavvyCal! | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [47816](https://github.com/airbytehq/airbyte/pull/47816) | Update dependencies | | 0.0.2 | 2024-10-28 | [47558](https://github.com/airbytehq/airbyte/pull/47558) | Update dependencies | | 0.0.1 | 2024-09-01 | | Initial release by [@natikgadzhi](https://github.com/natikgadzhi) via Connector Builder | From 9ffea6b0686e9703571b6c310c014468814730ab Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:39:23 +0200 Subject: [PATCH 657/808] =?UTF-8?q?=F0=9F=90=99=20source-testrail:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47773)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-testrail/metadata.yaml | 4 ++-- docs/integrations/sources/testrail.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-testrail/metadata.yaml b/airbyte-integrations/connectors/source-testrail/metadata.yaml index ccaaa5ecbf53..aba8a00b8f5d 100644 --- a/airbyte-integrations/connectors/source-testrail/metadata.yaml +++ b/airbyte-integrations/connectors/source-testrail/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-testrail connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: ab49ae02-a22d-4c9a-b0be-f260e61a4011 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-testrail githubIssueLabel: source-testrail icon: icon.svg diff --git a/docs/integrations/sources/testrail.md b/docs/integrations/sources/testrail.md index cb1eb69397d7..c53aa5dbaeb5 100644 --- a/docs/integrations/sources/testrail.md +++ b/docs/integrations/sources/testrail.md @@ -45,6 +45,7 @@ Visit `https://support.testrail.com/hc/en-us/articles/7077196481428-Attachments` | Version | Date | Pull Request | Subject | | ------------------ | ------------ | -- | ---------------- | +| 0.0.3 | 2024-11-04 | [47773](https://github.com/airbytehq/airbyte/pull/47773) | Update dependencies | | 0.0.2 | 2024-10-28 | [47630](https://github.com/airbytehq/airbyte/pull/47630) | Update dependencies | | 0.0.1 | 2024-09-29 | [46250](https://github.com/airbytehq/airbyte/pull/46250) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 0b38f597cc6caaaa1fcf979512a6f5fd80af63f7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:40:03 +0200 Subject: [PATCH 658/808] =?UTF-8?q?=F0=9F=90=99=20source-looker:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#47086)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-looker/metadata.yaml | 2 +- .../connectors/source-looker/poetry.lock | 273 +++++++++--------- .../connectors/source-looker/pyproject.toml | 2 +- docs/integrations/sources/looker.md | 1 + 4 files changed, 140 insertions(+), 138 deletions(-) diff --git a/airbyte-integrations/connectors/source-looker/metadata.yaml b/airbyte-integrations/connectors/source-looker/metadata.yaml index b76f7245fcc2..365e46e00a30 100644 --- a/airbyte-integrations/connectors/source-looker/metadata.yaml +++ b/airbyte-integrations/connectors/source-looker/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 00405b19-9768-4e0c-b1ae-9fc2ee2b2a8c - dockerImageTag: 1.0.13 + dockerImageTag: 1.0.14 dockerRepository: airbyte/source-looker githubIssueLabel: source-looker icon: looker.svg diff --git a/airbyte-integrations/connectors/source-looker/poetry.lock b/airbyte-integrations/connectors/source-looker/poetry.lock index a7ace37cb722..b1a0b7bbe7cd 100644 --- a/airbyte-integrations/connectors/source-looker/poetry.lock +++ b/airbyte-integrations/connectors/source-looker/poetry.lock @@ -69,13 +69,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +86,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -707,13 +707,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -728,72 +728,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -823,68 +823,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1495,23 +1496,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1563,13 +1564,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-looker/pyproject.toml b/airbyte-integrations/connectors/source-looker/pyproject.toml index d00d04ef6bc8..70fb3243e980 100644 --- a/airbyte-integrations/connectors/source-looker/pyproject.toml +++ b/airbyte-integrations/connectors/source-looker/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.13" +version = "1.0.14" name = "source-looker" description = "Source implementation for looker." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/looker.md b/docs/integrations/sources/looker.md index eca0729189d2..777ef323d818 100644 --- a/docs/integrations/sources/looker.md +++ b/docs/integrations/sources/looker.md @@ -85,6 +85,7 @@ Please read the "API3 Key" section in [Looker's information for users docs](http | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------- | +| 1.0.14 | 2024-11-04 | [47086](https://github.com/airbytehq/airbyte/pull/47086) | Update dependencies | | 1.0.13 | 2024-10-12 | [46805](https://github.com/airbytehq/airbyte/pull/46805) | Update dependencies | | 1.0.12 | 2024-10-05 | [46397](https://github.com/airbytehq/airbyte/pull/46397) | Update dependencies | | 1.0.11 | 2024-09-28 | [46191](https://github.com/airbytehq/airbyte/pull/46191) | Update dependencies | From 5b07ef53241b85dae735ea6952c47f14dcce1e58 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 02:40:08 +0200 Subject: [PATCH 659/808] =?UTF-8?q?=F0=9F=90=99=20source-firebase-realtime?= =?UTF-8?q?-database:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#470?= =?UTF-8?q?41)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../metadata.yaml | 2 +- .../poetry.lock | 439 +++++++++--------- .../pyproject.toml | 2 +- .../sources/firebase-realtime-database.md | 1 + 4 files changed, 223 insertions(+), 221 deletions(-) diff --git a/airbyte-integrations/connectors/source-firebase-realtime-database/metadata.yaml b/airbyte-integrations/connectors/source-firebase-realtime-database/metadata.yaml index 2b993a4b4588..c7d2ae3cdc3d 100644 --- a/airbyte-integrations/connectors/source-firebase-realtime-database/metadata.yaml +++ b/airbyte-integrations/connectors/source-firebase-realtime-database/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: database connectorType: source definitionId: acb5f973-a565-441e-992f-4946f3e65662 - dockerImageTag: 0.1.25 + dockerImageTag: 0.1.26 dockerRepository: airbyte/source-firebase-realtime-database githubIssueLabel: source-firebase-realtime-database license: MIT diff --git a/airbyte-integrations/connectors/source-firebase-realtime-database/poetry.lock b/airbyte-integrations/connectors/source-firebase-realtime-database/poetry.lock index 7840074e4a0a..2fe8c4e75225 100644 --- a/airbyte-integrations/connectors/source-firebase-realtime-database/poetry.lock +++ b/airbyte-integrations/connectors/source-firebase-realtime-database/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -526,13 +526,13 @@ files = [ [[package]] name = "google-api-core" -version = "2.21.0" +version = "2.22.0" description = "Google API client core library" optional = false python-versions = ">=3.7" files = [ - {file = "google_api_core-2.21.0-py3-none-any.whl", hash = "sha256:6869eacb2a37720380ba5898312af79a4d30b8bca1548fb4093e0697dc4bdf5d"}, - {file = "google_api_core-2.21.0.tar.gz", hash = "sha256:4a152fd11a9f774ea606388d423b68aa7e6d6a0ffe4c8266f74979613ec09f81"}, + {file = "google_api_core-2.22.0-py3-none-any.whl", hash = "sha256:a6652b6bd51303902494998626653671703c420f6f4c88cfd3f50ed723e9d021"}, + {file = "google_api_core-2.22.0.tar.gz", hash = "sha256:26f8d76b96477db42b55fd02a33aae4a42ec8b86b98b94969b7333a2c828bf35"}, ] [package.dependencies] @@ -558,13 +558,13 @@ grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] [[package]] name = "google-api-python-client" -version = "2.149.0" +version = "2.151.0" description = "Google API Client Library for Python" optional = false python-versions = ">=3.7" files = [ - {file = "google_api_python_client-2.149.0-py2.py3-none-any.whl", hash = "sha256:1a5232e9cfed8c201799d9327e4d44dc7ea7daa3c6e1627fca41aa201539c0da"}, - {file = "google_api_python_client-2.149.0.tar.gz", hash = "sha256:b9d68c6b14ec72580d66001bd33c5816b78e2134b93ccc5cf8f624516b561750"}, + {file = "google_api_python_client-2.151.0-py2.py3-none-any.whl", hash = "sha256:4427b2f47cd88b0355d540c2c52215f68c337f3bc9d6aae1ceeae4525977504c"}, + {file = "google_api_python_client-2.151.0.tar.gz", hash = "sha256:a9d26d630810ed4631aea21d1de3e42072f98240aaf184a8a1a874a371115034"}, ] [package.dependencies] @@ -750,85 +750,85 @@ grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] [[package]] name = "grpcio" -version = "1.66.2" +version = "1.67.1" description = "HTTP/2-based RPC framework" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio-1.66.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:fe96281713168a3270878255983d2cb1a97e034325c8c2c25169a69289d3ecfa"}, - {file = "grpcio-1.66.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:73fc8f8b9b5c4a03e802b3cd0c18b2b06b410d3c1dcbef989fdeb943bd44aff7"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:03b0b307ba26fae695e067b94cbb014e27390f8bc5ac7a3a39b7723fed085604"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d69ce1f324dc2d71e40c9261d3fdbe7d4c9d60f332069ff9b2a4d8a257c7b2b"}, - {file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05bc2ceadc2529ab0b227b1310d249d95d9001cd106aa4d31e8871ad3c428d73"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ac475e8da31484efa25abb774674d837b343afb78bb3bcdef10f81a93e3d6bf"}, - {file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0be4e0490c28da5377283861bed2941d1d20ec017ca397a5df4394d1c31a9b50"}, - {file = "grpcio-1.66.2-cp310-cp310-win32.whl", hash = "sha256:4e504572433f4e72b12394977679161d495c4c9581ba34a88d843eaf0f2fbd39"}, - {file = "grpcio-1.66.2-cp310-cp310-win_amd64.whl", hash = "sha256:2018b053aa15782db2541ca01a7edb56a0bf18c77efed975392583725974b249"}, - {file = "grpcio-1.66.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:2335c58560a9e92ac58ff2bc5649952f9b37d0735608242973c7a8b94a6437d8"}, - {file = "grpcio-1.66.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45a3d462826f4868b442a6b8fdbe8b87b45eb4f5b5308168c156b21eca43f61c"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:a9539f01cb04950fd4b5ab458e64a15f84c2acc273670072abe49a3f29bbad54"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce89f5876662f146d4c1f695dda29d4433a5d01c8681fbd2539afff535da14d4"}, - {file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d25a14af966438cddf498b2e338f88d1c9706f3493b1d73b93f695c99c5f0e2a"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6001e575b8bbd89eee11960bb640b6da6ae110cf08113a075f1e2051cc596cae"}, - {file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ea1d062c9230278793820146c95d038dc0f468cbdd172eec3363e42ff1c7d01"}, - {file = "grpcio-1.66.2-cp311-cp311-win32.whl", hash = "sha256:38b68498ff579a3b1ee8f93a05eb48dc2595795f2f62716e797dc24774c1aaa8"}, - {file = "grpcio-1.66.2-cp311-cp311-win_amd64.whl", hash = "sha256:6851de821249340bdb100df5eacfecfc4e6075fa85c6df7ee0eb213170ec8e5d"}, - {file = "grpcio-1.66.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:802d84fd3d50614170649853d121baaaa305de7b65b3e01759247e768d691ddf"}, - {file = "grpcio-1.66.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:80fd702ba7e432994df208f27514280b4b5c6843e12a48759c9255679ad38db8"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:12fda97ffae55e6526825daf25ad0fa37483685952b5d0f910d6405c87e3adb6"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:950da58d7d80abd0ea68757769c9db0a95b31163e53e5bb60438d263f4bed7b7"}, - {file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e636ce23273683b00410f1971d209bf3689238cf5538d960adc3cdfe80dd0dbd"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a917d26e0fe980b0ac7bfcc1a3c4ad6a9a4612c911d33efb55ed7833c749b0ee"}, - {file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49f0ca7ae850f59f828a723a9064cadbed90f1ece179d375966546499b8a2c9c"}, - {file = "grpcio-1.66.2-cp312-cp312-win32.whl", hash = "sha256:31fd163105464797a72d901a06472860845ac157389e10f12631025b3e4d0453"}, - {file = "grpcio-1.66.2-cp312-cp312-win_amd64.whl", hash = "sha256:ff1f7882e56c40b0d33c4922c15dfa30612f05fb785074a012f7cda74d1c3679"}, - {file = "grpcio-1.66.2-cp313-cp313-linux_armv7l.whl", hash = "sha256:3b00efc473b20d8bf83e0e1ae661b98951ca56111feb9b9611df8efc4fe5d55d"}, - {file = "grpcio-1.66.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1caa38fb22a8578ab8393da99d4b8641e3a80abc8fd52646f1ecc92bcb8dee34"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c408f5ef75cfffa113cacd8b0c0e3611cbfd47701ca3cdc090594109b9fcbaed"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c806852deaedee9ce8280fe98955c9103f62912a5b2d5ee7e3eaa284a6d8d8e7"}, - {file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f145cc21836c332c67baa6fc81099d1d27e266401565bf481948010d6ea32d46"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:73e3b425c1e155730273f73e419de3074aa5c5e936771ee0e4af0814631fb30a"}, - {file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9c509a4f78114cbc5f0740eb3d7a74985fd2eff022971bc9bc31f8bc93e66a3b"}, - {file = "grpcio-1.66.2-cp313-cp313-win32.whl", hash = "sha256:20657d6b8cfed7db5e11b62ff7dfe2e12064ea78e93f1434d61888834bc86d75"}, - {file = "grpcio-1.66.2-cp313-cp313-win_amd64.whl", hash = "sha256:fb70487c95786e345af5e854ffec8cb8cc781bcc5df7930c4fbb7feaa72e1cdf"}, - {file = "grpcio-1.66.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:a18e20d8321c6400185b4263e27982488cb5cdd62da69147087a76a24ef4e7e3"}, - {file = "grpcio-1.66.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:02697eb4a5cbe5a9639f57323b4c37bcb3ab2d48cec5da3dc2f13334d72790dd"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:99a641995a6bc4287a6315989ee591ff58507aa1cbe4c2e70d88411c4dcc0839"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ed71e81782966ffead60268bbda31ea3f725ebf8aa73634d5dda44f2cf3fb9c"}, - {file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbd27c24a4cc5e195a7f56cfd9312e366d5d61b86e36d46bbe538457ea6eb8dd"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d9a9724a156c8ec6a379869b23ba3323b7ea3600851c91489b871e375f710bc8"}, - {file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d8d4732cc5052e92cea2f78b233c2e2a52998ac40cd651f40e398893ad0d06ec"}, - {file = "grpcio-1.66.2-cp38-cp38-win32.whl", hash = "sha256:7b2c86457145ce14c38e5bf6bdc19ef88e66c5fee2c3d83285c5aef026ba93b3"}, - {file = "grpcio-1.66.2-cp38-cp38-win_amd64.whl", hash = "sha256:e88264caad6d8d00e7913996030bac8ad5f26b7411495848cc218bd3a9040b6c"}, - {file = "grpcio-1.66.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:c400ba5675b67025c8a9f48aa846f12a39cf0c44df5cd060e23fda5b30e9359d"}, - {file = "grpcio-1.66.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:66a0cd8ba6512b401d7ed46bb03f4ee455839957f28b8d61e7708056a806ba6a"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:06de8ec0bd71be123eec15b0e0d457474931c2c407869b6c349bd9bed4adbac3"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb57870449dfcfac428afbb5a877829fcb0d6db9d9baa1148705739e9083880e"}, - {file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b672abf90a964bfde2d0ecbce30f2329a47498ba75ce6f4da35a2f4532b7acbc"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad2efdbe90c73b0434cbe64ed372e12414ad03c06262279b104a029d1889d13e"}, - {file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9c3a99c519f4638e700e9e3f83952e27e2ea10873eecd7935823dab0c1c9250e"}, - {file = "grpcio-1.66.2-cp39-cp39-win32.whl", hash = "sha256:78fa51ebc2d9242c0fc5db0feecc57a9943303b46664ad89921f5079e2e4ada7"}, - {file = "grpcio-1.66.2-cp39-cp39-win_amd64.whl", hash = "sha256:728bdf36a186e7f51da73be7f8d09457a03061be848718d0edf000e709418987"}, - {file = "grpcio-1.66.2.tar.gz", hash = "sha256:563588c587b75c34b928bc428548e5b00ea38c46972181a4d8b75ba7e3f24231"}, + {file = "grpcio-1.67.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:8b0341d66a57f8a3119b77ab32207072be60c9bf79760fa609c5609f2deb1f3f"}, + {file = "grpcio-1.67.1-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:f5a27dddefe0e2357d3e617b9079b4bfdc91341a91565111a21ed6ebbc51b22d"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:43112046864317498a33bdc4797ae6a268c36345a910de9b9c17159d8346602f"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9b929f13677b10f63124c1a410994a401cdd85214ad83ab67cc077fc7e480f0"}, + {file = "grpcio-1.67.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7d1797a8a3845437d327145959a2c0c47c05947c9eef5ff1a4c80e499dcc6fa"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0489063974d1452436139501bf6b180f63d4977223ee87488fe36858c5725292"}, + {file = "grpcio-1.67.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9fd042de4a82e3e7aca44008ee2fb5da01b3e5adb316348c21980f7f58adc311"}, + {file = "grpcio-1.67.1-cp310-cp310-win32.whl", hash = "sha256:638354e698fd0c6c76b04540a850bf1db27b4d2515a19fcd5cf645c48d3eb1ed"}, + {file = "grpcio-1.67.1-cp310-cp310-win_amd64.whl", hash = "sha256:608d87d1bdabf9e2868b12338cd38a79969eaf920c89d698ead08f48de9c0f9e"}, + {file = "grpcio-1.67.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:7818c0454027ae3384235a65210bbf5464bd715450e30a3d40385453a85a70cb"}, + {file = "grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ea33986b70f83844cd00814cee4451055cd8cab36f00ac64a31f5bb09b31919e"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c7a01337407dd89005527623a4a72c5c8e2894d22bead0895306b23c6695698f"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b866f73224b0634f4312a4674c1be21b2b4afa73cb20953cbbb73a6b36c3cc"}, + {file = "grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fff78ba10d4250bfc07a01bd6254a6d87dc67f9627adece85c0b2ed754fa96"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8a23cbcc5bb11ea7dc6163078be36c065db68d915c24f5faa4f872c573bb400f"}, + {file = "grpcio-1.67.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1a65b503d008f066e994f34f456e0647e5ceb34cfcec5ad180b1b44020ad4970"}, + {file = "grpcio-1.67.1-cp311-cp311-win32.whl", hash = "sha256:e29ca27bec8e163dca0c98084040edec3bc49afd10f18b412f483cc68c712744"}, + {file = "grpcio-1.67.1-cp311-cp311-win_amd64.whl", hash = "sha256:786a5b18544622bfb1e25cc08402bd44ea83edfb04b93798d85dca4d1a0b5be5"}, + {file = "grpcio-1.67.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:267d1745894200e4c604958da5f856da6293f063327cb049a51fe67348e4f953"}, + {file = "grpcio-1.67.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:85f69fdc1d28ce7cff8de3f9c67db2b0ca9ba4449644488c1e0303c146135ddb"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:f26b0b547eb8d00e195274cdfc63ce64c8fc2d3e2d00b12bf468ece41a0423a0"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4422581cdc628f77302270ff839a44f4c24fdc57887dc2a45b7e53d8fc2376af"}, + {file = "grpcio-1.67.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7616d2ded471231c701489190379e0c311ee0a6c756f3c03e6a62b95a7146e"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8a00efecde9d6fcc3ab00c13f816313c040a28450e5e25739c24f432fc6d3c75"}, + {file = "grpcio-1.67.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:699e964923b70f3101393710793289e42845791ea07565654ada0969522d0a38"}, + {file = "grpcio-1.67.1-cp312-cp312-win32.whl", hash = "sha256:4e7b904484a634a0fff132958dabdb10d63e0927398273917da3ee103e8d1f78"}, + {file = "grpcio-1.67.1-cp312-cp312-win_amd64.whl", hash = "sha256:5721e66a594a6c4204458004852719b38f3d5522082be9061d6510b455c90afc"}, + {file = "grpcio-1.67.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:aa0162e56fd10a5547fac8774c4899fc3e18c1aa4a4759d0ce2cd00d3696ea6b"}, + {file = "grpcio-1.67.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:beee96c8c0b1a75d556fe57b92b58b4347c77a65781ee2ac749d550f2a365dc1"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:a93deda571a1bf94ec1f6fcda2872dad3ae538700d94dc283c672a3b508ba3af"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6f255980afef598a9e64a24efce87b625e3e3c80a45162d111a461a9f92955"}, + {file = "grpcio-1.67.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e838cad2176ebd5d4a8bb03955138d6589ce9e2ce5d51c3ada34396dbd2dba8"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a6703916c43b1d468d0756c8077b12017a9fcb6a1ef13faf49e67d20d7ebda62"}, + {file = "grpcio-1.67.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:917e8d8994eed1d86b907ba2a61b9f0aef27a2155bca6cbb322430fc7135b7bb"}, + {file = "grpcio-1.67.1-cp313-cp313-win32.whl", hash = "sha256:e279330bef1744040db8fc432becc8a727b84f456ab62b744d3fdb83f327e121"}, + {file = "grpcio-1.67.1-cp313-cp313-win_amd64.whl", hash = "sha256:fa0c739ad8b1996bd24823950e3cb5152ae91fca1c09cc791190bf1627ffefba"}, + {file = "grpcio-1.67.1-cp38-cp38-linux_armv7l.whl", hash = "sha256:178f5db771c4f9a9facb2ab37a434c46cb9be1a75e820f187ee3d1e7805c4f65"}, + {file = "grpcio-1.67.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0f3e49c738396e93b7ba9016e153eb09e0778e776df6090c1b8c91877cc1c426"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:24e8a26dbfc5274d7474c27759b54486b8de23c709d76695237515bc8b5baeab"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b6c16489326d79ead41689c4b84bc40d522c9a7617219f4ad94bc7f448c5085"}, + {file = "grpcio-1.67.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e6a4dcf5af7bbc36fd9f81c9f372e8ae580870a9e4b6eafe948cd334b81cf3"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:95b5f2b857856ed78d72da93cd7d09b6db8ef30102e5e7fe0961fe4d9f7d48e8"}, + {file = "grpcio-1.67.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b49359977c6ec9f5d0573ea4e0071ad278ef905aa74e420acc73fd28ce39e9ce"}, + {file = "grpcio-1.67.1-cp38-cp38-win32.whl", hash = "sha256:f5b76ff64aaac53fede0cc93abf57894ab2a7362986ba22243d06218b93efe46"}, + {file = "grpcio-1.67.1-cp38-cp38-win_amd64.whl", hash = "sha256:804c6457c3cd3ec04fe6006c739579b8d35c86ae3298ffca8de57b493524b771"}, + {file = "grpcio-1.67.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:a25bdea92b13ff4d7790962190bf6bf5c4639876e01c0f3dda70fc2769616335"}, + {file = "grpcio-1.67.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cdc491ae35a13535fd9196acb5afe1af37c8237df2e54427be3eecda3653127e"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:85f862069b86a305497e74d0dc43c02de3d1d184fc2c180993aa8aa86fbd19b8"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec74ef02010186185de82cc594058a3ccd8d86821842bbac9873fd4a2cf8be8d"}, + {file = "grpcio-1.67.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01f616a964e540638af5130469451cf580ba8c7329f45ca998ab66e0c7dcdb04"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:299b3d8c4f790c6bcca485f9963b4846dd92cf6f1b65d3697145d005c80f9fe8"}, + {file = "grpcio-1.67.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:60336bff760fbb47d7e86165408126f1dded184448e9a4c892189eb7c9d3f90f"}, + {file = "grpcio-1.67.1-cp39-cp39-win32.whl", hash = "sha256:5ed601c4c6008429e3d247ddb367fe8c7259c355757448d7c1ef7bd4a6739e8e"}, + {file = "grpcio-1.67.1-cp39-cp39-win_amd64.whl", hash = "sha256:5db70d32d6703b89912af16d6d45d78406374a8b8ef0d28140351dd0ec610e98"}, + {file = "grpcio-1.67.1.tar.gz", hash = "sha256:3dc2ed4cabea4dc14d5e708c2b426205956077cc5de419b4d4079315017e9732"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.66.2)"] +protobuf = ["grpcio-tools (>=1.67.1)"] [[package]] name = "grpcio-status" -version = "1.66.2" +version = "1.67.1" description = "Status proto mapping for gRPC" optional = false python-versions = ">=3.8" files = [ - {file = "grpcio_status-1.66.2-py3-none-any.whl", hash = "sha256:e5fe189f6897d12aa9cd74408a17ca41e44fad30871cf84f5cbd17bd713d2455"}, - {file = "grpcio_status-1.66.2.tar.gz", hash = "sha256:fb55cbb5c2e67062f7a4d5c99e489d074fb57e98678d5c3c6692a2d74d89e9ae"}, + {file = "grpcio_status-1.67.1-py3-none-any.whl", hash = "sha256:16e6c085950bdacac97c779e6a502ea671232385e6e37f258884d6883392c2bd"}, + {file = "grpcio_status-1.67.1.tar.gz", hash = "sha256:2bf38395e028ceeecfd8866b081f61628114b384da7d51ae064ddc8d766a5d11"}, ] [package.dependencies] googleapis-common-protos = ">=1.5.5" -grpcio = ">=1.66.2" +grpcio = ">=1.67.1" protobuf = ">=5.26.1,<6.0dev" [[package]] @@ -1039,13 +1039,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1057,72 +1057,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -1200,68 +1200,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1342,13 +1343,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "proto-plus" -version = "1.24.0" +version = "1.25.0" description = "Beautiful, Pythonic protocol buffers." optional = false python-versions = ">=3.7" files = [ - {file = "proto-plus-1.24.0.tar.gz", hash = "sha256:30b72a5ecafe4406b0d339db35b56c4059064e69227b8c3bda7462397f966445"}, - {file = "proto_plus-1.24.0-py3-none-any.whl", hash = "sha256:402576830425e5f6ce4c2a6702400ac79897dab0b4343821aa5188b0fab81a12"}, + {file = "proto_plus-1.25.0-py3-none-any.whl", hash = "sha256:c91fc4a65074ade8e458e95ef8bac34d4008daa7cce4a12d6707066fca648961"}, + {file = "proto_plus-1.25.0.tar.gz", hash = "sha256:fbb17f57f7bd05a68b7707e745e26528b0b3c34e378db91eef93912c54982d91"}, ] [package.dependencies] @@ -1359,22 +1360,22 @@ testing = ["google-api-core (>=1.31.5)"] [[package]] name = "protobuf" -version = "5.28.2" +version = "5.28.3" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-5.28.2-cp310-abi3-win32.whl", hash = "sha256:eeea10f3dc0ac7e6b4933d32db20662902b4ab81bf28df12218aa389e9c2102d"}, - {file = "protobuf-5.28.2-cp310-abi3-win_amd64.whl", hash = "sha256:2c69461a7fcc8e24be697624c09a839976d82ae75062b11a0972e41fd2cd9132"}, - {file = "protobuf-5.28.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a8b9403fc70764b08d2f593ce44f1d2920c5077bf7d311fefec999f8c40f78b7"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:35cfcb15f213449af7ff6198d6eb5f739c37d7e4f1c09b5d0641babf2cc0c68f"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:5e8a95246d581eef20471b5d5ba010d55f66740942b95ba9b872d918c459452f"}, - {file = "protobuf-5.28.2-cp38-cp38-win32.whl", hash = "sha256:87317e9bcda04a32f2ee82089a204d3a2f0d3c8aeed16568c7daf4756e4f1fe0"}, - {file = "protobuf-5.28.2-cp38-cp38-win_amd64.whl", hash = "sha256:c0ea0123dac3399a2eeb1a1443d82b7afc9ff40241433296769f7da42d142ec3"}, - {file = "protobuf-5.28.2-cp39-cp39-win32.whl", hash = "sha256:ca53faf29896c526863366a52a8f4d88e69cd04ec9571ed6082fa117fac3ab36"}, - {file = "protobuf-5.28.2-cp39-cp39-win_amd64.whl", hash = "sha256:8ddc60bf374785fb7cb12510b267f59067fa10087325b8e1855b898a0d81d276"}, - {file = "protobuf-5.28.2-py3-none-any.whl", hash = "sha256:52235802093bd8a2811abbe8bf0ab9c5f54cca0a751fdd3f6ac2a21438bffece"}, - {file = "protobuf-5.28.2.tar.gz", hash = "sha256:59379674ff119717404f7454647913787034f03fe7049cbef1d74a97bb4593f0"}, + {file = "protobuf-5.28.3-cp310-abi3-win32.whl", hash = "sha256:0c4eec6f987338617072592b97943fdbe30d019c56126493111cf24344c1cc24"}, + {file = "protobuf-5.28.3-cp310-abi3-win_amd64.whl", hash = "sha256:91fba8f445723fcf400fdbe9ca796b19d3b1242cd873907979b9ed71e4afe868"}, + {file = "protobuf-5.28.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a3f6857551e53ce35e60b403b8a27b0295f7d6eb63d10484f12bc6879c715687"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:3fa2de6b8b29d12c61911505d893afe7320ce7ccba4df913e2971461fa36d584"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:712319fbdddb46f21abb66cd33cb9e491a5763b2febd8f228251add221981135"}, + {file = "protobuf-5.28.3-cp38-cp38-win32.whl", hash = "sha256:3e6101d095dfd119513cde7259aa703d16c6bbdfae2554dfe5cfdbe94e32d548"}, + {file = "protobuf-5.28.3-cp38-cp38-win_amd64.whl", hash = "sha256:27b246b3723692bf1068d5734ddaf2fccc2cdd6e0c9b47fe099244d80200593b"}, + {file = "protobuf-5.28.3-cp39-cp39-win32.whl", hash = "sha256:135658402f71bbd49500322c0f736145731b16fc79dc8f367ab544a17eab4535"}, + {file = "protobuf-5.28.3-cp39-cp39-win_amd64.whl", hash = "sha256:70585a70fc2dd4818c51287ceef5bdba6387f88a578c86d47bb34669b5552c36"}, + {file = "protobuf-5.28.3-py3-none-any.whl", hash = "sha256:cee1757663fa32a1ee673434fcf3bf24dd54763c79690201208bafec62f19eed"}, + {file = "protobuf-5.28.3.tar.gz", hash = "sha256:64badbc49180a5e401f373f9ce7ab1d18b63f7dd4a9cdc43c92b9f0b481cef7b"}, ] [[package]] @@ -1505,13 +1506,13 @@ tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] name = "pyparsing" -version = "3.1.4" +version = "3.2.0" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.9" files = [ - {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, - {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, + {file = "pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84"}, + {file = "pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c"}, ] [package.extras] @@ -1810,23 +1811,23 @@ pyasn1 = ">=0.1.3" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-firebase-realtime-database/pyproject.toml b/airbyte-integrations/connectors/source-firebase-realtime-database/pyproject.toml index 05a3bb9c5b03..c584787caef3 100644 --- a/airbyte-integrations/connectors/source-firebase-realtime-database/pyproject.toml +++ b/airbyte-integrations/connectors/source-firebase-realtime-database/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.25" +version = "0.1.26" name = "source-firebase-realtime-database" description = "Source implementation for Firebase Realtime Database." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/firebase-realtime-database.md b/docs/integrations/sources/firebase-realtime-database.md index 46f72a95e7fd..c845df8b152a 100644 --- a/docs/integrations/sources/firebase-realtime-database.md +++ b/docs/integrations/sources/firebase-realtime-database.md @@ -79,6 +79,7 @@ Once you've configured Firebase Realtime Database as a source, delete the Servic | Version | Date | Pull Request | Subject | | :------ | :--------- | :--------------------------------------------------------- | :----------------------------------------- | +| 0.1.26 | 2024-11-04 | [47041](https://github.com/airbytehq/airbyte/pull/47041) | Update dependencies | | 0.1.25 | 2024-10-12 | [46799](https://github.com/airbytehq/airbyte/pull/46799) | Update dependencies | | 0.1.24 | 2024-10-05 | [46457](https://github.com/airbytehq/airbyte/pull/46457) | Update dependencies | | 0.1.23 | 2024-09-28 | [46135](https://github.com/airbytehq/airbyte/pull/46135) | Update dependencies | From 9455fb372290818f8119ea88e67ebbc53caa64b4 Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Tue, 5 Nov 2024 07:44:59 +0530 Subject: [PATCH 660/808] Source Recurly: Migrate to manifest-only format with components (#47290) Co-authored-by: Octavia Squidington III Co-authored-by: ChristoGrab --- .../connectors/source-recurly/README.md | 91 +- .../source-recurly/acceptance-test-config.yml | 2 +- .../{source_recurly => }/components.py | 0 .../connectors/source-recurly/main.py | 8 - .../connectors/source-recurly/manifest.yaml | 25641 ++++++++++++++++ .../connectors/source-recurly/metadata.yaml | 13 +- .../connectors/source-recurly/poetry.lock | 1076 - .../connectors/source-recurly/pyproject.toml | 29 - .../source-recurly/source_recurly/__init__.py | 7 - .../source_recurly/manifest.yaml | 5568 ---- .../source-recurly/source_recurly/run.py | 15 - .../source-recurly/source_recurly/source.py | 18 - .../source-recurly/unit_tests/__init__.py | 3 - .../source-recurly/unit_tests/conftest.py | 124 - .../source-recurly/unit_tests/test_streams.py | 79 - docs/integrations/sources/recurly.md | 1 + 16 files changed, 25677 insertions(+), 6998 deletions(-) rename airbyte-integrations/connectors/source-recurly/{source_recurly => }/components.py (100%) delete mode 100644 airbyte-integrations/connectors/source-recurly/main.py create mode 100644 airbyte-integrations/connectors/source-recurly/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-recurly/poetry.lock delete mode 100644 airbyte-integrations/connectors/source-recurly/pyproject.toml delete mode 100644 airbyte-integrations/connectors/source-recurly/source_recurly/__init__.py delete mode 100644 airbyte-integrations/connectors/source-recurly/source_recurly/manifest.yaml delete mode 100644 airbyte-integrations/connectors/source-recurly/source_recurly/run.py delete mode 100644 airbyte-integrations/connectors/source-recurly/source_recurly/source.py delete mode 100644 airbyte-integrations/connectors/source-recurly/unit_tests/__init__.py delete mode 100644 airbyte-integrations/connectors/source-recurly/unit_tests/conftest.py delete mode 100644 airbyte-integrations/connectors/source-recurly/unit_tests/test_streams.py diff --git a/airbyte-integrations/connectors/source-recurly/README.md b/airbyte-integrations/connectors/source-recurly/README.md index 240ca632a261..74b62d4a3653 100644 --- a/airbyte-integrations/connectors/source-recurly/README.md +++ b/airbyte-integrations/connectors/source-recurly/README.md @@ -1,52 +1,22 @@ # Recurly source connector -This is the repository for the Recurly configuration based source connector. -For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/sources/recurly). +This directory contains the manifest-only connector for `source-recurly`. +This _manifest-only_ connector is not a Python package on its own, as it runs inside of the base `source-declarative-manifest` image. -## Local development - -### Prerequisites - -- Python (~=3.9) -- Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation) - -### Installing the connector - -From this connector directory, run: - -```bash -poetry install --with dev -``` - -### Creating credentials - -**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/sources/recurly) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_recurly/spec.json` file. -Note that the `secrets` directory is gitignored by default, so there is no danger of accidentally checking in sensitive information. -See `integration_tests/sample_config.json` for a sample config file. - -**If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `source recurly test creds` -and place them into `secrets/config.json`. - -### Locally running the connector - -```bash -poetry run source-recurly spec -poetry run source-recurly check --config secrets/config.json -poetry run source-recurly discover --config secrets/config.json -poetry run source-recurly read --config secrets/config.json --catalog integration_tests/configured_catalog.json -``` +For information about how to configure and use this connector within Airbyte, see [the connector's full documentation](https://docs.airbyte.com/integrations/sources/recurly). -### Running unit tests +## Local development -To run unit tests locally, from the connector directory run: +We recommend using the Connector Builder to edit this connector. +Using either Airbyte Cloud or your local Airbyte OSS instance, navigate to the **Builder** tab and select **Import a YAML**. +Then select the connector's `manifest.yaml` file to load the connector into the Builder. You're now ready to make changes to the connector! -```bash -poetry run pytest unit_tests -``` +If you prefer to develop locally, you can follow the instructions below. ### Building the docker image +You can build any manifest-only connector with `airbyte-ci`: + 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) 2. Run the following command to build the docker image: @@ -56,9 +26,15 @@ airbyte-ci connectors --name=source-recurly build An image will be available on your host with the tag `airbyte/source-recurly:dev`. -### Running the docker container +### Creating credentials + +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/recurly) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` object in the connector's `manifest.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. -Then run any of the connector commands as follows: +### Running as a docker container + +Then run any of the standard source connector commands: ```bash docker run --rm airbyte/source-recurly:dev spec @@ -67,7 +43,7 @@ docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-recurly:dev discover - docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-recurly:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` -### Running our CI test suite +### Running the CI test suite You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md): @@ -75,30 +51,15 @@ You can run our full test suite locally using [`airbyte-ci`](https://github.com/ airbyte-ci connectors --name=source-recurly test ``` -### Customizing acceptance Tests - -Customize the `acceptance-test-config.yml` file to configure acceptance tests. See our [Connector Acceptance Tests reference](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information. -If your connector requires you to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. - -### Dependency Management - -All of your dependencies should be managed via Poetry. To add a new dependency, run: - -```bash -poetry add -``` - -Please commit the changes to the `pyproject.toml` and `poetry.lock` files. - ## Publishing a new version of the connector -You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? - -1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-recurly test` -2. Bump the connector version listed as `dockerImageTag` in `metadata.yaml`. Please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors). -3. Make sure the `metadata.yaml` content is up to date. -4. Make the connector documentation and its changelog is up to date (`docs/integrations/sources/recurly.md`). +If you want to contribute changes to `source-recurly`, here's how you can do that: +1. Make your changes locally, or load the connector's manifest into Connector Builder and make changes there. +2. Make sure your changes are passing our test suite with `airbyte-ci connectors --name=source-recurly test` +3. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)): + - bump the `dockerImageTag` value in in `metadata.yaml` +4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/recurly.md`). 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention). 6. Pat yourself on the back for being an awesome contributor. 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. -8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. +8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry. \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-recurly/acceptance-test-config.yml b/airbyte-integrations/connectors/source-recurly/acceptance-test-config.yml index b5e27e07c2a2..cb55d8b68f27 100644 --- a/airbyte-integrations/connectors/source-recurly/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-recurly/acceptance-test-config.yml @@ -4,7 +4,7 @@ connector_image: airbyte/source-recurly:dev acceptance_tests: spec: tests: - - spec_path: "source_recurly/spec.yaml" + - spec_path: "manifest.yaml" connection: tests: - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-recurly/source_recurly/components.py b/airbyte-integrations/connectors/source-recurly/components.py similarity index 100% rename from airbyte-integrations/connectors/source-recurly/source_recurly/components.py rename to airbyte-integrations/connectors/source-recurly/components.py diff --git a/airbyte-integrations/connectors/source-recurly/main.py b/airbyte-integrations/connectors/source-recurly/main.py deleted file mode 100644 index d8c1a4490315..000000000000 --- a/airbyte-integrations/connectors/source-recurly/main.py +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from source_recurly.run import run - -if __name__ == "__main__": - run() diff --git a/airbyte-integrations/connectors/source-recurly/manifest.yaml b/airbyte-integrations/connectors/source-recurly/manifest.yaml new file mode 100644 index 000000000000..fe3cf52e57cc --- /dev/null +++ b/airbyte-integrations/connectors/source-recurly/manifest.yaml @@ -0,0 +1,25641 @@ +version: 4.3.2 +type: DeclarativeSource +check: + type: CheckStream + stream_names: + - accounts +definitions: + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + streams: + accounts: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This + is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, + JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank + account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated with + the + credit card BIN, if known by Recurly. Available on the BillingInfo + object only. Available when the BIN country lookup feature + is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH payment + methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the primary + billing + info on the account. The first billing info created on an account + will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing + info as a + backup on the account that will be tried if the initial billing + info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + account_coupon_redemptions: + type: DeclarativeStream + name: account_coupon_redemptions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /accounts/{{ stream_partition['account_id'] }}/coupon_redemptions + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). + This is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, + JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer + to bank account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to + perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated + with the + credit card BIN, if known by Recurly. Available on + the BillingInfo + object only. Available when the BIN country lookup + feature is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon + or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for + ACH payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for + ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate + the primary billing + info on the account. The first billing info created on + an account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate + a billing info as a + backup on the account that will be tried if the initial + billing info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else + (now_utc() - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for the redemption + type: + - "null" + - string + maxLength: 13 + object: + description: The type of object this represents + type: + - "null" + - string + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + description: The account associated with the coupon redemption + subscription_id: + description: The subscription associated with the redemption + type: + - "null" + - string + maxLength: 13 + coupon: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + maxLength: 256 + state: + type: + - "null" + - string + maxLength: 256 + max_redemptions: + type: + - "null" + - number + max_redemptions_per_account: + type: + - "null" + - number + unique_coupon_codes_count: + type: + - "null" + - number + unique_code_template: + type: + - "null" + - string + maxLength: 256 + unique_coupon_code: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable + or why not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached + its + `max_redemptions`. + format: date-time + duration: + type: + - "null" + - string + maxLength: 256 + temporal_amount: + type: + - "null" + - number + temporal_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_amount: + type: + - "null" + - number + applies_to_all_plans: + type: + - "null" + - boolean + applies_to_all_items: + type: + - "null" + - boolean + applies_to_non_plan_charges: + type: + - "null" + - boolean + plans: + type: + - "null" + - array + title: Plans + description: >- + A list of plans for which this coupon applies. This will be `null` + if + `applies_to_all_plans=true`. + items: + type: object + title: Plan mini details + description: Just the important parts. + properties: + id: + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Plan code + description: >- + Unique code to identify the plan. This is used in Hosted + Payment + Page URLs and in the invoice exports. + maxLength: 13 + items: + type: + - "null" + - array + title: Items + description: | + A list of items for which this coupon applies. This will be + `null` if `applies_to_all_items=true`. + items: + type: + - "null" + - object + title: Item mini details + description: Just the important parts. + properties: + id: + type: string + title: Item ID + maxLength: 13 + readOnly: true + redemption_resource: + type: + - "null" + - string + maxLength: 256 + discount: + type: + - "null" + - object + description: | + Details of the discount a coupon applies. Will contain a `type` + property and one of the following properties: `percent`, `fixed`, `trial`. + properties: + type: + type: string + maxLength: 256 + percent: + description: This is only present when `type=percent`. + type: integer + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon + applies. + trial: + type: object + description: This is only present when `type=free_trial`. + properties: + unit: + title: Trial unit + description: Temporal unit of the free trial + type: string + maxLength: 256 + length: + type: integer + title: Trial length + description: >- + Trial length measured in the units specified by the sibling + `unit` + property + coupon_type: + type: + - "null" + - string + maxLength: 256 + hosted_page_description: + type: + - "null" + - string + maxLength: 1024 + invoice_description: + type: + - "null" + - string + maxLength: 1024 + redeem_by: + type: + - "null" + - string + maxLength: 256 + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + expired_at: + type: + - "null" + - string + format: date-time + description: The coupon being redeemed + state: + description: The current state of the redemption + type: + - "null" + - string + maxLength: 256 + currency: + description: The currency in which the redemption was made + type: + - "null" + - string + maxLength: 3 + discounted: + description: The amount discounted by the coupon + type: + - "null" + - number + created_at: + description: The date and time when the redemption was created + type: + - "null" + - string + format: date-time + updated_at: + description: The date and time when the redemption was last updated + type: + - "null" + - string + format: date-time + removed_at: + description: The date and time when the redemption was removed (if applicable) + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + account_notes: + type: DeclarativeStream + name: account_notes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /accounts/{{ stream_partition['account_id'] }}/notes + http_method: GET + request_parameters: + order: asc + sort: created_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). + This is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, + JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer + to bank account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to + perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated + with the + credit card BIN, if known by Recurly. Available on + the BillingInfo + object only. Available when the BIN country lookup + feature is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon + or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for + ACH payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for + ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate + the primary billing + info on the account. The first billing info created on + an account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate + a billing info as a + backup on the account that will be tried if the initial + billing info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else + (now_utc() - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for this note. + type: string + maxLength: 13 + readOnly: true + object: + description: "Represents the object type, in this case, 'note'." + type: + - "null" + - string + account_id: + description: The unique identifier of the account associated with this + note. + type: string + maxLength: 13 + user: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + time_zone: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + deleted_at: + type: + - "null" + - string + format: date-time + description: The user who created the note. + message: + description: The content or message of the note. + type: + - "null" + - string + maxLength: 2048 + created_at: + description: The date and time when the note was created. + type: string + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + add_ons: + type: DeclarativeStream + name: add_ons + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /add_ons + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for the add-on. + type: string + title: Add-on ID + maxLength: 13 + readOnly: true + plan_id: + description: The ID of the plan to which the add-on is associated. + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Add-on code + description: The unique identifier for the add-on within its plan. + maxLength: 50 + state: + title: State + description: Add-ons can be either active or inactive. + readOnly: true + type: string + maxLength: 256 + name: + type: string + title: Name + description: Describes your add-on and will appear in subscribers' invoices. + maxLength: 255 + add_on_type: + type: + - "null" + - string + title: Add-on Type + description: "Whether the add-on type is fixed, or usage-based." + maxLength: 256 + usage_type: + type: string + title: Usage Type + description: "Type of usage, returns usage type if `add_on_type` is + `usage`." + maxLength: 256 + usage_percentage: + type: + - "null" + - number + format: float + title: Usage Percentage + description: >- + The percentage taken of the monetary amount of usage tracked. This + can be + up to 4 decimal places. A value between 0.0 and 100.0. + measured_unit_id: + type: + - "null" + - string + title: Measured Unit ID + description: >- + System-generated unique identifier for an measured unit associated + with + the add-on. + maxLength: 13 + accounting_code: + type: + - "null" + - string + title: Accounting code + description: >- + Accounting code for invoice line items for this add-on. If no value + is + provided, it defaults to add-on's code. + maxLength: 256 + revenue_schedule_type: + title: Revenue schedule type + description: >- + When this add-on is invoiced, the line item will use this revenue + schedule. If `item_code`/`item_id` is part of the request then + `revenue_schedule_type` must be absent in the request as the value + will be + set from the item. + type: string + maxLength: 256 + avalara_transaction_type: + type: + - string + - integer + title: Avalara Transaction Type + description: >- + Used by Avalara for Communications taxes. The transaction type in + combination with the service type describe how the add-on is taxed. + Refer + to [the + documentation](https://help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) + for more available t/s types. + minimum: 0 + avalara_service_type: + type: + - string + - integer + title: Avalara Service Type + description: >- + Used by Avalara for Communications taxes. The transaction type in + combination with the service type describe how the add-on is taxed. + Refer + to [the + documentation](https://help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) + for more available t/s types. + minimum: 0 + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax + code + values are specific to each tax system. If you are using Recurly’s + EU VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + display_quantity: + type: + - "null" + - boolean + title: Display quantity? + description: >- + Determines if the quantity field is displayed on the hosted pages + for the + add-on. + default_quantity: + type: + - "null" + - integer + title: Default quantity + description: Default quantity for the hosted pages. + optional: + type: + - "null" + - boolean + title: Optional + description: >- + Whether the add-on is optional for the customer to include in their + purchase on the hosted payment page. If false, the add-on will be + included + when a subscription is created through the Recurly UI. However, the + add-on + will not be included when a subscription is created through the API. + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + unit_amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon applies. + tier_type: + type: + - "null" + - string + title: Tier type + description: > + The pricing model for the add-on. For more information, + + [click + here](https://docs.recurly.com/docs/billing-models#section-quantity-based). + See our + + [Guide](https://developers.recurly.com/guides/item-addon-guide.html) + for + an overview of how + + to configure quantity-based pricing models. + maxLength: 256 + created_at: + description: The date and time when the add-on was created. + type: string + format: date-time + title: Created at + readOnly: true + updated_at: + description: The date and time when the add-on was last updated. + type: string + format: date-time + title: Last updated at + readOnly: true + deleted_at: + description: "The date and time when the add-on was deleted, if applicable." + type: string + format: date-time + title: Deleted at + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + billing_infos: + type: DeclarativeStream + name: billing_infos + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /accounts/{{ stream_partition['account_id'] }}/billing_infos + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). + This is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, + JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer + to bank account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to + perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated + with the + credit card BIN, if known by Recurly. Available on + the BillingInfo + object only. Available when the BIN country lookup + feature is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon + or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for + ACH payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for + ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate + the primary billing + info on the account. The first billing info created on + an account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate + a billing info as a + backup on the account that will be tried if the initial + billing info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else + (now_utc() - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This is only + used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, JCB, + etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank account + if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated with the + credit card BIN, if known by Recurly. Available on the BillingInfo + object only. Available when the BIN country lookup feature is + enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH payment + methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the primary + billing + info on the account. The first billing info created on an account + will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing info + as a + backup on the account that will be tried if the initial billing info + used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + coupons: + type: DeclarativeStream + name: coupons + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: coupons + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + maxLength: 256 + state: + type: + - "null" + - string + maxLength: 256 + max_redemptions: + type: + - "null" + - number + max_redemptions_per_account: + type: + - "null" + - number + unique_coupon_codes_count: + type: + - "null" + - number + unique_code_template: + type: + - "null" + - string + maxLength: 256 + unique_coupon_code: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or + why not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + duration: + type: + - "null" + - string + maxLength: 256 + temporal_amount: + type: + - "null" + - number + temporal_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_amount: + type: + - "null" + - number + applies_to_all_plans: + type: + - "null" + - boolean + applies_to_all_items: + type: + - "null" + - boolean + applies_to_non_plan_charges: + type: + - "null" + - boolean + plans: + type: + - "null" + - array + title: Plans + description: >- + A list of plans for which this coupon applies. This will be `null` + if + `applies_to_all_plans=true`. + items: + type: object + title: Plan mini details + description: Just the important parts. + properties: + id: + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Plan code + description: >- + Unique code to identify the plan. This is used in Hosted Payment + Page URLs and in the invoice exports. + maxLength: 13 + items: + type: + - "null" + - array + title: Items + description: | + A list of items for which this coupon applies. This will be + `null` if `applies_to_all_items=true`. + items: + type: + - "null" + - object + title: Item mini details + description: Just the important parts. + properties: + id: + type: string + title: Item ID + maxLength: 13 + readOnly: true + redemption_resource: + type: + - "null" + - string + maxLength: 256 + discount: + type: + - "null" + - object + description: | + Details of the discount a coupon applies. Will contain a `type` + property and one of the following properties: `percent`, `fixed`, `trial`. + properties: + type: + type: string + maxLength: 256 + percent: + description: This is only present when `type=percent`. + type: integer + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon + applies. + trial: + type: object + description: This is only present when `type=free_trial`. + properties: + unit: + title: Trial unit + description: Temporal unit of the free trial + type: string + maxLength: 256 + length: + type: integer + title: Trial length + description: >- + Trial length measured in the units specified by the sibling + `unit` + property + coupon_type: + type: + - "null" + - string + maxLength: 256 + hosted_page_description: + type: + - "null" + - string + maxLength: 1024 + invoice_description: + type: + - "null" + - string + maxLength: 1024 + redeem_by: + type: + - "null" + - string + maxLength: 256 + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + expired_at: + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + credit_payments: + type: DeclarativeStream + name: credit_payments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: credit_payments + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier of the credit payment. + type: string + title: Credit Payment ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + action: + title: Action + description: The action for which the credit was created. + type: string + maxLength: 256 + account: + description: Details about the account associated with the credit payment. + type: object + title: Account mini details + properties: + id: + description: The ID of the account associated with the credit payment. + type: string + maxLength: 13 + readOnly: true + code: + type: string + description: The unique identifier of the account. + maxLength: 50 + applied_to_invoice: + description: Details about the invoice to which the credit payment is + applied. + type: + - "null" + - object + title: Invoice mini details + properties: + id: + description: The ID of the invoice to which the credit payment is + applied. + type: string + title: Invoice ID + maxLength: 13 + number: + description: The number of the invoice to which the credit payment + is applied. + type: string + title: Invoice number + maxLength: 256 + original_invoice: + description: Details about the original invoice for which the credit + payment is made. + type: + - "null" + - object + title: Invoice mini details + properties: + id: + description: The ID of the original invoice for which the credit + payment was made. + type: string + title: Invoice ID + maxLength: 13 + number: + description: >- + The number of the original invoice for which the credit payment + was + made. + type: string + title: Invoice number + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Amount + description: Total credit payment amount applied to the charge invoice. + original_credit_payment_id: + type: + - "null" + - string + title: Original Credit Payment ID + description: >- + For credit payments with action `refund`, this is the credit payment + that + was refunded. + maxLength: 13 + refund_transaction: + description: Details about the refund transaction associated with the + credit payment. + type: + - "null" + - object + properties: + id: + description: The ID of the refund transaction associated with the + credit payment. + type: string + title: Transaction ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and + building + URLs into Recurly's UI. + maxLength: 32 + created_at: + description: The date and time when the credit payment was created. + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + description: The date and time when the credit payment was last updated. + type: string + title: Last updated at + format: date-time + readOnly: true + voided_at: + description: The date and time when the credit payment was voided. + type: + - "null" + - string + title: Voided at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + export_dates: + type: DeclarativeStream + name: export_dates + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: export_dates + http_method: GET + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: CustomRecordExtractor + class_name: source_declarative_manifest.components.ExportDatesExtractor + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + dates: + description: List of export dates + type: + - "null" + - array + items: + description: Date of the export + type: + - "null" + - string + maxLength: 256 + invoices: + type: DeclarativeStream + name: invoices + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: invoices + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique ID of the invoice. + type: + - "null" + - string + title: Invoice ID + readOnly: true + maxLength: 13 + uuid: + description: The universally unique identifier (UUID) of the invoice. + type: + - "null" + - string + object: + description: "The type of object, in this case, an invoice." + type: + - "null" + - string + type: + title: Invoice type + description: "Invoices are either charge, credit, or legacy invoices." + type: + - "null" + - string + maxLength: 256 + origin: + type: + - "null" + - string + title: Origin + description: The event that created the invoice. + maxLength: 256 + state: + description: The current state of the invoice. + title: Invoice state + type: + - "null" + - string + maxLength: 256 + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + description: The account associated with the invoice. + billing_info_id: + type: + - "null" + - string + title: Billing info ID + description: >- + The `billing_info_id` is the value that represents a specific billing + info + for an end customer. When `billing_info_id` is used to assign billing + info + to the subscription, all future billing events for the subscription + will + bill to the specified billing info. `billing_info_id` can ONLY be + used for + sites utilizing the Wallet feature. + maxLength: 256 + subscription_ids: + type: + - "null" + - array + title: Subscription IDs + description: >- + If the invoice is charging or refunding for one or more subscriptions, + these are their IDs. + items: + type: + - "null" + - string + title: Subscription ID + maxLength: 13 + previous_invoice_id: + type: + - "null" + - string + title: Previous invoice ID + description: >- + On refund invoices, this value will exist and show the invoice ID + of the + purchase invoice the refund was created from. + maxLength: 13 + number: + type: + - "null" + - string + title: Invoice number + description: >- + If VAT taxation and the Country Invoice Sequencing feature are enabled, + invoices will have country-specific invoice numbers for invoices billed + to + EU countries (ex: FR1001). Non-EU invoices will continue to use the + site-level invoice number sequence. + maxLength: 256 + collection_method: + type: + - "null" + - string + title: Collection method + description: >- + An automatic invoice means a corresponding transaction is run using + the + account's billing information at the same time the invoice is created. + Manual invoices are created without a corresponding transaction. The + merchant must enter a manual payment transaction or have the customer + pay + the invoice with an automatic method, like credit card, PayPal, Amazon, + or + ACH bank payment. + maxLength: 256 + po_number: + type: + - "null" + - string + title: Purchase order number + description: >- + For manual invoicing, this identifies the PO number associated with + the + subscription. + maxLength: 50 + net_terms: + type: + - "null" + - integer + title: Net terms + description: >- + Integer representing the number of days after an invoice's creation + that + the invoice will become past due. If an invoice's net terms are set + to + '0', it is due 'On Receipt' and will become past due 24 hours after + it’s + created. If an invoice is due net 30, it will become past due at 31 + days + exactly. + minimum: 0 + default: 0 + address: + description: The address details related to the invoice recipient. + type: + - "null" + - object + properties: + name_on_account: + description: The name on the account. + type: + - "null" + - string + title: Name on account + maxLength: 256 + company: + description: The company name in the address. + type: + - "null" + - string + title: Company + maxLength: 256 + phone: + description: The phone number associated with the address. + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + description: The first line of the street address. + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + description: The second line of the street address. + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + description: The city in the address. + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + first_name: + description: The first name of the recipient. + type: + - "null" + - string + maxLength: 256 + last_name: + description: The last name of the recipient. + type: + - "null" + - string + maxLength: 256 + shipping_address: + description: The shipping address details for the invoice delivery. + type: + - "null" + - object + properties: + id: + description: The ID of the shipping address. + type: + - "null" + - string + title: Shipping Address ID + maxLength: 13 + readOnly: true + currency: + type: + - "null" + - string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + discount: + type: + - "null" + - number + format: float + title: Discount + description: Total discounts applied to this invoice. + subtotal: + type: + - "null" + - number + format: float + title: Subtotal + description: "The summation of charges and credits, before discounts + and taxes." + tax: + type: + - "null" + - number + format: float + title: Tax + description: The total tax on this invoice. + total: + type: + - "null" + - number + format: float + title: Total + description: >- + The final total on this invoice. The summation of invoice charges, + discounts, credits, and tax. + refundable_amount: + type: + - "null" + - number + format: float + title: Refundable amount + description: >- + The refundable amount on a charge invoice. It will be null for all + other + invoices. + paid: + type: + - "null" + - number + format: float + title: Paid + description: The total amount of successful payments transaction on + this invoice. + balance: + type: + - "null" + - number + format: float + title: Balance + description: The outstanding balance remaining on this invoice. + tax_info: + description: Tax information related to the invoice. + type: + - "null" + - object + title: Tax info + properties: + type: + type: + - "null" + - string + title: Type + description: >- + Provides the tax type as "vat" for EU VAT, "usst" for U.S. Sales + Tax, + or the 2 letter country code for country level tax types like + Canada, + Australia, New Zealand, Israel, and all non-EU European countries. + maxLength: 256 + region: + type: + - "null" + - string + title: Region + description: >- + Provides the tax region applied on an invoice. For U.S. Sales + Tax, + this will be the 2 letter state code. For EU VAT this will be + the 2 + letter country code. For all country level tax types, this will + display the regional tax, like VAT, GST, or PST. + rate: + description: The tax rate applied to the invoice. + type: + - "null" + - number + format: float + title: Rate + tax_details: + type: array + description: >- + Provides additional tax details for Canadian Sales Tax when there + is + tax applied at both the country and province levels. This will + only be + populated for the Invoice response when fetching a single invoice + and + not for the InvoiceList or LineItem. + items: + type: object + title: Tax detail + properties: + type: + type: + - "null" + - string + title: Type + description: >- + Provides the tax type for the region. For Canadian Sales + Tax, + this will be GST, HST, QST or PST. + maxLength: 256 + region: + type: + - "null" + - string + title: Region + description: >- + Provides the tax region applied on an invoice. For Canadian + Sales Tax, this will be either the 2 letter province code + or + country code. + maxLength: 256 + rate: + type: + - "null" + - number + format: float + title: Rate + description: Provides the tax rate for the region. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The total tax applied for this tax type. + used_tax_service: + description: Indicates if a tax service was used for the invoice. + type: + - "null" + - boolean + vat_number: + type: + - "null" + - string + title: VAT number + description: >- + VAT registration number for the customer on this invoice. This will + come + from the VAT Number field in the Billing Info or the Account Info + depending on your tax settings and the invoice collection method. + maxLength: 20 + vat_reverse_charge_notes: + type: + - "null" + - string + title: VAT reverse charge notes + description: >- + VAT Reverse Charge Notes only appear if you have EU VAT enabled or + are + using your own Avalara AvaTax account and the customer is in the EU, + has a + VAT number, and is in a different country than your own. This will + default + to the VAT Reverse Charge Notes text specified on the Tax Settings + page in + your Recurly admin, unless custom notes were created with the original + subscription. + maxLength: 1024 + terms_and_conditions: + type: + - "null" + - string + title: Terms and conditions + description: >- + This will default to the Terms and Conditions text specified on the + Invoice Settings page in your Recurly admin. Specify custom notes + to add + or override Terms and Conditions. + maxLength: 16384 + customer_notes: + type: + - "null" + - string + title: Customer notes + description: >- + This will default to the Customer Notes text specified on the Invoice + Settings. Specify custom notes to add or override Customer Notes. + maxLength: 2048 + line_items: + description: The line items included in the invoice. + type: + - "null" + - array + title: Line Items + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + title: Line item + properties: + id: + type: string + title: Line item ID + maxLength: 13 + object: + type: + - "null" + - string + uuid: + type: string + title: UUID + description: >- + The UUID is useful for matching data with the CSV exports and + building + URLs into Recurly's UI. + maxLength: 32 + type: + type: string + title: Line item type + description: >- + Charges are positive line items that debit the account. Credits + are + negative line items that credit the account. + maxLength: 256 + item_code: + type: + - "null" + - string + title: Item Code + description: >- + Unique code to identify an item. Available when the Credit Invoices + and + Subscription Billing Terms features are enabled. + maxLength: 50 + item_id: + type: + - "null" + - string + title: Item ID + description: >- + System-generated unique identifier for an item. Available when + the Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 13 + external_sku: + type: + - "null" + - string + title: External SKU + description: >- + Optional Stock Keeping Unit assigned to an item. Available when + the Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 50 + revenue_schedule_type: + type: + - "null" + - string + title: Revenue schedule type + maxLength: 256 + state: + type: string + title: Current state of the line item + description: >- + Pending line items are charges or credits on an account that + have not been + applied to an invoice yet. Invoiced line items will always have + an + `invoice_id` value. + maxLength: 256 + legacy_category: + type: + - "null" + - string + title: Legacy category + description: > + Category to describe the role of a line item on a legacy invoice: + + - "charges" refers to charges being billed for on this invoice. + + - "credits" refers to refund or proration credits. This portion + of the + invoice can be considered a credit memo. + + - "applied_credits" refers to previous credits applied to this + invoice. + See their original_line_item_id to determine where the credit + first + originated. + + - "carryforwards" can be ignored. They exist to consume any + remaining + credit balance. A new credit with the same amount will be created + and + placed back on the account. + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + bill_for_account_id: + type: string + title: Bill For Account ID + maxLength: 13 + description: The UUID of the account responsible for originating + the line item. + subscription_id: + type: + - "null" + - string + title: Subscription ID + description: "If the line item is a charge or credit for a subscription, + this is its ID." + maxLength: 13 + plan_id: + type: + - "null" + - string + title: Plan ID + description: >- + If the line item is a charge or credit for a plan or add-on, + this is the + plan's ID. + maxLength: 13 + plan_code: + type: + - "null" + - string + title: Plan code + description: >- + If the line item is a charge or credit for a plan or add-on, + this is the + plan's code. + maxLength: 50 + add_on_id: + type: + - "null" + - string + title: Add-on ID + description: If the line item is a charge or credit for an add-on + this is its ID. + maxLength: 13 + add_on_code: + type: + - "null" + - string + title: Add-on code + description: "If the line item is a charge or credit for an add-on, + this is its code." + maxLength: 50 + invoice_id: + type: + - "null" + - string + title: Invoice ID + description: Once the line item has been invoiced this will be + the invoice's ID. + maxLength: 13 + invoice_number: + type: + - "null" + - string + title: Invoice number + description: >- + Once the line item has been invoiced this will be the invoice's + number. If + VAT taxation and the Country Invoice Sequencing feature are + enabled, + invoices will have country-specific invoice numbers for invoices + billed to + EU countries (ex: FR1001). Non-EU invoices will continue to + use the + site-level invoice number sequence. + maxLength: 256 + previous_line_item_id: + type: + - "null" + - string + title: Previous line item ID + description: >- + Will only have a value if the line item is a credit created + from a + previous credit, or if the credit was created from a charge + refund. + maxLength: 13 + original_line_item_invoice_id: + type: + - "null" + - string + title: Original line item's invoice ID + description: >- + The invoice where the credit originated. Will only have a value + if the + line item is a credit created from a previous credit, or if + the credit was + created from a charge refund. + maxLength: 13 + origin: + type: string + title: Origin of line item + description: >- + A credit created from an original charge will have the value + of the + charge's origin. + maxLength: 256 + accounting_code: + type: string + title: Accounting code + description: >- + Internal accounting code to help you reconcile your revenue + to the correct + ledger. Line items created as part of a subscription invoice + will use the + plan or add-on's accounting code, otherwise the value will only + be present + if you define an accounting code when creating the line item. + maxLength: 20 + product_code: + type: string + title: Product code + description: >- + For plan-related line items this will be the plan's code, for + add-on + related line items it will be the add-on's code. For item-related + line + items it will be the item's `external_sku`. + maxLength: 50 + credit_reason_code: + type: + - "null" + - string + title: Credit reason code + description: The reason the credit was given when line item is + `type=credit`. + default: general + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Total after discounts and taxes + description: "`(quantity * unit_amount) - (discount + tax)`" + description: + type: string + title: Description + description: >- + Description that appears on the invoice. For subscription related + items + this will be filled in automatically. + maxLength: 255 + quantity: + type: integer + title: Quantity + description: >- + This number will be multiplied by the unit amount to compute + the subtotal + before any discounts or taxes. + default: 1 + unit_amount: + type: number + format: float + title: Unit amount + description: "Positive amount for a charge, negative amount for + a credit." + unit_amount_decimal: + type: + - "null" + - string + title: Unit amount decimal + description: "Positive amount for a charge, negative amount for + a credit." + subtotal: + type: number + format: float + title: Total before discounts and taxes + description: "`quantity * unit_amount`" + discount: + type: + - "null" + - number + format: float + title: Discount + description: The discount applied to the line item. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The tax amount for the line item. + taxable: + type: boolean + title: Taxable? + description: "`true` if the line item is taxable, `false` if it + is not." + tax_exempt: + type: boolean + title: Tax exempt? + description: >- + `true` exempts tax on charges, `false` applies tax on charges. + If not + defined, then defaults to the Plan and Site settings. This attribute + does + not work for credits (negative line items). Credits are always + applied + post-tax. Pre-tax discounts should use the Coupons feature. + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The + tax code + values are specific to each tax system. If you are using Recurly’s + EU VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + proration_rate: + type: + - "null" + - number + format: float + title: Proration rate + description: >- + When a line item has been prorated, this is the rate of the + proration. + Proration rates were made available for line items created after + March 30, + 2017. For line items created prior to that date, the proration + rate will + be `null`, even if the line item was prorated. + minimum: 0 + maximum: 1 + refund: + type: boolean + title: Refund? + refunded_quantity: + type: + - "null" + - integer + title: Refunded Quantity + description: >- + For refund charges, the quantity being refunded. For non-refund + charges, + the total quantity refunded (possibly over multiple refunds). + credit_applied: + type: + - "null" + - number + format: float + title: Credit Applied + description: The amount of credit from this line item that was + applied to the invoice. + shipping_address: + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + start_date: + type: + - "null" + - string + format: date-time + title: Start date + description: >- + If an end date is present, this is value indicates the beginning + of a + billing time range. If no end date is present it indicates billing + for a + specific date. + end_date: + type: + - "null" + - string + format: date-time + title: End date + description: "If this date is provided, it indicates the end of + a time range." + custom_fields: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + type: string + format: date-time + title: Created at + description: When the line item was created. + updated_at: + type: string + format: date-time + title: Last updated at + description: When the line item was last changed. + has_more_line_items: + description: Indicates if there are more line items in the invoice. + type: + - "null" + - boolean + transactions: + description: The transactions associated with the invoice. + type: + - "null" + - array + title: Transactions + items: + type: + - "null" + - object + properties: + id: + description: The ID of a transaction linked to the invoice. + type: string + title: Transaction ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and + building URLs into Recurly's UI. + maxLength: 32 + credit_payments: + description: The credit payments related to the invoice. + type: + - "null" + - array + title: Credit payments + items: + type: + - "null" + - object + properties: + id: + description: The ID of a credit payment associated with the invoice. + type: string + title: Credit Payment ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and + building URLs into Recurly's UI. + maxLength: 32 + created_at: + description: The date and time when the invoice was created. + type: + - "null" + - string + format: date-time + title: Created at + readOnly: true + updated_at: + description: The date and time when the invoice was last updated. + type: + - "null" + - string + format: date-time + title: Last updated at + readOnly: true + due_at: + type: + - "null" + - string + format: date-time + title: Due at + description: Date invoice is due. This is the date the net terms are + reached. + closed_at: + type: + - "null" + - string + format: date-time + title: Closed at + description: Date invoice was marked paid or failed. + dunning_campaign_id: + type: + - "null" + - string + title: Dunning Campaign ID + description: >- + Unique ID to identify the dunning campaign used when dunning the invoice. + Available when the Dunning Campaigns feature is enabled. For sites + without + multiple dunning campaigns enabled, this will always be the default + dunning campaign. + maxLength: 256 + dunning_events_sent: + description: The number of dunning events sent for the invoice. + type: + - "null" + - integer + final_dunning_event: + description: The final dunning event related to the invoice if applicable. + type: + - "null" + - boolean + business_entity_id: + description: The business entity ID linked to the invoice. + type: + - "null" + - string + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + line_items: + type: DeclarativeStream + name: line_items + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: line_items + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: + - "null" + - object + title: Line item + properties: + id: + type: string + title: Line item ID + maxLength: 13 + object: + type: + - "null" + - string + uuid: + type: string + title: UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + type: + type: string + title: Line item type + description: >- + Charges are positive line items that debit the account. Credits are + negative line items that credit the account. + maxLength: 256 + item_code: + type: + - "null" + - string + title: Item Code + description: >- + Unique code to identify an item. Available when the Credit Invoices + and + Subscription Billing Terms features are enabled. + maxLength: 50 + item_id: + type: + - "null" + - string + title: Item ID + description: >- + System-generated unique identifier for an item. Available when the + Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 13 + external_sku: + type: + - "null" + - string + title: External SKU + description: >- + Optional Stock Keeping Unit assigned to an item. Available when the + Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 50 + revenue_schedule_type: + type: + - "null" + - string + title: Revenue schedule type + maxLength: 256 + state: + type: string + title: Current state of the line item + description: >- + Pending line items are charges or credits on an account that have + not been + applied to an invoice yet. Invoiced line items will always have an + `invoice_id` value. + maxLength: 256 + legacy_category: + type: + - "null" + - string + title: Legacy category + description: > + Category to describe the role of a line item on a legacy invoice: + + - "charges" refers to charges being billed for on this invoice. + + - "credits" refers to refund or proration credits. This portion of + the + invoice can be considered a credit memo. + + - "applied_credits" refers to previous credits applied to this invoice. + See their original_line_item_id to determine where the credit first + originated. + + - "carryforwards" can be ignored. They exist to consume any remaining + credit balance. A new credit with the same amount will be created + and + placed back on the account. + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + bill_for_account_id: + type: string + title: Bill For Account ID + maxLength: 13 + description: The UUID of the account responsible for originating the + line item. + subscription_id: + type: + - "null" + - string + title: Subscription ID + description: "If the line item is a charge or credit for a subscription, + this is its ID." + maxLength: 13 + plan_id: + type: + - "null" + - string + title: Plan ID + description: >- + If the line item is a charge or credit for a plan or add-on, this + is the + plan's ID. + maxLength: 13 + plan_code: + type: + - "null" + - string + title: Plan code + description: >- + If the line item is a charge or credit for a plan or add-on, this + is the + plan's code. + maxLength: 50 + add_on_id: + type: + - "null" + - string + title: Add-on ID + description: If the line item is a charge or credit for an add-on this + is its ID. + maxLength: 13 + add_on_code: + type: + - "null" + - string + title: Add-on code + description: "If the line item is a charge or credit for an add-on, + this is its code." + maxLength: 50 + invoice_id: + type: + - "null" + - string + title: Invoice ID + description: Once the line item has been invoiced this will be the invoice's + ID. + maxLength: 13 + invoice_number: + type: + - "null" + - string + title: Invoice number + description: >- + Once the line item has been invoiced this will be the invoice's number. + If + VAT taxation and the Country Invoice Sequencing feature are enabled, + invoices will have country-specific invoice numbers for invoices billed + to + EU countries (ex: FR1001). Non-EU invoices will continue to use the + site-level invoice number sequence. + maxLength: 256 + previous_line_item_id: + type: + - "null" + - string + title: Previous line item ID + description: >- + Will only have a value if the line item is a credit created from a + previous credit, or if the credit was created from a charge refund. + maxLength: 13 + original_line_item_invoice_id: + type: + - "null" + - string + title: Original line item's invoice ID + description: >- + The invoice where the credit originated. Will only have a value if + the + line item is a credit created from a previous credit, or if the credit + was + created from a charge refund. + maxLength: 13 + origin: + type: string + title: Origin of line item + description: >- + A credit created from an original charge will have the value of the + charge's origin. + maxLength: 256 + accounting_code: + type: string + title: Accounting code + description: >- + Internal accounting code to help you reconcile your revenue to the + correct + ledger. Line items created as part of a subscription invoice will + use the + plan or add-on's accounting code, otherwise the value will only be + present + if you define an accounting code when creating the line item. + maxLength: 20 + product_code: + type: string + title: Product code + description: >- + For plan-related line items this will be the plan's code, for add-on + related line items it will be the add-on's code. For item-related + line + items it will be the item's `external_sku`. + maxLength: 50 + credit_reason_code: + type: + - "null" + - string + title: Credit reason code + description: The reason the credit was given when line item is `type=credit`. + default: general + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Total after discounts and taxes + description: "`(quantity * unit_amount) - (discount + tax)`" + description: + type: string + title: Description + description: >- + Description that appears on the invoice. For subscription related + items + this will be filled in automatically. + maxLength: 255 + quantity: + type: integer + title: Quantity + description: >- + This number will be multiplied by the unit amount to compute the subtotal + before any discounts or taxes. + default: 1 + unit_amount: + type: number + format: float + title: Unit amount + description: "Positive amount for a charge, negative amount for a credit." + unit_amount_decimal: + type: + - "null" + - string + title: Unit amount decimal + description: "Positive amount for a charge, negative amount for a credit." + subtotal: + type: number + format: float + title: Total before discounts and taxes + description: "`quantity * unit_amount`" + discount: + type: + - "null" + - number + format: float + title: Discount + description: The discount applied to the line item. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The tax amount for the line item. + taxable: + type: boolean + title: Taxable? + description: "`true` if the line item is taxable, `false` if it is not." + tax_exempt: + type: boolean + title: Tax exempt? + description: >- + `true` exempts tax on charges, `false` applies tax on charges. If + not + defined, then defaults to the Plan and Site settings. This attribute + does + not work for credits (negative line items). Credits are always applied + post-tax. Pre-tax discounts should use the Coupons feature. + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax + code + values are specific to each tax system. If you are using Recurly’s + EU VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + proration_rate: + type: + - "null" + - number + format: float + title: Proration rate + description: >- + When a line item has been prorated, this is the rate of the proration. + Proration rates were made available for line items created after March + 30, + 2017. For line items created prior to that date, the proration rate + will + be `null`, even if the line item was prorated. + minimum: 0 + maximum: 1 + refund: + type: boolean + title: Refund? + refunded_quantity: + type: + - "null" + - integer + title: Refunded Quantity + description: >- + For refund charges, the quantity being refunded. For non-refund charges, + the total quantity refunded (possibly over multiple refunds). + credit_applied: + type: + - "null" + - number + format: float + title: Credit Applied + description: The amount of credit from this line item that was applied + to the invoice. + shipping_address: + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + start_date: + type: + - "null" + - string + format: date-time + title: Start date + description: >- + If an end date is present, this is value indicates the beginning of + a + billing time range. If no end date is present it indicates billing + for a + specific date. + end_date: + type: + - "null" + - string + format: date-time + title: End date + description: "If this date is provided, it indicates the end of a time + range." + custom_fields: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + type: string + format: date-time + title: Created at + description: When the line item was created. + updated_at: + type: string + format: date-time + title: Last updated at + description: When the line item was last changed. + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + measured_units: + type: DeclarativeStream + name: measured_units + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: measured_units + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the measured unit + type: + - "null" + - string + maxLength: 13 + object: + description: "Type of object, in this case, 'measured_unit'" + type: + - "null" + - string + name: + description: Internal name used to identify the measured unit + type: + - "null" + - string + maxLength: 256 + display_name: + description: Human-readable name used for display purposes + type: + - "null" + - string + maxLength: 255 + state: + description: Current state of the measured unit + type: + - "null" + - string + maxLength: 255 + description: + description: Description of the measured unit + type: + - "null" + - string + maxLength: 1024 + created_at: + description: Timestamp indicating when the measured unit was created + type: + - "null" + - string + format: date-time + updated_at: + description: Timestamp indicating when the measured unit was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Timestamp indicating when the measured unit was deleted + (if applicable) + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + plans: + type: DeclarativeStream + name: plans + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: plans + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the plan. + type: + - "null" + - string + maxLength: 13 + object: + description: Indicates the type of object which in this case is 'plan'. + type: + - "null" + - string + code: + description: Unique identifier code for the plan. + type: + - "null" + - string + maxLength: 256 + state: + description: The current state of the plan. + type: + - "null" + - string + maxLength: 256 + name: + description: Name of the plan. + type: + - "null" + - string + maxLength: 256 + description: + description: Description of the plan. + type: + - "null" + - string + maxLength: 1024 + interval_unit: + description: Unit of the billing interval for the plan. + type: + - "null" + - string + maxLength: 256 + interval_length: + description: Length of the billing interval for the plan. + type: + - "null" + - number + trial_unit: + description: Unit of the trial period for the plan. + type: + - "null" + - string + maxLength: 256 + trial_length: + description: Length of the trial period for the plan. + type: + - "null" + - number + trial_requires_billing_info: + description: Determines if billing information is required for the trial. + type: + - "null" + - boolean + total_billing_cycles: + description: Total number of billing cycles the plan will run for. + type: + - "null" + - number + auto_renew: + description: Indicates whether the plan should automatically renew. + type: + - "null" + - boolean + pricing_model: + description: The pricing model used for the plan. + type: + - "null" + - string + ramp_intervals: + description: Specifies ramp intervals for the plan. + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + starting_billing_cycle: + description: The starting billing cycle for the ramp interval. + type: + - "null" + - integer + currencies: + description: Contains currencies information within the ramp intervals. + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + currency: + description: Currency code for the interval. + type: + - "null" + - string + unit_amount: + description: Unit amount for the currency in the interval. + type: + - "null" + - number + custom_fields: + description: Includes any custom fields associated with the plan. + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + description: Name of the custom field. + type: + - "null" + - string + value: + description: Value of the custom field. + type: + - "null" + - string + accounting_code: + description: The accounting code associated with the plan. + type: + - "null" + - string + maxLength: 256 + revenue_schedule_type: + description: Type of revenue schedule for the plan. + type: + - "null" + - string + maxLength: 256 + setup_fee_revenue_schedule_type: + description: Revenue schedule type for the setup fee. + type: + - "null" + - string + maxLength: 256 + setup_fee_accounting_code: + description: The accounting code associated with the setup fee. + type: + - "null" + - string + maxLength: 256 + avalara_transaction_type: + description: The Avalara transaction type used for tax calculation. + type: + - "null" + - number + avalara_service_type: + description: The Avalara service type used for tax calculation. + type: + - "null" + - number + tax_code: + description: Tax code used for the plan. + type: + - "null" + - string + maxLength: 256 + tax_exempt: + description: Determines if the plan is tax exempt. + type: + - "null" + - boolean + currencies: + description: Contains information about the currencies supported by + the plan. + type: array + title: Pricing + items: + type: object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + setup_fee: + type: number + format: float + title: Setup fee + description: >- + Amount of one-time setup fee automatically charged at the beginning + of a subscription billing cycle. For subscription plans with + a + trial, the setup fee will be charged at the time of signup. + Setup + fees do not increase with the quantity of a subscription plan. + minimum: 0 + maximum: 1000000 + unit_amount: + description: Unit amount for the currency in the plan. + type: number + format: float + title: Unit price + minimum: 0 + maximum: 1000000 + hosted_pages: + description: Provides details about hosted pages related to the plan. + type: object + properties: + success_url: + description: >- + URL to redirect when a user successfully completes hosted page + process. + type: + - "null" + - string + maxLength: 2048 + cancel_url: + description: URL to redirect when a user cancels during hosted page + process. + type: + - "null" + - string + maxLength: 2048 + bypass_confirmation: + description: Determines if confirmation is bypassed on hosted pages. + type: + - "null" + - boolean + display_quantity: + description: Determines if quantity is displayed on hosted pages. + type: + - "null" + - boolean + allow_any_item_on_subscriptions: + description: Determines if any item can be added to subscriptions using + this plan. + type: + - "null" + - boolean + dunning_campaign_id: + description: ID of the dunning campaign associated with the plan. + type: + - "null" + - string + maxLength: 256 + created_at: + description: Timestamp indicating when the plan was created. + type: + - "null" + - string + format: date-time + updated_at: + description: Timestamp indicating when the plan was last updated. + type: + - "null" + - string + format: date-time + deleted_at: + description: Timestamp indicating when the plan was deleted. + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + shipping_addresses: + type: DeclarativeStream + name: shipping_addresses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /accounts/{{ stream_partition['account_id'] }}/shipping_addresses + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). + This is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, + JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer + to bank account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to + perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated + with the + credit card BIN, if known by Recurly. Available on + the BillingInfo + object only. Available when the BIN country lookup + feature is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon + or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for + ACH payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for + ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate + the primary billing + info on the account. The first billing info created on + an account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate + a billing info as a + backup on the account that will be tried if the initial + billing info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else + (now_utc() - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + shipping_methods: + type: DeclarativeStream + name: shipping_methods + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: shipping_methods + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the shipping method + type: string + title: Shipping Method ID + readOnly: true + maxLength: 13 + code: + type: string + title: Code + description: The internal name used identify the shipping method. + maxLength: 50 + name: + type: string + title: Name + description: The name of the shipping method displayed to customers. + maxLength: 100 + accounting_code: + type: string + title: Accounting Code + description: Accounting code for shipping method. + maxLength: 20 + tax_code: + type: string + title: Tax code + description: | + Used by Avalara, Vertex, and Recurly’s built-in tax feature. The tax + code values are specific to each tax system. If you are using Recurly’s + built-in taxes the values are: + + - `FR` – Common Carrier FOB Destination + - `FR022000` – Common Carrier FOB Origin + - `FR020400` – Non Common Carrier FOB Destination + - `FR020500` – Non Common Carrier FOB Origin + - `FR010100` – Delivery by Company Vehicle Before Passage of Title + - `FR010200` – Delivery by Company Vehicle After Passage of Title + - `NT` – Non-Taxable + maxLength: 50 + created_at: + description: Timestamp indicating when the shipping method was created + type: string + format: date-time + title: Created at + readOnly: true + updated_at: + description: Timestamp indicating when the shipping method was last + updated + type: string + format: date-time + title: Last updated at + readOnly: true + deleted_at: + description: Timestamp indicating when the shipping method was deleted + type: string + format: date-time + title: Deleted at + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + subscriptions: + type: DeclarativeStream + name: subscriptions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: subscriptions + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the subscription. + type: + - "null" + - string + maxLength: 13 + object: + description: Indicates the type of object (subscription). + type: + - "null" + - string + uuid: + description: Universally unique identifier for the subscription. + type: + - "null" + - string + maxLength: 32 + account: + description: Information about the associated account for the subscription + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + email: + type: + - "null" + - string + maxLength: 256 + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + plan: + description: Information about the plan associated with the subscription + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + state: + description: "Current state of the subscription (e.g., active, cancelled)." + type: + - "null" + - string + maxLength: 256 + shipping: + description: Information about the shipping associated with the subscription + type: + - "null" + - object + properties: + object: + type: + - "null" + - string + address: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + method: + description: Information about the shipping method + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Method ID + readOnly: true + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + name: + type: + - "null" + - string + amount: + type: + - "null" + - number + coupon_redemptions: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + object: + type: + - "null" + - string + coupon: + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + name: + type: + - "null" + - string + state: + type: + - "null" + - string + discount: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + percent: + type: + - "null" + - integer + currencies: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + currency: + type: + - "null" + - string + amount: + type: + - "null" + - number + trial: + type: + - "null" + - object + properties: + unit: + type: + - "null" + - string + length: + type: + - "null" + - integer + coupon_type: + type: + - "null" + - string + expired_at: + type: + - "null" + - string + format: date-time + state: + type: + - "null" + - string + discounted: + type: + - "null" + - number + created_at: + type: + - "null" + - string + format: date-time + description: Details of any coupons redeemed for the subscription. + pending_change: + description: Information about any pending changes to the subscription + type: + - "null" + - object + title: Subscription Change + properties: + id: + type: string + title: Subscription Change ID + description: The ID of the Subscription Change. + maxLength: 13 + subscription_id: + type: string + title: Subscription ID + description: The ID of the subscription that is going to be changed. + maxLength: 13 + activate_at: + description: Timestamp when the pending change will be activated + type: string + format: date-time + title: Activated at + readOnly: true + activated: + type: boolean + title: Activated? + description: Returns `true` if the subscription change is activated. + created_at: + description: Timestamp when the pending change was created + type: string + format: date-time + title: Created at + readOnly: true + updated_at: + description: Timestamp when the pending change was last updated + type: string + format: date-time + title: Updated at + readOnly: true + deleted_at: + description: Timestamp when the pending change was deleted + type: string + format: date-time + title: Deleted at + readOnly: true + current_period_started_at: + description: Timestamp when the current period started + type: + - "null" + - string + format: date-time + current_period_ends_at: + description: Timestamp when the current period ends + type: + - "null" + - string + format: date-time + current_term_started_at: + description: Timestamp when the current term started + type: + - "null" + - string + format: date-time + current_term_ends_at: + description: Timestamp when the current term ends + type: + - "null" + - string + format: date-time + trial_started_at: + description: Timestamp when the trial period started + type: + - "null" + - string + format: date-time + trial_ends_at: + description: Timestamp when the trial period ends + type: + - "null" + - string + format: date-time + remaining_billing_cycles: + description: Number of billing cycles remaining before subscription + ends. + type: + - "null" + - number + total_billing_cycles: + description: Total number of billing cycles for the subscription. + type: + - "null" + - number + renewal_billing_cycles: + description: Number of billing cycles in the renewal period. + type: + - "null" + - number + auto_renew: + description: Flag indicating whether the subscription auto renews. + type: + - "null" + - boolean + ramp_intervals: + description: Information about any ramp intervals associated with the + subscription + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + starting_billing_cycle: + type: + - "null" + - integer + remaining_billing_cycles: + type: + - "null" + - integer + starting_on: + description: Timestamp when the ramp interval starts + type: + - "null" + - string + format: date-time + ending_on: + description: Timestamp when the ramp interval ends + type: + - "null" + - string + format: date-time + unit_amount: + type: + - "null" + - number + paused_at: + description: Timestamp when the subscription was paused + type: + - "null" + - string + format: date-time + remaining_pause_cycles: + description: Number of pause cycles remaining for the subscription. + type: + - "null" + - number + currency: + description: Currency used for billing the subscription. + type: + - "null" + - string + maxLength: 3 + revenue_schedule_type: + description: Type of revenue schedule for the subscription. + type: + - "null" + - string + maxLength: 256 + unit_amount: + description: Amount charged per unit for the subscription. + type: + - "null" + - number + tax_inclusive: + description: Flag indicating if taxes are included in the total amount. + type: + - "null" + - boolean + quantity: + description: Number of units or items included in the subscription. + type: + - "null" + - number + add_ons: + description: Any additional services or items added to the subscription. + type: + - "null" + - array + title: Add-ons + items: + type: + - "null" + - object + title: Subscription Add-on + description: This links an Add-on to a specific Subscription. + properties: + id: + type: string + title: Subscription Add-on ID + maxLength: 13 + code: + type: string + title: Add-on code + description: The unique identifier for the add-on within its plan. + maxLength: 50 + add_ons_total: + description: Total amount charged for the additional services or items. + type: + - "null" + - number + subtotal: + description: Subtotal amount before taxes and additional charges. + type: + - "null" + - number + tax: + description: Total tax amount applied to the subscription. + type: + - "null" + - number + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + description: Details of the tax information for the subscription. + total: + description: Total amount including taxes and additional charges. + type: + - "null" + - number + collection_method: + description: Method used for collecting payments for the subscription. + type: + - "null" + - string + maxLength: 256 + po_number: + description: Purchase order number associated with the subscription. + type: + - "null" + - string + maxLength: 256 + net_terms: + description: Number of net terms for payment. + type: + - "null" + - number + net_terms_type: + description: "Type of net terms (e.g., days)." + type: + - "null" + - string + terms_and_conditions: + description: Terms and conditions agreed upon for the subscription. + type: + - "null" + - string + maxLength: 16384 + customer_notes: + description: Any notes or comments added by the customer. + type: + - "null" + - string + maxLength: 1024 + expiration_reason: + description: Reason for the subscription expiration. + type: + - "null" + - string + maxLength: 1024 + custom_fields: + description: Custom fields associated with the subscription + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + description: Timestamp when the subscription was created + type: + - "null" + - string + format: date-time + updated_at: + description: Timestamp when the subscription was last updated + type: + - "null" + - string + format: date-time + activated_at: + description: Timestamp when the subscription was activated + type: + - "null" + - string + format: date-time + canceled_at: + description: Timestamp when the subscription was canceled + type: + - "null" + - string + format: date-time + expires_at: + description: Timestamp when the subscription expires + type: + - "null" + - string + format: date-time + bank_account_authorized_at: + description: Timestamp when bank account authorization occurred + type: + - "null" + - string + format: date-time + gateway_code: + description: Code associated with the payment gateway used for processing + payments. + type: + - "null" + - string + maxLength: 256 + billing_info_id: + description: ID of the billing information associated with the subscription. + type: + - "null" + - string + maxLength: 13 + active_invoice_id: + description: ID of the active invoice associated with the subscription. + type: + - "null" + - string + started_with_gift: + description: Indicates if the subscription started with a gift or promotion. + type: + - "null" + - boolean + converted_at: + description: Timestamp when the subscription was converted + type: + - "null" + - string + format: date-time + action_result: + description: Result of the action performed on the subscription. + type: + - "null" + - object + additionalProperties: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + transactions: + type: DeclarativeStream + name: transactions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: transactions + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + additionalProperties: true + properties: + id: + description: Unique identifier for the transaction + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object (transaction) + type: + - "null" + - string + uuid: + description: Universally unique identifier for the transaction + type: + - "null" + - string + maxLength: 32 + original_transaction_id: + description: "ID of the original transaction, if applicable" + type: + - "null" + - string + maxLength: 13 + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + description: Details of the account associated with the transaction + invoice: + description: Details of the invoice associated with the transaction + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + maxLength: 13 + number: + type: + - "null" + - string + maxLength: 256 + business_entity_id: + type: + - "null" + - string + type: + type: + - "null" + - string + state: + type: + - "null" + - string + voided_by_invoice: + description: Details of the invoice that voided the transaction + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + number: + type: + - "null" + - string + maxLength: 256 + business_entity_id: + type: + - "null" + - string + type: + type: + - "null" + - string + state: + type: + - "null" + - string + subscription_ids: + description: List of subscription IDs associated with the transaction + type: array + items: + type: + - "null" + - string + maxLength: 13 + type: + description: Type of transaction + type: + - "null" + - string + maxLength: 256 + origin: + description: Source or origin of the transaction + type: + - "null" + - string + maxLength: 256 + currency: + description: Currency used for the transaction + type: + - "null" + - string + maxLength: 3 + amount: + description: Amount of the transaction + type: + - "null" + - number + status: + description: Current status of the transaction + type: + - "null" + - string + maxLength: 256 + success: + description: Indicates the success status of the transaction + type: + - "null" + - boolean + backup_payment_method_used: + description: Indicates whether a backup payment method was used + type: + - "null" + - boolean + refunded: + description: Indicates whether the transaction has been refunded + type: + - "null" + - boolean + billing_address: + description: Billing address details of the transaction + type: object + properties: + first_name: + type: + - "null" + - string + maxLength: 256 + last_name: + type: + - "null" + - string + maxLength: 256 + phone: + type: + - "null" + - string + maxLength: 256 + street1: + type: + - "null" + - string + maxLength: 256 + street2: + type: + - "null" + - string + maxLength: 256 + city: + type: + - "null" + - string + maxLength: 256 + region: + type: + - "null" + - string + maxLength: 256 + postal_code: + type: + - "null" + - string + maxLength: 256 + country: + type: + - "null" + - string + maxLength: 256 + geo_code: + type: + - "null" + - string + collection_method: + description: Method used to collect the transaction + type: + - "null" + - string + maxLength: 256 + payment_method: + description: Details of the payment method used for the transaction + type: object + properties: + object: + type: + - "null" + - string + card_type: + type: + - "null" + - string + maxLength: 256 + first_six: + type: + - "null" + - string + maxLength: 6 + last_four: + type: + - "null" + - string + maxLength: 4 + last_two: + type: + - "null" + - string + maxLength: 2 + exp_month: + type: + - "null" + - number + exp_year: + type: + - "null" + - number + gateway_token: + type: + - "null" + - string + maxLength: 256 + cc_bin_country: + type: + - "null" + - string + gateway_code: + type: + - "null" + - string + maxLength: 256 + billing_agreement_id: + type: + - "null" + - string + maxLength: 256 + name_on_account: + type: + - "null" + - string + maxLength: 256 + account_type: + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + maxLength: 256 + username: + type: + - "null" + - string + ip_address_v4: + description: IPv4 address of the transaction + type: + - "null" + - string + maxLength: 256 + ip_address_country: + description: Country of the IP address used for the transaction + type: + - "null" + - string + maxLength: 256 + status_code: + description: Status code of the transaction + type: + - "null" + - string + maxLength: 256 + status_message: + description: Message related to the status of the transaction + type: + - "null" + - string + maxLength: 1024 + customer_message: + description: Message for the customer related to the transaction + type: + - "null" + - string + maxLength: 1024 + customer_message_locale: + description: Locale of the customer message + type: + - "null" + - string + maxLength: 12 + payment_gateway: + description: Details of the payment gateway used for the transaction + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + type: + type: + - "null" + - string + name: + type: + - "null" + - string + gateway_message: + description: Message returned by the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_reference: + description: Reference number provided by the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_approval_code: + description: Approval code provided by the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_response_code: + description: Response code from the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_response_time: + description: Time taken for the payment gateway to respond + type: + - "null" + - number + gateway_response_values: + description: Additional values in the gateway response + type: object + cvv_check: + description: Result of the CVV check + type: + - "null" + - string + maxLength: 256 + avs_check: + description: Result of the Address Verification System check + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the transaction was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time of the last update to the transaction + type: + - "null" + - string + format: date-time + voided_at: + description: Date and time when the transaction was voided + type: + - "null" + - string + format: date-time + collected_at: + description: Date and time when the transaction was collected + type: + - "null" + - string + format: date-time + action_result: + description: Result of the action taken for the transaction + type: + - "null" + - object + additionalProperties: true + vat_number: + description: VAT number associated with the transaction + type: + - "null" + - string + fraud_info: + description: Information related to fraud check for the transaction + type: + - "null" + - object + properties: + object: + type: + - "null" + - string + score: + type: + - "null" + - integer + decision: + type: + - "null" + - string + reference: + type: + - "null" + - string + risk_rules_triggered: + type: + - "null" + - array + items: + description: Details of individual risk rules triggered + type: + - "null" + - object + properties: + code: + type: + - "null" + - string + message: + type: + - "null" + - string + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + unique_coupons: + type: DeclarativeStream + name: unique_coupons + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /coupons/{{ stream_partition['coupon_id'] }}/unique_coupon_codes + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: coupon_id + stream: + type: DeclarativeStream + name: coupons + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: coupons + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + record_filter: + condition: "{{ record['coupon_type'] == 'bulk' }}" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + maxLength: 256 + state: + type: + - "null" + - string + maxLength: 256 + max_redemptions: + type: + - "null" + - number + max_redemptions_per_account: + type: + - "null" + - number + unique_coupon_codes_count: + type: + - "null" + - number + unique_code_template: + type: + - "null" + - string + maxLength: 256 + unique_coupon_code: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the + coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable + or why not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was + redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached + its + `max_redemptions`. + format: date-time + duration: + type: + - "null" + - string + maxLength: 256 + temporal_amount: + type: + - "null" + - number + temporal_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_amount: + type: + - "null" + - number + applies_to_all_plans: + type: + - "null" + - boolean + applies_to_all_items: + type: + - "null" + - boolean + applies_to_non_plan_charges: + type: + - "null" + - boolean + plans: + type: + - "null" + - array + title: Plans + description: >- + A list of plans for which this coupon applies. This will be + `null` if + `applies_to_all_plans=true`. + items: + type: object + title: Plan mini details + description: Just the important parts. + properties: + id: + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Plan code + description: >- + Unique code to identify the plan. This is used in Hosted + Payment + Page URLs and in the invoice exports. + maxLength: 13 + items: + type: + - "null" + - array + title: Items + description: | + A list of items for which this coupon applies. This will be + `null` if `applies_to_all_items=true`. + items: + type: + - "null" + - object + title: Item mini details + description: Just the important parts. + properties: + id: + type: string + title: Item ID + maxLength: 13 + readOnly: true + redemption_resource: + type: + - "null" + - string + maxLength: 256 + discount: + type: + - "null" + - object + description: | + Details of the discount a coupon applies. Will contain a `type` + property and one of the following properties: `percent`, `fixed`, `trial`. + properties: + type: + type: string + maxLength: 256 + percent: + description: This is only present when `type=percent`. + type: integer + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this + coupon applies. + trial: + type: object + description: This is only present when `type=free_trial`. + properties: + unit: + title: Trial unit + description: Temporal unit of the free trial + type: string + maxLength: 256 + length: + type: integer + title: Trial length + description: >- + Trial length measured in the units specified by the + sibling `unit` + property + coupon_type: + type: + - "null" + - string + maxLength: 256 + hosted_page_description: + type: + - "null" + - string + maxLength: 1024 + invoice_description: + type: + - "null" + - string + maxLength: 1024 + redeem_by: + type: + - "null" + - string + maxLength: 256 + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + expired_at: + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else + (now_utc() - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or why + not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + base_requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" +streams: +- type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This is only + used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, JCB, + etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank account + if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated with the + credit card BIN, if known by Recurly. Available on the BillingInfo + object only. Available when the BIN country lookup feature is + enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH payment + methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the primary + billing + info on the account. The first billing info created on an account + will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing info + as a + backup on the account that will be tried if the initial billing info + used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: account_coupon_redemptions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /accounts/{{ stream_partition['account_id'] }}/coupon_redemptions + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This + is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, + JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank + account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated + with the + credit card BIN, if known by Recurly. Available on the + BillingInfo + object only. Available when the BIN country lookup feature + is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon + or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH + payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH + payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the + primary billing + info on the account. The first billing info created on an + account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing + info as a + backup on the account that will be tried if the initial billing + info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for the redemption + type: + - "null" + - string + maxLength: 13 + object: + description: The type of object this represents + type: + - "null" + - string + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + description: The account associated with the coupon redemption + subscription_id: + description: The subscription associated with the redemption + type: + - "null" + - string + maxLength: 13 + coupon: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + maxLength: 256 + state: + type: + - "null" + - string + maxLength: 256 + max_redemptions: + type: + - "null" + - number + max_redemptions_per_account: + type: + - "null" + - number + unique_coupon_codes_count: + type: + - "null" + - number + unique_code_template: + type: + - "null" + - string + maxLength: 256 + unique_coupon_code: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or + why not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + duration: + type: + - "null" + - string + maxLength: 256 + temporal_amount: + type: + - "null" + - number + temporal_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_amount: + type: + - "null" + - number + applies_to_all_plans: + type: + - "null" + - boolean + applies_to_all_items: + type: + - "null" + - boolean + applies_to_non_plan_charges: + type: + - "null" + - boolean + plans: + type: + - "null" + - array + title: Plans + description: >- + A list of plans for which this coupon applies. This will be `null` + if + `applies_to_all_plans=true`. + items: + type: object + title: Plan mini details + description: Just the important parts. + properties: + id: + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Plan code + description: >- + Unique code to identify the plan. This is used in Hosted Payment + Page URLs and in the invoice exports. + maxLength: 13 + items: + type: + - "null" + - array + title: Items + description: | + A list of items for which this coupon applies. This will be + `null` if `applies_to_all_items=true`. + items: + type: + - "null" + - object + title: Item mini details + description: Just the important parts. + properties: + id: + type: string + title: Item ID + maxLength: 13 + readOnly: true + redemption_resource: + type: + - "null" + - string + maxLength: 256 + discount: + type: + - "null" + - object + description: | + Details of the discount a coupon applies. Will contain a `type` + property and one of the following properties: `percent`, `fixed`, `trial`. + properties: + type: + type: string + maxLength: 256 + percent: + description: This is only present when `type=percent`. + type: integer + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon + applies. + trial: + type: object + description: This is only present when `type=free_trial`. + properties: + unit: + title: Trial unit + description: Temporal unit of the free trial + type: string + maxLength: 256 + length: + type: integer + title: Trial length + description: >- + Trial length measured in the units specified by the sibling + `unit` + property + coupon_type: + type: + - "null" + - string + maxLength: 256 + hosted_page_description: + type: + - "null" + - string + maxLength: 1024 + invoice_description: + type: + - "null" + - string + maxLength: 1024 + redeem_by: + type: + - "null" + - string + maxLength: 256 + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + expired_at: + type: + - "null" + - string + format: date-time + description: The coupon being redeemed + state: + description: The current state of the redemption + type: + - "null" + - string + maxLength: 256 + currency: + description: The currency in which the redemption was made + type: + - "null" + - string + maxLength: 3 + discounted: + description: The amount discounted by the coupon + type: + - "null" + - number + created_at: + description: The date and time when the redemption was created + type: + - "null" + - string + format: date-time + updated_at: + description: The date and time when the redemption was last updated + type: + - "null" + - string + format: date-time + removed_at: + description: The date and time when the redemption was removed (if applicable) + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: account_notes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /accounts/{{ stream_partition['account_id'] }}/notes + http_method: GET + request_parameters: + order: asc + sort: created_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This + is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, + JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank + account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated + with the + credit card BIN, if known by Recurly. Available on the + BillingInfo + object only. Available when the BIN country lookup feature + is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon + or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH + payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH + payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the + primary billing + info on the account. The first billing info created on an + account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing + info as a + backup on the account that will be tried if the initial billing + info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for this note. + type: string + maxLength: 13 + readOnly: true + object: + description: "Represents the object type, in this case, 'note'." + type: + - "null" + - string + account_id: + description: The unique identifier of the account associated with this note. + type: string + maxLength: 13 + user: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + time_zone: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + deleted_at: + type: + - "null" + - string + format: date-time + description: The user who created the note. + message: + description: The content or message of the note. + type: + - "null" + - string + maxLength: 2048 + created_at: + description: The date and time when the note was created. + type: string + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: created_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: add_ons + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /add_ons + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for the add-on. + type: string + title: Add-on ID + maxLength: 13 + readOnly: true + plan_id: + description: The ID of the plan to which the add-on is associated. + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Add-on code + description: The unique identifier for the add-on within its plan. + maxLength: 50 + state: + title: State + description: Add-ons can be either active or inactive. + readOnly: true + type: string + maxLength: 256 + name: + type: string + title: Name + description: Describes your add-on and will appear in subscribers' invoices. + maxLength: 255 + add_on_type: + type: + - "null" + - string + title: Add-on Type + description: "Whether the add-on type is fixed, or usage-based." + maxLength: 256 + usage_type: + type: string + title: Usage Type + description: "Type of usage, returns usage type if `add_on_type` is `usage`." + maxLength: 256 + usage_percentage: + type: + - "null" + - number + format: float + title: Usage Percentage + description: >- + The percentage taken of the monetary amount of usage tracked. This can + be + up to 4 decimal places. A value between 0.0 and 100.0. + measured_unit_id: + type: + - "null" + - string + title: Measured Unit ID + description: >- + System-generated unique identifier for an measured unit associated with + the add-on. + maxLength: 13 + accounting_code: + type: + - "null" + - string + title: Accounting code + description: >- + Accounting code for invoice line items for this add-on. If no value is + provided, it defaults to add-on's code. + maxLength: 256 + revenue_schedule_type: + title: Revenue schedule type + description: >- + When this add-on is invoiced, the line item will use this revenue + schedule. If `item_code`/`item_id` is part of the request then + `revenue_schedule_type` must be absent in the request as the value will + be + set from the item. + type: string + maxLength: 256 + avalara_transaction_type: + type: + - string + - integer + title: Avalara Transaction Type + description: >- + Used by Avalara for Communications taxes. The transaction type in + combination with the service type describe how the add-on is taxed. Refer + to [the + documentation](https://help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) + for more available t/s types. + minimum: 0 + avalara_service_type: + type: + - string + - integer + title: Avalara Service Type + description: >- + Used by Avalara for Communications taxes. The transaction type in + combination with the service type describe how the add-on is taxed. Refer + to [the + documentation](https://help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) + for more available t/s types. + minimum: 0 + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax code + values are specific to each tax system. If you are using Recurly’s EU + VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + display_quantity: + type: + - "null" + - boolean + title: Display quantity? + description: >- + Determines if the quantity field is displayed on the hosted pages for + the + add-on. + default_quantity: + type: + - "null" + - integer + title: Default quantity + description: Default quantity for the hosted pages. + optional: + type: + - "null" + - boolean + title: Optional + description: >- + Whether the add-on is optional for the customer to include in their + purchase on the hosted payment page. If false, the add-on will be included + when a subscription is created through the Recurly UI. However, the add-on + will not be included when a subscription is created through the API. + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + unit_amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon applies. + tier_type: + type: + - "null" + - string + title: Tier type + description: > + The pricing model for the add-on. For more information, + + [click + here](https://docs.recurly.com/docs/billing-models#section-quantity-based). + See our + + [Guide](https://developers.recurly.com/guides/item-addon-guide.html) for + an overview of how + + to configure quantity-based pricing models. + maxLength: 256 + created_at: + description: The date and time when the add-on was created. + type: string + format: date-time + title: Created at + readOnly: true + updated_at: + description: The date and time when the add-on was last updated. + type: string + format: date-time + title: Last updated at + readOnly: true + deleted_at: + description: "The date and time when the add-on was deleted, if applicable." + type: string + format: date-time + title: Deleted at + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: billing_infos + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /accounts/{{ stream_partition['account_id'] }}/billing_infos + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This + is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, + JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank + account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated + with the + credit card BIN, if known by Recurly. Available on the + BillingInfo + object only. Available when the BIN country lookup feature + is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon + or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH + payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH + payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the + primary billing + info on the account. The first billing info created on an + account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing + info as a + backup on the account that will be tried if the initial billing + info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This is only + used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank account + if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated with the + credit card BIN, if known by Recurly. Available on the BillingInfo + object only. Available when the BIN country lookup feature is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the primary billing + info on the account. The first billing info created on an account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing info as + a + backup on the account that will be tried if the initial billing info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: coupons + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: coupons + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + maxLength: 256 + state: + type: + - "null" + - string + maxLength: 256 + max_redemptions: + type: + - "null" + - number + max_redemptions_per_account: + type: + - "null" + - number + unique_coupon_codes_count: + type: + - "null" + - number + unique_code_template: + type: + - "null" + - string + maxLength: 256 + unique_coupon_code: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or why + not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + duration: + type: + - "null" + - string + maxLength: 256 + temporal_amount: + type: + - "null" + - number + temporal_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_amount: + type: + - "null" + - number + applies_to_all_plans: + type: + - "null" + - boolean + applies_to_all_items: + type: + - "null" + - boolean + applies_to_non_plan_charges: + type: + - "null" + - boolean + plans: + type: + - "null" + - array + title: Plans + description: >- + A list of plans for which this coupon applies. This will be `null` if + `applies_to_all_plans=true`. + items: + type: object + title: Plan mini details + description: Just the important parts. + properties: + id: + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Plan code + description: >- + Unique code to identify the plan. This is used in Hosted Payment + Page URLs and in the invoice exports. + maxLength: 13 + items: + type: + - "null" + - array + title: Items + description: | + A list of items for which this coupon applies. This will be + `null` if `applies_to_all_items=true`. + items: + type: + - "null" + - object + title: Item mini details + description: Just the important parts. + properties: + id: + type: string + title: Item ID + maxLength: 13 + readOnly: true + redemption_resource: + type: + - "null" + - string + maxLength: 256 + discount: + type: + - "null" + - object + description: | + Details of the discount a coupon applies. Will contain a `type` + property and one of the following properties: `percent`, `fixed`, `trial`. + properties: + type: + type: string + maxLength: 256 + percent: + description: This is only present when `type=percent`. + type: integer + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon applies. + trial: + type: object + description: This is only present when `type=free_trial`. + properties: + unit: + title: Trial unit + description: Temporal unit of the free trial + type: string + maxLength: 256 + length: + type: integer + title: Trial length + description: >- + Trial length measured in the units specified by the sibling `unit` + property + coupon_type: + type: + - "null" + - string + maxLength: 256 + hosted_page_description: + type: + - "null" + - string + maxLength: 1024 + invoice_description: + type: + - "null" + - string + maxLength: 1024 + redeem_by: + type: + - "null" + - string + maxLength: 256 + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + expired_at: + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: credit_payments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: credit_payments + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier of the credit payment. + type: string + title: Credit Payment ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + action: + title: Action + description: The action for which the credit was created. + type: string + maxLength: 256 + account: + description: Details about the account associated with the credit payment. + type: object + title: Account mini details + properties: + id: + description: The ID of the account associated with the credit payment. + type: string + maxLength: 13 + readOnly: true + code: + type: string + description: The unique identifier of the account. + maxLength: 50 + applied_to_invoice: + description: Details about the invoice to which the credit payment is applied. + type: + - "null" + - object + title: Invoice mini details + properties: + id: + description: The ID of the invoice to which the credit payment is applied. + type: string + title: Invoice ID + maxLength: 13 + number: + description: The number of the invoice to which the credit payment is + applied. + type: string + title: Invoice number + maxLength: 256 + original_invoice: + description: Details about the original invoice for which the credit payment + is made. + type: + - "null" + - object + title: Invoice mini details + properties: + id: + description: The ID of the original invoice for which the credit payment + was made. + type: string + title: Invoice ID + maxLength: 13 + number: + description: >- + The number of the original invoice for which the credit payment was + made. + type: string + title: Invoice number + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Amount + description: Total credit payment amount applied to the charge invoice. + original_credit_payment_id: + type: + - "null" + - string + title: Original Credit Payment ID + description: >- + For credit payments with action `refund`, this is the credit payment that + was refunded. + maxLength: 13 + refund_transaction: + description: Details about the refund transaction associated with the credit + payment. + type: + - "null" + - object + properties: + id: + description: The ID of the refund transaction associated with the credit + payment. + type: string + title: Transaction ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + created_at: + description: The date and time when the credit payment was created. + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + description: The date and time when the credit payment was last updated. + type: string + title: Last updated at + format: date-time + readOnly: true + voided_at: + description: The date and time when the credit payment was voided. + type: + - "null" + - string + title: Voided at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: export_dates + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: export_dates + http_method: GET + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: CustomRecordExtractor + class_name: source_declarative_manifest.components.ExportDatesExtractor + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + dates: + description: List of export dates + type: + - "null" + - array + items: + description: Date of the export + type: + - "null" + - string + maxLength: 256 +- type: DeclarativeStream + name: invoices + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: invoices + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique ID of the invoice. + type: + - "null" + - string + title: Invoice ID + readOnly: true + maxLength: 13 + uuid: + description: The universally unique identifier (UUID) of the invoice. + type: + - "null" + - string + object: + description: "The type of object, in this case, an invoice." + type: + - "null" + - string + type: + title: Invoice type + description: "Invoices are either charge, credit, or legacy invoices." + type: + - "null" + - string + maxLength: 256 + origin: + type: + - "null" + - string + title: Origin + description: The event that created the invoice. + maxLength: 256 + state: + description: The current state of the invoice. + title: Invoice state + type: + - "null" + - string + maxLength: 256 + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + description: The account associated with the invoice. + billing_info_id: + type: + - "null" + - string + title: Billing info ID + description: >- + The `billing_info_id` is the value that represents a specific billing + info + for an end customer. When `billing_info_id` is used to assign billing + info + to the subscription, all future billing events for the subscription will + bill to the specified billing info. `billing_info_id` can ONLY be used + for + sites utilizing the Wallet feature. + maxLength: 256 + subscription_ids: + type: + - "null" + - array + title: Subscription IDs + description: >- + If the invoice is charging or refunding for one or more subscriptions, + these are their IDs. + items: + type: + - "null" + - string + title: Subscription ID + maxLength: 13 + previous_invoice_id: + type: + - "null" + - string + title: Previous invoice ID + description: >- + On refund invoices, this value will exist and show the invoice ID of the + purchase invoice the refund was created from. + maxLength: 13 + number: + type: + - "null" + - string + title: Invoice number + description: >- + If VAT taxation and the Country Invoice Sequencing feature are enabled, + invoices will have country-specific invoice numbers for invoices billed + to + EU countries (ex: FR1001). Non-EU invoices will continue to use the + site-level invoice number sequence. + maxLength: 256 + collection_method: + type: + - "null" + - string + title: Collection method + description: >- + An automatic invoice means a corresponding transaction is run using the + account's billing information at the same time the invoice is created. + Manual invoices are created without a corresponding transaction. The + merchant must enter a manual payment transaction or have the customer + pay + the invoice with an automatic method, like credit card, PayPal, Amazon, + or + ACH bank payment. + maxLength: 256 + po_number: + type: + - "null" + - string + title: Purchase order number + description: >- + For manual invoicing, this identifies the PO number associated with the + subscription. + maxLength: 50 + net_terms: + type: + - "null" + - integer + title: Net terms + description: >- + Integer representing the number of days after an invoice's creation that + the invoice will become past due. If an invoice's net terms are set to + '0', it is due 'On Receipt' and will become past due 24 hours after it’s + created. If an invoice is due net 30, it will become past due at 31 days + exactly. + minimum: 0 + default: 0 + address: + description: The address details related to the invoice recipient. + type: + - "null" + - object + properties: + name_on_account: + description: The name on the account. + type: + - "null" + - string + title: Name on account + maxLength: 256 + company: + description: The company name in the address. + type: + - "null" + - string + title: Company + maxLength: 256 + phone: + description: The phone number associated with the address. + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + description: The first line of the street address. + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + description: The second line of the street address. + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + description: The city in the address. + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + first_name: + description: The first name of the recipient. + type: + - "null" + - string + maxLength: 256 + last_name: + description: The last name of the recipient. + type: + - "null" + - string + maxLength: 256 + shipping_address: + description: The shipping address details for the invoice delivery. + type: + - "null" + - object + properties: + id: + description: The ID of the shipping address. + type: + - "null" + - string + title: Shipping Address ID + maxLength: 13 + readOnly: true + currency: + type: + - "null" + - string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + discount: + type: + - "null" + - number + format: float + title: Discount + description: Total discounts applied to this invoice. + subtotal: + type: + - "null" + - number + format: float + title: Subtotal + description: "The summation of charges and credits, before discounts and + taxes." + tax: + type: + - "null" + - number + format: float + title: Tax + description: The total tax on this invoice. + total: + type: + - "null" + - number + format: float + title: Total + description: >- + The final total on this invoice. The summation of invoice charges, + discounts, credits, and tax. + refundable_amount: + type: + - "null" + - number + format: float + title: Refundable amount + description: >- + The refundable amount on a charge invoice. It will be null for all other + invoices. + paid: + type: + - "null" + - number + format: float + title: Paid + description: The total amount of successful payments transaction on this + invoice. + balance: + type: + - "null" + - number + format: float + title: Balance + description: The outstanding balance remaining on this invoice. + tax_info: + description: Tax information related to the invoice. + type: + - "null" + - object + title: Tax info + properties: + type: + type: + - "null" + - string + title: Type + description: >- + Provides the tax type as "vat" for EU VAT, "usst" for U.S. Sales Tax, + or the 2 letter country code for country level tax types like Canada, + Australia, New Zealand, Israel, and all non-EU European countries. + maxLength: 256 + region: + type: + - "null" + - string + title: Region + description: >- + Provides the tax region applied on an invoice. For U.S. Sales Tax, + this will be the 2 letter state code. For EU VAT this will be the + 2 + letter country code. For all country level tax types, this will + display the regional tax, like VAT, GST, or PST. + rate: + description: The tax rate applied to the invoice. + type: + - "null" + - number + format: float + title: Rate + tax_details: + type: array + description: >- + Provides additional tax details for Canadian Sales Tax when there + is + tax applied at both the country and province levels. This will only + be + populated for the Invoice response when fetching a single invoice + and + not for the InvoiceList or LineItem. + items: + type: object + title: Tax detail + properties: + type: + type: + - "null" + - string + title: Type + description: >- + Provides the tax type for the region. For Canadian Sales Tax, + this will be GST, HST, QST or PST. + maxLength: 256 + region: + type: + - "null" + - string + title: Region + description: >- + Provides the tax region applied on an invoice. For Canadian + Sales Tax, this will be either the 2 letter province code or + country code. + maxLength: 256 + rate: + type: + - "null" + - number + format: float + title: Rate + description: Provides the tax rate for the region. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The total tax applied for this tax type. + used_tax_service: + description: Indicates if a tax service was used for the invoice. + type: + - "null" + - boolean + vat_number: + type: + - "null" + - string + title: VAT number + description: >- + VAT registration number for the customer on this invoice. This will come + from the VAT Number field in the Billing Info or the Account Info + depending on your tax settings and the invoice collection method. + maxLength: 20 + vat_reverse_charge_notes: + type: + - "null" + - string + title: VAT reverse charge notes + description: >- + VAT Reverse Charge Notes only appear if you have EU VAT enabled or are + using your own Avalara AvaTax account and the customer is in the EU, has + a + VAT number, and is in a different country than your own. This will default + to the VAT Reverse Charge Notes text specified on the Tax Settings page + in + your Recurly admin, unless custom notes were created with the original + subscription. + maxLength: 1024 + terms_and_conditions: + type: + - "null" + - string + title: Terms and conditions + description: >- + This will default to the Terms and Conditions text specified on the + Invoice Settings page in your Recurly admin. Specify custom notes to add + or override Terms and Conditions. + maxLength: 16384 + customer_notes: + type: + - "null" + - string + title: Customer notes + description: >- + This will default to the Customer Notes text specified on the Invoice + Settings. Specify custom notes to add or override Customer Notes. + maxLength: 2048 + line_items: + description: The line items included in the invoice. + type: + - "null" + - array + title: Line Items + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + title: Line item + properties: + id: + type: string + title: Line item ID + maxLength: 13 + object: + type: + - "null" + - string + uuid: + type: string + title: UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + type: + type: string + title: Line item type + description: >- + Charges are positive line items that debit the account. Credits + are + negative line items that credit the account. + maxLength: 256 + item_code: + type: + - "null" + - string + title: Item Code + description: >- + Unique code to identify an item. Available when the Credit Invoices + and + Subscription Billing Terms features are enabled. + maxLength: 50 + item_id: + type: + - "null" + - string + title: Item ID + description: >- + System-generated unique identifier for an item. Available when the + Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 13 + external_sku: + type: + - "null" + - string + title: External SKU + description: >- + Optional Stock Keeping Unit assigned to an item. Available when + the Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 50 + revenue_schedule_type: + type: + - "null" + - string + title: Revenue schedule type + maxLength: 256 + state: + type: string + title: Current state of the line item + description: >- + Pending line items are charges or credits on an account that have + not been + applied to an invoice yet. Invoiced line items will always have + an + `invoice_id` value. + maxLength: 256 + legacy_category: + type: + - "null" + - string + title: Legacy category + description: > + Category to describe the role of a line item on a legacy invoice: + + - "charges" refers to charges being billed for on this invoice. + + - "credits" refers to refund or proration credits. This portion + of the + invoice can be considered a credit memo. + + - "applied_credits" refers to previous credits applied to this invoice. + See their original_line_item_id to determine where the credit first + originated. + + - "carryforwards" can be ignored. They exist to consume any remaining + credit balance. A new credit with the same amount will be created + and + placed back on the account. + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + bill_for_account_id: + type: string + title: Bill For Account ID + maxLength: 13 + description: The UUID of the account responsible for originating the + line item. + subscription_id: + type: + - "null" + - string + title: Subscription ID + description: "If the line item is a charge or credit for a subscription, + this is its ID." + maxLength: 13 + plan_id: + type: + - "null" + - string + title: Plan ID + description: >- + If the line item is a charge or credit for a plan or add-on, this + is the + plan's ID. + maxLength: 13 + plan_code: + type: + - "null" + - string + title: Plan code + description: >- + If the line item is a charge or credit for a plan or add-on, this + is the + plan's code. + maxLength: 50 + add_on_id: + type: + - "null" + - string + title: Add-on ID + description: If the line item is a charge or credit for an add-on + this is its ID. + maxLength: 13 + add_on_code: + type: + - "null" + - string + title: Add-on code + description: "If the line item is a charge or credit for an add-on, + this is its code." + maxLength: 50 + invoice_id: + type: + - "null" + - string + title: Invoice ID + description: Once the line item has been invoiced this will be the + invoice's ID. + maxLength: 13 + invoice_number: + type: + - "null" + - string + title: Invoice number + description: >- + Once the line item has been invoiced this will be the invoice's + number. If + VAT taxation and the Country Invoice Sequencing feature are enabled, + invoices will have country-specific invoice numbers for invoices + billed to + EU countries (ex: FR1001). Non-EU invoices will continue to use + the + site-level invoice number sequence. + maxLength: 256 + previous_line_item_id: + type: + - "null" + - string + title: Previous line item ID + description: >- + Will only have a value if the line item is a credit created from + a + previous credit, or if the credit was created from a charge refund. + maxLength: 13 + original_line_item_invoice_id: + type: + - "null" + - string + title: Original line item's invoice ID + description: >- + The invoice where the credit originated. Will only have a value + if the + line item is a credit created from a previous credit, or if the + credit was + created from a charge refund. + maxLength: 13 + origin: + type: string + title: Origin of line item + description: >- + A credit created from an original charge will have the value of + the + charge's origin. + maxLength: 256 + accounting_code: + type: string + title: Accounting code + description: >- + Internal accounting code to help you reconcile your revenue to the + correct + ledger. Line items created as part of a subscription invoice will + use the + plan or add-on's accounting code, otherwise the value will only + be present + if you define an accounting code when creating the line item. + maxLength: 20 + product_code: + type: string + title: Product code + description: >- + For plan-related line items this will be the plan's code, for add-on + related line items it will be the add-on's code. For item-related + line + items it will be the item's `external_sku`. + maxLength: 50 + credit_reason_code: + type: + - "null" + - string + title: Credit reason code + description: The reason the credit was given when line item is `type=credit`. + default: general + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Total after discounts and taxes + description: "`(quantity * unit_amount) - (discount + tax)`" + description: + type: string + title: Description + description: >- + Description that appears on the invoice. For subscription related + items + this will be filled in automatically. + maxLength: 255 + quantity: + type: integer + title: Quantity + description: >- + This number will be multiplied by the unit amount to compute the + subtotal + before any discounts or taxes. + default: 1 + unit_amount: + type: number + format: float + title: Unit amount + description: "Positive amount for a charge, negative amount for a + credit." + unit_amount_decimal: + type: + - "null" + - string + title: Unit amount decimal + description: "Positive amount for a charge, negative amount for a + credit." + subtotal: + type: number + format: float + title: Total before discounts and taxes + description: "`quantity * unit_amount`" + discount: + type: + - "null" + - number + format: float + title: Discount + description: The discount applied to the line item. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The tax amount for the line item. + taxable: + type: boolean + title: Taxable? + description: "`true` if the line item is taxable, `false` if it is + not." + tax_exempt: + type: boolean + title: Tax exempt? + description: >- + `true` exempts tax on charges, `false` applies tax on charges. If + not + defined, then defaults to the Plan and Site settings. This attribute + does + not work for credits (negative line items). Credits are always applied + post-tax. Pre-tax discounts should use the Coupons feature. + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax + code + values are specific to each tax system. If you are using Recurly’s + EU VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + proration_rate: + type: + - "null" + - number + format: float + title: Proration rate + description: >- + When a line item has been prorated, this is the rate of the proration. + Proration rates were made available for line items created after + March 30, + 2017. For line items created prior to that date, the proration rate + will + be `null`, even if the line item was prorated. + minimum: 0 + maximum: 1 + refund: + type: boolean + title: Refund? + refunded_quantity: + type: + - "null" + - integer + title: Refunded Quantity + description: >- + For refund charges, the quantity being refunded. For non-refund + charges, + the total quantity refunded (possibly over multiple refunds). + credit_applied: + type: + - "null" + - number + format: float + title: Credit Applied + description: The amount of credit from this line item that was applied + to the invoice. + shipping_address: + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + start_date: + type: + - "null" + - string + format: date-time + title: Start date + description: >- + If an end date is present, this is value indicates the beginning + of a + billing time range. If no end date is present it indicates billing + for a + specific date. + end_date: + type: + - "null" + - string + format: date-time + title: End date + description: "If this date is provided, it indicates the end of a + time range." + custom_fields: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + type: string + format: date-time + title: Created at + description: When the line item was created. + updated_at: + type: string + format: date-time + title: Last updated at + description: When the line item was last changed. + has_more_line_items: + description: Indicates if there are more line items in the invoice. + type: + - "null" + - boolean + transactions: + description: The transactions associated with the invoice. + type: + - "null" + - array + title: Transactions + items: + type: + - "null" + - object + properties: + id: + description: The ID of a transaction linked to the invoice. + type: string + title: Transaction ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and + building URLs into Recurly's UI. + maxLength: 32 + credit_payments: + description: The credit payments related to the invoice. + type: + - "null" + - array + title: Credit payments + items: + type: + - "null" + - object + properties: + id: + description: The ID of a credit payment associated with the invoice. + type: string + title: Credit Payment ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and + building URLs into Recurly's UI. + maxLength: 32 + created_at: + description: The date and time when the invoice was created. + type: + - "null" + - string + format: date-time + title: Created at + readOnly: true + updated_at: + description: The date and time when the invoice was last updated. + type: + - "null" + - string + format: date-time + title: Last updated at + readOnly: true + due_at: + type: + - "null" + - string + format: date-time + title: Due at + description: Date invoice is due. This is the date the net terms are reached. + closed_at: + type: + - "null" + - string + format: date-time + title: Closed at + description: Date invoice was marked paid or failed. + dunning_campaign_id: + type: + - "null" + - string + title: Dunning Campaign ID + description: >- + Unique ID to identify the dunning campaign used when dunning the invoice. + Available when the Dunning Campaigns feature is enabled. For sites without + multiple dunning campaigns enabled, this will always be the default + dunning campaign. + maxLength: 256 + dunning_events_sent: + description: The number of dunning events sent for the invoice. + type: + - "null" + - integer + final_dunning_event: + description: The final dunning event related to the invoice if applicable. + type: + - "null" + - boolean + business_entity_id: + description: The business entity ID linked to the invoice. + type: + - "null" + - string + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: line_items + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: line_items + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: + - "null" + - object + title: Line item + properties: + id: + type: string + title: Line item ID + maxLength: 13 + object: + type: + - "null" + - string + uuid: + type: string + title: UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + type: + type: string + title: Line item type + description: >- + Charges are positive line items that debit the account. Credits are + negative line items that credit the account. + maxLength: 256 + item_code: + type: + - "null" + - string + title: Item Code + description: >- + Unique code to identify an item. Available when the Credit Invoices and + Subscription Billing Terms features are enabled. + maxLength: 50 + item_id: + type: + - "null" + - string + title: Item ID + description: >- + System-generated unique identifier for an item. Available when the Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 13 + external_sku: + type: + - "null" + - string + title: External SKU + description: >- + Optional Stock Keeping Unit assigned to an item. Available when the Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 50 + revenue_schedule_type: + type: + - "null" + - string + title: Revenue schedule type + maxLength: 256 + state: + type: string + title: Current state of the line item + description: >- + Pending line items are charges or credits on an account that have not + been + applied to an invoice yet. Invoiced line items will always have an + `invoice_id` value. + maxLength: 256 + legacy_category: + type: + - "null" + - string + title: Legacy category + description: > + Category to describe the role of a line item on a legacy invoice: + + - "charges" refers to charges being billed for on this invoice. + + - "credits" refers to refund or proration credits. This portion of the + invoice can be considered a credit memo. + + - "applied_credits" refers to previous credits applied to this invoice. + See their original_line_item_id to determine where the credit first + originated. + + - "carryforwards" can be ignored. They exist to consume any remaining + credit balance. A new credit with the same amount will be created and + placed back on the account. + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + bill_for_account_id: + type: string + title: Bill For Account ID + maxLength: 13 + description: The UUID of the account responsible for originating the line + item. + subscription_id: + type: + - "null" + - string + title: Subscription ID + description: "If the line item is a charge or credit for a subscription, + this is its ID." + maxLength: 13 + plan_id: + type: + - "null" + - string + title: Plan ID + description: >- + If the line item is a charge or credit for a plan or add-on, this is the + plan's ID. + maxLength: 13 + plan_code: + type: + - "null" + - string + title: Plan code + description: >- + If the line item is a charge or credit for a plan or add-on, this is the + plan's code. + maxLength: 50 + add_on_id: + type: + - "null" + - string + title: Add-on ID + description: If the line item is a charge or credit for an add-on this is + its ID. + maxLength: 13 + add_on_code: + type: + - "null" + - string + title: Add-on code + description: "If the line item is a charge or credit for an add-on, this + is its code." + maxLength: 50 + invoice_id: + type: + - "null" + - string + title: Invoice ID + description: Once the line item has been invoiced this will be the invoice's + ID. + maxLength: 13 + invoice_number: + type: + - "null" + - string + title: Invoice number + description: >- + Once the line item has been invoiced this will be the invoice's number. + If + VAT taxation and the Country Invoice Sequencing feature are enabled, + invoices will have country-specific invoice numbers for invoices billed + to + EU countries (ex: FR1001). Non-EU invoices will continue to use the + site-level invoice number sequence. + maxLength: 256 + previous_line_item_id: + type: + - "null" + - string + title: Previous line item ID + description: >- + Will only have a value if the line item is a credit created from a + previous credit, or if the credit was created from a charge refund. + maxLength: 13 + original_line_item_invoice_id: + type: + - "null" + - string + title: Original line item's invoice ID + description: >- + The invoice where the credit originated. Will only have a value if the + line item is a credit created from a previous credit, or if the credit + was + created from a charge refund. + maxLength: 13 + origin: + type: string + title: Origin of line item + description: >- + A credit created from an original charge will have the value of the + charge's origin. + maxLength: 256 + accounting_code: + type: string + title: Accounting code + description: >- + Internal accounting code to help you reconcile your revenue to the correct + ledger. Line items created as part of a subscription invoice will use + the + plan or add-on's accounting code, otherwise the value will only be present + if you define an accounting code when creating the line item. + maxLength: 20 + product_code: + type: string + title: Product code + description: >- + For plan-related line items this will be the plan's code, for add-on + related line items it will be the add-on's code. For item-related line + items it will be the item's `external_sku`. + maxLength: 50 + credit_reason_code: + type: + - "null" + - string + title: Credit reason code + description: The reason the credit was given when line item is `type=credit`. + default: general + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Total after discounts and taxes + description: "`(quantity * unit_amount) - (discount + tax)`" + description: + type: string + title: Description + description: >- + Description that appears on the invoice. For subscription related items + this will be filled in automatically. + maxLength: 255 + quantity: + type: integer + title: Quantity + description: >- + This number will be multiplied by the unit amount to compute the subtotal + before any discounts or taxes. + default: 1 + unit_amount: + type: number + format: float + title: Unit amount + description: "Positive amount for a charge, negative amount for a credit." + unit_amount_decimal: + type: + - "null" + - string + title: Unit amount decimal + description: "Positive amount for a charge, negative amount for a credit." + subtotal: + type: number + format: float + title: Total before discounts and taxes + description: "`quantity * unit_amount`" + discount: + type: + - "null" + - number + format: float + title: Discount + description: The discount applied to the line item. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The tax amount for the line item. + taxable: + type: boolean + title: Taxable? + description: "`true` if the line item is taxable, `false` if it is not." + tax_exempt: + type: boolean + title: Tax exempt? + description: >- + `true` exempts tax on charges, `false` applies tax on charges. If not + defined, then defaults to the Plan and Site settings. This attribute does + not work for credits (negative line items). Credits are always applied + post-tax. Pre-tax discounts should use the Coupons feature. + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax code + values are specific to each tax system. If you are using Recurly’s EU + VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + proration_rate: + type: + - "null" + - number + format: float + title: Proration rate + description: >- + When a line item has been prorated, this is the rate of the proration. + Proration rates were made available for line items created after March + 30, + 2017. For line items created prior to that date, the proration rate will + be `null`, even if the line item was prorated. + minimum: 0 + maximum: 1 + refund: + type: boolean + title: Refund? + refunded_quantity: + type: + - "null" + - integer + title: Refunded Quantity + description: >- + For refund charges, the quantity being refunded. For non-refund charges, + the total quantity refunded (possibly over multiple refunds). + credit_applied: + type: + - "null" + - number + format: float + title: Credit Applied + description: The amount of credit from this line item that was applied to + the invoice. + shipping_address: + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + start_date: + type: + - "null" + - string + format: date-time + title: Start date + description: >- + If an end date is present, this is value indicates the beginning of a + billing time range. If no end date is present it indicates billing for + a + specific date. + end_date: + type: + - "null" + - string + format: date-time + title: End date + description: "If this date is provided, it indicates the end of a time range." + custom_fields: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + type: string + format: date-time + title: Created at + description: When the line item was created. + updated_at: + type: string + format: date-time + title: Last updated at + description: When the line item was last changed. + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: measured_units + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: measured_units + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the measured unit + type: + - "null" + - string + maxLength: 13 + object: + description: "Type of object, in this case, 'measured_unit'" + type: + - "null" + - string + name: + description: Internal name used to identify the measured unit + type: + - "null" + - string + maxLength: 256 + display_name: + description: Human-readable name used for display purposes + type: + - "null" + - string + maxLength: 255 + state: + description: Current state of the measured unit + type: + - "null" + - string + maxLength: 255 + description: + description: Description of the measured unit + type: + - "null" + - string + maxLength: 1024 + created_at: + description: Timestamp indicating when the measured unit was created + type: + - "null" + - string + format: date-time + updated_at: + description: Timestamp indicating when the measured unit was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Timestamp indicating when the measured unit was deleted (if + applicable) + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: plans + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: plans + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the plan. + type: + - "null" + - string + maxLength: 13 + object: + description: Indicates the type of object which in this case is 'plan'. + type: + - "null" + - string + code: + description: Unique identifier code for the plan. + type: + - "null" + - string + maxLength: 256 + state: + description: The current state of the plan. + type: + - "null" + - string + maxLength: 256 + name: + description: Name of the plan. + type: + - "null" + - string + maxLength: 256 + description: + description: Description of the plan. + type: + - "null" + - string + maxLength: 1024 + interval_unit: + description: Unit of the billing interval for the plan. + type: + - "null" + - string + maxLength: 256 + interval_length: + description: Length of the billing interval for the plan. + type: + - "null" + - number + trial_unit: + description: Unit of the trial period for the plan. + type: + - "null" + - string + maxLength: 256 + trial_length: + description: Length of the trial period for the plan. + type: + - "null" + - number + trial_requires_billing_info: + description: Determines if billing information is required for the trial. + type: + - "null" + - boolean + total_billing_cycles: + description: Total number of billing cycles the plan will run for. + type: + - "null" + - number + auto_renew: + description: Indicates whether the plan should automatically renew. + type: + - "null" + - boolean + pricing_model: + description: The pricing model used for the plan. + type: + - "null" + - string + ramp_intervals: + description: Specifies ramp intervals for the plan. + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + starting_billing_cycle: + description: The starting billing cycle for the ramp interval. + type: + - "null" + - integer + currencies: + description: Contains currencies information within the ramp intervals. + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + currency: + description: Currency code for the interval. + type: + - "null" + - string + unit_amount: + description: Unit amount for the currency in the interval. + type: + - "null" + - number + custom_fields: + description: Includes any custom fields associated with the plan. + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + description: Name of the custom field. + type: + - "null" + - string + value: + description: Value of the custom field. + type: + - "null" + - string + accounting_code: + description: The accounting code associated with the plan. + type: + - "null" + - string + maxLength: 256 + revenue_schedule_type: + description: Type of revenue schedule for the plan. + type: + - "null" + - string + maxLength: 256 + setup_fee_revenue_schedule_type: + description: Revenue schedule type for the setup fee. + type: + - "null" + - string + maxLength: 256 + setup_fee_accounting_code: + description: The accounting code associated with the setup fee. + type: + - "null" + - string + maxLength: 256 + avalara_transaction_type: + description: The Avalara transaction type used for tax calculation. + type: + - "null" + - number + avalara_service_type: + description: The Avalara service type used for tax calculation. + type: + - "null" + - number + tax_code: + description: Tax code used for the plan. + type: + - "null" + - string + maxLength: 256 + tax_exempt: + description: Determines if the plan is tax exempt. + type: + - "null" + - boolean + currencies: + description: Contains information about the currencies supported by the + plan. + type: array + title: Pricing + items: + type: object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + setup_fee: + type: number + format: float + title: Setup fee + description: >- + Amount of one-time setup fee automatically charged at the beginning + of a subscription billing cycle. For subscription plans with a + trial, the setup fee will be charged at the time of signup. Setup + fees do not increase with the quantity of a subscription plan. + minimum: 0 + maximum: 1000000 + unit_amount: + description: Unit amount for the currency in the plan. + type: number + format: float + title: Unit price + minimum: 0 + maximum: 1000000 + hosted_pages: + description: Provides details about hosted pages related to the plan. + type: object + properties: + success_url: + description: >- + URL to redirect when a user successfully completes hosted page + process. + type: + - "null" + - string + maxLength: 2048 + cancel_url: + description: URL to redirect when a user cancels during hosted page + process. + type: + - "null" + - string + maxLength: 2048 + bypass_confirmation: + description: Determines if confirmation is bypassed on hosted pages. + type: + - "null" + - boolean + display_quantity: + description: Determines if quantity is displayed on hosted pages. + type: + - "null" + - boolean + allow_any_item_on_subscriptions: + description: Determines if any item can be added to subscriptions using + this plan. + type: + - "null" + - boolean + dunning_campaign_id: + description: ID of the dunning campaign associated with the plan. + type: + - "null" + - string + maxLength: 256 + created_at: + description: Timestamp indicating when the plan was created. + type: + - "null" + - string + format: date-time + updated_at: + description: Timestamp indicating when the plan was last updated. + type: + - "null" + - string + format: date-time + deleted_at: + description: Timestamp indicating when the plan was deleted. + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: shipping_addresses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /accounts/{{ stream_partition['account_id'] }}/shipping_addresses + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: account_id + stream: + type: DeclarativeStream + name: accounts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: accounts + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This + is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, + JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank + account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated + with the + credit card BIN, if known by Recurly. Available on the + BillingInfo + object only. Available when the BIN country lookup feature + is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon + or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH + payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH + payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the + primary billing + info on the account. The first billing info created on an + account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing + info as a + backup on the account that will be tried if the initial billing + info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: shipping_methods + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: shipping_methods + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the shipping method + type: string + title: Shipping Method ID + readOnly: true + maxLength: 13 + code: + type: string + title: Code + description: The internal name used identify the shipping method. + maxLength: 50 + name: + type: string + title: Name + description: The name of the shipping method displayed to customers. + maxLength: 100 + accounting_code: + type: string + title: Accounting Code + description: Accounting code for shipping method. + maxLength: 20 + tax_code: + type: string + title: Tax code + description: | + Used by Avalara, Vertex, and Recurly’s built-in tax feature. The tax + code values are specific to each tax system. If you are using Recurly’s + built-in taxes the values are: + + - `FR` – Common Carrier FOB Destination + - `FR022000` – Common Carrier FOB Origin + - `FR020400` – Non Common Carrier FOB Destination + - `FR020500` – Non Common Carrier FOB Origin + - `FR010100` – Delivery by Company Vehicle Before Passage of Title + - `FR010200` – Delivery by Company Vehicle After Passage of Title + - `NT` – Non-Taxable + maxLength: 50 + created_at: + description: Timestamp indicating when the shipping method was created + type: string + format: date-time + title: Created at + readOnly: true + updated_at: + description: Timestamp indicating when the shipping method was last updated + type: string + format: date-time + title: Last updated at + readOnly: true + deleted_at: + description: Timestamp indicating when the shipping method was deleted + type: string + format: date-time + title: Deleted at + readOnly: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: subscriptions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: subscriptions + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the subscription. + type: + - "null" + - string + maxLength: 13 + object: + description: Indicates the type of object (subscription). + type: + - "null" + - string + uuid: + description: Universally unique identifier for the subscription. + type: + - "null" + - string + maxLength: 32 + account: + description: Information about the associated account for the subscription + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + email: + type: + - "null" + - string + maxLength: 256 + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + plan: + description: Information about the plan associated with the subscription + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + state: + description: "Current state of the subscription (e.g., active, cancelled)." + type: + - "null" + - string + maxLength: 256 + shipping: + description: Information about the shipping associated with the subscription + type: + - "null" + - object + properties: + object: + type: + - "null" + - string + address: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + method: + description: Information about the shipping method + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Method ID + readOnly: true + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + name: + type: + - "null" + - string + amount: + type: + - "null" + - number + coupon_redemptions: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + object: + type: + - "null" + - string + coupon: + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + name: + type: + - "null" + - string + state: + type: + - "null" + - string + discount: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + percent: + type: + - "null" + - integer + currencies: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + currency: + type: + - "null" + - string + amount: + type: + - "null" + - number + trial: + type: + - "null" + - object + properties: + unit: + type: + - "null" + - string + length: + type: + - "null" + - integer + coupon_type: + type: + - "null" + - string + expired_at: + type: + - "null" + - string + format: date-time + state: + type: + - "null" + - string + discounted: + type: + - "null" + - number + created_at: + type: + - "null" + - string + format: date-time + description: Details of any coupons redeemed for the subscription. + pending_change: + description: Information about any pending changes to the subscription + type: + - "null" + - object + title: Subscription Change + properties: + id: + type: string + title: Subscription Change ID + description: The ID of the Subscription Change. + maxLength: 13 + subscription_id: + type: string + title: Subscription ID + description: The ID of the subscription that is going to be changed. + maxLength: 13 + activate_at: + description: Timestamp when the pending change will be activated + type: string + format: date-time + title: Activated at + readOnly: true + activated: + type: boolean + title: Activated? + description: Returns `true` if the subscription change is activated. + created_at: + description: Timestamp when the pending change was created + type: string + format: date-time + title: Created at + readOnly: true + updated_at: + description: Timestamp when the pending change was last updated + type: string + format: date-time + title: Updated at + readOnly: true + deleted_at: + description: Timestamp when the pending change was deleted + type: string + format: date-time + title: Deleted at + readOnly: true + current_period_started_at: + description: Timestamp when the current period started + type: + - "null" + - string + format: date-time + current_period_ends_at: + description: Timestamp when the current period ends + type: + - "null" + - string + format: date-time + current_term_started_at: + description: Timestamp when the current term started + type: + - "null" + - string + format: date-time + current_term_ends_at: + description: Timestamp when the current term ends + type: + - "null" + - string + format: date-time + trial_started_at: + description: Timestamp when the trial period started + type: + - "null" + - string + format: date-time + trial_ends_at: + description: Timestamp when the trial period ends + type: + - "null" + - string + format: date-time + remaining_billing_cycles: + description: Number of billing cycles remaining before subscription ends. + type: + - "null" + - number + total_billing_cycles: + description: Total number of billing cycles for the subscription. + type: + - "null" + - number + renewal_billing_cycles: + description: Number of billing cycles in the renewal period. + type: + - "null" + - number + auto_renew: + description: Flag indicating whether the subscription auto renews. + type: + - "null" + - boolean + ramp_intervals: + description: Information about any ramp intervals associated with the subscription + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + starting_billing_cycle: + type: + - "null" + - integer + remaining_billing_cycles: + type: + - "null" + - integer + starting_on: + description: Timestamp when the ramp interval starts + type: + - "null" + - string + format: date-time + ending_on: + description: Timestamp when the ramp interval ends + type: + - "null" + - string + format: date-time + unit_amount: + type: + - "null" + - number + paused_at: + description: Timestamp when the subscription was paused + type: + - "null" + - string + format: date-time + remaining_pause_cycles: + description: Number of pause cycles remaining for the subscription. + type: + - "null" + - number + currency: + description: Currency used for billing the subscription. + type: + - "null" + - string + maxLength: 3 + revenue_schedule_type: + description: Type of revenue schedule for the subscription. + type: + - "null" + - string + maxLength: 256 + unit_amount: + description: Amount charged per unit for the subscription. + type: + - "null" + - number + tax_inclusive: + description: Flag indicating if taxes are included in the total amount. + type: + - "null" + - boolean + quantity: + description: Number of units or items included in the subscription. + type: + - "null" + - number + add_ons: + description: Any additional services or items added to the subscription. + type: + - "null" + - array + title: Add-ons + items: + type: + - "null" + - object + title: Subscription Add-on + description: This links an Add-on to a specific Subscription. + properties: + id: + type: string + title: Subscription Add-on ID + maxLength: 13 + code: + type: string + title: Add-on code + description: The unique identifier for the add-on within its plan. + maxLength: 50 + add_ons_total: + description: Total amount charged for the additional services or items. + type: + - "null" + - number + subtotal: + description: Subtotal amount before taxes and additional charges. + type: + - "null" + - number + tax: + description: Total tax amount applied to the subscription. + type: + - "null" + - number + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + description: Details of the tax information for the subscription. + total: + description: Total amount including taxes and additional charges. + type: + - "null" + - number + collection_method: + description: Method used for collecting payments for the subscription. + type: + - "null" + - string + maxLength: 256 + po_number: + description: Purchase order number associated with the subscription. + type: + - "null" + - string + maxLength: 256 + net_terms: + description: Number of net terms for payment. + type: + - "null" + - number + net_terms_type: + description: "Type of net terms (e.g., days)." + type: + - "null" + - string + terms_and_conditions: + description: Terms and conditions agreed upon for the subscription. + type: + - "null" + - string + maxLength: 16384 + customer_notes: + description: Any notes or comments added by the customer. + type: + - "null" + - string + maxLength: 1024 + expiration_reason: + description: Reason for the subscription expiration. + type: + - "null" + - string + maxLength: 1024 + custom_fields: + description: Custom fields associated with the subscription + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + description: Timestamp when the subscription was created + type: + - "null" + - string + format: date-time + updated_at: + description: Timestamp when the subscription was last updated + type: + - "null" + - string + format: date-time + activated_at: + description: Timestamp when the subscription was activated + type: + - "null" + - string + format: date-time + canceled_at: + description: Timestamp when the subscription was canceled + type: + - "null" + - string + format: date-time + expires_at: + description: Timestamp when the subscription expires + type: + - "null" + - string + format: date-time + bank_account_authorized_at: + description: Timestamp when bank account authorization occurred + type: + - "null" + - string + format: date-time + gateway_code: + description: Code associated with the payment gateway used for processing + payments. + type: + - "null" + - string + maxLength: 256 + billing_info_id: + description: ID of the billing information associated with the subscription. + type: + - "null" + - string + maxLength: 13 + active_invoice_id: + description: ID of the active invoice associated with the subscription. + type: + - "null" + - string + started_with_gift: + description: Indicates if the subscription started with a gift or promotion. + type: + - "null" + - boolean + converted_at: + description: Timestamp when the subscription was converted + type: + - "null" + - string + format: date-time + action_result: + description: Result of the action performed on the subscription. + type: + - "null" + - object + additionalProperties: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: transactions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: transactions + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + additionalProperties: true + properties: + id: + description: Unique identifier for the transaction + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object (transaction) + type: + - "null" + - string + uuid: + description: Universally unique identifier for the transaction + type: + - "null" + - string + maxLength: 32 + original_transaction_id: + description: "ID of the original transaction, if applicable" + type: + - "null" + - string + maxLength: 13 + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + description: Details of the account associated with the transaction + invoice: + description: Details of the invoice associated with the transaction + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + maxLength: 13 + number: + type: + - "null" + - string + maxLength: 256 + business_entity_id: + type: + - "null" + - string + type: + type: + - "null" + - string + state: + type: + - "null" + - string + voided_by_invoice: + description: Details of the invoice that voided the transaction + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + number: + type: + - "null" + - string + maxLength: 256 + business_entity_id: + type: + - "null" + - string + type: + type: + - "null" + - string + state: + type: + - "null" + - string + subscription_ids: + description: List of subscription IDs associated with the transaction + type: array + items: + type: + - "null" + - string + maxLength: 13 + type: + description: Type of transaction + type: + - "null" + - string + maxLength: 256 + origin: + description: Source or origin of the transaction + type: + - "null" + - string + maxLength: 256 + currency: + description: Currency used for the transaction + type: + - "null" + - string + maxLength: 3 + amount: + description: Amount of the transaction + type: + - "null" + - number + status: + description: Current status of the transaction + type: + - "null" + - string + maxLength: 256 + success: + description: Indicates the success status of the transaction + type: + - "null" + - boolean + backup_payment_method_used: + description: Indicates whether a backup payment method was used + type: + - "null" + - boolean + refunded: + description: Indicates whether the transaction has been refunded + type: + - "null" + - boolean + billing_address: + description: Billing address details of the transaction + type: object + properties: + first_name: + type: + - "null" + - string + maxLength: 256 + last_name: + type: + - "null" + - string + maxLength: 256 + phone: + type: + - "null" + - string + maxLength: 256 + street1: + type: + - "null" + - string + maxLength: 256 + street2: + type: + - "null" + - string + maxLength: 256 + city: + type: + - "null" + - string + maxLength: 256 + region: + type: + - "null" + - string + maxLength: 256 + postal_code: + type: + - "null" + - string + maxLength: 256 + country: + type: + - "null" + - string + maxLength: 256 + geo_code: + type: + - "null" + - string + collection_method: + description: Method used to collect the transaction + type: + - "null" + - string + maxLength: 256 + payment_method: + description: Details of the payment method used for the transaction + type: object + properties: + object: + type: + - "null" + - string + card_type: + type: + - "null" + - string + maxLength: 256 + first_six: + type: + - "null" + - string + maxLength: 6 + last_four: + type: + - "null" + - string + maxLength: 4 + last_two: + type: + - "null" + - string + maxLength: 2 + exp_month: + type: + - "null" + - number + exp_year: + type: + - "null" + - number + gateway_token: + type: + - "null" + - string + maxLength: 256 + cc_bin_country: + type: + - "null" + - string + gateway_code: + type: + - "null" + - string + maxLength: 256 + billing_agreement_id: + type: + - "null" + - string + maxLength: 256 + name_on_account: + type: + - "null" + - string + maxLength: 256 + account_type: + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + maxLength: 256 + username: + type: + - "null" + - string + ip_address_v4: + description: IPv4 address of the transaction + type: + - "null" + - string + maxLength: 256 + ip_address_country: + description: Country of the IP address used for the transaction + type: + - "null" + - string + maxLength: 256 + status_code: + description: Status code of the transaction + type: + - "null" + - string + maxLength: 256 + status_message: + description: Message related to the status of the transaction + type: + - "null" + - string + maxLength: 1024 + customer_message: + description: Message for the customer related to the transaction + type: + - "null" + - string + maxLength: 1024 + customer_message_locale: + description: Locale of the customer message + type: + - "null" + - string + maxLength: 12 + payment_gateway: + description: Details of the payment gateway used for the transaction + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + type: + type: + - "null" + - string + name: + type: + - "null" + - string + gateway_message: + description: Message returned by the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_reference: + description: Reference number provided by the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_approval_code: + description: Approval code provided by the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_response_code: + description: Response code from the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_response_time: + description: Time taken for the payment gateway to respond + type: + - "null" + - number + gateway_response_values: + description: Additional values in the gateway response + type: object + cvv_check: + description: Result of the CVV check + type: + - "null" + - string + maxLength: 256 + avs_check: + description: Result of the Address Verification System check + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the transaction was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time of the last update to the transaction + type: + - "null" + - string + format: date-time + voided_at: + description: Date and time when the transaction was voided + type: + - "null" + - string + format: date-time + collected_at: + description: Date and time when the transaction was collected + type: + - "null" + - string + format: date-time + action_result: + description: Result of the action taken for the transaction + type: + - "null" + - object + additionalProperties: true + vat_number: + description: VAT number associated with the transaction + type: + - "null" + - string + fraud_info: + description: Information related to fraud check for the transaction + type: + - "null" + - object + properties: + object: + type: + - "null" + - string + score: + type: + - "null" + - integer + decision: + type: + - "null" + - string + reference: + type: + - "null" + - string + risk_rules_triggered: + type: + - "null" + - array + items: + description: Details of individual risk rules triggered + type: + - "null" + - object + properties: + code: + type: + - "null" + - string + message: + type: + - "null" + - string + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +- type: DeclarativeStream + name: unique_coupons + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: /coupons/{{ stream_partition['coupon_id'] }}/unique_coupon_codes + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + partition_router: + - type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: coupon_id + stream: + type: DeclarativeStream + name: coupons + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + type: HttpRequester + url_base: https://v3.recurly.com + authenticator: + type: BasicHttpAuthenticator + username: "{{ config['api_key'] }}" + password: "" + path: coupons + http_method: GET + request_parameters: + order: asc + sort: updated_at + request_headers: + User-Agent: USER_AGENT + Accept: application/vnd.recurly.v2021-02-25 + Content-Type: application/json + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + record_filter: + condition: "{{ record['coupon_type'] == 'bulk' }}" + type: RecordFilter + paginator: + type: DefaultPaginator + page_token_option: + type: RequestPath + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next }}" + stop_condition: "{{ response.has_more is false }}" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + maxLength: 256 + state: + type: + - "null" + - string + maxLength: 256 + max_redemptions: + type: + - "null" + - number + max_redemptions_per_account: + type: + - "null" + - number + unique_coupon_codes_count: + type: + - "null" + - number + unique_code_template: + type: + - "null" + - string + maxLength: 256 + unique_coupon_code: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable + or why not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached + its + `max_redemptions`. + format: date-time + duration: + type: + - "null" + - string + maxLength: 256 + temporal_amount: + type: + - "null" + - number + temporal_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_amount: + type: + - "null" + - number + applies_to_all_plans: + type: + - "null" + - boolean + applies_to_all_items: + type: + - "null" + - boolean + applies_to_non_plan_charges: + type: + - "null" + - boolean + plans: + type: + - "null" + - array + title: Plans + description: >- + A list of plans for which this coupon applies. This will be `null` + if + `applies_to_all_plans=true`. + items: + type: object + title: Plan mini details + description: Just the important parts. + properties: + id: + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Plan code + description: >- + Unique code to identify the plan. This is used in Hosted + Payment + Page URLs and in the invoice exports. + maxLength: 13 + items: + type: + - "null" + - array + title: Items + description: | + A list of items for which this coupon applies. This will be + `null` if `applies_to_all_items=true`. + items: + type: + - "null" + - object + title: Item mini details + description: Just the important parts. + properties: + id: + type: string + title: Item ID + maxLength: 13 + readOnly: true + redemption_resource: + type: + - "null" + - string + maxLength: 256 + discount: + type: + - "null" + - object + description: | + Details of the discount a coupon applies. Will contain a `type` + property and one of the following properties: `percent`, `fixed`, `trial`. + properties: + type: + type: string + maxLength: 256 + percent: + description: This is only present when `type=percent`. + type: integer + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon + applies. + trial: + type: object + description: This is only present when `type=free_trial`. + properties: + unit: + title: Trial unit + description: Temporal unit of the free trial + type: string + maxLength: 256 + length: + type: integer + title: Trial length + description: >- + Trial length measured in the units specified by the sibling + `unit` + property + coupon_type: + type: + - "null" + - string + maxLength: 256 + hosted_page_description: + type: + - "null" + - string + maxLength: 1024 + invoice_description: + type: + - "null" + - string + maxLength: 1024 + redeem_by: + type: + - "null" + - string + maxLength: 256 + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + expired_at: + type: + - "null" + - string + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() + - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or why not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + incremental_sync: + type: DatetimeBasedCursor + cursor_field: updated_at + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - + duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: begin_time + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: end_time + end_datetime: + type: MinMaxDatetime + datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') + }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + required: + - api_key + properties: + api_key: + type: string + title: API Key + airbyte_secret: true + description: >- + Recurly API Key. See the docs + for more information on how to generate this key. + order: 0 + begin_time: + type: string + description: >- + ISO8601 timestamp from which the replication from Recurly API will + start from. + examples: + - "2021-12-01T00:00:00" + pattern: ^$|^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$ + order: 1 + end_time: + type: string + description: >- + ISO8601 timestamp to which the replication from Recurly API will stop. + Records after that date won't be imported. + examples: + - "2021-12-01T00:00:00" + pattern: ^$|^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$ + order: 2 +schemas: + accounts: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the account + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object + type: + - "null" + - string + hosted_login_token: + description: Token for hosted login functionality + type: + - "null" + - string + code: + description: Unique code assigned to the account + type: + - "null" + - string + maxLength: 256 + parent_account_id: + description: ID of the parent account + type: + - "null" + - string + maxLength: 13 + bill_to: + description: The billing details + type: + - "null" + - string + maxLength: 6 + state: + description: State/province of the account address + type: + - "null" + - string + maxLength: 256 + username: + description: Username of the account holder + type: + - "null" + - string + maxLength: 256 + email: + description: Email address of the account holder + type: + - "null" + - string + maxLength: 256 + cc_emails: + description: Email addresses for carbon copy (CC) + type: + - "null" + - string + maxLength: 256 + preferred_locale: + description: Preferred language/locale of the account holder + type: + - "null" + - string + maxLength: 12 + first_name: + description: First name of the account holder + type: + - "null" + - string + maxLength: 256 + last_name: + description: Last name of the account holder + type: + - "null" + - string + maxLength: 256 + company: + description: Company associated with the account + type: + - "null" + - string + maxLength: 50 + vat_number: + description: VAT (Value Added Tax) number of the account + type: + - "null" + - string + maxLength: 20 + tax_exempt: + description: Flag indicating if the account is tax exempt + type: + - "null" + - boolean + exemption_certificate: + description: Exemption certificate details + type: + - "null" + - string + maxLength: 30 + address: + description: The address details of the account + type: object + properties: + phone: + description: Phone number associated with the address + type: string + title: Phone number + maxLength: 256 + street1: + description: First line of the street address + type: string + title: Street 1 + maxLength: 256 + street2: + description: Second line of the street address + type: string + title: Street 2 + maxLength: 256 + city: + description: City of the address + type: string + title: City + maxLength: 256 + region: + type: string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + geo_code: + description: Geographical coordinates of the address + type: + - "null" + - string + custom_fields: + description: Custom fields associated with the account + type: + - "null" + - array + items: + type: + - "null" + - object + additionalProperties: true + has_live_subscription: + description: Flag indicating if the account has a live subscription + type: + - "null" + - boolean + has_active_subscription: + description: Flag indicating if the account has an active subscription + type: + - "null" + - boolean + has_future_subscription: + description: Flag indicating if the account has a future subscription + type: + - "null" + - boolean + has_canceled_subscription: + description: Flag indicating if the account has a canceled subscription + type: + - "null" + - boolean + has_paused_subscription: + description: Flag indicating if the account has a paused subscription + type: + - "null" + - boolean + has_past_due_invoice: + description: Flag indicating if the account has a past due invoice + type: + - "null" + - boolean + dunning_campaign_id: + description: Campaign ID for dunning management + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the account was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time when the account was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Date and time when the account was deleted + type: + - "null" + - string + format: date-time + billing_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This is only + used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank account + if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated with the + credit card BIN, if known by Recurly. Available on the BillingInfo + object only. Available when the BIN country lookup feature is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the primary billing + info on the account. The first billing info created on an account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing info + as a + backup on the account that will be tried if the initial billing info + used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + description: Billing information + external_accounts: + description: External accounts associated with the account + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + invoice_template_id: + description: ID of the invoice template used + type: + - "null" + - string + override_business_entity_id: + description: ID for overriding business entity + type: + - "null" + - string + preferred_time_zone: + description: Preferred time zone of the account holder + type: + - "null" + - string + shipping_addresses: + description: Addresses for shipping + type: + - "null" + - array + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + account_coupon_redemptions: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for the redemption + type: + - "null" + - string + maxLength: 13 + object: + description: The type of object this represents + type: + - "null" + - string + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + description: The account associated with the coupon redemption + subscription_id: + description: The subscription associated with the redemption + type: + - "null" + - string + maxLength: 13 + coupon: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + maxLength: 256 + state: + type: + - "null" + - string + maxLength: 256 + max_redemptions: + type: + - "null" + - number + max_redemptions_per_account: + type: + - "null" + - number + unique_coupon_codes_count: + type: + - "null" + - number + unique_code_template: + type: + - "null" + - string + maxLength: 256 + unique_coupon_code: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or + why not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + duration: + type: + - "null" + - string + maxLength: 256 + temporal_amount: + type: + - "null" + - number + temporal_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_amount: + type: + - "null" + - number + applies_to_all_plans: + type: + - "null" + - boolean + applies_to_all_items: + type: + - "null" + - boolean + applies_to_non_plan_charges: + type: + - "null" + - boolean + plans: + type: + - "null" + - array + title: Plans + description: >- + A list of plans for which this coupon applies. This will be `null` if + `applies_to_all_plans=true`. + items: + type: object + title: Plan mini details + description: Just the important parts. + properties: + id: + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Plan code + description: >- + Unique code to identify the plan. This is used in Hosted Payment + Page URLs and in the invoice exports. + maxLength: 13 + items: + type: + - "null" + - array + title: Items + description: | + A list of items for which this coupon applies. This will be + `null` if `applies_to_all_items=true`. + items: + type: + - "null" + - object + title: Item mini details + description: Just the important parts. + properties: + id: + type: string + title: Item ID + maxLength: 13 + readOnly: true + redemption_resource: + type: + - "null" + - string + maxLength: 256 + discount: + type: + - "null" + - object + description: | + Details of the discount a coupon applies. Will contain a `type` + property and one of the following properties: `percent`, `fixed`, `trial`. + properties: + type: + type: string + maxLength: 256 + percent: + description: This is only present when `type=percent`. + type: integer + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon applies. + trial: + type: object + description: This is only present when `type=free_trial`. + properties: + unit: + title: Trial unit + description: Temporal unit of the free trial + type: string + maxLength: 256 + length: + type: integer + title: Trial length + description: >- + Trial length measured in the units specified by the sibling + `unit` + property + coupon_type: + type: + - "null" + - string + maxLength: 256 + hosted_page_description: + type: + - "null" + - string + maxLength: 1024 + invoice_description: + type: + - "null" + - string + maxLength: 1024 + redeem_by: + type: + - "null" + - string + maxLength: 256 + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + expired_at: + type: + - "null" + - string + format: date-time + description: The coupon being redeemed + state: + description: The current state of the redemption + type: + - "null" + - string + maxLength: 256 + currency: + description: The currency in which the redemption was made + type: + - "null" + - string + maxLength: 3 + discounted: + description: The amount discounted by the coupon + type: + - "null" + - number + created_at: + description: The date and time when the redemption was created + type: + - "null" + - string + format: date-time + updated_at: + description: The date and time when the redemption was last updated + type: + - "null" + - string + format: date-time + removed_at: + description: The date and time when the redemption was removed (if applicable) + type: + - "null" + - string + format: date-time + account_notes: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for this note. + type: string + maxLength: 13 + readOnly: true + object: + description: "Represents the object type, in this case, 'note'." + type: + - "null" + - string + account_id: + description: The unique identifier of the account associated with this note. + type: string + maxLength: 13 + user: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + time_zone: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + deleted_at: + type: + - "null" + - string + format: date-time + description: The user who created the note. + message: + description: The content or message of the note. + type: + - "null" + - string + maxLength: 2048 + created_at: + description: The date and time when the note was created. + type: string + format: date-time + readOnly: true + add_ons: + $schema: "http://json-schema.org/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier for the add-on. + type: string + title: Add-on ID + maxLength: 13 + readOnly: true + plan_id: + description: The ID of the plan to which the add-on is associated. + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Add-on code + description: The unique identifier for the add-on within its plan. + maxLength: 50 + state: + title: State + description: Add-ons can be either active or inactive. + readOnly: true + type: string + maxLength: 256 + name: + type: string + title: Name + description: Describes your add-on and will appear in subscribers' invoices. + maxLength: 255 + add_on_type: + type: + - "null" + - string + title: Add-on Type + description: "Whether the add-on type is fixed, or usage-based." + maxLength: 256 + usage_type: + type: string + title: Usage Type + description: "Type of usage, returns usage type if `add_on_type` is `usage`." + maxLength: 256 + usage_percentage: + type: + - "null" + - number + format: float + title: Usage Percentage + description: >- + The percentage taken of the monetary amount of usage tracked. This can be + up to 4 decimal places. A value between 0.0 and 100.0. + measured_unit_id: + type: + - "null" + - string + title: Measured Unit ID + description: >- + System-generated unique identifier for an measured unit associated with + the add-on. + maxLength: 13 + accounting_code: + type: + - "null" + - string + title: Accounting code + description: >- + Accounting code for invoice line items for this add-on. If no value is + provided, it defaults to add-on's code. + maxLength: 256 + revenue_schedule_type: + title: Revenue schedule type + description: >- + When this add-on is invoiced, the line item will use this revenue + schedule. If `item_code`/`item_id` is part of the request then + `revenue_schedule_type` must be absent in the request as the value will + be + set from the item. + type: string + maxLength: 256 + avalara_transaction_type: + type: + - string + - integer + title: Avalara Transaction Type + description: >- + Used by Avalara for Communications taxes. The transaction type in + combination with the service type describe how the add-on is taxed. Refer + to [the + documentation](https://help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) + for more available t/s types. + minimum: 0 + avalara_service_type: + type: + - string + - integer + title: Avalara Service Type + description: >- + Used by Avalara for Communications taxes. The transaction type in + combination with the service type describe how the add-on is taxed. Refer + to [the + documentation](https://help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) + for more available t/s types. + minimum: 0 + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax code + values are specific to each tax system. If you are using Recurly’s EU VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + display_quantity: + type: + - "null" + - boolean + title: Display quantity? + description: >- + Determines if the quantity field is displayed on the hosted pages for the + add-on. + default_quantity: + type: + - "null" + - integer + title: Default quantity + description: Default quantity for the hosted pages. + optional: + type: + - "null" + - boolean + title: Optional + description: >- + Whether the add-on is optional for the customer to include in their + purchase on the hosted payment page. If false, the add-on will be included + when a subscription is created through the Recurly UI. However, the add-on + will not be included when a subscription is created through the API. + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + unit_amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon applies. + tier_type: + type: + - "null" + - string + title: Tier type + description: > + The pricing model for the add-on. For more information, + + [click + here](https://docs.recurly.com/docs/billing-models#section-quantity-based). + See our + + [Guide](https://developers.recurly.com/guides/item-addon-guide.html) for + an overview of how + + to configure quantity-based pricing models. + maxLength: 256 + created_at: + description: The date and time when the add-on was created. + type: string + format: date-time + title: Created at + readOnly: true + updated_at: + description: The date and time when the add-on was last updated. + type: string + format: date-time + title: Last updated at + readOnly: true + deleted_at: + description: "The date and time when the add-on was deleted, if applicable." + type: string + format: date-time + title: Deleted at + readOnly: true + billing_infos: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated with the + credit card BIN, if known by Recurly. Available on the BillingInfo + object only. Available when the BIN country lookup feature is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the primary billing + info on the account. The first billing info created on an account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing info as + a + backup on the account that will be tried if the initial billing info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + coupons: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + maxLength: 256 + state: + type: + - "null" + - string + maxLength: 256 + max_redemptions: + type: + - "null" + - number + max_redemptions_per_account: + type: + - "null" + - number + unique_coupon_codes_count: + type: + - "null" + - number + unique_code_template: + type: + - "null" + - string + maxLength: 256 + unique_coupon_code: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or why + not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + duration: + type: + - "null" + - string + maxLength: 256 + temporal_amount: + type: + - "null" + - number + temporal_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_amount: + type: + - "null" + - number + applies_to_all_plans: + type: + - "null" + - boolean + applies_to_all_items: + type: + - "null" + - boolean + applies_to_non_plan_charges: + type: + - "null" + - boolean + plans: + type: + - "null" + - array + title: Plans + description: >- + A list of plans for which this coupon applies. This will be `null` if + `applies_to_all_plans=true`. + items: + type: object + title: Plan mini details + description: Just the important parts. + properties: + id: + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Plan code + description: >- + Unique code to identify the plan. This is used in Hosted Payment + Page URLs and in the invoice exports. + maxLength: 13 + items: + type: + - "null" + - array + title: Items + description: | + A list of items for which this coupon applies. This will be + `null` if `applies_to_all_items=true`. + items: + type: + - "null" + - object + title: Item mini details + description: Just the important parts. + properties: + id: + type: string + title: Item ID + maxLength: 13 + readOnly: true + redemption_resource: + type: + - "null" + - string + maxLength: 256 + discount: + type: + - "null" + - object + description: | + Details of the discount a coupon applies. Will contain a `type` + property and one of the following properties: `percent`, `fixed`, `trial`. + properties: + type: + type: string + maxLength: 256 + percent: + description: This is only present when `type=percent`. + type: integer + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon applies. + trial: + type: object + description: This is only present when `type=free_trial`. + properties: + unit: + title: Trial unit + description: Temporal unit of the free trial + type: string + maxLength: 256 + length: + type: integer + title: Trial length + description: >- + Trial length measured in the units specified by the sibling `unit` + property + coupon_type: + type: + - "null" + - string + maxLength: 256 + hosted_page_description: + type: + - "null" + - string + maxLength: 1024 + invoice_description: + type: + - "null" + - string + maxLength: 1024 + redeem_by: + type: + - "null" + - string + maxLength: 256 + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + expired_at: + type: + - "null" + - string + format: date-time + credit_payments: + $schema: "http://json-schema.org/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique identifier of the credit payment. + type: string + title: Credit Payment ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + action: + title: Action + description: The action for which the credit was created. + type: string + maxLength: 256 + account: + description: Details about the account associated with the credit payment. + type: object + title: Account mini details + properties: + id: + description: The ID of the account associated with the credit payment. + type: string + maxLength: 13 + readOnly: true + code: + type: string + description: The unique identifier of the account. + maxLength: 50 + applied_to_invoice: + description: Details about the invoice to which the credit payment is applied. + type: + - "null" + - object + title: Invoice mini details + properties: + id: + description: The ID of the invoice to which the credit payment is applied. + type: string + title: Invoice ID + maxLength: 13 + number: + description: The number of the invoice to which the credit payment is + applied. + type: string + title: Invoice number + maxLength: 256 + original_invoice: + description: Details about the original invoice for which the credit payment + is made. + type: + - "null" + - object + title: Invoice mini details + properties: + id: + description: The ID of the original invoice for which the credit payment + was made. + type: string + title: Invoice ID + maxLength: 13 + number: + description: >- + The number of the original invoice for which the credit payment was + made. + type: string + title: Invoice number + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Amount + description: Total credit payment amount applied to the charge invoice. + original_credit_payment_id: + type: + - "null" + - string + title: Original Credit Payment ID + description: >- + For credit payments with action `refund`, this is the credit payment that + was refunded. + maxLength: 13 + refund_transaction: + description: Details about the refund transaction associated with the credit + payment. + type: + - "null" + - object + properties: + id: + description: The ID of the refund transaction associated with the credit + payment. + type: string + title: Transaction ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + created_at: + description: The date and time when the credit payment was created. + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + description: The date and time when the credit payment was last updated. + type: string + title: Last updated at + format: date-time + readOnly: true + voided_at: + description: The date and time when the credit payment was voided. + type: + - "null" + - string + title: Voided at + format: date-time + readOnly: true + export_dates: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + dates: + description: List of export dates + type: + - "null" + - array + items: + description: Date of the export + type: + - "null" + - string + maxLength: 256 + invoices: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: The unique ID of the invoice. + type: + - "null" + - string + title: Invoice ID + readOnly: true + maxLength: 13 + uuid: + description: The universally unique identifier (UUID) of the invoice. + type: + - "null" + - string + object: + description: "The type of object, in this case, an invoice." + type: + - "null" + - string + type: + title: Invoice type + description: "Invoices are either charge, credit, or legacy invoices." + type: + - "null" + - string + maxLength: 256 + origin: + type: + - "null" + - string + title: Origin + description: The event that created the invoice. + maxLength: 256 + state: + description: The current state of the invoice. + title: Invoice state + type: + - "null" + - string + maxLength: 256 + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + description: The account associated with the invoice. + billing_info_id: + type: + - "null" + - string + title: Billing info ID + description: >- + The `billing_info_id` is the value that represents a specific billing info + for an end customer. When `billing_info_id` is used to assign billing info + to the subscription, all future billing events for the subscription will + bill to the specified billing info. `billing_info_id` can ONLY be used for + sites utilizing the Wallet feature. + maxLength: 256 + subscription_ids: + type: + - "null" + - array + title: Subscription IDs + description: >- + If the invoice is charging or refunding for one or more subscriptions, + these are their IDs. + items: + type: + - "null" + - string + title: Subscription ID + maxLength: 13 + previous_invoice_id: + type: + - "null" + - string + title: Previous invoice ID + description: >- + On refund invoices, this value will exist and show the invoice ID of the + purchase invoice the refund was created from. + maxLength: 13 + number: + type: + - "null" + - string + title: Invoice number + description: >- + If VAT taxation and the Country Invoice Sequencing feature are enabled, + invoices will have country-specific invoice numbers for invoices billed + to + EU countries (ex: FR1001). Non-EU invoices will continue to use the + site-level invoice number sequence. + maxLength: 256 + collection_method: + type: + - "null" + - string + title: Collection method + description: >- + An automatic invoice means a corresponding transaction is run using the + account's billing information at the same time the invoice is created. + Manual invoices are created without a corresponding transaction. The + merchant must enter a manual payment transaction or have the customer pay + the invoice with an automatic method, like credit card, PayPal, Amazon, + or + ACH bank payment. + maxLength: 256 + po_number: + type: + - "null" + - string + title: Purchase order number + description: >- + For manual invoicing, this identifies the PO number associated with the + subscription. + maxLength: 50 + net_terms: + type: + - "null" + - integer + title: Net terms + description: >- + Integer representing the number of days after an invoice's creation that + the invoice will become past due. If an invoice's net terms are set to + '0', it is due 'On Receipt' and will become past due 24 hours after it’s + created. If an invoice is due net 30, it will become past due at 31 days + exactly. + minimum: 0 + default: 0 + address: + description: The address details related to the invoice recipient. + type: + - "null" + - object + properties: + name_on_account: + description: The name on the account. + type: + - "null" + - string + title: Name on account + maxLength: 256 + company: + description: The company name in the address. + type: + - "null" + - string + title: Company + maxLength: 256 + phone: + description: The phone number associated with the address. + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + description: The first line of the street address. + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + description: The second line of the street address. + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + description: The city in the address. + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + first_name: + description: The first name of the recipient. + type: + - "null" + - string + maxLength: 256 + last_name: + description: The last name of the recipient. + type: + - "null" + - string + maxLength: 256 + shipping_address: + description: The shipping address details for the invoice delivery. + type: + - "null" + - object + properties: + id: + description: The ID of the shipping address. + type: + - "null" + - string + title: Shipping Address ID + maxLength: 13 + readOnly: true + currency: + type: + - "null" + - string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + discount: + type: + - "null" + - number + format: float + title: Discount + description: Total discounts applied to this invoice. + subtotal: + type: + - "null" + - number + format: float + title: Subtotal + description: "The summation of charges and credits, before discounts and taxes." + tax: + type: + - "null" + - number + format: float + title: Tax + description: The total tax on this invoice. + total: + type: + - "null" + - number + format: float + title: Total + description: >- + The final total on this invoice. The summation of invoice charges, + discounts, credits, and tax. + refundable_amount: + type: + - "null" + - number + format: float + title: Refundable amount + description: >- + The refundable amount on a charge invoice. It will be null for all other + invoices. + paid: + type: + - "null" + - number + format: float + title: Paid + description: The total amount of successful payments transaction on this invoice. + balance: + type: + - "null" + - number + format: float + title: Balance + description: The outstanding balance remaining on this invoice. + tax_info: + description: Tax information related to the invoice. + type: + - "null" + - object + title: Tax info + properties: + type: + type: + - "null" + - string + title: Type + description: >- + Provides the tax type as "vat" for EU VAT, "usst" for U.S. Sales Tax, + or the 2 letter country code for country level tax types like Canada, + Australia, New Zealand, Israel, and all non-EU European countries. + maxLength: 256 + region: + type: + - "null" + - string + title: Region + description: >- + Provides the tax region applied on an invoice. For U.S. Sales Tax, + this will be the 2 letter state code. For EU VAT this will be the 2 + letter country code. For all country level tax types, this will + display the regional tax, like VAT, GST, or PST. + rate: + description: The tax rate applied to the invoice. + type: + - "null" + - number + format: float + title: Rate + tax_details: + type: array + description: >- + Provides additional tax details for Canadian Sales Tax when there is + tax applied at both the country and province levels. This will only + be + populated for the Invoice response when fetching a single invoice and + not for the InvoiceList or LineItem. + items: + type: object + title: Tax detail + properties: + type: + type: + - "null" + - string + title: Type + description: >- + Provides the tax type for the region. For Canadian Sales Tax, + this will be GST, HST, QST or PST. + maxLength: 256 + region: + type: + - "null" + - string + title: Region + description: >- + Provides the tax region applied on an invoice. For Canadian + Sales Tax, this will be either the 2 letter province code or + country code. + maxLength: 256 + rate: + type: + - "null" + - number + format: float + title: Rate + description: Provides the tax rate for the region. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The total tax applied for this tax type. + used_tax_service: + description: Indicates if a tax service was used for the invoice. + type: + - "null" + - boolean + vat_number: + type: + - "null" + - string + title: VAT number + description: >- + VAT registration number for the customer on this invoice. This will come + from the VAT Number field in the Billing Info or the Account Info + depending on your tax settings and the invoice collection method. + maxLength: 20 + vat_reverse_charge_notes: + type: + - "null" + - string + title: VAT reverse charge notes + description: >- + VAT Reverse Charge Notes only appear if you have EU VAT enabled or are + using your own Avalara AvaTax account and the customer is in the EU, has + a + VAT number, and is in a different country than your own. This will default + to the VAT Reverse Charge Notes text specified on the Tax Settings page + in + your Recurly admin, unless custom notes were created with the original + subscription. + maxLength: 1024 + terms_and_conditions: + type: + - "null" + - string + title: Terms and conditions + description: >- + This will default to the Terms and Conditions text specified on the + Invoice Settings page in your Recurly admin. Specify custom notes to add + or override Terms and Conditions. + maxLength: 16384 + customer_notes: + type: + - "null" + - string + title: Customer notes + description: >- + This will default to the Customer Notes text specified on the Invoice + Settings. Specify custom notes to add or override Customer Notes. + maxLength: 2048 + line_items: + description: The line items included in the invoice. + type: + - "null" + - array + title: Line Items + items: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + title: Line item + properties: + id: + type: string + title: Line item ID + maxLength: 13 + object: + type: + - "null" + - string + uuid: + type: string + title: UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + type: + type: string + title: Line item type + description: >- + Charges are positive line items that debit the account. Credits are + negative line items that credit the account. + maxLength: 256 + item_code: + type: + - "null" + - string + title: Item Code + description: >- + Unique code to identify an item. Available when the Credit Invoices + and + Subscription Billing Terms features are enabled. + maxLength: 50 + item_id: + type: + - "null" + - string + title: Item ID + description: >- + System-generated unique identifier for an item. Available when the + Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 13 + external_sku: + type: + - "null" + - string + title: External SKU + description: >- + Optional Stock Keeping Unit assigned to an item. Available when the + Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 50 + revenue_schedule_type: + type: + - "null" + - string + title: Revenue schedule type + maxLength: 256 + state: + type: string + title: Current state of the line item + description: >- + Pending line items are charges or credits on an account that have + not been + applied to an invoice yet. Invoiced line items will always have an + `invoice_id` value. + maxLength: 256 + legacy_category: + type: + - "null" + - string + title: Legacy category + description: > + Category to describe the role of a line item on a legacy invoice: + + - "charges" refers to charges being billed for on this invoice. + + - "credits" refers to refund or proration credits. This portion of + the + invoice can be considered a credit memo. + + - "applied_credits" refers to previous credits applied to this invoice. + See their original_line_item_id to determine where the credit first + originated. + + - "carryforwards" can be ignored. They exist to consume any remaining + credit balance. A new credit with the same amount will be created + and + placed back on the account. + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + bill_for_account_id: + type: string + title: Bill For Account ID + maxLength: 13 + description: The UUID of the account responsible for originating the + line item. + subscription_id: + type: + - "null" + - string + title: Subscription ID + description: "If the line item is a charge or credit for a subscription, + this is its ID." + maxLength: 13 + plan_id: + type: + - "null" + - string + title: Plan ID + description: >- + If the line item is a charge or credit for a plan or add-on, this + is the + plan's ID. + maxLength: 13 + plan_code: + type: + - "null" + - string + title: Plan code + description: >- + If the line item is a charge or credit for a plan or add-on, this + is the + plan's code. + maxLength: 50 + add_on_id: + type: + - "null" + - string + title: Add-on ID + description: If the line item is a charge or credit for an add-on this + is its ID. + maxLength: 13 + add_on_code: + type: + - "null" + - string + title: Add-on code + description: "If the line item is a charge or credit for an add-on, + this is its code." + maxLength: 50 + invoice_id: + type: + - "null" + - string + title: Invoice ID + description: Once the line item has been invoiced this will be the invoice's + ID. + maxLength: 13 + invoice_number: + type: + - "null" + - string + title: Invoice number + description: >- + Once the line item has been invoiced this will be the invoice's number. + If + VAT taxation and the Country Invoice Sequencing feature are enabled, + invoices will have country-specific invoice numbers for invoices billed + to + EU countries (ex: FR1001). Non-EU invoices will continue to use the + site-level invoice number sequence. + maxLength: 256 + previous_line_item_id: + type: + - "null" + - string + title: Previous line item ID + description: >- + Will only have a value if the line item is a credit created from a + previous credit, or if the credit was created from a charge refund. + maxLength: 13 + original_line_item_invoice_id: + type: + - "null" + - string + title: Original line item's invoice ID + description: >- + The invoice where the credit originated. Will only have a value if + the + line item is a credit created from a previous credit, or if the credit + was + created from a charge refund. + maxLength: 13 + origin: + type: string + title: Origin of line item + description: >- + A credit created from an original charge will have the value of the + charge's origin. + maxLength: 256 + accounting_code: + type: string + title: Accounting code + description: >- + Internal accounting code to help you reconcile your revenue to the + correct + ledger. Line items created as part of a subscription invoice will + use the + plan or add-on's accounting code, otherwise the value will only be + present + if you define an accounting code when creating the line item. + maxLength: 20 + product_code: + type: string + title: Product code + description: >- + For plan-related line items this will be the plan's code, for add-on + related line items it will be the add-on's code. For item-related + line + items it will be the item's `external_sku`. + maxLength: 50 + credit_reason_code: + type: + - "null" + - string + title: Credit reason code + description: The reason the credit was given when line item is `type=credit`. + default: general + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Total after discounts and taxes + description: "`(quantity * unit_amount) - (discount + tax)`" + description: + type: string + title: Description + description: >- + Description that appears on the invoice. For subscription related + items + this will be filled in automatically. + maxLength: 255 + quantity: + type: integer + title: Quantity + description: >- + This number will be multiplied by the unit amount to compute the subtotal + before any discounts or taxes. + default: 1 + unit_amount: + type: number + format: float + title: Unit amount + description: "Positive amount for a charge, negative amount for a credit." + unit_amount_decimal: + type: + - "null" + - string + title: Unit amount decimal + description: "Positive amount for a charge, negative amount for a credit." + subtotal: + type: number + format: float + title: Total before discounts and taxes + description: "`quantity * unit_amount`" + discount: + type: + - "null" + - number + format: float + title: Discount + description: The discount applied to the line item. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The tax amount for the line item. + taxable: + type: boolean + title: Taxable? + description: "`true` if the line item is taxable, `false` if it is not." + tax_exempt: + type: boolean + title: Tax exempt? + description: >- + `true` exempts tax on charges, `false` applies tax on charges. If + not + defined, then defaults to the Plan and Site settings. This attribute + does + not work for credits (negative line items). Credits are always applied + post-tax. Pre-tax discounts should use the Coupons feature. + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax + code + values are specific to each tax system. If you are using Recurly’s + EU VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + proration_rate: + type: + - "null" + - number + format: float + title: Proration rate + description: >- + When a line item has been prorated, this is the rate of the proration. + Proration rates were made available for line items created after March + 30, + 2017. For line items created prior to that date, the proration rate + will + be `null`, even if the line item was prorated. + minimum: 0 + maximum: 1 + refund: + type: boolean + title: Refund? + refunded_quantity: + type: + - "null" + - integer + title: Refunded Quantity + description: >- + For refund charges, the quantity being refunded. For non-refund charges, + the total quantity refunded (possibly over multiple refunds). + credit_applied: + type: + - "null" + - number + format: float + title: Credit Applied + description: The amount of credit from this line item that was applied + to the invoice. + shipping_address: + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + start_date: + type: + - "null" + - string + format: date-time + title: Start date + description: >- + If an end date is present, this is value indicates the beginning of + a + billing time range. If no end date is present it indicates billing + for a + specific date. + end_date: + type: + - "null" + - string + format: date-time + title: End date + description: "If this date is provided, it indicates the end of a time + range." + custom_fields: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + type: string + format: date-time + title: Created at + description: When the line item was created. + updated_at: + type: string + format: date-time + title: Last updated at + description: When the line item was last changed. + has_more_line_items: + description: Indicates if there are more line items in the invoice. + type: + - "null" + - boolean + transactions: + description: The transactions associated with the invoice. + type: + - "null" + - array + title: Transactions + items: + type: + - "null" + - object + properties: + id: + description: The ID of a transaction linked to the invoice. + type: string + title: Transaction ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and + building URLs into Recurly's UI. + maxLength: 32 + credit_payments: + description: The credit payments related to the invoice. + type: + - "null" + - array + title: Credit payments + items: + type: + - "null" + - object + properties: + id: + description: The ID of a credit payment associated with the invoice. + type: string + title: Credit Payment ID + maxLength: 13 + uuid: + type: string + title: Recurly UUID + description: >- + The UUID is useful for matching data with the CSV exports and + building URLs into Recurly's UI. + maxLength: 32 + created_at: + description: The date and time when the invoice was created. + type: + - "null" + - string + format: date-time + title: Created at + readOnly: true + updated_at: + description: The date and time when the invoice was last updated. + type: + - "null" + - string + format: date-time + title: Last updated at + readOnly: true + due_at: + type: + - "null" + - string + format: date-time + title: Due at + description: Date invoice is due. This is the date the net terms are reached. + closed_at: + type: + - "null" + - string + format: date-time + title: Closed at + description: Date invoice was marked paid or failed. + dunning_campaign_id: + type: + - "null" + - string + title: Dunning Campaign ID + description: >- + Unique ID to identify the dunning campaign used when dunning the invoice. + Available when the Dunning Campaigns feature is enabled. For sites without + multiple dunning campaigns enabled, this will always be the default + dunning campaign. + maxLength: 256 + dunning_events_sent: + description: The number of dunning events sent for the invoice. + type: + - "null" + - integer + final_dunning_event: + description: The final dunning event related to the invoice if applicable. + type: + - "null" + - boolean + business_entity_id: + description: The business entity ID linked to the invoice. + type: + - "null" + - string + line_items: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: + - "null" + - object + title: Line item + properties: + id: + type: string + title: Line item ID + maxLength: 13 + object: + type: + - "null" + - string + uuid: + type: string + title: UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + type: + type: string + title: Line item type + description: >- + Charges are positive line items that debit the account. Credits are + negative line items that credit the account. + maxLength: 256 + item_code: + type: + - "null" + - string + title: Item Code + description: >- + Unique code to identify an item. Available when the Credit Invoices and + Subscription Billing Terms features are enabled. + maxLength: 50 + item_id: + type: + - "null" + - string + title: Item ID + description: >- + System-generated unique identifier for an item. Available when the Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 13 + external_sku: + type: + - "null" + - string + title: External SKU + description: >- + Optional Stock Keeping Unit assigned to an item. Available when the Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 50 + revenue_schedule_type: + type: + - "null" + - string + title: Revenue schedule type + maxLength: 256 + state: + type: string + title: Current state of the line item + description: >- + Pending line items are charges or credits on an account that have not been + applied to an invoice yet. Invoiced line items will always have an + `invoice_id` value. + maxLength: 256 + legacy_category: + type: + - "null" + - string + title: Legacy category + description: > + Category to describe the role of a line item on a legacy invoice: + + - "charges" refers to charges being billed for on this invoice. + + - "credits" refers to refund or proration credits. This portion of the + invoice can be considered a credit memo. + + - "applied_credits" refers to previous credits applied to this invoice. + See their original_line_item_id to determine where the credit first + originated. + + - "carryforwards" can be ignored. They exist to consume any remaining + credit balance. A new credit with the same amount will be created and + placed back on the account. + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + bill_for_account_id: + type: string + title: Bill For Account ID + maxLength: 13 + description: The UUID of the account responsible for originating the line + item. + subscription_id: + type: + - "null" + - string + title: Subscription ID + description: "If the line item is a charge or credit for a subscription, this + is its ID." + maxLength: 13 + plan_id: + type: + - "null" + - string + title: Plan ID + description: >- + If the line item is a charge or credit for a plan or add-on, this is the + plan's ID. + maxLength: 13 + plan_code: + type: + - "null" + - string + title: Plan code + description: >- + If the line item is a charge or credit for a plan or add-on, this is the + plan's code. + maxLength: 50 + add_on_id: + type: + - "null" + - string + title: Add-on ID + description: If the line item is a charge or credit for an add-on this is + its ID. + maxLength: 13 + add_on_code: + type: + - "null" + - string + title: Add-on code + description: "If the line item is a charge or credit for an add-on, this is + its code." + maxLength: 50 + invoice_id: + type: + - "null" + - string + title: Invoice ID + description: Once the line item has been invoiced this will be the invoice's + ID. + maxLength: 13 + invoice_number: + type: + - "null" + - string + title: Invoice number + description: >- + Once the line item has been invoiced this will be the invoice's number. + If + VAT taxation and the Country Invoice Sequencing feature are enabled, + invoices will have country-specific invoice numbers for invoices billed + to + EU countries (ex: FR1001). Non-EU invoices will continue to use the + site-level invoice number sequence. + maxLength: 256 + previous_line_item_id: + type: + - "null" + - string + title: Previous line item ID + description: >- + Will only have a value if the line item is a credit created from a + previous credit, or if the credit was created from a charge refund. + maxLength: 13 + original_line_item_invoice_id: + type: + - "null" + - string + title: Original line item's invoice ID + description: >- + The invoice where the credit originated. Will only have a value if the + line item is a credit created from a previous credit, or if the credit was + created from a charge refund. + maxLength: 13 + origin: + type: string + title: Origin of line item + description: >- + A credit created from an original charge will have the value of the + charge's origin. + maxLength: 256 + accounting_code: + type: string + title: Accounting code + description: >- + Internal accounting code to help you reconcile your revenue to the correct + ledger. Line items created as part of a subscription invoice will use the + plan or add-on's accounting code, otherwise the value will only be present + if you define an accounting code when creating the line item. + maxLength: 20 + product_code: + type: string + title: Product code + description: >- + For plan-related line items this will be the plan's code, for add-on + related line items it will be the add-on's code. For item-related line + items it will be the item's `external_sku`. + maxLength: 50 + credit_reason_code: + type: + - "null" + - string + title: Credit reason code + description: The reason the credit was given when line item is `type=credit`. + default: general + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Total after discounts and taxes + description: "`(quantity * unit_amount) - (discount + tax)`" + description: + type: string + title: Description + description: >- + Description that appears on the invoice. For subscription related items + this will be filled in automatically. + maxLength: 255 + quantity: + type: integer + title: Quantity + description: >- + This number will be multiplied by the unit amount to compute the subtotal + before any discounts or taxes. + default: 1 + unit_amount: + type: number + format: float + title: Unit amount + description: "Positive amount for a charge, negative amount for a credit." + unit_amount_decimal: + type: + - "null" + - string + title: Unit amount decimal + description: "Positive amount for a charge, negative amount for a credit." + subtotal: + type: number + format: float + title: Total before discounts and taxes + description: "`quantity * unit_amount`" + discount: + type: + - "null" + - number + format: float + title: Discount + description: The discount applied to the line item. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The tax amount for the line item. + taxable: + type: boolean + title: Taxable? + description: "`true` if the line item is taxable, `false` if it is not." + tax_exempt: + type: boolean + title: Tax exempt? + description: >- + `true` exempts tax on charges, `false` applies tax on charges. If not + defined, then defaults to the Plan and Site settings. This attribute does + not work for credits (negative line items). Credits are always applied + post-tax. Pre-tax discounts should use the Coupons feature. + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax code + values are specific to each tax system. If you are using Recurly’s EU VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + proration_rate: + type: + - "null" + - number + format: float + title: Proration rate + description: >- + When a line item has been prorated, this is the rate of the proration. + Proration rates were made available for line items created after March 30, + 2017. For line items created prior to that date, the proration rate will + be `null`, even if the line item was prorated. + minimum: 0 + maximum: 1 + refund: + type: boolean + title: Refund? + refunded_quantity: + type: + - "null" + - integer + title: Refunded Quantity + description: >- + For refund charges, the quantity being refunded. For non-refund charges, + the total quantity refunded (possibly over multiple refunds). + credit_applied: + type: + - "null" + - number + format: float + title: Credit Applied + description: The amount of credit from this line item that was applied to + the invoice. + shipping_address: + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + start_date: + type: + - "null" + - string + format: date-time + title: Start date + description: >- + If an end date is present, this is value indicates the beginning of a + billing time range. If no end date is present it indicates billing for a + specific date. + end_date: + type: + - "null" + - string + format: date-time + title: End date + description: "If this date is provided, it indicates the end of a time range." + custom_fields: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + type: string + format: date-time + title: Created at + description: When the line item was created. + updated_at: + type: string + format: date-time + title: Last updated at + description: When the line item was last changed. + measured_units: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the measured unit + type: + - "null" + - string + maxLength: 13 + object: + description: "Type of object, in this case, 'measured_unit'" + type: + - "null" + - string + name: + description: Internal name used to identify the measured unit + type: + - "null" + - string + maxLength: 256 + display_name: + description: Human-readable name used for display purposes + type: + - "null" + - string + maxLength: 255 + state: + description: Current state of the measured unit + type: + - "null" + - string + maxLength: 255 + description: + description: Description of the measured unit + type: + - "null" + - string + maxLength: 1024 + created_at: + description: Timestamp indicating when the measured unit was created + type: + - "null" + - string + format: date-time + updated_at: + description: Timestamp indicating when the measured unit was last updated + type: + - "null" + - string + format: date-time + deleted_at: + description: Timestamp indicating when the measured unit was deleted (if applicable) + type: + - "null" + - string + format: date-time + plans: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier of the plan. + type: + - "null" + - string + maxLength: 13 + object: + description: Indicates the type of object which in this case is 'plan'. + type: + - "null" + - string + code: + description: Unique identifier code for the plan. + type: + - "null" + - string + maxLength: 256 + state: + description: The current state of the plan. + type: + - "null" + - string + maxLength: 256 + name: + description: Name of the plan. + type: + - "null" + - string + maxLength: 256 + description: + description: Description of the plan. + type: + - "null" + - string + maxLength: 1024 + interval_unit: + description: Unit of the billing interval for the plan. + type: + - "null" + - string + maxLength: 256 + interval_length: + description: Length of the billing interval for the plan. + type: + - "null" + - number + trial_unit: + description: Unit of the trial period for the plan. + type: + - "null" + - string + maxLength: 256 + trial_length: + description: Length of the trial period for the plan. + type: + - "null" + - number + trial_requires_billing_info: + description: Determines if billing information is required for the trial. + type: + - "null" + - boolean + total_billing_cycles: + description: Total number of billing cycles the plan will run for. + type: + - "null" + - number + auto_renew: + description: Indicates whether the plan should automatically renew. + type: + - "null" + - boolean + pricing_model: + description: The pricing model used for the plan. + type: + - "null" + - string + ramp_intervals: + description: Specifies ramp intervals for the plan. + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + starting_billing_cycle: + description: The starting billing cycle for the ramp interval. + type: + - "null" + - integer + currencies: + description: Contains currencies information within the ramp intervals. + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + currency: + description: Currency code for the interval. + type: + - "null" + - string + unit_amount: + description: Unit amount for the currency in the interval. + type: + - "null" + - number + custom_fields: + description: Includes any custom fields associated with the plan. + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + description: Name of the custom field. + type: + - "null" + - string + value: + description: Value of the custom field. + type: + - "null" + - string + accounting_code: + description: The accounting code associated with the plan. + type: + - "null" + - string + maxLength: 256 + revenue_schedule_type: + description: Type of revenue schedule for the plan. + type: + - "null" + - string + maxLength: 256 + setup_fee_revenue_schedule_type: + description: Revenue schedule type for the setup fee. + type: + - "null" + - string + maxLength: 256 + setup_fee_accounting_code: + description: The accounting code associated with the setup fee. + type: + - "null" + - string + maxLength: 256 + avalara_transaction_type: + description: The Avalara transaction type used for tax calculation. + type: + - "null" + - number + avalara_service_type: + description: The Avalara service type used for tax calculation. + type: + - "null" + - number + tax_code: + description: Tax code used for the plan. + type: + - "null" + - string + maxLength: 256 + tax_exempt: + description: Determines if the plan is tax exempt. + type: + - "null" + - boolean + currencies: + description: Contains information about the currencies supported by the plan. + type: array + title: Pricing + items: + type: object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + setup_fee: + type: number + format: float + title: Setup fee + description: >- + Amount of one-time setup fee automatically charged at the beginning + of a subscription billing cycle. For subscription plans with a + trial, the setup fee will be charged at the time of signup. Setup + fees do not increase with the quantity of a subscription plan. + minimum: 0 + maximum: 1000000 + unit_amount: + description: Unit amount for the currency in the plan. + type: number + format: float + title: Unit price + minimum: 0 + maximum: 1000000 + hosted_pages: + description: Provides details about hosted pages related to the plan. + type: object + properties: + success_url: + description: >- + URL to redirect when a user successfully completes hosted page + process. + type: + - "null" + - string + maxLength: 2048 + cancel_url: + description: URL to redirect when a user cancels during hosted page process. + type: + - "null" + - string + maxLength: 2048 + bypass_confirmation: + description: Determines if confirmation is bypassed on hosted pages. + type: + - "null" + - boolean + display_quantity: + description: Determines if quantity is displayed on hosted pages. + type: + - "null" + - boolean + allow_any_item_on_subscriptions: + description: Determines if any item can be added to subscriptions using this + plan. + type: + - "null" + - boolean + dunning_campaign_id: + description: ID of the dunning campaign associated with the plan. + type: + - "null" + - string + maxLength: 256 + created_at: + description: Timestamp indicating when the plan was created. + type: + - "null" + - string + format: date-time + updated_at: + description: Timestamp indicating when the plan was last updated. + type: + - "null" + - string + format: date-time + deleted_at: + description: Timestamp indicating when the plan was deleted. + type: + - "null" + - string + format: date-time + shipping_addresses: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + shipping_methods: + $schema: "http://json-schema.org/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the shipping method + type: string + title: Shipping Method ID + readOnly: true + maxLength: 13 + code: + type: string + title: Code + description: The internal name used identify the shipping method. + maxLength: 50 + name: + type: string + title: Name + description: The name of the shipping method displayed to customers. + maxLength: 100 + accounting_code: + type: string + title: Accounting Code + description: Accounting code for shipping method. + maxLength: 20 + tax_code: + type: string + title: Tax code + description: | + Used by Avalara, Vertex, and Recurly’s built-in tax feature. The tax + code values are specific to each tax system. If you are using Recurly’s + built-in taxes the values are: + + - `FR` – Common Carrier FOB Destination + - `FR022000` – Common Carrier FOB Origin + - `FR020400` – Non Common Carrier FOB Destination + - `FR020500` – Non Common Carrier FOB Origin + - `FR010100` – Delivery by Company Vehicle Before Passage of Title + - `FR010200` – Delivery by Company Vehicle After Passage of Title + - `NT` – Non-Taxable + maxLength: 50 + created_at: + description: Timestamp indicating when the shipping method was created + type: string + format: date-time + title: Created at + readOnly: true + updated_at: + description: Timestamp indicating when the shipping method was last updated + type: string + format: date-time + title: Last updated at + readOnly: true + deleted_at: + description: Timestamp indicating when the shipping method was deleted + type: string + format: date-time + title: Deleted at + readOnly: true + subscriptions: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: object + properties: + id: + description: Unique identifier for the subscription. + type: + - "null" + - string + maxLength: 13 + object: + description: Indicates the type of object (subscription). + type: + - "null" + - string + uuid: + description: Universally unique identifier for the subscription. + type: + - "null" + - string + maxLength: 32 + account: + description: Information about the associated account for the subscription + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + email: + type: + - "null" + - string + maxLength: 256 + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + plan: + description: Information about the plan associated with the subscription + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + state: + description: "Current state of the subscription (e.g., active, cancelled)." + type: + - "null" + - string + maxLength: 256 + shipping: + description: Information about the shipping associated with the subscription + type: + - "null" + - object + properties: + object: + type: + - "null" + - string + address: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + method: + description: Information about the shipping method + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Method ID + readOnly: true + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + name: + type: + - "null" + - string + amount: + type: + - "null" + - number + coupon_redemptions: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + object: + type: + - "null" + - string + coupon: + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + name: + type: + - "null" + - string + state: + type: + - "null" + - string + discount: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + percent: + type: + - "null" + - integer + currencies: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + currency: + type: + - "null" + - string + amount: + type: + - "null" + - number + trial: + type: + - "null" + - object + properties: + unit: + type: + - "null" + - string + length: + type: + - "null" + - integer + coupon_type: + type: + - "null" + - string + expired_at: + type: + - "null" + - string + format: date-time + state: + type: + - "null" + - string + discounted: + type: + - "null" + - number + created_at: + type: + - "null" + - string + format: date-time + description: Details of any coupons redeemed for the subscription. + pending_change: + description: Information about any pending changes to the subscription + type: + - "null" + - object + title: Subscription Change + properties: + id: + type: string + title: Subscription Change ID + description: The ID of the Subscription Change. + maxLength: 13 + subscription_id: + type: string + title: Subscription ID + description: The ID of the subscription that is going to be changed. + maxLength: 13 + activate_at: + description: Timestamp when the pending change will be activated + type: string + format: date-time + title: Activated at + readOnly: true + activated: + type: boolean + title: Activated? + description: Returns `true` if the subscription change is activated. + created_at: + description: Timestamp when the pending change was created + type: string + format: date-time + title: Created at + readOnly: true + updated_at: + description: Timestamp when the pending change was last updated + type: string + format: date-time + title: Updated at + readOnly: true + deleted_at: + description: Timestamp when the pending change was deleted + type: string + format: date-time + title: Deleted at + readOnly: true + current_period_started_at: + description: Timestamp when the current period started + type: + - "null" + - string + format: date-time + current_period_ends_at: + description: Timestamp when the current period ends + type: + - "null" + - string + format: date-time + current_term_started_at: + description: Timestamp when the current term started + type: + - "null" + - string + format: date-time + current_term_ends_at: + description: Timestamp when the current term ends + type: + - "null" + - string + format: date-time + trial_started_at: + description: Timestamp when the trial period started + type: + - "null" + - string + format: date-time + trial_ends_at: + description: Timestamp when the trial period ends + type: + - "null" + - string + format: date-time + remaining_billing_cycles: + description: Number of billing cycles remaining before subscription ends. + type: + - "null" + - number + total_billing_cycles: + description: Total number of billing cycles for the subscription. + type: + - "null" + - number + renewal_billing_cycles: + description: Number of billing cycles in the renewal period. + type: + - "null" + - number + auto_renew: + description: Flag indicating whether the subscription auto renews. + type: + - "null" + - boolean + ramp_intervals: + description: Information about any ramp intervals associated with the subscription + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + starting_billing_cycle: + type: + - "null" + - integer + remaining_billing_cycles: + type: + - "null" + - integer + starting_on: + description: Timestamp when the ramp interval starts + type: + - "null" + - string + format: date-time + ending_on: + description: Timestamp when the ramp interval ends + type: + - "null" + - string + format: date-time + unit_amount: + type: + - "null" + - number + paused_at: + description: Timestamp when the subscription was paused + type: + - "null" + - string + format: date-time + remaining_pause_cycles: + description: Number of pause cycles remaining for the subscription. + type: + - "null" + - number + currency: + description: Currency used for billing the subscription. + type: + - "null" + - string + maxLength: 3 + revenue_schedule_type: + description: Type of revenue schedule for the subscription. + type: + - "null" + - string + maxLength: 256 + unit_amount: + description: Amount charged per unit for the subscription. + type: + - "null" + - number + tax_inclusive: + description: Flag indicating if taxes are included in the total amount. + type: + - "null" + - boolean + quantity: + description: Number of units or items included in the subscription. + type: + - "null" + - number + add_ons: + description: Any additional services or items added to the subscription. + type: + - "null" + - array + title: Add-ons + items: + type: + - "null" + - object + title: Subscription Add-on + description: This links an Add-on to a specific Subscription. + properties: + id: + type: string + title: Subscription Add-on ID + maxLength: 13 + code: + type: string + title: Add-on code + description: The unique identifier for the add-on within its plan. + maxLength: 50 + add_ons_total: + description: Total amount charged for the additional services or items. + type: + - "null" + - number + subtotal: + description: Subtotal amount before taxes and additional charges. + type: + - "null" + - number + tax: + description: Total tax amount applied to the subscription. + type: + - "null" + - number + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + description: Details of the tax information for the subscription. + total: + description: Total amount including taxes and additional charges. + type: + - "null" + - number + collection_method: + description: Method used for collecting payments for the subscription. + type: + - "null" + - string + maxLength: 256 + po_number: + description: Purchase order number associated with the subscription. + type: + - "null" + - string + maxLength: 256 + net_terms: + description: Number of net terms for payment. + type: + - "null" + - number + net_terms_type: + description: "Type of net terms (e.g., days)." + type: + - "null" + - string + terms_and_conditions: + description: Terms and conditions agreed upon for the subscription. + type: + - "null" + - string + maxLength: 16384 + customer_notes: + description: Any notes or comments added by the customer. + type: + - "null" + - string + maxLength: 1024 + expiration_reason: + description: Reason for the subscription expiration. + type: + - "null" + - string + maxLength: 1024 + custom_fields: + description: Custom fields associated with the subscription + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + description: Timestamp when the subscription was created + type: + - "null" + - string + format: date-time + updated_at: + description: Timestamp when the subscription was last updated + type: + - "null" + - string + format: date-time + activated_at: + description: Timestamp when the subscription was activated + type: + - "null" + - string + format: date-time + canceled_at: + description: Timestamp when the subscription was canceled + type: + - "null" + - string + format: date-time + expires_at: + description: Timestamp when the subscription expires + type: + - "null" + - string + format: date-time + bank_account_authorized_at: + description: Timestamp when bank account authorization occurred + type: + - "null" + - string + format: date-time + gateway_code: + description: Code associated with the payment gateway used for processing + payments. + type: + - "null" + - string + maxLength: 256 + billing_info_id: + description: ID of the billing information associated with the subscription. + type: + - "null" + - string + maxLength: 13 + active_invoice_id: + description: ID of the active invoice associated with the subscription. + type: + - "null" + - string + started_with_gift: + description: Indicates if the subscription started with a gift or promotion. + type: + - "null" + - boolean + converted_at: + description: Timestamp when the subscription was converted + type: + - "null" + - string + format: date-time + action_result: + description: Result of the action performed on the subscription. + type: + - "null" + - object + additionalProperties: true + transactions: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + additionalProperties: true + properties: + id: + description: Unique identifier for the transaction + type: + - "null" + - string + maxLength: 13 + object: + description: Type of object (transaction) + type: + - "null" + - string + uuid: + description: Universally unique identifier for the transaction + type: + - "null" + - string + maxLength: 32 + original_transaction_id: + description: "ID of the original transaction, if applicable" + type: + - "null" + - string + maxLength: 13 + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + description: Details of the account associated with the transaction + invoice: + description: Details of the invoice associated with the transaction + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + maxLength: 13 + number: + type: + - "null" + - string + maxLength: 256 + business_entity_id: + type: + - "null" + - string + type: + type: + - "null" + - string + state: + type: + - "null" + - string + voided_by_invoice: + description: Details of the invoice that voided the transaction + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + number: + type: + - "null" + - string + maxLength: 256 + business_entity_id: + type: + - "null" + - string + type: + type: + - "null" + - string + state: + type: + - "null" + - string + subscription_ids: + description: List of subscription IDs associated with the transaction + type: array + items: + type: + - "null" + - string + maxLength: 13 + type: + description: Type of transaction + type: + - "null" + - string + maxLength: 256 + origin: + description: Source or origin of the transaction + type: + - "null" + - string + maxLength: 256 + currency: + description: Currency used for the transaction + type: + - "null" + - string + maxLength: 3 + amount: + description: Amount of the transaction + type: + - "null" + - number + status: + description: Current status of the transaction + type: + - "null" + - string + maxLength: 256 + success: + description: Indicates the success status of the transaction + type: + - "null" + - boolean + backup_payment_method_used: + description: Indicates whether a backup payment method was used + type: + - "null" + - boolean + refunded: + description: Indicates whether the transaction has been refunded + type: + - "null" + - boolean + billing_address: + description: Billing address details of the transaction + type: object + properties: + first_name: + type: + - "null" + - string + maxLength: 256 + last_name: + type: + - "null" + - string + maxLength: 256 + phone: + type: + - "null" + - string + maxLength: 256 + street1: + type: + - "null" + - string + maxLength: 256 + street2: + type: + - "null" + - string + maxLength: 256 + city: + type: + - "null" + - string + maxLength: 256 + region: + type: + - "null" + - string + maxLength: 256 + postal_code: + type: + - "null" + - string + maxLength: 256 + country: + type: + - "null" + - string + maxLength: 256 + geo_code: + type: + - "null" + - string + collection_method: + description: Method used to collect the transaction + type: + - "null" + - string + maxLength: 256 + payment_method: + description: Details of the payment method used for the transaction + type: object + properties: + object: + type: + - "null" + - string + card_type: + type: + - "null" + - string + maxLength: 256 + first_six: + type: + - "null" + - string + maxLength: 6 + last_four: + type: + - "null" + - string + maxLength: 4 + last_two: + type: + - "null" + - string + maxLength: 2 + exp_month: + type: + - "null" + - number + exp_year: + type: + - "null" + - number + gateway_token: + type: + - "null" + - string + maxLength: 256 + cc_bin_country: + type: + - "null" + - string + gateway_code: + type: + - "null" + - string + maxLength: 256 + billing_agreement_id: + type: + - "null" + - string + maxLength: 256 + name_on_account: + type: + - "null" + - string + maxLength: 256 + account_type: + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + maxLength: 256 + username: + type: + - "null" + - string + ip_address_v4: + description: IPv4 address of the transaction + type: + - "null" + - string + maxLength: 256 + ip_address_country: + description: Country of the IP address used for the transaction + type: + - "null" + - string + maxLength: 256 + status_code: + description: Status code of the transaction + type: + - "null" + - string + maxLength: 256 + status_message: + description: Message related to the status of the transaction + type: + - "null" + - string + maxLength: 1024 + customer_message: + description: Message for the customer related to the transaction + type: + - "null" + - string + maxLength: 1024 + customer_message_locale: + description: Locale of the customer message + type: + - "null" + - string + maxLength: 12 + payment_gateway: + description: Details of the payment gateway used for the transaction + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + type: + type: + - "null" + - string + name: + type: + - "null" + - string + gateway_message: + description: Message returned by the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_reference: + description: Reference number provided by the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_approval_code: + description: Approval code provided by the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_response_code: + description: Response code from the payment gateway + type: + - "null" + - string + maxLength: 256 + gateway_response_time: + description: Time taken for the payment gateway to respond + type: + - "null" + - number + gateway_response_values: + description: Additional values in the gateway response + type: object + cvv_check: + description: Result of the CVV check + type: + - "null" + - string + maxLength: 256 + avs_check: + description: Result of the Address Verification System check + type: + - "null" + - string + maxLength: 256 + created_at: + description: Date and time when the transaction was created + type: + - "null" + - string + format: date-time + updated_at: + description: Date and time of the last update to the transaction + type: + - "null" + - string + format: date-time + voided_at: + description: Date and time when the transaction was voided + type: + - "null" + - string + format: date-time + collected_at: + description: Date and time when the transaction was collected + type: + - "null" + - string + format: date-time + action_result: + description: Result of the action taken for the transaction + type: + - "null" + - object + additionalProperties: true + vat_number: + description: VAT number associated with the transaction + type: + - "null" + - string + fraud_info: + description: Information related to fraud check for the transaction + type: + - "null" + - object + properties: + object: + type: + - "null" + - string + score: + type: + - "null" + - integer + decision: + type: + - "null" + - string + reference: + type: + - "null" + - string + risk_rules_triggered: + type: + - "null" + - array + items: + description: Details of individual risk rules triggered + type: + - "null" + - object + properties: + code: + type: + - "null" + - string + message: + type: + - "null" + - string + unique_coupons: + $schema: "http://json-schema.org/draft-07/schema#" + additionalProperties: true + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or why not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + billing_infos_common: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: string + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + maxLength: 13 + readOnly: true + first_name: + type: + - "null" + - string + maxLength: 50 + last_name: + type: + - "null" + - string + maxLength: 50 + company: + type: + - "null" + - string + maxLength: 100 + address: + type: object + properties: + phone: + type: + - "null" + - string + title: Phone number + maxLength: 256 + street1: + type: + - "null" + - string + title: Street 1 + maxLength: 256 + street2: + type: + - "null" + - string + title: Street 2 + maxLength: 256 + city: + type: + - "null" + - string + title: City + maxLength: 256 + region: + type: + - "null" + - string + title: State/Province + description: State or province. + maxLength: 256 + postal_code: + type: + - "null" + - string + title: Zip/Postal code + description: Zip or postal code. + maxLength: 256 + country: + type: + - "null" + - string + title: Country + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + maxLength: 2 + vat_number: + type: + - "null" + - string + description: >- + Customer's VAT number (to avoid having the VAT applied). This is only used + for automatically collected invoices. + maxLength: 20 + valid: + type: boolean + readOnly: true + payment_method: + type: object + properties: + card_type: + description: "Visa, MasterCard, American Express, Discover, JCB, etc." + type: + - "null" + - string + maxLength: 256 + object: + type: + - "null" + - string + first_six: + type: + - "null" + - string + description: Credit card number's first six digits. + maxLength: 6 + last_four: + type: + - "null" + - string + description: >- + Credit card number's last four digits. Will refer to bank account if + payment method is ACH. + maxLength: 4 + last_two: + type: + - "null" + - string + description: The IBAN bank account's last two digits. + maxLength: 2 + exp_month: + type: + - "null" + - integer + description: Expiration month. + maxLength: 2 + exp_year: + type: + - "null" + - integer + description: Expiration year. + maxLength: 4 + gateway_token: + type: + - "null" + - string + description: >- + A token used in place of a credit card in order to perform + transactions. + maxLength: 50 + cc_bin_country: + type: + - "null" + - string + description: >- + The 2-letter ISO 3166-1 alpha-2 country code associated with the + credit card BIN, if known by Recurly. Available on the BillingInfo + object only. Available when the BIN country lookup feature is enabled. + maxLength: 256 + gateway_code: + type: + - "null" + - string + description: An identifier for a specific payment gateway. + maxLength: 13 + billing_agreement_id: + type: + - "null" + - string + description: >- + Billing Agreement identifier. Only present for Amazon or Paypal + payment methods. + maxLength: 256 + name_on_account: + type: + - "null" + - string + description: The name associated with the bank account. + maxLength: 256 + account_type: + description: The bank account type. Only present for ACH payment methods. + type: + - "null" + - string + maxLength: 256 + routing_number: + type: + - "null" + - string + description: >- + The bank account's routing number. Only present for ACH payment + methods. + maxLength: 256 + routing_number_bank: + type: + - "null" + - string + description: The bank name of this routing number. + maxLength: 256 + fraud: + type: + - "null" + - object + title: Fraud information + description: Most recent fraud result. + readOnly: true + properties: + score: + type: + - "null" + - integer + title: Kount score + decision: + title: Kount decision + maxLength: 10 + type: + - "null" + - string + risk_rules_triggered: + type: object + title: Kount rules + primary_payment_method: + type: boolean + description: >- + The `primary_payment_method` field is used to indicate the primary billing + info on the account. The first billing info created on an account will + always become primary. This payment method will be used + backup_payment_method: + type: boolean + description: >- + The `backup_payment_method` field is used to indicate a billing info as + a + backup on the account that will be tried if the initial billing info used + for an invoice is declined. + created_at: + type: string + format: date-time + description: When the billing information was created. + readOnly: true + updated_at: + type: string + format: date-time + description: When the billing information was last changed. + readOnly: true + updated_by: + type: + - "null" + - object + properties: + ip: + type: + - "null" + - string + country: + type: + - "null" + - string + external_accounts_common: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + object: + type: + - "null" + - string + id: + type: + - "null" + - string + external_account_code: + type: + - "null" + - string + external_connection_type: + type: + - "null" + - string + created_at: + type: + - "null" + - string + updated_at: + type: + - "null" + - string + shipping_addresses_common: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + object: + type: + - "null" + - string + account_id: + type: string + title: Account ID + maxLength: 13 + readOnly: true + nickname: + type: string + maxLength: 255 + first_name: + type: string + maxLength: 255 + last_name: + type: string + maxLength: 255 + company: + type: string + maxLength: 255 + email: + type: string + maxLength: 255 + vat_number: + type: string + maxLength: 20 + phone: + type: string + maxLength: 30 + street1: + type: string + maxLength: 255 + street2: + type: string + maxLength: 255 + city: + type: string + maxLength: 255 + region: + type: string + maxLength: 255 + description: State or province. + postal_code: + type: string + maxLength: 20 + description: Zip or postal code. + country: + type: string + maxLength: 50 + description: "Country, 2-letter ISO 3166-1 alpha-2 code." + geo_code: + type: + - "null" + - string + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + account_details_common: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + coupons_common: + $schema: "http://json-schema.org/draft-07/schema#" + type: object + properties: + id: + type: + - "null" + - string + maxLength: 13 + object: + type: + - "null" + - string + code: + type: + - "null" + - string + maxLength: 256 + name: + type: + - "null" + - string + maxLength: 256 + state: + type: + - "null" + - string + maxLength: 256 + max_redemptions: + type: + - "null" + - number + max_redemptions_per_account: + type: + - "null" + - number + unique_coupon_codes_count: + type: + - "null" + - number + unique_code_template: + type: + - "null" + - string + maxLength: 256 + unique_coupon_code: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or why + not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + duration: + type: + - "null" + - string + maxLength: 256 + temporal_amount: + type: + - "null" + - number + temporal_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_unit: + type: + - "null" + - string + maxLength: 256 + free_trial_amount: + type: + - "null" + - number + applies_to_all_plans: + type: + - "null" + - boolean + applies_to_all_items: + type: + - "null" + - boolean + applies_to_non_plan_charges: + type: + - "null" + - boolean + plans: + type: + - "null" + - array + title: Plans + description: >- + A list of plans for which this coupon applies. This will be `null` if + `applies_to_all_plans=true`. + items: + type: object + title: Plan mini details + description: Just the important parts. + properties: + id: + type: string + title: Plan ID + maxLength: 13 + readOnly: true + code: + type: string + title: Plan code + description: >- + Unique code to identify the plan. This is used in Hosted Payment + Page URLs and in the invoice exports. + maxLength: 13 + items: + type: + - "null" + - array + title: Items + description: | + A list of items for which this coupon applies. This will be + `null` if `applies_to_all_items=true`. + items: + type: + - "null" + - object + title: Item mini details + description: Just the important parts. + properties: + id: + type: string + title: Item ID + maxLength: 13 + readOnly: true + redemption_resource: + type: + - "null" + - string + maxLength: 256 + discount: + type: + - "null" + - object + description: | + Details of the discount a coupon applies. Will contain a `type` + property and one of the following properties: `percent`, `fixed`, `trial`. + properties: + type: + type: string + maxLength: 256 + percent: + description: This is only present when `type=percent`. + type: integer + currencies: + type: array + description: This is only present when `type=fixed`. + items: + type: + - "null" + - object + properties: + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Discount Amount + description: Value of the fixed discount that this coupon applies. + trial: + type: object + description: This is only present when `type=free_trial`. + properties: + unit: + title: Trial unit + description: Temporal unit of the free trial + type: string + maxLength: 256 + length: + type: integer + title: Trial length + description: >- + Trial length measured in the units specified by the sibling `unit` + property + coupon_type: + type: + - "null" + - string + maxLength: 256 + hosted_page_description: + type: + - "null" + - string + maxLength: 1024 + invoice_description: + type: + - "null" + - string + maxLength: 1024 + redeem_by: + type: + - "null" + - string + maxLength: 256 + created_at: + type: + - "null" + - string + format: date-time + updated_at: + type: + - "null" + - string + format: date-time + expired_at: + type: + - "null" + - string + format: date-time + unique_coupons_common: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + description: A unique coupon code for a bulk coupon. + properties: + id: + type: string + title: Unique Coupon Code ID + readOnly: true + maxLength: 13 + object: + type: string + code: + type: string + title: Coupon code + description: The code the customer enters to redeem the coupon. + maxLength: 256 + state: + type: + - "null" + - string + title: State + description: Indicates if the unique coupon code is redeemable or why not. + maxLength: 256 + bulk_coupon_id: + type: + - "null" + - string + title: Bulk Coupon ID + description: The Coupon ID of the parent Bulk Coupon + readOnly: true + maxLength: 13 + bulk_coupon_code: + type: + - "null" + - string + title: Bulk Coupon code + description: The Coupon code of the parent Bulk Coupon + maxLength: 256 + created_at: + type: string + title: Created at + format: date-time + readOnly: true + updated_at: + type: string + title: Updated at + format: date-time + readOnly: true + redeemed_at: + type: + - "null" + - string + title: Redeemed at + description: The date and time the unique coupon code was redeemed. + format: date-time + readOnly: true + expired_at: + type: + - "null" + - string + title: Expired at + description: >- + The date and time the coupon was expired early or reached its + `max_redemptions`. + format: date-time + users_common: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + time_zone: + type: + - "null" + - string + created_at: + type: + - "null" + - string + format: date-time + deleted_at: + type: + - "null" + - string + format: date-time + line_items_common: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + title: Line item + properties: + id: + type: string + title: Line item ID + maxLength: 13 + object: + type: + - "null" + - string + uuid: + type: string + title: UUID + description: >- + The UUID is useful for matching data with the CSV exports and building + URLs into Recurly's UI. + maxLength: 32 + type: + type: string + title: Line item type + description: >- + Charges are positive line items that debit the account. Credits are + negative line items that credit the account. + maxLength: 256 + item_code: + type: + - "null" + - string + title: Item Code + description: >- + Unique code to identify an item. Available when the Credit Invoices and + Subscription Billing Terms features are enabled. + maxLength: 50 + item_id: + type: + - "null" + - string + title: Item ID + description: >- + System-generated unique identifier for an item. Available when the Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 13 + external_sku: + type: + - "null" + - string + title: External SKU + description: >- + Optional Stock Keeping Unit assigned to an item. Available when the Credit + Invoices and Subscription Billing Terms features are enabled. + maxLength: 50 + revenue_schedule_type: + type: + - "null" + - string + title: Revenue schedule type + maxLength: 256 + state: + type: string + title: Current state of the line item + description: >- + Pending line items are charges or credits on an account that have not been + applied to an invoice yet. Invoiced line items will always have an + `invoice_id` value. + maxLength: 256 + legacy_category: + type: + - "null" + - string + title: Legacy category + description: > + Category to describe the role of a line item on a legacy invoice: + + - "charges" refers to charges being billed for on this invoice. + + - "credits" refers to refund or proration credits. This portion of the + invoice can be considered a credit memo. + + - "applied_credits" refers to previous credits applied to this invoice. + See their original_line_item_id to determine where the credit first + originated. + + - "carryforwards" can be ignored. They exist to consume any remaining + credit balance. A new credit with the same amount will be created and + placed back on the account. + account: + type: + - "null" + - object + properties: + id: + type: string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + email: + type: + - "null" + - string + first_name: + type: + - "null" + - string + last_name: + type: + - "null" + - string + company: + type: + - "null" + - string + parent_account_id: + type: + - "null" + - string + bill_to: + type: + - "null" + - string + dunning_campaign_id: + type: + - "null" + - string + bill_for_account_id: + type: string + title: Bill For Account ID + maxLength: 13 + description: The UUID of the account responsible for originating the line + item. + subscription_id: + type: + - "null" + - string + title: Subscription ID + description: "If the line item is a charge or credit for a subscription, this + is its ID." + maxLength: 13 + plan_id: + type: + - "null" + - string + title: Plan ID + description: >- + If the line item is a charge or credit for a plan or add-on, this is the + plan's ID. + maxLength: 13 + plan_code: + type: + - "null" + - string + title: Plan code + description: >- + If the line item is a charge or credit for a plan or add-on, this is the + plan's code. + maxLength: 50 + add_on_id: + type: + - "null" + - string + title: Add-on ID + description: If the line item is a charge or credit for an add-on this is + its ID. + maxLength: 13 + add_on_code: + type: + - "null" + - string + title: Add-on code + description: "If the line item is a charge or credit for an add-on, this is + its code." + maxLength: 50 + invoice_id: + type: + - "null" + - string + title: Invoice ID + description: Once the line item has been invoiced this will be the invoice's + ID. + maxLength: 13 + invoice_number: + type: + - "null" + - string + title: Invoice number + description: >- + Once the line item has been invoiced this will be the invoice's number. + If + VAT taxation and the Country Invoice Sequencing feature are enabled, + invoices will have country-specific invoice numbers for invoices billed + to + EU countries (ex: FR1001). Non-EU invoices will continue to use the + site-level invoice number sequence. + maxLength: 256 + previous_line_item_id: + type: + - "null" + - string + title: Previous line item ID + description: >- + Will only have a value if the line item is a credit created from a + previous credit, or if the credit was created from a charge refund. + maxLength: 13 + original_line_item_invoice_id: + type: + - "null" + - string + title: Original line item's invoice ID + description: >- + The invoice where the credit originated. Will only have a value if the + line item is a credit created from a previous credit, or if the credit was + created from a charge refund. + maxLength: 13 + origin: + type: string + title: Origin of line item + description: >- + A credit created from an original charge will have the value of the + charge's origin. + maxLength: 256 + accounting_code: + type: string + title: Accounting code + description: >- + Internal accounting code to help you reconcile your revenue to the correct + ledger. Line items created as part of a subscription invoice will use the + plan or add-on's accounting code, otherwise the value will only be present + if you define an accounting code when creating the line item. + maxLength: 20 + product_code: + type: string + title: Product code + description: >- + For plan-related line items this will be the plan's code, for add-on + related line items it will be the add-on's code. For item-related line + items it will be the item's `external_sku`. + maxLength: 50 + credit_reason_code: + type: + - "null" + - string + title: Credit reason code + description: The reason the credit was given when line item is `type=credit`. + default: general + maxLength: 256 + currency: + type: string + title: Currency + description: 3-letter ISO 4217 currency code. + maxLength: 3 + amount: + type: number + format: float + title: Total after discounts and taxes + description: "`(quantity * unit_amount) - (discount + tax)`" + description: + type: string + title: Description + description: >- + Description that appears on the invoice. For subscription related items + this will be filled in automatically. + maxLength: 255 + quantity: + type: integer + title: Quantity + description: >- + This number will be multiplied by the unit amount to compute the subtotal + before any discounts or taxes. + default: 1 + unit_amount: + type: number + format: float + title: Unit amount + description: "Positive amount for a charge, negative amount for a credit." + unit_amount_decimal: + type: + - "null" + - string + title: Unit amount decimal + description: "Positive amount for a charge, negative amount for a credit." + subtotal: + type: number + format: float + title: Total before discounts and taxes + description: "`quantity * unit_amount`" + discount: + type: + - "null" + - number + format: float + title: Discount + description: The discount applied to the line item. + tax: + type: + - "null" + - number + format: float + title: Tax + description: The tax amount for the line item. + taxable: + type: boolean + title: Taxable? + description: "`true` if the line item is taxable, `false` if it is not." + tax_exempt: + type: boolean + title: Tax exempt? + description: >- + `true` exempts tax on charges, `false` applies tax on charges. If not + defined, then defaults to the Plan and Site settings. This attribute does + not work for credits (negative line items). Credits are always applied + post-tax. Pre-tax discounts should use the Coupons feature. + tax_code: + type: + - "null" + - string + title: Tax code + description: >- + Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax code + values are specific to each tax system. If you are using Recurly’s EU VAT + feature you can use `unknown`, `physical`, or `digital`. + maxLength: 50 + tax_info: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + proration_rate: + type: + - "null" + - number + format: float + title: Proration rate + description: >- + When a line item has been prorated, this is the rate of the proration. + Proration rates were made available for line items created after March 30, + 2017. For line items created prior to that date, the proration rate will + be `null`, even if the line item was prorated. + minimum: 0 + maximum: 1 + refund: + type: boolean + title: Refund? + refunded_quantity: + type: + - "null" + - integer + title: Refunded Quantity + description: >- + For refund charges, the quantity being refunded. For non-refund charges, + the total quantity refunded (possibly over multiple refunds). + credit_applied: + type: + - "null" + - number + format: float + title: Credit Applied + description: The amount of credit from this line item that was applied to + the invoice. + shipping_address: + type: + - "null" + - object + properties: + id: + type: string + title: Shipping Address ID + maxLength: 13 + readOnly: true + start_date: + type: + - "null" + - string + format: date-time + title: Start date + description: >- + If an end date is present, this is value indicates the beginning of a + billing time range. If no end date is present it indicates billing for a + specific date. + end_date: + type: + - "null" + - string + format: date-time + title: End date + description: "If this date is provided, it indicates the end of a time range." + custom_fields: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + name: + type: + - "null" + - string + value: + type: + - "null" + - string + created_at: + type: string + format: date-time + title: Created at + description: When the line item was created. + updated_at: + type: string + format: date-time + title: Last updated at + description: When the line item was last changed. + tax_info_common: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax_details: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + region: + type: + - "null" + - string + rate: + type: + - "null" + - number + tax: + type: + - "null" + - number + name: + type: + - "null" + - string + level: + type: + - "null" + - string + billable: + type: + - "null" + - boolean + coupon_redemptions_common: + $schema: "http://json-schema.org/draft-07/schema#" + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + object: + type: + - "null" + - string + coupon: + type: + - "null" + - object + properties: + id: + type: + - "null" + - string + object: + type: + - "null" + - string + code: + type: + - "null" + - string + name: + type: + - "null" + - string + state: + type: + - "null" + - string + discount: + type: + - "null" + - object + properties: + type: + type: + - "null" + - string + percent: + type: + - "null" + - integer + currencies: + type: + - "null" + - array + items: + type: + - "null" + - object + properties: + currency: + type: + - "null" + - string + amount: + type: + - "null" + - number + trial: + type: + - "null" + - object + properties: + unit: + type: + - "null" + - string + length: + type: + - "null" + - integer + coupon_type: + type: + - "null" + - string + expired_at: + type: + - "null" + - string + format: date-time + state: + type: + - "null" + - string + discounted: + type: + - "null" + - number + created_at: + type: + - "null" + - string + format: date-time diff --git a/airbyte-integrations/connectors/source-recurly/metadata.yaml b/airbyte-integrations/connectors/source-recurly/metadata.yaml index 0ddc5256bd70..ad390f967aae 100644 --- a/airbyte-integrations/connectors/source-recurly/metadata.yaml +++ b/airbyte-integrations/connectors/source-recurly/metadata.yaml @@ -3,11 +3,11 @@ data: ql: 200 sl: 100 connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 + baseImage: docker.io/airbyte/source-declarative-manifest:5.15.0@sha256:09a84e0622f36393077332faf11cc239e77083fae5fa500592c049dca25888a7 connectorSubtype: api connectorType: source definitionId: cd42861b-01fc-4658-a8ab-5d11d0510f01 - dockerImageTag: 1.1.13 + dockerImageTag: 1.2.0 dockerRepository: airbyte/source-recurly documentationUrl: https://docs.airbyte.com/integrations/sources/recurly githubIssueLabel: source-recurly @@ -22,17 +22,20 @@ data: releases: breakingChanges: 1.0.0: - message: Version 1.0.0 introduces a number of schema updates to the Recurly connector. To ensure a smooth upgrade, please refresh your schemas and reset your data before resuming syncs. + message: + Version 1.0.0 introduces a number of schema updates to the Recurly + connector. To ensure a smooth upgrade, please refresh your schemas and reset + your data before resuming syncs. upgradeDeadline: "2024-03-05" releaseStage: alpha remoteRegistries: pypi: - enabled: true + enabled: false packageName: airbyte-source-recurly supportLevel: community tags: - - language:python - cdk:low-code + - language:manifest-only connectorTestSuitesOptions: - suite: liveTests testConnections: diff --git a/airbyte-integrations/connectors/source-recurly/poetry.lock b/airbyte-integrations/connectors/source-recurly/poetry.lock deleted file mode 100644 index f67eff452904..000000000000 --- a/airbyte-integrations/connectors/source-recurly/poetry.lock +++ /dev/null @@ -1,1076 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "airbyte-cdk" -version = "0.80.0" -description = "A framework for writing Airbyte Connectors." -optional = false -python-versions = "<4.0,>=3.9" -files = [ - {file = "airbyte_cdk-0.80.0-py3-none-any.whl", hash = "sha256:060e92323a73674fa4e9e2e4a1eb312b9b9d072c9bbe5fa28f54ef21cb4974f3"}, - {file = "airbyte_cdk-0.80.0.tar.gz", hash = "sha256:1383512a83917fecca5b24cea4c72aa5c561cf96dd464485fbcefda48fe574c5"}, -] - -[package.dependencies] -airbyte-protocol-models = "0.5.1" -backoff = "*" -cachetools = "*" -Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" -genson = "1.2.2" -isodate = ">=0.6.1,<0.7.0" -Jinja2 = ">=3.1.2,<3.2.0" -jsonref = ">=0.2,<0.3" -jsonschema = ">=3.2.0,<3.3.0" -pendulum = "<3.0.0" -pydantic = ">=1.10.8,<2.0.0" -pyrate-limiter = ">=3.1.0,<3.2.0" -python-dateutil = "*" -PyYAML = ">=6.0.1,<7.0.0" -requests = "*" -requests_cache = "*" -wcmatch = "8.4" - -[package.extras] -file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] -sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] -vector-db-based = ["cohere (==4.21)", "langchain (==0.0.271)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] - -[[package]] -name = "airbyte-protocol-models" -version = "0.5.1" -description = "Declares the Airbyte Protocol." -optional = false -python-versions = ">=3.8" -files = [ - {file = "airbyte_protocol_models-0.5.1-py3-none-any.whl", hash = "sha256:dfe84e130e51ce2ae81a06d5aa36f6c5ce3152b9e36e6f0195fad6c3dab0927e"}, - {file = "airbyte_protocol_models-0.5.1.tar.gz", hash = "sha256:7c8b16c7c1c7956b1996052e40585a3a93b1e44cb509c4e97c1ee4fe507ea086"}, -] - -[package.dependencies] -pydantic = ">=1.9.2,<2.0.0" - -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - -[[package]] -name = "attrs" -version = "24.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, -] - -[package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] - -[[package]] -name = "backoff" -version = "2.2.1" -description = "Function decoration for backoff and retry" -optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, - {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, -] - -[[package]] -name = "bracex" -version = "2.5.post1" -description = "Bash style brace expander." -optional = false -python-versions = ">=3.8" -files = [ - {file = "bracex-2.5.post1-py3-none-any.whl", hash = "sha256:13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6"}, - {file = "bracex-2.5.post1.tar.gz", hash = "sha256:12c50952415bfa773d2d9ccb8e79651b8cdb1f31a42f6091b804f6ba2b4a66b6"}, -] - -[[package]] -name = "cachetools" -version = "5.5.0" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, - {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, -] - -[[package]] -name = "cattrs" -version = "24.1.2" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0"}, - {file = "cattrs-24.1.2.tar.gz", hash = "sha256:8028cfe1ff5382df59dd36474a86e02d817b06eaf8af84555441bac915d2ef85"}, -] - -[package.dependencies] -attrs = ">=23.1.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=4.1.0,<4.6.3 || >4.6.3", markers = "python_version < \"3.11\""} - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.18.5)"] -orjson = ["orjson (>=3.9.2)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.7.0)"] - -[[package]] -name = "certifi" -version = "2024.8.30" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, - {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, - {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, - {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, - {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, - {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, - {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, - {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, - {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, - {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "deprecated" -version = "1.2.14" -description = "Python @deprecated decorator to deprecate old python classes, functions or methods." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, - {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, -] - -[package.dependencies] -wrapt = ">=1.10,<2" - -[package.extras] -dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] - -[[package]] -name = "dpath" -version = "2.0.8" -description = "Filesystem-like pathing and searching for dictionaries" -optional = false -python-versions = ">=3.7" -files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, - {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "genson" -version = "1.2.2" -description = "GenSON is a powerful, user-friendly JSON Schema generator." -optional = false -python-versions = "*" -files = [ - {file = "genson-1.2.2.tar.gz", hash = "sha256:8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"}, -] - -[[package]] -name = "idna" -version = "3.10" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, - {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "isodate" -version = "0.6.1" -description = "An ISO 8601 date/time/duration parser and formatter" -optional = false -python-versions = "*" -files = [ - {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, - {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "jinja2" -version = "3.1.4" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonref" -version = "0.2" -description = "An implementation of JSON Reference for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonref-0.2-py3-none-any.whl", hash = "sha256:b1e82fa0b62e2c2796a13e5401fe51790b248f6d9bf9d7212a3e31a3501b291f"}, - {file = "jsonref-0.2.tar.gz", hash = "sha256:f3c45b121cf6257eafabdc3a8008763aed1cd7da06dbabc59a9e4d2a5e4e6697"}, -] - -[[package]] -name = "jsonschema" -version = "3.2.0" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = "*" -files = [ - {file = "jsonschema-3.2.0-py2.py3-none-any.whl", hash = "sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163"}, - {file = "jsonschema-3.2.0.tar.gz", hash = "sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0" -setuptools = "*" -six = ">=1.11.0" - -[package.extras] -format = ["idna", "jsonpointer (>1.13)", "rfc3987", "strict-rfc3339", "webcolors"] -format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "webcolors"] - -[[package]] -name = "markupsafe" -version = "3.0.2" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, - {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, - {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, - {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, - {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, - {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, - {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, - {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, -] - -[[package]] -name = "packaging" -version = "24.1" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, -] - -[[package]] -name = "pendulum" -version = "2.1.2" -description = "Python datetimes made easy" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pendulum-2.1.2-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe"}, - {file = "pendulum-2.1.2-cp27-cp27m-win_amd64.whl", hash = "sha256:318f72f62e8e23cd6660dbafe1e346950281a9aed144b5c596b2ddabc1d19739"}, - {file = "pendulum-2.1.2-cp35-cp35m-macosx_10_15_x86_64.whl", hash = "sha256:0731f0c661a3cb779d398803655494893c9f581f6488048b3fb629c2342b5394"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:3481fad1dc3f6f6738bd575a951d3c15d4b4ce7c82dce37cf8ac1483fde6e8b0"}, - {file = "pendulum-2.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9702069c694306297ed362ce7e3c1ef8404ac8ede39f9b28b7c1a7ad8c3959e3"}, - {file = "pendulum-2.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:fb53ffa0085002ddd43b6ca61a7b34f2d4d7c3ed66f931fe599e1a531b42af9b"}, - {file = "pendulum-2.1.2-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:c501749fdd3d6f9e726086bf0cd4437281ed47e7bca132ddb522f86a1645d360"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:c807a578a532eeb226150d5006f156632df2cc8c5693d778324b43ff8c515dd0"}, - {file = "pendulum-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:2d1619a721df661e506eff8db8614016f0720ac171fe80dda1333ee44e684087"}, - {file = "pendulum-2.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:f888f2d2909a414680a29ae74d0592758f2b9fcdee3549887779cd4055e975db"}, - {file = "pendulum-2.1.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e95d329384717c7bf627bf27e204bc3b15c8238fa8d9d9781d93712776c14002"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:4c9c689747f39d0d02a9f94fcee737b34a5773803a64a5fdb046ee9cac7442c5"}, - {file = "pendulum-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:1245cd0075a3c6d889f581f6325dd8404aca5884dea7223a5566c38aab94642b"}, - {file = "pendulum-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:db0a40d8bcd27b4fb46676e8eb3c732c67a5a5e6bfab8927028224fbced0b40b"}, - {file = "pendulum-2.1.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f5e236e7730cab1644e1b87aca3d2ff3e375a608542e90fe25685dae46310116"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:de42ea3e2943171a9e95141f2eecf972480636e8e484ccffaf1e833929e9e052"}, - {file = "pendulum-2.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7c5ec650cb4bec4c63a89a0242cc8c3cebcec92fcfe937c417ba18277d8560be"}, - {file = "pendulum-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:33fb61601083f3eb1d15edeb45274f73c63b3c44a8524703dc143f4212bf3269"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:29c40a6f2942376185728c9a0347d7c0f07905638c83007e1d262781f1e6953a"}, - {file = "pendulum-2.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:94b1fc947bfe38579b28e1cccb36f7e28a15e841f30384b5ad6c5e31055c85d7"}, - {file = "pendulum-2.1.2.tar.gz", hash = "sha256:b06a0ca1bfe41c990bbf0c029f0b6501a7f2ec4e38bfec730712015e8860f207"}, -] - -[package.dependencies] -python-dateutil = ">=2.6,<3.0" -pytzdata = ">=2020.1" - -[[package]] -name = "platformdirs" -version = "4.3.6" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.8" -files = [ - {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, - {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.11.2)"] - -[[package]] -name = "pluggy" -version = "1.5.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, - {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] - -[[package]] -name = "pydantic" -version = "1.10.18" -description = "Data validation and settings management using python type hints" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, -] - -[package.dependencies] -typing-extensions = ">=4.2.0" - -[package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] - -[[package]] -name = "pyrate-limiter" -version = "3.1.1" -description = "Python Rate-Limiter using Leaky-Bucket Algorithm" -optional = false -python-versions = ">=3.8,<4.0" -files = [ - {file = "pyrate_limiter-3.1.1-py3-none-any.whl", hash = "sha256:c51906f1d51d56dc992ff6c26e8300e32151bc6cfa3e6559792e31971dfd4e2b"}, - {file = "pyrate_limiter-3.1.1.tar.gz", hash = "sha256:2f57eda712687e6eccddf6afe8f8a15b409b97ed675fe64a626058f12863b7b7"}, -] - -[package.extras] -all = ["filelock (>=3.0)", "redis (>=5.0.0,<6.0.0)"] -docs = ["furo (>=2022.3.4,<2023.0.0)", "myst-parser (>=0.17)", "sphinx (>=4.3.0,<5.0.0)", "sphinx-autodoc-typehints (>=1.17,<2.0)", "sphinx-copybutton (>=0.5)", "sphinxcontrib-apidoc (>=0.3,<0.4)"] - -[[package]] -name = "pyrsistent" -version = "0.20.0" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyrsistent-0.20.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c3aba3e01235221e5b229a6c05f585f344734bd1ad42a8ac51493d74722bbce"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1beb78af5423b879edaf23c5591ff292cf7c33979734c99aa66d5914ead880f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cc459636983764e692b9eba7144cdd54fdec23ccdb1e8ba392a63666c60c34"}, - {file = "pyrsistent-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5ac696f02b3fc01a710427585c855f65cd9c640e14f52abe52020722bb4906b"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win32.whl", hash = "sha256:0724c506cd8b63c69c7f883cc233aac948c1ea946ea95996ad8b1380c25e1d3f"}, - {file = "pyrsistent-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:8441cf9616d642c475684d6cf2520dd24812e996ba9af15e606df5f6fd9d04a7"}, - {file = "pyrsistent-0.20.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0f3b1bcaa1f0629c978b355a7c37acd58907390149b7311b5db1b37648eb6958"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdd7ef1ea7a491ae70d826b6cc64868de09a1d5ff9ef8d574250d0940e275b8"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cae40a9e3ce178415040a0383f00e8d68b569e97f31928a3a8ad37e3fde6df6a"}, - {file = "pyrsistent-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6288b3fa6622ad8a91e6eb759cfc48ff3089e7c17fb1d4c59a919769314af224"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win32.whl", hash = "sha256:7d29c23bdf6e5438c755b941cef867ec2a4a172ceb9f50553b6ed70d50dfd656"}, - {file = "pyrsistent-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:59a89bccd615551391f3237e00006a26bcf98a4d18623a19909a2c48b8e986ee"}, - {file = "pyrsistent-0.20.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:09848306523a3aba463c4b49493a760e7a6ca52e4826aa100ee99d8d39b7ad1e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a14798c3005ec892bbada26485c2eea3b54109cb2533713e355c806891f63c5e"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b14decb628fac50db5e02ee5a35a9c0772d20277824cfe845c8a8b717c15daa3"}, - {file = "pyrsistent-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e2c116cc804d9b09ce9814d17df5edf1df0c624aba3b43bc1ad90411487036d"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win32.whl", hash = "sha256:e78d0c7c1e99a4a45c99143900ea0546025e41bb59ebc10182e947cf1ece9174"}, - {file = "pyrsistent-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:4021a7f963d88ccd15b523787d18ed5e5269ce57aa4037146a2377ff607ae87d"}, - {file = "pyrsistent-0.20.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:79ed12ba79935adaac1664fd7e0e585a22caa539dfc9b7c7c6d5ebf91fb89054"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f920385a11207dc372a028b3f1e1038bb244b3ec38d448e6d8e43c6b3ba20e98"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5c2d012671b7391803263419e31b5c7c21e7c95c8760d7fc35602353dee714"}, - {file = "pyrsistent-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3992833fbd686ee783590639f4b8343a57f1f75de8633749d984dc0eb16c86"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win32.whl", hash = "sha256:881bbea27bbd32d37eb24dd320a5e745a2a5b092a17f6debc1349252fac85423"}, - {file = "pyrsistent-0.20.0-cp38-cp38-win_amd64.whl", hash = "sha256:6d270ec9dd33cdb13f4d62c95c1a5a50e6b7cdd86302b494217137f760495b9d"}, - {file = "pyrsistent-0.20.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ca52d1ceae015859d16aded12584c59eb3825f7b50c6cfd621d4231a6cc624ce"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b318ca24db0f0518630e8b6f3831e9cba78f099ed5c1d65ffe3e023003043ba0"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed2c3216a605dc9a6ea50c7e84c82906e3684c4e80d2908208f662a6cbf9022"}, - {file = "pyrsistent-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e14c95c16211d166f59c6611533d0dacce2e25de0f76e4c140fde250997b3ca"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win32.whl", hash = "sha256:f058a615031eea4ef94ead6456f5ec2026c19fb5bd6bfe86e9665c4158cf802f"}, - {file = "pyrsistent-0.20.0-cp39-cp39-win_amd64.whl", hash = "sha256:58b8f6366e152092194ae68fefe18b9f0b4f89227dfd86a07770c3d86097aebf"}, - {file = "pyrsistent-0.20.0-py3-none-any.whl", hash = "sha256:c55acc4733aad6560a7f5f818466631f07efc001fd023f34a6c203f8b6df0f0b"}, - {file = "pyrsistent-0.20.0.tar.gz", hash = "sha256:4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4"}, -] - -[[package]] -name = "pytest" -version = "6.2.5" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, -] - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] - -[[package]] -name = "pytest-mock" -version = "3.14.0" -description = "Thin-wrapper around the mock package for easier use with pytest" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, - {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, -] - -[package.dependencies] -pytest = ">=6.2.5" - -[package.extras] -dev = ["pre-commit", "pytest-asyncio", "tox"] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -description = "Extensions to the standard Python datetime module" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" -files = [ - {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, - {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, -] - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytzdata" -version = "2020.1" -description = "The Olson timezone database for Python." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pytzdata-2020.1-py2.py3-none-any.whl", hash = "sha256:e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f"}, - {file = "pytzdata-2020.1.tar.gz", hash = "sha256:3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, -] - -[[package]] -name = "recurly" -version = "4.10.0" -description = "Recurly v4" -optional = false -python-versions = "*" -files = [ - {file = "recurly-4.10.0-py3-none-any.whl", hash = "sha256:b8e3b1ec58f7b1e1b91286f2db864f6ba4053837ad920d0c2868508020442aaf"}, - {file = "recurly-4.10.0.tar.gz", hash = "sha256:a8dddab76bb38f76a715644448f45499227bfd00529ef33f7945b3bcc5a8f3a2"}, -] - -[[package]] -name = "requests" -version = "2.32.3" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.2.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.2.1-py3-none-any.whl", hash = "sha256:1285151cddf5331067baa82598afe2d47c7495a1334bfe7a7d329b43e9fd3603"}, - {file = "requests_cache-1.2.1.tar.gz", hash = "sha256:68abc986fdc5b8d0911318fbb5f7c80eebcd4d01bfacc6685ecf8876052511d1"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=1.4" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -bson = ["bson (>=0.5)"] -docs = ["furo (>=2023.3,<2024.0)", "linkify-it-py (>=2.0,<3.0)", "myst-parser (>=1.0,<2.0)", "sphinx (>=5.0.2,<6.0.0)", "sphinx-autodoc-typehints (>=1.19)", "sphinx-automodapi (>=0.14)", "sphinx-copybutton (>=0.5)", "sphinx-design (>=0.2)", "sphinx-notfound-page (>=0.8)", "sphinxcontrib-apidoc (>=0.3)", "sphinxext-opengraph (>=0.9)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -json = ["ujson (>=5.4)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "requests-mock" -version = "1.12.1" -description = "Mock out responses from the requests package" -optional = false -python-versions = ">=3.5" -files = [ - {file = "requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401"}, - {file = "requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563"}, -] - -[package.dependencies] -requests = ">=2.22,<3" - -[package.extras] -fixture = ["fixtures"] - -[[package]] -name = "setuptools" -version = "75.3.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, - {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] - -[[package]] -name = "typing-extensions" -version = "4.12.2" -description = "Backported and Experimental Type Hints for Python 3.8+" -optional = false -python-versions = ">=3.8" -files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, -] - -[[package]] -name = "url-normalize" -version = "1.4.3" -description = "URL normalization for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "url-normalize-1.4.3.tar.gz", hash = "sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2"}, - {file = "url_normalize-1.4.3-py2.py3-none-any.whl", hash = "sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed"}, -] - -[package.dependencies] -six = "*" - -[[package]] -name = "urllib3" -version = "2.2.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.8" -files = [ - {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, - {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "wcmatch" -version = "8.4" -description = "Wildcard/glob file name matcher." -optional = false -python-versions = ">=3.7" -files = [ - {file = "wcmatch-8.4-py3-none-any.whl", hash = "sha256:dc7351e5a7f8bbf4c6828d51ad20c1770113f5f3fd3dfe2a03cfde2a63f03f98"}, - {file = "wcmatch-8.4.tar.gz", hash = "sha256:ba4fc5558f8946bf1ffc7034b05b814d825d694112499c86035e0e4d398b6a67"}, -] - -[package.dependencies] -bracex = ">=2.1.1" - -[[package]] -name = "wrapt" -version = "1.16.0" -description = "Module for decorators, wrappers and monkey patching." -optional = false -python-versions = ">=3.6" -files = [ - {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, - {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, - {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, - {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, - {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, - {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, - {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, - {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, - {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, - {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, - {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, - {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, - {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, - {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, - {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, - {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, - {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, - {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, - {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, - {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, - {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, - {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, - {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, - {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, - {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, - {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, - {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, - {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, - {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, - {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, - {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, - {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, - {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, - {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, - {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, - {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, - {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, -] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<3.12" -content-hash = "4843eceb07967beaffe917740b8353dfbd8fcfdfa662940ae76db251b0ff6a4f" diff --git a/airbyte-integrations/connectors/source-recurly/pyproject.toml b/airbyte-integrations/connectors/source-recurly/pyproject.toml deleted file mode 100644 index 48543e8ea9b0..000000000000 --- a/airbyte-integrations/connectors/source-recurly/pyproject.toml +++ /dev/null @@ -1,29 +0,0 @@ -[build-system] -requires = [ "poetry-core>=1.0.0",] -build-backend = "poetry.core.masonry.api" - -[tool.poetry] -version = "1.1.13" -name = "source-recurly" -description = "Source implementation for Recurly." -authors = [ "Airbyte ",] -license = "MIT" -readme = "README.md" -documentation = "https://docs.airbyte.com/integrations/sources/recurly" -homepage = "https://airbyte.com" -repository = "https://github.com/airbytehq/airbyte" -[[tool.poetry.packages]] -include = "source_recurly" - -[tool.poetry.dependencies] -python = "^3.9,<3.12" -airbyte-cdk = "0.80.0" -recurly = "==4.10.0" - -[tool.poetry.scripts] -source-recurly = "source_recurly.run:run" - -[tool.poetry.group.dev.dependencies] -requests-mock = "^1.9.3" -pytest-mock = "^3.6.1" -pytest = "^6.1" diff --git a/airbyte-integrations/connectors/source-recurly/source_recurly/__init__.py b/airbyte-integrations/connectors/source-recurly/source_recurly/__init__.py deleted file mode 100644 index 3f9c7687435e..000000000000 --- a/airbyte-integrations/connectors/source-recurly/source_recurly/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from .source import SourceRecurly - -__all__ = ["SourceRecurly"] diff --git a/airbyte-integrations/connectors/source-recurly/source_recurly/manifest.yaml b/airbyte-integrations/connectors/source-recurly/source_recurly/manifest.yaml deleted file mode 100644 index f8afe168a43b..000000000000 --- a/airbyte-integrations/connectors/source-recurly/source_recurly/manifest.yaml +++ /dev/null @@ -1,5568 +0,0 @@ -version: 0.80.0 - -type: DeclarativeSource - -check: - type: CheckStream - stream_names: - - accounts - -definitions: - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - data - incremental_sync: - type: DatetimeBasedCursor - cursor_field: updated_at - cursor_datetime_formats: - - "%Y-%m-%dT%H:%M:%SZ" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - start_datetime: - type: MinMaxDatetime - datetime: "{{ config['begin_time'] if config['begin_time'] else (now_utc() - duration('P5Y')).strftime('%Y-%m-%dT%H:%M:%SZ') }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - start_time_option: - type: RequestOption - inject_into: request_parameter - field_name: begin_time - end_time_option: - type: RequestOption - inject_into: request_parameter - field_name: end_time - end_datetime: - type: MinMaxDatetime - datetime: "{{ config['end_time'] if config['end_time'] else now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" - datetime_format: "%Y-%m-%dT%H:%M:%SZ" - streams: - accounts: - type: DeclarativeStream - name: accounts - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: accounts - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/accounts" - incremental_sync: - $ref: "#/definitions/incremental_sync" - account_coupon_redemptions: - type: DeclarativeStream - name: account_coupon_redemptions - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /accounts/{{ stream_partition['account_id'] }}/coupon_redemptions - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - partition_router: - - type: SubstreamPartitionRouter - parent_stream_configs: - - type: ParentStreamConfig - parent_key: id - partition_field: account_id - stream: - $ref: "#/definitions/streams/accounts" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/account_coupon_redemptions" - incremental_sync: - $ref: "#/definitions/incremental_sync" - account_notes: - type: DeclarativeStream - name: account_notes - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /accounts/{{ stream_partition['account_id'] }}/notes - http_method: GET - request_parameters: - order: asc - sort: created_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - partition_router: - - type: SubstreamPartitionRouter - parent_stream_configs: - - type: ParentStreamConfig - parent_key: id - partition_field: account_id - stream: - $ref: "#/definitions/streams/accounts" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/account_notes" - incremental_sync: - $ref: "#/definitions/incremental_sync" - cursor_field: created_at - add_ons: - type: DeclarativeStream - name: add_ons - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /add_ons - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/add_ons" - incremental_sync: - $ref: "#/definitions/incremental_sync" - billing_infos: - type: DeclarativeStream - name: billing_infos - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /accounts/{{ stream_partition['account_id'] }}/billing_infos - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - partition_router: - - type: SubstreamPartitionRouter - parent_stream_configs: - - type: ParentStreamConfig - parent_key: id - partition_field: account_id - stream: - $ref: "#/definitions/streams/accounts" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/billing_infos" - incremental_sync: - $ref: "#/definitions/incremental_sync" - coupons: - type: DeclarativeStream - name: coupons - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: coupons - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/coupons" - incremental_sync: - $ref: "#/definitions/incremental_sync" - credit_payments: - type: DeclarativeStream - name: credit_payments - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: credit_payments - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/credit_payments" - incremental_sync: - $ref: "#/definitions/incremental_sync" - export_dates: - type: DeclarativeStream - name: export_dates - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: export_dates - http_method: GET - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - type: RecordSelector - extractor: - type: CustomRecordExtractor - class_name: source_recurly.components.ExportDatesExtractor - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/export_dates" - invoices: - type: DeclarativeStream - name: invoices - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: invoices - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/invoices" - incremental_sync: - $ref: "#/definitions/incremental_sync" - line_items: - type: DeclarativeStream - name: line_items - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: line_items - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/line_items" - incremental_sync: - $ref: "#/definitions/incremental_sync" - measured_units: - type: DeclarativeStream - name: measured_units - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: measured_units - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/measured_units" - incremental_sync: - $ref: "#/definitions/incremental_sync" - plans: - type: DeclarativeStream - name: plans - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: plans - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/plans" - incremental_sync: - $ref: "#/definitions/incremental_sync" - shipping_addresses: - type: DeclarativeStream - name: shipping_addresses - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /accounts/{{ stream_partition['account_id'] }}/shipping_addresses - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - partition_router: - - type: SubstreamPartitionRouter - parent_stream_configs: - - type: ParentStreamConfig - parent_key: id - partition_field: account_id - stream: - $ref: "#/definitions/streams/accounts" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/shipping_addresses" - incremental_sync: - $ref: "#/definitions/incremental_sync" - shipping_methods: - type: DeclarativeStream - name: shipping_methods - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: shipping_methods - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/shipping_methods" - incremental_sync: - $ref: "#/definitions/incremental_sync" - subscriptions: - type: DeclarativeStream - name: subscriptions - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: subscriptions - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/subscriptions" - incremental_sync: - $ref: "#/definitions/incremental_sync" - transactions: - type: DeclarativeStream - name: transactions - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: transactions - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/transactions" - incremental_sync: - $ref: "#/definitions/incremental_sync" - unique_coupons: - type: DeclarativeStream - name: unique_coupons - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /coupons/{{ stream_partition['coupon_id'] }}/unique_coupon_codes - http_method: GET - request_parameters: - order: asc - sort: updated_at - request_headers: - User-Agent: USER_AGENT - Accept: application/vnd.recurly.v2021-02-25 - Content-Type: application/json - record_selector: - $ref: "#/definitions/record_selector" - paginator: - type: DefaultPaginator - page_token_option: - type: RequestPath - page_size_option: - type: RequestOption - inject_into: request_parameter - field_name: limit - pagination_strategy: - type: CursorPagination - page_size: 200 - cursor_value: "{{ response.next }}" - stop_condition: "{{ response.has_more is false }}" - partition_router: - - type: SubstreamPartitionRouter - parent_stream_configs: - - type: ParentStreamConfig - parent_key: id - partition_field: coupon_id - stream: - $ref: "#/definitions/streams/coupons" - retriever: - $ref: "#/definitions/streams/coupons/retriever" - record_selector: - $ref: "#/definitions/record_selector" - record_filter: - condition: "{{ record['coupon_type'] == 'bulk' }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/unique_coupons" - incremental_sync: - $ref: "#/definitions/incremental_sync" - base_requester: - type: HttpRequester - url_base: https://v3.recurly.com - authenticator: - type: BasicHttpAuthenticator - username: "{{ config['api_key'] }}" - password: "" - -streams: - - $ref: "#/definitions/streams/accounts" - - $ref: "#/definitions/streams/account_coupon_redemptions" - - $ref: "#/definitions/streams/account_notes" - - $ref: "#/definitions/streams/add_ons" - - $ref: "#/definitions/streams/billing_infos" - - $ref: "#/definitions/streams/coupons" - - $ref: "#/definitions/streams/credit_payments" - - $ref: "#/definitions/streams/export_dates" - - $ref: "#/definitions/streams/invoices" - - $ref: "#/definitions/streams/line_items" - - $ref: "#/definitions/streams/measured_units" - - $ref: "#/definitions/streams/plans" - - $ref: "#/definitions/streams/shipping_addresses" - - $ref: "#/definitions/streams/shipping_methods" - - $ref: "#/definitions/streams/subscriptions" - - $ref: "#/definitions/streams/transactions" - - $ref: "#/definitions/streams/unique_coupons" - -spec: - type: Spec - connection_specification: - type: object - $schema: http://json-schema.org/draft-07/schema# - additionalProperties: true - required: - - api_key - properties: - api_key: - type: string - title: API Key - airbyte_secret: true - description: >- - Recurly API Key. See the docs - for more information on how to generate this key. - order: 0 - begin_time: - type: string - description: >- - ISO8601 timestamp from which the replication from Recurly API will - start from. - examples: - - "2021-12-01T00:00:00" - pattern: ^$|^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$ - order: 1 - end_time: - type: string - description: >- - ISO8601 timestamp to which the replication from Recurly API will stop. - Records after that date won't be imported. - examples: - - "2021-12-01T00:00:00" - pattern: ^$|^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$ - order: 2 - -schemas: - accounts: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - id: - description: Unique identifier of the account - type: - - "null" - - string - maxLength: 13 - object: - description: Type of object - type: - - "null" - - string - hosted_login_token: - description: Token for hosted login functionality - type: - - "null" - - string - code: - description: Unique code assigned to the account - type: - - "null" - - string - maxLength: 256 - parent_account_id: - description: ID of the parent account - type: - - "null" - - string - maxLength: 13 - bill_to: - description: The billing details - type: - - "null" - - string - maxLength: 6 - state: - description: State/province of the account address - type: - - "null" - - string - maxLength: 256 - username: - description: Username of the account holder - type: - - "null" - - string - maxLength: 256 - email: - description: Email address of the account holder - type: - - "null" - - string - maxLength: 256 - cc_emails: - description: Email addresses for carbon copy (CC) - type: - - "null" - - string - maxLength: 256 - preferred_locale: - description: Preferred language/locale of the account holder - type: - - "null" - - string - maxLength: 12 - first_name: - description: First name of the account holder - type: - - "null" - - string - maxLength: 256 - last_name: - description: Last name of the account holder - type: - - "null" - - string - maxLength: 256 - company: - description: Company associated with the account - type: - - "null" - - string - maxLength: 50 - vat_number: - description: VAT (Value Added Tax) number of the account - type: - - "null" - - string - maxLength: 20 - tax_exempt: - description: Flag indicating if the account is tax exempt - type: - - "null" - - boolean - exemption_certificate: - description: Exemption certificate details - type: - - "null" - - string - maxLength: 30 - address: - description: The address details of the account - type: object - properties: - phone: - description: Phone number associated with the address - type: string - title: Phone number - maxLength: 256 - street1: - description: First line of the street address - type: string - title: Street 1 - maxLength: 256 - street2: - description: Second line of the street address - type: string - title: Street 2 - maxLength: 256 - city: - description: City of the address - type: string - title: City - maxLength: 256 - region: - type: string - title: State/Province - description: State or province. - maxLength: 256 - postal_code: - type: string - title: Zip/Postal code - description: Zip or postal code. - maxLength: 256 - country: - type: string - title: Country - description: "Country, 2-letter ISO 3166-1 alpha-2 code." - maxLength: 2 - geo_code: - description: Geographical coordinates of the address - type: - - "null" - - string - custom_fields: - description: Custom fields associated with the account - type: - - "null" - - array - items: - type: - - "null" - - object - additionalProperties: true - has_live_subscription: - description: Flag indicating if the account has a live subscription - type: - - "null" - - boolean - has_active_subscription: - description: Flag indicating if the account has an active subscription - type: - - "null" - - boolean - has_future_subscription: - description: Flag indicating if the account has a future subscription - type: - - "null" - - boolean - has_canceled_subscription: - description: Flag indicating if the account has a canceled subscription - type: - - "null" - - boolean - has_paused_subscription: - description: Flag indicating if the account has a paused subscription - type: - - "null" - - boolean - has_past_due_invoice: - description: Flag indicating if the account has a past due invoice - type: - - "null" - - boolean - dunning_campaign_id: - description: Campaign ID for dunning management - type: - - "null" - - string - maxLength: 256 - created_at: - description: Date and time when the account was created - type: - - "null" - - string - format: date-time - updated_at: - description: Date and time when the account was last updated - type: - - "null" - - string - format: date-time - deleted_at: - description: Date and time when the account was deleted - type: - - "null" - - string - format: date-time - billing_info: - description: Billing information - $ref: "#/schemas/billing_infos_common" - external_accounts: - description: External accounts associated with the account - type: - - "null" - - array - items: - $ref: "#/schemas/external_accounts_common" - invoice_template_id: - description: ID of the invoice template used - type: - - "null" - - string - override_business_entity_id: - description: ID for overriding business entity - type: - - "null" - - string - preferred_time_zone: - description: Preferred time zone of the account holder - type: - - "null" - - string - shipping_addresses: - description: Addresses for shipping - type: - - "null" - - array - items: - $ref: "#/schemas/shipping_addresses_common" - - account_coupon_redemptions: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - id: - description: The unique identifier for the redemption - type: - - "null" - - string - maxLength: 13 - object: - description: The type of object this represents - type: - - "null" - - string - account: - description: The account associated with the coupon redemption - $ref: "#/schemas/account_details_common" - subscription_id: - description: The subscription associated with the redemption - type: - - "null" - - string - maxLength: 13 - coupon: - description: The coupon being redeemed - $ref: "#/schemas/coupons_common" - state: - description: The current state of the redemption - type: - - "null" - - string - maxLength: 256 - currency: - description: The currency in which the redemption was made - type: - - "null" - - string - maxLength: 3 - discounted: - description: The amount discounted by the coupon - type: - - "null" - - number - created_at: - description: The date and time when the redemption was created - type: - - "null" - - string - format: date-time - updated_at: - description: The date and time when the redemption was last updated - type: - - "null" - - string - format: date-time - removed_at: - description: The date and time when the redemption was removed (if applicable) - type: - - "null" - - string - format: date-time - - account_notes: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - id: - description: The unique identifier for this note. - type: string - maxLength: 13 - readOnly: true - object: - description: "Represents the object type, in this case, 'note'." - type: - - "null" - - string - account_id: - description: The unique identifier of the account associated with this note. - type: string - maxLength: 13 - user: - description: The user who created the note. - $ref: "#/schemas/users_common" - message: - description: The content or message of the note. - type: - - "null" - - string - maxLength: 2048 - created_at: - description: The date and time when the note was created. - type: string - format: date-time - readOnly: true - - add_ons: - $schema: "http://json-schema.org/schema#" - additionalProperties: true - type: object - properties: - id: - description: The unique identifier for the add-on. - type: string - title: Add-on ID - maxLength: 13 - readOnly: true - plan_id: - description: The ID of the plan to which the add-on is associated. - type: string - title: Plan ID - maxLength: 13 - readOnly: true - code: - type: string - title: Add-on code - description: The unique identifier for the add-on within its plan. - maxLength: 50 - state: - title: State - description: Add-ons can be either active or inactive. - readOnly: true - type: string - maxLength: 256 - name: - type: string - title: Name - description: Describes your add-on and will appear in subscribers' invoices. - maxLength: 255 - add_on_type: - type: - - "null" - - string - title: Add-on Type - description: "Whether the add-on type is fixed, or usage-based." - maxLength: 256 - usage_type: - type: string - title: Usage Type - description: "Type of usage, returns usage type if `add_on_type` is `usage`." - maxLength: 256 - usage_percentage: - type: - - "null" - - number - format: float - title: Usage Percentage - description: >- - The percentage taken of the monetary amount of usage tracked. This can be - up to 4 decimal places. A value between 0.0 and 100.0. - measured_unit_id: - type: - - "null" - - string - title: Measured Unit ID - description: >- - System-generated unique identifier for an measured unit associated with - the add-on. - maxLength: 13 - accounting_code: - type: - - "null" - - string - title: Accounting code - description: >- - Accounting code for invoice line items for this add-on. If no value is - provided, it defaults to add-on's code. - maxLength: 256 - revenue_schedule_type: - title: Revenue schedule type - description: >- - When this add-on is invoiced, the line item will use this revenue - schedule. If `item_code`/`item_id` is part of the request then - `revenue_schedule_type` must be absent in the request as the value will be - set from the item. - type: string - maxLength: 256 - avalara_transaction_type: - type: - - string - - integer - title: Avalara Transaction Type - description: >- - Used by Avalara for Communications taxes. The transaction type in - combination with the service type describe how the add-on is taxed. Refer - to [the - documentation](https://help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) - for more available t/s types. - minimum: 0 - avalara_service_type: - type: - - string - - integer - title: Avalara Service Type - description: >- - Used by Avalara for Communications taxes. The transaction type in - combination with the service type describe how the add-on is taxed. Refer - to [the - documentation](https://help.avalara.com/AvaTax_for_Communications/Tax_Calculation/AvaTax_for_Communications_Tax_Engine/Mapping_Resources/TM_00115_AFC_Modules_Corresponding_Transaction_Types) - for more available t/s types. - minimum: 0 - tax_code: - type: - - "null" - - string - title: Tax code - description: >- - Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax code - values are specific to each tax system. If you are using Recurly’s EU VAT - feature you can use `unknown`, `physical`, or `digital`. - maxLength: 50 - display_quantity: - type: - - "null" - - boolean - title: Display quantity? - description: >- - Determines if the quantity field is displayed on the hosted pages for the - add-on. - default_quantity: - type: - - "null" - - integer - title: Default quantity - description: Default quantity for the hosted pages. - optional: - type: - - "null" - - boolean - title: Optional - description: >- - Whether the add-on is optional for the customer to include in their - purchase on the hosted payment page. If false, the add-on will be included - when a subscription is created through the Recurly UI. However, the add-on - will not be included when a subscription is created through the API. - currencies: - type: array - description: This is only present when `type=fixed`. - items: - type: - - "null" - - object - properties: - currency: - type: string - title: Currency - description: 3-letter ISO 4217 currency code. - maxLength: 3 - unit_amount: - type: number - format: float - title: Discount Amount - description: Value of the fixed discount that this coupon applies. - tier_type: - type: - - "null" - - string - title: Tier type - description: > - The pricing model for the add-on. For more information, - - [click - here](https://docs.recurly.com/docs/billing-models#section-quantity-based). - See our - - [Guide](https://developers.recurly.com/guides/item-addon-guide.html) for - an overview of how - - to configure quantity-based pricing models. - maxLength: 256 - created_at: - description: The date and time when the add-on was created. - type: string - format: date-time - title: Created at - readOnly: true - updated_at: - description: The date and time when the add-on was last updated. - type: string - format: date-time - title: Last updated at - readOnly: true - deleted_at: - description: "The date and time when the add-on was deleted, if applicable." - type: string - format: date-time - title: Deleted at - readOnly: true - - billing_infos: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - id: - type: string - maxLength: 13 - readOnly: true - object: - type: - - "null" - - string - account_id: - type: string - maxLength: 13 - readOnly: true - first_name: - type: - - "null" - - string - maxLength: 50 - last_name: - type: - - "null" - - string - maxLength: 50 - company: - type: - - "null" - - string - maxLength: 100 - address: - type: object - properties: - phone: - type: - - "null" - - string - title: Phone number - maxLength: 256 - street1: - type: - - "null" - - string - title: Street 1 - maxLength: 256 - street2: - type: - - "null" - - string - title: Street 2 - maxLength: 256 - city: - type: - - "null" - - string - title: City - maxLength: 256 - region: - type: - - "null" - - string - title: State/Province - description: State or province. - maxLength: 256 - postal_code: - type: - - "null" - - string - title: Zip/Postal code - description: Zip or postal code. - maxLength: 256 - country: - type: - - "null" - - string - title: Country - description: "Country, 2-letter ISO 3166-1 alpha-2 code." - maxLength: 2 - vat_number: - type: - - "null" - - string - description: >- - Customer's VAT number (to avoid having the VAT applied). This is only used - for automatically collected invoices. - maxLength: 20 - valid: - type: boolean - readOnly: true - payment_method: - type: object - properties: - card_type: - description: "Visa, MasterCard, American Express, Discover, JCB, etc." - type: - - "null" - - string - maxLength: 256 - object: - type: - - "null" - - string - first_six: - type: - - "null" - - string - description: Credit card number's first six digits. - maxLength: 6 - last_four: - type: - - "null" - - string - description: >- - Credit card number's last four digits. Will refer to bank account if - payment method is ACH. - maxLength: 4 - last_two: - type: - - "null" - - string - description: The IBAN bank account's last two digits. - maxLength: 2 - exp_month: - type: - - "null" - - integer - description: Expiration month. - maxLength: 2 - exp_year: - type: - - "null" - - integer - description: Expiration year. - maxLength: 4 - gateway_token: - type: - - "null" - - string - description: >- - A token used in place of a credit card in order to perform - transactions. - maxLength: 50 - cc_bin_country: - type: - - "null" - - string - description: >- - The 2-letter ISO 3166-1 alpha-2 country code associated with the - credit card BIN, if known by Recurly. Available on the BillingInfo - object only. Available when the BIN country lookup feature is enabled. - maxLength: 256 - gateway_code: - type: - - "null" - - string - description: An identifier for a specific payment gateway. - maxLength: 13 - billing_agreement_id: - type: - - "null" - - string - description: >- - Billing Agreement identifier. Only present for Amazon or Paypal - payment methods. - maxLength: 256 - name_on_account: - type: - - "null" - - string - description: The name associated with the bank account. - maxLength: 256 - account_type: - description: The bank account type. Only present for ACH payment methods. - type: - - "null" - - string - maxLength: 256 - routing_number: - type: - - "null" - - string - description: >- - The bank account's routing number. Only present for ACH payment - methods. - maxLength: 256 - routing_number_bank: - type: - - "null" - - string - description: The bank name of this routing number. - maxLength: 256 - fraud: - type: - - "null" - - object - title: Fraud information - description: Most recent fraud result. - readOnly: true - properties: - score: - type: - - "null" - - integer - title: Kount score - decision: - title: Kount decision - maxLength: 10 - type: - - "null" - - string - risk_rules_triggered: - type: object - title: Kount rules - primary_payment_method: - type: boolean - description: >- - The `primary_payment_method` field is used to indicate the primary billing - info on the account. The first billing info created on an account will - always become primary. This payment method will be used - backup_payment_method: - type: boolean - description: >- - The `backup_payment_method` field is used to indicate a billing info as a - backup on the account that will be tried if the initial billing info used - for an invoice is declined. - created_at: - type: string - format: date-time - description: When the billing information was created. - readOnly: true - updated_at: - type: string - format: date-time - description: When the billing information was last changed. - readOnly: true - updated_by: - type: - - "null" - - object - properties: - ip: - type: - - "null" - - string - country: - type: - - "null" - - string - - coupons: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - id: - type: - - "null" - - string - maxLength: 13 - object: - type: - - "null" - - string - code: - type: - - "null" - - string - maxLength: 256 - name: - type: - - "null" - - string - maxLength: 256 - state: - type: - - "null" - - string - maxLength: 256 - max_redemptions: - type: - - "null" - - number - max_redemptions_per_account: - type: - - "null" - - number - unique_coupon_codes_count: - type: - - "null" - - number - unique_code_template: - type: - - "null" - - string - maxLength: 256 - unique_coupon_code: - $ref: "#/schemas/unique_coupons_common" - duration: - type: - - "null" - - string - maxLength: 256 - temporal_amount: - type: - - "null" - - number - temporal_unit: - type: - - "null" - - string - maxLength: 256 - free_trial_unit: - type: - - "null" - - string - maxLength: 256 - free_trial_amount: - type: - - "null" - - number - applies_to_all_plans: - type: - - "null" - - boolean - applies_to_all_items: - type: - - "null" - - boolean - applies_to_non_plan_charges: - type: - - "null" - - boolean - plans: - type: - - "null" - - array - title: Plans - description: >- - A list of plans for which this coupon applies. This will be `null` if - `applies_to_all_plans=true`. - items: - type: object - title: Plan mini details - description: Just the important parts. - properties: - id: - type: string - title: Plan ID - maxLength: 13 - readOnly: true - code: - type: string - title: Plan code - description: >- - Unique code to identify the plan. This is used in Hosted Payment - Page URLs and in the invoice exports. - maxLength: 13 - items: - type: - - "null" - - array - title: Items - description: | - A list of items for which this coupon applies. This will be - `null` if `applies_to_all_items=true`. - items: - type: - - "null" - - object - title: Item mini details - description: Just the important parts. - properties: - id: - type: string - title: Item ID - maxLength: 13 - readOnly: true - redemption_resource: - type: - - "null" - - string - maxLength: 256 - discount: - type: - - "null" - - object - description: | - Details of the discount a coupon applies. Will contain a `type` - property and one of the following properties: `percent`, `fixed`, `trial`. - properties: - type: - type: string - maxLength: 256 - percent: - description: This is only present when `type=percent`. - type: integer - currencies: - type: array - description: This is only present when `type=fixed`. - items: - type: - - "null" - - object - properties: - currency: - type: string - title: Currency - description: 3-letter ISO 4217 currency code. - maxLength: 3 - amount: - type: number - format: float - title: Discount Amount - description: Value of the fixed discount that this coupon applies. - trial: - type: object - description: This is only present when `type=free_trial`. - properties: - unit: - title: Trial unit - description: Temporal unit of the free trial - type: string - maxLength: 256 - length: - type: integer - title: Trial length - description: >- - Trial length measured in the units specified by the sibling `unit` - property - coupon_type: - type: - - "null" - - string - maxLength: 256 - hosted_page_description: - type: - - "null" - - string - maxLength: 1024 - invoice_description: - type: - - "null" - - string - maxLength: 1024 - redeem_by: - type: - - "null" - - string - maxLength: 256 - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - expired_at: - type: - - "null" - - string - format: date-time - - credit_payments: - $schema: "http://json-schema.org/schema#" - additionalProperties: true - type: object - properties: - id: - description: The unique identifier of the credit payment. - type: string - title: Credit Payment ID - maxLength: 13 - uuid: - type: string - title: Recurly UUID - description: >- - The UUID is useful for matching data with the CSV exports and building - URLs into Recurly's UI. - maxLength: 32 - action: - title: Action - description: The action for which the credit was created. - type: string - maxLength: 256 - account: - description: Details about the account associated with the credit payment. - type: object - title: Account mini details - properties: - id: - description: The ID of the account associated with the credit payment. - type: string - maxLength: 13 - readOnly: true - code: - type: string - description: The unique identifier of the account. - maxLength: 50 - applied_to_invoice: - description: Details about the invoice to which the credit payment is applied. - type: - - "null" - - object - title: Invoice mini details - properties: - id: - description: The ID of the invoice to which the credit payment is applied. - type: string - title: Invoice ID - maxLength: 13 - number: - description: The number of the invoice to which the credit payment is applied. - type: string - title: Invoice number - maxLength: 256 - original_invoice: - description: Details about the original invoice for which the credit payment is made. - type: - - "null" - - object - title: Invoice mini details - properties: - id: - description: The ID of the original invoice for which the credit payment was made. - type: string - title: Invoice ID - maxLength: 13 - number: - description: >- - The number of the original invoice for which the credit payment was - made. - type: string - title: Invoice number - maxLength: 256 - currency: - type: string - title: Currency - description: 3-letter ISO 4217 currency code. - maxLength: 3 - amount: - type: number - format: float - title: Amount - description: Total credit payment amount applied to the charge invoice. - original_credit_payment_id: - type: - - "null" - - string - title: Original Credit Payment ID - description: >- - For credit payments with action `refund`, this is the credit payment that - was refunded. - maxLength: 13 - refund_transaction: - description: Details about the refund transaction associated with the credit payment. - type: - - "null" - - object - properties: - id: - description: The ID of the refund transaction associated with the credit payment. - type: string - title: Transaction ID - maxLength: 13 - uuid: - type: string - title: Recurly UUID - description: >- - The UUID is useful for matching data with the CSV exports and building - URLs into Recurly's UI. - maxLength: 32 - created_at: - description: The date and time when the credit payment was created. - type: string - title: Created at - format: date-time - readOnly: true - updated_at: - description: The date and time when the credit payment was last updated. - type: string - title: Last updated at - format: date-time - readOnly: true - voided_at: - description: The date and time when the credit payment was voided. - type: - - "null" - - string - title: Voided at - format: date-time - readOnly: true - - export_dates: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - dates: - description: List of export dates - type: - - "null" - - array - items: - description: Date of the export - type: - - "null" - - string - maxLength: 256 - - invoices: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - id: - description: The unique ID of the invoice. - type: - - "null" - - string - title: Invoice ID - readOnly: true - maxLength: 13 - uuid: - description: The universally unique identifier (UUID) of the invoice. - type: - - "null" - - string - object: - description: "The type of object, in this case, an invoice." - type: - - "null" - - string - type: - title: Invoice type - description: "Invoices are either charge, credit, or legacy invoices." - type: - - "null" - - string - maxLength: 256 - origin: - type: - - "null" - - string - title: Origin - description: The event that created the invoice. - maxLength: 256 - state: - description: The current state of the invoice. - title: Invoice state - type: - - "null" - - string - maxLength: 256 - account: - description: The account associated with the invoice. - $ref: "#/schemas/account_details_common" - billing_info_id: - type: - - "null" - - string - title: Billing info ID - description: >- - The `billing_info_id` is the value that represents a specific billing info - for an end customer. When `billing_info_id` is used to assign billing info - to the subscription, all future billing events for the subscription will - bill to the specified billing info. `billing_info_id` can ONLY be used for - sites utilizing the Wallet feature. - maxLength: 256 - subscription_ids: - type: - - "null" - - array - title: Subscription IDs - description: >- - If the invoice is charging or refunding for one or more subscriptions, - these are their IDs. - items: - type: - - "null" - - string - title: Subscription ID - maxLength: 13 - previous_invoice_id: - type: - - "null" - - string - title: Previous invoice ID - description: >- - On refund invoices, this value will exist and show the invoice ID of the - purchase invoice the refund was created from. - maxLength: 13 - number: - type: - - "null" - - string - title: Invoice number - description: >- - If VAT taxation and the Country Invoice Sequencing feature are enabled, - invoices will have country-specific invoice numbers for invoices billed to - EU countries (ex: FR1001). Non-EU invoices will continue to use the - site-level invoice number sequence. - maxLength: 256 - collection_method: - type: - - "null" - - string - title: Collection method - description: >- - An automatic invoice means a corresponding transaction is run using the - account's billing information at the same time the invoice is created. - Manual invoices are created without a corresponding transaction. The - merchant must enter a manual payment transaction or have the customer pay - the invoice with an automatic method, like credit card, PayPal, Amazon, or - ACH bank payment. - maxLength: 256 - po_number: - type: - - "null" - - string - title: Purchase order number - description: >- - For manual invoicing, this identifies the PO number associated with the - subscription. - maxLength: 50 - net_terms: - type: - - "null" - - integer - title: Net terms - description: >- - Integer representing the number of days after an invoice's creation that - the invoice will become past due. If an invoice's net terms are set to - '0', it is due 'On Receipt' and will become past due 24 hours after it’s - created. If an invoice is due net 30, it will become past due at 31 days - exactly. - minimum: 0 - default: 0 - address: - description: The address details related to the invoice recipient. - type: - - "null" - - object - properties: - name_on_account: - description: The name on the account. - type: - - "null" - - string - title: Name on account - maxLength: 256 - company: - description: The company name in the address. - type: - - "null" - - string - title: Company - maxLength: 256 - phone: - description: The phone number associated with the address. - type: - - "null" - - string - title: Phone number - maxLength: 256 - street1: - description: The first line of the street address. - type: - - "null" - - string - title: Street 1 - maxLength: 256 - street2: - description: The second line of the street address. - type: - - "null" - - string - title: Street 2 - maxLength: 256 - city: - description: The city in the address. - type: - - "null" - - string - title: City - maxLength: 256 - region: - type: - - "null" - - string - title: State/Province - description: State or province. - maxLength: 256 - postal_code: - type: - - "null" - - string - title: Zip/Postal code - description: Zip or postal code. - maxLength: 256 - country: - type: - - "null" - - string - title: Country - description: "Country, 2-letter ISO 3166-1 alpha-2 code." - maxLength: 2 - first_name: - description: The first name of the recipient. - type: - - "null" - - string - maxLength: 256 - last_name: - description: The last name of the recipient. - type: - - "null" - - string - maxLength: 256 - shipping_address: - description: The shipping address details for the invoice delivery. - type: - - "null" - - object - properties: - id: - description: The ID of the shipping address. - type: - - "null" - - string - title: Shipping Address ID - maxLength: 13 - readOnly: true - currency: - type: - - "null" - - string - title: Currency - description: 3-letter ISO 4217 currency code. - maxLength: 3 - discount: - type: - - "null" - - number - format: float - title: Discount - description: Total discounts applied to this invoice. - subtotal: - type: - - "null" - - number - format: float - title: Subtotal - description: "The summation of charges and credits, before discounts and taxes." - tax: - type: - - "null" - - number - format: float - title: Tax - description: The total tax on this invoice. - total: - type: - - "null" - - number - format: float - title: Total - description: >- - The final total on this invoice. The summation of invoice charges, - discounts, credits, and tax. - refundable_amount: - type: - - "null" - - number - format: float - title: Refundable amount - description: >- - The refundable amount on a charge invoice. It will be null for all other - invoices. - paid: - type: - - "null" - - number - format: float - title: Paid - description: The total amount of successful payments transaction on this invoice. - balance: - type: - - "null" - - number - format: float - title: Balance - description: The outstanding balance remaining on this invoice. - tax_info: - description: Tax information related to the invoice. - type: - - "null" - - object - title: Tax info - properties: - type: - type: - - "null" - - string - title: Type - description: >- - Provides the tax type as "vat" for EU VAT, "usst" for U.S. Sales Tax, - or the 2 letter country code for country level tax types like Canada, - Australia, New Zealand, Israel, and all non-EU European countries. - maxLength: 256 - region: - type: - - "null" - - string - title: Region - description: >- - Provides the tax region applied on an invoice. For U.S. Sales Tax, - this will be the 2 letter state code. For EU VAT this will be the 2 - letter country code. For all country level tax types, this will - display the regional tax, like VAT, GST, or PST. - rate: - description: The tax rate applied to the invoice. - type: - - "null" - - number - format: float - title: Rate - tax_details: - type: array - description: >- - Provides additional tax details for Canadian Sales Tax when there is - tax applied at both the country and province levels. This will only be - populated for the Invoice response when fetching a single invoice and - not for the InvoiceList or LineItem. - items: - type: object - title: Tax detail - properties: - type: - type: - - "null" - - string - title: Type - description: >- - Provides the tax type for the region. For Canadian Sales Tax, - this will be GST, HST, QST or PST. - maxLength: 256 - region: - type: - - "null" - - string - title: Region - description: >- - Provides the tax region applied on an invoice. For Canadian - Sales Tax, this will be either the 2 letter province code or - country code. - maxLength: 256 - rate: - type: - - "null" - - number - format: float - title: Rate - description: Provides the tax rate for the region. - tax: - type: - - "null" - - number - format: float - title: Tax - description: The total tax applied for this tax type. - used_tax_service: - description: Indicates if a tax service was used for the invoice. - type: - - "null" - - boolean - vat_number: - type: - - "null" - - string - title: VAT number - description: >- - VAT registration number for the customer on this invoice. This will come - from the VAT Number field in the Billing Info or the Account Info - depending on your tax settings and the invoice collection method. - maxLength: 20 - vat_reverse_charge_notes: - type: - - "null" - - string - title: VAT reverse charge notes - description: >- - VAT Reverse Charge Notes only appear if you have EU VAT enabled or are - using your own Avalara AvaTax account and the customer is in the EU, has a - VAT number, and is in a different country than your own. This will default - to the VAT Reverse Charge Notes text specified on the Tax Settings page in - your Recurly admin, unless custom notes were created with the original - subscription. - maxLength: 1024 - terms_and_conditions: - type: - - "null" - - string - title: Terms and conditions - description: >- - This will default to the Terms and Conditions text specified on the - Invoice Settings page in your Recurly admin. Specify custom notes to add - or override Terms and Conditions. - maxLength: 16384 - customer_notes: - type: - - "null" - - string - title: Customer notes - description: >- - This will default to the Customer Notes text specified on the Invoice - Settings. Specify custom notes to add or override Customer Notes. - maxLength: 2048 - line_items: - description: The line items included in the invoice. - type: - - "null" - - array - title: Line Items - items: - $ref: "#/schemas/line_items_common" - has_more_line_items: - description: Indicates if there are more line items in the invoice. - type: - - "null" - - boolean - transactions: - description: The transactions associated with the invoice. - type: - - "null" - - array - title: Transactions - items: - type: - - "null" - - object - properties: - id: - description: The ID of a transaction linked to the invoice. - type: string - title: Transaction ID - maxLength: 13 - uuid: - type: string - title: Recurly UUID - description: >- - The UUID is useful for matching data with the CSV exports and - building URLs into Recurly's UI. - maxLength: 32 - credit_payments: - description: The credit payments related to the invoice. - type: - - "null" - - array - title: Credit payments - items: - type: - - "null" - - object - properties: - id: - description: The ID of a credit payment associated with the invoice. - type: string - title: Credit Payment ID - maxLength: 13 - uuid: - type: string - title: Recurly UUID - description: >- - The UUID is useful for matching data with the CSV exports and - building URLs into Recurly's UI. - maxLength: 32 - created_at: - description: The date and time when the invoice was created. - type: - - "null" - - string - format: date-time - title: Created at - readOnly: true - updated_at: - description: The date and time when the invoice was last updated. - type: - - "null" - - string - format: date-time - title: Last updated at - readOnly: true - due_at: - type: - - "null" - - string - format: date-time - title: Due at - description: Date invoice is due. This is the date the net terms are reached. - closed_at: - type: - - "null" - - string - format: date-time - title: Closed at - description: Date invoice was marked paid or failed. - dunning_campaign_id: - type: - - "null" - - string - title: Dunning Campaign ID - description: >- - Unique ID to identify the dunning campaign used when dunning the invoice. - Available when the Dunning Campaigns feature is enabled. For sites without - multiple dunning campaigns enabled, this will always be the default - dunning campaign. - maxLength: 256 - dunning_events_sent: - description: The number of dunning events sent for the invoice. - type: - - "null" - - integer - final_dunning_event: - description: The final dunning event related to the invoice if applicable. - type: - - "null" - - boolean - business_entity_id: - description: The business entity ID linked to the invoice. - type: - - "null" - - string - - line_items: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: - - "null" - - object - title: Line item - properties: - id: - type: string - title: Line item ID - maxLength: 13 - object: - type: - - "null" - - string - uuid: - type: string - title: UUID - description: >- - The UUID is useful for matching data with the CSV exports and building - URLs into Recurly's UI. - maxLength: 32 - type: - type: string - title: Line item type - description: >- - Charges are positive line items that debit the account. Credits are - negative line items that credit the account. - maxLength: 256 - item_code: - type: - - "null" - - string - title: Item Code - description: >- - Unique code to identify an item. Available when the Credit Invoices and - Subscription Billing Terms features are enabled. - maxLength: 50 - item_id: - type: - - "null" - - string - title: Item ID - description: >- - System-generated unique identifier for an item. Available when the Credit - Invoices and Subscription Billing Terms features are enabled. - maxLength: 13 - external_sku: - type: - - "null" - - string - title: External SKU - description: >- - Optional Stock Keeping Unit assigned to an item. Available when the Credit - Invoices and Subscription Billing Terms features are enabled. - maxLength: 50 - revenue_schedule_type: - type: - - "null" - - string - title: Revenue schedule type - maxLength: 256 - state: - type: string - title: Current state of the line item - description: >- - Pending line items are charges or credits on an account that have not been - applied to an invoice yet. Invoiced line items will always have an - `invoice_id` value. - maxLength: 256 - legacy_category: - type: - - "null" - - string - title: Legacy category - description: > - Category to describe the role of a line item on a legacy invoice: - - - "charges" refers to charges being billed for on this invoice. - - - "credits" refers to refund or proration credits. This portion of the - invoice can be considered a credit memo. - - - "applied_credits" refers to previous credits applied to this invoice. - See their original_line_item_id to determine where the credit first - originated. - - - "carryforwards" can be ignored. They exist to consume any remaining - credit balance. A new credit with the same amount will be created and - placed back on the account. - account: - $ref: "#/schemas/account_details_common" - bill_for_account_id: - type: string - title: Bill For Account ID - maxLength: 13 - description: The UUID of the account responsible for originating the line item. - subscription_id: - type: - - "null" - - string - title: Subscription ID - description: "If the line item is a charge or credit for a subscription, this is its ID." - maxLength: 13 - plan_id: - type: - - "null" - - string - title: Plan ID - description: >- - If the line item is a charge or credit for a plan or add-on, this is the - plan's ID. - maxLength: 13 - plan_code: - type: - - "null" - - string - title: Plan code - description: >- - If the line item is a charge or credit for a plan or add-on, this is the - plan's code. - maxLength: 50 - add_on_id: - type: - - "null" - - string - title: Add-on ID - description: If the line item is a charge or credit for an add-on this is its ID. - maxLength: 13 - add_on_code: - type: - - "null" - - string - title: Add-on code - description: "If the line item is a charge or credit for an add-on, this is its code." - maxLength: 50 - invoice_id: - type: - - "null" - - string - title: Invoice ID - description: Once the line item has been invoiced this will be the invoice's ID. - maxLength: 13 - invoice_number: - type: - - "null" - - string - title: Invoice number - description: >- - Once the line item has been invoiced this will be the invoice's number. If - VAT taxation and the Country Invoice Sequencing feature are enabled, - invoices will have country-specific invoice numbers for invoices billed to - EU countries (ex: FR1001). Non-EU invoices will continue to use the - site-level invoice number sequence. - maxLength: 256 - previous_line_item_id: - type: - - "null" - - string - title: Previous line item ID - description: >- - Will only have a value if the line item is a credit created from a - previous credit, or if the credit was created from a charge refund. - maxLength: 13 - original_line_item_invoice_id: - type: - - "null" - - string - title: Original line item's invoice ID - description: >- - The invoice where the credit originated. Will only have a value if the - line item is a credit created from a previous credit, or if the credit was - created from a charge refund. - maxLength: 13 - origin: - type: string - title: Origin of line item - description: >- - A credit created from an original charge will have the value of the - charge's origin. - maxLength: 256 - accounting_code: - type: string - title: Accounting code - description: >- - Internal accounting code to help you reconcile your revenue to the correct - ledger. Line items created as part of a subscription invoice will use the - plan or add-on's accounting code, otherwise the value will only be present - if you define an accounting code when creating the line item. - maxLength: 20 - product_code: - type: string - title: Product code - description: >- - For plan-related line items this will be the plan's code, for add-on - related line items it will be the add-on's code. For item-related line - items it will be the item's `external_sku`. - maxLength: 50 - credit_reason_code: - type: - - "null" - - string - title: Credit reason code - description: The reason the credit was given when line item is `type=credit`. - default: general - maxLength: 256 - currency: - type: string - title: Currency - description: 3-letter ISO 4217 currency code. - maxLength: 3 - amount: - type: number - format: float - title: Total after discounts and taxes - description: "`(quantity * unit_amount) - (discount + tax)`" - description: - type: string - title: Description - description: >- - Description that appears on the invoice. For subscription related items - this will be filled in automatically. - maxLength: 255 - quantity: - type: integer - title: Quantity - description: >- - This number will be multiplied by the unit amount to compute the subtotal - before any discounts or taxes. - default: 1 - unit_amount: - type: number - format: float - title: Unit amount - description: "Positive amount for a charge, negative amount for a credit." - unit_amount_decimal: - type: - - "null" - - string - title: Unit amount decimal - description: "Positive amount for a charge, negative amount for a credit." - subtotal: - type: number - format: float - title: Total before discounts and taxes - description: "`quantity * unit_amount`" - discount: - type: - - "null" - - number - format: float - title: Discount - description: The discount applied to the line item. - tax: - type: - - "null" - - number - format: float - title: Tax - description: The tax amount for the line item. - taxable: - type: boolean - title: Taxable? - description: "`true` if the line item is taxable, `false` if it is not." - tax_exempt: - type: boolean - title: Tax exempt? - description: >- - `true` exempts tax on charges, `false` applies tax on charges. If not - defined, then defaults to the Plan and Site settings. This attribute does - not work for credits (negative line items). Credits are always applied - post-tax. Pre-tax discounts should use the Coupons feature. - tax_code: - type: - - "null" - - string - title: Tax code - description: >- - Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax code - values are specific to each tax system. If you are using Recurly’s EU VAT - feature you can use `unknown`, `physical`, or `digital`. - maxLength: 50 - tax_info: - $ref: "#/schemas/tax_info_common" - proration_rate: - type: - - "null" - - number - format: float - title: Proration rate - description: >- - When a line item has been prorated, this is the rate of the proration. - Proration rates were made available for line items created after March 30, - 2017. For line items created prior to that date, the proration rate will - be `null`, even if the line item was prorated. - minimum: 0 - maximum: 1 - refund: - type: boolean - title: Refund? - refunded_quantity: - type: - - "null" - - integer - title: Refunded Quantity - description: >- - For refund charges, the quantity being refunded. For non-refund charges, - the total quantity refunded (possibly over multiple refunds). - credit_applied: - type: - - "null" - - number - format: float - title: Credit Applied - description: The amount of credit from this line item that was applied to the invoice. - shipping_address: - type: - - "null" - - object - properties: - id: - type: string - title: Shipping Address ID - maxLength: 13 - readOnly: true - start_date: - type: - - "null" - - string - format: date-time - title: Start date - description: >- - If an end date is present, this is value indicates the beginning of a - billing time range. If no end date is present it indicates billing for a - specific date. - end_date: - type: - - "null" - - string - format: date-time - title: End date - description: "If this date is provided, it indicates the end of a time range." - custom_fields: - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - name: - type: - - "null" - - string - value: - type: - - "null" - - string - created_at: - type: string - format: date-time - title: Created at - description: When the line item was created. - updated_at: - type: string - format: date-time - title: Last updated at - description: When the line item was last changed. - - measured_units: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - id: - description: Unique identifier for the measured unit - type: - - "null" - - string - maxLength: 13 - object: - description: "Type of object, in this case, 'measured_unit'" - type: - - "null" - - string - name: - description: Internal name used to identify the measured unit - type: - - "null" - - string - maxLength: 256 - display_name: - description: Human-readable name used for display purposes - type: - - "null" - - string - maxLength: 255 - state: - description: Current state of the measured unit - type: - - "null" - - string - maxLength: 255 - description: - description: Description of the measured unit - type: - - "null" - - string - maxLength: 1024 - created_at: - description: Timestamp indicating when the measured unit was created - type: - - "null" - - string - format: date-time - updated_at: - description: Timestamp indicating when the measured unit was last updated - type: - - "null" - - string - format: date-time - deleted_at: - description: Timestamp indicating when the measured unit was deleted (if applicable) - type: - - "null" - - string - format: date-time - - plans: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - id: - description: Unique identifier of the plan. - type: - - "null" - - string - maxLength: 13 - object: - description: Indicates the type of object which in this case is 'plan'. - type: - - "null" - - string - code: - description: Unique identifier code for the plan. - type: - - "null" - - string - maxLength: 256 - state: - description: The current state of the plan. - type: - - "null" - - string - maxLength: 256 - name: - description: Name of the plan. - type: - - "null" - - string - maxLength: 256 - description: - description: Description of the plan. - type: - - "null" - - string - maxLength: 1024 - interval_unit: - description: Unit of the billing interval for the plan. - type: - - "null" - - string - maxLength: 256 - interval_length: - description: Length of the billing interval for the plan. - type: - - "null" - - number - trial_unit: - description: Unit of the trial period for the plan. - type: - - "null" - - string - maxLength: 256 - trial_length: - description: Length of the trial period for the plan. - type: - - "null" - - number - trial_requires_billing_info: - description: Determines if billing information is required for the trial. - type: - - "null" - - boolean - total_billing_cycles: - description: Total number of billing cycles the plan will run for. - type: - - "null" - - number - auto_renew: - description: Indicates whether the plan should automatically renew. - type: - - "null" - - boolean - pricing_model: - description: The pricing model used for the plan. - type: - - "null" - - string - ramp_intervals: - description: Specifies ramp intervals for the plan. - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - starting_billing_cycle: - description: The starting billing cycle for the ramp interval. - type: - - "null" - - integer - currencies: - description: Contains currencies information within the ramp intervals. - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - currency: - description: Currency code for the interval. - type: - - "null" - - string - unit_amount: - description: Unit amount for the currency in the interval. - type: - - "null" - - number - custom_fields: - description: Includes any custom fields associated with the plan. - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - name: - description: Name of the custom field. - type: - - "null" - - string - value: - description: Value of the custom field. - type: - - "null" - - string - accounting_code: - description: The accounting code associated with the plan. - type: - - "null" - - string - maxLength: 256 - revenue_schedule_type: - description: Type of revenue schedule for the plan. - type: - - "null" - - string - maxLength: 256 - setup_fee_revenue_schedule_type: - description: Revenue schedule type for the setup fee. - type: - - "null" - - string - maxLength: 256 - setup_fee_accounting_code: - description: The accounting code associated with the setup fee. - type: - - "null" - - string - maxLength: 256 - avalara_transaction_type: - description: The Avalara transaction type used for tax calculation. - type: - - "null" - - number - avalara_service_type: - description: The Avalara service type used for tax calculation. - type: - - "null" - - number - tax_code: - description: Tax code used for the plan. - type: - - "null" - - string - maxLength: 256 - tax_exempt: - description: Determines if the plan is tax exempt. - type: - - "null" - - boolean - currencies: - description: Contains information about the currencies supported by the plan. - type: array - title: Pricing - items: - type: object - properties: - currency: - type: string - title: Currency - description: 3-letter ISO 4217 currency code. - maxLength: 3 - setup_fee: - type: number - format: float - title: Setup fee - description: >- - Amount of one-time setup fee automatically charged at the beginning - of a subscription billing cycle. For subscription plans with a - trial, the setup fee will be charged at the time of signup. Setup - fees do not increase with the quantity of a subscription plan. - minimum: 0 - maximum: 1000000 - unit_amount: - description: Unit amount for the currency in the plan. - type: number - format: float - title: Unit price - minimum: 0 - maximum: 1000000 - hosted_pages: - description: Provides details about hosted pages related to the plan. - type: object - properties: - success_url: - description: >- - URL to redirect when a user successfully completes hosted page - process. - type: - - "null" - - string - maxLength: 2048 - cancel_url: - description: URL to redirect when a user cancels during hosted page process. - type: - - "null" - - string - maxLength: 2048 - bypass_confirmation: - description: Determines if confirmation is bypassed on hosted pages. - type: - - "null" - - boolean - display_quantity: - description: Determines if quantity is displayed on hosted pages. - type: - - "null" - - boolean - allow_any_item_on_subscriptions: - description: Determines if any item can be added to subscriptions using this plan. - type: - - "null" - - boolean - dunning_campaign_id: - description: ID of the dunning campaign associated with the plan. - type: - - "null" - - string - maxLength: 256 - created_at: - description: Timestamp indicating when the plan was created. - type: - - "null" - - string - format: date-time - updated_at: - description: Timestamp indicating when the plan was last updated. - type: - - "null" - - string - format: date-time - deleted_at: - description: Timestamp indicating when the plan was deleted. - type: - - "null" - - string - format: date-time - - shipping_addresses: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: - - "null" - - object - properties: - id: - type: string - title: Shipping Address ID - maxLength: 13 - readOnly: true - object: - type: - - "null" - - string - account_id: - type: string - title: Account ID - maxLength: 13 - readOnly: true - nickname: - type: string - maxLength: 255 - first_name: - type: string - maxLength: 255 - last_name: - type: string - maxLength: 255 - company: - type: string - maxLength: 255 - email: - type: string - maxLength: 255 - vat_number: - type: string - maxLength: 20 - phone: - type: string - maxLength: 30 - street1: - type: string - maxLength: 255 - street2: - type: string - maxLength: 255 - city: - type: string - maxLength: 255 - region: - type: string - maxLength: 255 - description: State or province. - postal_code: - type: string - maxLength: 20 - description: Zip or postal code. - country: - type: string - maxLength: 50 - description: "Country, 2-letter ISO 3166-1 alpha-2 code." - geo_code: - type: - - "null" - - string - created_at: - type: string - title: Created at - format: date-time - readOnly: true - updated_at: - type: string - title: Updated at - format: date-time - readOnly: true - - shipping_methods: - $schema: "http://json-schema.org/schema#" - additionalProperties: true - type: object - properties: - id: - description: Unique identifier for the shipping method - type: string - title: Shipping Method ID - readOnly: true - maxLength: 13 - code: - type: string - title: Code - description: The internal name used identify the shipping method. - maxLength: 50 - name: - type: string - title: Name - description: The name of the shipping method displayed to customers. - maxLength: 100 - accounting_code: - type: string - title: Accounting Code - description: Accounting code for shipping method. - maxLength: 20 - tax_code: - type: string - title: Tax code - description: | - Used by Avalara, Vertex, and Recurly’s built-in tax feature. The tax - code values are specific to each tax system. If you are using Recurly’s - built-in taxes the values are: - - - `FR` – Common Carrier FOB Destination - - `FR022000` – Common Carrier FOB Origin - - `FR020400` – Non Common Carrier FOB Destination - - `FR020500` – Non Common Carrier FOB Origin - - `FR010100` – Delivery by Company Vehicle Before Passage of Title - - `FR010200` – Delivery by Company Vehicle After Passage of Title - - `NT` – Non-Taxable - maxLength: 50 - created_at: - description: Timestamp indicating when the shipping method was created - type: string - format: date-time - title: Created at - readOnly: true - updated_at: - description: Timestamp indicating when the shipping method was last updated - type: string - format: date-time - title: Last updated at - readOnly: true - deleted_at: - description: Timestamp indicating when the shipping method was deleted - type: string - format: date-time - title: Deleted at - readOnly: true - - subscriptions: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: object - properties: - id: - description: Unique identifier for the subscription. - type: - - "null" - - string - maxLength: 13 - object: - description: Indicates the type of object (subscription). - type: - - "null" - - string - uuid: - description: Universally unique identifier for the subscription. - type: - - "null" - - string - maxLength: 32 - account: - description: Information about the associated account for the subscription - type: - - "null" - - object - properties: - id: - type: - - "null" - - string - maxLength: 13 - object: - type: - - "null" - - string - code: - type: - - "null" - - string - maxLength: 256 - email: - type: - - "null" - - string - maxLength: 256 - first_name: - type: - - "null" - - string - last_name: - type: - - "null" - - string - company: - type: - - "null" - - string - parent_account_id: - type: - - "null" - - string - bill_to: - type: - - "null" - - string - dunning_campaign_id: - type: - - "null" - - string - plan: - description: Information about the plan associated with the subscription - type: object - properties: - id: - type: - - "null" - - string - maxLength: 13 - object: - type: - - "null" - - string - code: - type: - - "null" - - string - maxLength: 256 - name: - type: - - "null" - - string - state: - description: "Current state of the subscription (e.g., active, cancelled)." - type: - - "null" - - string - maxLength: 256 - shipping: - description: Information about the shipping associated with the subscription - type: - - "null" - - object - properties: - object: - type: - - "null" - - string - address: - $ref: "#/schemas/shipping_addresses_common" - method: - description: Information about the shipping method - type: - - "null" - - object - properties: - id: - type: string - title: Shipping Method ID - readOnly: true - maxLength: 13 - object: - type: - - "null" - - string - code: - type: - - "null" - - string - name: - type: - - "null" - - string - amount: - type: - - "null" - - number - coupon_redemptions: - description: Details of any coupons redeemed for the subscription. - $ref: "#/schemas/coupon_redemptions_common" - pending_change: - description: Information about any pending changes to the subscription - type: - - "null" - - object - title: Subscription Change - properties: - id: - type: string - title: Subscription Change ID - description: The ID of the Subscription Change. - maxLength: 13 - subscription_id: - type: string - title: Subscription ID - description: The ID of the subscription that is going to be changed. - maxLength: 13 - activate_at: - description: Timestamp when the pending change will be activated - type: string - format: date-time - title: Activated at - readOnly: true - activated: - type: boolean - title: Activated? - description: Returns `true` if the subscription change is activated. - created_at: - description: Timestamp when the pending change was created - type: string - format: date-time - title: Created at - readOnly: true - updated_at: - description: Timestamp when the pending change was last updated - type: string - format: date-time - title: Updated at - readOnly: true - deleted_at: - description: Timestamp when the pending change was deleted - type: string - format: date-time - title: Deleted at - readOnly: true - current_period_started_at: - description: Timestamp when the current period started - type: - - "null" - - string - format: date-time - current_period_ends_at: - description: Timestamp when the current period ends - type: - - "null" - - string - format: date-time - current_term_started_at: - description: Timestamp when the current term started - type: - - "null" - - string - format: date-time - current_term_ends_at: - description: Timestamp when the current term ends - type: - - "null" - - string - format: date-time - trial_started_at: - description: Timestamp when the trial period started - type: - - "null" - - string - format: date-time - trial_ends_at: - description: Timestamp when the trial period ends - type: - - "null" - - string - format: date-time - remaining_billing_cycles: - description: Number of billing cycles remaining before subscription ends. - type: - - "null" - - number - total_billing_cycles: - description: Total number of billing cycles for the subscription. - type: - - "null" - - number - renewal_billing_cycles: - description: Number of billing cycles in the renewal period. - type: - - "null" - - number - auto_renew: - description: Flag indicating whether the subscription auto renews. - type: - - "null" - - boolean - ramp_intervals: - description: Information about any ramp intervals associated with the subscription - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - starting_billing_cycle: - type: - - "null" - - integer - remaining_billing_cycles: - type: - - "null" - - integer - starting_on: - description: Timestamp when the ramp interval starts - type: - - "null" - - string - format: date-time - ending_on: - description: Timestamp when the ramp interval ends - type: - - "null" - - string - format: date-time - unit_amount: - type: - - "null" - - number - paused_at: - description: Timestamp when the subscription was paused - type: - - "null" - - string - format: date-time - remaining_pause_cycles: - description: Number of pause cycles remaining for the subscription. - type: - - "null" - - number - currency: - description: Currency used for billing the subscription. - type: - - "null" - - string - maxLength: 3 - revenue_schedule_type: - description: Type of revenue schedule for the subscription. - type: - - "null" - - string - maxLength: 256 - unit_amount: - description: Amount charged per unit for the subscription. - type: - - "null" - - number - tax_inclusive: - description: Flag indicating if taxes are included in the total amount. - type: - - "null" - - boolean - quantity: - description: Number of units or items included in the subscription. - type: - - "null" - - number - add_ons: - description: Any additional services or items added to the subscription. - type: - - "null" - - array - title: Add-ons - items: - type: - - "null" - - object - title: Subscription Add-on - description: This links an Add-on to a specific Subscription. - properties: - id: - type: string - title: Subscription Add-on ID - maxLength: 13 - code: - type: string - title: Add-on code - description: The unique identifier for the add-on within its plan. - maxLength: 50 - add_ons_total: - description: Total amount charged for the additional services or items. - type: - - "null" - - number - subtotal: - description: Subtotal amount before taxes and additional charges. - type: - - "null" - - number - tax: - description: Total tax amount applied to the subscription. - type: - - "null" - - number - tax_info: - description: Details of the tax information for the subscription. - $ref: "#/schemas/tax_info_common" - total: - description: Total amount including taxes and additional charges. - type: - - "null" - - number - collection_method: - description: Method used for collecting payments for the subscription. - type: - - "null" - - string - maxLength: 256 - po_number: - description: Purchase order number associated with the subscription. - type: - - "null" - - string - maxLength: 256 - net_terms: - description: Number of net terms for payment. - type: - - "null" - - number - net_terms_type: - description: "Type of net terms (e.g., days)." - type: - - "null" - - string - terms_and_conditions: - description: Terms and conditions agreed upon for the subscription. - type: - - "null" - - string - maxLength: 16384 - customer_notes: - description: Any notes or comments added by the customer. - type: - - "null" - - string - maxLength: 1024 - expiration_reason: - description: Reason for the subscription expiration. - type: - - "null" - - string - maxLength: 1024 - custom_fields: - description: Custom fields associated with the subscription - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - name: - type: - - "null" - - string - value: - type: - - "null" - - string - created_at: - description: Timestamp when the subscription was created - type: - - "null" - - string - format: date-time - updated_at: - description: Timestamp when the subscription was last updated - type: - - "null" - - string - format: date-time - activated_at: - description: Timestamp when the subscription was activated - type: - - "null" - - string - format: date-time - canceled_at: - description: Timestamp when the subscription was canceled - type: - - "null" - - string - format: date-time - expires_at: - description: Timestamp when the subscription expires - type: - - "null" - - string - format: date-time - bank_account_authorized_at: - description: Timestamp when bank account authorization occurred - type: - - "null" - - string - format: date-time - gateway_code: - description: Code associated with the payment gateway used for processing payments. - type: - - "null" - - string - maxLength: 256 - billing_info_id: - description: ID of the billing information associated with the subscription. - type: - - "null" - - string - maxLength: 13 - active_invoice_id: - description: ID of the active invoice associated with the subscription. - type: - - "null" - - string - started_with_gift: - description: Indicates if the subscription started with a gift or promotion. - type: - - "null" - - boolean - converted_at: - description: Timestamp when the subscription was converted - type: - - "null" - - string - format: date-time - action_result: - description: Result of the action performed on the subscription. - type: - - "null" - - object - additionalProperties: true - - transactions: - $schema: "http://json-schema.org/draft-07/schema#" - type: object - additionalProperties: true - properties: - id: - description: Unique identifier for the transaction - type: - - "null" - - string - maxLength: 13 - object: - description: Type of object (transaction) - type: - - "null" - - string - uuid: - description: Universally unique identifier for the transaction - type: - - "null" - - string - maxLength: 32 - original_transaction_id: - description: "ID of the original transaction, if applicable" - type: - - "null" - - string - maxLength: 13 - account: - description: Details of the account associated with the transaction - $ref: "#/schemas/account_details_common" - invoice: - description: Details of the invoice associated with the transaction - type: - - "null" - - object - properties: - id: - type: - - "null" - - string - maxLength: 13 - number: - type: - - "null" - - string - maxLength: 256 - business_entity_id: - type: - - "null" - - string - type: - type: - - "null" - - string - state: - type: - - "null" - - string - voided_by_invoice: - description: Details of the invoice that voided the transaction - type: - - "null" - - object - properties: - id: - type: - - "null" - - string - maxLength: 13 - object: - type: - - "null" - - string - number: - type: - - "null" - - string - maxLength: 256 - business_entity_id: - type: - - "null" - - string - type: - type: - - "null" - - string - state: - type: - - "null" - - string - subscription_ids: - description: List of subscription IDs associated with the transaction - type: array - items: - type: - - "null" - - string - maxLength: 13 - type: - description: Type of transaction - type: - - "null" - - string - maxLength: 256 - origin: - description: Source or origin of the transaction - type: - - "null" - - string - maxLength: 256 - currency: - description: Currency used for the transaction - type: - - "null" - - string - maxLength: 3 - amount: - description: Amount of the transaction - type: - - "null" - - number - status: - description: Current status of the transaction - type: - - "null" - - string - maxLength: 256 - success: - description: Indicates the success status of the transaction - type: - - "null" - - boolean - backup_payment_method_used: - description: Indicates whether a backup payment method was used - type: - - "null" - - boolean - refunded: - description: Indicates whether the transaction has been refunded - type: - - "null" - - boolean - billing_address: - description: Billing address details of the transaction - type: object - properties: - first_name: - type: - - "null" - - string - maxLength: 256 - last_name: - type: - - "null" - - string - maxLength: 256 - phone: - type: - - "null" - - string - maxLength: 256 - street1: - type: - - "null" - - string - maxLength: 256 - street2: - type: - - "null" - - string - maxLength: 256 - city: - type: - - "null" - - string - maxLength: 256 - region: - type: - - "null" - - string - maxLength: 256 - postal_code: - type: - - "null" - - string - maxLength: 256 - country: - type: - - "null" - - string - maxLength: 256 - geo_code: - type: - - "null" - - string - collection_method: - description: Method used to collect the transaction - type: - - "null" - - string - maxLength: 256 - payment_method: - description: Details of the payment method used for the transaction - type: object - properties: - object: - type: - - "null" - - string - card_type: - type: - - "null" - - string - maxLength: 256 - first_six: - type: - - "null" - - string - maxLength: 6 - last_four: - type: - - "null" - - string - maxLength: 4 - last_two: - type: - - "null" - - string - maxLength: 2 - exp_month: - type: - - "null" - - number - exp_year: - type: - - "null" - - number - gateway_token: - type: - - "null" - - string - maxLength: 256 - cc_bin_country: - type: - - "null" - - string - gateway_code: - type: - - "null" - - string - maxLength: 256 - billing_agreement_id: - type: - - "null" - - string - maxLength: 256 - name_on_account: - type: - - "null" - - string - maxLength: 256 - account_type: - type: - - "null" - - string - maxLength: 256 - routing_number: - type: - - "null" - - string - maxLength: 256 - routing_number_bank: - type: - - "null" - - string - maxLength: 256 - username: - type: - - "null" - - string - ip_address_v4: - description: IPv4 address of the transaction - type: - - "null" - - string - maxLength: 256 - ip_address_country: - description: Country of the IP address used for the transaction - type: - - "null" - - string - maxLength: 256 - status_code: - description: Status code of the transaction - type: - - "null" - - string - maxLength: 256 - status_message: - description: Message related to the status of the transaction - type: - - "null" - - string - maxLength: 1024 - customer_message: - description: Message for the customer related to the transaction - type: - - "null" - - string - maxLength: 1024 - customer_message_locale: - description: Locale of the customer message - type: - - "null" - - string - maxLength: 12 - payment_gateway: - description: Details of the payment gateway used for the transaction - type: object - properties: - id: - type: - - "null" - - string - maxLength: 13 - object: - type: - - "null" - - string - type: - type: - - "null" - - string - name: - type: - - "null" - - string - gateway_message: - description: Message returned by the payment gateway - type: - - "null" - - string - maxLength: 256 - gateway_reference: - description: Reference number provided by the payment gateway - type: - - "null" - - string - maxLength: 256 - gateway_approval_code: - description: Approval code provided by the payment gateway - type: - - "null" - - string - maxLength: 256 - gateway_response_code: - description: Response code from the payment gateway - type: - - "null" - - string - maxLength: 256 - gateway_response_time: - description: Time taken for the payment gateway to respond - type: - - "null" - - number - gateway_response_values: - description: Additional values in the gateway response - type: object - cvv_check: - description: Result of the CVV check - type: - - "null" - - string - maxLength: 256 - avs_check: - description: Result of the Address Verification System check - type: - - "null" - - string - maxLength: 256 - created_at: - description: Date and time when the transaction was created - type: - - "null" - - string - format: date-time - updated_at: - description: Date and time of the last update to the transaction - type: - - "null" - - string - format: date-time - voided_at: - description: Date and time when the transaction was voided - type: - - "null" - - string - format: date-time - collected_at: - description: Date and time when the transaction was collected - type: - - "null" - - string - format: date-time - action_result: - description: Result of the action taken for the transaction - type: - - "null" - - object - additionalProperties: true - vat_number: - description: VAT number associated with the transaction - type: - - "null" - - string - fraud_info: - description: Information related to fraud check for the transaction - type: - - "null" - - object - properties: - object: - type: - - "null" - - string - score: - type: - - "null" - - integer - decision: - type: - - "null" - - string - reference: - type: - - "null" - - string - risk_rules_triggered: - type: - - "null" - - array - items: - description: Details of individual risk rules triggered - type: - - "null" - - object - properties: - code: - type: - - "null" - - string - message: - type: - - "null" - - string - - unique_coupons: - $schema: "http://json-schema.org/draft-07/schema#" - additionalProperties: true - type: - - "null" - - object - description: A unique coupon code for a bulk coupon. - properties: - id: - type: string - title: Unique Coupon Code ID - readOnly: true - maxLength: 13 - object: - type: string - code: - type: string - title: Coupon code - description: The code the customer enters to redeem the coupon. - maxLength: 256 - state: - type: - - "null" - - string - title: State - description: Indicates if the unique coupon code is redeemable or why not. - maxLength: 256 - bulk_coupon_id: - type: - - "null" - - string - title: Bulk Coupon ID - description: The Coupon ID of the parent Bulk Coupon - readOnly: true - maxLength: 13 - bulk_coupon_code: - type: - - "null" - - string - title: Bulk Coupon code - description: The Coupon code of the parent Bulk Coupon - maxLength: 256 - created_at: - type: string - title: Created at - format: date-time - readOnly: true - updated_at: - type: string - title: Updated at - format: date-time - readOnly: true - redeemed_at: - type: - - "null" - - string - title: Redeemed at - description: The date and time the unique coupon code was redeemed. - format: date-time - readOnly: true - expired_at: - type: - - "null" - - string - title: Expired at - description: >- - The date and time the coupon was expired early or reached its - `max_redemptions`. - format: date-time - billing_infos_common: - $schema: "http://json-schema.org/draft-07/schema#" - type: object - properties: - id: - type: string - maxLength: 13 - readOnly: true - object: - type: - - "null" - - string - account_id: - type: string - maxLength: 13 - readOnly: true - first_name: - type: - - "null" - - string - maxLength: 50 - last_name: - type: - - "null" - - string - maxLength: 50 - company: - type: - - "null" - - string - maxLength: 100 - address: - type: object - properties: - phone: - type: - - "null" - - string - title: Phone number - maxLength: 256 - street1: - type: - - "null" - - string - title: Street 1 - maxLength: 256 - street2: - type: - - "null" - - string - title: Street 2 - maxLength: 256 - city: - type: - - "null" - - string - title: City - maxLength: 256 - region: - type: - - "null" - - string - title: State/Province - description: State or province. - maxLength: 256 - postal_code: - type: - - "null" - - string - title: Zip/Postal code - description: Zip or postal code. - maxLength: 256 - country: - type: - - "null" - - string - title: Country - description: "Country, 2-letter ISO 3166-1 alpha-2 code." - maxLength: 2 - vat_number: - type: - - "null" - - string - description: >- - Customer's VAT number (to avoid having the VAT applied). This is only used - for automatically collected invoices. - maxLength: 20 - valid: - type: boolean - readOnly: true - payment_method: - type: object - properties: - card_type: - description: "Visa, MasterCard, American Express, Discover, JCB, etc." - type: - - "null" - - string - maxLength: 256 - object: - type: - - "null" - - string - first_six: - type: - - "null" - - string - description: Credit card number's first six digits. - maxLength: 6 - last_four: - type: - - "null" - - string - description: >- - Credit card number's last four digits. Will refer to bank account if - payment method is ACH. - maxLength: 4 - last_two: - type: - - "null" - - string - description: The IBAN bank account's last two digits. - maxLength: 2 - exp_month: - type: - - "null" - - integer - description: Expiration month. - maxLength: 2 - exp_year: - type: - - "null" - - integer - description: Expiration year. - maxLength: 4 - gateway_token: - type: - - "null" - - string - description: >- - A token used in place of a credit card in order to perform - transactions. - maxLength: 50 - cc_bin_country: - type: - - "null" - - string - description: >- - The 2-letter ISO 3166-1 alpha-2 country code associated with the - credit card BIN, if known by Recurly. Available on the BillingInfo - object only. Available when the BIN country lookup feature is enabled. - maxLength: 256 - gateway_code: - type: - - "null" - - string - description: An identifier for a specific payment gateway. - maxLength: 13 - billing_agreement_id: - type: - - "null" - - string - description: >- - Billing Agreement identifier. Only present for Amazon or Paypal - payment methods. - maxLength: 256 - name_on_account: - type: - - "null" - - string - description: The name associated with the bank account. - maxLength: 256 - account_type: - description: The bank account type. Only present for ACH payment methods. - type: - - "null" - - string - maxLength: 256 - routing_number: - type: - - "null" - - string - description: >- - The bank account's routing number. Only present for ACH payment - methods. - maxLength: 256 - routing_number_bank: - type: - - "null" - - string - description: The bank name of this routing number. - maxLength: 256 - fraud: - type: - - "null" - - object - title: Fraud information - description: Most recent fraud result. - readOnly: true - properties: - score: - type: - - "null" - - integer - title: Kount score - decision: - title: Kount decision - maxLength: 10 - type: - - "null" - - string - risk_rules_triggered: - type: object - title: Kount rules - primary_payment_method: - type: boolean - description: >- - The `primary_payment_method` field is used to indicate the primary billing - info on the account. The first billing info created on an account will - always become primary. This payment method will be used - backup_payment_method: - type: boolean - description: >- - The `backup_payment_method` field is used to indicate a billing info as a - backup on the account that will be tried if the initial billing info used - for an invoice is declined. - created_at: - type: string - format: date-time - description: When the billing information was created. - readOnly: true - updated_at: - type: string - format: date-time - description: When the billing information was last changed. - readOnly: true - updated_by: - type: - - "null" - - object - properties: - ip: - type: - - "null" - - string - country: - type: - - "null" - - string - external_accounts_common: - $schema: "http://json-schema.org/draft-07/schema#" - type: object - properties: - object: - type: - - "null" - - string - id: - type: - - "null" - - string - external_account_code: - type: - - "null" - - string - external_connection_type: - type: - - "null" - - string - created_at: - type: - - "null" - - string - updated_at: - type: - - "null" - - string - shipping_addresses_common: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - properties: - id: - type: string - title: Shipping Address ID - maxLength: 13 - readOnly: true - object: - type: - - "null" - - string - account_id: - type: string - title: Account ID - maxLength: 13 - readOnly: true - nickname: - type: string - maxLength: 255 - first_name: - type: string - maxLength: 255 - last_name: - type: string - maxLength: 255 - company: - type: string - maxLength: 255 - email: - type: string - maxLength: 255 - vat_number: - type: string - maxLength: 20 - phone: - type: string - maxLength: 30 - street1: - type: string - maxLength: 255 - street2: - type: string - maxLength: 255 - city: - type: string - maxLength: 255 - region: - type: string - maxLength: 255 - description: State or province. - postal_code: - type: string - maxLength: 20 - description: Zip or postal code. - country: - type: string - maxLength: 50 - description: "Country, 2-letter ISO 3166-1 alpha-2 code." - geo_code: - type: - - "null" - - string - created_at: - type: string - title: Created at - format: date-time - readOnly: true - updated_at: - type: string - title: Updated at - format: date-time - readOnly: true - account_details_common: - type: - - "null" - - object - properties: - id: - type: string - object: - type: - - "null" - - string - code: - type: - - "null" - - string - email: - type: - - "null" - - string - first_name: - type: - - "null" - - string - last_name: - type: - - "null" - - string - company: - type: - - "null" - - string - parent_account_id: - type: - - "null" - - string - bill_to: - type: - - "null" - - string - dunning_campaign_id: - type: - - "null" - - string - coupons_common: - $schema: "http://json-schema.org/draft-07/schema#" - type: object - properties: - id: - type: - - "null" - - string - maxLength: 13 - object: - type: - - "null" - - string - code: - type: - - "null" - - string - maxLength: 256 - name: - type: - - "null" - - string - maxLength: 256 - state: - type: - - "null" - - string - maxLength: 256 - max_redemptions: - type: - - "null" - - number - max_redemptions_per_account: - type: - - "null" - - number - unique_coupon_codes_count: - type: - - "null" - - number - unique_code_template: - type: - - "null" - - string - maxLength: 256 - unique_coupon_code: - $ref: "#/schemas/unique_coupons_common" - duration: - type: - - "null" - - string - maxLength: 256 - temporal_amount: - type: - - "null" - - number - temporal_unit: - type: - - "null" - - string - maxLength: 256 - free_trial_unit: - type: - - "null" - - string - maxLength: 256 - free_trial_amount: - type: - - "null" - - number - applies_to_all_plans: - type: - - "null" - - boolean - applies_to_all_items: - type: - - "null" - - boolean - applies_to_non_plan_charges: - type: - - "null" - - boolean - plans: - type: - - "null" - - array - title: Plans - description: >- - A list of plans for which this coupon applies. This will be `null` if - `applies_to_all_plans=true`. - items: - type: object - title: Plan mini details - description: Just the important parts. - properties: - id: - type: string - title: Plan ID - maxLength: 13 - readOnly: true - code: - type: string - title: Plan code - description: >- - Unique code to identify the plan. This is used in Hosted Payment - Page URLs and in the invoice exports. - maxLength: 13 - items: - type: - - "null" - - array - title: Items - description: | - A list of items for which this coupon applies. This will be - `null` if `applies_to_all_items=true`. - items: - type: - - "null" - - object - title: Item mini details - description: Just the important parts. - properties: - id: - type: string - title: Item ID - maxLength: 13 - readOnly: true - redemption_resource: - type: - - "null" - - string - maxLength: 256 - discount: - type: - - "null" - - object - description: | - Details of the discount a coupon applies. Will contain a `type` - property and one of the following properties: `percent`, `fixed`, `trial`. - properties: - type: - type: string - maxLength: 256 - percent: - description: This is only present when `type=percent`. - type: integer - currencies: - type: array - description: This is only present when `type=fixed`. - items: - type: - - "null" - - object - properties: - currency: - type: string - title: Currency - description: 3-letter ISO 4217 currency code. - maxLength: 3 - amount: - type: number - format: float - title: Discount Amount - description: Value of the fixed discount that this coupon applies. - trial: - type: object - description: This is only present when `type=free_trial`. - properties: - unit: - title: Trial unit - description: Temporal unit of the free trial - type: string - maxLength: 256 - length: - type: integer - title: Trial length - description: >- - Trial length measured in the units specified by the sibling `unit` - property - coupon_type: - type: - - "null" - - string - maxLength: 256 - hosted_page_description: - type: - - "null" - - string - maxLength: 1024 - invoice_description: - type: - - "null" - - string - maxLength: 1024 - redeem_by: - type: - - "null" - - string - maxLength: 256 - created_at: - type: - - "null" - - string - format: date-time - updated_at: - type: - - "null" - - string - format: date-time - expired_at: - type: - - "null" - - string - format: date-time - unique_coupons_common: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - description: A unique coupon code for a bulk coupon. - properties: - id: - type: string - title: Unique Coupon Code ID - readOnly: true - maxLength: 13 - object: - type: string - code: - type: string - title: Coupon code - description: The code the customer enters to redeem the coupon. - maxLength: 256 - state: - type: - - "null" - - string - title: State - description: Indicates if the unique coupon code is redeemable or why not. - maxLength: 256 - bulk_coupon_id: - type: - - "null" - - string - title: Bulk Coupon ID - description: The Coupon ID of the parent Bulk Coupon - readOnly: true - maxLength: 13 - bulk_coupon_code: - type: - - "null" - - string - title: Bulk Coupon code - description: The Coupon code of the parent Bulk Coupon - maxLength: 256 - created_at: - type: string - title: Created at - format: date-time - readOnly: true - updated_at: - type: string - title: Updated at - format: date-time - readOnly: true - redeemed_at: - type: - - "null" - - string - title: Redeemed at - description: The date and time the unique coupon code was redeemed. - format: date-time - readOnly: true - expired_at: - type: - - "null" - - string - title: Expired at - description: >- - The date and time the coupon was expired early or reached its - `max_redemptions`. - format: date-time - users_common: - type: - - "null" - - object - properties: - id: - type: string - object: - type: - - "null" - - string - email: - type: - - "null" - - string - first_name: - type: - - "null" - - string - last_name: - type: - - "null" - - string - time_zone: - type: - - "null" - - string - created_at: - type: - - "null" - - string - format: date-time - deleted_at: - type: - - "null" - - string - format: date-time - line_items_common: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - title: Line item - properties: - id: - type: string - title: Line item ID - maxLength: 13 - object: - type: - - "null" - - string - uuid: - type: string - title: UUID - description: >- - The UUID is useful for matching data with the CSV exports and building - URLs into Recurly's UI. - maxLength: 32 - type: - type: string - title: Line item type - description: >- - Charges are positive line items that debit the account. Credits are - negative line items that credit the account. - maxLength: 256 - item_code: - type: - - "null" - - string - title: Item Code - description: >- - Unique code to identify an item. Available when the Credit Invoices and - Subscription Billing Terms features are enabled. - maxLength: 50 - item_id: - type: - - "null" - - string - title: Item ID - description: >- - System-generated unique identifier for an item. Available when the Credit - Invoices and Subscription Billing Terms features are enabled. - maxLength: 13 - external_sku: - type: - - "null" - - string - title: External SKU - description: >- - Optional Stock Keeping Unit assigned to an item. Available when the Credit - Invoices and Subscription Billing Terms features are enabled. - maxLength: 50 - revenue_schedule_type: - type: - - "null" - - string - title: Revenue schedule type - maxLength: 256 - state: - type: string - title: Current state of the line item - description: >- - Pending line items are charges or credits on an account that have not been - applied to an invoice yet. Invoiced line items will always have an - `invoice_id` value. - maxLength: 256 - legacy_category: - type: - - "null" - - string - title: Legacy category - description: > - Category to describe the role of a line item on a legacy invoice: - - - "charges" refers to charges being billed for on this invoice. - - - "credits" refers to refund or proration credits. This portion of the - invoice can be considered a credit memo. - - - "applied_credits" refers to previous credits applied to this invoice. - See their original_line_item_id to determine where the credit first - originated. - - - "carryforwards" can be ignored. They exist to consume any remaining - credit balance. A new credit with the same amount will be created and - placed back on the account. - account: - $ref: "#/schemas/account_details_common" - bill_for_account_id: - type: string - title: Bill For Account ID - maxLength: 13 - description: The UUID of the account responsible for originating the line item. - subscription_id: - type: - - "null" - - string - title: Subscription ID - description: "If the line item is a charge or credit for a subscription, this is its ID." - maxLength: 13 - plan_id: - type: - - "null" - - string - title: Plan ID - description: >- - If the line item is a charge or credit for a plan or add-on, this is the - plan's ID. - maxLength: 13 - plan_code: - type: - - "null" - - string - title: Plan code - description: >- - If the line item is a charge or credit for a plan or add-on, this is the - plan's code. - maxLength: 50 - add_on_id: - type: - - "null" - - string - title: Add-on ID - description: If the line item is a charge or credit for an add-on this is its ID. - maxLength: 13 - add_on_code: - type: - - "null" - - string - title: Add-on code - description: "If the line item is a charge or credit for an add-on, this is its code." - maxLength: 50 - invoice_id: - type: - - "null" - - string - title: Invoice ID - description: Once the line item has been invoiced this will be the invoice's ID. - maxLength: 13 - invoice_number: - type: - - "null" - - string - title: Invoice number - description: >- - Once the line item has been invoiced this will be the invoice's number. If - VAT taxation and the Country Invoice Sequencing feature are enabled, - invoices will have country-specific invoice numbers for invoices billed to - EU countries (ex: FR1001). Non-EU invoices will continue to use the - site-level invoice number sequence. - maxLength: 256 - previous_line_item_id: - type: - - "null" - - string - title: Previous line item ID - description: >- - Will only have a value if the line item is a credit created from a - previous credit, or if the credit was created from a charge refund. - maxLength: 13 - original_line_item_invoice_id: - type: - - "null" - - string - title: Original line item's invoice ID - description: >- - The invoice where the credit originated. Will only have a value if the - line item is a credit created from a previous credit, or if the credit was - created from a charge refund. - maxLength: 13 - origin: - type: string - title: Origin of line item - description: >- - A credit created from an original charge will have the value of the - charge's origin. - maxLength: 256 - accounting_code: - type: string - title: Accounting code - description: >- - Internal accounting code to help you reconcile your revenue to the correct - ledger. Line items created as part of a subscription invoice will use the - plan or add-on's accounting code, otherwise the value will only be present - if you define an accounting code when creating the line item. - maxLength: 20 - product_code: - type: string - title: Product code - description: >- - For plan-related line items this will be the plan's code, for add-on - related line items it will be the add-on's code. For item-related line - items it will be the item's `external_sku`. - maxLength: 50 - credit_reason_code: - type: - - "null" - - string - title: Credit reason code - description: The reason the credit was given when line item is `type=credit`. - default: general - maxLength: 256 - currency: - type: string - title: Currency - description: 3-letter ISO 4217 currency code. - maxLength: 3 - amount: - type: number - format: float - title: Total after discounts and taxes - description: "`(quantity * unit_amount) - (discount + tax)`" - description: - type: string - title: Description - description: >- - Description that appears on the invoice. For subscription related items - this will be filled in automatically. - maxLength: 255 - quantity: - type: integer - title: Quantity - description: >- - This number will be multiplied by the unit amount to compute the subtotal - before any discounts or taxes. - default: 1 - unit_amount: - type: number - format: float - title: Unit amount - description: "Positive amount for a charge, negative amount for a credit." - unit_amount_decimal: - type: - - "null" - - string - title: Unit amount decimal - description: "Positive amount for a charge, negative amount for a credit." - subtotal: - type: number - format: float - title: Total before discounts and taxes - description: "`quantity * unit_amount`" - discount: - type: - - "null" - - number - format: float - title: Discount - description: The discount applied to the line item. - tax: - type: - - "null" - - number - format: float - title: Tax - description: The tax amount for the line item. - taxable: - type: boolean - title: Taxable? - description: "`true` if the line item is taxable, `false` if it is not." - tax_exempt: - type: boolean - title: Tax exempt? - description: >- - `true` exempts tax on charges, `false` applies tax on charges. If not - defined, then defaults to the Plan and Site settings. This attribute does - not work for credits (negative line items). Credits are always applied - post-tax. Pre-tax discounts should use the Coupons feature. - tax_code: - type: - - "null" - - string - title: Tax code - description: >- - Used by Avalara, Vertex, and Recurly’s EU VAT tax feature. The tax code - values are specific to each tax system. If you are using Recurly’s EU VAT - feature you can use `unknown`, `physical`, or `digital`. - maxLength: 50 - tax_info: - $ref: "#/schemas/tax_info_common" - proration_rate: - type: - - "null" - - number - format: float - title: Proration rate - description: >- - When a line item has been prorated, this is the rate of the proration. - Proration rates were made available for line items created after March 30, - 2017. For line items created prior to that date, the proration rate will - be `null`, even if the line item was prorated. - minimum: 0 - maximum: 1 - refund: - type: boolean - title: Refund? - refunded_quantity: - type: - - "null" - - integer - title: Refunded Quantity - description: >- - For refund charges, the quantity being refunded. For non-refund charges, - the total quantity refunded (possibly over multiple refunds). - credit_applied: - type: - - "null" - - number - format: float - title: Credit Applied - description: The amount of credit from this line item that was applied to the invoice. - shipping_address: - type: - - "null" - - object - properties: - id: - type: string - title: Shipping Address ID - maxLength: 13 - readOnly: true - start_date: - type: - - "null" - - string - format: date-time - title: Start date - description: >- - If an end date is present, this is value indicates the beginning of a - billing time range. If no end date is present it indicates billing for a - specific date. - end_date: - type: - - "null" - - string - format: date-time - title: End date - description: "If this date is provided, it indicates the end of a time range." - custom_fields: - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - name: - type: - - "null" - - string - value: - type: - - "null" - - string - created_at: - type: string - format: date-time - title: Created at - description: When the line item was created. - updated_at: - type: string - format: date-time - title: Last updated at - description: When the line item was last changed. - tax_info_common: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - properties: - type: - type: - - "null" - - string - region: - type: - - "null" - - string - rate: - type: - - "null" - - number - tax_details: - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - type: - type: - - "null" - - string - region: - type: - - "null" - - string - rate: - type: - - "null" - - number - tax: - type: - - "null" - - number - name: - type: - - "null" - - string - level: - type: - - "null" - - string - billable: - type: - - "null" - - boolean - coupon_redemptions_common: - $schema: "http://json-schema.org/draft-07/schema#" - type: - - "null" - - object - properties: - id: - type: - - "null" - - string - object: - type: - - "null" - - string - coupon: - type: - - "null" - - object - properties: - id: - type: - - "null" - - string - object: - type: - - "null" - - string - code: - type: - - "null" - - string - name: - type: - - "null" - - string - state: - type: - - "null" - - string - discount: - type: - - "null" - - object - properties: - type: - type: - - "null" - - string - percent: - type: - - "null" - - integer - currencies: - type: - - "null" - - array - items: - type: - - "null" - - object - properties: - currency: - type: - - "null" - - string - amount: - type: - - "null" - - number - trial: - type: - - "null" - - object - properties: - unit: - type: - - "null" - - string - length: - type: - - "null" - - integer - coupon_type: - type: - - "null" - - string - expired_at: - type: - - "null" - - string - format: date-time - state: - type: - - "null" - - string - discounted: - type: - - "null" - - number - created_at: - type: - - "null" - - string - format: date-time diff --git a/airbyte-integrations/connectors/source-recurly/source_recurly/run.py b/airbyte-integrations/connectors/source-recurly/source_recurly/run.py deleted file mode 100644 index 281390e8dfae..000000000000 --- a/airbyte-integrations/connectors/source-recurly/source_recurly/run.py +++ /dev/null @@ -1,15 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - - -import sys - -from airbyte_cdk.entrypoint import launch - -from .source import SourceRecurly - - -def run(): - source = SourceRecurly() - launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-recurly/source_recurly/source.py b/airbyte-integrations/connectors/source-recurly/source_recurly/source.py deleted file mode 100644 index b95ad6327718..000000000000 --- a/airbyte-integrations/connectors/source-recurly/source_recurly/source.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource - -""" -This file provides the necessary constructs to interpret a provided declarative YAML configuration file into -source connector. - -WARNING: Do not modify this file. -""" - - -# Declarative Source -class SourceRecurly(YamlDeclarativeSource): - def __init__(self): - super().__init__(**{"path_to_yaml": "manifest.yaml"}) diff --git a/airbyte-integrations/connectors/source-recurly/unit_tests/__init__.py b/airbyte-integrations/connectors/source-recurly/unit_tests/__init__.py deleted file mode 100644 index 66f6de8cb2bb..000000000000 --- a/airbyte-integrations/connectors/source-recurly/unit_tests/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# diff --git a/airbyte-integrations/connectors/source-recurly/unit_tests/conftest.py b/airbyte-integrations/connectors/source-recurly/unit_tests/conftest.py deleted file mode 100644 index 6e106acb461a..000000000000 --- a/airbyte-integrations/connectors/source-recurly/unit_tests/conftest.py +++ /dev/null @@ -1,124 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# -from pytest import fixture - - -@fixture -def config_pass(): - return { - "api_key": "abcd1234" - } - - -@fixture -def incremental_config_pass(): - return { - "api_key": "abcd1234", - "begin_time": "2024-01-10T00:00:00Z", - "end_time": "2024-07-01T23:59:59Z" - } - - -@fixture -def accounts_url(): - return "https://v3.recurly.com/accounts" - - -@fixture -def account_coupon_redemptions_url(): - return "https://v3.recurly.com/accounts/abc/coupon_redemptions" - - -@fixture -def account_notes_url(): - return "https://v3.recurly.com/accounts/abc/notes" - - -@fixture -def coupons_url(): - return "https://v3.recurly.com/coupons" - - -@fixture -def mock_accounts_response(): - return { - "data": [ - {"address": {"street1": "", "street2": "", "city": "", "region": "", "postal_code": "", "country": "", "phone": ""}, - "bill_to": "self", - "billing_info": {"id": "abcdef", "object": "billing_info", "account_id": "abc", "primary_payment_method": True, - "backup_payment_method": False, "first_name": "test_user", "last_name": "", "company": "", - "address": {"street1": "lorem ipsum", "street2": "", "city": "lorem ipsum", "region": "lorem ipsum", - "postal_code": "85475", "country": "US", "phone": ""}, "vat_number": "", "valid": True, - "payment_method": {"object": "credit_card", "card_type": "Visa", "first_six": "400000", "last_four": "2024", - "cc_bin_country": None, "exp_month": 11, "exp_year": 2020, - "card_network_preference": None}, "created_at": "2024-04-20T15:52:10Z", - "updated_at": "2024-04-20T15:52:10Z", "updated_by": {"ip": None, "country": None}, "fraud": None}, - "cc_emails": "", "code": "test-account1", "company": "", "created_at": "2024-04-20T03:42:49Z", "custom_fields": [], - "deleted_at": None, "dunning_campaign_id": None, "email": "", "exemption_certificate": None, "external_accounts": [], - "first_name": "test_user", "has_active_subscription": False, "has_canceled_subscription": False, - "has_future_subscription": False, - "has_live_subscription": False, "has_past_due_invoice": False, "has_paused_subscription": False, "id": "abc", - "last_name": "", "object": "account", "parent_account_id": None, "preferred_locale": "", "preferred_time_zone": None, - "shipping_addresses": [{"object": "shipping_address", "first_name": "Test", "last_name": "Name", "company": "", "phone": "", - "street1": "first street", "street2": "", "city": "Montana City", "region": "", "postal_code": "58745", - "country": "US", "nickname": "Test Name", "email": "", "vat_number": "", "id": "nwnsbcqp9u6c", - "account_id": "abc", "created_at": "2024-04-20T15:15:04Z", - "updated_at": "2024-04-20T15:15:04Z"}], "state": "active", "tax_exempt": False, - "updated_at": "2024-04-20T15:52:10Z", "username": "test_user", "vat_number": "", "invoice_template_id": None, - "override_business_entity_id": None} - ], - "has_more": False, - } - - -@fixture -def mock_account_coupon_redemptions_response(): - return { - "data": [ - {"id": "abcde", "object": "coupon_redemption", - "account": {"id": "abc", "object": "account", "code": "test-account-2", "email": "", "first_name": "test", - "last_name": "user", "company": "", "parent_account_id": None, "bill_to": "self", "dunning_campaign_id": None}, - "subscription_id": None, - "coupon": {"id": "abcdef", "object": "coupon", "code": "aaja1xpwrotu", "name": "Integration Coupon test number 1", - "state": "redeemable", "max_redemptions": None, "max_redemptions_per_account": None, "duration": "forever", - "temporal_unit": None, "temporal_amount": None, "applies_to_all_plans": True, "applies_to_all_items": False, - "applies_to_non_plan_charges": False, "redemption_resource": "Account", - "discount": {"type": "percent", "percent": 97}, "coupon_type": "single_code", "hosted_page_description": None, - "invoice_description": None, "unique_coupon_codes_count": 0, "unique_code_template": None, - "unique_coupon_code": None, "plans": None, "items": None, "redeem_by": None, "created_at": "2024-04-24T12:14:40Z", - "updated_at": "2024-04-23T02:51:38Z", "expired_at": None}, "state": "inactive", "currency": "USD", - "discounted": 0.0, "created_at": "2024-04-23T02:51:32Z", "updated_at": "2024-04-23T02:51:39Z", - "removed_at": "2024-04-23T02:51:39Z"} - ], - "has_more": False, - } - - -@fixture -def mock_account_notes_response(): - return { - "data": [ - {"id": "abc", "object": "account_note", "account_id": "abc", - "user": {"id": "abcde", "object": "user", "email": "integration-test@airbyte.io", "first_name": "Team", - "last_name": "Airbyte", "time_zone": None, "created_at": "2024-04-21T04:05:42Z", "deleted_at": None}, - "message": "This is a second test note because two notes is better than one.", "created_at": "2024-04-21T20:42:25Z"} - ], - "has_more": False, - } - - -@fixture -def mock_coupons_response(): - return { - "data": [ - {"id": "efg", "object": "coupon", "code": "81818asdasd", "name": "third coupon", "state": "redeemable", - "max_redemptions": None, "max_redemptions_per_account": None, "duration": "forever", "temporal_unit": None, - "temporal_amount": None, "applies_to_all_plans": True, "applies_to_all_items": False, "applies_to_non_plan_charges": False, - "redemption_resource": "Account", "discount": {"type": "percent", "percent": 12}, "coupon_type": "single_code", - "hosted_page_description": None, "invoice_description": None, "unique_coupon_codes_count": 0, "unique_code_template": None, - "unique_coupon_code": None, "plans": None, "items": None, "redeem_by": None, "created_at": "2024-04-24T11:55:23Z", - "updated_at": "2024-04-24T11:55:23Z", "expired_at": None} - ], - "has_more": False, - } diff --git a/airbyte-integrations/connectors/source-recurly/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-recurly/unit_tests/test_streams.py deleted file mode 100644 index 1056f3dcb1cd..000000000000 --- a/airbyte-integrations/connectors/source-recurly/unit_tests/test_streams.py +++ /dev/null @@ -1,79 +0,0 @@ -# -# Copyright (c) 2024 Airbyte, Inc., all rights reserved. -# - -from typing import Any, Mapping - -from airbyte_cdk.sources.streams import Stream -from airbyte_protocol.models import SyncMode -from source_recurly.source import SourceRecurly - - -def get_stream_by_name(stream_name: str, config: Mapping[str, Any]) -> Stream: - source = SourceRecurly() - matches_by_name = [stream_config for stream_config in source.streams(config) if stream_config.name == stream_name] - if not matches_by_name: - raise ValueError("Please provide a valid stream name.") - return matches_by_name[0] - - -class TestStreams: - def test_request_params(config_pass): - stream = get_stream_by_name("accounts", config_pass) - expected_params = {'order': 'asc', 'sort': 'updated_at'} - assert stream.retriever.requester.get_request_params() == expected_params - - def test_read_records(self, requests_mock, config_pass, accounts_url, mock_accounts_response): - requests_mock.get(url=accounts_url, status_code=200, json=mock_accounts_response) - stream = get_stream_by_name("accounts", config_pass) - expected_parsed_records = mock_accounts_response.get("data") - records = [] - for stream_slice in stream.stream_slices(sync_mode=SyncMode.full_refresh): - records.extend(list(stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream_slice))) - records.sort() - expected_parsed_records.sort() - assert len(records) == len(expected_parsed_records) - for i in range(len(records)): - assert sorted(records[i].keys()) == sorted(expected_parsed_records[i].keys()) - - def test_account_coupon_redemptions_read_records(self, requests_mock, config_pass, accounts_url, mock_accounts_response, account_coupon_redemptions_url, mock_account_coupon_redemptions_response): - requests_mock.get(url=accounts_url, status_code=200, json=mock_accounts_response) - requests_mock.get(url=account_coupon_redemptions_url, status_code=200, json=mock_account_coupon_redemptions_response) - stream = get_stream_by_name("account_coupon_redemptions", config_pass) - expected_parsed_records = mock_account_coupon_redemptions_response.get("data") - records = [] - for stream_slice in stream.stream_slices(sync_mode=SyncMode.full_refresh): - records.extend(list(stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream_slice))) - records.sort() - expected_parsed_records.sort() - assert len(records) == len(expected_parsed_records) - for i in range(len(records)): - assert sorted(records[i].keys()) == sorted(expected_parsed_records[i].keys()) - - def test_account_notes_read_records(self, requests_mock, config_pass, accounts_url, mock_accounts_response, account_notes_url, mock_account_notes_response): - requests_mock.get(url=accounts_url, status_code=200, json=mock_accounts_response) - requests_mock.get(url=account_notes_url, status_code=200, json=mock_account_notes_response) - stream = get_stream_by_name("account_notes", config_pass) - expected_parsed_records = mock_account_notes_response.get("data") - records = [] - for stream_slice in stream.stream_slices(sync_mode=SyncMode.full_refresh): - records.extend(list(stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream_slice))) - records.sort() - expected_parsed_records.sort() - assert len(records) == len(expected_parsed_records) - for i in range(len(records)): - assert sorted(records[i].keys()) == sorted(expected_parsed_records[i].keys()) - - - def test_coupons_read_records(self, requests_mock, config_pass, coupons_url, mock_coupons_response): - requests_mock.get(url=coupons_url, status_code=200, json=mock_coupons_response) - stream = get_stream_by_name("coupons", config_pass) - expected_parsed_records = mock_coupons_response.get("data") - records = [] - for stream_slice in stream.stream_slices(sync_mode=SyncMode.full_refresh): - records.extend(list(stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice=stream_slice))) - records.sort() - expected_parsed_records.sort() - assert len(records) == len(expected_parsed_records) - for i in range(len(records)): - assert sorted(records[i].keys()) == sorted(expected_parsed_records[i].keys()) diff --git a/docs/integrations/sources/recurly.md b/docs/integrations/sources/recurly.md index ba9392db25e8..4aa8c225065d 100644 --- a/docs/integrations/sources/recurly.md +++ b/docs/integrations/sources/recurly.md @@ -66,6 +66,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------- | +| 1.2.0 | 2024-11-04 | [47290](https://github.com/airbytehq/airbyte/pull/47290) | Migrate to manifest only format | | 1.1.13 | 2024-11-04 | [48248](https://github.com/airbytehq/airbyte/pull/48248) | Update dependencies | | 1.1.12 | 2024-10-28 | [47067](https://github.com/airbytehq/airbyte/pull/47067) | Update dependencies | | 1.1.11 | 2024-10-12 | [46829](https://github.com/airbytehq/airbyte/pull/46829) | Update dependencies | From da53d9868772b9a0316b1064cfc49ea87e6c2035 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:29:38 +0200 Subject: [PATCH 661/808] =?UTF-8?q?=F0=9F=90=99=20source-castor-edc:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48298)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-castor-edc/metadata.yaml | 4 ++-- docs/integrations/sources/castor-edc.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-castor-edc/metadata.yaml b/airbyte-integrations/connectors/source-castor-edc/metadata.yaml index dd43883893fc..081d2217d6a3 100644 --- a/airbyte-integrations/connectors/source-castor-edc/metadata.yaml +++ b/airbyte-integrations/connectors/source-castor-edc/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-castor-edc connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 2cb45514-7c10-439c-a198-aeb1ddab02cb - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-castor-edc githubIssueLabel: source-castor-edc icon: icon.svg diff --git a/docs/integrations/sources/castor-edc.md b/docs/integrations/sources/castor-edc.md index f79210c2a017..7a48da62e61f 100644 --- a/docs/integrations/sources/castor-edc.md +++ b/docs/integrations/sources/castor-edc.md @@ -43,6 +43,7 @@ Visit `https://YOUR_REGION.castoredc.com/account/settings` for getting your clie | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.4 | 2024-11-04 | [48298](https://github.com/airbytehq/airbyte/pull/48298) | Update dependencies | | 0.0.3 | 2024-10-29 | [47741](https://github.com/airbytehq/airbyte/pull/47741) | Update dependencies | | 0.0.2 | 2024-10-28 | [47644](https://github.com/airbytehq/airbyte/pull/47644) | Update dependencies | | 0.0.1 | 2024-10-12 | [46759](https://github.com/airbytehq/airbyte/pull/46759) | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | From c903199fd949bf0f26daaaa13deedea164a8dc81 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:29:41 +0200 Subject: [PATCH 662/808] =?UTF-8?q?=F0=9F=90=99=20source-ticketmaster:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-04]=20(#48297)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-ticketmaster/metadata.yaml | 4 ++-- docs/integrations/sources/ticketmaster.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-ticketmaster/metadata.yaml b/airbyte-integrations/connectors/source-ticketmaster/metadata.yaml index 2ee4f84c3774..e3b1d7274dbd 100644 --- a/airbyte-integrations/connectors/source-ticketmaster/metadata.yaml +++ b/airbyte-integrations/connectors/source-ticketmaster/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-ticketmaster connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 053eb2fe-5c44-49fc-a1e4-2dc82b09318e - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-ticketmaster githubIssueLabel: source-ticketmaster icon: icon.svg diff --git a/docs/integrations/sources/ticketmaster.md b/docs/integrations/sources/ticketmaster.md index 440f106b81fc..20e4b2c02b42 100644 --- a/docs/integrations/sources/ticketmaster.md +++ b/docs/integrations/sources/ticketmaster.md @@ -26,6 +26,7 @@ Buy and sell tickets online for concerts, sports, theater, family and other even | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [48297](https://github.com/airbytehq/airbyte/pull/48297) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | From 305d585d2a53f359c069a7ea0e86e23a3ac8a3aa Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:29:46 +0200 Subject: [PATCH 663/808] =?UTF-8?q?=F0=9F=90=99=20source-gocardless:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48295)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gocardless/metadata.yaml | 4 ++-- docs/integrations/sources/gocardless.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-gocardless/metadata.yaml b/airbyte-integrations/connectors/source-gocardless/metadata.yaml index c57e56750300..6be2641fccaa 100644 --- a/airbyte-integrations/connectors/source-gocardless/metadata.yaml +++ b/airbyte-integrations/connectors/source-gocardless/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ba15ac82-5c6a-4fb2-bf24-925c23a1180c - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-gocardless githubIssueLabel: source-gocardless icon: gocardless.svg @@ -27,5 +27,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/gocardless.md b/docs/integrations/sources/gocardless.md index b6a98f4ea226..aacbcb5c3500 100644 --- a/docs/integrations/sources/gocardless.md +++ b/docs/integrations/sources/gocardless.md @@ -35,6 +35,7 @@ This source is capable of syncing the following streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------- | +| 0.2.3 | 2024-11-04 | [48295](https://github.com/airbytehq/airbyte/pull/48295) | Update dependencies | | 0.2.2 | 2024-10-29 | [47772](https://github.com/airbytehq/airbyte/pull/47772) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.2.0 | 2024-08-15 | [44145](https://github.com/airbytehq/airbyte/pull/44145) | Refactor connector to manifest-only format | From 158ef21c62d3e9c21692c234940e96d962c7850d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:29:49 +0200 Subject: [PATCH 664/808] =?UTF-8?q?=F0=9F=90=99=20source-iterable:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48294)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-iterable/metadata.yaml | 2 +- .../connectors/source-iterable/poetry.lock | 136 +++++++++--------- .../connectors/source-iterable/pyproject.toml | 2 +- docs/integrations/sources/iterable.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-iterable/metadata.yaml b/airbyte-integrations/connectors/source-iterable/metadata.yaml index 5ee3cd4149fb..4dd1826701da 100644 --- a/airbyte-integrations/connectors/source-iterable/metadata.yaml +++ b/airbyte-integrations/connectors/source-iterable/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2e875208-0c0b-4ee4-9e92-1cb3156ea799 - dockerImageTag: 0.6.17 + dockerImageTag: 0.6.18 dockerRepository: airbyte/source-iterable documentationUrl: https://docs.airbyte.com/integrations/sources/iterable githubIssueLabel: source-iterable diff --git a/airbyte-integrations/connectors/source-iterable/poetry.lock b/airbyte-integrations/connectors/source-iterable/poetry.lock index 7b8e55fff8f5..6ae993a7a45f 100644 --- a/airbyte-integrations/connectors/source-iterable/poetry.lock +++ b/airbyte-integrations/connectors/source-iterable/poetry.lock @@ -694,13 +694,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -922,69 +922,69 @@ test = ["Cython", "greenlet", "ipython", "packaging", "pytest", "pytest-cov", "p [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1543,13 +1543,13 @@ tests = ["coverage (>=6.0.0)", "flake8", "mypy", "pytest (>=7.0.0)", "pytest-asy [[package]] name = "rich" -version = "13.9.3" +version = "13.9.4" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" optional = false python-versions = ">=3.8.0" files = [ - {file = "rich-13.9.3-py3-none-any.whl", hash = "sha256:9836f5096eb2172c9e77df411c1b009bace4193d6a481d534fea75ebba758283"}, - {file = "rich-13.9.3.tar.gz", hash = "sha256:bc1e01b899537598cf02579d2b9f4a415104d3fc439313a7a2c165d76557a08e"}, + {file = "rich-13.9.4-py3-none-any.whl", hash = "sha256:6049d5e6ec054bf2779ab3358186963bac2ea89175919d699e378b99738c2a90"}, + {file = "rich-13.9.4.tar.gz", hash = "sha256:439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098"}, ] [package.dependencies] @@ -1619,13 +1619,13 @@ test = ["pytest", "tornado (>=4.5)", "typeguard"] [[package]] name = "textual" -version = "0.85.1" +version = "0.85.2" description = "Modern Text User Interface framework" optional = false python-versions = "<4.0.0,>=3.8.1" files = [ - {file = "textual-0.85.1-py3-none-any.whl", hash = "sha256:a1a064c67b9b81cfa0c1b14298aa52221855aa4a56ad17a9b89a5594c73657a8"}, - {file = "textual-0.85.1.tar.gz", hash = "sha256:9966214390fad9a84c3f69d49398487897577f5fa788838106dd77bd7babc9cd"}, + {file = "textual-0.85.2-py3-none-any.whl", hash = "sha256:9ccdeb6b8a6a0ff72d497f714934f2e524f2eb67783b459fb08b1339ee537dc0"}, + {file = "textual-0.85.2.tar.gz", hash = "sha256:2a416995c49d5381a81d0a6fd23925cb0e3f14b4f239ed05f35fa3c981bb1df2"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-iterable/pyproject.toml b/airbyte-integrations/connectors/source-iterable/pyproject.toml index 65e924848656..9719ea2ef039 100644 --- a/airbyte-integrations/connectors/source-iterable/pyproject.toml +++ b/airbyte-integrations/connectors/source-iterable/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.17" +version = "0.6.18" name = "source-iterable" description = "Source implementation for Iterable." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/iterable.md b/docs/integrations/sources/iterable.md index c6097195cbc8..5d299668c24c 100644 --- a/docs/integrations/sources/iterable.md +++ b/docs/integrations/sources/iterable.md @@ -83,6 +83,7 @@ The Iterable source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0.6.18 | 2024-11-04 | [48294](https://github.com/airbytehq/airbyte/pull/48294) | Update dependencies | | 0.6.17 | 2024-10-29 | [47803](https://github.com/airbytehq/airbyte/pull/47803) | Update dependencies | | 0.6.16 | 2024-10-28 | [47487](https://github.com/airbytehq/airbyte/pull/47487) | Update dependencies | | 0.6.15 | 2024-10-23 | [47057](https://github.com/airbytehq/airbyte/pull/47057) | Update dependencies | From b34a2680de03e3bbb9fa1e06334bed4305fd7f72 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:29:53 +0200 Subject: [PATCH 665/808] =?UTF-8?q?=F0=9F=90=99=20source-pipedrive:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48293)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pipedrive/metadata.yaml | 2 +- .../connectors/source-pipedrive/poetry.lock | 124 +++++++++--------- .../source-pipedrive/pyproject.toml | 2 +- docs/integrations/sources/pipedrive.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-pipedrive/metadata.yaml b/airbyte-integrations/connectors/source-pipedrive/metadata.yaml index 40d2742ad7e0..08a94554fadd 100644 --- a/airbyte-integrations/connectors/source-pipedrive/metadata.yaml +++ b/airbyte-integrations/connectors/source-pipedrive/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: d8286229-c680-4063-8c59-23b9b391c700 - dockerImageTag: 2.2.25 + dockerImageTag: 2.2.26 dockerRepository: airbyte/source-pipedrive documentationUrl: https://docs.airbyte.com/integrations/sources/pipedrive githubIssueLabel: source-pipedrive diff --git a/airbyte-integrations/connectors/source-pipedrive/poetry.lock b/airbyte-integrations/connectors/source-pipedrive/poetry.lock index 6b6708a000d6..90138ce8cce3 100644 --- a/airbyte-integrations/connectors/source-pipedrive/poetry.lock +++ b/airbyte-integrations/connectors/source-pipedrive/poetry.lock @@ -679,13 +679,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -767,69 +767,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-pipedrive/pyproject.toml b/airbyte-integrations/connectors/source-pipedrive/pyproject.toml index 01871f4c551a..7f2875f284b1 100644 --- a/airbyte-integrations/connectors/source-pipedrive/pyproject.toml +++ b/airbyte-integrations/connectors/source-pipedrive/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.2.25" +version = "2.2.26" name = "source-pipedrive" description = "Source implementation for Pipedrive." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pipedrive.md b/docs/integrations/sources/pipedrive.md index 6ff3d260e04b..57582f687dc7 100644 --- a/docs/integrations/sources/pipedrive.md +++ b/docs/integrations/sources/pipedrive.md @@ -112,6 +112,7 @@ The Pipedrive connector will gracefully handle rate limits. For more information | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------- | +| 2.2.26 | 2024-11-04 | [48293](https://github.com/airbytehq/airbyte/pull/48293) | Update dependencies | | 2.2.25 | 2024-10-29 | [47743](https://github.com/airbytehq/airbyte/pull/47743) | Update dependencies | | 2.2.24 | 2024-10-28 | [47103](https://github.com/airbytehq/airbyte/pull/47103) | Update dependencies | | 2.2.23 | 2024-10-12 | [46822](https://github.com/airbytehq/airbyte/pull/46822) | Update dependencies | From 5f05f20124f1c13f06919ba58ef99fce12082172 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:29:57 +0200 Subject: [PATCH 666/808] =?UTF-8?q?=F0=9F=90=99=20source-leadfeeder:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48292)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-leadfeeder/metadata.yaml | 4 ++-- docs/integrations/sources/leadfeeder.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml b/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml index 682c9e7bdbad..079a66e069a1 100644 --- a/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml +++ b/airbyte-integrations/connectors/source-leadfeeder/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-leadfeeder connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: daa0fe89-6e72-479e-a314-5e65cfc7103c - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-leadfeeder githubIssueLabel: source-leadfeeder icon: icon.svg diff --git a/docs/integrations/sources/leadfeeder.md b/docs/integrations/sources/leadfeeder.md index 7f0e64d13121..f63242735f58 100644 --- a/docs/integrations/sources/leadfeeder.md +++ b/docs/integrations/sources/leadfeeder.md @@ -22,6 +22,7 @@ | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.4 | 2024-11-04 | [48292](https://github.com/airbytehq/airbyte/pull/48292) | Update dependencies | | 0.0.3 | 2024-10-29 | [47916](https://github.com/airbytehq/airbyte/pull/47916) | Update dependencies | | 0.0.2 | 2024-10-28 | [47617](https://github.com/airbytehq/airbyte/pull/47617) | Update dependencies | | 0.0.1 | 2024-08-21 | | Initial release by natikgadzhi via Connector Builder | From aa1bcc5398cbdee57a810f7adeb2632836030f6a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:00 +0200 Subject: [PATCH 667/808] =?UTF-8?q?=F0=9F=90=99=20source-flexport:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48291)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-flexport/metadata.yaml | 4 ++-- docs/integrations/sources/flexport.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-flexport/metadata.yaml b/airbyte-integrations/connectors/source-flexport/metadata.yaml index b988f18d5145..ca132cab30e1 100644 --- a/airbyte-integrations/connectors/source-flexport/metadata.yaml +++ b/airbyte-integrations/connectors/source-flexport/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: f95337f1-2ad1-4baf-922f-2ca9152de630 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-flexport githubIssueLabel: source-flexport icon: flexport.svg @@ -32,5 +32,5 @@ data: ql: 100 supportLevel: community connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/flexport.md b/docs/integrations/sources/flexport.md index 641bac7a6673..61b33f4b9008 100644 --- a/docs/integrations/sources/flexport.md +++ b/docs/integrations/sources/flexport.md @@ -49,6 +49,7 @@ Authentication uses a pre-created API token which can be [created in the UI](htt | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------ | +| 0.3.3 | 2024-11-04 | [48291](https://github.com/airbytehq/airbyte/pull/48291) | Update dependencies | | 0.3.2 | 2024-10-29 | [47898](https://github.com/airbytehq/airbyte/pull/47898) | Update dependencies | | 0.3.1 | 2024-10-28 | [47580](https://github.com/airbytehq/airbyte/pull/47580) | Update dependencies | | 0.3.0 | 2024-10-05 | [46416](https://github.com/airbytehq/airbyte/pull/46416) | Migrate to Manifest-only CDK | From f6538d5b2a0f4a082a973a8bd3a2f917c5f21f78 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:04 +0200 Subject: [PATCH 668/808] =?UTF-8?q?=F0=9F=90=99=20source-uservoice:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48290)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-uservoice/metadata.yaml | 4 ++-- docs/integrations/sources/uservoice.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-uservoice/metadata.yaml b/airbyte-integrations/connectors/source-uservoice/metadata.yaml index 91ef46417888..1d9a7259e9d1 100644 --- a/airbyte-integrations/connectors/source-uservoice/metadata.yaml +++ b/airbyte-integrations/connectors/source-uservoice/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-uservoice connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 6ad41bae-c3a3-4a8e-abfd-c75b8604c083 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-uservoice githubIssueLabel: source-uservoice icon: icon.svg diff --git a/docs/integrations/sources/uservoice.md b/docs/integrations/sources/uservoice.md index b385d2356186..a24cccd0ea4a 100644 --- a/docs/integrations/sources/uservoice.md +++ b/docs/integrations/sources/uservoice.md @@ -53,6 +53,7 @@ Airbyte connector for UserVoice.com allows users to efficiently extract data fro | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48290](https://github.com/airbytehq/airbyte/pull/48290) | Update dependencies | | 0.0.2 | 2024-10-28 | [47500](https://github.com/airbytehq/airbyte/pull/47500) | Update dependencies | | 0.0.1 | 2024-10-16 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 7172770399bc354a9eda42fada5420de7e900a0a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:08 +0200 Subject: [PATCH 669/808] =?UTF-8?q?=F0=9F=90=99=20source-productive:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48289)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-productive/metadata.yaml | 4 ++-- docs/integrations/sources/productive.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-productive/metadata.yaml b/airbyte-integrations/connectors/source-productive/metadata.yaml index b1460dd7e122..c1f4e83db0a6 100644 --- a/airbyte-integrations/connectors/source-productive/metadata.yaml +++ b/airbyte-integrations/connectors/source-productive/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-productive connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 51766ab3-df25-4c8c-98a4-647440d0dfbb - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-productive githubIssueLabel: source-productive icon: icon.svg diff --git a/docs/integrations/sources/productive.md b/docs/integrations/sources/productive.md index 8aa93a29bb54..b18871c98d43 100644 --- a/docs/integrations/sources/productive.md +++ b/docs/integrations/sources/productive.md @@ -83,6 +83,7 @@ Visit `https://app.productive.io/ORG_ID-UUID/settings/api-integrations` for gett | Version | Date | Pull Request | Subject | | ------------------ | ------------ | -- | ---------------- | +| 0.0.3 | 2024-11-04 | [48289](https://github.com/airbytehq/airbyte/pull/48289) | Update dependencies | | 0.0.2 | 2024-10-28 | [47656](https://github.com/airbytehq/airbyte/pull/47656) | Update dependencies | | 0.0.1 | 2024-09-11 | [45401](https://github.com/airbytehq/airbyte/pull/45401) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 955a2fb0687053893dcd6cd684c49922719860e0 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:13 +0200 Subject: [PATCH 670/808] =?UTF-8?q?=F0=9F=90=99=20source-workramp:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48287)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-workramp/metadata.yaml | 4 ++-- docs/integrations/sources/workramp.md | 23 ++++++++++--------- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/airbyte-integrations/connectors/source-workramp/metadata.yaml b/airbyte-integrations/connectors/source-workramp/metadata.yaml index 0dd3e85a3d0c..96cd471d387c 100644 --- a/airbyte-integrations/connectors/source-workramp/metadata.yaml +++ b/airbyte-integrations/connectors/source-workramp/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/source-declarative-manifest:4.4.3@sha256:8937b693c7e01087f6e86e683826ac20f160f7952b8f0a13cbf4f9bfdd7af570 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 05b0bce2-4ec4-4534-bb1a-5d0127bd91b7 - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-workramp githubIssueLabel: source-workramp icon: workramp.svg diff --git a/docs/integrations/sources/workramp.md b/docs/integrations/sources/workramp.md index 1eaaf1855499..2281537a74c5 100644 --- a/docs/integrations/sources/workramp.md +++ b/docs/integrations/sources/workramp.md @@ -40,17 +40,18 @@ The Workramp connector should not run into Workramp API limitations under normal | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :---------------------------- | -| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | -| 0.2.0 | 2024-08-09 | [43451](https://github.com/airbytehq/airbyte/pull/43451) | Refactor connector to manifest-only format | -| 0.1.10 | 2024-08-03 | [43207](https://github.com/airbytehq/airbyte/pull/43207) | Update dependencies | -| 0.1.9 | 2024-07-20 | [42202](https://github.com/airbytehq/airbyte/pull/42202) | Update dependencies | -| 0.1.8 | 2024-07-13 | [41473](https://github.com/airbytehq/airbyte/pull/41473) | Update dependencies | -| 0.1.7 | 2024-07-09 | [41116](https://github.com/airbytehq/airbyte/pull/41116) | Update dependencies | -| 0.1.6 | 2024-07-06 | [40845](https://github.com/airbytehq/airbyte/pull/40845) | Update dependencies | -| 0.1.5 | 2024-06-25 | [40388](https://github.com/airbytehq/airbyte/pull/40388) | Update dependencies | -| 0.1.4 | 2024-06-22 | [39967](https://github.com/airbytehq/airbyte/pull/39967) | Update dependencies | -| 0.1.3 | 2024-06-12 | [38741](https://github.com/airbytehq/airbyte/pull/38741) | Make connector compatible with Builder | -| 0.1.2 | 2024-06-04 | [38941](https://github.com/airbytehq/airbyte/pull/38941) | [autopull] Upgrade base image to v1.2.1 | +| 0.2.2 | 2024-11-04 | [48287](https://github.com/airbytehq/airbyte/pull/48287) | Update dependencies | +| 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | +| 0.2.0 | 2024-08-09 | [43451](https://github.com/airbytehq/airbyte/pull/43451) | Refactor connector to manifest-only format | +| 0.1.10 | 2024-08-03 | [43207](https://github.com/airbytehq/airbyte/pull/43207) | Update dependencies | +| 0.1.9 | 2024-07-20 | [42202](https://github.com/airbytehq/airbyte/pull/42202) | Update dependencies | +| 0.1.8 | 2024-07-13 | [41473](https://github.com/airbytehq/airbyte/pull/41473) | Update dependencies | +| 0.1.7 | 2024-07-09 | [41116](https://github.com/airbytehq/airbyte/pull/41116) | Update dependencies | +| 0.1.6 | 2024-07-06 | [40845](https://github.com/airbytehq/airbyte/pull/40845) | Update dependencies | +| 0.1.5 | 2024-06-25 | [40388](https://github.com/airbytehq/airbyte/pull/40388) | Update dependencies | +| 0.1.4 | 2024-06-22 | [39967](https://github.com/airbytehq/airbyte/pull/39967) | Update dependencies | +| 0.1.3 | 2024-06-12 | [38741](https://github.com/airbytehq/airbyte/pull/38741) | Make connector compatible with Builder | +| 0.1.2 | 2024-06-04 | [38941](https://github.com/airbytehq/airbyte/pull/38941) | [autopull] Upgrade base image to v1.2.1 | | 0.1.1 | 2024-05-20 | [38419](https://github.com/airbytehq/airbyte/pull/38419) | [autopull] base image + poetry + up_to_date | | 0.1.0 | 2022-01-02 | [18843](https://github.com/airbytehq/airbyte/pull/18843) | Add Workramp Source Connector | From 7c5711e282e68a92ad716976e2ac95eabe7a4564 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:20 +0200 Subject: [PATCH 671/808] =?UTF-8?q?=F0=9F=90=99=20source-countercyclical:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48283)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-countercyclical/metadata.yaml | 4 ++-- docs/integrations/sources/countercyclical.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-countercyclical/metadata.yaml b/airbyte-integrations/connectors/source-countercyclical/metadata.yaml index 9807c68fa5aa..9f51d0600d81 100644 --- a/airbyte-integrations/connectors/source-countercyclical/metadata.yaml +++ b/airbyte-integrations/connectors/source-countercyclical/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-countercyclical connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: cd671e85-accc-4f85-8f79-b55294e95a11 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-countercyclical githubIssueLabel: source-countercyclical icon: icon.svg diff --git a/docs/integrations/sources/countercyclical.md b/docs/integrations/sources/countercyclical.md index 7c4ee6be62cb..daa48ef85a3a 100644 --- a/docs/integrations/sources/countercyclical.md +++ b/docs/integrations/sources/countercyclical.md @@ -21,6 +21,7 @@ Countercyclical is the fully end-to-end financial intelligence platform designed | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48283](https://github.com/airbytehq/airbyte/pull/48283) | Update dependencies | | 0.0.2 | 2024-10-28 | [47557](https://github.com/airbytehq/airbyte/pull/47557) | Update dependencies | | 0.0.1 | 2024-10-06 | | Initial release by [@williamleiby](https://github.com/williamleiby) via Connector Builder | From a45cf8b66cba99f132033562bb418905e52bfbd7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:25 +0200 Subject: [PATCH 672/808] =?UTF-8?q?=F0=9F=90=99=20destination-google-sheet?= =?UTF-8?q?s:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48281)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-google-sheets/metadata.yaml | 2 +- .../destination-google-sheets/poetry.lock | 18 +++++++++--------- .../destination-google-sheets/pyproject.toml | 2 +- .../integrations/destinations/google-sheets.md | 1 + 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml b/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml index ac8bced043cb..998e8a9245cf 100644 --- a/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml +++ b/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: destination definitionId: a4cbd2d1-8dbe-4818-b8bc-b90ad782d12a - dockerImageTag: 0.2.28 + dockerImageTag: 0.2.29 dockerRepository: airbyte/destination-google-sheets githubIssueLabel: destination-google-sheets icon: google-sheets.svg diff --git a/airbyte-integrations/connectors/destination-google-sheets/poetry.lock b/airbyte-integrations/connectors/destination-google-sheets/poetry.lock index 1de77df64fb8..3b59eb9d07e7 100644 --- a/airbyte-integrations/connectors/destination-google-sheets/poetry.lock +++ b/airbyte-integrations/connectors/destination-google-sheets/poetry.lock @@ -318,13 +318,13 @@ files = [ [[package]] name = "google-api-core" -version = "2.21.0" +version = "2.22.0" description = "Google API client core library" optional = false python-versions = ">=3.7" files = [ - {file = "google_api_core-2.21.0-py3-none-any.whl", hash = "sha256:6869eacb2a37720380ba5898312af79a4d30b8bca1548fb4093e0697dc4bdf5d"}, - {file = "google_api_core-2.21.0.tar.gz", hash = "sha256:4a152fd11a9f774ea606388d423b68aa7e6d6a0ffe4c8266f74979613ec09f81"}, + {file = "google_api_core-2.22.0-py3-none-any.whl", hash = "sha256:a6652b6bd51303902494998626653671703c420f6f4c88cfd3f50ed723e9d021"}, + {file = "google_api_core-2.22.0.tar.gz", hash = "sha256:26f8d76b96477db42b55fd02a33aae4a42ec8b86b98b94969b7333a2c828bf35"}, ] [package.dependencies] @@ -1154,23 +1154,23 @@ pyasn1 = ">=0.1.3" [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml b/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml index 6373bf960d8f..9c5cb8e05245 100644 --- a/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml +++ b/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.28" +version = "0.2.29" name = "destination-google-sheets" description = "Destination implementation for Google Sheets." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/google-sheets.md b/docs/integrations/destinations/google-sheets.md index 93102b7db1b1..37be06455323 100644 --- a/docs/integrations/destinations/google-sheets.md +++ b/docs/integrations/destinations/google-sheets.md @@ -155,6 +155,7 @@ EXAMPLE: | Version | Date | Pull Request | Subject | |---------| ---------- | -------------------------------------------------------- | ---------------------------------------------------------- | +| 0.2.29 | 2024-11-04 | [48281](https://github.com/airbytehq/airbyte/pull/48281) | Update dependencies | | 0.2.28 | 2024-10-28 | [47042](https://github.com/airbytehq/airbyte/pull/47042) | Update dependencies | | 0.2.27 | 2024-10-12 | [46772](https://github.com/airbytehq/airbyte/pull/46772) | Update dependencies | | 0.2.26 | 2024-10-05 | [46464](https://github.com/airbytehq/airbyte/pull/46464) | Update dependencies | From 5c4a00e9ae3688601df98adc3c0d8d7cdad6df7e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:30 +0200 Subject: [PATCH 673/808] =?UTF-8?q?=F0=9F=90=99=20source-pinterest:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48280)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pinterest/metadata.yaml | 2 +- .../connectors/source-pinterest/poetry.lock | 124 +++++++++--------- .../source-pinterest/pyproject.toml | 2 +- docs/integrations/sources/pinterest.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-pinterest/metadata.yaml b/airbyte-integrations/connectors/source-pinterest/metadata.yaml index c76e7ea5f578..6ce01139a969 100644 --- a/airbyte-integrations/connectors/source-pinterest/metadata.yaml +++ b/airbyte-integrations/connectors/source-pinterest/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5cb7e5fe-38c2-11ec-8d3d-0242ac130003 - dockerImageTag: 2.0.21 + dockerImageTag: 2.0.22 dockerRepository: airbyte/source-pinterest connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 diff --git a/airbyte-integrations/connectors/source-pinterest/poetry.lock b/airbyte-integrations/connectors/source-pinterest/poetry.lock index 8f54d3644dfe..12b0dc46a22f 100644 --- a/airbyte-integrations/connectors/source-pinterest/poetry.lock +++ b/airbyte-integrations/connectors/source-pinterest/poetry.lock @@ -717,13 +717,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -830,69 +830,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-pinterest/pyproject.toml b/airbyte-integrations/connectors/source-pinterest/pyproject.toml index 0212a1b54d5a..94a0676f9709 100644 --- a/airbyte-integrations/connectors/source-pinterest/pyproject.toml +++ b/airbyte-integrations/connectors/source-pinterest/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.21" +version = "2.0.22" name = "source-pinterest" description = "Source implementation for Pinterest." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pinterest.md b/docs/integrations/sources/pinterest.md index 0071ef4de9a3..5fff494af99f 100644 --- a/docs/integrations/sources/pinterest.md +++ b/docs/integrations/sources/pinterest.md @@ -203,6 +203,7 @@ The connector is restricted by the Pinterest | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 2.0.22 | 2024-11-04 | [48280](https://github.com/airbytehq/airbyte/pull/48280) | Update dependencies | | 2.0.21 | 2024-10-29 | [47074](https://github.com/airbytehq/airbyte/pull/47074) | Update dependencies | | 2.0.20 | 2024-10-12 | [46815](https://github.com/airbytehq/airbyte/pull/46815) | Update dependencies | | 2.0.19 | 2024-10-05 | [46482](https://github.com/airbytehq/airbyte/pull/46482) | Update dependencies | From 1b0fa08cd966136c90a37170c68907f2bad2f882 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:34 +0200 Subject: [PATCH 674/808] =?UTF-8?q?=F0=9F=90=99=20source-calendly:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48279)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-calendly/metadata.yaml | 4 ++-- docs/integrations/sources/calendly.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-calendly/metadata.yaml b/airbyte-integrations/connectors/source-calendly/metadata.yaml index ae3f2287ba5a..86fae2b41a10 100644 --- a/airbyte-integrations/connectors/source-calendly/metadata.yaml +++ b/airbyte-integrations/connectors/source-calendly/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-calendly connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: b8f2cbee-b073-4dd8-9b80-97d7bae967a4 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-calendly githubIssueLabel: source-calendly icon: icon.svg diff --git a/docs/integrations/sources/calendly.md b/docs/integrations/sources/calendly.md index 62b25401a85b..77bc774af60a 100644 --- a/docs/integrations/sources/calendly.md +++ b/docs/integrations/sources/calendly.md @@ -32,6 +32,7 @@ Incremental sync in `scheduled_events` uses `start_time` as a cursor. This may l | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [48279](https://github.com/airbytehq/airbyte/pull/48279) | Update dependencies | | 0.0.2 | 2024-10-28 | [47568](https://github.com/airbytehq/airbyte/pull/47568) | Update dependencies | | 0.0.1 | 2024-09-01 | | Initial release by [@natikgadzhi](https://github.com/natikgadzhi) via Connector Builder | From 64dfa786af12803e4492c8ef770753dbc558d6a4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:38 +0200 Subject: [PATCH 675/808] =?UTF-8?q?=F0=9F=90=99=20source-survicate:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48278)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-survicate/metadata.yaml | 4 ++-- docs/integrations/sources/survicate.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-survicate/metadata.yaml b/airbyte-integrations/connectors/source-survicate/metadata.yaml index a9689f274b96..50c6cd271c40 100644 --- a/airbyte-integrations/connectors/source-survicate/metadata.yaml +++ b/airbyte-integrations/connectors/source-survicate/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-survicate connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 5770c58b-3288-4fa0-a968-bb8a6607fae1 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-survicate githubIssueLabel: source-survicate icon: icon.svg diff --git a/docs/integrations/sources/survicate.md b/docs/integrations/sources/survicate.md index c41e8118c96f..29dfcaf86b45 100644 --- a/docs/integrations/sources/survicate.md +++ b/docs/integrations/sources/survicate.md @@ -33,6 +33,7 @@ Refer `https://developers.survicate.com/data-export/setup/#authentication` for m | Version | Date | Pull Request | Subject | | ------------------ | ------------ | -- | ---------------- | +| 0.0.4 | 2024-11-04 | [48278](https://github.com/airbytehq/airbyte/pull/48278) | Update dependencies | | 0.0.3 | 2024-10-29 | [47884](https://github.com/airbytehq/airbyte/pull/47884) | Update dependencies | | 0.0.2 | 2024-10-28 | [47494](https://github.com/airbytehq/airbyte/pull/47494) | Update dependencies | | 0.0.1 | 2024-09-05 | [45163](https://github.com/airbytehq/airbyte/pull/45163) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From ad2959bae4364b6a0e919bdf8e7f7fe163b99292 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:41 +0200 Subject: [PATCH 676/808] =?UTF-8?q?=F0=9F=90=99=20source-free-agent-connec?= =?UTF-8?q?tor:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48277)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-free-agent-connector/metadata.yaml | 4 ++-- docs/integrations/sources/free-agent-connector.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-free-agent-connector/metadata.yaml b/airbyte-integrations/connectors/source-free-agent-connector/metadata.yaml index fd94c1abc5b9..5bc81fb0815f 100644 --- a/airbyte-integrations/connectors/source-free-agent-connector/metadata.yaml +++ b/airbyte-integrations/connectors/source-free-agent-connector/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-free-agent-connector connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: e3b1e503-2777-460c-80ef-5d6b41367858 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-free-agent-connector githubIssueLabel: source-free-agent-connector icon: icon.svg diff --git a/docs/integrations/sources/free-agent-connector.md b/docs/integrations/sources/free-agent-connector.md index c48b7d7f1983..aa4d60bc51dd 100644 --- a/docs/integrations/sources/free-agent-connector.md +++ b/docs/integrations/sources/free-agent-connector.md @@ -53,6 +53,7 @@ Download all your data from FreeAgent, a friendly and easy to use cloud based ac | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [48277](https://github.com/airbytehq/airbyte/pull/48277) | Update dependencies | | 0.0.2 | 2024-10-29 | [47874](https://github.com/airbytehq/airbyte/pull/47874) | Update dependencies | | 0.0.1 | 2024-09-24 | | Initial release by [@craigbloodworth](https://github.com/craigbloodworth) via Connector Builder | From ee6273eec08f76789d4c48a637328d944d68c478 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:45 +0200 Subject: [PATCH 677/808] =?UTF-8?q?=F0=9F=90=99=20source-illumina-basespac?= =?UTF-8?q?e:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48276)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-illumina-basespace/metadata.yaml | 4 ++-- docs/integrations/sources/illumina-basespace.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml b/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml index d0547b2a64c7..ed85c73229cc 100644 --- a/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml +++ b/airbyte-integrations/connectors/source-illumina-basespace/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-illumina-basespace connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 62e9c4f2-a768-48f7-a8bf-d54bf1d96425 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-illumina-basespace githubIssueLabel: source-illumina-basespace icon: icon.svg diff --git a/docs/integrations/sources/illumina-basespace.md b/docs/integrations/sources/illumina-basespace.md index a04602b8e33c..8c5fb6ff10cb 100644 --- a/docs/integrations/sources/illumina-basespace.md +++ b/docs/integrations/sources/illumina-basespace.md @@ -28,6 +28,7 @@ Connector for the Basespace v1 API. This can be used to extract data on projects | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.4 | 2024-11-04 | [48276](https://github.com/airbytehq/airbyte/pull/48276) | Update dependencies | | 0.0.3 | 2024-10-29 | [47907](https://github.com/airbytehq/airbyte/pull/47907) | Update dependencies | | 0.0.2 | 2024-10-28 | [47609](https://github.com/airbytehq/airbyte/pull/47609) | Update dependencies | | 0.0.1 | 2024-09-23 | | Initial release by [@FilipeJesus](https://github.com/FilipeJesus) via Connector Builder | From b811d6c2f05aaa2e2cb67f0946b3113f0bc4ff9d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:48 +0200 Subject: [PATCH 678/808] =?UTF-8?q?=F0=9F=90=99=20source-whisky-hunter:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-11-04]=20(#48275)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-whisky-hunter/metadata.yaml | 4 ++-- docs/integrations/sources/whisky-hunter.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml b/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml index 8c00cdbe34c2..807a3511ec6a 100644 --- a/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml +++ b/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: e65f84c0-7598-458a-bfac-f770c381ff5d - dockerImageTag: 0.2.3 + dockerImageTag: 0.2.4 dockerRepository: airbyte/source-whisky-hunter githubIssueLabel: source-whisky-hunter icon: whiskyhunter.svg @@ -39,5 +39,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/whisky-hunter.md b/docs/integrations/sources/whisky-hunter.md index 1b342cdf4307..07380c58983a 100644 --- a/docs/integrations/sources/whisky-hunter.md +++ b/docs/integrations/sources/whisky-hunter.md @@ -38,6 +38,7 @@ There is no published rate limit. However, since this data updates infrequently, | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------- | +| 0.2.4 | 2024-11-04 | [48275](https://github.com/airbytehq/airbyte/pull/48275) | Update dependencies | | 0.2.3 | 2024-10-29 | [47795](https://github.com/airbytehq/airbyte/pull/47795) | Update dependencies | | 0.2.2 | 2024-10-28 | [47555](https://github.com/airbytehq/airbyte/pull/47555) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | From 6d47b28db2c381e30cafcc99480c9c92a2e1c9af Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:52 +0200 Subject: [PATCH 679/808] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-onedriv?= =?UTF-8?q?e:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48274)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-microsoft-onedrive/metadata.yaml | 2 +- .../source-microsoft-onedrive/poetry.lock | 156 +++++++++--------- .../source-microsoft-onedrive/pyproject.toml | 2 +- .../sources/microsoft-onedrive.md | 1 + 4 files changed, 81 insertions(+), 80 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml index bf95335c3a9d..9f6a0b0f6d54 100644 --- a/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml @@ -20,7 +20,7 @@ data: connectorSubtype: file connectorType: source definitionId: 01d1c685-fd4a-4837-8f4c-93fe5a0d2188 - dockerImageTag: 0.2.22 + dockerImageTag: 0.2.23 dockerRepository: airbyte/source-microsoft-onedrive githubIssueLabel: source-microsoft-onedrive icon: microsoft-onedrive.svg diff --git a/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock b/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock index 787969028296..0bd1ddc20fea 100644 --- a/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock +++ b/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock @@ -754,13 +754,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "huggingface-hub" -version = "0.26.1" +version = "0.26.2" description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" optional = false python-versions = ">=3.8.0" files = [ - {file = "huggingface_hub-0.26.1-py3-none-any.whl", hash = "sha256:5927a8fc64ae68859cd954b7cc29d1c8390a5e15caba6d3d349c973be8fdacf3"}, - {file = "huggingface_hub-0.26.1.tar.gz", hash = "sha256:414c0d9b769eecc86c70f9d939d0f48bb28e8461dd1130021542eff0212db890"}, + {file = "huggingface_hub-0.26.2-py3-none-any.whl", hash = "sha256:98c2a5a8e786c7b2cb6fdeb2740893cba4d53e312572ed3d8afafda65b128c46"}, + {file = "huggingface_hub-0.26.2.tar.gz", hash = "sha256:b100d853465d965733964d123939ba287da60a547087783ddff8a323f340332b"}, ] [package.dependencies] @@ -971,13 +971,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1231,13 +1231,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.23.0" +version = "3.23.1" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.9" files = [ - {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, - {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, + {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, + {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, ] [package.dependencies] @@ -1245,7 +1245,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "simplejson"] [[package]] @@ -1370,69 +1370,69 @@ ntlmprovider = ["requests-ntlm"] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -2470,23 +2470,23 @@ torch = ["safetensors[numpy]", "torch (>=1.10)"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -2711,13 +2711,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml b/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml index b3b60c10f1c3..68e38ee7eb4c 100644 --- a/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml +++ b/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.22" +version = "0.2.23" name = "source-microsoft-onedrive" description = "Source implementation for Microsoft OneDrive." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/microsoft-onedrive.md b/docs/integrations/sources/microsoft-onedrive.md index bd70c1dad2e1..8ed72cefb69a 100644 --- a/docs/integrations/sources/microsoft-onedrive.md +++ b/docs/integrations/sources/microsoft-onedrive.md @@ -259,6 +259,7 @@ The connector is restricted by normal Microsoft Graph [requests limitation](http | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------| +| 0.2.23 | 2024-11-04 | [48274](https://github.com/airbytehq/airbyte/pull/48274) | Update dependencies | | 0.2.22 | 2024-10-28 | [47060](https://github.com/airbytehq/airbyte/pull/47060) | Update dependencies | | 0.2.21 | 2024-10-12 | [46177](https://github.com/airbytehq/airbyte/pull/46177) | Update dependencies | | 0.2.20 | 2024-09-21 | [45728](https://github.com/airbytehq/airbyte/pull/45728) | Update dependencies | From 1aef65c1031216fd2d917f9ab7251e9ead5ed70a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:30:58 +0200 Subject: [PATCH 680/808] =?UTF-8?q?=F0=9F=90=99=20destination-databend:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-11-04]=20(#48272)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-databend/metadata.yaml | 2 +- .../destination-databend/poetry.lock | 20 +++++++++---------- .../destination-databend/pyproject.toml | 2 +- docs/integrations/destinations/databend.md | 1 + 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/airbyte-integrations/connectors/destination-databend/metadata.yaml b/airbyte-integrations/connectors/destination-databend/metadata.yaml index ba8fd51560f0..2d0f1788782b 100644 --- a/airbyte-integrations/connectors/destination-databend/metadata.yaml +++ b/airbyte-integrations/connectors/destination-databend/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 302e4d8e-08d3-4098-acd4-ac67ca365b88 - dockerImageTag: 0.1.27 + dockerImageTag: 0.1.28 dockerRepository: airbyte/destination-databend githubIssueLabel: destination-databend icon: databend.svg diff --git a/airbyte-integrations/connectors/destination-databend/poetry.lock b/airbyte-integrations/connectors/destination-databend/poetry.lock index 26c68840ff9b..c6c0a3845e34 100644 --- a/airbyte-integrations/connectors/destination-databend/poetry.lock +++ b/airbyte-integrations/connectors/destination-databend/poetry.lock @@ -614,13 +614,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.23.0" +version = "3.23.1" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.9" files = [ - {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, - {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, + {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, + {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, ] [package.dependencies] @@ -628,7 +628,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "simplejson"] [[package]] @@ -1019,23 +1019,23 @@ yaml = ["pyyaml (>=6.0.1)"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-databend/pyproject.toml b/airbyte-integrations/connectors/destination-databend/pyproject.toml index 585d8bf439b4..1f4bace1c678 100644 --- a/airbyte-integrations/connectors/destination-databend/pyproject.toml +++ b/airbyte-integrations/connectors/destination-databend/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.27" +version = "0.1.28" name = "destination-databend" description = "Destination implementation for Databend." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/databend.md b/docs/integrations/destinations/databend.md index 3879baf392dd..5a5c4423b240 100644 --- a/docs/integrations/destinations/databend.md +++ b/docs/integrations/destinations/databend.md @@ -72,6 +72,7 @@ And the [Databend Cloud](https://app.databend.com/) will only support databend v | Version | Date | Pull Request | Subject | | :------------------------------------------------------- | :--------------------------------------- | :-------------------------------------------------------- | :------------------------------------------------------- | ----------- | +| 0.1.28 | 2024-11-04 | [48272](https://github.com/airbytehq/airbyte/pull/48272) | Update dependencies | | 0.1.27 | 2024-10-28 | [47069](https://github.com/airbytehq/airbyte/pull/47069) | Update dependencies | | 0.1.26 | 2024-10-12 | [46811](https://github.com/airbytehq/airbyte/pull/46811) | Update dependencies | | 0.1.25 | 2024-10-05 | [46418](https://github.com/airbytehq/airbyte/pull/46418) | Update dependencies | From 21de0cb59f42ccf679c82ff355003dc752c2d511 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:31:02 +0200 Subject: [PATCH 681/808] =?UTF-8?q?=F0=9F=90=99=20source-linnworks:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48271)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-linnworks/metadata.yaml | 2 +- .../connectors/source-linnworks/poetry.lock | 166 +++++++++--------- .../source-linnworks/pyproject.toml | 2 +- docs/integrations/sources/linnworks.md | 1 + 4 files changed, 86 insertions(+), 85 deletions(-) diff --git a/airbyte-integrations/connectors/source-linnworks/metadata.yaml b/airbyte-integrations/connectors/source-linnworks/metadata.yaml index 133748bae7cb..d4b626d51e08 100644 --- a/airbyte-integrations/connectors/source-linnworks/metadata.yaml +++ b/airbyte-integrations/connectors/source-linnworks/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7b86879e-26c5-4ef6-a5ce-2be5c7b46d1e - dockerImageTag: 0.1.32 + dockerImageTag: 0.1.33 dockerRepository: airbyte/source-linnworks documentationUrl: https://docs.airbyte.com/integrations/sources/linnworks githubIssueLabel: source-linnworks diff --git a/airbyte-integrations/connectors/source-linnworks/poetry.lock b/airbyte-integrations/connectors/source-linnworks/poetry.lock index e4159ab46d69..9cad2a1e3eac 100644 --- a/airbyte-integrations/connectors/source-linnworks/poetry.lock +++ b/airbyte-integrations/connectors/source-linnworks/poetry.lock @@ -1311,93 +1311,93 @@ files = [ [[package]] name = "yarl" -version = "1.17.0" +version = "1.17.1" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, - {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, - {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, - {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, - {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, - {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, - {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, - {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, - {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, - {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, - {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, - {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, - {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-linnworks/pyproject.toml b/airbyte-integrations/connectors/source-linnworks/pyproject.toml index c5e8beef35f1..934dadf663e1 100644 --- a/airbyte-integrations/connectors/source-linnworks/pyproject.toml +++ b/airbyte-integrations/connectors/source-linnworks/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.32" +version = "0.1.33" name = "source-linnworks" description = "Source implementation for Linnworks." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/linnworks.md b/docs/integrations/sources/linnworks.md index 77f3cc028b70..998cff642b30 100644 --- a/docs/integrations/sources/linnworks.md +++ b/docs/integrations/sources/linnworks.md @@ -74,6 +74,7 @@ Rate limits for the Linnworks API vary across endpoints. Use the [links in the * | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------------------------- | +| 0.1.33 | 2024-11-04 | [48271](https://github.com/airbytehq/airbyte/pull/48271) | Update dependencies | | 0.1.32 | 2024-10-29 | [47877](https://github.com/airbytehq/airbyte/pull/47877) | Update dependencies | | 0.1.31 | 2024-10-28 | [47116](https://github.com/airbytehq/airbyte/pull/47116) | Update dependencies | | 0.1.30 | 2024-10-12 | [46798](https://github.com/airbytehq/airbyte/pull/46798) | Update dependencies | From 12df8744804c859220ea1ca9aaa69a229408394a Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:31:07 +0200 Subject: [PATCH 682/808] =?UTF-8?q?=F0=9F=90=99=20source-vercel:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#48270)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-vercel/metadata.yaml | 4 ++-- docs/integrations/sources/vercel.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-vercel/metadata.yaml b/airbyte-integrations/connectors/source-vercel/metadata.yaml index 32e2b5794aeb..9af8227abc24 100644 --- a/airbyte-integrations/connectors/source-vercel/metadata.yaml +++ b/airbyte-integrations/connectors/source-vercel/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-vercel connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 7de74599-7bbe-4610-8635-00c76885e51d - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-vercel githubIssueLabel: source-vercel icon: icon.svg diff --git a/docs/integrations/sources/vercel.md b/docs/integrations/sources/vercel.md index 914c352d1ea7..1c3959baf1e6 100644 --- a/docs/integrations/sources/vercel.md +++ b/docs/integrations/sources/vercel.md @@ -28,6 +28,7 @@ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [48270](https://github.com/airbytehq/airbyte/pull/48270) | Update dependencies | | 0.0.1 | 2024-10-22 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 3579596c8c6f6f71482fc517a89402518141bde4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:31:10 +0200 Subject: [PATCH 683/808] =?UTF-8?q?=F0=9F=90=99=20source-web-scrapper:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-04]=20(#48269)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-web-scrapper/metadata.yaml | 4 ++-- docs/integrations/sources/web-scrapper.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-web-scrapper/metadata.yaml b/airbyte-integrations/connectors/source-web-scrapper/metadata.yaml index 61d08a1d2e8f..1cd76bb26f1f 100644 --- a/airbyte-integrations/connectors/source-web-scrapper/metadata.yaml +++ b/airbyte-integrations/connectors/source-web-scrapper/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-web-scrapper connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 2f87b960-0220-4b76-9ab3-fba67ca4c959 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-web-scrapper githubIssueLabel: source-web-scrapper icon: icon.svg diff --git a/docs/integrations/sources/web-scrapper.md b/docs/integrations/sources/web-scrapper.md index ff2545eea2d8..536a1781b7c8 100644 --- a/docs/integrations/sources/web-scrapper.md +++ b/docs/integrations/sources/web-scrapper.md @@ -23,6 +23,7 @@ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [48269](https://github.com/airbytehq/airbyte/pull/48269) | Update dependencies | | 0.0.1 | 2024-10-29 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 993555f71b93b716a9b7e61f34658aa1b9a8c996 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:31:13 +0200 Subject: [PATCH 684/808] =?UTF-8?q?=F0=9F=90=99=20source-circa:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-11-04]=20(#48268)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-circa/metadata.yaml | 4 ++-- docs/integrations/sources/circa.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-circa/metadata.yaml b/airbyte-integrations/connectors/source-circa/metadata.yaml index fb705a720a16..a39326f9e0d1 100644 --- a/airbyte-integrations/connectors/source-circa/metadata.yaml +++ b/airbyte-integrations/connectors/source-circa/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-circa connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 751184ec-3b11-4084-b1b7-8064dde1e76e - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-circa githubIssueLabel: source-circa icon: icon.svg diff --git a/docs/integrations/sources/circa.md b/docs/integrations/sources/circa.md index 1848f74cbb2b..33b2b0ee956e 100644 --- a/docs/integrations/sources/circa.md +++ b/docs/integrations/sources/circa.md @@ -28,6 +28,7 @@ Airbyte connector for [SimpleCirca](https://www.simplecirca.com/) would enable s | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [48268](https://github.com/airbytehq/airbyte/pull/48268) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From d5f05c2d2feff88e8ae627d6dde2839fd17e51e5 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:31:17 +0200 Subject: [PATCH 685/808] =?UTF-8?q?=F0=9F=90=99=20source-appcues:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#48267)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-appcues/metadata.yaml | 4 ++-- docs/integrations/sources/appcues.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-appcues/metadata.yaml b/airbyte-integrations/connectors/source-appcues/metadata.yaml index ffc816002634..253c452b66cf 100644 --- a/airbyte-integrations/connectors/source-appcues/metadata.yaml +++ b/airbyte-integrations/connectors/source-appcues/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-appcues connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 3bab735a-e108-4c94-ab3f-414e3447b409 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-appcues githubIssueLabel: source-appcues icon: icon.svg diff --git a/docs/integrations/sources/appcues.md b/docs/integrations/sources/appcues.md index ebf33618d422..fe027cb36466 100644 --- a/docs/integrations/sources/appcues.md +++ b/docs/integrations/sources/appcues.md @@ -45,6 +45,7 @@ To set up the Appcues source connector, you'll need your Appcues [`API Key` and | Version | Date | Pull Request | Subject | | ------------------ | ------------ | ----- | ---------------- | +| 0.0.3 | 2024-11-04 | [48267](https://github.com/airbytehq/airbyte/pull/48267) | Update dependencies | | 0.0.2 | 2024-10-29 | [47771](https://github.com/airbytehq/airbyte/pull/47771) | Update dependencies | | 0.0.1 | 2024-09-03 | [45102](https://github.com/airbytehq/airbyte/pull/45102) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 8ef5754e6d2ec8b146793c11cd4e52dd93f11e47 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:31:22 +0200 Subject: [PATCH 686/808] =?UTF-8?q?=F0=9F=90=99=20source-qonto:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-11-04]=20(#48265)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-qonto/metadata.yaml | 4 ++-- docs/integrations/sources/qonto.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-qonto/metadata.yaml b/airbyte-integrations/connectors/source-qonto/metadata.yaml index 58d849301c21..5c2d4d7cd371 100644 --- a/airbyte-integrations/connectors/source-qonto/metadata.yaml +++ b/airbyte-integrations/connectors/source-qonto/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ccd3901d-edf3-4e58-900c-942d6990aa59 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-qonto githubIssueLabel: source-qonto icon: qonto.svg @@ -27,7 +27,7 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca remoteRegistries: pypi: enabled: false diff --git a/docs/integrations/sources/qonto.md b/docs/integrations/sources/qonto.md index 9001c5bbab14..956a7d8cb6a9 100644 --- a/docs/integrations/sources/qonto.md +++ b/docs/integrations/sources/qonto.md @@ -10,6 +10,7 @@ The Airbyte Source for [Qonto](https://qonto.com) | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------- | +| 0.3.3 | 2024-11-04 | [48265](https://github.com/airbytehq/airbyte/pull/48265) | Update dependencies | | 0.3.2 | 2024-10-29 | [47854](https://github.com/airbytehq/airbyte/pull/47854) | Update dependencies | | 0.3.1 | 2024-10-28 | [47490](https://github.com/airbytehq/airbyte/pull/47490) | Update dependencies | | 0.3.0 | 2024-10-06 | [46523](https://github.com/airbytehq/airbyte/pull/46523) | Migrate to Manifest-only | From 2f3ca6163b7d1ed009444b49247b56d7fc6b3683 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:31:29 +0200 Subject: [PATCH 687/808] =?UTF-8?q?=F0=9F=90=99=20source-miro:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-04]=20(#48262)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-miro/metadata.yaml | 4 ++-- docs/integrations/sources/miro.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-miro/metadata.yaml b/airbyte-integrations/connectors/source-miro/metadata.yaml index 79bc19e378d6..feb7204fb5c2 100644 --- a/airbyte-integrations/connectors/source-miro/metadata.yaml +++ b/airbyte-integrations/connectors/source-miro/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-miro connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: f8276ae8-4ada-4ae5-819c-b1836aa78135 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-miro githubIssueLabel: source-miro icon: icon.svg diff --git a/docs/integrations/sources/miro.md b/docs/integrations/sources/miro.md index cc92af49a105..48d399eb7bc4 100644 --- a/docs/integrations/sources/miro.md +++ b/docs/integrations/sources/miro.md @@ -25,6 +25,7 @@ Airbyte connector for Miro can be used to extract data related to board content, | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48262](https://github.com/airbytehq/airbyte/pull/48262) | Update dependencies | | 0.0.2 | 2024-10-29 | [47885](https://github.com/airbytehq/airbyte/pull/47885) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From ad3babd65975e6a485e070b97b25423203fdc679 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:31:36 +0200 Subject: [PATCH 688/808] =?UTF-8?q?=F0=9F=90=99=20source-breezometer:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48260)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-breezometer/metadata.yaml | 4 ++-- docs/integrations/sources/breezometer.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-breezometer/metadata.yaml b/airbyte-integrations/connectors/source-breezometer/metadata.yaml index 591b12beddc9..535814b86495 100644 --- a/airbyte-integrations/connectors/source-breezometer/metadata.yaml +++ b/airbyte-integrations/connectors/source-breezometer/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7c37685e-8512-4901-addf-9afbef6c0de9 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-breezometer githubIssueLabel: source-breezometer icon: breezometer.svg @@ -38,5 +38,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/breezometer.md b/docs/integrations/sources/breezometer.md index f292ce879a3f..26734a76548a 100644 --- a/docs/integrations/sources/breezometer.md +++ b/docs/integrations/sources/breezometer.md @@ -39,6 +39,7 @@ The Breezometer connector supports full sync refresh. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------ | +| 0.2.3 | 2024-11-04 | [48260](https://github.com/airbytehq/airbyte/pull/48260) | Update dependencies | | 0.2.2 | 2024-10-29 | [47882](https://github.com/airbytehq/airbyte/pull/47882) | Update dependencies | | 0.2.1 | 2024-10-28 | [43777](https://github.com/airbytehq/airbyte/pull/43777) | Update dependencies | | 0.2.0 | 2024-08-22 | [44563](https://github.com/airbytehq/airbyte/pull/44563) | Refactor connector to manifest-only format | From 2865dc97cedc4e247ccc64872440c38cae43bf9e Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:31:39 +0200 Subject: [PATCH 689/808] =?UTF-8?q?=F0=9F=90=99=20source-s3:=20run=20up-to?= =?UTF-8?q?-date=20pipeline=20[2024-11-04]=20(#48259)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-s3/metadata.yaml | 2 +- .../connectors/source-s3/poetry.lock | 154 +++++++++--------- .../connectors/source-s3/pyproject.toml | 2 +- docs/integrations/sources/s3.md | 1 + 4 files changed, 80 insertions(+), 79 deletions(-) diff --git a/airbyte-integrations/connectors/source-s3/metadata.yaml b/airbyte-integrations/connectors/source-s3/metadata.yaml index 599967946faa..4f8da9e5d4df 100644 --- a/airbyte-integrations/connectors/source-s3/metadata.yaml +++ b/airbyte-integrations/connectors/source-s3/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: file connectorType: source definitionId: 69589781-7828-43c5-9f63-8925b1c1ccc2 - dockerImageTag: 4.9.1 + dockerImageTag: 4.9.2 dockerRepository: airbyte/source-s3 documentationUrl: https://docs.airbyte.com/integrations/sources/s3 githubIssueLabel: source-s3 diff --git a/airbyte-integrations/connectors/source-s3/poetry.lock b/airbyte-integrations/connectors/source-s3/poetry.lock index 4604549ac973..b49399f4395b 100644 --- a/airbyte-integrations/connectors/source-s3/poetry.lock +++ b/airbyte-integrations/connectors/source-s3/poetry.lock @@ -187,17 +187,17 @@ lxml = ["lxml"] [[package]] name = "boto3" -version = "1.35.50" +version = "1.35.54" description = "The AWS SDK for Python" optional = false python-versions = ">=3.8" files = [ - {file = "boto3-1.35.50-py3-none-any.whl", hash = "sha256:14724b905fd13f26d9d8f7cdcea0fa65a9acad79f60f41f7662667f4e233d97c"}, - {file = "boto3-1.35.50.tar.gz", hash = "sha256:4f15d1ccb481d66f6925b8c91c970ce41b956b6ecf7c479f23e2159531b37eec"}, + {file = "boto3-1.35.54-py3-none-any.whl", hash = "sha256:2d5e160b614db55fbee7981001c54476cb827c441cef65b2fcb2c52a62019909"}, + {file = "boto3-1.35.54.tar.gz", hash = "sha256:7d9c359bbbc858a60b51c86328db813353c8bd1940212cdbd0a7da835291c2e1"}, ] [package.dependencies] -botocore = ">=1.35.50,<1.36.0" +botocore = ">=1.35.54,<1.36.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.10.0,<0.11.0" @@ -206,13 +206,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.35.50" +version = "1.35.54" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" files = [ - {file = "botocore-1.35.50-py3-none-any.whl", hash = "sha256:965d3b99179ac04aa98e4c4baf4a970ebce77a5e02bb2a0a21cb6304e2bc0955"}, - {file = "botocore-1.35.50.tar.gz", hash = "sha256:136ecef8d5a1088f1ba485c0bbfca40abd42b9f9fe9e11d8cde4e53b4c05b188"}, + {file = "botocore-1.35.54-py3-none-any.whl", hash = "sha256:9cca1811094b6cdc144c2c063a3ec2db6d7c88194b04d4277cd34fc8e3473aff"}, + {file = "botocore-1.35.54.tar.gz", hash = "sha256:131bb59ce59c8a939b31e8e647242d70cf11d32d4529fa4dca01feea1e891a76"}, ] [package.dependencies] @@ -1160,13 +1160,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1417,13 +1417,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.23.0" +version = "3.23.1" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.9" files = [ - {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, - {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, + {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, + {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, ] [package.dependencies] @@ -1431,7 +1431,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "simplejson"] [[package]] @@ -1561,69 +1561,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -3539,13 +3539,13 @@ bracex = ">=2.1.1" [[package]] name = "werkzeug" -version = "3.0.6" +version = "3.1.2" description = "The comprehensive WSGI web application library." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "werkzeug-3.0.6-py3-none-any.whl", hash = "sha256:1bc0c2310d2fbb07b1dd1105eba2f7af72f322e1e455f2f93c993bee8c8a5f17"}, - {file = "werkzeug-3.0.6.tar.gz", hash = "sha256:a8dd59d4de28ca70471a34cba79bed5f7ef2e036a76b3ab0835474246eb41f8d"}, + {file = "werkzeug-3.1.2-py3-none-any.whl", hash = "sha256:4f7d1a5de312c810a8a2c6f0b47e9f6a7cffb7c8322def35e4d4d9841ff85597"}, + {file = "werkzeug-3.1.2.tar.gz", hash = "sha256:f471a4cd167233077e9d2a8190c3471c5bc520c636a9e3c1e9300c33bced03bc"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-s3/pyproject.toml b/airbyte-integrations/connectors/source-s3/pyproject.toml index a1d316bf7daa..08c61b874fc4 100644 --- a/airbyte-integrations/connectors/source-s3/pyproject.toml +++ b/airbyte-integrations/connectors/source-s3/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.9.1" +version = "4.9.2" name = "source-s3" description = "Source implementation for S3." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/s3.md b/docs/integrations/sources/s3.md index 6f1fc37b0697..2ee4725db13f 100644 --- a/docs/integrations/sources/s3.md +++ b/docs/integrations/sources/s3.md @@ -339,6 +339,7 @@ This connector utilizes the open source [Unstructured](https://unstructured-io.g | Version | Date | Pull Request | Subject | |:--------|:-----------|:----------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------| +| 4.9.2 | 2024-11-04 | [48259](https://github.com/airbytehq/airbyte/pull/48259) | Update dependencies | | 4.9.1 | 2024-10-29 | [47038](https://github.com/airbytehq/airbyte/pull/47038) | Update dependencies | | 4.9.0 | 2024-10-17 | [46973](https://github.com/airbytehq/airbyte/pull/46973) | Promote releae candidate. | | 4.9.0-rc.1 | 2024-10-14 | [46298](https://github.com/airbytehq/airbyte/pull/46298) | Migrate to CDK v5 | From 6ededc9694b5cf82a1a67a9e2ca00a4195f5ed25 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:32:38 +0200 Subject: [PATCH 690/808] =?UTF-8?q?=F0=9F=90=99=20source-lokalise:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47935)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-lokalise/metadata.yaml | 4 ++-- docs/integrations/sources/lokalise.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-lokalise/metadata.yaml b/airbyte-integrations/connectors/source-lokalise/metadata.yaml index 0ec22ac07f05..bcb38cf53679 100644 --- a/airbyte-integrations/connectors/source-lokalise/metadata.yaml +++ b/airbyte-integrations/connectors/source-lokalise/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 45e0b135-615c-40ac-b38e-e65b0944197f - dockerImageTag: 0.2.1 + dockerImageTag: 0.2.2 dockerRepository: airbyte/source-lokalise githubIssueLabel: source-lokalise icon: lokalise.svg @@ -41,5 +41,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/lokalise.md b/docs/integrations/sources/lokalise.md index 2ff507fdd7da..7c49e1350352 100644 --- a/docs/integrations/sources/lokalise.md +++ b/docs/integrations/sources/lokalise.md @@ -64,6 +64,7 @@ The Lokalise source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------- | +| 0.2.2 | 2024-11-04 | [47935](https://github.com/airbytehq/airbyte/pull/47935) | Update dependencies | | 0.2.1 | 2024-10-28 | [47629](https://github.com/airbytehq/airbyte/pull/47629) | Update dependencies | | 0.2.0 | 2024-08-26 | [44765](https://github.com/airbytehq/airbyte/pull/44765) | Refactor connector to manifest-only format | | 0.1.15 | 2024-08-24 | [44696](https://github.com/airbytehq/airbyte/pull/44696) | Update dependencies | From 3950d8ffadfc40b3b801d044b242ac39f5eb6d3b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:32:58 +0200 Subject: [PATCH 691/808] =?UTF-8?q?=F0=9F=90=99=20source-employment-hero:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#47819)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-employment-hero/metadata.yaml | 4 ++-- docs/integrations/sources/employment-hero.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-employment-hero/metadata.yaml b/airbyte-integrations/connectors/source-employment-hero/metadata.yaml index 12e11ead7d47..9be080228ee5 100644 --- a/airbyte-integrations/connectors/source-employment-hero/metadata.yaml +++ b/airbyte-integrations/connectors/source-employment-hero/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-employment-hero connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: e2db518e-ef68-40bb-a2b6-b9f9aabbadb3 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-employment-hero githubIssueLabel: source-employment-hero icon: icon.svg diff --git a/docs/integrations/sources/employment-hero.md b/docs/integrations/sources/employment-hero.md index 6a5ce498864c..9b2f44d25d73 100644 --- a/docs/integrations/sources/employment-hero.md +++ b/docs/integrations/sources/employment-hero.md @@ -58,6 +58,7 @@ Hit Get new Access token and approve via browser, Postman will collect a new `ac | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-11-04 | [47819](https://github.com/airbytehq/airbyte/pull/47819) | Update dependencies | | 0.0.2 | 2024-10-28 | [47632](https://github.com/airbytehq/airbyte/pull/47632) | Update dependencies | | 0.0.1 | 2024-09-25 | [45888](https://github.com/airbytehq/airbyte/pull/45888) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 6fd28a5de2bc232479463e7e9ec75a9495e9bb8b Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:33:09 +0200 Subject: [PATCH 692/808] =?UTF-8?q?=F0=9F=90=99=20destination-milvus:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#47789)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-milvus/metadata.yaml | 2 +- .../connectors/destination-milvus/poetry.lock | 316 +++++++++--------- .../destination-milvus/pyproject.toml | 2 +- docs/integrations/destinations/milvus.md | 1 + 4 files changed, 161 insertions(+), 160 deletions(-) diff --git a/airbyte-integrations/connectors/destination-milvus/metadata.yaml b/airbyte-integrations/connectors/destination-milvus/metadata.yaml index 9a027d75dc9c..3ddbad4c2771 100644 --- a/airbyte-integrations/connectors/destination-milvus/metadata.yaml +++ b/airbyte-integrations/connectors/destination-milvus/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 65de8962-48c9-11ee-be56-0242ac120002 - dockerImageTag: 0.0.37 + dockerImageTag: 0.0.38 dockerRepository: airbyte/destination-milvus githubIssueLabel: destination-milvus icon: milvus.svg diff --git a/airbyte-integrations/connectors/destination-milvus/poetry.lock b/airbyte-integrations/connectors/destination-milvus/poetry.lock index e5d804b0c5cf..d4bb12d5a4c3 100644 --- a/airbyte-integrations/connectors/destination-milvus/poetry.lock +++ b/airbyte-integrations/connectors/destination-milvus/poetry.lock @@ -1464,13 +1464,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1552,13 +1552,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.23.0" +version = "3.23.1" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.9" files = [ - {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, - {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, + {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, + {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, ] [package.dependencies] @@ -1566,7 +1566,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "simplejson"] [[package]] @@ -1893,69 +1893,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -2937,23 +2937,23 @@ test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "po [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -3156,13 +3156,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] @@ -3435,93 +3435,93 @@ files = [ [[package]] name = "yarl" -version = "1.16.0" +version = "1.17.1" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32468f41242d72b87ab793a86d92f885355bcf35b3355aa650bfa846a5c60058"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:234f3a3032b505b90e65b5bc6652c2329ea7ea8855d8de61e1642b74b4ee65d2"}, - {file = "yarl-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a0296040e5cddf074c7f5af4a60f3fc42c0237440df7bcf5183be5f6c802ed5"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de6c14dd7c7c0badba48157474ea1f03ebee991530ba742d381b28d4f314d6f3"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b140e532fe0266003c936d017c1ac301e72ee4a3fd51784574c05f53718a55d8"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:019f5d58093402aa8f6661e60fd82a28746ad6d156f6c5336a70a39bd7b162b9"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c42998fd1cbeb53cd985bff0e4bc25fbe55fd6eb3a545a724c1012d69d5ec84"}, - {file = "yarl-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7c30fb38c300fe8140df30a046a01769105e4cf4282567a29b5cdb635b66c4"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e49e0fd86c295e743fd5be69b8b0712f70a686bc79a16e5268386c2defacaade"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:b9ca7b9147eb1365c8bab03c003baa1300599575effad765e0b07dd3501ea9af"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:27e11db3f1e6a51081a981509f75617b09810529de508a181319193d320bc5c7"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8994c42f4ca25df5380ddf59f315c518c81df6a68fed5bb0c159c6cb6b92f120"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:542fa8e09a581bcdcbb30607c7224beff3fdfb598c798ccd28a8184ffc18b7eb"}, - {file = "yarl-1.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2bd6a51010c7284d191b79d3b56e51a87d8e1c03b0902362945f15c3d50ed46b"}, - {file = "yarl-1.16.0-cp310-cp310-win32.whl", hash = "sha256:178ccb856e265174a79f59721031060f885aca428983e75c06f78aa24b91d929"}, - {file = "yarl-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe8bba2545427418efc1929c5c42852bdb4143eb8d0a46b09de88d1fe99258e7"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d8643975a0080f361639787415a038bfc32d29208a4bf6b783ab3075a20b1ef3"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:676d96bafc8c2d0039cea0cd3fd44cee7aa88b8185551a2bb93354668e8315c2"}, - {file = "yarl-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9525f03269e64310416dbe6c68d3b23e5d34aaa8f47193a1c45ac568cecbc49"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b37d5ec034e668b22cf0ce1074d6c21fd2a08b90d11b1b73139b750a8b0dd97"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f32c4cb7386b41936894685f6e093c8dfaf0960124d91fe0ec29fe439e201d0"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b8e265a0545637492a7e12fd7038370d66c9375a61d88c5567d0e044ded9202"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:789a3423f28a5fff46fbd04e339863c169ece97c827b44de16e1a7a42bc915d2"}, - {file = "yarl-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1d1f45e3e8d37c804dca99ab3cf4ab3ed2e7a62cd82542924b14c0a4f46d243"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:621280719c4c5dad4c1391160a9b88925bb8b0ff6a7d5af3224643024871675f"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed097b26f18a1f5ff05f661dc36528c5f6735ba4ce8c9645e83b064665131349"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2f1fe2b2e3ee418862f5ebc0c0083c97f6f6625781382f828f6d4e9b614eba9b"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:87dd10bc0618991c66cee0cc65fa74a45f4ecb13bceec3c62d78ad2e42b27a16"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4199db024b58a8abb2cfcedac7b1292c3ad421684571aeb622a02f242280e8d6"}, - {file = "yarl-1.16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:99a9dcd4b71dd5f5f949737ab3f356cfc058c709b4f49833aeffedc2652dac56"}, - {file = "yarl-1.16.0-cp311-cp311-win32.whl", hash = "sha256:a9394c65ae0ed95679717d391c862dece9afacd8fa311683fc8b4362ce8a410c"}, - {file = "yarl-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b9101f528ae0f8f65ac9d64dda2bb0627de8a50344b2f582779f32fda747c1d"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4ffb7c129707dd76ced0a4a4128ff452cecf0b0e929f2668ea05a371d9e5c104"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1a5e9d8ce1185723419c487758d81ac2bde693711947032cce600ca7c9cda7d6"}, - {file = "yarl-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d743e3118b2640cef7768ea955378c3536482d95550222f908f392167fe62059"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26768342f256e6e3c37533bf9433f5f15f3e59e3c14b2409098291b3efaceacb"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1b0796168b953bca6600c5f97f5ed407479889a36ad7d17183366260f29a6b9"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858728086914f3a407aa7979cab743bbda1fe2bdf39ffcd991469a370dd7414d"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5570e6d47bcb03215baf4c9ad7bf7c013e56285d9d35013541f9ac2b372593e7"}, - {file = "yarl-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66ea8311422a7ba1fc79b4c42c2baa10566469fe5a78500d4e7754d6e6db8724"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:649bddcedee692ee8a9b7b6e38582cb4062dc4253de9711568e5620d8707c2a3"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a91654adb7643cb21b46f04244c5a315a440dcad63213033826549fa2435f71"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b439cae82034ade094526a8f692b9a2b5ee936452de5e4c5f0f6c48df23f8604"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:571f781ae8ac463ce30bacebfaef2c6581543776d5970b2372fbe31d7bf31a07"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:aa7943f04f36d6cafc0cf53ea89824ac2c37acbdb4b316a654176ab8ffd0f968"}, - {file = "yarl-1.16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1a5cf32539373ff39d97723e39a9283a7277cbf1224f7aef0c56c9598b6486c3"}, - {file = "yarl-1.16.0-cp312-cp312-win32.whl", hash = "sha256:a5b6c09b9b4253d6a208b0f4a2f9206e511ec68dce9198e0fbec4f160137aa67"}, - {file = "yarl-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:1208ca14eed2fda324042adf8d6c0adf4a31522fa95e0929027cd487875f0240"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5ace0177520bd4caa99295a9b6fb831d0e9a57d8e0501a22ffaa61b4c024283"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7118bdb5e3ed81acaa2095cba7ec02a0fe74b52a16ab9f9ac8e28e53ee299732"}, - {file = "yarl-1.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38fec8a2a94c58bd47c9a50a45d321ab2285ad133adefbbadf3012c054b7e656"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8791d66d81ee45866a7bb15a517b01a2bcf583a18ebf5d72a84e6064c417e64b"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cf936ba67bc6c734f3aa1c01391da74ab7fc046a9f8bbfa230b8393b90cf472"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1aab176dd55b59f77a63b27cffaca67d29987d91a5b615cbead41331e6b7428"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d0759004c08abd5d1b81300a91d18c8577c6389300bed1c7c11675105a44d"}, - {file = "yarl-1.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bc22e00edeb068f71967ab99081e9406cd56dbed864fc3a8259442999d71552"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:35b4f7842154176523e0a63c9b871168c69b98065d05a4f637fce342a6a2693a"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7ace71c4b7a0c41f317ae24be62bb61e9d80838d38acb20e70697c625e71f120"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8f639e3f5795a6568aa4f7d2ac6057c757dcd187593679f035adbf12b892bb00"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e8be3aff14f0120ad049121322b107f8a759be76a6a62138322d4c8a337a9e2c"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:122d8e7986043d0549e9eb23c7fd23be078be4b70c9eb42a20052b3d3149c6f2"}, - {file = "yarl-1.16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0fd9c227990f609c165f56b46107d0bc34553fe0387818c42c02f77974402c36"}, - {file = "yarl-1.16.0-cp313-cp313-win32.whl", hash = "sha256:595ca5e943baed31d56b33b34736461a371c6ea0038d3baec399949dd628560b"}, - {file = "yarl-1.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:921b81b8d78f0e60242fb3db615ea3f368827a76af095d5a69f1c3366db3f596"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab2b2ac232110a1fdb0d3ffcd087783edd3d4a6ced432a1bf75caf7b7be70916"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f8713717a09acbfee7c47bfc5777e685539fefdd34fa72faf504c8be2f3df4e"}, - {file = "yarl-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdcffe1dbcb4477d2b4202f63cd972d5baa155ff5a3d9e35801c46a415b7f71a"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a91217208306d82357c67daeef5162a41a28c8352dab7e16daa82e3718852a7"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ab3ed42c78275477ea8e917491365e9a9b69bb615cb46169020bd0aa5e2d6d3"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:707ae579ccb3262dfaef093e202b4c3fb23c3810e8df544b1111bd2401fd7b09"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7a852d1cd0b8d8b37fc9d7f8581152add917a98cfe2ea6e241878795f917ae"}, - {file = "yarl-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3f1cc3d3d4dc574bebc9b387f6875e228ace5748a7c24f49d8f01ac1bc6c31b"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5ff96da263740779b0893d02b718293cc03400c3a208fc8d8cd79d9b0993e532"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:3d375a19ba2bfe320b6d873f3fb165313b002cef8b7cc0a368ad8b8a57453837"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:62c7da0ad93a07da048b500514ca47b759459ec41924143e2ddb5d7e20fd3db5"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:147b0fcd0ee33b4b5f6edfea80452d80e419e51b9a3f7a96ce98eaee145c1581"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:504e1fe1cc4f170195320eb033d2b0ccf5c6114ce5bf2f617535c01699479bca"}, - {file = "yarl-1.16.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bdcf667a5dec12a48f669e485d70c54189f0639c2157b538a4cffd24a853624f"}, - {file = "yarl-1.16.0-cp39-cp39-win32.whl", hash = "sha256:e9951afe6557c75a71045148890052cb942689ee4c9ec29f5436240e1fcc73b7"}, - {file = "yarl-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d7aaa8ff95d0840e289423e7dc35696c2b058d635f945bf05b5cd633146b027"}, - {file = "yarl-1.16.0-py3-none-any.whl", hash = "sha256:e6980a558d8461230c457218bd6c92dfc1d10205548215c2c21d79dc8d0a96f3"}, - {file = "yarl-1.16.0.tar.gz", hash = "sha256:b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-milvus/pyproject.toml b/airbyte-integrations/connectors/destination-milvus/pyproject.toml index aa4d1cb5601b..11d3f48eecf9 100644 --- a/airbyte-integrations/connectors/destination-milvus/pyproject.toml +++ b/airbyte-integrations/connectors/destination-milvus/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-milvus" -version = "0.0.37" +version = "0.0.38" description = "Airbyte destination implementation for Milvus." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/milvus.md b/docs/integrations/destinations/milvus.md index 95da6410152b..0e5d8824ff93 100644 --- a/docs/integrations/destinations/milvus.md +++ b/docs/integrations/destinations/milvus.md @@ -116,6 +116,7 @@ vector_store.similarity_search("test") | Version | Date | Pull Request | Subject | |:--------| :--------- | :-------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.0.38 | 2024-11-04 | [47789](https://github.com/airbytehq/airbyte/pull/47789) | Update dependencies | | 0.0.37 | 2024-10-28 | [47505](https://github.com/airbytehq/airbyte/pull/47505) | Update dependencies | | 0.0.36 | 2024-10-23 | [47080](https://github.com/airbytehq/airbyte/pull/47080) | Update dependencies | | 0.0.35 | 2024-10-05 | [46483](https://github.com/airbytehq/airbyte/pull/46483) | Update dependencies | From 0fb40b06f0bf9c38a4846767214890f0208ad06c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:33:27 +0200 Subject: [PATCH 693/808] =?UTF-8?q?=F0=9F=90=99=20source-easypost:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47654)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-easypost/metadata.yaml | 4 ++-- docs/integrations/sources/easypost.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-easypost/metadata.yaml b/airbyte-integrations/connectors/source-easypost/metadata.yaml index 63ba626ecebe..6ce01eac01aa 100644 --- a/airbyte-integrations/connectors/source-easypost/metadata.yaml +++ b/airbyte-integrations/connectors/source-easypost/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-easypost connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.8.0@sha256:568b4cf0261ea6909db3ae00a0da6bc21ff2b271529a03683be0125dc27a86a2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: b74b0cfc-dd2c-4fdd-9bb0-ffc9efe04c36 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-easypost githubIssueLabel: source-easypost icon: icon.svg diff --git a/docs/integrations/sources/easypost.md b/docs/integrations/sources/easypost.md index d2c4a2b1b755..a19835ed8850 100644 --- a/docs/integrations/sources/easypost.md +++ b/docs/integrations/sources/easypost.md @@ -34,6 +34,7 @@ This directory contains the manifest-only connector for [`source-easypost`](http | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [47654](https://github.com/airbytehq/airbyte/pull/47654) | Update dependencies | | 0.0.1 | 2024-10-01 | [46287](https://github.com/airbytehq/airbyte/pull/46287) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 22be8fc0bcc55e8bb89cfcf674641f4fd03f6c9c Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:33:59 +0200 Subject: [PATCH 694/808] =?UTF-8?q?=F0=9F=90=99=20source-mixpanel:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47098)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mixpanel/metadata.yaml | 2 +- .../connectors/source-mixpanel/poetry.lock | 273 +++++++++--------- .../connectors/source-mixpanel/pyproject.toml | 2 +- docs/integrations/sources/mixpanel.md | 1 + 4 files changed, 140 insertions(+), 138 deletions(-) diff --git a/airbyte-integrations/connectors/source-mixpanel/metadata.yaml b/airbyte-integrations/connectors/source-mixpanel/metadata.yaml index b5c2ec9d3ac8..79accc15106d 100644 --- a/airbyte-integrations/connectors/source-mixpanel/metadata.yaml +++ b/airbyte-integrations/connectors/source-mixpanel/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 12928b32-bf0a-4f1e-964f-07e12e37153a - dockerImageTag: 3.4.8 + dockerImageTag: 3.4.9 dockerRepository: airbyte/source-mixpanel documentationUrl: https://docs.airbyte.com/integrations/sources/mixpanel githubIssueLabel: source-mixpanel diff --git a/airbyte-integrations/connectors/source-mixpanel/poetry.lock b/airbyte-integrations/connectors/source-mixpanel/poetry.lock index 3fbb808a3933..a8dc687299d4 100644 --- a/airbyte-integrations/connectors/source-mixpanel/poetry.lock +++ b/airbyte-integrations/connectors/source-mixpanel/poetry.lock @@ -69,13 +69,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +86,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -717,13 +717,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -735,72 +735,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -830,68 +830,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1512,23 +1513,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1580,13 +1581,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-mixpanel/pyproject.toml b/airbyte-integrations/connectors/source-mixpanel/pyproject.toml index e873b304b0a1..bcfb71c39c06 100644 --- a/airbyte-integrations/connectors/source-mixpanel/pyproject.toml +++ b/airbyte-integrations/connectors/source-mixpanel/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.4.8" +version = "3.4.9" name = "source-mixpanel" description = "Source implementation for Mixpanel." authors = ["Airbyte "] diff --git a/docs/integrations/sources/mixpanel.md b/docs/integrations/sources/mixpanel.md index f2c2bf43f1a9..5a017a3b8205 100644 --- a/docs/integrations/sources/mixpanel.md +++ b/docs/integrations/sources/mixpanel.md @@ -58,6 +58,7 @@ Syncing huge date windows may take longer due to Mixpanel's low API rate-limits | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 3.4.9 | 2024-11-04 | [47098](https://github.com/airbytehq/airbyte/pull/47098) | Update dependencies | | 3.4.8 | 2024-10-12 | [46792](https://github.com/airbytehq/airbyte/pull/46792) | Update dependencies | | 3.4.7 | 2024-10-05 | [46428](https://github.com/airbytehq/airbyte/pull/46428) | Update dependencies | | 3.4.6 | 2024-09-28 | [45747](https://github.com/airbytehq/airbyte/pull/45747) | Update dependencies | From 7e65d8bde6cc4cf144ad7d963c54444df0911a96 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 04:34:10 +0200 Subject: [PATCH 695/808] =?UTF-8?q?=F0=9F=90=99=20source-amazon-seller-par?= =?UTF-8?q?tner:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#47049)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../metadata.yaml | 2 +- .../source-amazon-seller-partner/poetry.lock | 273 +++++++++--------- .../pyproject.toml | 2 +- .../sources/amazon-seller-partner.md | 1 + 4 files changed, 140 insertions(+), 138 deletions(-) diff --git a/airbyte-integrations/connectors/source-amazon-seller-partner/metadata.yaml b/airbyte-integrations/connectors/source-amazon-seller-partner/metadata.yaml index 523fa91399e2..9e58b2035dbd 100644 --- a/airbyte-integrations/connectors/source-amazon-seller-partner/metadata.yaml +++ b/airbyte-integrations/connectors/source-amazon-seller-partner/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: e55879a8-0ef8-4557-abcf-ab34c53ec460 - dockerImageTag: 4.4.4 + dockerImageTag: 4.4.5 dockerRepository: airbyte/source-amazon-seller-partner documentationUrl: https://docs.airbyte.com/integrations/sources/amazon-seller-partner erdUrl: https://dbdocs.io/airbyteio/source-amazon-seller-partner?view=relationships diff --git a/airbyte-integrations/connectors/source-amazon-seller-partner/poetry.lock b/airbyte-integrations/connectors/source-amazon-seller-partner/poetry.lock index f065a2c8d355..380730395967 100644 --- a/airbyte-integrations/connectors/source-amazon-seller-partner/poetry.lock +++ b/airbyte-integrations/connectors/source-amazon-seller-partner/poetry.lock @@ -56,13 +56,13 @@ pydantic = ">=1.9.2,<2.0.0" [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -73,7 +73,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -715,13 +715,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.134" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.134-py3-none-any.whl", hash = "sha256:ada98ad80ef38807725f32441a472da3dd28394010877751f48f458d3289da04"}, - {file = "langsmith-0.1.134.tar.gz", hash = "sha256:23abee3b508875a0e63c602afafffc02442a19cfd88f9daae05b3e9054fd6b61"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -733,138 +733,139 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1425,23 +1426,23 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1656,13 +1657,13 @@ files = [ [[package]] name = "xmltodict" -version = "0.14.1" +version = "0.14.2" description = "Makes working with XML feel like you are working with JSON" optional = false python-versions = ">=3.6" files = [ - {file = "xmltodict-0.14.1-py2.py3-none-any.whl", hash = "sha256:3ef4a7b71c08f19047fcbea572e1d7f4207ab269da1565b5d40e9823d3894e63"}, - {file = "xmltodict-0.14.1.tar.gz", hash = "sha256:338c8431e4fc554517651972d62f06958718f6262b04316917008e8fd677a6b0"}, + {file = "xmltodict-0.14.2-py2.py3-none-any.whl", hash = "sha256:20cc7d723ed729276e808f26fb6b3599f786cbc37e06c65e192ba77c40f20aac"}, + {file = "xmltodict-0.14.2.tar.gz", hash = "sha256:201e7c28bb210e374999d1dde6382923ab0ed1a8a5faeece48ab525b7810a553"}, ] [metadata] diff --git a/airbyte-integrations/connectors/source-amazon-seller-partner/pyproject.toml b/airbyte-integrations/connectors/source-amazon-seller-partner/pyproject.toml index b20d29cbf643..a9b3d8eb2bf1 100644 --- a/airbyte-integrations/connectors/source-amazon-seller-partner/pyproject.toml +++ b/airbyte-integrations/connectors/source-amazon-seller-partner/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.4.4" +version = "4.4.5" name = "source-amazon-seller-partner" description = "Source implementation for Amazon Seller Partner." authors = ["Airbyte "] diff --git a/docs/integrations/sources/amazon-seller-partner.md b/docs/integrations/sources/amazon-seller-partner.md index 6e8b8f6045ed..32f8d2db85bd 100644 --- a/docs/integrations/sources/amazon-seller-partner.md +++ b/docs/integrations/sources/amazon-seller-partner.md @@ -228,6 +228,7 @@ Create a separate connection for streams which usually fail with error above "Fa | Version | Date | Pull Request | Subject | |:--------|:-----------|:----------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 4.4.5 | 2024-11-04 | [47049](https://github.com/airbytehq/airbyte/pull/47049) | Update dependencies | | 4.4.4 | 2024-10-12 | [46817](https://github.com/airbytehq/airbyte/pull/46817) | Update dependencies | | 4.4.3 | 2024-10-05 | [46473](https://github.com/airbytehq/airbyte/pull/46473) | Update dependencies | | 4.4.2 | 2024-09-28 | [44748](https://github.com/airbytehq/airbyte/pull/44748) | Update dependencies | From 98f012995244a022434f5868199edd1c068a6b73 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:08:56 +0200 Subject: [PATCH 696/808] =?UTF-8?q?=F0=9F=90=99=20source-kisi:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-05]=20(#48332)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-kisi/metadata.yaml | 4 ++-- docs/integrations/sources/kisi.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-kisi/metadata.yaml b/airbyte-integrations/connectors/source-kisi/metadata.yaml index 022e8bbbcfea..85613986ed0b 100644 --- a/airbyte-integrations/connectors/source-kisi/metadata.yaml +++ b/airbyte-integrations/connectors/source-kisi/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-kisi connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: 7706728b-f644-456e-8dd4-ac92c4d8f31a - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-kisi githubIssueLabel: source-kisi icon: icon.svg diff --git a/docs/integrations/sources/kisi.md b/docs/integrations/sources/kisi.md index c485bd5bb688..44a059b82522 100644 --- a/docs/integrations/sources/kisi.md +++ b/docs/integrations/sources/kisi.md @@ -39,6 +39,7 @@ You can learn more about the API key here https://api.kisi.io/docs#/ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.4 | 2024-11-05 | [48332](https://github.com/airbytehq/airbyte/pull/48332) | Update dependencies | | 0.0.3 | 2024-10-29 | [47914](https://github.com/airbytehq/airbyte/pull/47914) | Update dependencies | | 0.0.2 | 2024-10-28 | [47606](https://github.com/airbytehq/airbyte/pull/47606) | Update dependencies | | 0.0.1 | 2024-10-18 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From a56ead9f0219dc1975e62c287820904c67815918 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:09:58 +0200 Subject: [PATCH 697/808] =?UTF-8?q?=F0=9F=90=99=20source-klaviyo:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-05]=20(#48331)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-klaviyo/metadata.yaml | 2 +- .../connectors/source-klaviyo/poetry.lock | 124 +++++++++--------- .../connectors/source-klaviyo/pyproject.toml | 2 +- docs/integrations/sources/klaviyo.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-klaviyo/metadata.yaml b/airbyte-integrations/connectors/source-klaviyo/metadata.yaml index 97109a3b31ab..d96e750721e1 100644 --- a/airbyte-integrations/connectors/source-klaviyo/metadata.yaml +++ b/airbyte-integrations/connectors/source-klaviyo/metadata.yaml @@ -8,7 +8,7 @@ data: definitionId: 95e8cffd-b8c4-4039-968e-d32fb4a69bde connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 - dockerImageTag: 2.10.12 + dockerImageTag: 2.10.13 dockerRepository: airbyte/source-klaviyo githubIssueLabel: source-klaviyo icon: klaviyo.svg diff --git a/airbyte-integrations/connectors/source-klaviyo/poetry.lock b/airbyte-integrations/connectors/source-klaviyo/poetry.lock index 500809e88eb6..75bac76c50fa 100644 --- a/airbyte-integrations/connectors/source-klaviyo/poetry.lock +++ b/airbyte-integrations/connectors/source-klaviyo/poetry.lock @@ -731,13 +731,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -844,69 +844,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-klaviyo/pyproject.toml b/airbyte-integrations/connectors/source-klaviyo/pyproject.toml index 93ce160d465b..3d7a04644dcb 100644 --- a/airbyte-integrations/connectors/source-klaviyo/pyproject.toml +++ b/airbyte-integrations/connectors/source-klaviyo/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.10.12" +version = "2.10.13" name = "source-klaviyo" description = "Source implementation for Klaviyo." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/klaviyo.md b/docs/integrations/sources/klaviyo.md index d91502730910..6189539b9283 100644 --- a/docs/integrations/sources/klaviyo.md +++ b/docs/integrations/sources/klaviyo.md @@ -95,6 +95,7 @@ contain the `predictive_analytics` field and workflows depending on this field w | Version | Date | Pull Request | Subject | |:--------|:-----------|:-----------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------| +| 2.10.13 | 2024-11-05 | [48331](https://github.com/airbytehq/airbyte/pull/48331) | Update dependencies | | 2.10.12 | 2024-10-29 | [47797](https://github.com/airbytehq/airbyte/pull/47797) | Update dependencies | | 2.10.11 | 2024-10-28 | [47043](https://github.com/airbytehq/airbyte/pull/47043) | Update dependencies | | 2.10.10 | 2024-10-14 | [46741](https://github.com/airbytehq/airbyte/pull/46741) | Add checkpointing to events stream to improve large syncs after clear data | From bef5bbf765ae42b870f175a3106761eca54923ef Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:02 +0200 Subject: [PATCH 698/808] =?UTF-8?q?=F0=9F=90=99=20source-coingecko-coins:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-05]=20(#48330)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-coingecko-coins/metadata.yaml | 4 ++-- docs/integrations/sources/coingecko-coins.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml index f05504629963..429777c5667a 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml +++ b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml @@ -2,14 +2,14 @@ data: connectorSubtype: api connectorType: source definitionId: 9cdd4183-d0ba-40c3-aad3-6f46d4103974 - dockerImageTag: 0.2.2 + dockerImageTag: 0.2.3 dockerRepository: airbyte/source-coingecko-coins githubIssueLabel: source-coingecko-coins icon: coingeckocoins.svg license: MIT name: CoinGecko Coins connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 remoteRegistries: pypi: enabled: false diff --git a/docs/integrations/sources/coingecko-coins.md b/docs/integrations/sources/coingecko-coins.md index 545b1105d933..294424b01626 100644 --- a/docs/integrations/sources/coingecko-coins.md +++ b/docs/integrations/sources/coingecko-coins.md @@ -52,6 +52,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------- | +| 0.2.3 | 2024-11-05 | [48330](https://github.com/airbytehq/airbyte/pull/48330) | Update dependencies | | 0.2.2 | 2024-10-29 | [47804](https://github.com/airbytehq/airbyte/pull/47804) | Update dependencies | | 0.2.1 | 2024-10-28 | [47559](https://github.com/airbytehq/airbyte/pull/47559) | Update dependencies | | 0.2.0 | 2024-08-22 | [44565](https://github.com/airbytehq/airbyte/pull/44565) | Refactor connector to manifest-only format | From 97819d27bb4a9a2e9423a55ce3fd7ecfb3454581 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:05 +0200 Subject: [PATCH 699/808] =?UTF-8?q?=F0=9F=90=99=20source-care-quality-comm?= =?UTF-8?q?ission:=20run=20up-to-date=20pipeline=20[2024-11-05]=20(#48329)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-care-quality-commission/metadata.yaml | 4 ++-- docs/integrations/sources/care-quality-commission.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml b/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml index d8c7d689cf67..a2e07548b845 100644 --- a/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml +++ b/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-care-quality-commission connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: 2366b7bf-b83e-471c-b4a0-1405887fdf6e - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-care-quality-commission githubIssueLabel: source-care-quality-commission icon: icon.svg diff --git a/docs/integrations/sources/care-quality-commission.md b/docs/integrations/sources/care-quality-commission.md index 26c778d054cd..2d57c8e18f2a 100644 --- a/docs/integrations/sources/care-quality-commission.md +++ b/docs/integrations/sources/care-quality-commission.md @@ -25,6 +25,7 @@ https://www.cqc.org.uk/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| +| 0.0.4 | 2024-11-05 | [48329](https://github.com/airbytehq/airbyte/pull/48329) | Update dependencies | | 0.0.3 | 2024-10-29 | [47897](https://github.com/airbytehq/airbyte/pull/47897) | Update dependencies | | 0.0.2 | 2024-10-28 | [47671](https://github.com/airbytehq/airbyte/pull/47671) | Update dependencies | | 0.0.1 | 2024-10-02 | [46315](https://github.com/airbytehq/airbyte/pull/46315) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | From 85782cb9d5ac176643fd917cd8e5d44053b03a37 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:08 +0200 Subject: [PATCH 700/808] =?UTF-8?q?=F0=9F=90=99=20source-sage-hr:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-05]=20(#48328)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-sage-hr/metadata.yaml | 4 ++-- docs/integrations/sources/sage-hr.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sage-hr/metadata.yaml b/airbyte-integrations/connectors/source-sage-hr/metadata.yaml index 9e186b620b2c..ecf56277ca7c 100644 --- a/airbyte-integrations/connectors/source-sage-hr/metadata.yaml +++ b/airbyte-integrations/connectors/source-sage-hr/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-sage-hr connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: d8384215-9de6-4268-bbea-40c636ee14c7 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-sage-hr githubIssueLabel: source-sage-hr icon: icon.svg diff --git a/docs/integrations/sources/sage-hr.md b/docs/integrations/sources/sage-hr.md index a24a1762f462..8306f2c062ae 100644 --- a/docs/integrations/sources/sage-hr.md +++ b/docs/integrations/sources/sage-hr.md @@ -31,6 +31,7 @@ The Sage HR Airbyte Connector enables seamless data integration, allowing you to | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-05 | [48328](https://github.com/airbytehq/airbyte/pull/48328) | Update dependencies | | 0.0.2 | 2024-10-28 | [47581](https://github.com/airbytehq/airbyte/pull/47581) | Update dependencies | | 0.0.1 | 2024-10-08 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 29b20d395b8251e3999e930089792738e84857e9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:11 +0200 Subject: [PATCH 701/808] =?UTF-8?q?=F0=9F=90=99=20source-luma:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-05]=20(#48327)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-luma/metadata.yaml | 4 ++-- docs/integrations/sources/luma.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-luma/metadata.yaml b/airbyte-integrations/connectors/source-luma/metadata.yaml index 2d1fe3dab145..df3ffd81fbb9 100644 --- a/airbyte-integrations/connectors/source-luma/metadata.yaml +++ b/airbyte-integrations/connectors/source-luma/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-luma connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: 8ac29756-9a9d-4472-a20b-df29ac29764a - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-luma githubIssueLabel: source-luma icon: icon.svg diff --git a/docs/integrations/sources/luma.md b/docs/integrations/sources/luma.md index aa77dbff06bd..e09a9e46db75 100644 --- a/docs/integrations/sources/luma.md +++ b/docs/integrations/sources/luma.md @@ -20,6 +20,7 @@ | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.4 | 2024-11-05 | [48327](https://github.com/airbytehq/airbyte/pull/48327) | Update dependencies | | 0.0.3 | 2024-10-29 | [47746](https://github.com/airbytehq/airbyte/pull/47746) | Update dependencies | | 0.0.2 | 2024-10-28 | [47669](https://github.com/airbytehq/airbyte/pull/47669) | Update dependencies | | 0.0.1 | 2024-08-28 | | Initial release by [@natikgadzhi](https://github.com/natikgadzhi) via Connector Builder | From c058c81ea761b3ec9488337c9d5bfc11b47581c6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:15 +0200 Subject: [PATCH 702/808] =?UTF-8?q?=F0=9F=90=99=20source-safetyculture:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-11-05]=20(#48325)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-safetyculture/metadata.yaml | 4 ++-- docs/integrations/sources/safetyculture.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-safetyculture/metadata.yaml b/airbyte-integrations/connectors/source-safetyculture/metadata.yaml index 5a4f2b1a839b..e091385e41a2 100644 --- a/airbyte-integrations/connectors/source-safetyculture/metadata.yaml +++ b/airbyte-integrations/connectors/source-safetyculture/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-safetyculture connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: 570b875e-52d9-40e0-a43c-340ebae2d9f8 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-safetyculture githubIssueLabel: source-safetyculture icon: icon.svg diff --git a/docs/integrations/sources/safetyculture.md b/docs/integrations/sources/safetyculture.md index 343cb24bb1d5..387f6495568d 100644 --- a/docs/integrations/sources/safetyculture.md +++ b/docs/integrations/sources/safetyculture.md @@ -54,6 +54,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.4 | 2024-11-05 | [48325](https://github.com/airbytehq/airbyte/pull/48325) | Update dependencies | | 0.0.3 | 2024-10-29 | [47839](https://github.com/airbytehq/airbyte/pull/47839) | Update dependencies | | 0.0.2 | 2024-10-28 | [47586](https://github.com/airbytehq/airbyte/pull/47586) | Update dependencies | | 0.0.1 | 2024-10-04 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | From fa4bc9d653c266471d7b3be69e0692eb54a2591f Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:17 +0200 Subject: [PATCH 703/808] =?UTF-8?q?=F0=9F=90=99=20source-productboard:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-05]=20(#48324)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-productboard/metadata.yaml | 4 ++-- docs/integrations/sources/productboard.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-productboard/metadata.yaml b/airbyte-integrations/connectors/source-productboard/metadata.yaml index 5a08a2ad68e2..ae412af9a761 100644 --- a/airbyte-integrations/connectors/source-productboard/metadata.yaml +++ b/airbyte-integrations/connectors/source-productboard/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-productboard connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: 43ae66ee-e3df-4fb7-bff5-9625d25cdc14 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-productboard githubIssueLabel: source-productboard icon: icon.svg diff --git a/docs/integrations/sources/productboard.md b/docs/integrations/sources/productboard.md index 7437998bd922..fbb68ab31b34 100644 --- a/docs/integrations/sources/productboard.md +++ b/docs/integrations/sources/productboard.md @@ -36,6 +36,7 @@ A manifest only source for Productboard. https://www.productboard.com/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| +| 0.0.4 | 2024-11-05 | [48324](https://github.com/airbytehq/airbyte/pull/48324) | Update dependencies | | 0.0.3 | 2024-10-29 | [47774](https://github.com/airbytehq/airbyte/pull/47774) | Update dependencies | | 0.0.2 | 2024-10-28 | [47677](https://github.com/airbytehq/airbyte/pull/47677) | Update dependencies | | 0.0.1 | 2024-09-13 | [45449](https://github.com/airbytehq/airbyte/pull/45449) | Initial release by [@pabloescoder](https://github.com/pabloescoder) via Connector Builder | From bcb487359374ad96e4fbe712f36002ecd17226af Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:20 +0200 Subject: [PATCH 704/808] =?UTF-8?q?=F0=9F=90=99=20destination-pinecone:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-11-05]=20(#48323)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-pinecone/metadata.yaml | 2 +- .../destination-pinecone/poetry.lock | 298 +++++++++--------- .../destination-pinecone/pyproject.toml | 2 +- docs/integrations/destinations/pinecone.md | 1 + 4 files changed, 152 insertions(+), 151 deletions(-) diff --git a/airbyte-integrations/connectors/destination-pinecone/metadata.yaml b/airbyte-integrations/connectors/destination-pinecone/metadata.yaml index 6bf571642819..429fff314eb9 100644 --- a/airbyte-integrations/connectors/destination-pinecone/metadata.yaml +++ b/airbyte-integrations/connectors/destination-pinecone/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 3d2b6f84-7f0d-4e3f-a5e5-7c7d4b50eabd - dockerImageTag: 0.1.27 + dockerImageTag: 0.1.28 dockerRepository: airbyte/destination-pinecone documentationUrl: https://docs.airbyte.com/integrations/destinations/pinecone githubIssueLabel: destination-pinecone diff --git a/airbyte-integrations/connectors/destination-pinecone/poetry.lock b/airbyte-integrations/connectors/destination-pinecone/poetry.lock index 8ffc4c24d69c..e64f64a026fa 100644 --- a/airbyte-integrations/connectors/destination-pinecone/poetry.lock +++ b/airbyte-integrations/connectors/destination-pinecone/poetry.lock @@ -1620,13 +1620,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1758,13 +1758,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.23.0" +version = "3.23.1" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.9" files = [ - {file = "marshmallow-3.23.0-py3-none-any.whl", hash = "sha256:82f20a2397834fe6d9611b241f2f7e7b680ed89c49f84728a1ad937be6b4bdf4"}, - {file = "marshmallow-3.23.0.tar.gz", hash = "sha256:98d8827a9f10c03d44ead298d2e99c6aea8197df18ccfad360dae7f89a50da2e"}, + {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, + {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, ] [package.dependencies] @@ -1772,7 +1772,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "simplejson"] [[package]] @@ -2099,69 +2099,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -3589,93 +3589,93 @@ files = [ [[package]] name = "yarl" -version = "1.17.0" +version = "1.17.1" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, - {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, - {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, - {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, - {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, - {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, - {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, - {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, - {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, - {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, - {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, - {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, - {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-pinecone/pyproject.toml b/airbyte-integrations/connectors/destination-pinecone/pyproject.toml index f863fa238dc7..8d8ae0dad1c3 100644 --- a/airbyte-integrations/connectors/destination-pinecone/pyproject.toml +++ b/airbyte-integrations/connectors/destination-pinecone/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-pinecone" -version = "0.1.27" +version = "0.1.28" description = "Airbyte destination implementation for Pinecone." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/pinecone.md b/docs/integrations/destinations/pinecone.md index b14fa57ff858..bf45170b86a2 100644 --- a/docs/integrations/destinations/pinecone.md +++ b/docs/integrations/destinations/pinecone.md @@ -79,6 +79,7 @@ OpenAI and Fake embeddings produce vectors with 1536 dimensions, and the Cohere | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------- | +| 0.1.28 | 2024-11-05 | [48323](https://github.com/airbytehq/airbyte/pull/48323) | Update dependencies | | 0.1.27 | 2024-10-29 | [47106](https://github.com/airbytehq/airbyte/pull/47106) | Update dependencies | | 0.1.26 | 2024-10-12 | [46782](https://github.com/airbytehq/airbyte/pull/46782) | Update dependencies | | 0.1.25 | 2024-10-05 | [46474](https://github.com/airbytehq/airbyte/pull/46474) | Update dependencies | From 0e7904a1f0f08e3b52d71841841619e45ae6bcdb Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:23 +0200 Subject: [PATCH 705/808] =?UTF-8?q?=F0=9F=90=99=20source-shopify:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-05]=20(#48322)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-shopify/metadata.yaml | 2 +- .../connectors/source-shopify/poetry.lock | 234 +++++++++--------- .../connectors/source-shopify/pyproject.toml | 2 +- docs/integrations/sources/shopify.md | 1 + 4 files changed, 121 insertions(+), 118 deletions(-) diff --git a/airbyte-integrations/connectors/source-shopify/metadata.yaml b/airbyte-integrations/connectors/source-shopify/metadata.yaml index 77118ad4ebc2..810f56bd957f 100644 --- a/airbyte-integrations/connectors/source-shopify/metadata.yaml +++ b/airbyte-integrations/connectors/source-shopify/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9da77001-af33-4bcd-be46-6252bf9342b9 - dockerImageTag: 2.5.9 + dockerImageTag: 2.5.10 dockerRepository: airbyte/source-shopify documentationUrl: https://docs.airbyte.com/integrations/sources/shopify erdUrl: https://dbdocs.io/airbyteio/source-shopify?view=relationships diff --git a/airbyte-integrations/connectors/source-shopify/poetry.lock b/airbyte-integrations/connectors/source-shopify/poetry.lock index 1726a966fd79..3ed83392dbac 100644 --- a/airbyte-integrations/connectors/source-shopify/poetry.lock +++ b/airbyte-integrations/connectors/source-shopify/poetry.lock @@ -764,13 +764,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -877,131 +877,133 @@ twitter = ["twython"] [[package]] name = "numpy" -version = "2.1.2" +version = "2.1.3" description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.10" files = [ - {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, - {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, - {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, - {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, - {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, - {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, - {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, - {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, - {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, - {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c894b4305373b9c5576d7a12b473702afdf48ce5369c074ba304cc5ad8730dff"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b47fbb433d3260adcd51eb54f92a2ffbc90a4595f8970ee00e064c644ac788f5"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:825656d0743699c529c5943554d223c021ff0494ff1442152ce887ef4f7561a1"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:6a4825252fcc430a182ac4dee5a505053d262c807f8a924603d411f6718b88fd"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e711e02f49e176a01d0349d82cb5f05ba4db7d5e7e0defd026328e5cfb3226d3"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78574ac2d1a4a02421f25da9559850d59457bac82f2b8d7a44fe83a64f770098"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c7662f0e3673fe4e832fe07b65c50342ea27d989f92c80355658c7f888fcc83c"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:fa2d1337dc61c8dc417fbccf20f6d1e139896a30721b7f1e832b2bb6ef4eb6c4"}, + {file = "numpy-2.1.3-cp310-cp310-win32.whl", hash = "sha256:72dcc4a35a8515d83e76b58fdf8113a5c969ccd505c8a946759b24e3182d1f23"}, + {file = "numpy-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:ecc76a9ba2911d8d37ac01de72834d8849e55473457558e12995f4cd53e778e0"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d1167c53b93f1f5d8a139a742b3c6f4d429b54e74e6b57d0eff40045187b15d"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c80e4a09b3d95b4e1cac08643f1152fa71a0a821a2d4277334c88d54b2219a41"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:576a1c1d25e9e02ed7fa5477f30a127fe56debd53b8d2c89d5578f9857d03ca9"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:973faafebaae4c0aaa1a1ca1ce02434554d67e628b8d805e61f874b84e136b09"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:762479be47a4863e261a840e8e01608d124ee1361e48b96916f38b119cfda04a"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc6f24b3d1ecc1eebfbf5d6051faa49af40b03be1aaa781ebdadcbc090b4539b"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:17ee83a1f4fef3c94d16dc1802b998668b5419362c8a4f4e8a491de1b41cc3ee"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15cb89f39fa6d0bdfb600ea24b250e5f1a3df23f901f51c8debaa6a5d122b2f0"}, + {file = "numpy-2.1.3-cp311-cp311-win32.whl", hash = "sha256:d9beb777a78c331580705326d2367488d5bc473b49a9bc3036c154832520aca9"}, + {file = "numpy-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:d89dd2b6da69c4fff5e39c28a382199ddedc3a5be5390115608345dec660b9e2"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f55ba01150f52b1027829b50d70ef1dafd9821ea82905b63936668403c3b471e"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13138eadd4f4da03074851a698ffa7e405f41a0845a6b1ad135b81596e4e9958"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a6b46587b14b888e95e4a24d7b13ae91fa22386c199ee7b418f449032b2fa3b8"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:0fa14563cc46422e99daef53d725d0c326e99e468a9320a240affffe87852564"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8637dcd2caa676e475503d1f8fdb327bc495554e10838019651b76d17b98e512"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2312b2aa89e1f43ecea6da6ea9a810d06aae08321609d8dc0d0eda6d946a541b"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a38c19106902bb19351b83802531fea19dee18e5b37b36454f27f11ff956f7fc"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02135ade8b8a84011cbb67dc44e07c58f28575cf9ecf8ab304e51c05528c19f0"}, + {file = "numpy-2.1.3-cp312-cp312-win32.whl", hash = "sha256:e6988e90fcf617da2b5c78902fe8e668361b43b4fe26dbf2d7b0f8034d4cafb9"}, + {file = "numpy-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:0d30c543f02e84e92c4b1f415b7c6b5326cbe45ee7882b6b77db7195fb971e3a"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96fe52fcdb9345b7cd82ecd34547fca4321f7656d500eca497eb7ea5a926692f"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f653490b33e9c3a4c1c01d41bc2aef08f9475af51146e4a7710c450cf9761598"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dc258a761a16daa791081d026f0ed4399b582712e6fc887a95af09df10c5ca57"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:016d0f6f5e77b0f0d45d77387ffa4bb89816b57c835580c3ce8e099ef830befe"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c181ba05ce8299c7aa3125c27b9c2167bca4a4445b7ce73d5febc411ca692e43"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5641516794ca9e5f8a4d17bb45446998c6554704d888f86df9b200e66bdcce56"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea4dedd6e394a9c180b33c2c872b92f7ce0f8e7ad93e9585312b0c5a04777a4a"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0df3635b9c8ef48bd3be5f862cf71b0a4716fa0e702155c45067c6b711ddcef"}, + {file = "numpy-2.1.3-cp313-cp313-win32.whl", hash = "sha256:50ca6aba6e163363f132b5c101ba078b8cbd3fa92c7865fd7d4d62d9779ac29f"}, + {file = "numpy-2.1.3-cp313-cp313-win_amd64.whl", hash = "sha256:747641635d3d44bcb380d950679462fae44f54b131be347d5ec2bce47d3df9ed"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:996bb9399059c5b82f76b53ff8bb686069c05acc94656bb259b1d63d04a9506f"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:45966d859916ad02b779706bb43b954281db43e185015df6eb3323120188f9e4"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:baed7e8d7481bfe0874b566850cb0b85243e982388b7b23348c6db2ee2b2ae8e"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f7f672a3388133335589cfca93ed468509cb7b93ba3105fce780d04a6576a0"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7aac50327da5d208db2eec22eb11e491e3fe13d22653dce51b0f4109101b408"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4394bc0dbd074b7f9b52024832d16e019decebf86caf909d94f6b3f77a8ee3b6"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:50d18c4358a0a8a53f12a8ba9d772ab2d460321e6a93d6064fc22443d189853f"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:14e253bd43fc6b37af4921b10f6add6925878a42a0c5fe83daee390bca80bc17"}, + {file = "numpy-2.1.3-cp313-cp313t-win32.whl", hash = "sha256:08788d27a5fd867a663f6fc753fd7c3ad7e92747efc73c53bca2f19f8bc06f48"}, + {file = "numpy-2.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2564fbdf2b99b3f815f2107c1bbc93e2de8ee655a69c261363a1172a79a257d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4f2015dfe437dfebbfce7c85c7b53d81ba49e71ba7eadbf1df40c915af75979f"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:3522b0dfe983a575e6a9ab3a4a4dfe156c3e428468ff08ce582b9bb6bd1d71d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c006b607a865b07cd981ccb218a04fc86b600411d83d6fc261357f1c0966755d"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:e14e26956e6f1696070788252dcdff11b4aca4c3e8bd166e0df1bb8f315a67cb"}, + {file = "numpy-2.1.3.tar.gz", hash = "sha256:aa08e04e08aaf974d4458def539dece0d28146d866a39da5639596f4921fd761"}, ] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-shopify/pyproject.toml b/airbyte-integrations/connectors/source-shopify/pyproject.toml index 26496f2586c5..ebae28f461b7 100644 --- a/airbyte-integrations/connectors/source-shopify/pyproject.toml +++ b/airbyte-integrations/connectors/source-shopify/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.5.9" +version = "2.5.10" name = "source-shopify" description = "Source CDK implementation for Shopify." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/shopify.md b/docs/integrations/sources/shopify.md index 48a9a223cd73..b10420c449cb 100644 --- a/docs/integrations/sources/shopify.md +++ b/docs/integrations/sources/shopify.md @@ -247,6 +247,7 @@ For all `Shopify GraphQL BULK` api requests these limitations are applied: https | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 2.5.10 | 2024-11-05 | [48322](https://github.com/airbytehq/airbyte/pull/48322) | Update dependencies | | 2.5.9 | 2024-10-29 | [47814](https://github.com/airbytehq/airbyte/pull/47814) | Update dependencies | | 2.5.8 | 2024-10-28 | [47044](https://github.com/airbytehq/airbyte/pull/47044) | Update dependencies | | 2.5.7 | 2024-10-14 | [46552](https://github.com/airbytehq/airbyte/pull/46552) | Add `parent state` tracking for BULK sub-streams | From 801417646c452f1cec319c4bca4b0b5065ceee10 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:26 +0200 Subject: [PATCH 706/808] =?UTF-8?q?=F0=9F=90=99=20source-clarif-ai:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-05]=20(#48321)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-clarif-ai/metadata.yaml | 4 ++-- docs/integrations/sources/clarif-ai.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml b/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml index 9f3a713be047..8328cb998342 100644 --- a/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml +++ b/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-clarif-ai connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: 7fbeaeea-2d0d-4f13-8200-fa228494d91c - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-clarif-ai githubIssueLabel: source-clarif-ai icon: icon.svg diff --git a/docs/integrations/sources/clarif-ai.md b/docs/integrations/sources/clarif-ai.md index 366ad168b13f..485def82c635 100644 --- a/docs/integrations/sources/clarif-ai.md +++ b/docs/integrations/sources/clarif-ai.md @@ -31,6 +31,7 @@ API Documentation: https://docs.clarifai.com/api-guide/api-overview/helpful-api- | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-05 | [48321](https://github.com/airbytehq/airbyte/pull/48321) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | From 07f9ed78ea45c96eedcf919f0420b782c313fee1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:29 +0200 Subject: [PATCH 707/808] =?UTF-8?q?=F0=9F=90=99=20source-hellobaton:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-05]=20(#48320)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-hellobaton/metadata.yaml | 4 ++-- docs/integrations/sources/hellobaton.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-hellobaton/metadata.yaml b/airbyte-integrations/connectors/source-hellobaton/metadata.yaml index c29d6a4f58a3..d843e75a2883 100644 --- a/airbyte-integrations/connectors/source-hellobaton/metadata.yaml +++ b/airbyte-integrations/connectors/source-hellobaton/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 492b56d1-937c-462e-8076-21ad2031e784 - dockerImageTag: 0.3.2 + dockerImageTag: 0.3.3 dockerRepository: airbyte/source-hellobaton githubIssueLabel: source-hellobaton icon: hellobaton.svg @@ -43,5 +43,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/hellobaton.md b/docs/integrations/sources/hellobaton.md index 14fe7e431297..e197f1bea54f 100644 --- a/docs/integrations/sources/hellobaton.md +++ b/docs/integrations/sources/hellobaton.md @@ -56,6 +56,7 @@ The connector is rate limited at 1000 requests per minute per api key. If you fi | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------- | +| 0.3.3 | 2024-11-05 | [48320](https://github.com/airbytehq/airbyte/pull/48320) | Update dependencies | | 0.3.2 | 2024-10-22 | [47236](https://github.com/airbytehq/airbyte/pull/47236) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | | 0.3.0 | 2024-08-15 | [44142](https://github.com/airbytehq/airbyte/pull/44142) | Refactor connector to manifest-only format | From 5193a10fc855bd37c8b71e338a6d5a752d1023e4 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:32 +0200 Subject: [PATCH 708/808] =?UTF-8?q?=F0=9F=90=99=20source-github:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-05]=20(#48318)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-github/metadata.yaml | 2 +- .../connectors/source-github/poetry.lock | 136 +++++++++--------- .../connectors/source-github/pyproject.toml | 2 +- docs/integrations/sources/github.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/source-github/metadata.yaml b/airbyte-integrations/connectors/source-github/metadata.yaml index 152d2130e645..d9948cf58dc4 100644 --- a/airbyte-integrations/connectors/source-github/metadata.yaml +++ b/airbyte-integrations/connectors/source-github/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: ef69ef6e-aa7f-4af1-a01d-ef775033524e - dockerImageTag: 1.8.15 + dockerImageTag: 1.8.16 dockerRepository: airbyte/source-github documentationUrl: https://docs.airbyte.com/integrations/sources/github erdUrl: https://dbdocs.io/airbyteio/source-github?view=relationships diff --git a/airbyte-integrations/connectors/source-github/poetry.lock b/airbyte-integrations/connectors/source-github/poetry.lock index 6f8cd9a9f3ca..419573b3d96e 100644 --- a/airbyte-integrations/connectors/source-github/poetry.lock +++ b/airbyte-integrations/connectors/source-github/poetry.lock @@ -742,13 +742,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -855,69 +855,69 @@ twitter = ["twython"] [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1558,23 +1558,23 @@ tests = ["coverage (>=6.0.0)", "flake8", "mypy", "pytest (>=7.0.0)", "pytest-asy [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "sgqlc" diff --git a/airbyte-integrations/connectors/source-github/pyproject.toml b/airbyte-integrations/connectors/source-github/pyproject.toml index b6a51a0a86f0..605bc10105e8 100644 --- a/airbyte-integrations/connectors/source-github/pyproject.toml +++ b/airbyte-integrations/connectors/source-github/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.8.15" +version = "1.8.16" name = "source-github" description = "Source implementation for GitHub." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/github.md b/docs/integrations/sources/github.md index 84f41397fba6..6bb35776106a 100644 --- a/docs/integrations/sources/github.md +++ b/docs/integrations/sources/github.md @@ -225,6 +225,7 @@ Your token should have at least the `repo` scope. Depending on which streams you | Version | Date | Pull Request | Subject | |:--------|:-----------|:------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 1.8.16 | 2024-11-05 | [48318](https://github.com/airbytehq/airbyte/pull/48318) | Update dependencies | | 1.8.15 | 2024-10-28 | [47051](https://github.com/airbytehq/airbyte/pull/47051) | Update dependencies | | 1.8.14 | 2024-10-12 | [46766](https://github.com/airbytehq/airbyte/pull/46766) | Update dependencies | | 1.8.13 | 2024-10-05 | [46415](https://github.com/airbytehq/airbyte/pull/46415) | Update dependencies | From e4050162df1694fec344df8f2e3bdbc3e774457d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:35 +0200 Subject: [PATCH 709/808] =?UTF-8?q?=F0=9F=90=99=20source-file:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-05]=20(#48317)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-file/metadata.yaml | 2 +- .../connectors/source-file/poetry.lock | 296 +++++++++--------- .../connectors/source-file/pyproject.toml | 2 +- docs/integrations/sources/file.md | 1 + 4 files changed, 151 insertions(+), 150 deletions(-) diff --git a/airbyte-integrations/connectors/source-file/metadata.yaml b/airbyte-integrations/connectors/source-file/metadata.yaml index af8bbfc91636..18c42ec00b76 100644 --- a/airbyte-integrations/connectors/source-file/metadata.yaml +++ b/airbyte-integrations/connectors/source-file/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: file connectorType: source definitionId: 778daa7c-feaf-4db6-96f3-70fd645acc77 - dockerImageTag: 0.5.14 + dockerImageTag: 0.5.15 dockerRepository: airbyte/source-file documentationUrl: https://docs.airbyte.com/integrations/sources/file githubIssueLabel: source-file diff --git a/airbyte-integrations/connectors/source-file/poetry.lock b/airbyte-integrations/connectors/source-file/poetry.lock index 9e011bdd0877..e61a3e38a600 100644 --- a/airbyte-integrations/connectors/source-file/poetry.lock +++ b/airbyte-integrations/connectors/source-file/poetry.lock @@ -305,13 +305,13 @@ files = [ [[package]] name = "azure-core" -version = "1.31.0" +version = "1.32.0" description = "Microsoft Azure Core Library for Python" optional = false python-versions = ">=3.8" files = [ - {file = "azure_core-1.31.0-py3-none-any.whl", hash = "sha256:22954de3777e0250029360ef31d80448ef1be13b80a459bff80ba7073379e2cd"}, - {file = "azure_core-1.31.0.tar.gz", hash = "sha256:656a0dd61e1869b1506b7c6a3b31d62f15984b1a573d6326f6aa2f3e4123284b"}, + {file = "azure_core-1.32.0-py3-none-any.whl", hash = "sha256:eac191a0efb23bfa83fddf321b27b122b4ec847befa3091fa736a5c32c50d7b4"}, + {file = "azure_core-1.32.0.tar.gz", hash = "sha256:22b3c35d6b2dae14990f6c1be2912bf23ffe50b220e708a28ab1bb92b1c730e5"}, ] [package.dependencies] @@ -1557,13 +1557,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -1909,69 +1909,69 @@ et-xmlfile = "*" [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -3143,93 +3143,93 @@ test = ["pytest", "pytest-cov"] [[package]] name = "yarl" -version = "1.17.0" +version = "1.17.1" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d8715edfe12eee6f27f32a3655f38d6c7410deb482158c0b7d4b7fad5d07628"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1803bf2a7a782e02db746d8bd18f2384801bc1d108723840b25e065b116ad726"}, - {file = "yarl-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e66589110e20c2951221a938fa200c7aa134a8bdf4e4dc97e6b21539ff026d4"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7069d411cfccf868e812497e0ec4acb7c7bf8d684e93caa6c872f1e6f5d1664d"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cbf70ba16118db3e4b0da69dcde9d4d4095d383c32a15530564c283fa38a7c52"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bc53cc349675b32ead83339a8de79eaf13b88f2669c09d4962322bb0f064cbc"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6aa18a402d1c80193ce97c8729871f17fd3e822037fbd7d9b719864018df746"}, - {file = "yarl-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d89c5bc701861cfab357aa0cd039bc905fe919997b8c312b4b0c358619c38d4d"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b728bdf38ca58f2da1d583e4af4ba7d4cd1a58b31a363a3137a8159395e7ecc7"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5542e57dc15d5473da5a39fbde14684b0cc4301412ee53cbab677925e8497c11"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e564b57e5009fb150cb513804d7e9e9912fee2e48835638f4f47977f88b4a39c"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:eb3c4cff524b4c1c1dba3a6da905edb1dfd2baf6f55f18a58914bbb2d26b59e1"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:05e13f389038842da930d439fbed63bdce3f7644902714cb68cf527c971af804"}, - {file = "yarl-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:153c38ee2b4abba136385af4467459c62d50f2a3f4bde38c7b99d43a20c143ef"}, - {file = "yarl-1.17.0-cp310-cp310-win32.whl", hash = "sha256:4065b4259d1ae6f70fd9708ffd61e1c9c27516f5b4fae273c41028afcbe3a094"}, - {file = "yarl-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:abf366391a02a8335c5c26163b5fe6f514cc1d79e74d8bf3ffab13572282368e"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:19a4fe0279626c6295c5b0c8c2bb7228319d2e985883621a6e87b344062d8135"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cadd0113f4db3c6b56868d6a19ca6286f5ccfa7bc08c27982cf92e5ed31b489a"}, - {file = "yarl-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:60d6693eef43215b1ccfb1df3f6eae8db30a9ff1e7989fb6b2a6f0b468930ee8"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb8bf3843e1fa8cf3fe77813c512818e57368afab7ebe9ef02446fe1a10b492"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2a5b35fd1d8d90443e061d0c8669ac7600eec5c14c4a51f619e9e105b136715"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5bf17b32f392df20ab5c3a69d37b26d10efaa018b4f4e5643c7520d8eee7ac7"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f51b529b958cd06e78158ff297a8bf57b4021243c179ee03695b5dbf9cb6e1"}, - {file = "yarl-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fcaa06bf788e19f913d315d9c99a69e196a40277dc2c23741a1d08c93f4d430"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:32f3ee19ff0f18a7a522d44e869e1ebc8218ad3ae4ebb7020445f59b4bbe5897"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:a4fb69a81ae2ec2b609574ae35420cf5647d227e4d0475c16aa861dd24e840b0"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7bacc8b77670322132a1b2522c50a1f62991e2f95591977455fd9a398b4e678d"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:437bf6eb47a2d20baaf7f6739895cb049e56896a5ffdea61a4b25da781966e8b"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30534a03c87484092080e3b6e789140bd277e40f453358900ad1f0f2e61fc8ec"}, - {file = "yarl-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b30df4ff98703649915144be6f0df3b16fd4870ac38a09c56d5d9e54ff2d5f96"}, - {file = "yarl-1.17.0-cp311-cp311-win32.whl", hash = "sha256:263b487246858e874ab53e148e2a9a0de8465341b607678106829a81d81418c6"}, - {file = "yarl-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:07055a9e8b647a362e7d4810fe99d8f98421575e7d2eede32e008c89a65a17bd"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:84095ab25ba69a8fa3fb4936e14df631b8a71193fe18bd38be7ecbe34d0f5512"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:02608fb3f6df87039212fc746017455ccc2a5fc96555ee247c45d1e9f21f1d7b"}, - {file = "yarl-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13468d291fe8c12162b7cf2cdb406fe85881c53c9e03053ecb8c5d3523822cd9"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8da3f8f368fb7e2f052fded06d5672260c50b5472c956a5f1bd7bf474ae504ab"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec0507ab6523980bed050137007c76883d941b519aca0e26d4c1ec1f297dd646"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08fc76df7fd8360e9ff30e6ccc3ee85b8dbd6ed5d3a295e6ec62bcae7601b932"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d522f390686acb6bab2b917dd9ca06740c5080cd2eaa5aef8827b97e967319d"}, - {file = "yarl-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:147c527a80bb45b3dcd6e63401af8ac574125d8d120e6afe9901049286ff64ef"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:24cf43bcd17a0a1f72284e47774f9c60e0bf0d2484d5851f4ddf24ded49f33c6"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c28a44b9e0fba49c3857360e7ad1473fc18bc7f6659ca08ed4f4f2b9a52c75fa"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:350cacb2d589bc07d230eb995d88fcc646caad50a71ed2d86df533a465a4e6e1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fd1ab1373274dea1c6448aee420d7b38af163b5c4732057cd7ee9f5454efc8b1"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4934e0f96dadc567edc76d9c08181633c89c908ab5a3b8f698560124167d9488"}, - {file = "yarl-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8d0a278170d75c88e435a1ce76557af6758bfebc338435b2eba959df2552163e"}, - {file = "yarl-1.17.0-cp312-cp312-win32.whl", hash = "sha256:61584f33196575a08785bb56db6b453682c88f009cd9c6f338a10f6737ce419f"}, - {file = "yarl-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:9987a439ad33a7712bd5bbd073f09ad10d38640425fa498ecc99d8aa064f8fc4"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8deda7b8eb15a52db94c2014acdc7bdd14cb59ec4b82ac65d2ad16dc234a109e"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56294218b348dcbd3d7fce0ffd79dd0b6c356cb2a813a1181af730b7c40de9e7"}, - {file = "yarl-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1fab91292f51c884b290ebec0b309a64a5318860ccda0c4940e740425a67b6b7"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cf93fa61ff4d9c7d40482ce1a2c9916ca435e34a1b8451e17f295781ccc034f"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:261be774a0d71908c8830c33bacc89eef15c198433a8cc73767c10eeeb35a7d0"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deec9693b67f6af856a733b8a3e465553ef09e5e8ead792f52c25b699b8f9e6e"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c804b07622ba50a765ca7fb8145512836ab65956de01307541def869e4a456c9"}, - {file = "yarl-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d013a7c9574e98c14831a8f22d27277688ec3b2741d0188ac01a910b009987a"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e2cfcba719bd494c7413dcf0caafb51772dec168c7c946e094f710d6aa70494e"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c068aba9fc5b94dfae8ea1cedcbf3041cd4c64644021362ffb750f79837e881f"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3616df510ffac0df3c9fa851a40b76087c6c89cbcea2de33a835fc80f9faac24"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:755d6176b442fba9928a4df787591a6a3d62d4969f05c406cad83d296c5d4e05"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c18f6e708d1cf9ff5b1af026e697ac73bea9cb70ee26a2b045b112548579bed2"}, - {file = "yarl-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b937c216b6dee8b858c6afea958de03c5ff28406257d22b55c24962a2baf6fd"}, - {file = "yarl-1.17.0-cp313-cp313-win32.whl", hash = "sha256:d0131b14cb545c1a7bd98f4565a3e9bdf25a1bd65c83fc156ee5d8a8499ec4a3"}, - {file = "yarl-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:01c96efa4313c01329e88b7e9e9e1b2fc671580270ddefdd41129fa8d0db7696"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d44f67e193f0a7acdf552ecb4d1956a3a276c68e7952471add9f93093d1c30d"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:16ea0aa5f890cdcb7ae700dffa0397ed6c280840f637cd07bffcbe4b8d68b985"}, - {file = "yarl-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cf5469dc7dcfa65edf5cc3a6add9f84c5529c6b556729b098e81a09a92e60e51"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e662bf2f6e90b73cf2095f844e2bc1fda39826472a2aa1959258c3f2a8500a2f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8260e88f1446904ba20b558fa8ce5d0ab9102747238e82343e46d056d7304d7e"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dc16477a4a2c71e64c5d3d15d7ae3d3a6bb1e8b955288a9f73c60d2a391282f"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46027e326cecd55e5950184ec9d86c803f4f6fe4ba6af9944a0e537d643cdbe0"}, - {file = "yarl-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc95e46c92a2b6f22e70afe07e34dbc03a4acd07d820204a6938798b16f4014f"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:16ca76c7ac9515320cd09d6cc083d8d13d1803f6ebe212b06ea2505fd66ecff8"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:eb1a5b97388f2613f9305d78a3473cdf8d80c7034e554d8199d96dcf80c62ac4"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:41fd5498975418cdc34944060b8fbeec0d48b2741068077222564bea68daf5a6"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:146ca582ed04a5664ad04b0e0603934281eaab5c0115a5a46cce0b3c061a56a1"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:6abb8c06107dbec97481b2392dafc41aac091a5d162edf6ed7d624fe7da0587a"}, - {file = "yarl-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d14be4613dd4f96c25feb4bd8c0d8ce0f529ab0ae555a17df5789e69d8ec0c5"}, - {file = "yarl-1.17.0-cp39-cp39-win32.whl", hash = "sha256:174d6a6cad1068f7850702aad0c7b1bca03bcac199ca6026f84531335dfc2646"}, - {file = "yarl-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:6af417ca2c7349b101d3fd557ad96b4cd439fdb6ab0d288e3f64a068eea394d0"}, - {file = "yarl-1.17.0-py3-none-any.whl", hash = "sha256:62dd42bb0e49423f4dd58836a04fcf09c80237836796025211bbe913f1524993"}, - {file = "yarl-1.17.0.tar.gz", hash = "sha256:d3f13583f378930377e02002b4085a3d025b00402d5a80911726d43a67911cd9"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-file/pyproject.toml b/airbyte-integrations/connectors/source-file/pyproject.toml index 05a034726be0..f0c63df0bc86 100644 --- a/airbyte-integrations/connectors/source-file/pyproject.toml +++ b/airbyte-integrations/connectors/source-file/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.14" +version = "0.5.15" name = "source-file" description = "Source implementation for File" authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/file.md b/docs/integrations/sources/file.md index d2895ec7bfa5..7da794d7713b 100644 --- a/docs/integrations/sources/file.md +++ b/docs/integrations/sources/file.md @@ -298,6 +298,7 @@ In order to read large files from a remote location, this connector uses the [sm | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------ | +| 0.5.15 | 2024-11-05 | [48317](https://github.com/airbytehq/airbyte/pull/48317) | Update dependencies | | 0.5.14 | 2024-10-29 | [47115](https://github.com/airbytehq/airbyte/pull/47115) | Update dependencies | | 0.5.13 | 2024-10-12 | [45795](https://github.com/airbytehq/airbyte/pull/45795) | Update dependencies | | 0.5.12 | 2024-09-14 | [45499](https://github.com/airbytehq/airbyte/pull/45499) | Update dependencies | From 61d0ea68eb9777eb30d9b19c5ec4ded6f23a7448 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:40 +0200 Subject: [PATCH 710/808] =?UTF-8?q?=F0=9F=90=99=20source-sparkpost:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48315)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sparkpost/metadata.yaml | 4 ++-- docs/integrations/sources/sparkpost.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sparkpost/metadata.yaml b/airbyte-integrations/connectors/source-sparkpost/metadata.yaml index 4c5361f1bac4..58df9f4ac46b 100644 --- a/airbyte-integrations/connectors/source-sparkpost/metadata.yaml +++ b/airbyte-integrations/connectors/source-sparkpost/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-sparkpost connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 5f3256c6-4247-4b6d-a8e4-1df61dc9322c - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-sparkpost githubIssueLabel: source-sparkpost icon: icon.svg diff --git a/docs/integrations/sources/sparkpost.md b/docs/integrations/sources/sparkpost.md index 0eb783f8a63b..2bc6cf368dbb 100644 --- a/docs/integrations/sources/sparkpost.md +++ b/docs/integrations/sources/sparkpost.md @@ -27,6 +27,7 @@ The SparkPost connector for Airbyte enables seamless integration with SparkPost | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.4 | 2024-11-04 | [48315](https://github.com/airbytehq/airbyte/pull/48315) | Update dependencies | | 0.0.3 | 2024-10-29 | [47815](https://github.com/airbytehq/airbyte/pull/47815) | Update dependencies | | 0.0.2 | 2024-10-28 | [47612](https://github.com/airbytehq/airbyte/pull/47612) | Update dependencies | | 0.0.1 | 2024-10-22 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | From 74deadec918a88c877cc01c7d2f318006fd3d572 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:42 +0200 Subject: [PATCH 711/808] =?UTF-8?q?=F0=9F=90=99=20source-kyriba:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-04]=20(#48314)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-kyriba/metadata.yaml | 2 +- .../connectors/source-kyriba/poetry.lock | 12 ++++++------ .../connectors/source-kyriba/pyproject.toml | 2 +- docs/integrations/sources/kyriba.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-kyriba/metadata.yaml b/airbyte-integrations/connectors/source-kyriba/metadata.yaml index 21b70fa640cf..1788e2bc5a9c 100644 --- a/airbyte-integrations/connectors/source-kyriba/metadata.yaml +++ b/airbyte-integrations/connectors/source-kyriba/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 547dc08e-ab51-421d-953b-8f3745201a8c - dockerImageTag: 0.1.24 + dockerImageTag: 0.1.25 dockerRepository: airbyte/source-kyriba documentationUrl: https://docs.airbyte.com/integrations/sources/kyriba githubIssueLabel: source-kyriba diff --git a/airbyte-integrations/connectors/source-kyriba/poetry.lock b/airbyte-integrations/connectors/source-kyriba/poetry.lock index daa4d036e32d..7a6a3934921d 100644 --- a/airbyte-integrations/connectors/source-kyriba/poetry.lock +++ b/airbyte-integrations/connectors/source-kyriba/poetry.lock @@ -884,23 +884,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/source-kyriba/pyproject.toml b/airbyte-integrations/connectors/source-kyriba/pyproject.toml index a79537a49efb..56d74f466797 100644 --- a/airbyte-integrations/connectors/source-kyriba/pyproject.toml +++ b/airbyte-integrations/connectors/source-kyriba/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.24" +version = "0.1.25" name = "source-kyriba" description = "Source implementation for Kyriba." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/kyriba.md b/docs/integrations/sources/kyriba.md index 837bf957cb53..ffb27a8824bf 100644 --- a/docs/integrations/sources/kyriba.md +++ b/docs/integrations/sources/kyriba.md @@ -71,6 +71,7 @@ The Kyriba connector should not run into API limitations under normal usage. [Cr | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------- | +| 0.1.25 | 2024-11-04 | [48314](https://github.com/airbytehq/airbyte/pull/48314) | Update dependencies | | 0.1.24 | 2024-10-28 | [47079](https://github.com/airbytehq/airbyte/pull/47079) | Update dependencies | | 0.1.23 | 2024-10-12 | [46830](https://github.com/airbytehq/airbyte/pull/46830) | Update dependencies | | 0.1.22 | 2024-10-05 | [46459](https://github.com/airbytehq/airbyte/pull/46459) | Update dependencies | From 9f1a8a6d93342d18454e70897cb40694cb31f6a2 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:47 +0200 Subject: [PATCH 712/808] =?UTF-8?q?=F0=9F=90=99=20source-drip:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-11-04]=20(#48311)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-drip/metadata.yaml | 4 ++-- docs/integrations/sources/drip.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-drip/metadata.yaml b/airbyte-integrations/connectors/source-drip/metadata.yaml index ce0fdcfc05ae..f032626a052b 100644 --- a/airbyte-integrations/connectors/source-drip/metadata.yaml +++ b/airbyte-integrations/connectors/source-drip/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-drip connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 4221175d-1bb9-436d-8cc7-ca0d8605b2b6 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-drip githubIssueLabel: source-drip icon: icon.svg diff --git a/docs/integrations/sources/drip.md b/docs/integrations/sources/drip.md index 8cf091e94954..457004295c75 100644 --- a/docs/integrations/sources/drip.md +++ b/docs/integrations/sources/drip.md @@ -29,6 +29,7 @@ Integrate seamlessly with Drip using this Airbyte connector, enabling smooth dat | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-04 | [48311](https://github.com/airbytehq/airbyte/pull/48311) | Update dependencies | | 0.0.2 | 2024-10-28 | [47446](https://github.com/airbytehq/airbyte/pull/47446) | Update dependencies | | 0.0.1 | 2024-10-08 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From b66e43dce7470d69f6f4a8525c202d34ee0593ef Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:54 +0200 Subject: [PATCH 713/808] =?UTF-8?q?=F0=9F=90=99=20source-piwik:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-11-04]=20(#48305)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-piwik/metadata.yaml | 4 ++-- docs/integrations/sources/piwik.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-piwik/metadata.yaml b/airbyte-integrations/connectors/source-piwik/metadata.yaml index e69350cd3540..c9706590f634 100644 --- a/airbyte-integrations/connectors/source-piwik/metadata.yaml +++ b/airbyte-integrations/connectors/source-piwik/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-piwik connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 09f894a4-d2fb-488f-b0eb-640205314296 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-piwik githubIssueLabel: source-piwik icon: icon.svg diff --git a/docs/integrations/sources/piwik.md b/docs/integrations/sources/piwik.md index dbf73781232e..c1dc197cddd2 100644 --- a/docs/integrations/sources/piwik.md +++ b/docs/integrations/sources/piwik.md @@ -41,6 +41,7 @@ Visit `https://developers.piwik.pro/en/latest/platform/getting_started.html#gene | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-04 | [48305](https://github.com/airbytehq/airbyte/pull/48305) | Update dependencies | | 0.0.3 | 2024-10-29 | [47931](https://github.com/airbytehq/airbyte/pull/47931) | Update dependencies | | 0.0.2 | 2024-10-28 | [47569](https://github.com/airbytehq/airbyte/pull/47569) | Update dependencies | | 0.0.1 | 2024-09-14 | [45586](https://github.com/airbytehq/airbyte/pull/45586) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 991d6f666fda58a7caff160fca35eb5c42dde4a3 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:10:57 +0200 Subject: [PATCH 714/808] =?UTF-8?q?=F0=9F=90=99=20source-when-i-work:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-11-04]=20(#48303)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-when-i-work/metadata.yaml | 4 ++-- docs/integrations/sources/when-i-work.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-when-i-work/metadata.yaml b/airbyte-integrations/connectors/source-when-i-work/metadata.yaml index eb1dd5a0717d..1da6c07405ad 100644 --- a/airbyte-integrations/connectors/source-when-i-work/metadata.yaml +++ b/airbyte-integrations/connectors/source-when-i-work/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-when-i-work connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 81ee3b58-ae1e-4727-be23-30248fa27a0a - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-when-i-work githubIssueLabel: source-when-i-work icon: icon.svg diff --git a/docs/integrations/sources/when-i-work.md b/docs/integrations/sources/when-i-work.md index 9bd0b1c2a7f0..3b34a2813373 100644 --- a/docs/integrations/sources/when-i-work.md +++ b/docs/integrations/sources/when-i-work.md @@ -38,6 +38,7 @@ You have to give your login email and password used with `when-i-work` account f | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-11-04 | [48303](https://github.com/airbytehq/airbyte/pull/48303) | Update dependencies | | 0.0.2 | 2024-10-28 | [47565](https://github.com/airbytehq/airbyte/pull/47565) | Update dependencies | | 0.0.1 | 2024-09-10 | [45367](https://github.com/airbytehq/airbyte/pull/45367) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 356949a4048ea30a2d553c9349be917e3a5d8da9 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:11:00 +0200 Subject: [PATCH 715/808] =?UTF-8?q?=F0=9F=90=99=20source-easypromos:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48302)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-easypromos/metadata.yaml | 4 ++-- docs/integrations/sources/easypromos.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-easypromos/metadata.yaml b/airbyte-integrations/connectors/source-easypromos/metadata.yaml index b0f6be25229d..954933aa5f5e 100644 --- a/airbyte-integrations/connectors/source-easypromos/metadata.yaml +++ b/airbyte-integrations/connectors/source-easypromos/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-easypromos connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 8b418a25-7042-430f-96d8-72853a337a26 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-easypromos githubIssueLabel: source-easypromos icon: icon.svg diff --git a/docs/integrations/sources/easypromos.md b/docs/integrations/sources/easypromos.md index d256a1368bab..261a73e17b38 100644 --- a/docs/integrations/sources/easypromos.md +++ b/docs/integrations/sources/easypromos.md @@ -25,6 +25,7 @@ Airbyte connector for [Easypromos](https://www.easypromosapp.com/) enables seaml | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [48302](https://github.com/airbytehq/airbyte/pull/48302) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From ad48b4e910b2748dee6cc1764347057813e8cbb1 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:11:03 +0200 Subject: [PATCH 716/808] =?UTF-8?q?=F0=9F=90=99=20source-typeform:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#48301)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-typeform/metadata.yaml | 2 +- .../connectors/source-typeform/poetry.lock | 124 +++++++++--------- .../connectors/source-typeform/pyproject.toml | 2 +- docs/integrations/sources/typeform.md | 1 + 4 files changed, 65 insertions(+), 64 deletions(-) diff --git a/airbyte-integrations/connectors/source-typeform/metadata.yaml b/airbyte-integrations/connectors/source-typeform/metadata.yaml index 33a7a531486c..8bf12d432368 100644 --- a/airbyte-integrations/connectors/source-typeform/metadata.yaml +++ b/airbyte-integrations/connectors/source-typeform/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: e7eff203-90bf-43e5-a240-19ea3056c474 - dockerImageTag: 1.3.18 + dockerImageTag: 1.3.19 dockerRepository: airbyte/source-typeform documentationUrl: https://docs.airbyte.com/integrations/sources/typeform githubIssueLabel: source-typeform diff --git a/airbyte-integrations/connectors/source-typeform/poetry.lock b/airbyte-integrations/connectors/source-typeform/poetry.lock index f2423c808fe3..7d4f97e6af14 100644 --- a/airbyte-integrations/connectors/source-typeform/poetry.lock +++ b/airbyte-integrations/connectors/source-typeform/poetry.lock @@ -678,13 +678,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.137" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.137-py3-none-any.whl", hash = "sha256:4256d5c61133749890f7b5c88321dbb133ce0f440c621ea28e76513285859b81"}, - {file = "langsmith-0.1.137.tar.gz", hash = "sha256:56cdfcc6c74cb20a3f437d5bd144feb5bf93f54c5a2918d1e568cbd084a372d4"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -766,69 +766,69 @@ files = [ [[package]] name = "orjson" -version = "3.10.10" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b788a579b113acf1c57e0a68e558be71d5d09aa67f62ca1f68e01117e550a998"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:804b18e2b88022c8905bb79bd2cbe59c0cd014b9328f43da8d3b28441995cda4"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9972572a1d042ec9ee421b6da69f7cc823da5962237563fa548ab17f152f0b9b"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc6993ab1c2ae7dd0711161e303f1db69062955ac2668181bfdf2dd410e65258"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d78e4cacced5781b01d9bc0f0cd8b70b906a0e109825cb41c1b03f9c41e4ce86"}, - {file = "orjson-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6eb2598df518281ba0cbc30d24c5b06124ccf7e19169e883c14e0831217a0bc"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23776265c5215ec532de6238a52707048401a568f0fa0d938008e92a147fe2c7"}, - {file = "orjson-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8cc2a654c08755cef90b468ff17c102e2def0edd62898b2486767204a7f5cc9c"}, - {file = "orjson-3.10.10-cp310-none-win32.whl", hash = "sha256:081b3fc6a86d72efeb67c13d0ea7c030017bd95f9868b1e329a376edc456153b"}, - {file = "orjson-3.10.10-cp310-none-win_amd64.whl", hash = "sha256:ff38c5fb749347768a603be1fb8a31856458af839f31f064c5aa74aca5be9efe"}, - {file = "orjson-3.10.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:879e99486c0fbb256266c7c6a67ff84f46035e4f8749ac6317cc83dacd7f993a"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019481fa9ea5ff13b5d5d95e6fd5ab25ded0810c80b150c2c7b1cc8660b662a7"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0dd57eff09894938b4c86d4b871a479260f9e156fa7f12f8cad4b39ea8028bb5"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dbde6d70cd95ab4d11ea8ac5e738e30764e510fc54d777336eec09bb93b8576c"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2625cb37b8fb42e2147404e5ff7ef08712099197a9cd38895006d7053e69d6"}, - {file = "orjson-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbf3c20c6a7db69df58672a0d5815647ecf78c8e62a4d9bd284e8621c1fe5ccb"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:75c38f5647e02d423807d252ce4528bf6a95bd776af999cb1fb48867ed01d1f6"}, - {file = "orjson-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:23458d31fa50ec18e0ec4b0b4343730928296b11111df5f547c75913714116b2"}, - {file = "orjson-3.10.10-cp311-none-win32.whl", hash = "sha256:2787cd9dedc591c989f3facd7e3e86508eafdc9536a26ec277699c0aa63c685b"}, - {file = "orjson-3.10.10-cp311-none-win_amd64.whl", hash = "sha256:6514449d2c202a75183f807bc755167713297c69f1db57a89a1ef4a0170ee269"}, - {file = "orjson-3.10.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8564f48f3620861f5ef1e080ce7cd122ee89d7d6dacf25fcae675ff63b4d6e05"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bf161a32b479034098c5b81f2608f09167ad2fa1c06abd4e527ea6bf4837a9"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68b65c93617bcafa7f04b74ae8bc2cc214bd5cb45168a953256ff83015c6747d"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8e28406f97fc2ea0c6150f4c1b6e8261453318930b334abc419214c82314f85"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4d0d9fe174cc7a5bdce2e6c378bcdb4c49b2bf522a8f996aa586020e1b96cee"}, - {file = "orjson-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3be81c42f1242cbed03cbb3973501fcaa2675a0af638f8be494eaf37143d999"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:65f9886d3bae65be026219c0a5f32dbbe91a9e6272f56d092ab22561ad0ea33b"}, - {file = "orjson-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:730ed5350147db7beb23ddaf072f490329e90a1d059711d364b49fe352ec987b"}, - {file = "orjson-3.10.10-cp312-none-win32.whl", hash = "sha256:a8f4bf5f1c85bea2170800020d53a8877812892697f9c2de73d576c9307a8a5f"}, - {file = "orjson-3.10.10-cp312-none-win_amd64.whl", hash = "sha256:384cd13579a1b4cd689d218e329f459eb9ddc504fa48c5a83ef4889db7fd7a4f"}, - {file = "orjson-3.10.10-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44bffae68c291f94ff5a9b4149fe9d1bdd4cd0ff0fb575bcea8351d48db629a1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27b4c6437315df3024f0835887127dac2a0a3ff643500ec27088d2588fa5ae1"}, - {file = "orjson-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca84df16d6b49325a4084fd8b2fe2229cb415e15c46c529f868c3387bb1339d"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c14ce70e8f39bd71f9f80423801b5d10bf93d1dceffdecd04df0f64d2c69bc01"}, - {file = "orjson-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24ac62336da9bda1bd93c0491eff0613003b48d3cb5d01470842e7b52a40d5b4"}, - {file = "orjson-3.10.10-cp313-none-win32.whl", hash = "sha256:eb0a42831372ec2b05acc9ee45af77bcaccbd91257345f93780a8e654efc75db"}, - {file = "orjson-3.10.10-cp313-none-win_amd64.whl", hash = "sha256:f0c4f37f8bf3f1075c6cc8dd8a9f843689a4b618628f8812d0a71e6968b95ffd"}, - {file = "orjson-3.10.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:829700cc18503efc0cf502d630f612884258020d98a317679cd2054af0259568"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0ceb5e0e8c4f010ac787d29ae6299846935044686509e2f0f06ed441c1ca949"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c25908eb86968613216f3db4d3003f1c45d78eb9046b71056ca327ff92bdbd4"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:218cb0bc03340144b6328a9ff78f0932e642199ac184dd74b01ad691f42f93ff"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2277ec2cea3775640dc81ab5195bb5b2ada2fe0ea6eee4677474edc75ea6785"}, - {file = "orjson-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:848ea3b55ab5ccc9d7bbd420d69432628b691fba3ca8ae3148c35156cbd282aa"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e3e67b537ac0c835b25b5f7d40d83816abd2d3f4c0b0866ee981a045287a54f3"}, - {file = "orjson-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7948cfb909353fce2135dcdbe4521a5e7e1159484e0bb024c1722f272488f2b8"}, - {file = "orjson-3.10.10-cp38-none-win32.whl", hash = "sha256:78bee66a988f1a333dc0b6257503d63553b1957889c17b2c4ed72385cd1b96ae"}, - {file = "orjson-3.10.10-cp38-none-win_amd64.whl", hash = "sha256:f1d647ca8d62afeb774340a343c7fc023efacfd3a39f70c798991063f0c681dd"}, - {file = "orjson-3.10.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5a059afddbaa6dd733b5a2d76a90dbc8af790b993b1b5cb97a1176ca713b5df8"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f9b5c59f7e2a1a410f971c5ebc68f1995822837cd10905ee255f96074537ee6"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d5ef198bafdef4aa9d49a4165ba53ffdc0a9e1c7b6f76178572ab33118afea25"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf29ce0bb5d3320824ec3d1508652421000ba466abd63bdd52c64bcce9eb1fa"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dddd5516bcc93e723d029c1633ae79c4417477b4f57dad9bfeeb6bc0315e654a"}, - {file = "orjson-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12f2003695b10817f0fa8b8fca982ed7f5761dcb0d93cff4f2f9f6709903fd7"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:672f9874a8a8fb9bb1b771331d31ba27f57702c8106cdbadad8bda5d10bc1019"}, - {file = "orjson-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1dcbb0ca5fafb2b378b2c74419480ab2486326974826bbf6588f4dc62137570a"}, - {file = "orjson-3.10.10-cp39-none-win32.whl", hash = "sha256:d9bbd3a4b92256875cb058c3381b782649b9a3c68a4aa9a2fff020c2f9cfc1be"}, - {file = "orjson-3.10.10-cp39-none-win_amd64.whl", hash = "sha256:766f21487a53aee8524b97ca9582d5c6541b03ab6210fbaf10142ae2f3ced2aa"}, - {file = "orjson-3.10.10.tar.gz", hash = "sha256:37949383c4df7b4337ce82ee35b6d7471e55195efa7dcb45ab8226ceadb0fe3b"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] diff --git a/airbyte-integrations/connectors/source-typeform/pyproject.toml b/airbyte-integrations/connectors/source-typeform/pyproject.toml index 27d7e0adc73d..243ef4e07ab6 100644 --- a/airbyte-integrations/connectors/source-typeform/pyproject.toml +++ b/airbyte-integrations/connectors/source-typeform/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.3.18" +version = "1.3.19" name = "source-typeform" description = "Source implementation for Typeform." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/typeform.md b/docs/integrations/sources/typeform.md index b3012c0cba56..0e2b27dd6c71 100644 --- a/docs/integrations/sources/typeform.md +++ b/docs/integrations/sources/typeform.md @@ -101,6 +101,7 @@ API rate limits \(2 requests per second\): [https://developer.typeform.com/get-s | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:------------------------------------------------------------------------------------------------| +| 1.3.19 | 2024-11-04 | [48301](https://github.com/airbytehq/airbyte/pull/48301) | Update dependencies | | 1.3.18 | 2024-10-29 | [46853](https://github.com/airbytehq/airbyte/pull/46853) | Update dependencies | | 1.3.17 | 2024-10-05 | [46479](https://github.com/airbytehq/airbyte/pull/46479) | Update dependencies | | 1.3.16 | 2024-09-28 | [46170](https://github.com/airbytehq/airbyte/pull/46170) | Update dependencies | From 94f642a9dd7c6fa1fc5731f3aae19ad63c957d39 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:11:07 +0200 Subject: [PATCH 717/808] =?UTF-8?q?=F0=9F=90=99=20source-financial-modelli?= =?UTF-8?q?ng:=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#48299)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-financial-modelling/metadata.yaml | 4 ++-- docs/integrations/sources/financial-modelling.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-financial-modelling/metadata.yaml b/airbyte-integrations/connectors/source-financial-modelling/metadata.yaml index d2cd0903c3ef..0f36a8657753 100644 --- a/airbyte-integrations/connectors/source-financial-modelling/metadata.yaml +++ b/airbyte-integrations/connectors/source-financial-modelling/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-financial-modelling connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 4c3d6bdd-dc0e-4a66-b48a-2e7956195eec - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-financial-modelling githubIssueLabel: source-financial-modelling icon: icon.svg diff --git a/docs/integrations/sources/financial-modelling.md b/docs/integrations/sources/financial-modelling.md index 07c7395b5ee2..b30fe0292673 100644 --- a/docs/integrations/sources/financial-modelling.md +++ b/docs/integrations/sources/financial-modelling.md @@ -42,6 +42,7 @@ Docs : https://site.financialmodelingprep.com/developer/docs | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-04 | [48299](https://github.com/airbytehq/airbyte/pull/48299) | Update dependencies | | 0.0.1 | 2024-10-22 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | From 1bd94a1fbea8b7a0a9068c98cbfffd877a082cfe Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:12:15 +0200 Subject: [PATCH 718/808] =?UTF-8?q?=F0=9F=90=99=20source-scryfall:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-04]=20(#47879)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-scryfall/metadata.yaml | 4 ++-- docs/integrations/sources/scryfall.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-scryfall/metadata.yaml b/airbyte-integrations/connectors/source-scryfall/metadata.yaml index 5f371b638300..fe72490d014f 100644 --- a/airbyte-integrations/connectors/source-scryfall/metadata.yaml +++ b/airbyte-integrations/connectors/source-scryfall/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-scryfall connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: f76b7649-322b-44a0-8cef-23aeaae89c42 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-scryfall githubIssueLabel: source-scryfall icon: icon.svg diff --git a/docs/integrations/sources/scryfall.md b/docs/integrations/sources/scryfall.md index 7fbfede5ae22..720936428f65 100644 --- a/docs/integrations/sources/scryfall.md +++ b/docs/integrations/sources/scryfall.md @@ -20,6 +20,7 @@ For Magic The Gathering fans. Here is a simple data source for all the cards and | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.3 | 2024-11-04 | [47879](https://github.com/airbytehq/airbyte/pull/47879) | Update dependencies | | 0.0.2 | 2024-10-28 | [47457](https://github.com/airbytehq/airbyte/pull/47457) | Update dependencies | | 0.0.1 | 2024-08-28 | | Initial release by [@michel-tricot](https://github.com/michel-tricot) via Connector Builder | From 40879870ef6e45078daeddfc8d90c260bd2df741 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:12:33 +0200 Subject: [PATCH 719/808] =?UTF-8?q?=F0=9F=90=99=20source-google-tasks:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-11-05]=20(#47770)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-google-tasks/metadata.yaml | 4 ++-- docs/integrations/sources/google-tasks.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-tasks/metadata.yaml b/airbyte-integrations/connectors/source-google-tasks/metadata.yaml index f8fe26e98ff5..d7944004c5fc 100644 --- a/airbyte-integrations/connectors/source-google-tasks/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-tasks/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-google-tasks connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: 751c2519-1446-416e-9736-9b98585f8125 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-google-tasks githubIssueLabel: source-google-tasks icon: icon.svg diff --git a/docs/integrations/sources/google-tasks.md b/docs/integrations/sources/google-tasks.md index 4ed5525cba26..ae2cca84bb0e 100644 --- a/docs/integrations/sources/google-tasks.md +++ b/docs/integrations/sources/google-tasks.md @@ -43,6 +43,7 @@ Steps: | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.3 | 2024-11-05 | [47770](https://github.com/airbytehq/airbyte/pull/47770) | Update dependencies | | 0.0.2 | 2024-10-28 | [47550](https://github.com/airbytehq/airbyte/pull/47550) | Update dependencies | | 0.0.1 | 2024-09-12 | [45427](https://github.com/airbytehq/airbyte/pull/45427) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 927de7aba82ac74044b5b34cb168fa10731d42e6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:12:42 +0200 Subject: [PATCH 720/808] =?UTF-8?q?=F0=9F=90=99=20source-rollbar:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-04]=20(#47733)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-rollbar/metadata.yaml | 4 ++-- docs/integrations/sources/rollbar.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-rollbar/metadata.yaml b/airbyte-integrations/connectors/source-rollbar/metadata.yaml index 795b25c37320..19148013d031 100644 --- a/airbyte-integrations/connectors/source-rollbar/metadata.yaml +++ b/airbyte-integrations/connectors/source-rollbar/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-rollbar connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca connectorSubtype: api connectorType: source definitionId: 8d518856-6bfa-4d92-80ca-796b0338e341 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-rollbar githubIssueLabel: source-rollbar icon: icon.svg diff --git a/docs/integrations/sources/rollbar.md b/docs/integrations/sources/rollbar.md index a0bc46f1af88..ef3d5e03f3e0 100644 --- a/docs/integrations/sources/rollbar.md +++ b/docs/integrations/sources/rollbar.md @@ -36,6 +36,7 @@ Follow [this guide](https://docs.rollbar.com/reference/getting-started-1#authent | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-11-04 | [47733](https://github.com/airbytehq/airbyte/pull/47733) | Update dependencies | | 0.0.1 | 2024-09-24 | | Initial release by [@topefolorunso](https://github.com/topefolorunso) via Connector Builder | From 778a7d8b9ff9a1af81682b9a0afc69fc50dbcfc6 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:13:19 +0200 Subject: [PATCH 721/808] =?UTF-8?q?=F0=9F=90=99=20destination-typesense:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-11-04]=20(#47077)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-typesense/metadata.yaml | 2 +- .../destination-typesense/poetry.lock | 136 +++++++++--------- .../destination-typesense/pyproject.toml | 2 +- docs/integrations/destinations/typesense.md | 1 + 4 files changed, 71 insertions(+), 70 deletions(-) diff --git a/airbyte-integrations/connectors/destination-typesense/metadata.yaml b/airbyte-integrations/connectors/destination-typesense/metadata.yaml index 2f87bf8c50f1..dc0ada53ed5c 100644 --- a/airbyte-integrations/connectors/destination-typesense/metadata.yaml +++ b/airbyte-integrations/connectors/destination-typesense/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 36be8dc6-9851-49af-b776-9d4c30e4ab6a - dockerImageTag: 0.1.28 + dockerImageTag: 0.1.29 dockerRepository: airbyte/destination-typesense connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 diff --git a/airbyte-integrations/connectors/destination-typesense/poetry.lock b/airbyte-integrations/connectors/destination-typesense/poetry.lock index 4a79c3b4bb03..9e113ee44ac7 100644 --- a/airbyte-integrations/connectors/destination-typesense/poetry.lock +++ b/airbyte-integrations/connectors/destination-typesense/poetry.lock @@ -407,72 +407,72 @@ format-nongpl = ["idna", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-va [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -862,23 +862,23 @@ fixture = ["fixtures"] [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" diff --git a/airbyte-integrations/connectors/destination-typesense/pyproject.toml b/airbyte-integrations/connectors/destination-typesense/pyproject.toml index bfe84a01eff5..11f43d574981 100644 --- a/airbyte-integrations/connectors/destination-typesense/pyproject.toml +++ b/airbyte-integrations/connectors/destination-typesense/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.28" +version = "0.1.29" name = "destination-typesense" description = "Destination Implementation for Typesense." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/typesense.md b/docs/integrations/destinations/typesense.md index b046d02f3cfc..5ee5a1cb27ec 100644 --- a/docs/integrations/destinations/typesense.md +++ b/docs/integrations/destinations/typesense.md @@ -44,6 +44,7 @@ To connect a Typesense with HA, you can type multiple hosts on the host field us | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- | :---------------------------- | +| 0.1.29 | 2024-11-04 | [47077](https://github.com/airbytehq/airbyte/pull/47077) | Update dependencies | | 0.1.28 | 2024-10-12 | [46810](https://github.com/airbytehq/airbyte/pull/46810) | Update dependencies | | 0.1.27 | 2024-10-05 | [46426](https://github.com/airbytehq/airbyte/pull/46426) | Update dependencies | | 0.1.26 | 2024-09-28 | [46119](https://github.com/airbytehq/airbyte/pull/46119) | Update dependencies | From b1af8075c5d81de420440c1645aa45c7bb60b4ad Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 06:13:23 +0200 Subject: [PATCH 722/808] =?UTF-8?q?=F0=9F=90=99=20source-salesforce:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-05]=20(#46835)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-salesforce/metadata.yaml | 2 +- .../connectors/source-salesforce/poetry.lock | 392 +++++++++--------- .../source-salesforce/pyproject.toml | 2 +- docs/integrations/sources/salesforce.md | 1 + 4 files changed, 201 insertions(+), 196 deletions(-) diff --git a/airbyte-integrations/connectors/source-salesforce/metadata.yaml b/airbyte-integrations/connectors/source-salesforce/metadata.yaml index 1b02acbb7e25..630ecf0c05b7 100644 --- a/airbyte-integrations/connectors/source-salesforce/metadata.yaml +++ b/airbyte-integrations/connectors/source-salesforce/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: b117307c-14b6-41aa-9422-947e34922962 - dockerImageTag: 2.6.2 + dockerImageTag: 2.6.3 dockerRepository: airbyte/source-salesforce documentationUrl: https://docs.airbyte.com/integrations/sources/salesforce githubIssueLabel: source-salesforce diff --git a/airbyte-integrations/connectors/source-salesforce/poetry.lock b/airbyte-integrations/connectors/source-salesforce/poetry.lock index 0f9efab2609d..df1baa0b2e15 100644 --- a/airbyte-integrations/connectors/source-salesforce/poetry.lock +++ b/airbyte-integrations/connectors/source-salesforce/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "5.13.0" +version = "5.17.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-5.13.0-py3-none-any.whl", hash = "sha256:b26c99631e797c0bdb8373a6a05c81bf62b7d7397ca41b6ee05702d1013bd389"}, - {file = "airbyte_cdk-5.13.0.tar.gz", hash = "sha256:ab5799a238366dff61a8cded347b02deb63818513af4e61e2d1a51608a2280df"}, + {file = "airbyte_cdk-5.17.0-py3-none-any.whl", hash = "sha256:135a8fc43b00a92169dfcdc43c1d7c629aba871a0b471f950ca5d76d3741fc92"}, + {file = "airbyte_cdk-5.17.0.tar.gz", hash = "sha256:5db70cbacec80ba3beabe4253480ab9a3947a450e8d0e39af4a91638b317b32a"}, ] [package.dependencies] @@ -43,6 +43,7 @@ xmltodict = ">=0.13.0,<0.14.0" [package.extras] file-based = ["avro (>=1.11.2,<1.12.0)", "fastavro (>=1.8.0,<1.9.0)", "markdown", "pdf2image (==1.16.3)", "pdfminer.six (==20221105)", "pyarrow (>=15.0.0,<15.1.0)", "pytesseract (==0.3.10)", "python-calamine (==0.2.3)", "python-snappy (==0.7.3)", "unstructured.pytesseract (>=0.3.12)", "unstructured[docx,pptx] (==0.10.27)"] sphinx-docs = ["Sphinx (>=4.2,<4.3)", "sphinx-rtd-theme (>=1.0,<1.1)"] +sql = ["sqlalchemy (>=2.0,!=2.0.36,<3.0)"] vector-db-based = ["cohere (==4.21)", "langchain (==0.1.16)", "openai[embeddings] (==0.27.9)", "tiktoken (==0.4.0)"] [[package]] @@ -69,13 +70,13 @@ files = [ [[package]] name = "anyio" -version = "4.6.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"}, - {file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] @@ -86,7 +87,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -742,13 +743,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.133" +version = "0.1.139" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.133-py3-none-any.whl", hash = "sha256:82e837a6039c483beadbe19c2ba7ebafbd402d3e8105234f5ef334425cff7b45"}, - {file = "langsmith-0.1.133.tar.gz", hash = "sha256:7bfd8bef166b9a64ee540a11bee4aa7bf43b1d9229f95b0fc19086454955185d"}, + {file = "langsmith-0.1.139-py3-none-any.whl", hash = "sha256:2a4a541bfbd0a9727255df28a60048c85bc8c4c6a276975923785c3fd82dc879"}, + {file = "langsmith-0.1.139.tar.gz", hash = "sha256:2f9e4d32fef3ad7ef42c8506448cce3a31ad6b78bb4f3310db04ddaa1e9d744d"}, ] [package.dependencies] @@ -760,72 +761,72 @@ requests-toolbelt = ">=1.0.0,<2.0.0" [[package]] name = "markupsafe" -version = "3.0.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" files = [ - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win32.whl", hash = "sha256:db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97"}, - {file = "MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win32.whl", hash = "sha256:fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635"}, - {file = "MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win32.whl", hash = "sha256:cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa"}, - {file = "MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win32.whl", hash = "sha256:c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c"}, - {file = "MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win32.whl", hash = "sha256:82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b"}, - {file = "MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win32.whl", hash = "sha256:242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8"}, - {file = "MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b"}, - {file = "markupsafe-3.0.1.tar.gz", hash = "sha256:3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -855,130 +856,133 @@ twitter = ["twython"] [[package]] name = "numpy" -version = "2.1.2" +version = "2.1.3" description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.10" files = [ - {file = "numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648"}, - {file = "numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86"}, - {file = "numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03"}, - {file = "numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466"}, - {file = "numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb"}, - {file = "numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f"}, - {file = "numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a"}, - {file = "numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2"}, - {file = "numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146"}, - {file = "numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c"}, - {file = "numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1"}, - {file = "numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0"}, - {file = "numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366"}, - {file = "numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142"}, - {file = "numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550"}, - {file = "numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e"}, - {file = "numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8"}, - {file = "numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98"}, - {file = "numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe"}, - {file = "numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a"}, - {file = "numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17"}, - {file = "numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8"}, - {file = "numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62"}, - {file = "numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7"}, - {file = "numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e"}, - {file = "numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c894b4305373b9c5576d7a12b473702afdf48ce5369c074ba304cc5ad8730dff"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b47fbb433d3260adcd51eb54f92a2ffbc90a4595f8970ee00e064c644ac788f5"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:825656d0743699c529c5943554d223c021ff0494ff1442152ce887ef4f7561a1"}, + {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:6a4825252fcc430a182ac4dee5a505053d262c807f8a924603d411f6718b88fd"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e711e02f49e176a01d0349d82cb5f05ba4db7d5e7e0defd026328e5cfb3226d3"}, + {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78574ac2d1a4a02421f25da9559850d59457bac82f2b8d7a44fe83a64f770098"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c7662f0e3673fe4e832fe07b65c50342ea27d989f92c80355658c7f888fcc83c"}, + {file = "numpy-2.1.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:fa2d1337dc61c8dc417fbccf20f6d1e139896a30721b7f1e832b2bb6ef4eb6c4"}, + {file = "numpy-2.1.3-cp310-cp310-win32.whl", hash = "sha256:72dcc4a35a8515d83e76b58fdf8113a5c969ccd505c8a946759b24e3182d1f23"}, + {file = "numpy-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:ecc76a9ba2911d8d37ac01de72834d8849e55473457558e12995f4cd53e778e0"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d1167c53b93f1f5d8a139a742b3c6f4d429b54e74e6b57d0eff40045187b15d"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c80e4a09b3d95b4e1cac08643f1152fa71a0a821a2d4277334c88d54b2219a41"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:576a1c1d25e9e02ed7fa5477f30a127fe56debd53b8d2c89d5578f9857d03ca9"}, + {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:973faafebaae4c0aaa1a1ca1ce02434554d67e628b8d805e61f874b84e136b09"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:762479be47a4863e261a840e8e01608d124ee1361e48b96916f38b119cfda04a"}, + {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc6f24b3d1ecc1eebfbf5d6051faa49af40b03be1aaa781ebdadcbc090b4539b"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:17ee83a1f4fef3c94d16dc1802b998668b5419362c8a4f4e8a491de1b41cc3ee"}, + {file = "numpy-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15cb89f39fa6d0bdfb600ea24b250e5f1a3df23f901f51c8debaa6a5d122b2f0"}, + {file = "numpy-2.1.3-cp311-cp311-win32.whl", hash = "sha256:d9beb777a78c331580705326d2367488d5bc473b49a9bc3036c154832520aca9"}, + {file = "numpy-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:d89dd2b6da69c4fff5e39c28a382199ddedc3a5be5390115608345dec660b9e2"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f55ba01150f52b1027829b50d70ef1dafd9821ea82905b63936668403c3b471e"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13138eadd4f4da03074851a698ffa7e405f41a0845a6b1ad135b81596e4e9958"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a6b46587b14b888e95e4a24d7b13ae91fa22386c199ee7b418f449032b2fa3b8"}, + {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:0fa14563cc46422e99daef53d725d0c326e99e468a9320a240affffe87852564"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8637dcd2caa676e475503d1f8fdb327bc495554e10838019651b76d17b98e512"}, + {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2312b2aa89e1f43ecea6da6ea9a810d06aae08321609d8dc0d0eda6d946a541b"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a38c19106902bb19351b83802531fea19dee18e5b37b36454f27f11ff956f7fc"}, + {file = "numpy-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02135ade8b8a84011cbb67dc44e07c58f28575cf9ecf8ab304e51c05528c19f0"}, + {file = "numpy-2.1.3-cp312-cp312-win32.whl", hash = "sha256:e6988e90fcf617da2b5c78902fe8e668361b43b4fe26dbf2d7b0f8034d4cafb9"}, + {file = "numpy-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:0d30c543f02e84e92c4b1f415b7c6b5326cbe45ee7882b6b77db7195fb971e3a"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96fe52fcdb9345b7cd82ecd34547fca4321f7656d500eca497eb7ea5a926692f"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f653490b33e9c3a4c1c01d41bc2aef08f9475af51146e4a7710c450cf9761598"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dc258a761a16daa791081d026f0ed4399b582712e6fc887a95af09df10c5ca57"}, + {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:016d0f6f5e77b0f0d45d77387ffa4bb89816b57c835580c3ce8e099ef830befe"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c181ba05ce8299c7aa3125c27b9c2167bca4a4445b7ce73d5febc411ca692e43"}, + {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5641516794ca9e5f8a4d17bb45446998c6554704d888f86df9b200e66bdcce56"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea4dedd6e394a9c180b33c2c872b92f7ce0f8e7ad93e9585312b0c5a04777a4a"}, + {file = "numpy-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0df3635b9c8ef48bd3be5f862cf71b0a4716fa0e702155c45067c6b711ddcef"}, + {file = "numpy-2.1.3-cp313-cp313-win32.whl", hash = "sha256:50ca6aba6e163363f132b5c101ba078b8cbd3fa92c7865fd7d4d62d9779ac29f"}, + {file = "numpy-2.1.3-cp313-cp313-win_amd64.whl", hash = "sha256:747641635d3d44bcb380d950679462fae44f54b131be347d5ec2bce47d3df9ed"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:996bb9399059c5b82f76b53ff8bb686069c05acc94656bb259b1d63d04a9506f"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:45966d859916ad02b779706bb43b954281db43e185015df6eb3323120188f9e4"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:baed7e8d7481bfe0874b566850cb0b85243e982388b7b23348c6db2ee2b2ae8e"}, + {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f7f672a3388133335589cfca93ed468509cb7b93ba3105fce780d04a6576a0"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7aac50327da5d208db2eec22eb11e491e3fe13d22653dce51b0f4109101b408"}, + {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4394bc0dbd074b7f9b52024832d16e019decebf86caf909d94f6b3f77a8ee3b6"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:50d18c4358a0a8a53f12a8ba9d772ab2d460321e6a93d6064fc22443d189853f"}, + {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:14e253bd43fc6b37af4921b10f6add6925878a42a0c5fe83daee390bca80bc17"}, + {file = "numpy-2.1.3-cp313-cp313t-win32.whl", hash = "sha256:08788d27a5fd867a663f6fc753fd7c3ad7e92747efc73c53bca2f19f8bc06f48"}, + {file = "numpy-2.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2564fbdf2b99b3f815f2107c1bbc93e2de8ee655a69c261363a1172a79a257d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4f2015dfe437dfebbfce7c85c7b53d81ba49e71ba7eadbf1df40c915af75979f"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:3522b0dfe983a575e6a9ab3a4a4dfe156c3e428468ff08ce582b9bb6bd1d71d4"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c006b607a865b07cd981ccb218a04fc86b600411d83d6fc261357f1c0966755d"}, + {file = "numpy-2.1.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:e14e26956e6f1696070788252dcdff11b4aca4c3e8bd166e0df1bb8f315a67cb"}, + {file = "numpy-2.1.3.tar.gz", hash = "sha256:aa08e04e08aaf974d4458def539dece0d28146d866a39da5639596f4921fd761"}, ] [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.7-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:74f4544f5a6405b90da8ea724d15ac9c36da4d72a738c64685003337401f5c12"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34a566f22c28222b08875b18b0dfbf8a947e69df21a9ed5c51a6bf91cfb944ac"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf6ba8ebc8ef5792e2337fb0419f8009729335bb400ece005606336b7fd7bab7"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac7cf6222b29fbda9e3a472b41e6a5538b48f2c8f99261eecd60aafbdb60690c"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de817e2f5fc75a9e7dd350c4b0f54617b280e26d1631811a43e7e968fa71e3e9"}, - {file = "orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:348bdd16b32556cf8d7257b17cf2bdb7ab7976af4af41ebe79f9796c218f7e91"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:479fd0844ddc3ca77e0fd99644c7fe2de8e8be1efcd57705b5c92e5186e8a250"}, - {file = "orjson-3.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fdf5197a21dd660cf19dfd2a3ce79574588f8f5e2dbf21bda9ee2d2b46924d84"}, - {file = "orjson-3.10.7-cp310-none-win32.whl", hash = "sha256:d374d36726746c81a49f3ff8daa2898dccab6596864ebe43d50733275c629175"}, - {file = "orjson-3.10.7-cp310-none-win_amd64.whl", hash = "sha256:cb61938aec8b0ffb6eef484d480188a1777e67b05d58e41b435c74b9d84e0b9c"}, - {file = "orjson-3.10.7-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7db8539039698ddfb9a524b4dd19508256107568cdad24f3682d5773e60504a2"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:480f455222cb7a1dea35c57a67578848537d2602b46c464472c995297117fa09"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8a9c9b168b3a19e37fe2778c0003359f07822c90fdff8f98d9d2a91b3144d8e0"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8de062de550f63185e4c1c54151bdddfc5625e37daf0aa1e75d2a1293e3b7d9a"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b0dd04483499d1de9c8f6203f8975caf17a6000b9c0c54630cef02e44ee624e"}, - {file = "orjson-3.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b58d3795dafa334fc8fd46f7c5dc013e6ad06fd5b9a4cc98cb1456e7d3558bd6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33cfb96c24034a878d83d1a9415799a73dc77480e6c40417e5dda0710d559ee6"}, - {file = "orjson-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e724cebe1fadc2b23c6f7415bad5ee6239e00a69f30ee423f319c6af70e2a5c0"}, - {file = "orjson-3.10.7-cp311-none-win32.whl", hash = "sha256:82763b46053727a7168d29c772ed5c870fdae2f61aa8a25994c7984a19b1021f"}, - {file = "orjson-3.10.7-cp311-none-win_amd64.whl", hash = "sha256:eb8d384a24778abf29afb8e41d68fdd9a156cf6e5390c04cc07bbc24b89e98b5"}, - {file = "orjson-3.10.7-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44a96f2d4c3af51bfac6bc4ef7b182aa33f2f054fd7f34cc0ee9a320d051d41f"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ac14cd57df0572453543f8f2575e2d01ae9e790c21f57627803f5e79b0d3c3"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bdbb61dcc365dd9be94e8f7df91975edc9364d6a78c8f7adb69c1cdff318ec93"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48b3db6bb6e0a08fa8c83b47bc169623f801e5cc4f24442ab2b6617da3b5313"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23820a1563a1d386414fef15c249040042b8e5d07b40ab3fe3efbfbbcbcb8864"}, - {file = "orjson-3.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0c6a008e91d10a2564edbb6ee5069a9e66df3fbe11c9a005cb411f441fd2c09"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d352ee8ac1926d6193f602cbe36b1643bbd1bbcb25e3c1a657a4390f3000c9a5"}, - {file = "orjson-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2d9f990623f15c0ae7ac608103c33dfe1486d2ed974ac3f40b693bad1a22a7b"}, - {file = "orjson-3.10.7-cp312-none-win32.whl", hash = "sha256:7c4c17f8157bd520cdb7195f75ddbd31671997cbe10aee559c2d613592e7d7eb"}, - {file = "orjson-3.10.7-cp312-none-win_amd64.whl", hash = "sha256:1d9c0e733e02ada3ed6098a10a8ee0052dd55774de3d9110d29868d24b17faa1"}, - {file = "orjson-3.10.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:77d325ed866876c0fa6492598ec01fe30e803272a6e8b10e992288b009cbe149"}, - {file = "orjson-3.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ea2c232deedcb605e853ae1db2cc94f7390ac776743b699b50b071b02bea6fe"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3dcfbede6737fdbef3ce9c37af3fb6142e8e1ebc10336daa05872bfb1d87839c"}, - {file = "orjson-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11748c135f281203f4ee695b7f80bb1358a82a63905f9f0b794769483ea854ad"}, - {file = "orjson-3.10.7-cp313-none-win32.whl", hash = "sha256:a7e19150d215c7a13f39eb787d84db274298d3f83d85463e61d277bbd7f401d2"}, - {file = "orjson-3.10.7-cp313-none-win_amd64.whl", hash = "sha256:eef44224729e9525d5261cc8d28d6b11cafc90e6bd0be2157bde69a52ec83024"}, - {file = "orjson-3.10.7-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6ea2b2258eff652c82652d5e0f02bd5e0463a6a52abb78e49ac288827aaa1469"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:430ee4d85841e1483d487e7b81401785a5dfd69db5de01314538f31f8fbf7ee1"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b6146e439af4c2472c56f8540d799a67a81226e11992008cb47e1267a9b3225"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:084e537806b458911137f76097e53ce7bf5806dda33ddf6aaa66a028f8d43a23"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4829cf2195838e3f93b70fd3b4292156fc5e097aac3739859ac0dcc722b27ac0"}, - {file = "orjson-3.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1193b2416cbad1a769f868b1749535d5da47626ac29445803dae7cc64b3f5c98"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4e6c3da13e5a57e4b3dca2de059f243ebec705857522f188f0180ae88badd354"}, - {file = "orjson-3.10.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c31008598424dfbe52ce8c5b47e0752dca918a4fdc4a2a32004efd9fab41d866"}, - {file = "orjson-3.10.7-cp38-none-win32.whl", hash = "sha256:7122a99831f9e7fe977dc45784d3b2edc821c172d545e6420c375e5a935f5a1c"}, - {file = "orjson-3.10.7-cp38-none-win_amd64.whl", hash = "sha256:a763bc0e58504cc803739e7df040685816145a6f3c8a589787084b54ebc9f16e"}, - {file = "orjson-3.10.7-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e76be12658a6fa376fcd331b1ea4e58f5a06fd0220653450f0d415b8fd0fbe20"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed350d6978d28b92939bfeb1a0570c523f6170efc3f0a0ef1f1df287cd4f4960"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:144888c76f8520e39bfa121b31fd637e18d4cc2f115727865fdf9fa325b10412"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09b2d92fd95ad2402188cf51573acde57eb269eddabaa60f69ea0d733e789fe9"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b24a579123fa884f3a3caadaed7b75eb5715ee2b17ab5c66ac97d29b18fe57f"}, - {file = "orjson-3.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591bcfe7512353bd609875ab38050efe3d55e18934e2f18950c108334b4ff"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f4db56635b58cd1a200b0a23744ff44206ee6aa428185e2b6c4a65b3197abdcd"}, - {file = "orjson-3.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0fa5886854673222618638c6df7718ea7fe2f3f2384c452c9ccedc70b4a510a5"}, - {file = "orjson-3.10.7-cp39-none-win32.whl", hash = "sha256:8272527d08450ab16eb405f47e0f4ef0e5ff5981c3d82afe0efd25dcbef2bcd2"}, - {file = "orjson-3.10.7-cp39-none-win_amd64.whl", hash = "sha256:974683d4618c0c7dbf4f69c95a979734bf183d0658611760017f6e70a145af58"}, - {file = "orjson-3.10.7.tar.gz", hash = "sha256:75ef0640403f945f3a1f9f6400686560dbfb0fb5b16589ad62cd477043c4eee3"}, + {file = "orjson-3.10.11-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6dade64687f2bd7c090281652fe18f1151292d567a9302b34c2dbb92a3872f1f"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82f07c550a6ccd2b9290849b22316a609023ed851a87ea888c0456485a7d196a"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd9a187742d3ead9df2e49240234d728c67c356516cf4db018833a86f20ec18c"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77b0fed6f209d76c1c39f032a70df2d7acf24b1812ca3e6078fd04e8972685a3"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63fc9d5fe1d4e8868f6aae547a7b8ba0a2e592929245fff61d633f4caccdcdd6"}, + {file = "orjson-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65cd3e3bb4fbb4eddc3c1e8dce10dc0b73e808fcb875f9fab40c81903dd9323e"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f67c570602300c4befbda12d153113b8974a3340fdcf3d6de095ede86c06d92"}, + {file = "orjson-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f39728c7f7d766f1f5a769ce4d54b5aaa4c3f92d5b84817053cc9995b977acc"}, + {file = "orjson-3.10.11-cp310-none-win32.whl", hash = "sha256:1789d9db7968d805f3d94aae2c25d04014aae3a2fa65b1443117cd462c6da647"}, + {file = "orjson-3.10.11-cp310-none-win_amd64.whl", hash = "sha256:5576b1e5a53a5ba8f8df81872bb0878a112b3ebb1d392155f00f54dd86c83ff6"}, + {file = "orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d"}, + {file = "orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a"}, + {file = "orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981"}, + {file = "orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55"}, + {file = "orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec"}, + {file = "orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433"}, + {file = "orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd"}, + {file = "orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b"}, + {file = "orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d"}, + {file = "orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284"}, + {file = "orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230"}, + {file = "orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258"}, + {file = "orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0"}, + {file = "orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b"}, + {file = "orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270"}, + {file = "orjson-3.10.11-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:19b3763e8bbf8ad797df6b6b5e0fc7c843ec2e2fc0621398534e0c6400098f87"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1be83a13312e5e58d633580c5eb8d0495ae61f180da2722f20562974188af205"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:afacfd1ab81f46dedd7f6001b6d4e8de23396e4884cd3c3436bd05defb1a6446"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb4d0bea56bba596723d73f074c420aec3b2e5d7d30698bc56e6048066bd560c"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96ed1de70fcb15d5fed529a656df29f768187628727ee2788344e8a51e1c1350"}, + {file = "orjson-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bfb30c891b530f3f80e801e3ad82ef150b964e5c38e1fb8482441c69c35c61c"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d496c74fc2b61341e3cefda7eec21b7854c5f672ee350bc55d9a4997a8a95204"}, + {file = "orjson-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:655a493bac606655db9a47fe94d3d84fc7f3ad766d894197c94ccf0c5408e7d3"}, + {file = "orjson-3.10.11-cp38-none-win32.whl", hash = "sha256:b9546b278c9fb5d45380f4809e11b4dd9844ca7aaf1134024503e134ed226161"}, + {file = "orjson-3.10.11-cp38-none-win_amd64.whl", hash = "sha256:b592597fe551d518f42c5a2eb07422eb475aa8cfdc8c51e6da7054b836b26782"}, + {file = "orjson-3.10.11-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c95f2ecafe709b4e5c733b5e2768ac569bed308623c85806c395d9cca00e08af"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80c00d4acded0c51c98754fe8218cb49cb854f0f7eb39ea4641b7f71732d2cb7"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:461311b693d3d0a060439aa669c74f3603264d4e7a08faa68c47ae5a863f352d"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52ca832f17d86a78cbab86cdc25f8c13756ebe182b6fc1a97d534051c18a08de"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c57ea78a753812f528178aa2f1c57da633754c91d2124cb28991dab4c79a54"}, + {file = "orjson-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7fcfc6f7ca046383fb954ba528587e0f9336828b568282b27579c49f8e16aad"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:86b9dd983857970c29e4c71bb3e95ff085c07d3e83e7c46ebe959bac07ebd80b"}, + {file = "orjson-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4d83f87582d223e54efb2242a79547611ba4ebae3af8bae1e80fa9a0af83bb7f"}, + {file = "orjson-3.10.11-cp39-none-win32.whl", hash = "sha256:9fd0ad1c129bc9beb1154c2655f177620b5beaf9a11e0d10bac63ef3fce96950"}, + {file = "orjson-3.10.11-cp39-none-win_amd64.whl", hash = "sha256:10f416b2a017c8bd17f325fb9dee1fb5cdd7a54e814284896b7c3f2763faa017"}, + {file = "orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef"}, ] [[package]] @@ -1739,23 +1743,23 @@ typing-extensions = "*" [[package]] name = "setuptools" -version = "75.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, - {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "six" @@ -1807,13 +1811,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.5" +version = "4.66.6" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, - {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-salesforce/pyproject.toml b/airbyte-integrations/connectors/source-salesforce/pyproject.toml index ce4e0928f242..a729c2555a8b 100644 --- a/airbyte-integrations/connectors/source-salesforce/pyproject.toml +++ b/airbyte-integrations/connectors/source-salesforce/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.6.2" +version = "2.6.3" name = "source-salesforce" description = "Source implementation for Salesforce." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/salesforce.md b/docs/integrations/sources/salesforce.md index 343f0f096b61..2e97104ea4cc 100644 --- a/docs/integrations/sources/salesforce.md +++ b/docs/integrations/sources/salesforce.md @@ -219,6 +219,7 @@ Now that you have set up the Salesforce source connector, check out the followin | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------| +| 2.6.3 | 2024-11-05 | [46835](https://github.com/airbytehq/airbyte/pull/46835) | Update dependencies | | 2.6.2 | 2024-10-10 | [](https://github.com/airbytehq/airbyte/pull/) | Bump minimum CDK to 5.10.2 | | 2.6.1 | 2024-10-05 | [46436](https://github.com/airbytehq/airbyte/pull/46436) | Update dependencies, including CDK fix in v5.10.2 | | 2.6.0 | 2024-10-02 | [45678](https://github.com/airbytehq/airbyte/pull/45678) | Have bulk streams use CDK components | From 1f027e4345f86aba7d0af5baea2bb26f9a20ee65 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 08:09:28 +0200 Subject: [PATCH 723/808] =?UTF-8?q?=F0=9F=90=99=20source-secoda:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-05]=20(#48337)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-secoda/metadata.yaml | 4 ++-- docs/integrations/sources/secoda.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-secoda/metadata.yaml b/airbyte-integrations/connectors/source-secoda/metadata.yaml index d0e65a917578..e8a681f2ff68 100644 --- a/airbyte-integrations/connectors/source-secoda/metadata.yaml +++ b/airbyte-integrations/connectors/source-secoda/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: da9fc6b9-8059-4be0-b204-f56e22e4d52d - dockerImageTag: 0.2.3 + dockerImageTag: 0.2.4 dockerRepository: airbyte/source-secoda githubIssueLabel: source-secoda icon: secoda.svg @@ -42,5 +42,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/secoda.md b/docs/integrations/sources/secoda.md index 8b3f711970ae..f85f175ea9db 100644 --- a/docs/integrations/sources/secoda.md +++ b/docs/integrations/sources/secoda.md @@ -32,6 +32,7 @@ This source can sync data from the [Secoda API](https://docs.secoda.co/secoda-ap | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------- | +| 0.2.4 | 2024-11-05 | [48337](https://github.com/airbytehq/airbyte/pull/48337) | Update dependencies | | 0.2.3 | 2024-10-29 | [47908](https://github.com/airbytehq/airbyte/pull/47908) | Update dependencies | | 0.2.2 | 2024-10-28 | [47566](https://github.com/airbytehq/airbyte/pull/47566) | Update dependencies | | 0.2.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | From 7ac6c4426eceabfaf94a49725df8f743fbc34aed Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 08:09:32 +0200 Subject: [PATCH 724/808] =?UTF-8?q?=F0=9F=90=99=20source-datascope:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-11-05]=20(#48336)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-datascope/metadata.yaml | 4 ++-- docs/integrations/sources/datascope.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-datascope/metadata.yaml b/airbyte-integrations/connectors/source-datascope/metadata.yaml index 0841313113e1..79b2c55cfe0a 100644 --- a/airbyte-integrations/connectors/source-datascope/metadata.yaml +++ b/airbyte-integrations/connectors/source-datascope/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8e1ae2d2-4790-44d3-9d83-75b3fc3940ff - dockerImageTag: 0.2.3 + dockerImageTag: 0.2.4 dockerRepository: airbyte/source-datascope githubIssueLabel: source-datascope icon: datascope.svg @@ -42,5 +42,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/datascope.md b/docs/integrations/sources/datascope.md index 3becaf55d61e..51dba5b481f7 100644 --- a/docs/integrations/sources/datascope.md +++ b/docs/integrations/sources/datascope.md @@ -64,6 +64,7 @@ GET https://www.mydatascope.com/api/external/locations | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------- | +| 0.2.4 | 2024-11-05 | [48336](https://github.com/airbytehq/airbyte/pull/48336) | Update dependencies | | 0.2.3 | 2024-10-29 | [47857](https://github.com/airbytehq/airbyte/pull/47857) | Update dependencies | | 0.2.2 | 2024-10-28 | [47451](https://github.com/airbytehq/airbyte/pull/47451) | Update dependencies | | 0.2.1 | 2024-10-21 | [47206](https://github.com/airbytehq/airbyte/pull/47206) | Update dependencies | From 3ee854ebcb4da8f65261fb527a5de5e0aa2ca64d Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 08:09:35 +0200 Subject: [PATCH 725/808] =?UTF-8?q?=F0=9F=90=99=20source-beamer:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-11-05]=20(#48335)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-beamer/metadata.yaml | 4 ++-- docs/integrations/sources/beamer.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-beamer/metadata.yaml b/airbyte-integrations/connectors/source-beamer/metadata.yaml index e2356bca6ed3..f8d27c7e966a 100644 --- a/airbyte-integrations/connectors/source-beamer/metadata.yaml +++ b/airbyte-integrations/connectors/source-beamer/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-beamer connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:4.6.2@sha256:f5fcd3d4703b7590b6166a7853c5ed1686731607cd30a159a8c24e2fe2c1ee98 + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: b928158d-4d2a-4ea6-a9c6-efa90f5c1e5d - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-beamer githubIssueLabel: source-beamer icon: icon.svg diff --git a/docs/integrations/sources/beamer.md b/docs/integrations/sources/beamer.md index 760e42750507..a58dba5b2092 100644 --- a/docs/integrations/sources/beamer.md +++ b/docs/integrations/sources/beamer.md @@ -20,6 +20,7 @@ Beamer NPS source | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.2 | 2024-11-05 | [48335](https://github.com/airbytehq/airbyte/pull/48335) | Update dependencies | | 0.0.1 | 2024-09-17 | | Initial release by [@caydenm](https://github.com/caydenm) via Connector Builder | - \ No newline at end of file + From ab3fccd4df950ba7bfe3f1e6b5fceff5b65febd7 Mon Sep 17 00:00:00 2001 From: Airbyte Date: Tue, 5 Nov 2024 08:09:38 +0200 Subject: [PATCH 726/808] =?UTF-8?q?=F0=9F=90=99=20source-fulcrum:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-11-05]=20(#48333)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-fulcrum/metadata.yaml | 4 ++-- docs/integrations/sources/fulcrum.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-fulcrum/metadata.yaml b/airbyte-integrations/connectors/source-fulcrum/metadata.yaml index 623bc23647df..dd48d91b4661 100644 --- a/airbyte-integrations/connectors/source-fulcrum/metadata.yaml +++ b/airbyte-integrations/connectors/source-fulcrum/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-fulcrum connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 connectorSubtype: api connectorType: source definitionId: 1028d4dc-005b-484b-9164-5a81e0dbac19 - dockerImageTag: 0.0.1 + dockerImageTag: 0.0.2 dockerRepository: airbyte/source-fulcrum githubIssueLabel: source-fulcrum icon: icon.svg diff --git a/docs/integrations/sources/fulcrum.md b/docs/integrations/sources/fulcrum.md index 8eb3040431db..60fad4ae3f2f 100644 --- a/docs/integrations/sources/fulcrum.md +++ b/docs/integrations/sources/fulcrum.md @@ -36,6 +36,7 @@ Airbyte connector for Fulcrum would enable seamless data extraction from the Ful | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.2 | 2024-11-05 | [48333](https://github.com/airbytehq/airbyte/pull/48333) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From ff284949ff16a2845ad37bb8c55a6ac0ddbf0873 Mon Sep 17 00:00:00 2001 From: Artem Inzhyyants <36314070+artem1205@users.noreply.github.com> Date: Tue, 5 Nov 2024 13:45:59 +0100 Subject: [PATCH 727/808] fix(source-amazon-ads): add error message for TooManyRequests exception (#48138) Signed-off-by: Artem Inzhyyants --- .../connectors/source-amazon-ads/metadata.yaml | 2 +- .../connectors/source-amazon-ads/pyproject.toml | 2 +- .../streams/report_streams/report_streams.py | 14 +++++++++++--- .../unit_tests/test_report_streams.py | 3 ++- docs/integrations/sources/amazon-ads.md | 1 + 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml index 32bebdf91898..40337882c42b 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: c6b0a29e-1da9-4512-9002-7bfd0cba2246 - dockerImageTag: 6.1.1 + dockerImageTag: 6.1.2 dockerRepository: airbyte/source-amazon-ads documentationUrl: https://docs.airbyte.com/integrations/sources/amazon-ads githubIssueLabel: source-amazon-ads diff --git a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml index 02a50190910f..be3f3009312f 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.1.1" +version = "6.1.2" name = "source-amazon-ads" description = "Source implementation for Amazon Ads." authors = [ "Airbyte ",] diff --git a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py index ab6726072359..567b3fd5ab5c 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/source_amazon_ads/streams/report_streams/report_streams.py @@ -15,7 +15,8 @@ import backoff import pendulum import requests -from airbyte_cdk.models import SyncMode +from airbyte_cdk import AirbyteTracedException +from airbyte_cdk.models import FailureType, SyncMode from airbyte_cdk.sources.streams.availability_strategy import AvailabilityStrategy from airbyte_cdk.sources.streams.http.requests_native_auth import Oauth2Authenticator from pendulum import Date @@ -122,7 +123,14 @@ def read_records( return profile = stream_slice["profile"] report_date = stream_slice[self.cursor_field] - report_info_list = self._init_and_try_read_records(profile, report_date) + try: + report_info_list = self._init_and_try_read_records(profile, report_date) + except TooManyRequests as e: + raise AirbyteTracedException( + failure_type=FailureType.transient_error, + message=f"Too many requests on resource {e}. Please retry later", + internal_message=f"Errors received from the API were: {e}", + ) self._update_state(profile, report_date) for report_info in report_info_list: @@ -250,7 +258,7 @@ def _send_http_request(self, url: str, profile_id: int, json: dict = None, is_do session = self._report_download_session if is_download_report else self._session response = session.get(url, headers=headers) if response.status_code == HTTPStatus.TOO_MANY_REQUESTS: - raise TooManyRequests() + raise TooManyRequests("429: Too many requests during report creation. Please try again later...") return response def get_date_range(self, start_date: Date, timezone: str) -> Iterable[str]: diff --git a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py index a0d9d56f4a5e..b8461ccc0f52 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py +++ b/airbyte-integrations/connectors/source-amazon-ads/unit_tests/test_report_streams.py @@ -13,6 +13,7 @@ import pytest import requests_mock import responses +from airbyte_cdk import AirbyteTracedException from airbyte_cdk.models import SyncMode from freezegun import freeze_time from pendulum import Date @@ -328,7 +329,7 @@ def test_display_report_stream_init_too_many_requests(mocker, config): stream_slice = {"profile": profiles[0], "reportDate": "2021-07-25"} responses.add(responses.POST, "https://advertising-api.amazon.com/reporting/reports", json={}, status=429) - with raises(TooManyRequests): + with raises(AirbyteTracedException): _ = [m for m in stream.read_records(SyncMode.incremental, stream_slice=stream_slice)] assert len(responses.calls) == 10 diff --git a/docs/integrations/sources/amazon-ads.md b/docs/integrations/sources/amazon-ads.md index d3eab187ba0a..fc1119b24aca 100644 --- a/docs/integrations/sources/amazon-ads.md +++ b/docs/integrations/sources/amazon-ads.md @@ -153,6 +153,7 @@ Information about expected report generation waiting time can be found [here](ht | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------| +| 6.1.2 | 2024-11-04 | [48138](https://github.com/airbytehq/airbyte/pull/48138) | Add error message for TooManyRequests exception | | 6.1.1 | 2024-11-04 | [48128](https://github.com/airbytehq/airbyte/pull/48128) | Fix date parse in report streams | | 6.1.0 | 2024-11-01 | [47940](https://github.com/airbytehq/airbyte/pull/47940) | Bump CDK to ^5 | | 6.0.0 | 2024-10-28 | [47366](https://github.com/airbytehq/airbyte/pull/47366) | Migrate stream `SponsoredDisplayReportStream` to Amazon Ads Reports v3 | From ce680a8e11a45c7ef8ca923558e34f2d307ae0ed Mon Sep 17 00:00:00 2001 From: Shruti Mantri Date: Tue, 5 Nov 2024 18:16:21 +0530 Subject: [PATCH 728/808] Fix: Update kestra plugin doc with the latest URLs and changes in Kestra (#47440) Co-authored-by: Marcos Marx --- docs/.gitbook/assets/airbyte_kestra_2.png | Bin 0 -> 679028 bytes docs/operator-guides/using-kestra-plugin.md | 27 ++++++++++---------- 2 files changed, 13 insertions(+), 14 deletions(-) create mode 100644 docs/.gitbook/assets/airbyte_kestra_2.png diff --git a/docs/.gitbook/assets/airbyte_kestra_2.png b/docs/.gitbook/assets/airbyte_kestra_2.png new file mode 100644 index 0000000000000000000000000000000000000000..669d0537fa7240913efec593d0b5ab97ede0fcee GIT binary patch literal 679028 zcmb@u1zc2H*FQcW2!c`y2uK)6hf>l=cMqM?EuF)F0V)krA|VY!cMhn)&`1uAN_P%1 z)c1CJ691OnZVla*8l4gnz0 z)e_vRz!fJDjXnr;UED@OLRC&ef=<=N$@|@qtQW@q8}Y8W{rWB`Dz-A zm7B2g7fZcF^vz=iNQ!^#?3!N?^CJQ^d|)A2#1MPG zV>!4hseYa18_8GDT_e`kWfuds);yO6ZOfZfJuhl*fapmHWIhrEtXQ-U?$$1=N>tK5 zlew!xhb0z9Q0l4Nt4Y(sM5Hf4MckqekzOGbScVQNQjg3%9|$h>V=qge<7g+faJ4*3 zT|S(lXV8B<_mxB|_PX=)3b$TPr|PooAo)_f7RZ;OE!;OechBg)cdXr&W}=Ax{-jpe zwz>CUJEI5s9+0O*LQzV67l{l>iTl*WOfCS7^Z#bREooC=T)Gp=E z#7TK)@gD2^kl=kLSHbP?`X=M(3!P}KNL=bef>5o|__;ZP9`cFzcTIv>w$2(tM@_u_ zOL*C3$V5Nldn9t0x7}FYa%FgRqvti^fH1O;di4kX?6X?}w36Qb{X3;kq~25Kl^~Rk z#-6HA-+HzMBsvHKAqA? z5(iZjc8d7NE8CiV{z73S5GN3(Z6W-?ZLcJcoX7znTV)xKd#Y=wafzUkz1~+0y72;d(pzmCS zmR_I(-x*|{CE!nz*w%gbuOZhA?yMmwB3yH}S_*!9EY`;!X~Fa}&hqtH%>In!*4IJR z(J1N;MsKXKc>B{`S+G7h-jvj)2-+PXG&1zVuRO@tf4>iX_gH8&=*<2tTN{CiRcXwq z_Zs5}?vf7v$g4^-M5dRQyKq!t(OswhGOx0<@b9!|K`8~?F}30D;f>+Oa}e(niUCh< z6D87~TlfQ9J4=d(Qr`#1#EZT%*2QGRaDfIkLrzerhw}SVVs7J2uK4GmW|+nE=UeTb z?3vgB5Xa}ov}e7#T;FpfC<0uAYe}5pAHQaiWBMuNeooHD2@Rkq3EFkWENZ@a_yR

+jzNrI#)};HFLvB1@B6dR&27 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�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 z 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


6-|Us0xSq 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 z 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

>Nrz_jR;~HDW@C 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∋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ιql3CGNcw5ho=iK+Iy&7xA>X{c;Kb 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%0DAVe2x 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

Vmn?Rbl4>&si|74n#zxEQ8Vs9dB6=JgbWka~ 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¥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 Zti?~W-|b+1iDCgCJuQQC`Dd)d{tFP`QFH(R literal 0 HcmV?d00001 diff --git a/docs/operator-guides/using-kestra-plugin.md b/docs/operator-guides/using-kestra-plugin.md index d835b92a1449..09b3faec3518 100644 --- a/docs/operator-guides/using-kestra-plugin.md +++ b/docs/operator-guides/using-kestra-plugin.md @@ -43,17 +43,16 @@ Kestra UI provides a wide range of Blueprints to help you get started. Navigate to Blueprints. Then type "Airbyte" in the search bar to find the desired integration. This way, you can easily accomplish fairly standardized data orchestration tasks, such as the following: -1. [Run a single Airbyte sync](https://demo.kestra.io/ui/blueprints/community/61) on a schedule -2. [Run multiple Airbyte syncs in parallel](https://demo.kestra.io/ui/blueprints/community/18) -3. [Run multiple Airbyte syncs in parallel, then clone a Git repository with dbt code and trigger dbt CLI commands](https://demo.kestra.io/ui/blueprints/community/30) -4. [Run a single Airbyte Cloud sync](https://demo.kestra.io/ui/blueprints/community/62) on a schedule -5. [Run multiple Airbyte Cloud syncs in parallel](https://demo.kestra.io/ui/blueprints/community/63) -6. [Run multiple Airbyte Cloud syncs in parallel, then clone a Git repository with dbt code and trigger dbt CLI commands](https://demo.kestra.io/ui/blueprints/community/64) -7. [Run multiple Airbyte Cloud syncs in parallel, then run a dbt Cloud job](https://demo.kestra.io/ui/blueprints/community/31) +1. [Run a single Airbyte sync](https://kestra.io/blueprints/airbyte-sync) on a schedule +2. [Run multiple Airbyte syncs in parallel](https://kestra.io/blueprints/airbyte-sync-parallel) +3. [Run multiple Airbyte syncs in parallel, then clone a Git repository with dbt code and trigger dbt CLI commands](https://kestra.io/blueprints/airbyte-sync-parallel-with-dbt) +4. [Run a single Airbyte Cloud sync](https://kestra.io/blueprints/airbyte-cloud-sync) on a schedule +5. [Run multiple Airbyte Cloud syncs in parallel, then clone a Git repository with dbt code and trigger dbt CLI commands](https://kestra.io/blueprints/airbyte-cloud-dbt) +6. [Run multiple Airbyte Cloud syncs in parallel, then run a dbt Cloud job](https://kestra.io/blueprints/airbyte-cloud-dbt-cloud) Select a blueprint matching your use case and click "Use". -![airbyte_kestra_UI](../.gitbook/assets/airbyte_kestra_2.gif) +![airbyte_kestra_blueprints](../.gitbook/assets/airbyte_kestra_2.png) Then, within the editor, adjust the connection ID and task names and click "Save". Finally, trigger your flow. @@ -62,12 +61,12 @@ Then, within the editor, adjust the connection ID and task names and click "Save Here is an example flow that triggers multiple Airbyte connections in parallel to sync data for multiple **Pokémon**. ```yaml -id: airbyteSyncs -namespace: dev +id: airbyte_syncs +namespace: company.team description: Gotta catch ‘em all! tasks: - - id: data-ingestion + - id: data_ingestion type: io.kestra.core.tasks.flows.Parallel tasks: - id: charizard @@ -84,11 +83,11 @@ taskDefaults: - type: io.kestra.plugin.airbyte.connections.Sync values: url: http://host.docker.internal:8000/ - username: "{{envs.airbyte_username}}" - password: "{{envs.airbyte_password}}" + username: "{{ secret('AIRBYTE_USERNAME') }}" + password: "{{ secret('AIRBYTE_PASSWORD') }}" triggers: - - id: everyMinute + - id: every_minute type: io.kestra.core.models.triggers.types.Schedule cron: "*/1 * * * *" ``` From d493cd27e305b7d1d6625e5f821b057d1c48f3b1 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Tue, 5 Nov 2024 18:47:51 +0530 Subject: [PATCH 729/808] source-fillout contribution from parthiv11 (#47493) Co-authored-by: Marcos Marx --- .../connectors/source-fillout/README.md | 33 ++ .../source-fillout/acceptance-test-config.yml | 17 + .../connectors/source-fillout/icon.svg | 1 + .../connectors/source-fillout/manifest.yaml | 372 ++++++++++++++++++ .../connectors/source-fillout/metadata.yaml | 35 ++ docs/integrations/sources/fillout.md | 27 ++ 6 files changed, 485 insertions(+) create mode 100644 airbyte-integrations/connectors/source-fillout/README.md create mode 100644 airbyte-integrations/connectors/source-fillout/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-fillout/icon.svg create mode 100644 airbyte-integrations/connectors/source-fillout/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-fillout/metadata.yaml create mode 100644 docs/integrations/sources/fillout.md diff --git a/airbyte-integrations/connectors/source-fillout/README.md b/airbyte-integrations/connectors/source-fillout/README.md new file mode 100644 index 000000000000..b2a460e06d26 --- /dev/null +++ b/airbyte-integrations/connectors/source-fillout/README.md @@ -0,0 +1,33 @@ +# Fillout +This directory contains the manifest-only connector for `source-fillout`. + +The Airbyte connector for Fillout.com enables seamless data synchronization between Fillout forms and various target destinations. This connector allows you to extract form submissions and related data from Fillout and transfer it to your chosen data warehouse, analytics platform, or other destinations. With this integration, you can automate workflows, perform data analysis, and centralize data management for improved insights and reporting. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-fillout:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-fillout build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-fillout test +``` + diff --git a/airbyte-integrations/connectors/source-fillout/acceptance-test-config.yml b/airbyte-integrations/connectors/source-fillout/acceptance-test-config.yml new file mode 100644 index 000000000000..4352de9cdee6 --- /dev/null +++ b/airbyte-integrations/connectors/source-fillout/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-fillout:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-fillout/icon.svg b/airbyte-integrations/connectors/source-fillout/icon.svg new file mode 100644 index 000000000000..0fcf8d7624a2 --- /dev/null +++ b/airbyte-integrations/connectors/source-fillout/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-fillout/manifest.yaml b/airbyte-integrations/connectors/source-fillout/manifest.yaml new file mode 100644 index 000000000000..195c2f07ee7d --- /dev/null +++ b/airbyte-integrations/connectors/source-fillout/manifest.yaml @@ -0,0 +1,372 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + The Airbyte connector for Fillout.com enables seamless data synchronization + between Fillout forms and various target destinations. This connector allows + you to extract form submissions and related data from Fillout and transfer it + to your chosen data warehouse, analytics platform, or other destinations. With + this integration, you can automate workflows, perform data analysis, and + centralize data management for improved insights and reporting. + +check: + type: CheckStream + stream_names: + - forms + +definitions: + streams: + forms: + type: DeclarativeStream + name: forms + primary_key: + - formId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /forms + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/forms" + form_metadata: + type: DeclarativeStream + name: form_metadata + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /forms/{{ stream_partition.form_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: formId + partition_field: form_id + stream: + $ref: "#/definitions/streams/forms" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/form_metadata" + submissions: + type: DeclarativeStream + name: submissions + primary_key: + - submissionId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /forms/{{ stream_partition.form_id }}/submissions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - responses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 150 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: formId + partition_field: form_id + stream: + $ref: "#/definitions/streams/forms" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: submissionTime + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: afterDate + inject_into: request_parameter + end_time_option: + type: RequestOption + field_name: "beforeDate " + inject_into: request_parameter + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/submissions" + base_requester: + type: HttpRequester + url_base: https://api.fillout.com/v1/api + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/forms" + - $ref: "#/definitions/streams/form_metadata" + - $ref: "#/definitions/streams/submissions" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - start_date + properties: + api_key: + type: string + description: >- + API key to use. Find it in the Developer settings tab of your Fillout + account. + name: api_key + order: 0 + title: API Key + airbyte_secret: true + start_date: + type: string + order: 1 + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + additionalProperties: true + +metadata: + autoImportSchema: + forms: true + form_metadata: true + submissions: true + testedStreams: + forms: + streamHash: ed5a5bcc98a75c0ee799db522a659dc89c16344e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + form_metadata: + streamHash: 9701fd2020429ea05b4611e4185d634aa669712a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + submissions: + streamHash: 615b40e78b07d3f97d5db304dc1ae28dfd782c5e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://www.fillout.com/help/fillout-rest-api + +schemas: + forms: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + formId: + type: string + id: + type: + - number + - "null" + name: + type: + - string + - "null" + required: + - formId + form_metadata: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + calculations: + type: + - array + - "null" + documents: + type: + - array + - "null" + id: + type: string + name: + type: + - string + - "null" + payments: + type: + - array + - "null" + questions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + options: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + label: + type: + - string + - "null" + value: + type: + - string + - "null" + scheduling: + type: + - array + - "null" + urlParameters: + type: + - array + - "null" + required: + - id + submissions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + calculations: + type: + - array + - "null" + documents: + type: + - array + - "null" + lastUpdatedAt: + type: + - string + - "null" + payments: + type: + - array + - "null" + questions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + value: + anyOf: + - type: + - "null" + - number + - string + - type: object + properties: + address: + type: string + city: + type: string + country: + type: string + state: + type: string + zipCode: + type: string + quiz: + type: + - object + - "null" + scheduling: + type: + - array + - "null" + submissionId: + type: string + submissionTime: + type: string + urlParameters: + type: + - array + - "null" + required: + - submissionId + - submissionTime diff --git a/airbyte-integrations/connectors/source-fillout/metadata.yaml b/airbyte-integrations/connectors/source-fillout/metadata.yaml new file mode 100644 index 000000000000..4ec534cd4c2d --- /dev/null +++ b/airbyte-integrations/connectors/source-fillout/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.fillout.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-fillout + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: fae4092b-fcb4-4dba-8ad4-f8bf9a32d25e + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-fillout + githubIssueLabel: source-fillout + icon: icon.svg + license: MIT + name: Fillout + releaseDate: 2024-10-28 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/fillout + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/fillout.md b/docs/integrations/sources/fillout.md new file mode 100644 index 000000000000..b52d3c0da1bc --- /dev/null +++ b/docs/integrations/sources/fillout.md @@ -0,0 +1,27 @@ +# Fillout +The Airbyte connector for Fillout.com enables seamless data synchronization between Fillout forms and various target destinations. This connector allows you to extract form submissions and related data from Fillout and transfer it to your chosen data warehouse, analytics platform, or other destinations. With this integration, you can automate workflows, perform data analysis, and centralize data management for improved insights and reporting. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. API key to use. Find it in the Developer settings tab of your Fillout account. | | +| `start_date` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| forms | formId | DefaultPaginator | ✅ | ❌ | +| form_metadata | id | DefaultPaginator | ✅ | ❌ | +| submissions | submissionId | DefaultPaginator | ✅ | ✅ | + +## Changelog + +

+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-28 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From ebd86d47fb38d6f016438067f6916a35da2cd963 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 14:35:48 +0100 Subject: [PATCH 730/808] =?UTF-8?q?=F0=9F=90=99=20source-quickbooks:=20rel?= =?UTF-8?q?ease=203.0.26=20(#48089)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Catherine Noll --- .../connectors/source-quickbooks/metadata.yaml | 4 ++-- .../connectors/source-quickbooks/pyproject.toml | 2 +- docs/integrations/sources/quickbooks.md | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-quickbooks/metadata.yaml b/airbyte-integrations/connectors/source-quickbooks/metadata.yaml index 14cf457f2b0d..2c714bb9212c 100644 --- a/airbyte-integrations/connectors/source-quickbooks/metadata.yaml +++ b/airbyte-integrations/connectors/source-quickbooks/metadata.yaml @@ -9,7 +9,7 @@ data: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorType: source definitionId: cf9c4355-b171-4477-8f2d-6c5cc5fc8b7e - dockerImageTag: 3.0.26-rc.1 + dockerImageTag: 3.0.26 dockerRepository: airbyte/source-quickbooks githubIssueLabel: source-quickbooks icon: quickbooks.svg @@ -27,7 +27,7 @@ data: releaseStage: alpha releases: rolloutConfiguration: - enableProgressiveRollout: true + enableProgressiveRollout: false breakingChanges: 3.0.0: message: diff --git a/airbyte-integrations/connectors/source-quickbooks/pyproject.toml b/airbyte-integrations/connectors/source-quickbooks/pyproject.toml index fc136a044f6e..7f310817bd58 100644 --- a/airbyte-integrations/connectors/source-quickbooks/pyproject.toml +++ b/airbyte-integrations/connectors/source-quickbooks/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.0.26-rc.1" +version = "3.0.26" name = "source-quickbooks" description = "Source implementation for quickbooks." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/quickbooks.md b/docs/integrations/sources/quickbooks.md index 179d45a695cb..c63021549c77 100644 --- a/docs/integrations/sources/quickbooks.md +++ b/docs/integrations/sources/quickbooks.md @@ -108,6 +108,7 @@ This Source is capable of syncing the following [Streams](https://developer.intu | Version | Date | Pull Request | Subject | | :---------- | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------- | +| 3.0.26 | 2024-11-01 | [48089](https://github.com/airbytehq/airbyte/pull/48089) | Promoting release candidate 3.0.26-rc.1 to a main version. | | 3.0.26-rc.1 | 2024-09-10 | [44560](https://github.com/airbytehq/airbyte/pull/44560) | Replace Custom Components with Airbyte CDK features | | 3.0.25 | 2024-10-05 | [46424](https://github.com/airbytehq/airbyte/pull/46424) | Update dependencies | | 3.0.24 | 2024-09-28 | [46142](https://github.com/airbytehq/airbyte/pull/46142) | Update dependencies | From 6e921be692e065e97f61f1701e4c42d7491b2bf9 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Tue, 5 Nov 2024 19:28:20 +0530 Subject: [PATCH 731/808] source-clockodo contribution from parthiv11 (#47504) Co-authored-by: Marcos Marx --- .../connectors/source-clockodo/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-clockodo/icon.svg | 35 + .../connectors/source-clockodo/manifest.yaml | 1588 +++++++++++++++++ .../connectors/source-clockodo/metadata.yaml | 35 + docs/integrations/sources/clockodo.md | 45 + 6 files changed, 1753 insertions(+) create mode 100644 airbyte-integrations/connectors/source-clockodo/README.md create mode 100644 airbyte-integrations/connectors/source-clockodo/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-clockodo/icon.svg create mode 100644 airbyte-integrations/connectors/source-clockodo/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-clockodo/metadata.yaml create mode 100644 docs/integrations/sources/clockodo.md diff --git a/airbyte-integrations/connectors/source-clockodo/README.md b/airbyte-integrations/connectors/source-clockodo/README.md new file mode 100644 index 000000000000..362136a37cab --- /dev/null +++ b/airbyte-integrations/connectors/source-clockodo/README.md @@ -0,0 +1,33 @@ +# Clockodo +This directory contains the manifest-only connector for `source-clockodo`. + +The Airbyte connector for Clockodo enables seamless data integration between Clockodo and your preferred data warehouse or destination. This connector allows you to efficiently extract time tracking, project management, and reporting data from Clockodo, providing accurate insights and facilitating informed business decisions. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-clockodo:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-clockodo build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-clockodo test +``` + diff --git a/airbyte-integrations/connectors/source-clockodo/acceptance-test-config.yml b/airbyte-integrations/connectors/source-clockodo/acceptance-test-config.yml new file mode 100644 index 000000000000..f65fe516be4b --- /dev/null +++ b/airbyte-integrations/connectors/source-clockodo/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-clockodo:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-clockodo/icon.svg b/airbyte-integrations/connectors/source-clockodo/icon.svg new file mode 100644 index 000000000000..347315df1151 --- /dev/null +++ b/airbyte-integrations/connectors/source-clockodo/icon.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-clockodo/manifest.yaml b/airbyte-integrations/connectors/source-clockodo/manifest.yaml new file mode 100644 index 000000000000..3e5543a0cb1a --- /dev/null +++ b/airbyte-integrations/connectors/source-clockodo/manifest.yaml @@ -0,0 +1,1588 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + The Airbyte connector for Clockodo enables seamless data integration between + Clockodo and your preferred data warehouse or destination. This connector + allows you to efficiently extract time tracking, project management, and + reporting data from Clockodo, providing accurate insights and facilitating + informed business decisions. + +check: + type: CheckStream + stream_names: + - projects + +definitions: + streams: + projects: + type: DeclarativeStream + name: projects + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/projects + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - projects + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: items_per_page + pagination_strategy: + type: CursorPagination + page_size: 1000 + cursor_value: "{{ response.paging.current_page | int + 1 }}" + stop_condition: "{{ response.paging.count_pages == response.paging.current_page}}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/projects" + absences: + type: DeclarativeStream + name: absences + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/absences + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - absences + partition_router: + type: ListPartitionRouter + values: "{{ config['years'] }}" + cursor_field: year + request_option: + type: RequestOption + inject_into: request_parameter + field_name: year + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/absences" + customers: + type: DeclarativeStream + name: customers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/customers + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - customers + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: items_per_page + pagination_strategy: + type: CursorPagination + page_size: 1000 + cursor_value: "{{ response.paging.current_page | int + 1 }}" + stop_condition: "{{ response.paging.count_pages == response.paging.current_page}}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + entries: + type: DeclarativeStream + name: entries + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/entries + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.paging.current_page | int + 1 }}" + stop_condition: "{{ response.paging.count_pages == response.paging.current_page}}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: time_last_change + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: time_since + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: time_until + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/entries" + holidays_carry: + type: DeclarativeStream + name: holidays_carry + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /holidayscarry + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - holidayscarry + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/holidays_carry" + holidays_quota: + type: DeclarativeStream + name: holidays_quota + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /holidaysquota + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - holidaysquota + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/holidays_quota" + lumpsum_services: + type: DeclarativeStream + name: lumpsum_services + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/lumpsumservices + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - lumpSumServices + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/lumpsum_services" + non_business_days: + type: DeclarativeStream + name: non_business_days + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /nonbusinessdays + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - nonbusinessdays + partition_router: + type: ListPartitionRouter + values: "{{ config.years }}" + cursor_field: year + request_option: + type: RequestOption + inject_into: request_parameter + field_name: year + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/non_business_days" + overtime_carry: + type: DeclarativeStream + name: overtime_carry + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /overtimecarry + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - overtimecarry + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/overtime_carry" + services: + type: DeclarativeStream + name: services + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/services + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - services + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: items_per_page + pagination_strategy: + type: CursorPagination + page_size: 1000 + cursor_value: "{{ response.paging.current_page | int + 1 }}" + stop_condition: "{{ response.paging.count_pages == response.paging.current_page}}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/services" + surcharges: + type: DeclarativeStream + name: surcharges + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/surcharges + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - surcharges + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/surcharges" + target_hours: + type: DeclarativeStream + name: target_hours + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /targethours + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - targethours + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/target_hours" + teams: + type: DeclarativeStream + name: teams + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/teams + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - teams + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/teams" + user_reports: + type: DeclarativeStream + name: user_reports + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /userreports + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - userreports + partition_router: + type: ListPartitionRouter + values: "{{ config.years }}" + cursor_field: year + request_option: + type: RequestOption + inject_into: request_parameter + field_name: year + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/user_reports" + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/users + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - users + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + customers_projects: + type: DeclarativeStream + name: customers_projects + primary_key: + - user_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/users/{{ stream_partition.user_id }}/access/customers-projects + http_method: GET + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: user_id + stream: + $ref: "#/definitions/streams/users" + transformations: + - type: AddFields + fields: + - path: + - user_id + value: "{{ stream_partition.user_id }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers_projects" + work_times: + type: DeclarativeStream + name: work_times + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/workTimes + http_method: GET + request_parameters: + users_id: "{{ stream_partition.user_id }}" + date_since: "{{ format_datetime(config['start_time'], '%Y-%m-%d') }}" + date_until: "{{ format_datetime(config[\"end_time\"], '%Y-%m-%d') }}" + request_headers: + X-Clockodo-External-Application: "{{ config[\"external_application\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - work_time_days + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.paging.current_page | int + 1 }}" + stop_condition: "{{ response.paging.count_pages == response.paging.current_page}}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: user_id + stream: + $ref: "#/definitions/streams/users" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/work_times" + base_requester: + type: HttpRequester + url_base: https://my.clockodo.com/api + authenticator: + type: BasicHttpAuthenticator + password: "{{ config[\"api_key\"] }}" + username: "{{ config[\"email_address\"] }}" + +streams: + - $ref: "#/definitions/streams/projects" + - $ref: "#/definitions/streams/absences" + - $ref: "#/definitions/streams/customers" + - $ref: "#/definitions/streams/entries" + - $ref: "#/definitions/streams/holidays_carry" + - $ref: "#/definitions/streams/holidays_quota" + - $ref: "#/definitions/streams/lumpsum_services" + - $ref: "#/definitions/streams/non_business_days" + - $ref: "#/definitions/streams/overtime_carry" + - $ref: "#/definitions/streams/services" + - $ref: "#/definitions/streams/surcharges" + - $ref: "#/definitions/streams/target_hours" + - $ref: "#/definitions/streams/teams" + - $ref: "#/definitions/streams/user_reports" + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/customers_projects" + - $ref: "#/definitions/streams/work_times" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - email_address + - external_application + - years + - start_date + properties: + api_key: + type: string + description: >- + API key to use. Find it in the 'Personal data' section of your + Clockodo account. + name: api_key + order: 0 + title: API Key + airbyte_secret: true + email_address: + type: string + description: >- + Your Clockodo account email address. Find it in your Clockodo account + settings. + name: email_address + order: 1 + title: Email Address + external_application: + type: string + description: >- + Identification of the calling application, including the email address + of a technical contact person. Format: [name of application or + company];[email address]. + name: external_application + order: 2 + title: External Application Header + default: Airbyte + years: + type: array + description: 2024, 2025 + title: Years + order: 3 + start_date: + type: string + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + order: 4 + additionalProperties: true + +metadata: + autoImportSchema: + projects: true + absences: true + customers: true + entries: true + holidays_carry: true + holidays_quota: true + lumpsum_services: true + non_business_days: true + overtime_carry: true + services: true + surcharges: true + target_hours: true + teams: true + user_reports: true + users: true + customers_projects: true + work_times: true + testedStreams: + projects: + streamHash: 5118bb02f9bab96765d8d050e22412bdd5d51e35 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + absences: + streamHash: f26eb7e9a1605b995726ed13f6197e765acc385e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + customers: + streamHash: 08ca930fb7cfb6c36a63fe1a37542795cbc05984 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + entries: + streamHash: b4177032cf2a20851d3d07deb6c9a71fe3499645 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + holidays_carry: + streamHash: e48839eff131e148fe0fc088d169982751c78e81 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + holidays_quota: + streamHash: b9c95ec43672adfb723739044bb58a56dac3c908 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + lumpsum_services: + streamHash: 4a184ac9dbd17e470dfe6e1ad2f5de90756df6dc + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + non_business_days: + streamHash: a6fd505564d95facf53816c0cfba75f8f13c2ac9 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + overtime_carry: + streamHash: b2d2f23a96f7597fb258c8bf39582870782437d5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + services: + streamHash: 0657be7ab387318a21947cb7388dceb662387251 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + surcharges: + streamHash: 4d54a3384127ccd4e306d3622476667b53906fe7 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + target_hours: + streamHash: d43471c2a05f4fdb9de873ed7c8665c752b16159 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + teams: + streamHash: 799dd4476020338c6f755be19a044b1216a72426 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + user_reports: + streamHash: 78993ea668dfeeab72f98a4a24d6875496825b84 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + users: + streamHash: bce80801cf75761b9491c55a9f3eb211e6f92e1e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + customers_projects: + streamHash: 564b5039ce98dfcc33f4ec0c145ce940ca3aa9d8 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + work_times: + streamHash: b25e0d40c153790d8cb4ecc3ddfd707edcf3eb81 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://www.clockodo.com/en/api/ + +schemas: + projects: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - boolean + - "null" + billable_default: + type: + - boolean + - "null" + billed_completely: + type: + - boolean + - "null" + budget_is_hours: + type: + - boolean + - "null" + budget_is_not_strict: + type: + - boolean + - "null" + budget_money: + type: + - number + - "null" + completed: + type: + - boolean + - "null" + customers_id: + type: + - number + - "null" + id: + type: number + name: + type: + - string + - "null" + revenue_factor: + type: + - number + - "null" + test_data: + type: + - boolean + - "null" + required: + - id + absences: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - number + - "null" + approved_by: + type: + - number + - "null" + count_days: + type: + - number + - "null" + date_approved: + type: + - string + - "null" + date_since: + type: + - string + - "null" + date_until: + type: + - string + - "null" + id: + type: number + status: + type: + - number + - "null" + users_id: + type: + - number + - "null" + required: + - id + customers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - boolean + - "null" + billable_default: + type: + - boolean + - "null" + color: + type: + - number + - "null" + id: + type: number + name: + type: + - string + - "null" + test_data: + type: + - boolean + - "null" + required: + - id + entries: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - number + - "null" + billable: + type: + - number + - "null" + clocked: + type: + - boolean + - "null" + clocked_offline: + type: + - boolean + - "null" + customers_id: + type: + - number + - "null" + duration: + type: + - number + - "null" + hourly_rate: + type: + - number + - "null" + id: + type: number + lumpsum: + type: + - number + - "null" + lumpsum_services_amount: + type: + - number + - "null" + lumpsum_services_id: + type: + - number + - "null" + projects_id: + type: + - number + - "null" + services_id: + type: + - number + - "null" + test_data: + type: + - boolean + - "null" + text: + type: + - string + - "null" + texts_id: + type: + - number + - "null" + time_clocked_since: + type: + - string + - "null" + time_insert: + type: + - string + - "null" + time_last_change: + type: string + time_last_change_work_time: + type: + - string + - "null" + time_since: + type: + - string + - "null" + time_until: + type: + - string + - "null" + users_id: + type: + - number + - "null" + required: + - id + - time_last_change + holidays_carry: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + count: + type: + - number + - "null" + id: + type: number + note: + type: + - string + - "null" + users_id: + type: + - number + - "null" + year: + type: + - number + - "null" + required: + - id + holidays_quota: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + count: + type: + - number + - "null" + id: + type: number + note: + type: + - string + - "null" + users_id: + type: + - number + - "null" + year_since: + type: + - number + - "null" + year_until: + type: + - number + - "null" + required: + - id + lumpsum_services: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - boolean + - "null" + id: + type: number + name: + type: + - string + - "null" + price: + type: + - number + - "null" + unit: + type: + - string + - "null" + required: + - id + non_business_days: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date: + type: + - string + - "null" + half_day: + type: + - number + - "null" + id: + type: number + name: + type: + - string + - "null" + nonbusinessgroups_id: + type: + - number + - "null" + required: + - id + overtime_carry: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + hours: + type: + - number + - "null" + id: + type: number + note: + type: + - string + - "null" + users_id: + type: + - number + - "null" + year: + type: + - number + - "null" + required: + - id + services: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - boolean + - "null" + id: + type: number + name: + type: + - string + - "null" + required: + - id + surcharges: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accumulation: + type: + - boolean + - "null" + id: + type: number + name: + type: + - string + - "null" + nonbusiness: + type: + - object + - "null" + properties: + percent: + type: + - number + - "null" + time_since: + type: + - string + - "null" + time_since_is_previous_day: + type: + - boolean + - "null" + time_until: + type: + - string + - "null" + time_until_is_next_day: + type: + - boolean + - "null" + nonbusiness_special: + type: + - object + - "null" + properties: + percent: + type: + - number + - "null" + time_since: + type: + - string + - "null" + time_since_is_previous_day: + type: + - boolean + - "null" + time_until: + type: + - string + - "null" + time_until_is_next_day: + type: + - boolean + - "null" + sunday: + type: + - object + - "null" + properties: + percent: + type: + - number + - "null" + time_since: + type: + - string + - "null" + time_since_is_previous_day: + type: + - boolean + - "null" + time_until: + type: + - string + - "null" + time_until_is_next_day: + type: + - boolean + - "null" + required: + - id + target_hours: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + compensation_daily: + type: + - number + - "null" + compensation_monthly: + type: + - number + - "null" + date_since: + type: + - string + - "null" + date_until: + type: + - string + - "null" + friday: + type: + - number + - "null" + id: + type: number + monday: + type: + - number + - "null" + saturday: + type: + - number + - "null" + sunday: + type: + - number + - "null" + test_data: + type: + - boolean + - "null" + thursday: + type: + - number + - "null" + tuesday: + type: + - number + - "null" + users_id: + type: + - number + - "null" + wednesday: + type: + - number + - "null" + required: + - id + teams: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + leader: + type: + - number + - "null" + name: + type: + - string + - "null" + required: + - id + user_reports: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + diff: + type: + - number + - "null" + holidays_carry: + type: + - number + - "null" + holidays_quota: + type: + - number + - "null" + overtime_carryover: + type: + - number + - "null" + overtime_reduced: + type: + - number + - "null" + sum_absence: + type: + - object + - "null" + properties: + home_office: + type: + - number + - "null" + maternity_protection: + type: + - number + - "null" + military_service: + type: + - number + - "null" + out_of_office: + type: + - number + - "null" + quarantine: + type: + - number + - "null" + regular_holidays: + type: + - number + - "null" + school: + type: + - number + - "null" + sick_child: + type: + - number + - "null" + sick_self: + type: + - number + - "null" + special_leaves: + type: + - number + - "null" + sum_hours: + type: + - number + - "null" + sum_reduction_planned: + type: + - number + - "null" + sum_reduction_used: + type: + - number + - "null" + sum_target: + type: + - number + - "null" + surcharges: + type: + - object + - "null" + properties: + night: + type: + - number + - "null" + night_increased: + type: + - number + - "null" + nonbusiness: + type: + - number + - "null" + nonbusiness_special: + type: + - number + - "null" + saturday: + type: + - number + - "null" + sunday: + type: + - number + - "null" + users_email: + type: + - string + - "null" + users_id: + type: + - number + - "null" + users_name: + type: + - string + - "null" + workdays: + type: + - number + - "null" + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + absence_managers_id: + type: + - array + - "null" + items: + type: + - number + - "null" + active: + type: + - boolean + - "null" + can_add_customers: + type: + - boolean + - "null" + can_generally_manage_absences: + type: + - boolean + - "null" + can_generally_see_absences: + type: + - boolean + - "null" + creator: + type: + - number + - "null" + default_holidays_count: + type: + - boolean + - "null" + default_target_hours: + type: + - boolean + - "null" + edit_lock_sync: + type: + - boolean + - "null" + email: + type: + - string + - "null" + id: + type: number + initials: + type: + - string + - "null" + language: + type: + - string + - "null" + name: + type: + - string + - "null" + role: + type: + - string + - "null" + support_pin: + type: + - string + - "null" + timeformat_12h: + type: + - boolean + - "null" + timezone: + type: + - string + - "null" + weekend_friday: + type: + - boolean + - "null" + weekstart_monday: + type: + - boolean + - "null" + work_time_edit_lock_days: + type: + - number + - "null" + worktime_regulation_id: + type: + - number + - "null" + required: + - id + customers_projects: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + add: + type: + - boolean + - "null" + edit: + type: + - boolean + - "null" + report: + anyOf: + - type: boolean + - type: object + properties: + "3797976": + type: boolean + user_id: + type: number + required: + - user_id + work_times: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date: + type: + - string + - "null" + intervals: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + time_since: + type: + - string + - "null" + time_until: + type: + - string + - "null" + offset: + type: + - number + - "null" + users_id: + type: + - number + - "null" diff --git a/airbyte-integrations/connectors/source-clockodo/metadata.yaml b/airbyte-integrations/connectors/source-clockodo/metadata.yaml new file mode 100644 index 000000000000..3294fc9eebf1 --- /dev/null +++ b/airbyte-integrations/connectors/source-clockodo/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "my.clockodo.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-clockodo + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 9cddb136-acda-4755-9200-9014944650fc + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-clockodo + githubIssueLabel: source-clockodo + icon: icon.svg + license: MIT + name: Clockodo + releaseDate: 2024-10-28 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/clockodo + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/clockodo.md b/docs/integrations/sources/clockodo.md new file mode 100644 index 000000000000..2416a37fe4b2 --- /dev/null +++ b/docs/integrations/sources/clockodo.md @@ -0,0 +1,45 @@ +# Clockodo +The Airbyte connector for Clockodo enables seamless data integration between Clockodo and your preferred data warehouse or destination. This connector allows you to efficiently extract time tracking, project management, and reporting data from Clockodo, providing accurate insights and facilitating informed business decisions. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. API key to use. Find it in the 'Personal data' section of your Clockodo account. | | +| `email_address` | `string` | Email Address. Your Clockodo account email address. Find it in your Clockodo account settings. | | +| `external_application` | `string` | External Application Header. Identification of the calling application, including the email address of a technical contact person. Format: [name of application or company];[email address]. | Airbyte | +| `years` | `integer` | Year. | | +| `start_date` | `string` | Start Date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| projects | id | DefaultPaginator | ✅ | ❌ | +| absences | id | No pagination | ✅ | ❌ | +| customers | id | DefaultPaginator | ✅ | ❌ | +| entries | id | DefaultPaginator | ✅ | ✅ | +| holidays_carry | id | No pagination | ✅ | ❌ | +| holidays_quota | id | No pagination | ✅ | ❌ | +| lumpsum_services | id | No pagination | ✅ | ❌ | +| non_business_days | id | No pagination | ✅ | ❌ | +| overtime_carry | id | No pagination | ✅ | ❌ | +| services | id | DefaultPaginator | ✅ | ❌ | +| surcharges | id | No pagination | ✅ | ❌ | +| target_hours | id | No pagination | ✅ | ❌ | +| teams | id | No pagination | ✅ | ❌ | +| user_reports | | No pagination | ✅ | ❌ | +| users | id | No pagination | ✅ | ❌ | +| customers_projects | user_id | No pagination | ✅ | ❌ | +| access_services | user_id | No pagination | ✅ | ❌ | +| work_times | | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-28 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From eb18c21d43eeec789f2cba16e10bbc94f795ac52 Mon Sep 17 00:00:00 2001 From: Natalie Kwong <38087517+nataliekwong@users.noreply.github.com> Date: Tue, 5 Nov 2024 06:51:57 -0800 Subject: [PATCH 732/808] docs: Update migration note (#48111) --- docs/cloud/managing-airbyte-cloud/manage-credits.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/cloud/managing-airbyte-cloud/manage-credits.md b/docs/cloud/managing-airbyte-cloud/manage-credits.md index 453a59c90fdf..c5202f504e38 100644 --- a/docs/cloud/managing-airbyte-cloud/manage-credits.md +++ b/docs/cloud/managing-airbyte-cloud/manage-credits.md @@ -8,6 +8,12 @@ Airbyte [credits](https://airbyte.com/pricing) are used to pay for Airbyte resou Airbyte Cloud plans start at just $10 per month, with additional charges based on usage. +:::note +If you signed up for Airbyte Cloud on or after October 31st, 2024, you are automatically enrolled in our $10/month subscription plan. + +For those who signed up prior, we will reach out to you over the coming weeks to migrate you to the new plans, and you can continue to use Airbyte as usual in the interim. +::: + ## What are credits? Airbyte uses credits to unify pricing across multiple types of sources. You can refer to the below table to understand how pricing differs across each source. From 86746b93755045ad5337c92cd7b6f7012d1f4bdc Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 6 Nov 2024 00:35:57 +0800 Subject: [PATCH 733/808] fix(destination-databend): add ssl param (#46992) Co-authored-by: Marcos Marx Co-authored-by: Octavia Squidington III Co-authored-by: marcosmarxm --- .../destination_databend/client.py | 10 +- .../destination_databend/spec.json | 7 + .../integration_tests/sample_config.json | 3 +- .../destination-databend/metadata.yaml | 2 +- .../destination-databend/poetry.lock | 119 +++------- .../destination-databend/pyproject.toml | 4 +- .../unit_tests/test_databend_destination.py | 33 +-- docs/integrations/destinations/databend.md | 1 + poetry.lock | 210 +++++++++--------- 9 files changed, 169 insertions(+), 220 deletions(-) diff --git a/airbyte-integrations/connectors/destination-databend/destination_databend/client.py b/airbyte-integrations/connectors/destination-databend/destination_databend/client.py index 1764093aa094..572a98d820b0 100644 --- a/airbyte-integrations/connectors/destination-databend/destination_databend/client.py +++ b/airbyte-integrations/connectors/destination-databend/destination_databend/client.py @@ -6,15 +6,21 @@ class DatabendClient: - def __init__(self, host: str, port: int, database: str, table: str, username: str, password: str = None): + def __init__(self, host: str, port: int, database: str, table: str, username: str, ssl: bool, password: str = None): self.host = host self.port = port self.database = database self.table = table self.username = username self.password = password + self.ssl = ssl or False def open(self): - handle = connector.connect(f"https://{self.username}:{self.password}@{self.host}:{self.port}/{self.database}").cursor() + if self.ssl: + handle = connector.connect(f"databend://{self.username}:{self.password}@{self.host}:{self.port}/{self.database}").cursor() + else: + handle = connector.connect( + f"databend://{self.username}:{self.password}@{self.host}:{self.port}/{self.database}?sslmode=disable" + ).cursor() return handle diff --git a/airbyte-integrations/connectors/destination-databend/destination_databend/spec.json b/airbyte-integrations/connectors/destination-databend/destination_databend/spec.json index e77d3301152c..4298fb432687 100644 --- a/airbyte-integrations/connectors/destination-databend/destination_databend/spec.json +++ b/airbyte-integrations/connectors/destination-databend/destination_databend/spec.json @@ -51,6 +51,13 @@ "type": "string", "airbyte_secret": true, "order": 6 + }, + "ssl": { + "title": "SSL Connection", + "description": "Encrypt data using SSL.", + "type": "boolean", + "default": true, + "order": 7 } } } diff --git a/airbyte-integrations/connectors/destination-databend/integration_tests/sample_config.json b/airbyte-integrations/connectors/destination-databend/integration_tests/sample_config.json index 62c0cdb78b7f..5d9dfeaf4202 100644 --- a/airbyte-integrations/connectors/destination-databend/integration_tests/sample_config.json +++ b/airbyte-integrations/connectors/destination-databend/integration_tests/sample_config.json @@ -5,5 +5,6 @@ "username": "username", "password": "password", "database": "default", - "table": "default" + "table": "default", + "ssl": false } diff --git a/airbyte-integrations/connectors/destination-databend/metadata.yaml b/airbyte-integrations/connectors/destination-databend/metadata.yaml index 2d0f1788782b..ebbebeeb4d13 100644 --- a/airbyte-integrations/connectors/destination-databend/metadata.yaml +++ b/airbyte-integrations/connectors/destination-databend/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 302e4d8e-08d3-4098-acd4-ac67ca365b88 - dockerImageTag: 0.1.28 + dockerImageTag: 0.1.29 dockerRepository: airbyte/destination-databend githubIssueLabel: destination-databend icon: databend.svg diff --git a/airbyte-integrations/connectors/destination-databend/poetry.lock b/airbyte-integrations/connectors/destination-databend/poetry.lock index c6c0a3845e34..8d418b067df0 100644 --- a/airbyte-integrations/connectors/destination-databend/poetry.lock +++ b/airbyte-integrations/connectors/destination-databend/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "airbyte-cdk" @@ -266,35 +266,42 @@ files = [ ] [[package]] -name = "databend-py" -version = "0.3.5" -description = "Python driver with native interface for Databend" +name = "databend-driver" +version = "0.22.2" +description = "Databend Driver Python Binding" optional = false -python-versions = ">=3.4, <4" +python-versions = "<3.13,>=3.7" files = [ - {file = "databend_py-0.3.5-py3-none-any.whl", hash = "sha256:fca26a1fefef6d23e32bc8f9d7df05f731980beeba43e46959ccef969d763e00"}, + {file = "databend_driver-0.22.2-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:4178053e2a78665e32414f4e28bfcff56f8e429e3af5b44f0f3f087328457ac7"}, + {file = "databend_driver-0.22.2-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:9a2fa02e5e7e52cd6556bb4f7d4b99307ee6c1fd1c845e90bf127900d6ca45c0"}, + {file = "databend_driver-0.22.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41e8899410f63faefff8ba619cde688f696eeadd383f94bcdfa58f4ea179579b"}, + {file = "databend_driver-0.22.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:6561c3f330dd3b6370e292aac0ed7bc54387c67158656ff1c13b24bba25177f9"}, + {file = "databend_driver-0.22.2-cp37-abi3-win_amd64.whl", hash = "sha256:f53a7236b03e086ba3d44addd5ed44f5835d937e8fcaee359ca2939d3a684ca4"}, ] -[package.dependencies] -environs = "*" -"mysql.connector" = "*" -pytz = "*" -requests = "*" +[package.extras] +docs = ["pdoc"] +lint = ["black", "flake8"] +test = ["behave"] [[package]] name = "databend-sqlalchemy" -version = "0.1.6" -description = "Databend dialect for SQLAlchemy." +version = "0.4.7" +description = "Sqlalchemy adapter for Databend" optional = false -python-versions = ">=3.4, <4" +python-versions = ">=3.7" files = [ - {file = "databend_sqlalchemy-0.1.6-py3-none-any.whl", hash = "sha256:3961812855373cf4d67f29f585101aef5c704795a4e06e669363234bd9f0c03f"}, + {file = "databend_sqlalchemy-0.4.7-py3-none-any.whl", hash = "sha256:d3c0c2c1667bb40ba2debca0fc9ba995fcc0416b03750ef8458c8aa55b016c0d"}, + {file = "databend_sqlalchemy-0.4.7.tar.gz", hash = "sha256:020a4ac840389e695f9d959b96902a82e90491fd1d146311c8532b1c4cd67128"}, ] [package.dependencies] -databend-py = "0.3.5" -"mysql.connector" = "*" -sqlalchemy = "*" +databend-driver = ">=0.16.0" +sqlalchemy = ">=1.4" + +[package.extras] +dev = ["devtools (==0.7.0)", "mock (==4.0.3)", "pre-commit (==2.15.0)", "pytest (==8.1.1)", "pytest-cov (==3.0.0)", "pytest-xdist (==3.5.0)", "sqlalchemy-stubs (==0.4)"] +superset = ["apache-superset (>=1.4.1)"] [[package]] name = "deprecated" @@ -324,26 +331,6 @@ files = [ {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, ] -[[package]] -name = "environs" -version = "11.0.0" -description = "simplified environment variable parsing" -optional = false -python-versions = ">=3.8" -files = [ - {file = "environs-11.0.0-py3-none-any.whl", hash = "sha256:e0bcfd41c718c07a7db422f9109e490746450da38793fe4ee197f397b9343435"}, - {file = "environs-11.0.0.tar.gz", hash = "sha256:069727a8f73d8ba8d033d3cd95c0da231d44f38f1da773bf076cef168d312ee8"}, -] - -[package.dependencies] -marshmallow = ">=3.13.0" -python-dotenv = "*" - -[package.extras] -dev = ["environs[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -django = ["dj-database-url", "dj-email-url", "django-cache-url"] -tests = ["environs[django]", "pytest"] - [[package]] name = "exceptiongroup" version = "1.2.2" @@ -612,35 +599,6 @@ files = [ {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] -[[package]] -name = "marshmallow" -version = "3.23.1" -description = "A lightweight library for converting complex datatypes to and from native Python datatypes." -optional = false -python-versions = ">=3.9" -files = [ - {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, - {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, -] - -[package.dependencies] -packaging = ">=17.0" - -[package.extras] -dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] -docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] -tests = ["pytest", "simplejson"] - -[[package]] -name = "mysql-connector" -version = "2.2.9" -description = "MySQL driver written in Python" -optional = false -python-versions = "*" -files = [ - {file = "mysql-connector-2.2.9.tar.gz", hash = "sha256:1733e6ce52a049243de3264f1fbc22a852cb35458c4ad739ba88189285efdf32"}, -] - [[package]] name = "packaging" version = "24.1" @@ -868,31 +826,6 @@ files = [ [package.dependencies] six = ">=1.5" -[[package]] -name = "python-dotenv" -version = "1.0.1" -description = "Read key-value pairs from a .env file and set them as environment variables" -optional = false -python-versions = ">=3.8" -files = [ - {file = "python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca"}, - {file = "python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a"}, -] - -[package.extras] -cli = ["click (>=5.0)"] - -[[package]] -name = "pytz" -version = "2024.2" -description = "World timezone definitions, modern and historical" -optional = false -python-versions = "*" -files = [ - {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"}, - {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"}, -] - [[package]] name = "pytzdata" version = "2020.1" @@ -1292,4 +1225,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9,<3.12" -content-hash = "94abd58468c8d02807a3e4be0320c116cf1852a533d921b2c21f98e040b64239" +content-hash = "e3b178c9d5b5f61e03220aa44a2d82c41a2e49067469bfe7c40f80a6a222ae32" diff --git a/airbyte-integrations/connectors/destination-databend/pyproject.toml b/airbyte-integrations/connectors/destination-databend/pyproject.toml index 1f4bace1c678..36773564f231 100644 --- a/airbyte-integrations/connectors/destination-databend/pyproject.toml +++ b/airbyte-integrations/connectors/destination-databend/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.28" +version = "0.1.29" name = "destination-databend" description = "Destination implementation for Databend." authors = [ "Airbyte ",] @@ -17,7 +17,7 @@ include = "destination_databend" [tool.poetry.dependencies] python = "^3.9,<3.12" -databend-sqlalchemy = "==0.1.6" +databend-sqlalchemy = "==0.4.7" airbyte-cdk = "==0.68.1" requests = "==2.31.0" diff --git a/airbyte-integrations/connectors/destination-databend/unit_tests/test_databend_destination.py b/airbyte-integrations/connectors/destination-databend/unit_tests/test_databend_destination.py index e5a7c7e6d7d6..2372f49736fb 100644 --- a/airbyte-integrations/connectors/destination-databend/unit_tests/test_databend_destination.py +++ b/airbyte-integrations/connectors/destination-databend/unit_tests/test_databend_destination.py @@ -34,6 +34,7 @@ def config() -> Dict[str, str]: "host": "localhost", "port": 8081, "table": "default", + "ssl": False, } return args @@ -116,14 +117,14 @@ def test_connection(config: Dict[str, str], logger: MagicMock) -> None: @patch("destination_databend.writer.DatabendSQLWriter") @patch("destination_databend.client.DatabendClient") def test_sql_write_append( - mock_connection: MagicMock, - mock_writer: MagicMock, - config: Dict[str, str], - configured_stream1: ConfiguredAirbyteStream, - configured_stream2: ConfiguredAirbyteStream, - airbyte_message1: AirbyteMessage, - airbyte_message2: AirbyteMessage, - airbyte_state_message: AirbyteMessage, + mock_connection: MagicMock, + mock_writer: MagicMock, + config: Dict[str, str], + configured_stream1: ConfiguredAirbyteStream, + configured_stream2: ConfiguredAirbyteStream, + airbyte_message1: AirbyteMessage, + airbyte_message2: AirbyteMessage, + airbyte_state_message: AirbyteMessage, ) -> None: catalog = ConfiguredAirbyteCatalog(streams=[configured_stream1, configured_stream2]) @@ -140,14 +141,14 @@ def test_sql_write_append( @patch("destination_databend.writer.DatabendSQLWriter") @patch("destination_databend.client.DatabendClient") def test_sql_write_overwrite( - mock_connection: MagicMock, - mock_writer: MagicMock, - config: Dict[str, str], - configured_stream1: ConfiguredAirbyteStream, - configured_stream2: ConfiguredAirbyteStream, - airbyte_message1: AirbyteMessage, - airbyte_message2: AirbyteMessage, - airbyte_state_message: AirbyteMessage, + mock_connection: MagicMock, + mock_writer: MagicMock, + config: Dict[str, str], + configured_stream1: ConfiguredAirbyteStream, + configured_stream2: ConfiguredAirbyteStream, + airbyte_message1: AirbyteMessage, + airbyte_message2: AirbyteMessage, + airbyte_state_message: AirbyteMessage, ): # Overwrite triggers a delete configured_stream1.destination_sync_mode = DestinationSyncMode.overwrite diff --git a/docs/integrations/destinations/databend.md b/docs/integrations/destinations/databend.md index 5a5c4423b240..7c4a70e6bfe3 100644 --- a/docs/integrations/destinations/databend.md +++ b/docs/integrations/destinations/databend.md @@ -72,6 +72,7 @@ And the [Databend Cloud](https://app.databend.com/) will only support databend v | Version | Date | Pull Request | Subject | | :------------------------------------------------------- | :--------------------------------------- | :-------------------------------------------------------- | :------------------------------------------------------- | ----------- | +| 0.1.29 | 2024-10-19 | [46992](https://github.com/airbytehq/airbyte/pull/46992) | add ssl param for databend destination | | 0.1.28 | 2024-11-04 | [48272](https://github.com/airbytehq/airbyte/pull/48272) | Update dependencies | | 0.1.27 | 2024-10-28 | [47069](https://github.com/airbytehq/airbyte/pull/47069) | Update dependencies | | 0.1.26 | 2024-10-12 | [46811](https://github.com/airbytehq/airbyte/pull/46811) | Update dependencies | diff --git a/poetry.lock b/poetry.lock index b608b7e856a7..029ddc8f88ba 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "attrs" @@ -224,114 +224,114 @@ rpds-py = ">=0.7.0" [[package]] name = "rpds-py" -version = "0.20.0" +version = "0.20.1" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, - {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, - {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, - {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, - {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, - {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, - {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, - {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, - {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, - {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, - {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, - {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, - {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, - {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, - {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, + {file = "rpds_py-0.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a649dfd735fff086e8a9d0503a9f0c7d01b7912a333c7ae77e1515c08c146dad"}, + {file = "rpds_py-0.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f16bc1334853e91ddaaa1217045dd7be166170beec337576818461268a3de67f"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:14511a539afee6f9ab492b543060c7491c99924314977a55c98bfa2ee29ce78c"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3ccb8ac2d3c71cda472b75af42818981bdacf48d2e21c36331b50b4f16930163"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c142b88039b92e7e0cb2552e8967077e3179b22359e945574f5e2764c3953dcf"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f19169781dddae7478a32301b499b2858bc52fc45a112955e798ee307e294977"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13c56de6518e14b9bf6edde23c4c39dac5b48dcf04160ea7bce8fca8397cdf86"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:925d176a549f4832c6f69fa6026071294ab5910e82a0fe6c6228fce17b0706bd"}, + {file = "rpds_py-0.20.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:78f0b6877bfce7a3d1ff150391354a410c55d3cdce386f862926a4958ad5ab7e"}, + {file = "rpds_py-0.20.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3dd645e2b0dcb0fd05bf58e2e54c13875847687d0b71941ad2e757e5d89d4356"}, + {file = "rpds_py-0.20.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4f676e21db2f8c72ff0936f895271e7a700aa1f8d31b40e4e43442ba94973899"}, + {file = "rpds_py-0.20.1-cp310-none-win32.whl", hash = "sha256:648386ddd1e19b4a6abab69139b002bc49ebf065b596119f8f37c38e9ecee8ff"}, + {file = "rpds_py-0.20.1-cp310-none-win_amd64.whl", hash = "sha256:d9ecb51120de61e4604650666d1f2b68444d46ae18fd492245a08f53ad2b7711"}, + {file = "rpds_py-0.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:762703bdd2b30983c1d9e62b4c88664df4a8a4d5ec0e9253b0231171f18f6d75"}, + {file = "rpds_py-0.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0b581f47257a9fce535c4567782a8976002d6b8afa2c39ff616edf87cbeff712"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:842c19a6ce894493563c3bd00d81d5100e8e57d70209e84d5491940fdb8b9e3a"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42cbde7789f5c0bcd6816cb29808e36c01b960fb5d29f11e052215aa85497c93"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6c8e9340ce5a52f95fa7d3b552b35c7e8f3874d74a03a8a69279fd5fca5dc751"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ba6f89cac95c0900d932c9efb7f0fb6ca47f6687feec41abcb1bd5e2bd45535"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a916087371afd9648e1962e67403c53f9c49ca47b9680adbeef79da3a7811b0"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:200a23239781f46149e6a415f1e870c5ef1e712939fe8fa63035cd053ac2638e"}, + {file = "rpds_py-0.20.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:58b1d5dd591973d426cbb2da5e27ba0339209832b2f3315928c9790e13f159e8"}, + {file = "rpds_py-0.20.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6b73c67850ca7cae0f6c56f71e356d7e9fa25958d3e18a64927c2d930859b8e4"}, + {file = "rpds_py-0.20.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d8761c3c891cc51e90bc9926d6d2f59b27beaf86c74622c8979380a29cc23ac3"}, + {file = "rpds_py-0.20.1-cp311-none-win32.whl", hash = "sha256:cd945871335a639275eee904caef90041568ce3b42f402c6959b460d25ae8732"}, + {file = "rpds_py-0.20.1-cp311-none-win_amd64.whl", hash = "sha256:7e21b7031e17c6b0e445f42ccc77f79a97e2687023c5746bfb7a9e45e0921b84"}, + {file = "rpds_py-0.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:36785be22066966a27348444b40389f8444671630063edfb1a2eb04318721e17"}, + {file = "rpds_py-0.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:142c0a5124d9bd0e2976089484af5c74f47bd3298f2ed651ef54ea728d2ea42c"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbddc10776ca7ebf2a299c41a4dde8ea0d8e3547bfd731cb87af2e8f5bf8962d"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:15a842bb369e00295392e7ce192de9dcbf136954614124a667f9f9f17d6a216f"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be5ef2f1fc586a7372bfc355986226484e06d1dc4f9402539872c8bb99e34b01"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbcf360c9e3399b056a238523146ea77eeb2a596ce263b8814c900263e46031a"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecd27a66740ffd621d20b9a2f2b5ee4129a56e27bfb9458a3bcc2e45794c96cb"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0b937b2a1988f184a3e9e577adaa8aede21ec0b38320d6009e02bd026db04fa"}, + {file = "rpds_py-0.20.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6889469bfdc1eddf489729b471303739bf04555bb151fe8875931f8564309afc"}, + {file = "rpds_py-0.20.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:19b73643c802f4eaf13d97f7855d0fb527fbc92ab7013c4ad0e13a6ae0ed23bd"}, + {file = "rpds_py-0.20.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3c6afcf2338e7f374e8edc765c79fbcb4061d02b15dd5f8f314a4af2bdc7feb5"}, + {file = "rpds_py-0.20.1-cp312-none-win32.whl", hash = "sha256:dc73505153798c6f74854aba69cc75953888cf9866465196889c7cdd351e720c"}, + {file = "rpds_py-0.20.1-cp312-none-win_amd64.whl", hash = "sha256:8bbe951244a838a51289ee53a6bae3a07f26d4e179b96fc7ddd3301caf0518eb"}, + {file = "rpds_py-0.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:6ca91093a4a8da4afae7fe6a222c3b53ee4eef433ebfee4d54978a103435159e"}, + {file = "rpds_py-0.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b9c2fe36d1f758b28121bef29ed1dee9b7a2453e997528e7d1ac99b94892527c"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f009c69bc8c53db5dfab72ac760895dc1f2bc1b62ab7408b253c8d1ec52459fc"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6740a3e8d43a32629bb9b009017ea5b9e713b7210ba48ac8d4cb6d99d86c8ee8"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:32b922e13d4c0080d03e7b62991ad7f5007d9cd74e239c4b16bc85ae8b70252d"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe00a9057d100e69b4ae4a094203a708d65b0f345ed546fdef86498bf5390982"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49fe9b04b6fa685bd39237d45fad89ba19e9163a1ccaa16611a812e682913496"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aa7ac11e294304e615b43f8c441fee5d40094275ed7311f3420d805fde9b07b4"}, + {file = "rpds_py-0.20.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6aa97af1558a9bef4025f8f5d8c60d712e0a3b13a2fe875511defc6ee77a1ab7"}, + {file = "rpds_py-0.20.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:483b29f6f7ffa6af845107d4efe2e3fa8fb2693de8657bc1849f674296ff6a5a"}, + {file = "rpds_py-0.20.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:37fe0f12aebb6a0e3e17bb4cd356b1286d2d18d2e93b2d39fe647138458b4bcb"}, + {file = "rpds_py-0.20.1-cp313-none-win32.whl", hash = "sha256:a624cc00ef2158e04188df5e3016385b9353638139a06fb77057b3498f794782"}, + {file = "rpds_py-0.20.1-cp313-none-win_amd64.whl", hash = "sha256:b71b8666eeea69d6363248822078c075bac6ed135faa9216aa85f295ff009b1e"}, + {file = "rpds_py-0.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:5b48e790e0355865197ad0aca8cde3d8ede347831e1959e158369eb3493d2191"}, + {file = "rpds_py-0.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3e310838a5801795207c66c73ea903deda321e6146d6f282e85fa7e3e4854804"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2249280b870e6a42c0d972339e9cc22ee98730a99cd7f2f727549af80dd5a963"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e79059d67bea28b53d255c1437b25391653263f0e69cd7dec170d778fdbca95e"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2b431c777c9653e569986ecf69ff4a5dba281cded16043d348bf9ba505486f36"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da584ff96ec95e97925174eb8237e32f626e7a1a97888cdd27ee2f1f24dd0ad8"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02a0629ec053fc013808a85178524e3cb63a61dbc35b22499870194a63578fb9"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fbf15aff64a163db29a91ed0868af181d6f68ec1a3a7d5afcfe4501252840bad"}, + {file = "rpds_py-0.20.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:07924c1b938798797d60c6308fa8ad3b3f0201802f82e4a2c41bb3fafb44cc28"}, + {file = "rpds_py-0.20.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4a5a844f68776a7715ecb30843b453f07ac89bad393431efbf7accca3ef599c1"}, + {file = "rpds_py-0.20.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:518d2ca43c358929bf08f9079b617f1c2ca6e8848f83c1225c88caeac46e6cbc"}, + {file = "rpds_py-0.20.1-cp38-none-win32.whl", hash = "sha256:3aea7eed3e55119635a74bbeb80b35e776bafccb70d97e8ff838816c124539f1"}, + {file = "rpds_py-0.20.1-cp38-none-win_amd64.whl", hash = "sha256:7dca7081e9a0c3b6490a145593f6fe3173a94197f2cb9891183ef75e9d64c425"}, + {file = "rpds_py-0.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b41b6321805c472f66990c2849e152aff7bc359eb92f781e3f606609eac877ad"}, + {file = "rpds_py-0.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a90c373ea2975519b58dece25853dbcb9779b05cc46b4819cb1917e3b3215b6"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16d4477bcb9fbbd7b5b0e4a5d9b493e42026c0bf1f06f723a9353f5153e75d30"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:84b8382a90539910b53a6307f7c35697bc7e6ffb25d9c1d4e998a13e842a5e83"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4888e117dd41b9d34194d9e31631af70d3d526efc363085e3089ab1a62c32ed1"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5265505b3d61a0f56618c9b941dc54dc334dc6e660f1592d112cd103d914a6db"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e75ba609dba23f2c95b776efb9dd3f0b78a76a151e96f96cc5b6b1b0004de66f"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1791ff70bc975b098fe6ecf04356a10e9e2bd7dc21fa7351c1742fdeb9b4966f"}, + {file = "rpds_py-0.20.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d126b52e4a473d40232ec2052a8b232270ed1f8c9571aaf33f73a14cc298c24f"}, + {file = "rpds_py-0.20.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c14937af98c4cc362a1d4374806204dd51b1e12dded1ae30645c298e5a5c4cb1"}, + {file = "rpds_py-0.20.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3d089d0b88996df627693639d123c8158cff41c0651f646cd8fd292c7da90eaf"}, + {file = "rpds_py-0.20.1-cp39-none-win32.whl", hash = "sha256:653647b8838cf83b2e7e6a0364f49af96deec64d2a6578324db58380cff82aca"}, + {file = "rpds_py-0.20.1-cp39-none-win_amd64.whl", hash = "sha256:fa41a64ac5b08b292906e248549ab48b69c5428f3987b09689ab2441f267d04d"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7a07ced2b22f0cf0b55a6a510078174c31b6d8544f3bc00c2bcee52b3d613f74"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:68cb0a499f2c4a088fd2f521453e22ed3527154136a855c62e148b7883b99f9a"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa3060d885657abc549b2a0f8e1b79699290e5d83845141717c6c90c2df38311"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:95f3b65d2392e1c5cec27cff08fdc0080270d5a1a4b2ea1d51d5f4a2620ff08d"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2cc3712a4b0b76a1d45a9302dd2f53ff339614b1c29603a911318f2357b04dd2"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d4eea0761e37485c9b81400437adb11c40e13ef513375bbd6973e34100aeb06"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f5179583d7a6cdb981151dd349786cbc318bab54963a192692d945dd3f6435d"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fbb0ffc754490aff6dabbf28064be47f0f9ca0b9755976f945214965b3ace7e"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:a94e52537a0e0a85429eda9e49f272ada715506d3b2431f64b8a3e34eb5f3e75"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:92b68b79c0da2a980b1c4197e56ac3dd0c8a149b4603747c4378914a68706979"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:93da1d3db08a827eda74356f9f58884adb254e59b6664f64cc04cdff2cc19b0d"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:754bbed1a4ca48479e9d4182a561d001bbf81543876cdded6f695ec3d465846b"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ca449520e7484534a2a44faf629362cae62b660601432d04c482283c47eaebab"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:9c4cb04a16b0f199a8c9bf807269b2f63b7b5b11425e4a6bd44bd6961d28282c"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb63804105143c7e24cee7db89e37cb3f3941f8e80c4379a0b355c52a52b6780"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:55cd1fa4ecfa6d9f14fbd97ac24803e6f73e897c738f771a9fe038f2f11ff07c"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f8f741b6292c86059ed175d80eefa80997125b7c478fb8769fd9ac8943a16c0"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fc212779bf8411667234b3cdd34d53de6c2b8b8b958e1e12cb473a5f367c338"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ad56edabcdb428c2e33bbf24f255fe2b43253b7d13a2cdbf05de955217313e6"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0a3a1e9ee9728b2c1734f65d6a1d376c6f2f6fdcc13bb007a08cc4b1ff576dc5"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:e13de156137b7095442b288e72f33503a469aa1980ed856b43c353ac86390519"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:07f59760ef99f31422c49038964b31c4dfcfeb5d2384ebfc71058a7c9adae2d2"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:59240685e7da61fb78f65a9f07f8108e36a83317c53f7b276b4175dc44151684"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:83cba698cfb3c2c5a7c3c6bac12fe6c6a51aae69513726be6411076185a8b24a"}, + {file = "rpds_py-0.20.1.tar.gz", hash = "sha256:e1791c4aabd117653530dccd24108fa03cc6baf21f58b950d0a73c3b3b29a350"}, ] [[package]] From afd7e58a532911066206654dfa4f4713ab417f08 Mon Sep 17 00:00:00 2001 From: Om Bhardwaj <115864495+ombhardwajj@users.noreply.github.com> Date: Tue, 5 Nov 2024 22:09:16 +0530 Subject: [PATCH 734/808] source-mailosaur contribution from ombhardwajj (#47379) Co-authored-by: Marcos Marx --- .../connectors/source-mailosaur/README.md | 35 ++ .../acceptance-test-config.yml | 17 + .../connectors/source-mailosaur/icon.svg | 10 + .../connectors/source-mailosaur/manifest.yaml | 319 ++++++++++++++++++ .../connectors/source-mailosaur/metadata.yaml | 35 ++ docs/integrations/sources/mailosaur.md | 29 ++ 6 files changed, 445 insertions(+) create mode 100644 airbyte-integrations/connectors/source-mailosaur/README.md create mode 100644 airbyte-integrations/connectors/source-mailosaur/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-mailosaur/icon.svg create mode 100644 airbyte-integrations/connectors/source-mailosaur/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-mailosaur/metadata.yaml create mode 100644 docs/integrations/sources/mailosaur.md diff --git a/airbyte-integrations/connectors/source-mailosaur/README.md b/airbyte-integrations/connectors/source-mailosaur/README.md new file mode 100644 index 000000000000..421743479ec3 --- /dev/null +++ b/airbyte-integrations/connectors/source-mailosaur/README.md @@ -0,0 +1,35 @@ +# Mailosaur +This directory contains the manifest-only connector for `source-mailosaur`. + +Mailosaur is a communication-testing platform . +With this connector we can easily fetch data from messages , servers and transactions streams! +Docs : https://mailosaur.com/docs + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-mailosaur:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-mailosaur build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-mailosaur test +``` + diff --git a/airbyte-integrations/connectors/source-mailosaur/acceptance-test-config.yml b/airbyte-integrations/connectors/source-mailosaur/acceptance-test-config.yml new file mode 100644 index 000000000000..4f5e243e8157 --- /dev/null +++ b/airbyte-integrations/connectors/source-mailosaur/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-mailosaur:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-mailosaur/icon.svg b/airbyte-integrations/connectors/source-mailosaur/icon.svg new file mode 100644 index 000000000000..30f7e2a68984 --- /dev/null +++ b/airbyte-integrations/connectors/source-mailosaur/icon.svg @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/airbyte-integrations/connectors/source-mailosaur/manifest.yaml b/airbyte-integrations/connectors/source-mailosaur/manifest.yaml new file mode 100644 index 000000000000..e5d76eba8770 --- /dev/null +++ b/airbyte-integrations/connectors/source-mailosaur/manifest.yaml @@ -0,0 +1,319 @@ +version: 6.1.0 + +type: DeclarativeSource + +description: >- + Mailosaur is a communication-testing platform . + + With this connector we can easily fetch data from messages , servers and + transactions streams! + + Docs : https://mailosaur.com/docs + +check: + type: CheckStream + stream_names: + - messages + +definitions: + streams: + messages: + type: DeclarativeStream + name: messages + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: messages + http_method: GET + request_parameters: + server: "{{ config['serverid'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: id + stream: + $ref: "#/definitions/streams/servers" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/messages" + servers: + type: DeclarativeStream + name: servers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: servers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/servers" + usage_transactions: + type: DeclarativeStream + name: usage_transactions + primary_key: + - timestamp + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: usage/transactions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/usage_transactions" + base_requester: + type: HttpRequester + url_base: https://mailosaur.com/api/ + authenticator: + type: BasicHttpAuthenticator + password: "{{ config[\"password\"] }}" + username: "{{ config[\"username\"] }}" + +streams: + - $ref: "#/definitions/streams/messages" + - $ref: "#/definitions/streams/servers" + - $ref: "#/definitions/streams/usage_transactions" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - username + properties: + username: + type: string + description: Enter "api" here + order: 0 + title: Username + password: + type: string + description: Enter your api key here + order: 1 + title: Password + always_show: true + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + messages: true + servers: true + usage_transactions: true + testedStreams: + messages: + streamHash: 43790685c6e14b63e2a804a1c3cb127b4ee0c979 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + servers: + streamHash: 116974be4035e4e5b2430535df86d0705e77822b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + usage_transactions: + streamHash: 78e92edef1f21ffc93b2de6d99fd562fabb2788b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: {} + +schemas: + messages: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + attachments: + type: + - number + - "null" + bcc: + type: + - array + - "null" + cc: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + name: + type: + - string + - "null" + from: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + name: + type: + - string + - "null" + id: + type: string + read: + type: + - boolean + - "null" + received: + type: + - string + - "null" + server: + type: + - string + - "null" + subject: + type: + - string + - "null" + summary: + type: + - string + - "null" + to: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + name: + type: + - string + - "null" + required: + - id + servers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + customId: + type: + - string + - "null" + domain: + type: + - string + - "null" + id: + type: string + messages: + type: + - number + - "null" + name: + type: + - string + - "null" + restricted: + type: + - boolean + - "null" + retention: + type: + - number + - "null" + users: + type: + - array + - "null" + required: + - id + usage_transactions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + email: + type: + - number + - "null" + emailSent: + type: + - number + - "null" + previews: + type: + - number + - "null" + screenshots: + type: + - number + - "null" + sms: + type: + - number + - "null" + smsSent: + type: + - number + - "null" + timestamp: + type: string + required: + - timestamp diff --git a/airbyte-integrations/connectors/source-mailosaur/metadata.yaml b/airbyte-integrations/connectors/source-mailosaur/metadata.yaml new file mode 100644 index 000000000000..2c4e295c865b --- /dev/null +++ b/airbyte-integrations/connectors/source-mailosaur/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "mailosaur.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-mailosaur + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.0@sha256:3ac88000d74db5f9d8dcb004299b917a5dff5cbbc19ebccd49288266095547ca + connectorSubtype: api + connectorType: source + definitionId: 251ed5c8-a927-4fb4-ad45-75393d564f3c + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-mailosaur + githubIssueLabel: source-mailosaur + icon: icon.svg + license: MIT + name: Mailosaur + releaseDate: 2024-11-04 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/mailosaur + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/mailosaur.md b/docs/integrations/sources/mailosaur.md new file mode 100644 index 000000000000..4c2c8e6ad642 --- /dev/null +++ b/docs/integrations/sources/mailosaur.md @@ -0,0 +1,29 @@ +# Mailosaur +Mailosaur is a communication-testing platform . +With this connector we can easily fetch data from messages , servers and transactions streams! +Docs : https://mailosaur.com/docs + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `username` | `string` | Username. Enter API here | | +| `password` | `string` | Password. Enter your API Key here | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| Messages | id | No pagination | ✅ | ❌ | +| Servers | id | No pagination | ✅ | ❌ | +| Transactions | timestamp | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-11-04 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | + +
From 4a415ed3a34fb209cb49416dfb2141d58d9992b0 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Tue, 5 Nov 2024 22:32:08 +0530 Subject: [PATCH 735/808] source-ubidots contribution from bishalbera (#47346) Co-authored-by: Marcos Marx --- .../connectors/source-ubidots/README.md | 33 + .../source-ubidots/acceptance-test-config.yml | 17 + .../connectors/source-ubidots/icon.svg | 149 +++ .../connectors/source-ubidots/manifest.yaml | 1082 +++++++++++++++++ .../connectors/source-ubidots/metadata.yaml | 35 + docs/integrations/sources/ubidots.md | 29 + 6 files changed, 1345 insertions(+) create mode 100644 airbyte-integrations/connectors/source-ubidots/README.md create mode 100644 airbyte-integrations/connectors/source-ubidots/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-ubidots/icon.svg create mode 100644 airbyte-integrations/connectors/source-ubidots/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-ubidots/metadata.yaml create mode 100644 docs/integrations/sources/ubidots.md diff --git a/airbyte-integrations/connectors/source-ubidots/README.md b/airbyte-integrations/connectors/source-ubidots/README.md new file mode 100644 index 000000000000..38cb0e07617e --- /dev/null +++ b/airbyte-integrations/connectors/source-ubidots/README.md @@ -0,0 +1,33 @@ +# Ubidots +This directory contains the manifest-only connector for `source-ubidots`. + +The Ubidots Connector facilitates easy integration with the Ubidots IoT platform, enabling users to fetch, sync, and analyze real-time sensor data. This connector helps streamline IoT workflows by connecting Ubidots with other tools for seamless data processing and insights. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-ubidots:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-ubidots build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-ubidots test +``` + diff --git a/airbyte-integrations/connectors/source-ubidots/acceptance-test-config.yml b/airbyte-integrations/connectors/source-ubidots/acceptance-test-config.yml new file mode 100644 index 000000000000..f78e0be71fe8 --- /dev/null +++ b/airbyte-integrations/connectors/source-ubidots/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-ubidots:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-ubidots/icon.svg b/airbyte-integrations/connectors/source-ubidots/icon.svg new file mode 100644 index 000000000000..c07174f92fe2 --- /dev/null +++ b/airbyte-integrations/connectors/source-ubidots/icon.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-ubidots/manifest.yaml b/airbyte-integrations/connectors/source-ubidots/manifest.yaml new file mode 100644 index 000000000000..02b4e0c87893 --- /dev/null +++ b/airbyte-integrations/connectors/source-ubidots/manifest.yaml @@ -0,0 +1,1082 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + The Ubidots Connector facilitates easy integration with the Ubidots IoT + platform, enabling users to fetch, sync, and analyze real-time sensor data. + This connector helps streamline IoT workflows by connecting Ubidots with other + tools for seamless data processing and insights. + +check: + type: CheckStream + stream_names: + - devices + +definitions: + streams: + devices: + type: DeclarativeStream + name: devices + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2.0/devices/ + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next | regex_search(\"page=(\\d+)\") }}" + stop_condition: "{{ response.next is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/devices" + events: + type: DeclarativeStream + name: events + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2.0/events/ + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next | regex_search(\"page=(\\d+)\") }}" + stop_condition: "{{ response.next is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/events" + dashboards: + type: DeclarativeStream + name: dashboards + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2.0/dashboards/ + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.next | regex_search(\"page=(\\d+)\") }}" + stop_condition: "{{ response.next is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/dashboards" + variables: + type: DeclarativeStream + name: variables + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2.0/variables/ + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.next | regex_search(\"page=(\\d+)\") }}" + stop_condition: "{{ response.next is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/variables" + device_groups: + type: DeclarativeStream + name: device_groups + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2.0/device_groups/ + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.next | regex_search(\"page=(\\d+)\") }}" + stop_condition: "{{ response.next is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/device_groups" + device_types: + type: DeclarativeStream + name: device_types + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2.0/device_types/ + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.next | regex_search(\"page=(\\d+)\") }}" + stop_condition: "{{ response.next is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/device_types" + base_requester: + type: HttpRequester + url_base: https://industrial.api.ubidots.com + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_token\"] }}" + inject_into: + type: RequestOption + field_name: X-Auth-Token + inject_into: header + +streams: + - $ref: "#/definitions/streams/devices" + - $ref: "#/definitions/streams/events" + - $ref: "#/definitions/streams/dashboards" + - $ref: "#/definitions/streams/variables" + - $ref: "#/definitions/streams/device_groups" + - $ref: "#/definitions/streams/device_types" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_token + properties: + api_token: + type: string + description: >- + API token to use for authentication. Obtain it from your Ubidots + account. + name: api_token + order: 0 + title: API Token + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + devices: true + events: true + dashboards: true + variables: true + device_groups: true + device_types: true + testedStreams: + devices: + streamHash: 06eeff18f7efcbef9a6e9bed6be6d1b4b53effbf + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + events: + streamHash: 6ea9b8b12ca41339f2b08b16e392131bf751dc9f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + dashboards: + streamHash: bebeb0bbd2ee18ce571f7d72b25fe51beae34e6f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + variables: + streamHash: 71b9f4fe4b5d3769183168758938c4c8d6a7a28d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + device_groups: + streamHash: 01a7589941aef02911e882e36fbd7c6efa79d8ee + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + device_types: + streamHash: 569cd7a935ee204a3375d2552b89a471d4412236 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://docs.ubidots.com/reference/authentication + +schemas: + devices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + createdAt: + type: + - string + - "null" + id: + type: string + isActive: + type: + - boolean + - "null" + label: + type: + - string + - "null" + lastActivity: + type: + - number + - "null" + name: + type: + - string + - "null" + properties: + type: + - object + - "null" + properties: + _color: + type: + - string + - "null" + _icon: + type: + - string + - "null" + _location_fixed: + type: + - object + - "null" + properties: + lat: + type: + - number + - "null" + lng: + type: + - number + - "null" + _location_type: + type: + - string + - "null" + tags: + type: + - array + - "null" + url: + type: + - string + - "null" + variables: + type: + - string + - "null" + variablesCount: + type: + - number + - "null" + required: + - id + events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + actions: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + back_to_normal: + type: + - boolean + - "null" + data: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + context: + type: + - object + - "null" + value: + type: + - string + - "null" + variables: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + idGroupAction: + type: + - string + - "null" + name: + type: + - string + - "null" + activeDates: + type: + - object + - "null" + properties: + dates: + type: + - array + - "null" + items: + type: + - array + - "null" + items: + type: + - array + - "null" + items: + type: + - string + - "null" + timezone: + type: + - string + - "null" + createdAt: + type: + - string + - "null" + id: + type: string + isActive: + type: + - boolean + - "null" + isGlobalEvent: + type: + - boolean + - "null" + label: + type: + - string + - "null" + name: + type: + - string + - "null" + tags: + type: + - array + - "null" + triggers: + type: + - array + - "null" + items: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + condition: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + delay: + type: + - number + - "null" + operator: + type: + - string + - "null" + value: + type: + - number + - "null" + entity: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + operator: + type: + - string + - "null" + value: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + url: + type: + - string + - "null" + required: + - id + dashboards: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + context: + type: + - object + - "null" + properties: + __customStyle: + type: + - object + - "null" + properties: + contextBar: + type: + - object + - "null" + properties: + backgroundColor: + type: + - string + - "null" + color: + type: + - string + - "null" + fontSize: + type: + - number + - "null" + title: + type: + - object + - "null" + properties: + fontSize: + type: + - number + - "null" + dashboard: + type: + - object + - "null" + properties: + backgroundColor: + type: + - string + - "null" + color: + type: + - string + - "null" + widget: + type: + - object + - "null" + properties: + backgroundColor: + type: + - string + - "null" + borderColor: + type: + - string + - "null" + borderRadius: + type: + - number + - "null" + borderStyle: + type: + - string + - "null" + borderWidth: + type: + - number + - "null" + boxShadow: + type: + - string + - "null" + color: + type: + - string + - "null" + fontSize: + type: + - number + - "null" + header: + type: + - object + - "null" + properties: + backgroundColor: + type: + - string + - "null" + borderColor: + type: + - string + - "null" + borderStyle: + type: + - string + - "null" + borderWidth: + type: + - number + - "null" + color: + type: + - string + - "null" + alignment: + type: + - string + - "null" + dashboardType: + type: + - string + - "null" + defaultDevice: + type: + - string + - "null" + deviceFilterType: + type: + - string + - "null" + displayName: + type: + - string + - "null" + filterSettings: + type: + - object + - "null" + floatingWidgets: + type: + - boolean + - "null" + hasBackground: + type: + - boolean + - "null" + hideDatePicker: + type: + - boolean + - "null" + hideHeaderFooterWidgets: + type: + - boolean + - "null" + imageSettings: + type: + - object + - "null" + properties: + isUrlValue: + type: + - boolean + - "null" + isDynamic: + type: + - boolean + - "null" + prospector_is_filters_last_value_alt: + type: + - boolean + - "null" + size: + type: + - object + - "null" + properties: + width: + type: + - string + - "null" + temporalxaxis: + type: + - string + - "null" + timestampFormat: + type: + - string + - "null" + widgetHorizontalSpacing: + type: + - string + - "null" + widgetVerticalSpacing: + type: + - string + - "null" + widgetsOpacity: + type: + - number + - "null" + createdAt: + type: + - string + - "null" + id: + type: string + isActive: + type: + - boolean + - "null" + isEditable: + type: + - boolean + - "null" + label: + type: + - string + - "null" + name: + type: + - string + - "null" + order: + type: + - number + - "null" + tags: + type: + - array + - "null" + timeframe: + type: + - object + - "null" + properties: + endDate: + type: + - string + - "null" + startDate: + type: + - string + - "null" + url: + type: + - string + - "null" + widgets: + type: + - string + - "null" + widgetsNumber: + type: + - number + - "null" + required: + - id + variables: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + createdAt: + type: + - string + - "null" + device: + type: + - object + - "null" + properties: + createdAt: + type: + - string + - "null" + id: + type: + - string + - "null" + label: + type: + - string + - "null" + name: + type: + - string + - "null" + url: + type: + - string + - "null" + id: + type: string + label: + type: + - string + - "null" + lastActivity: + type: + - number + - "null" + lastValue: + type: + - object + - "null" + properties: + context: + type: + - object + - "null" + created_at: + type: + - number + - "null" + timestamp: + type: + - number + - "null" + value: + type: + - number + - "null" + name: + type: + - string + - "null" + properties: + type: + - object + - "null" + properties: + _previous_variable_label: + type: + - string + - "null" + syntheticExpression: + type: + - string + - "null" + tags: + type: + - array + - "null" + url: + type: + - string + - "null" + valuesUrl: + type: + - string + - "null" + required: + - id + device_groups: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + createdAt: + type: + - string + - "null" + devices: + type: + - string + - "null" + devicesCount: + type: + - number + - "null" + id: + type: string + label: + type: + - string + - "null" + name: + type: + - string + - "null" + tags: + type: + - array + - "null" + url: + type: + - string + - "null" + required: + - id + device_types: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + createdAt: + type: + - string + - "null" + deviceColor: + type: + - string + - "null" + deviceIcon: + type: + - string + - "null" + id: + type: string + label: + type: + - string + - "null" + name: + type: + - string + - "null" + properties: + type: + - array + - "null" + tags: + type: + - array + - "null" + tasks: + type: + - array + - "null" + url: + type: + - string + - "null" + variableColor: + type: + - string + - "null" + variables: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - number + - "null" + description: + type: + - string + - "null" + label: + type: + - string + - "null" + name: + type: + - string + - "null" + properties: + type: + - object + - "null" + properties: + _color: + type: + - string + - "null" + _icon: + type: + - string + - "null" + hidden: + type: + - boolean + - "null" + isLocationVariable: + type: + - boolean + - "null" + unit: + type: + - string + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-ubidots/metadata.yaml b/airbyte-integrations/connectors/source-ubidots/metadata.yaml new file mode 100644 index 000000000000..8b004a7652a5 --- /dev/null +++ b/airbyte-integrations/connectors/source-ubidots/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "industrial.api.ubidots.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-ubidots + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 8614fab8-aa3e-4dbe-8728-6d6c8a1d3514 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-ubidots + githubIssueLabel: source-ubidots + icon: icon.svg + license: MIT + name: Ubidots + releaseDate: 2024-10-24 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/ubidots + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/ubidots.md b/docs/integrations/sources/ubidots.md new file mode 100644 index 000000000000..a0f4f0692727 --- /dev/null +++ b/docs/integrations/sources/ubidots.md @@ -0,0 +1,29 @@ +# Ubidots +The Ubidots Connector facilitates easy integration with the Ubidots IoT platform, enabling users to fetch, sync, and analyze real-time sensor data. This connector helps streamline IoT workflows by connecting Ubidots with other tools for seamless data processing and insights. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_token` | `string` | API Token. API token to use for authentication. Obtain it from your Ubidots account. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| devices | id | DefaultPaginator | ✅ | ❌ | +| events | id | DefaultPaginator | ✅ | ❌ | +| dashboards | id | DefaultPaginator | ✅ | ❌ | +| variables | id | DefaultPaginator | ✅ | ❌ | +| device_groups | id | DefaultPaginator | ✅ | ❌ | +| device_types | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-24 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From c4a692138517a96a0d3040c9fb2e425c66467258 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Tue, 5 Nov 2024 22:49:46 +0530 Subject: [PATCH 736/808] source-box contribution from bishalbera (#47345) Co-authored-by: Marcos Marx --- .../connectors/source-box/README.md | 33 + .../source-box/acceptance-test-config.yml | 17 + .../connectors/source-box/icon.svg | 1 + .../connectors/source-box/manifest.yaml | 2720 +++++++++++++++++ .../connectors/source-box/metadata.yaml | 35 + docs/integrations/sources/box.md | 43 + 6 files changed, 2849 insertions(+) create mode 100644 airbyte-integrations/connectors/source-box/README.md create mode 100644 airbyte-integrations/connectors/source-box/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-box/icon.svg create mode 100644 airbyte-integrations/connectors/source-box/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-box/metadata.yaml create mode 100644 docs/integrations/sources/box.md diff --git a/airbyte-integrations/connectors/source-box/README.md b/airbyte-integrations/connectors/source-box/README.md new file mode 100644 index 000000000000..802f6d72f5f5 --- /dev/null +++ b/airbyte-integrations/connectors/source-box/README.md @@ -0,0 +1,33 @@ +# Box +This directory contains the manifest-only connector for `source-box`. + +The Box Connector enables seamless data extraction from Box, allowing users to list, access, and synchronize files or folders from their Box cloud storage. This connector helps automate workflows by integrating Box data with other tools, ensuring efficient file management and analysis + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-box:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-box build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-box test +``` + diff --git a/airbyte-integrations/connectors/source-box/acceptance-test-config.yml b/airbyte-integrations/connectors/source-box/acceptance-test-config.yml new file mode 100644 index 000000000000..169db29c4727 --- /dev/null +++ b/airbyte-integrations/connectors/source-box/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-box:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-box/icon.svg b/airbyte-integrations/connectors/source-box/icon.svg new file mode 100644 index 000000000000..8a81fd5c1463 --- /dev/null +++ b/airbyte-integrations/connectors/source-box/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-box/manifest.yaml b/airbyte-integrations/connectors/source-box/manifest.yaml new file mode 100644 index 000000000000..8bbe0d1ea74c --- /dev/null +++ b/airbyte-integrations/connectors/source-box/manifest.yaml @@ -0,0 +1,2720 @@ +version: 5.16.0 + +type: DeclarativeSource + +description: >- + The Box Connector enables seamless data extraction from Box, allowing users to + list, access, and synchronize files or folders from their Box cloud storage. + This connector helps automate workflows by integrating Box data with other + tools, ensuring efficient file management and analysis + +check: + type: CheckStream + stream_names: + - events + +definitions: + streams: + events: + type: DeclarativeStream + name: events + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/events + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: stream_position + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('next_stream_position') }}" + stop_condition: "{{ response.chunk_size == 0 }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/events" + sign_templates: + type: DeclarativeStream + name: sign_templates + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/sign_templates + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: marker + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get(\"next_marker\") }}" + stop_condition: "{{ response.get(\"next_marker\") is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sign_templates" + collections: + type: DeclarativeStream + name: collections + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/collections + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/collections" + collection_items: + type: DeclarativeStream + name: collection_items + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/collections/{{ stream_partition.collection }}/items + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: collection + stream: + $ref: "#/definitions/streams/collections" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/collection_items" + sign_request: + type: DeclarativeStream + name: sign_request + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/sign_requests + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: marker + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('next_marker') }}" + stop_condition: "{{ response.get('next_marker') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sign_request" + admin_logs: + type: DeclarativeStream + name: admin_logs + primary_key: + - event_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/events?stream_type=admin_logs + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: stream_position + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('next_stream_position', '') }}" + stop_condition: "{{ response.chunk_size == 0 }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/admin_logs" + files: + type: DeclarativeStream + name: files + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/folders/0/items + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + record_filter: + type: RecordFilter + condition: "{{ record['type'] == \"file\"}}" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/files" + file_collaborations: + type: DeclarativeStream + name: file_collaborations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/files/{{ stream_slice['file_id'] }}/collaborations + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: marker + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('next_marker') }}" + stop_condition: "{{ response.get('next_marker') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: file_id + stream: + $ref: "#/definitions/streams/files" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/file_collaborations" + folder_collaborations: + type: DeclarativeStream + name: folder_collaborations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/folders/{{ stream_slice['folder_id'] }}/collaborations + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: marker + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('next_marker') }}" + stop_condition: "{{ response.get('next_marker') is none }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: folder_id + stream: + $ref: "#/definitions/streams/folders" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/folder_collaborations" + file_comments: + type: DeclarativeStream + name: file_comments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/files/{{ stream_slice['file_id'] }}/comments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: file_id + stream: + $ref: "#/definitions/streams/files" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/file_comments" + recent_items: + type: DeclarativeStream + name: recent_items + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/recent_items + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + - "*" + - item + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: marker + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: CursorPagination + page_size: 100 + cursor_value: "{{ response.get('next_marker') }}" + stop_condition: "{{ response.get('next_marker') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/recent_items" + file_tasks: + type: DeclarativeStream + name: file_tasks + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/files/{{ stream_slice['file_id'] }}/tasks + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + - "*" + - task_assignment_collection + - entries + - "*" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: file_id + stream: + $ref: "#/definitions/streams/files" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/file_tasks" + trashed_items: + type: DeclarativeStream + name: trashed_items + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/folders/trash/items + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/trashed_items" + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + folders: + type: DeclarativeStream + name: folders + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /2.0/folders/0/items + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - entries + record_filter: + type: RecordFilter + condition: "{{ record['type'] == \"folder\"}}" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/folders" + base_requester: + type: HttpRequester + url_base: https://api.box.com + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id\"] }}" + grant_type: client_credentials + client_secret: "{{ config[\"client_secret\"] }}" + expires_in_name: expires_in + access_token_name: access_token + refresh_request_body: + box_subject_id: "{{ config['user'] }}" + box_subject_type: user + token_refresh_endpoint: https://api.box.com/oauth2/token + +streams: + - $ref: "#/definitions/streams/events" + - $ref: "#/definitions/streams/sign_templates" + - $ref: "#/definitions/streams/collections" + - $ref: "#/definitions/streams/collection_items" + - $ref: "#/definitions/streams/sign_request" + - $ref: "#/definitions/streams/admin_logs" + - $ref: "#/definitions/streams/files" + - $ref: "#/definitions/streams/file_collaborations" + - $ref: "#/definitions/streams/folder_collaborations" + - $ref: "#/definitions/streams/file_comments" + - $ref: "#/definitions/streams/recent_items" + - $ref: "#/definitions/streams/file_tasks" + - $ref: "#/definitions/streams/trashed_items" + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/folders" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id + - client_secret + - user + properties: + client_id: + type: string + name: client_id + order: 0 + title: OAuth Client ID + airbyte_secret: true + client_secret: + type: string + name: client_secret + order: 1 + title: OAuth Client Secret + airbyte_secret: true + user: + type: number + order: 2 + title: User + additionalProperties: true + +metadata: + autoImportSchema: + events: true + sign_templates: true + collections: true + collection_items: true + sign_request: true + admin_logs: true + files: true + file_collaborations: true + folder_collaborations: true + file_comments: true + recent_items: true + file_tasks: true + trashed_items: true + users: true + folders: true + testedStreams: + events: + streamHash: 5f6a527cfa95216243803a32516a01f06260bb01 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + sign_templates: + streamHash: 4ab2165704ff19049bf1ecc510154302f122e5ba + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + collections: + streamHash: 99a1e98e0e5e1f0e34c55e3c067158efc139614d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + collection_items: + streamHash: 166e60e6b8bccc1e6854a88f7ad29fe76f08a83a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + sign_request: + streamHash: a75dbf901501cd636c8087c31ea771b4aba77d65 + hasResponse: true + responsesAreSuccessful: true + hasRecords: false + primaryKeysArePresent: true + primaryKeysAreUnique: true + admin_logs: + streamHash: d29f65619562bd57f0ab2ffde25f45fe85094fed + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + files: + streamHash: f2bddba5e78d73843ff573adddc0f5b664d98deb + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + file_collaborations: + streamHash: b57e258db538c594ace1cba278854f0702bbe926 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + folder_collaborations: + streamHash: 9154707962f8ebc5736593f901aa484ba6aa3d34 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + file_comments: + streamHash: 2711d975ffe518367db630ef6dc0c2598b5cb86d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + recent_items: + streamHash: a220c9ba1787d7da58f2d496a76a176600c800ff + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + file_tasks: + streamHash: b7cdc6e9b385a24c4f491d8b820a6924bd52070f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + trashed_items: + hasRecords: true + streamHash: 220c9d1eb25065d60d7347c9219ae6882b3bfdb4 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + users: + streamHash: 0e26a32514f04fae7185887ae41861452eb580f7 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + folders: + streamHash: e8aee8caba4e6a759ead1aa1b2b20f27f6d690de + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://developer.box.com/reference/ + +schemas: + events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + additional_details: + type: + - object + - "null" + properties: + original_item_id: + type: + - string + - "null" + original_item_name: + type: + - string + - "null" + original_item_type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + event_id: + type: + - string + - "null" + event_type: + type: + - string + - "null" + recorded_at: + type: + - string + - "null" + session_id: + type: + - string + - "null" + source: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + assigned_at: + type: + - string + - "null" + assigned_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + assigned_to: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + content_created_at: + type: + - string + - "null" + content_modified_at: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: + - string + - "null" + invite_email: + type: + - string + - "null" + is_reply_comment: + type: + - boolean + - "null" + item: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + item_status: + type: + - string + - "null" + message: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + modified_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + name: + type: + - string + - "null" + owned_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + parent: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + path_collection: + type: + - object + - "null" + properties: + entries: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + total_count: + type: + - number + - "null" + purged_at: + type: + - string + - "null" + resolution_state: + type: + - string + - "null" + role: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + size: + type: + - number + - "null" + status: + type: + - string + - "null" + synced: + type: + - boolean + - "null" + trashed_at: + type: + - string + - "null" + sign_templates: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + additional_info: + type: + - object + - "null" + properties: + non_editable: + type: + - array + - "null" + required: + type: + - object + - "null" + properties: + signers: + type: + - array + - "null" + items: + type: + - array + - "null" + items: + type: + - string + - "null" + are_email_settings_locked: + type: + - boolean + - "null" + are_fields_locked: + type: + - boolean + - "null" + are_files_locked: + type: + - boolean + - "null" + are_options_locked: + type: + - boolean + - "null" + are_recipients_locked: + type: + - boolean + - "null" + days_valid: + type: + - number + - "null" + email_message: + type: + - string + - "null" + email_subject: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + parent_folder: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + signers: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + inputs: + type: + - array + - "null" + is_in_person: + type: + - boolean + - "null" + label: + type: + - string + - "null" + order: + type: + - number + - "null" + public_id: + type: + - string + - "null" + role: + type: + - string + - "null" + source_files: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + required: + - id + collections: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + collection_type: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + required: + - id + collection_items: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + required: + - id + sign_request: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + are_reminders_enabled: + type: + - boolean + - "null" + are_text_signatures_enabled: + type: + - boolean + - "null" + id: + type: string + is_document_preparation_needed: + type: + - boolean + - "null" + is_phone_verification_required_to_view: + type: + - boolean + - "null" + name: + type: + - string + - "null" + parent_folder: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + prefill_tags: + type: + - array + - "null" + sign_files: + type: + - object + - "null" + properties: + files: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + is_ready_for_download: + type: + - boolean + - "null" + signers: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + has_viewed_document: + type: + - boolean + - "null" + inputs: + type: + - array + - "null" + is_in_person: + type: + - boolean + - "null" + login_required: + type: + - boolean + - "null" + order: + type: + - number + - "null" + role: + type: + - string + - "null" + suppress_notifications: + type: + - boolean + - "null" + verification_phone_number: + type: + - string + - "null" + source_files: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + admin_logs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + accessible_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + additional_details: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + metadata: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + operationParams: + type: + - string + - "null" + access_token_identifier: + type: + - string + - "null" + collab_id: + type: + - string + - "null" + collection: + type: + - object + - "null" + properties: + collection_id: + type: + - number + - "null" + collection_name: + type: + - string + - "null" + user: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + collection_item: + type: + - object + - "null" + properties: + collection_id: + type: + - number + - "null" + collection_name: + type: + - string + - "null" + item: + type: + - object + - "null" + properties: + file: + type: + - number + - "null" + user: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + comment_id: + type: + - number + - "null" + ekm_id: + type: + - string + - "null" + invitation_message: + type: + - string + - "null" + is_performed_by_admin: + type: + - boolean + - "null" + message: + type: + - string + - "null" + original_item_id: + type: + - string + - "null" + original_item_name: + type: + - string + - "null" + original_item_type: + type: + - string + - "null" + role: + type: + - string + - "null" + service_id: + type: + - string + - "null" + service_name: + type: + - string + - "null" + sharedLinkSettings: + type: + - object + - "null" + properties: + newCanDownload: + type: + - boolean + - "null" + newCanEdit: + type: + - boolean + - "null" + newCanPreview: + type: + - boolean + - "null" + newIsExpirationDateSet: + type: + - boolean + - "null" + newIsPasswordProtected: + type: + - boolean + - "null" + newVisibilityStatus: + type: + - string + - "null" + shared_link_id: + type: + - string + - "null" + sign_request: + type: + - object + - "null" + properties: + files: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + parent: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + ready_sign_link: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + redirection: + type: + - object + - "null" + properties: + declined_redirect_url: + type: + - string + - "null" + redirect_url: + type: + - string + - "null" + requestor: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + requestor_ip_address: + type: + - string + - "null" + sender_message: + type: + - object + - "null" + properties: + message: + type: + - string + - "null" + subject: + type: + - string + - "null" + sign_request_id: + type: + - string + - "null" + sign_request_short_id: + type: + - string + - "null" + signer: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + signer_ip_address: + type: + - string + - "null" + status: + type: + - string + - "null" + size: + type: + - number + - "null" + task: + type: + - object + - "null" + properties: + created_by: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + login: + type: + - string + - "null" + due_at: + type: + - string + - "null" + id: + type: + - number + - "null" + message: + type: + - string + - "null" + task_assignment: + type: + - object + - "null" + properties: + assigned_to: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + login: + type: + - string + - "null" + message: + type: + - string + - "null" + status: + type: + - string + - "null" + version_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + event_id: + type: string + event_type: + type: + - string + - "null" + ip_address: + type: + - string + - "null" + source: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + file_id: + type: + - string + - "null" + file_name: + type: + - string + - "null" + folder_id: + type: + - string + - "null" + folder_name: + type: + - string + - "null" + id: + type: + - string + - "null" + item_id: + type: + - string + - "null" + item_name: + type: + - string + - "null" + item_type: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + owned_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + parent: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + user_email: + type: + - string + - "null" + required: + - event_id + files: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + required: + - id + file_collaborations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + id: + type: string + invite_email: + type: + - string + - "null" + is_access_only: + type: + - boolean + - "null" + item: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + role: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + folder_collaborations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + id: + type: string + invite_email: + type: + - string + - "null" + is_access_only: + type: + - boolean + - "null" + item: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + modified_at: + type: + - string + - "null" + role: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + file_comments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + id: + type: string + is_reply_comment: + type: + - boolean + - "null" + message: + type: + - string + - "null" + required: + - id + recent_items: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + required: + - id + file_tasks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + assigned_at: + type: + - string + - "null" + assigned_to: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + login: + type: + - string + - "null" + name: + type: + - string + - "null" + id: + type: string + item: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + message: + type: + - string + - "null" + resolution_state: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + trashed_items: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + file_version: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + sha1: + type: + - string + - "null" + required: + - id + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + address: + type: + - string + - "null" + avatar_url: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: string + job_title: + type: + - string + - "null" + language: + type: + - string + - "null" + login: + type: + - string + - "null" + max_upload_size: + type: + - number + - "null" + modified_at: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + space_amount: + type: + - number + - "null" + space_used: + type: + - number + - "null" + status: + type: + - string + - "null" + timezone: + type: + - string + - "null" + required: + - id + folders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + etag: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + sequence_id: + type: + - string + - "null" + required: + - id diff --git a/airbyte-integrations/connectors/source-box/metadata.yaml b/airbyte-integrations/connectors/source-box/metadata.yaml new file mode 100644 index 000000000000..0d60fc13ef96 --- /dev/null +++ b/airbyte-integrations/connectors/source-box/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.box.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-box + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 3eab5d94-2e12-4bca-ab0c-3af869b2dcd8 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-box + githubIssueLabel: source-box + icon: icon.svg + license: MIT + name: Box + releaseDate: 2024-10-24 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/box + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/box.md b/docs/integrations/sources/box.md new file mode 100644 index 000000000000..612030c4f72c --- /dev/null +++ b/docs/integrations/sources/box.md @@ -0,0 +1,43 @@ +# Box +The Box Connector enables seamless data extraction from Box, allowing users to list, access, and synchronize files or folders from their Box cloud storage. This connector helps automate workflows by integrating Box data with other tools, ensuring efficient file management and analysis + +## Authentication +Follow [this](https://developer.box.com/guides/authentication/client-credentials/) guide to complete authentication. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `client_id` | `string` | OAuth Client ID. | | +| `client_secret` | `string` | OAuth Client Secret. | | +| `user` | `number` | User. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| events | | DefaultPaginator | ✅ | ❌ | +| sign_templates | id | DefaultPaginator | ✅ | ❌ | +| collections | id | DefaultPaginator | ✅ | ❌ | +| collection_items | id | DefaultPaginator | ✅ | ❌ | +| sign_request | id | DefaultPaginator | ✅ | ❌ | +| admin_logs | event_id | DefaultPaginator | ✅ | ❌ | +| files | id | DefaultPaginator | ✅ | ❌ | +| file_collaborations | id | DefaultPaginator | ✅ | ❌ | +| file_comments | id | DefaultPaginator | ✅ | ❌ | +| file_tasks | id | No pagination | ✅ | ❌ | +| folders | id | DefaultPaginator | ✅ | ❌ | +| folder_collaborations | id | DefaultPaginator | ✅ | ❌ | +| recent_items | id | DefaultPaginator | ✅ | ❌ | +| trashed_items | id | DefaultPaginator | ✅ | ❌ | +| users | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-24 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From e83f2f114821562dcde1a1e29e500b1d6e081716 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Tue, 5 Nov 2024 10:01:05 -0800 Subject: [PATCH 737/808] Bulk load CDK: Always wait for flush, even on failure (#48139) --- .../task/DestinationTaskExceptionHandler.kt | 10 +++-- .../load/task/DestinationTaskScopeProvider.kt | 11 ++++++ .../load/task/internal/InputConsumerTask.kt | 4 +- .../TimedForcedCheckpointFlushTask.kt | 4 +- .../DestinationTaskExceptionHandlerTest.kt | 33 ++++++++++++++--- .../BasicFunctionalityIntegrationTest.kt | 37 +++++++------------ .../destination/s3_v2/S3V2WriteTest.kt | 1 + 7 files changed, 63 insertions(+), 37 deletions(-) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/DestinationTaskExceptionHandler.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/DestinationTaskExceptionHandler.kt index f2063ae47308..c70ceedf3c1b 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/DestinationTaskExceptionHandler.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/DestinationTaskExceptionHandler.kt @@ -82,8 +82,9 @@ T : ScopedTask { "Task $innerTask run after sync has succeeded. This should not happen." ) } - log.info { "Sync task $innerTask skipped because sync has already failed." } - return + log.info { + "Sync task $innerTask running after has already failed (this is not an error)." + } } try { @@ -118,8 +119,9 @@ T : ScopedTask { "Task $innerTask run after its stream ${stream.descriptor} has succeeded. This should not happen." ) } - log.info { "Stream task $innerTask skipped because stream has already failed." } - return + log.info { + "Stream task $innerTask running after stream has already failed (this is not an error)." + } } try { diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/DestinationTaskScopeProvider.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/DestinationTaskScopeProvider.kt index 9c8965f1a29e..c165b5e32616 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/DestinationTaskScopeProvider.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/DestinationTaskScopeProvider.kt @@ -42,6 +42,12 @@ interface InternalScope : ScopedTask interface ImplementorScope : ScopedTask +/** + * Some tasks should be immediately cancelled upon any failure (for example, reading from stdin, the + * every-15-minutes flush). Those tasks should be placed into the fail-fast scope. + */ +interface KillableScope : ScopedTask + @Singleton @Secondary class DestinationTaskScopeProvider(config: DestinationConfiguration) : @@ -69,11 +75,14 @@ class DestinationTaskScopeProvider(config: DestinationConfiguration) : .asCoroutineDispatcher() ) + private val failFastScope = ControlScope("input", Job(), Dispatchers.IO) + override suspend fun launch(task: WrappedTask) { val scope = when (task.innerTask) { is InternalScope -> internalScope is ImplementorScope -> implementorScope + is KillableScope -> failFastScope } scope.scope.launch { var nJobs = scope.runningJobs.incrementAndGet() @@ -115,6 +124,8 @@ class DestinationTaskScopeProvider(config: DestinationConfiguration) : override suspend fun kill() { log.info { "Killing task scopes" } + // Terminate tasks which should be immediately terminated + failFastScope.job.cancel() // Give the implementor tasks a chance to fail gracefully withTimeoutOrNull(timeoutMs) { diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/internal/InputConsumerTask.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/internal/InputConsumerTask.kt index 268ae746e7a6..9484e163caa2 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/internal/InputConsumerTask.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/internal/InputConsumerTask.kt @@ -29,7 +29,7 @@ import io.airbyte.cdk.load.message.Undefined import io.airbyte.cdk.load.state.MemoryManager import io.airbyte.cdk.load.state.Reserved import io.airbyte.cdk.load.state.SyncManager -import io.airbyte.cdk.load.task.InternalScope +import io.airbyte.cdk.load.task.KillableScope import io.airbyte.cdk.load.task.SyncLevel import io.airbyte.cdk.load.util.use import io.github.oshai.kotlinlogging.KotlinLogging @@ -39,7 +39,7 @@ import java.io.InputStream import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.FlowCollector -interface InputConsumerTask : SyncLevel, InternalScope +interface InputConsumerTask : SyncLevel, KillableScope /** * Routes @[DestinationStreamAffinedMessage]s by stream to the appropriate channel and @ diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/internal/TimedForcedCheckpointFlushTask.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/internal/TimedForcedCheckpointFlushTask.kt index ff3053c80f4e..358934dc153f 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/internal/TimedForcedCheckpointFlushTask.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/task/internal/TimedForcedCheckpointFlushTask.kt @@ -10,14 +10,14 @@ import io.airbyte.cdk.load.file.TimeProvider import io.airbyte.cdk.load.message.ChannelMessageQueue import io.airbyte.cdk.load.message.QueueWriter import io.airbyte.cdk.load.state.CheckpointManager -import io.airbyte.cdk.load.task.InternalScope +import io.airbyte.cdk.load.task.KillableScope import io.airbyte.cdk.load.task.SyncLevel import io.airbyte.cdk.load.util.use import io.github.oshai.kotlinlogging.KotlinLogging import io.micronaut.context.annotation.Secondary import jakarta.inject.Singleton -interface TimedForcedCheckpointFlushTask : SyncLevel, InternalScope +interface TimedForcedCheckpointFlushTask : SyncLevel, KillableScope @Singleton @Secondary diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/task/DestinationTaskExceptionHandlerTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/task/DestinationTaskExceptionHandlerTest.kt index 61b0733920f3..d0eb40e60c20 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/task/DestinationTaskExceptionHandlerTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/task/DestinationTaskExceptionHandlerTest.kt @@ -133,7 +133,7 @@ class DestinationTaskExceptionHandlerTest where T : LeveledTask, T : ScopedTa @Suppress("UNCHECKED_CAST") @Test - fun testSyncFailureBlocksSyncTasks( + fun testSyncFailureDoesNotBlockSyncTasks( mockFailSyncTaskFactory: MockFailSyncTaskFactory, syncManager: SyncManager, catalog: DestinationCatalog @@ -153,8 +153,18 @@ class DestinationTaskExceptionHandlerTest where T : LeveledTask, T : ScopedTa syncManager.markFailed(RuntimeException("dummy failure")) wrappedTask.execute() delay(1000) - Assertions.assertTrue(mockFailSyncTaskFactory.didRunWith.tryReceive().isFailure) - Assertions.assertTrue(innerTaskRan.tryReceive().isFailure) + // We do not execute the failure task, because that's triggered outside of the + // TaskWrapper stuff + Assertions.assertTrue( + mockFailSyncTaskFactory.didRunWith.tryReceive().isFailure, + "fail sync task should not have executed", + ) + // And we do execute the sync task, because we want to finish any pending work + // even if the sync has overall failed. + Assertions.assertFalse( + innerTaskRan.tryReceive().isFailure, + "mock task should have executed", + ) } @Suppress("UNCHECKED_CAST") @@ -181,7 +191,7 @@ class DestinationTaskExceptionHandlerTest where T : LeveledTask, T : ScopedTa @Suppress("UNCHECKED_CAST") @Test - fun testStreamFailureBlocksStreamTasks( + fun testStreamFailureDoesNotBlockStreamTasks( mockFailStreamTaskFactory: MockFailStreamTaskFactory, syncManager: SyncManager ) = runTest { @@ -201,8 +211,19 @@ class DestinationTaskExceptionHandlerTest where T : LeveledTask, T : ScopedTa manager.markFailed(RuntimeException("dummy failure")) launch { wrappedTask.execute() } delay(1000) - Assertions.assertTrue(mockFailStreamTaskFactory.didRunFor.tryReceive().isFailure) - Assertions.assertTrue(innerTaskRan.tryReceive().isFailure) + // similar to testSyncFailureDoesNotBlockSyncTasks: + // We do not execute the failure task, because that's triggered outside of the + // TaskWrapper stuff + Assertions.assertTrue( + mockFailStreamTaskFactory.didRunFor.tryReceive().isFailure, + "fail stream task should execute", + ) + // And we do execute the stream task, because we want to finish any pending work + // even if the stream has overall failed. + Assertions.assertFalse( + innerTaskRan.tryReceive().isFailure, + "inner task should have executed", + ) } @Suppress("UNCHECKED_CAST") diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt index 905df17c183d..37af407c9569 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt @@ -677,30 +677,21 @@ abstract class BasicFunctionalityIntegrationTest( syncId = 42, ) // Run a sync, but don't emit a stream status. This should not delete any existing data. - // There's a race condition between the end of stream killing the connector, - // and the connector starting to process the record. - // So we run this in a loop until the connector acks the state message. - while (true) { - val e = - assertThrows { - runSync( - configContents, - stream2, - listOf( - makeInputRecord(1, "2024-01-23T02:00Z", 200), - StreamCheckpoint( - randomizedNamespace, - "test_stream", - "{}", - sourceRecordCount = 1, - ) - ), - streamStatus = null, + assertThrows { + runSync( + configContents, + stream2, + listOf( + makeInputRecord(1, "2024-01-23T02:00Z", 200), + StreamCheckpoint( + randomizedNamespace, + "test_stream", + "{}", + sourceRecordCount = 1, ) - } - if (e.stateMessages.isNotEmpty()) { - break - } + ), + streamStatus = null, + ) } dumpAndDiffRecords( parsedConfig, diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt index 276d3d8da946..45793378af34 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt @@ -63,6 +63,7 @@ abstract class S3V2WriteTest( super.testTruncateRefresh() } + @Test override fun testContainerTypes() { super.testContainerTypes() } From 14c99238441af8d4cf0273bdcdbcf485ab801eb7 Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Wed, 6 Nov 2024 00:23:09 +0530 Subject: [PATCH 738/808] source-oveit contribution from parthiv11 (#47340) --- .../connectors/source-oveit/README.md | 33 ++ .../source-oveit/acceptance-test-config.yml | 17 + .../connectors/source-oveit/icon.svg | 6 + .../connectors/source-oveit/manifest.yaml | 334 ++++++++++++++++++ .../connectors/source-oveit/metadata.yaml | 35 ++ docs/integrations/sources/oveit.md | 27 ++ 6 files changed, 452 insertions(+) create mode 100644 airbyte-integrations/connectors/source-oveit/README.md create mode 100644 airbyte-integrations/connectors/source-oveit/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-oveit/icon.svg create mode 100644 airbyte-integrations/connectors/source-oveit/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-oveit/metadata.yaml create mode 100644 docs/integrations/sources/oveit.md diff --git a/airbyte-integrations/connectors/source-oveit/README.md b/airbyte-integrations/connectors/source-oveit/README.md new file mode 100644 index 000000000000..bc2cb47e3bc3 --- /dev/null +++ b/airbyte-integrations/connectors/source-oveit/README.md @@ -0,0 +1,33 @@ +# Oveit +This directory contains the manifest-only connector for `source-oveit`. + +An Airbyte connector for Oveit enables seamless data synchronization by extracting and integrating data from Oveit’s event management platform into your data warehouse. This connector helps automate the flow of information, providing up-to-date insights on event registrations, ticketing, and attendee information. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-oveit:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-oveit build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-oveit test +``` + diff --git a/airbyte-integrations/connectors/source-oveit/acceptance-test-config.yml b/airbyte-integrations/connectors/source-oveit/acceptance-test-config.yml new file mode 100644 index 000000000000..922a47b88a7b --- /dev/null +++ b/airbyte-integrations/connectors/source-oveit/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-oveit:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-oveit/icon.svg b/airbyte-integrations/connectors/source-oveit/icon.svg new file mode 100644 index 000000000000..a9a64d949c46 --- /dev/null +++ b/airbyte-integrations/connectors/source-oveit/icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/airbyte-integrations/connectors/source-oveit/manifest.yaml b/airbyte-integrations/connectors/source-oveit/manifest.yaml new file mode 100644 index 000000000000..7ca5df7825ee --- /dev/null +++ b/airbyte-integrations/connectors/source-oveit/manifest.yaml @@ -0,0 +1,334 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + An Airbyte connector for Oveit enables seamless data synchronization by + extracting and integrating data from Oveit’s event management platform into + your data warehouse. This connector helps automate the flow of information, + providing up-to-date insights on event registrations, ticketing, and attendee + information. + +check: + type: CheckStream + stream_names: + - events + +definitions: + streams: + events: + type: DeclarativeStream + name: events + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /seller/events + http_method: POST + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - events + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/events" + attendees: + type: DeclarativeStream + name: attendees + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /events/attendees + http_method: POST + request_parameters: + id: "{{ stream_partition.event_id }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - attendees + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: since + pagination_strategy: + type: CursorPagination + cursor_value: >- + {{ response.get('attendees', [])[-1].get('ticket_code') if + response.get('attendees') else None }} + stop_condition: "{{ not response.get('attendees') }}" + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: event_id + stream: + $ref: "#/definitions/streams/events" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/attendees" + tickets: + type: DeclarativeStream + name: tickets + primary_key: + - code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /events/tickets + http_method: POST + request_parameters: + id: "{{ stream_partition.event_id }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - tickets + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: event_id + stream: + $ref: "#/definitions/streams/events" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tickets" + base_requester: + type: HttpRequester + url_base: https://l.oveit.com/api + authenticator: + type: SessionTokenAuthenticator + login_requester: + type: HttpRequester + url_base: https://l.oveit.com/api/seller + path: login + authenticator: + type: NoAuth + http_method: POST + request_parameters: + email: "{{ config['email'] }}" + password: "{{ config['password'] }}" + request_headers: {} + session_token_path: + - token + expiration_duration: PT8H + request_authentication: + type: Bearer + +streams: + - $ref: "#/definitions/streams/events" + - $ref: "#/definitions/streams/attendees" + - $ref: "#/definitions/streams/tickets" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - email + - password + properties: + email: + type: string + description: Oveit's login Email + order: 0 + title: Email + password: + type: string + description: Oveit's login Password + order: 1 + title: Password + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + events: true + attendees: false + tickets: false + testedStreams: + events: + hasRecords: true + streamHash: f272daaa63d772d4796ff2cb115233deb778f6a4 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + attendees: + hasRecords: true + streamHash: 617e77af6059788b625edcd74f29a72c8395285f + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + tickets: + hasRecords: true + streamHash: 6fb2c2f08030125bcee98b6bab8d99a56b21ebaa + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://l.oveit.com/api-documentation/ + +schemas: + events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + hash: + type: + - string + - "null" + id: + type: number + location: + type: + - string + - "null" + name: + type: + - string + - "null" + starts_at: + type: + - string + - "null" + ticket_types: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + addons: + type: + - array + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + price: + type: + - string + - "null" + tickets: + type: + - number + - "null" + tickets_checked_in: + type: + - number + - "null" + tickets_sold: + type: + - number + - "null" + required: + - id + attendees: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + checkins: + type: + - array + - "null" + created_at: + type: + - string + - "null" + id: + type: string + links: + type: + - array + - "null" + order_id: + type: + - string + - "null" + order_uuid: + type: + - string + - "null" + ticket_code: + type: + - string + - "null" + ticket_id: + type: + - string + - "null" + ticket_type: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + values: + type: + - array + - "null" + items: + type: + - string + - "null" + required: + - id + tickets: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + checked_in: + type: + - boolean + - "null" + checkins: + type: + - array + - "null" + code: + type: string + ticket_type_id: + type: + - number + - "null" + required: + - code diff --git a/airbyte-integrations/connectors/source-oveit/metadata.yaml b/airbyte-integrations/connectors/source-oveit/metadata.yaml new file mode 100644 index 000000000000..0f2237e1a184 --- /dev/null +++ b/airbyte-integrations/connectors/source-oveit/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "l.oveit.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-oveit + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 339a939f-b56c-48d7-9f3a-1362d6a3fdeb + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-oveit + githubIssueLabel: source-oveit + icon: icon.svg + license: MIT + name: Oveit + releaseDate: 2024-10-24 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/oveit + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/oveit.md b/docs/integrations/sources/oveit.md new file mode 100644 index 000000000000..f3409978c8a7 --- /dev/null +++ b/docs/integrations/sources/oveit.md @@ -0,0 +1,27 @@ +# Oveit +An Airbyte connector for Oveit enables seamless data synchronization by extracting and integrating data from Oveit’s event management platform into your data warehouse. This connector helps automate the flow of information, providing up-to-date insights on event registrations, ticketing, and attendee information. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `email` | `string` | Email. Oveit's login Email | | +| `password` | `string` | Password. Oveit's login Password | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| events | id | No pagination | ✅ | ❌ | +| attendees | id | DefaultPaginator | ✅ | ❌ | +| tickets | code | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-24 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From da22698bf5fc11c099a0252b9a4079dd76f485d8 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Tue, 5 Nov 2024 10:53:27 -0800 Subject: [PATCH 739/808] Bulk load CDK: More refresh tests (#48123) --- .../MockBasicFunctionalityIntegrationTest.kt | 5 + .../cdk/load/test/util/IntegrationTest.kt | 26 +- .../BasicFunctionalityIntegrationTest.kt | 313 +++++++++++++++++- .../destination/s3_v2/S3V2WriteTest.kt | 12 + 4 files changed, 335 insertions(+), 21 deletions(-) diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt index b6d16b54a92b..a633183deed4 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt @@ -57,6 +57,11 @@ class MockBasicFunctionalityIntegrationTest : super.testInterruptedTruncateWithPriorData() } + @Test + override fun resumeAfterCancelledTruncate() { + super.resumeAfterCancelledTruncate() + } + @Test override fun testAppend() { super.testAppend() diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/IntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/IntegrationTest.kt index 3e96fc8721c3..fc93d578809b 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/IntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/IntegrationTest.kt @@ -24,6 +24,7 @@ import kotlinx.coroutines.launch import kotlinx.coroutines.runBlocking import org.apache.commons.lang3.RandomStringUtils import org.junit.jupiter.api.AfterEach +import org.junit.jupiter.api.BeforeAll import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.TestInfo import org.junit.jupiter.api.extension.ExtendWith @@ -45,18 +46,6 @@ abstract class IntegrationTest( val recordMangler: ExpectedRecordMapper = NoopExpectedRecordMapper, val nameMapper: NameMapper = NoopNameMapper, ) { - // Connectors are calling System.getenv rather than using micronaut-y properties, - // so we have to mock it out, instead of just setting more properties - // inside NonDockerizedDestination. - // This field has no effect on DockerizedDestination, which explicitly - // sets env vars when invoking `docker run`. - @SystemStub private lateinit var nonDockerMockEnvVars: EnvironmentVariables - - @BeforeEach - fun setEnvVars() { - nonDockerMockEnvVars.set("WORKER_JOB_ID", "0") - } - // Intentionally don't inject the actual destination process - we need a full factory // because some tests want to run multiple syncs, so we need to run the destination // multiple times. @@ -185,5 +174,18 @@ abstract class IntegrationTest( companion object { private val hasRunCleaner = AtomicBoolean(false) + + // Connectors are calling System.getenv rather than using micronaut-y properties, + // so we have to mock it out, instead of just setting more properties + // inside NonDockerizedDestination. + // This field has no effect on DockerizedDestination, which explicitly + // sets env vars when invoking `docker run`. + @SystemStub private lateinit var nonDockerMockEnvVars: EnvironmentVariables + + @JvmStatic + @BeforeAll + fun setEnvVars() { + nonDockerMockEnvVars.set("WORKER_JOB_ID", "0") + } } } diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt index 37af407c9569..82327438d803 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt @@ -681,15 +681,7 @@ abstract class BasicFunctionalityIntegrationTest( runSync( configContents, stream2, - listOf( - makeInputRecord(1, "2024-01-23T02:00Z", 200), - StreamCheckpoint( - randomizedNamespace, - "test_stream", - "{}", - sourceRecordCount = 1, - ) - ), + listOf(makeInputRecord(1, "2024-01-23T02:00Z", 200)), streamStatus = null, ) } @@ -760,6 +752,309 @@ abstract class BasicFunctionalityIntegrationTest( ) } + /** + * Largely identical to [testInterruptedTruncateWithPriorData], but doesn't run the initial + * sync. This is mostly relevant to warehouse destinations, where running a truncate sync into + * an empty destination behaves differently from running a truncate sync when the destination + * already contains data. + */ + @Test + open fun testInterruptedTruncateWithoutPriorData() { + assumeTrue(verifyDataWriting) + fun makeInputRecord(id: Int, updatedAt: String, extractedAt: Long) = + DestinationRecord( + randomizedNamespace, + "test_stream", + """{"id": $id, "updated_at": "$updatedAt", "name": "foo_${id}_$extractedAt"}""", + emittedAtMs = extractedAt, + ) + fun makeOutputRecord( + id: Int, + updatedAt: String, + extractedAt: Long, + generationId: Long, + syncId: Long, + ) = + OutputRecord( + extractedAt = extractedAt, + generationId = generationId, + data = + mapOf( + "id" to id, + "updated_at" to OffsetDateTime.parse(updatedAt), + "name" to "foo_${id}_$extractedAt", + ), + airbyteMeta = OutputRecord.Meta(syncId = syncId), + ) + val stream = + DestinationStream( + DestinationStream.Descriptor(randomizedNamespace, "test_stream"), + Append, + ObjectType( + linkedMapOf( + "id" to intType, + "updated_at" to timestamptzType, + "name" to stringType, + ) + ), + generationId = 42, + minimumGenerationId = 42, + syncId = 42, + ) + // Run a sync, but don't emit a stream status. + assertThrows { + runSync( + configContents, + stream, + listOf(makeInputRecord(1, "2024-01-23T02:00Z", 200)), + streamStatus = null, + ) + } + dumpAndDiffRecords( + parsedConfig, + if (commitDataIncrementally) { + listOf( + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T02:00Z", + extractedAt = 200, + generationId = 42, + syncId = 42, + ) + ) + } else { + listOf() + }, + stream, + primaryKey = listOf(listOf("id")), + cursor = null, + "Records were incorrect after a failed sync.", + ) + + // Run a second sync, this time with a successful status. + // This should retain the first syncs' data. + runSync( + configContents, + stream, + listOf(makeInputRecord(2, "2024-01-23T03:00Z", 300)), + ) + dumpAndDiffRecords( + parsedConfig, + listOf( + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T02:00Z", + extractedAt = 200, + generationId = 42, + syncId = 42, + ), + makeOutputRecord( + id = 2, + updatedAt = "2024-01-23T03:00Z", + extractedAt = 300, + generationId = 42, + syncId = 42, + ), + ), + stream, + primaryKey = listOf(listOf("id")), + cursor = null, + "Records were incorrect after a successful sync following a failed sync. This may indicate that we are not retaining data from the failed sync.", + ) + } + + /** + * Emulates this sequence of events: + * 1. User runs a normal incremental sync + * 2. User initiates a truncate refresh, but it fails. + * 3. User cancels the truncate refresh, and initiates a normal incremental sync. + * + * In particular, we must retain all records from both the first and second syncs. + * + * This is, again, similar to [testInterruptedTruncateWithPriorData], except that the third sync + * has generation 43 + minGeneration 0 (instead of generation=minGeneration=42)(. + */ + @Test + open fun resumeAfterCancelledTruncate() { + assumeTrue(verifyDataWriting) + fun makeInputRecord(id: Int, updatedAt: String, extractedAt: Long) = + DestinationRecord( + randomizedNamespace, + "test_stream", + """{"id": $id, "updated_at": "$updatedAt", "name": "foo_${id}_$extractedAt"}""", + emittedAtMs = extractedAt, + ) + fun makeOutputRecord( + id: Int, + updatedAt: String, + extractedAt: Long, + generationId: Long, + syncId: Long, + ) = + OutputRecord( + extractedAt = extractedAt, + generationId = generationId, + data = + mapOf( + "id" to id, + "updated_at" to OffsetDateTime.parse(updatedAt), + "name" to "foo_${id}_$extractedAt", + ), + airbyteMeta = OutputRecord.Meta(syncId = syncId), + ) + // Run a normal sync with nonempty data + val stream1 = + DestinationStream( + DestinationStream.Descriptor(randomizedNamespace, "test_stream"), + Append, + ObjectType( + linkedMapOf( + "id" to intType, + "updated_at" to timestamptzType, + "name" to stringType, + ) + ), + generationId = 41, + minimumGenerationId = 0, + syncId = 41, + ) + runSync( + configContents, + stream1, + listOf( + makeInputRecord(1, "2024-01-23T01:00Z", 100), + makeInputRecord(2, "2024-01-23T01:00Z", 100), + ), + ) + dumpAndDiffRecords( + parsedConfig, + listOf( + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + makeOutputRecord( + id = 2, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + ), + stream1, + primaryKey = listOf(listOf("id")), + cursor = null, + "Records were incorrect after initial sync - this indicates a bug in basic connector behavior", + ) + + val stream2 = + stream1.copy( + generationId = 42, + minimumGenerationId = 42, + syncId = 42, + ) + // Run a sync, but don't emit a stream status. This should not delete any existing data. + assertThrows { + runSync( + configContents, + stream2, + listOf(makeInputRecord(1, "2024-01-23T02:00Z", 200)), + streamStatus = null, + ) + } + dumpAndDiffRecords( + parsedConfig, + listOfNotNull( + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + makeOutputRecord( + id = 2, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + if (commitDataIncrementally) { + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T02:00Z", + extractedAt = 200, + generationId = 42, + syncId = 42, + ) + } else { + null + } + ), + stream2, + primaryKey = listOf(listOf("id")), + cursor = null, + "Records were incorrect after a failed sync.", + ) + + // Run a third sync, this time with a successful status. + // This should delete the first sync's data, and retain the second+third syncs' data. + val stream3 = + stream2.copy( + generationId = 43, + minimumGenerationId = 0, + syncId = 43, + ) + runSync( + configContents, + stream3, + listOf(makeInputRecord(2, "2024-01-23T03:00Z", 300)), + ) + dumpAndDiffRecords( + parsedConfig, + listOf( + // records from sync 1 + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + makeOutputRecord( + id = 2, + updatedAt = "2024-01-23T01:00Z", + extractedAt = 100, + generationId = 41, + syncId = 41, + ), + // sync 2 + makeOutputRecord( + id = 1, + updatedAt = "2024-01-23T02:00Z", + extractedAt = 200, + generationId = 42, + syncId = 42, + ), + // and sync 3 + makeOutputRecord( + id = 2, + updatedAt = "2024-01-23T03:00Z", + extractedAt = 300, + generationId = 43, + syncId = 43, + ), + ), + stream2, + primaryKey = listOf(listOf("id")), + cursor = null, + "Records were incorrect after a successful sync following a failed sync. This may indicate that we are not retaining data from the failed sync.", + ) + } + @Test open fun testAppend() { assumeTrue(verifyDataWriting) diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt index 45793378af34..452648757bf3 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt @@ -78,6 +78,18 @@ abstract class S3V2WriteTest( override fun testInterruptedTruncateWithPriorData() { super.testInterruptedTruncateWithPriorData() } + + @Disabled("connector doesn't yet do refreshes correctly - failed sync deletes old data") + @Test + override fun resumeAfterCancelledTruncate() { + super.resumeAfterCancelledTruncate() + } + + @Disabled("connector doesn't yet do refreshes correctly - failed sync deletes old data") + @Test + override fun testInterruptedTruncateWithoutPriorData() { + super.testInterruptedTruncateWithoutPriorData() + } } class S3V2WriteTestJsonUncompressed : From 6dae900310b9b6053174d6811ce9a8d12483e827 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Tue, 5 Nov 2024 10:53:36 -0800 Subject: [PATCH 740/808] Bulk load CDK: add more tests (#48339) --- .../BasicFunctionalityIntegrationTest.kt | 102 ++++++++++++++++++ 1 file changed, 102 insertions(+) diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt index 82327438d803..aa4f64483137 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt @@ -44,6 +44,7 @@ import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.delay import kotlinx.coroutines.launch import kotlinx.coroutines.runBlocking +import org.junit.jupiter.api.Assertions.assertDoesNotThrow import org.junit.jupiter.api.Assertions.assertEquals import org.junit.jupiter.api.Assertions.assertTrue import org.junit.jupiter.api.Assumptions.assumeTrue @@ -1334,6 +1335,107 @@ abstract class BasicFunctionalityIntegrationTest( ) } + /** + * Change the cursor column in the second sync to a column that doesn't exist in the first sync. + * Verify that we overwrite everything correctly. + * + * This essentially verifies that the destination connector correctly recognizes NULL cursors as + * older than non-NULL cursors. + */ + @Test + open fun testDedupChangeCursor() { + assumeTrue(verifyDataWriting && supportsDedup) + fun makeStream(cursor: String) = + DestinationStream( + DestinationStream.Descriptor(randomizedNamespace, "test_stream"), + Dedupe( + primaryKey = listOf(listOf("id")), + cursor = listOf(cursor), + ), + schema = + ObjectType( + linkedMapOf( + "id" to intType, + cursor to intType, + "name" to stringType, + ) + ), + generationId = 42, + minimumGenerationId = 0, + syncId = 42, + ) + fun makeRecord(cursorName: String) = + DestinationRecord( + randomizedNamespace, + "test_stream", + data = """{"id": 1, "$cursorName": 1, "name": "foo_$cursorName"}""", + // this is unrealistic (extractedAt should always increase between syncs), + // but it lets us force the dedupe behavior to rely solely on the cursor column, + // instead of being able to fallback onto extractedAt. + emittedAtMs = 100, + ) + runSync(configContents, makeStream("cursor1"), listOf(makeRecord("cursor1"))) + val stream2 = makeStream("cursor2") + runSync(configContents, stream2, listOf(makeRecord("cursor2"))) + dumpAndDiffRecords( + parsedConfig, + listOf( + OutputRecord( + extractedAt = 100, + generationId = 42, + data = + mapOf( + "id" to 1, + "cursor2" to 1, + "name" to "foo_cursor2", + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ) + ), + stream2, + primaryKey = listOf(listOf("id")), + cursor = listOf("cursor2"), + ) + } + + open val manyStreamCount = 20 + + /** + * Some destinations can't handle large numbers of streams. This test runs a basic smoke test + * against a catalog with many streams. Subclasses many configure the number of streams using + * [manyStreamCount]. + */ + @Test + open fun testManyStreamsCompletion() { + assumeTrue(verifyDataWriting) + assertTrue( + manyStreamCount > 1, + "manyStreamCount should be greater than 1. If you want to disable this test, just override it and use @Disabled.", + ) + val streams = + (0..manyStreamCount).map { i -> + DestinationStream( + DestinationStream.Descriptor(randomizedNamespace, "test_stream_$i"), + Append, + ObjectType(linkedMapOf("id" to intType, "name" to stringType)), + generationId = 42, + minimumGenerationId = 42, + syncId = 42, + ) + } + val messages = + (0..manyStreamCount).map { i -> + DestinationRecord( + randomizedNamespace, + "test_stream_$i", + """{"id": 1, "name": "foo_$i"}""", + emittedAtMs = 100, + ) + } + // Just verify that we don't crash. + assertDoesNotThrow { runSync(configContents, DestinationCatalog(streams), messages) } + } + // TODO basic allTypes() test /** From c1f7ea247df87f4ab6a648220249515a70c7e675 Mon Sep 17 00:00:00 2001 From: Om Bhardwaj <115864495+ombhardwajj@users.noreply.github.com> Date: Wed, 6 Nov 2024 00:25:19 +0530 Subject: [PATCH 741/808] source-finnworlds contribution from ombhardwajj (#47352) Co-authored-by: Marcos Marx --- .../connectors/source-finnworlds/README.md | 35 + .../acceptance-test-config.yml | 17 + .../connectors/source-finnworlds/icon.svg | 15 + .../source-finnworlds/manifest.yaml | 750 ++++++++++++++++++ .../source-finnworlds/metadata.yaml | 35 + docs/integrations/sources/finnworlds.md | 38 + 6 files changed, 890 insertions(+) create mode 100644 airbyte-integrations/connectors/source-finnworlds/README.md create mode 100644 airbyte-integrations/connectors/source-finnworlds/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-finnworlds/icon.svg create mode 100644 airbyte-integrations/connectors/source-finnworlds/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-finnworlds/metadata.yaml create mode 100644 docs/integrations/sources/finnworlds.md diff --git a/airbyte-integrations/connectors/source-finnworlds/README.md b/airbyte-integrations/connectors/source-finnworlds/README.md new file mode 100644 index 000000000000..4bac958eb83a --- /dev/null +++ b/airbyte-integrations/connectors/source-finnworlds/README.md @@ -0,0 +1,35 @@ +# Finnworlds +This directory contains the manifest-only connector for `source-finnworlds`. + +Finnworlds provides data related to finance for globally traded instruments. +With this connector we can easily fetch data from various streams such as Dividends , Stock Splits , Candle Sticks etc +Docs : https://finnworlds.com/ + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-finnworlds:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-finnworlds build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-finnworlds test +``` + diff --git a/airbyte-integrations/connectors/source-finnworlds/acceptance-test-config.yml b/airbyte-integrations/connectors/source-finnworlds/acceptance-test-config.yml new file mode 100644 index 000000000000..35d5cc97045a --- /dev/null +++ b/airbyte-integrations/connectors/source-finnworlds/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-finnworlds:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-finnworlds/icon.svg b/airbyte-integrations/connectors/source-finnworlds/icon.svg new file mode 100644 index 000000000000..ba3d14f1aa51 --- /dev/null +++ b/airbyte-integrations/connectors/source-finnworlds/icon.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-finnworlds/manifest.yaml b/airbyte-integrations/connectors/source-finnworlds/manifest.yaml new file mode 100644 index 000000000000..95ad14d7881d --- /dev/null +++ b/airbyte-integrations/connectors/source-finnworlds/manifest.yaml @@ -0,0 +1,750 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + Finnworlds provides data related to finance for globally traded instruments. + + With this connector we can easily fetch data from various streams such as + Dividends , Stock Splits , Candle Sticks etc + + Docs : https://finnworlds.com/ + +check: + type: CheckStream + stream_names: + - bonds + +definitions: + streams: + bonds: + type: DeclarativeStream + name: bonds + primary_key: + - country + - datetime + - type + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: bonds + http_method: GET + request_parameters: + key: "{{ config[\"key\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - output + partition_router: + - type: ListPartitionRouter + values: "{{ config.countries }}" + cursor_field: country + request_option: + type: RequestOption + field_name: country + inject_into: request_parameter + - type: ListPartitionRouter + values: "{{ config.bond_type }}" + cursor_field: bond_type + request_option: + type: RequestOption + field_name: type + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/bonds" + dividends: + type: DeclarativeStream + name: dividends + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: dividends + http_method: GET + request_parameters: + key: "{{ config[\"key\"] }}" + date_to: "{{ today_utc() }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - output + - dividends + partition_router: + type: ListPartitionRouter + values: "{{ config.tickers }}" + cursor_field: ticket + request_option: + type: RequestOption + field_name: ticker + inject_into: request_parameter + transformations: + - type: AddFields + fields: + - path: + - ticker + value: "{{ stream_slice.ticker }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/dividends" + stock_splits: + type: DeclarativeStream + name: stock_splits + primary_key: + - ticker + - date + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: stocksplits + http_method: GET + request_parameters: + key: "{{ config[\"key\"] }}" + date_to: "{{ today_utc() }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - output + - stocksplits + partition_router: + type: ListPartitionRouter + values: "{{ config.tickers }}" + cursor_field: ticker + request_option: + type: RequestOption + field_name: ticker + inject_into: request_parameter + transformations: + - type: AddFields + fields: + - path: + - ticker + value: "{{ stream_partition.ticker }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_splits" + historical_candlestick: + type: DeclarativeStream + name: historical_candlestick + primary_key: + - ticker + - date + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: historicalcandlestick + http_method: GET + request_parameters: + key: "{{ config[\"key\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - output + - daily_stock_data + partition_router: + type: ListPartitionRouter + values: "{{ config.tickers }}" + cursor_field: ticker + request_option: + type: RequestOption + field_name: ticker + inject_into: request_parameter + incremental_sync: + type: DatetimeBasedCursor + cursor_field: date + cursor_datetime_formats: + - "%Y-%m-%d" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + field_name: date_from + inject_into: request_parameter + transformations: + - type: AddFields + fields: + - path: + - ticker + value: "{{ stream_partition.ticker }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/historical_candlestick" + macro_calendar: + type: DeclarativeStream + name: macro_calendar + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: macrocalendar + http_method: GET + request_parameters: + key: "{{ config[\"key\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - output + partition_router: + type: ListPartitionRouter + values: "{{ config.countries }}" + cursor_field: country + request_option: + type: RequestOption + field_name: country + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/macro_calendar" + macro_indicator: + type: DeclarativeStream + name: macro_indicator + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: macroindicator + http_method: GET + request_parameters: + key: "{{ config[\"key\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - output + partition_router: + type: ListPartitionRouter + values: "{{ config.countries }}" + cursor_field: country + request_option: + type: RequestOption + field_name: country + inject_into: request_parameter + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/macro_indicator" + commodities: + type: DeclarativeStream + name: commodities + primary_key: + - commodity_name + - datetime + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: commodities + http_method: GET + request_parameters: + key: "{{ config[\"key\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - output + partition_router: + type: ListPartitionRouter + values: "{{ config.commodities }}" + cursor_field: commodity + request_option: + type: RequestOption + inject_into: request_parameter + field_name: commodity_name + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/commodities" + benchmark: + type: DeclarativeStream + name: benchmark + primary_key: + - datetime + - country + - benchmark + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: benchmark + http_method: GET + request_parameters: + key: "{{ config[\"key\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - result + - output + partition_router: + type: ListPartitionRouter + values: "{{ config.countries }}" + cursor_field: country + request_option: + type: RequestOption + inject_into: request_parameter + field_name: country + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/benchmark" + base_requester: + type: HttpRequester + url_base: https://api.finnworlds.com/api/v1/ + +streams: + - $ref: "#/definitions/streams/bonds" + - $ref: "#/definitions/streams/dividends" + - $ref: "#/definitions/streams/stock_splits" + - $ref: "#/definitions/streams/historical_candlestick" + - $ref: "#/definitions/streams/macro_calendar" + - $ref: "#/definitions/streams/macro_indicator" + - $ref: "#/definitions/streams/commodities" + - $ref: "#/definitions/streams/benchmark" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - key + - start_date + properties: + list: + type: string + description: Choose isin, ticker, reg_lei or cik + order: 0 + title: List + default: ticker + list_countries_for_bonds: + type: string + order: 1 + title: List Countries for Bonds + default: country + key: + type: string + order: 2 + title: API Key + airbyte_secret: true + bond_type: + type: array + description: For example 10y, 5y, 2y... + order: 3 + title: Bond Type + countries: + type: array + description: brazil, united states, italia, japan + order: 4 + title: Countries + tickers: + type: array + description: AAPL, T, MU, GOOG + order: 5 + title: Tickers + start_date: + type: string + order: 6 + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + commodities: + type: array + description: "Options Available: beef, cheese, oil, ..." + order: 7 + title: Commodities + additionalProperties: true + +metadata: + autoImportSchema: + bonds: true + dividends: true + stock_splits: true + historical_candlestick: true + macro_calendar: true + macro_indicator: true + commodities: true + benchmark: true + testedStreams: + bonds: + hasRecords: true + streamHash: 357fb7f57462d774ece7c5085554061f1bc6e85b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + dividends: + hasRecords: true + streamHash: 63c321ce2ead5cff97454e92149a19eefe6c7b22 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + stock_splits: + hasRecords: true + streamHash: 9c28d289b17af092b5aa56759d9adfea41053062 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + historical_candlestick: + hasRecords: true + streamHash: 567dbe7aa3bc15925ee48637b04598e48b1e1a8b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + macro_calendar: + hasRecords: true + streamHash: de60019c0a1af68baa501b2908385b6ff0869177 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + macro_indicator: + hasRecords: true + streamHash: 95831425814dd02b44730007faf85c625f61cc0b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + commodities: + streamHash: 95fbe6ac1ba1337b323c02b6e43cc9d3982b4ee2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + benchmark: + streamHash: a990d23f5f72c745c9f1ba74c358e91e397ef1fb + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: {} + +schemas: + bonds: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: string + country: + type: string + datetime: + type: string + percentage_month: + type: + - string + - "null" + percentage_week: + type: + - string + - "null" + percentage_year: + type: + - string + - "null" + price_change_day: + type: + - string + - "null" + region: + type: + - string + - "null" + yield: + type: + - string + - "null" + required: + - country + - datetime + - type + dividends: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date: + type: + - string + - "null" + dividend_rate: + type: + - string + - "null" + ticker: + type: + - string + - "null" + stock_splits: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + date: + type: string + stock_split: + type: + - string + - "null" + ticker: + type: string + required: + - ticker + - date + historical_candlestick: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + adjusted_close: + type: + - string + - "null" + close: + type: + - string + - "null" + closetime: + type: + - number + - "null" + date: + type: string + dividend_rate: + type: + - string + - "null" + high: + type: + - string + - "null" + low: + type: + - string + - "null" + open: + type: + - string + - "null" + opentime: + type: + - number + - "null" + stock_split: + type: + - string + - "null" + ticker: + type: string + trade_volume: + type: + - string + - "null" + required: + - ticker + - date + macro_calendar: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + actual: + type: + - string + - "null" + consensus: + type: + - string + - "null" + country: + type: + - string + - "null" + datetime: + type: + - string + - "null" + impact: + type: + - string + - "null" + iso_country_code: + type: + - string + - "null" + previous: + type: + - string + - "null" + report_date: + type: + - string + - "null" + report_name: + type: + - string + - "null" + unit: + type: + - string + - "null" + macro_indicator: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + actual: + type: + - string + - "null" + previous: + type: + - string + - "null" + report_date: + type: + - string + - "null" + report_name: + type: + - string + - "null" + unit: + type: + - string + - "null" + commodities: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + commodity_name: + type: string + commodity_price: + type: + - string + - "null" + commodity_unit: + type: + - string + - "null" + datetime: + type: string + percentage_day: + type: + - string + - "null" + percentage_month: + type: + - string + - "null" + percentage_week: + type: + - string + - "null" + percentage_year: + type: + - string + - "null" + price_change_day: + type: + - string + - "null" + quarter1_25: + type: + - string + - "null" + quarter2_25: + type: + - string + - "null" + quarter3_25: + type: + - string + - "null" + quarter4_24: + type: + - string + - "null" + required: + - commodity_name + - datetime + benchmark: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + benchmark: + type: string + country: + type: string + datetime: + type: string + percentage_day: + type: + - string + - "null" + percentage_month: + type: + - string + - "null" + percentage_week: + type: + - string + - "null" + percentage_year: + type: + - string + - "null" + price: + type: + - string + - "null" + price_change_day: + type: + - string + - "null" + region: + type: + - string + - "null" + required: + - datetime + - country + - benchmark diff --git a/airbyte-integrations/connectors/source-finnworlds/metadata.yaml b/airbyte-integrations/connectors/source-finnworlds/metadata.yaml new file mode 100644 index 000000000000..4e3f8f98b6d6 --- /dev/null +++ b/airbyte-integrations/connectors/source-finnworlds/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.finnworlds.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-finnworlds + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: b8a9a60f-7178-468a-a333-23b431e355b7 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-finnworlds + githubIssueLabel: source-finnworlds + icon: icon.svg + license: MIT + name: Finnworlds + releaseDate: 2024-10-25 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/finnworlds + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/finnworlds.md b/docs/integrations/sources/finnworlds.md new file mode 100644 index 000000000000..cd16e152c6a7 --- /dev/null +++ b/docs/integrations/sources/finnworlds.md @@ -0,0 +1,38 @@ +# Finnworlds +Finnworlds provides data related to finance for globally traded instruments. +With this connector we can easily fetch data from various streams such as Dividends , Stock Splits , Candle Sticks etc +Docs : https://finnworlds.com/ + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `key` | `string` | API Key. | | +| `bond_type` | `array` | Bond Type. For example 10y, 5y, 2y... | | +| `countries` | `array` | Countries. brazil, united states, italia, japan | | +| `tickers` | `array` | Tickers. AAPL, T, MU, GOOG | | +| `start_date` | `string` | Start date. | | +| `commodities` | `array` | Commodities. Options Available: beef, cheese, oil, ... | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| bonds | country.datetime.type | No pagination | ✅ | ❌ | +| dividends | | No pagination | ✅ | ❌ | +| stock_splits | ticker.date | No pagination | ✅ | ❌ | +| historical_candlestick | ticker.date | No pagination | ✅ | ✅ | +| macro_calendar | | No pagination | ✅ | ❌ | +| macro_indicator | | No pagination | ✅ | ❌ | +| commodities | commodity_name.datetime | No pagination | ✅ | ❌ | +| benchmark | datetime.country.benchmark | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-11-05 | | Initial release by [@marcosmarxm](https://github.com/marcosmarxm) via Connector Builder | + +
From 0bb74a0e1d8822157f63498248aafa0f8bc282b7 Mon Sep 17 00:00:00 2001 From: Maxime Carbonneau-Leclerc <3360483+maxi297@users.noreply.github.com> Date: Tue, 5 Nov 2024 14:04:16 -0500 Subject: [PATCH 742/808] Update source-declarative-manifest to CDK version 6.X (#48344) Co-authored-by: Ben Church --- .../source-declarative-manifest/metadata.yaml | 2 +- .../pyproject.toml | 2 +- .../source_declarative_manifest/run.py | 54 +++++++++++++++++-- docs/integrations/sources/low-code.md | 1 + 4 files changed, 52 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml index 01724f3234de..84ed714ceacd 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml +++ b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml @@ -8,7 +8,7 @@ data: connectorType: source definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436 # This version should not be updated manually - it is updated by the CDK release workflow. - dockerImageTag: 6.1.1 + dockerImageTag: 6.1.2 dockerRepository: airbyte/source-declarative-manifest # This page is hidden from the docs for now, since the connector is not in any Airbyte registries. documentationUrl: https://docs.airbyte.com/integrations/sources/low-code diff --git a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml index fb1d596f4cc0..9a27d279901e 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml +++ b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.1.1" +version = "6.1.2" name = "source-declarative-manifest" description = "Base source implementation for low-code sources." authors = ["Airbyte "] diff --git a/airbyte-integrations/connectors/source-declarative-manifest/source_declarative_manifest/run.py b/airbyte-integrations/connectors/source-declarative-manifest/source_declarative_manifest/run.py index 4ef4c1908425..b7303e9c6927 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/source_declarative_manifest/run.py +++ b/airbyte-integrations/connectors/source-declarative-manifest/source_declarative_manifest/run.py @@ -6,14 +6,27 @@ import json import pkgutil import sys +import traceback +from datetime import datetime from pathlib import Path -from typing import List +from typing import Any, List, Mapping, Optional +from airbyte_cdk import TState from airbyte_cdk.connector import BaseConnector from airbyte_cdk.entrypoint import AirbyteEntrypoint, launch -from airbyte_cdk.models import AirbyteMessage, ConnectorSpecificationSerializer, Type +from airbyte_cdk.models import ( + AirbyteErrorTraceMessage, + AirbyteMessage, + AirbyteMessageSerializer, + AirbyteTraceMessage, + ConfiguredAirbyteCatalog, + ConnectorSpecificationSerializer, + TraceType, + Type, +) from airbyte_cdk.sources.declarative.manifest_declarative_source import ManifestDeclarativeSource from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource +from orjson import orjson class SourceLocalYaml(YamlDeclarativeSource): @@ -21,7 +34,7 @@ class SourceLocalYaml(YamlDeclarativeSource): Declarative source defined by a yaml file in the local filesystem """ - def __init__(self): + def __init__(self, catalog: Optional[ConfiguredAirbyteCatalog], config: Optional[Mapping[str, Any]], state: TState, **kwargs): """ HACK! Problem: YamlDeclarativeSource relies on the calling module name/path to find the yaml file. @@ -33,7 +46,7 @@ def __init__(self): When all manifest connectors are updated to use the new airbyte-cdk. When all manifest connectors are updated to use the source-declarative-manifest as the base image. """ - super().__init__(**{"path_to_yaml": "manifest.yaml"}) + super().__init__(catalog=catalog, config=config, state=state, **{"path_to_yaml": "manifest.yaml"}) def _is_local_manifest_command(args: List[str]) -> bool: @@ -48,8 +61,39 @@ def handle_command(args: List[str]) -> None: handle_remote_manifest_command(args) +def _get_local_yaml_source(args: List[str]): + catalog_path = AirbyteEntrypoint.extract_catalog(args) + config_path = AirbyteEntrypoint.extract_config(args) + state_path = AirbyteEntrypoint.extract_state(args) + try: + return SourceLocalYaml( + SourceLocalYaml.read_catalog(catalog_path) if catalog_path else None, + SourceLocalYaml.read_config(config_path) if config_path else None, + SourceLocalYaml.read_state(state_path) if state_path else None, + ) + except Exception as error: + print( + orjson.dumps( + AirbyteMessageSerializer.dump( + AirbyteMessage( + type=Type.TRACE, + trace=AirbyteTraceMessage( + type=TraceType.ERROR, + emitted_at=int(datetime.now().timestamp() * 1000), + error=AirbyteErrorTraceMessage( + message=f"Error starting the sync. This could be due to an invalid configuration or catalog. Please contact Support for assistance. Error: {error}", + stack_trace=traceback.format_exc(), + ), + ), + ) + ) + ).decode() + ) + raise error + + def handle_local_manifest_command(args: List[str]) -> None: - source = SourceLocalYaml() + source = _get_local_yaml_source(args) launch(source, args) diff --git a/docs/integrations/sources/low-code.md b/docs/integrations/sources/low-code.md index bb1a4fdb1b50..3b7ea75af95a 100644 --- a/docs/integrations/sources/low-code.md +++ b/docs/integrations/sources/low-code.md @@ -9,6 +9,7 @@ The changelog below is automatically updated by the `bump_version` command as pa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 6.1.2 | 2024-11-05 | [48344](https://github.com/airbytehq/airbyte/pull/48344) | Fix discover failing on new CDK | | 6.1.1 | 2024-11-04 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.1.1 | | 6.1.0 | 2024-10-31 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.1.0 | | 6.0.0 | 2024-10-30 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.0.0 | From 5cb3508ad2aac9d95871a11418452485fe4900cc Mon Sep 17 00:00:00 2001 From: Om Bhardwaj <115864495+ombhardwajj@users.noreply.github.com> Date: Wed, 6 Nov 2024 00:46:47 +0530 Subject: [PATCH 743/808] source-zoho-billing contribution from ombhardwajj (#47427) --- .../connectors/source-zoho-billing/README.md | 35 + .../acceptance-test-config.yml | 17 + .../connectors/source-zoho-billing/icon.svg | 1 + .../source-zoho-billing/manifest.yaml | 2092 +++++++++++++++++ .../source-zoho-billing/metadata.yaml | 35 + docs/integrations/sources/zoho-billing.md | 40 + 6 files changed, 2220 insertions(+) create mode 100644 airbyte-integrations/connectors/source-zoho-billing/README.md create mode 100644 airbyte-integrations/connectors/source-zoho-billing/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-zoho-billing/icon.svg create mode 100644 airbyte-integrations/connectors/source-zoho-billing/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-zoho-billing/metadata.yaml create mode 100644 docs/integrations/sources/zoho-billing.md diff --git a/airbyte-integrations/connectors/source-zoho-billing/README.md b/airbyte-integrations/connectors/source-zoho-billing/README.md new file mode 100644 index 000000000000..e09dd72f9f26 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-billing/README.md @@ -0,0 +1,35 @@ +# Zoho Billing +This directory contains the manifest-only connector for `source-zoho-billing`. + +Zoho Billing is a billing software used by countless organizations across the globe. +Using this connector we can extract data from various streams such as products , invoices , transactions and quotes. +Docs : https://www.zoho.com/billing/api/v1/introduction/#overview + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-zoho-billing:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-zoho-billing build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-zoho-billing test +``` + diff --git a/airbyte-integrations/connectors/source-zoho-billing/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zoho-billing/acceptance-test-config.yml new file mode 100644 index 000000000000..3ff7a0b973cd --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-billing/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-zoho-billing:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-zoho-billing/icon.svg b/airbyte-integrations/connectors/source-zoho-billing/icon.svg new file mode 100644 index 000000000000..24430ab40ca9 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-billing/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-zoho-billing/manifest.yaml b/airbyte-integrations/connectors/source-zoho-billing/manifest.yaml new file mode 100644 index 000000000000..9250f9536446 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-billing/manifest.yaml @@ -0,0 +1,2092 @@ +version: 6.1.0 + +type: DeclarativeSource + +description: >- + Zoho Billing is a billing software used by countless organizations across the + globe. + + Using this connector we can extract data from various streams such as products + , invoices , transactions and quotes. + + Docs : https://www.zoho.com/billing/api/v1/introduction/#overview + +check: + type: CheckStream + stream_names: + - Products + +definitions: + streams: + Products: + type: DeclarativeStream + name: Products + primary_key: + - product_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: products + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - products + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Products" + plans: + type: DeclarativeStream + name: plans + primary_key: + - plan_code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: plans + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - plans + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/plans" + addons: + type: DeclarativeStream + name: addons + primary_key: + - addon_code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: addons + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - addons + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/addons" + coupons: + type: DeclarativeStream + name: coupons + primary_key: + - coupon_code + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: coupons + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - coupons + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/coupons" + customers: + type: DeclarativeStream + name: customers + primary_key: + - customer_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: customers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - customers + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + Quotes: + type: DeclarativeStream + name: Quotes + primary_key: + - estimate_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: estimates + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - estimates + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/Quotes" + invoices: + type: DeclarativeStream + name: invoices + primary_key: + - invoice_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /invoices + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - invoices + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/invoices" + expenses: + type: DeclarativeStream + name: expenses + primary_key: + - expense_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /expenses + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - expenses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/expenses" + subscriptions: + type: DeclarativeStream + name: subscriptions + primary_key: + - customer_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: subscriptions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - subscriptions + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/subscriptions" + taxes: + type: DeclarativeStream + name: taxes + primary_key: + - tax_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /settings/taxes + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - taxes + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/taxes" + transactions: + type: DeclarativeStream + name: transactions + primary_key: + - transaction_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: transactions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - transactions + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/transactions" + recurring expenses: + type: DeclarativeStream + name: recurring expenses + primary_key: + - recurring_expense_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: recurringexpenses + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - recurring_expenses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/recurring expenses" + base_requester: + type: HttpRequester + url_base: https://www.zohoapis.{{ config['region'] }}/billing/v1/ + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id\"] }}" + grant_type: refresh_token + client_secret: "{{ config[\"client_secret\"] }}" + refresh_token: "{{ config[\"refresh_token\"] }}" + expires_in_name: expires_in + access_token_name: access_token + refresh_request_body: {} + token_refresh_endpoint: https://accounts.zoho.{{ config['region'] }}/oauth/v2/token + +streams: + - $ref: "#/definitions/streams/Products" + - $ref: "#/definitions/streams/plans" + - $ref: "#/definitions/streams/addons" + - $ref: "#/definitions/streams/coupons" + - $ref: "#/definitions/streams/customers" + - $ref: "#/definitions/streams/Quotes" + - $ref: "#/definitions/streams/invoices" + - $ref: "#/definitions/streams/expenses" + - $ref: "#/definitions/streams/subscriptions" + - $ref: "#/definitions/streams/taxes" + - $ref: "#/definitions/streams/transactions" + - $ref: "#/definitions/streams/recurring expenses" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - region + - client_id + - client_secret + - refresh_token + properties: + region: + type: string + enum: + - com + - eu + - in + - com.cn + - com.au + - jp + - sa + - ca + name: region + order: 0 + title: Region + client_id: + type: string + name: client_id + order: 1 + title: OAuth Client ID + airbyte_secret: true + client_secret: + type: string + name: client_secret + order: 2 + title: OAuth Client Secret + airbyte_secret: true + refresh_token: + type: string + name: refresh_token + order: 3 + title: OAuth Refresh Token + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + Products: true + plans: true + addons: true + coupons: true + customers: true + Quotes: true + invoices: true + expenses: true + subscriptions: true + taxes: true + transactions: true + recurring expenses: true + testedStreams: + Products: + hasRecords: true + streamHash: 3559af1b8b9c39c808e7cc443ed39986d01c9f7b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + plans: + hasRecords: true + streamHash: 87dcac9d871bd6f46ef14b9b5bb8bcac4b90b4c5 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + addons: + hasRecords: true + streamHash: cb5fbfeb69812236fb07c83d9790e0210e1d0221 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + coupons: + hasRecords: true + streamHash: 993ea9c3b516ff7d17af3c86fa96f84512a51016 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + customers: + hasRecords: true + streamHash: 3d9283d8772f0be0de752d03b3d965b35a1e64aa + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + Quotes: + hasRecords: true + streamHash: 8c5d61d9d1308824d4e7f3ffcfd6901f7e494599 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + invoices: + hasRecords: true + streamHash: 6581dfcf3271ee2bc74116b9caa5cff8a92509e6 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + expenses: + hasRecords: true + streamHash: dc0771255b9eda75a8d9639f479d2f617890abbc + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + subscriptions: + hasRecords: true + streamHash: 2736e2dc3555443a736220100e5d983f62a6d214 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + taxes: + hasRecords: true + streamHash: b2c6cc88453b1e57f032a4cf629477c7a22caa82 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + transactions: + hasRecords: true + streamHash: 8423da8f90714fd04ff6a8a0489b9a97bf0a1956 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + recurring expenses: + hasRecords: true + streamHash: 8a14a626e7a8035af06d5babb3360549f3741545 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://www.zoho.com/books/api/v3/introduction/#organization-id + +schemas: + Products: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + addons_count: + type: + - number + - "null" + coupons_count: + type: + - number + - "null" + created_at: + type: + - string + - "null" + created_time: + type: + - string + - "null" + email_ids: + type: + - string + - "null" + name: + type: + - string + - "null" + plans_count: + type: + - number + - "null" + product_id: + type: string + redirect_url: + type: + - string + - "null" + status: + type: + - string + - "null" + updated_time: + type: + - string + - "null" + required: + - product_id + plans: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + account: + type: + - string + - "null" + account_id: + type: + - string + - "null" + addons: + type: + - array + - "null" + billing_cycles: + type: + - number + - "null" + billing_mode: + type: + - string + - "null" + created_time: + type: + - string + - "null" + created_time_formatted: + type: + - string + - "null" + custom_fields: + type: + - array + - "null" + interval: + type: + - number + - "null" + interval_unit: + type: + - string + - "null" + name: + type: + - string + - "null" + plan_code: + type: string + plan_id: + type: + - string + - "null" + price_brackets: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + price: + type: + - number + - "null" + pricing_scheme: + type: + - string + - "null" + pricing_scheme_formatted: + type: + - string + - "null" + product_id: + type: + - string + - "null" + product_type: + type: + - string + - "null" + recurring_price: + type: + - number + - "null" + setup_fee: + type: + - number + - "null" + setup_fee_account_id: + type: + - string + - "null" + setup_fee_account_name: + type: + - string + - "null" + shipping_interval: + type: + - number + - "null" + shipping_interval_unit: + type: + - string + - "null" + show_in_widget: + type: + - boolean + - "null" + status: + type: + - string + - "null" + store_description: + type: + - string + - "null" + store_markup_description: + type: + - string + - "null" + tax_id: + type: + - string + - "null" + tax_name: + type: + - string + - "null" + tax_percentage: + type: + - number + - "null" + tax_type: + type: + - string + - "null" + trial_period: + type: + - number + - "null" + unit: + type: + - string + - "null" + updated_time: + type: + - string + - "null" + updated_time_formatted: + type: + - string + - "null" + url: + type: + - string + - "null" + required: + - plan_code + addons: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + addon_code: + type: string + addon_id: + type: + - string + - "null" + applicable_to_all_plans: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + created_time: + type: + - string + - "null" + image_id: + type: + - string + - "null" + interval_unit: + type: + - string + - "null" + interval_unit_formatted: + type: + - string + - "null" + is_proration_disabled: + type: + - boolean + - "null" + name: + type: + - string + - "null" + plans: + type: + - array + - "null" + price_brackets: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + price: + type: + - number + - "null" + pricing_scheme: + type: + - string + - "null" + pricing_scheme_formatted: + type: + - string + - "null" + product_id: + type: + - string + - "null" + product_name: + type: + - string + - "null" + product_type: + type: + - string + - "null" + show_in_widget: + type: + - boolean + - "null" + status: + type: + - string + - "null" + status_formatted: + type: + - string + - "null" + store_description: + type: + - string + - "null" + store_markup_description: + type: + - string + - "null" + tax_id: + type: + - string + - "null" + tax_name: + type: + - string + - "null" + tax_percentage: + type: + - number + - "null" + tax_type: + type: + - string + - "null" + type_formatted: + type: + - string + - "null" + unit_name: + type: + - string + - "null" + updated_time: + type: + - string + - "null" + required: + - addon_code + coupons: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + apply_on: + type: + - string + - "null" + coupon_code: + type: string + coupon_id: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_time: + type: + - string + - "null" + discount_by: + type: + - string + - "null" + discount_value: + type: + - number + - "null" + duration: + type: + - number + - "null" + expiry_at: + type: + - string + - "null" + max_redemption: + type: + - number + - "null" + name: + type: + - string + - "null" + product_id: + type: + - string + - "null" + product_name: + type: + - string + - "null" + redemption_count: + type: + - number + - "null" + status: + type: + - string + - "null" + updated_time: + type: + - string + - "null" + required: + - coupon_code + customers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + company_name: + type: + - string + - "null" + contact_id: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_time: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_symbol: + type: + - string + - "null" + customer_id: + type: string + customer_name: + type: + - string + - "null" + display_name: + type: + - string + - "null" + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + has_attachment: + type: + - boolean + - "null" + is_backup_associated: + type: + - boolean + - "null" + is_gapps_customer: + type: + - boolean + - "null" + is_portal_invitation_accepted: + type: + - boolean + - "null" + is_primary_associated: + type: + - boolean + - "null" + last_name: + type: + - string + - "null" + mobile: + type: + - string + - "null" + outstanding: + type: + - number + - "null" + outstanding_receivable_amount: + type: + - number + - "null" + outstanding_receivable_amount_bcy: + type: + - number + - "null" + payment_terms: + type: + - number + - "null" + payment_terms_label: + type: + - string + - "null" + phone: + type: + - string + - "null" + status: + type: + - string + - "null" + unused_credits: + type: + - number + - "null" + unused_credits_receivable_amount_bcy: + type: + - number + - "null" + updated_time: + type: + - string + - "null" + website: + type: + - string + - "null" + required: + - customer_id + Quotes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accepted_date: + type: + - string + - "null" + client_viewed_time: + type: + - string + - "null" + color_code: + type: + - string + - "null" + company_name: + type: + - string + - "null" + created_time: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + current_sub_status: + type: + - string + - "null" + current_sub_status_id: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + date: + type: + - string + - "null" + declined_date: + type: + - string + - "null" + estimate_id: + type: string + estimate_number: + type: + - string + - "null" + expiry_date: + type: + - string + - "null" + has_attachment: + type: + - boolean + - "null" + is_emailed: + type: + - boolean + - "null" + is_viewed_by_client: + type: + - boolean + - "null" + last_modified_time: + type: + - string + - "null" + reference_number: + type: + - string + - "null" + salesperson_id: + type: + - string + - "null" + salesperson_name: + type: + - string + - "null" + status: + type: + - string + - "null" + template_id: + type: + - string + - "null" + template_type: + type: + - string + - "null" + total: + type: + - number + - "null" + zcrm_potential_id: + type: + - string + - "null" + zcrm_potential_name: + type: + - string + - "null" + required: + - estimate_id + invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + ach_payment_initiated: + type: + - boolean + - "null" + balance: + type: + - number + - "null" + billing_address: + type: + - object + - "null" + properties: + attention: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + fax: + type: + - string + - "null" + phone: + type: + - string + - "null" + state: + type: + - string + - "null" + street: + type: + - string + - "null" + street2: + type: + - string + - "null" + zipcode: + type: + - string + - "null" + billing_city: + type: + - string + - "null" + billing_country: + type: + - string + - "null" + billing_phone: + type: + - string + - "null" + billing_state: + type: + - string + - "null" + billing_street: + type: + - string + - "null" + billing_street2: + type: + - string + - "null" + billing_zipcode: + type: + - string + - "null" + client_viewed_time: + type: + - string + - "null" + country: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_time: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_symbol: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + due_date: + type: + - string + - "null" + email: + type: + - string + - "null" + has_attachment: + type: + - boolean + - "null" + invoice_date: + type: + - string + - "null" + invoice_id: + type: string + invoice_number: + type: + - string + - "null" + is_viewed_by_client: + type: + - boolean + - "null" + is_viewed_in_mail: + type: + - boolean + - "null" + mail_first_viewed_time: + type: + - string + - "null" + mail_last_viewed_time: + type: + - string + - "null" + number: + type: + - string + - "null" + payment_expected_date: + type: + - string + - "null" + phone: + type: + - string + - "null" + project_name: + type: + - string + - "null" + reference_number: + type: + - string + - "null" + salesperson: + type: + - string + - "null" + salesperson_name: + type: + - string + - "null" + shipping_address: + type: + - object + - "null" + properties: + attention: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + fax: + type: + - string + - "null" + phone: + type: + - string + - "null" + state: + type: + - string + - "null" + street: + type: + - string + - "null" + street2: + type: + - string + - "null" + zipcode: + type: + - string + - "null" + shipping_city: + type: + - string + - "null" + shipping_country: + type: + - string + - "null" + shipping_phone: + type: + - string + - "null" + shipping_state: + type: + - string + - "null" + shipping_street: + type: + - string + - "null" + shipping_street2: + type: + - string + - "null" + shipping_zipcode: + type: + - string + - "null" + status: + type: + - string + - "null" + total: + type: + - number + - "null" + transaction_type: + type: + - string + - "null" + updated_time: + type: + - string + - "null" + required: + - invoice_id + expenses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + account_name: + type: + - string + - "null" + bcy_total: + type: + - number + - "null" + bcy_total_without_tax: + type: + - number + - "null" + created_time: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + custom_fields_list: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + date: + type: + - string + - "null" + distance: + type: + - number + - "null" + end_reading: + type: + - string + - "null" + exchange_rate: + type: + - number + - "null" + expense_id: + type: string + expense_receipt_name: + type: + - string + - "null" + expense_type: + type: + - string + - "null" + has_attachment: + type: + - boolean + - "null" + is_billable: + type: + - boolean + - "null" + is_personal: + type: + - boolean + - "null" + last_modified_time: + type: + - string + - "null" + mileage_rate: + type: + - number + - "null" + mileage_type: + type: + - string + - "null" + mileage_unit: + type: + - string + - "null" + reference_number: + type: + - string + - "null" + report_id: + type: + - string + - "null" + report_name: + type: + - string + - "null" + report_number: + type: + - string + - "null" + start_reading: + type: + - string + - "null" + status: + type: + - string + - "null" + total: + type: + - number + - "null" + total_without_tax: + type: + - number + - "null" + required: + - expense_id + subscriptions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + activated_at: + type: + - string + - "null" + amount: + type: + - number + - "null" + auto_collect: + type: + - boolean + - "null" + billing_mode: + type: + - string + - "null" + coupon_duration: + type: + - string + - "null" + created_at: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_time: + type: + - string + - "null" + crm_owner_id: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_symbol: + type: + - string + - "null" + current_term_ends_at: + type: + - string + - "null" + current_term_starts_at: + type: + - string + - "null" + custom_field_hash: + type: + - object + - "null" + custom_fields: + type: + - array + - "null" + customer_id: + type: string + customer_name: + type: + - string + - "null" + email: + type: + - string + - "null" + expires_at: + type: + - string + - "null" + interval: + type: + - number + - "null" + interval_unit: + type: + - string + - "null" + is_metered_billing: + type: + - boolean + - "null" + mobile_phone: + type: + - string + - "null" + name: + type: + - string + - "null" + next_billing_at: + type: + - string + - "null" + next_shipment_at: + type: + - string + - "null" + next_shipment_day: + type: + - string + - "null" + orders_created: + type: + - string + - "null" + orders_remaining: + type: + - string + - "null" + payment_terms: + type: + - number + - "null" + payment_terms_label: + type: + - string + - "null" + phone: + type: + - string + - "null" + plan_code: + type: + - string + - "null" + plan_name: + type: + - string + - "null" + reference_id: + type: + - string + - "null" + salesperson_id: + type: + - string + - "null" + salesperson_name: + type: + - string + - "null" + scheduled_cancellation_date: + type: + - string + - "null" + shipping_interval: + type: + - number + - "null" + shipping_interval_unit: + type: + - string + - "null" + status: + type: + - string + - "null" + sub_total: + type: + - number + - "null" + subscription_id: + type: + - string + - "null" + subscription_number: + type: + - string + - "null" + total_orders: + type: + - string + - "null" + trial_ends_at: + type: + - string + - "null" + trial_remaining_days: + type: + - number + - "null" + trial_starts_at: + type: + - string + - "null" + updated_time: + type: + - string + - "null" + zcrm_potential_id: + type: + - string + - "null" + zcrm_potential_name: + type: + - string + - "null" + required: + - customer_id + taxes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + diff_rate_reason: + type: + - string + - "null" + end_date: + type: + - string + - "null" + is_default_tax: + type: + - boolean + - "null" + is_editable: + type: + - boolean + - "null" + is_inactive: + type: + - boolean + - "null" + last_modified_time: + type: + - string + - "null" + output_tax_account_name: + type: + - string + - "null" + start_date: + type: + - string + - "null" + status: + type: + - string + - "null" + tax_account_id: + type: + - string + - "null" + tax_id: + type: string + tax_name: + type: + - string + - "null" + tax_percentage: + type: + - number + - "null" + tax_specific_type: + type: + - string + - "null" + tax_specification: + type: + - string + - "null" + tax_type: + type: + - string + - "null" + required: + - tax_id + transactions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + ach_payment_initiated: + type: + - boolean + - "null" + amount: + type: + - number + - "null" + date: + type: + - string + - "null" + reference_id: + type: + - string + - "null" + status: + type: + - string + - "null" + transaction_id: + type: string + required: + - transaction_id + recurring expenses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + account_name: + type: + - string + - "null" + created_time: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + is_billable: + type: + - boolean + - "null" + last_created_date: + type: + - string + - "null" + last_modified_time: + type: + - string + - "null" + next_expense_date: + type: + - string + - "null" + paid_through_account_name: + type: + - string + - "null" + recurrence_frequency: + type: + - string + - "null" + recurrence_name: + type: + - string + - "null" + recurring_expense_id: + type: string + repeat_every: + type: + - number + - "null" + status: + type: + - string + - "null" + total: + type: + - number + - "null" + vendor_name: + type: + - string + - "null" + required: + - recurring_expense_id diff --git a/airbyte-integrations/connectors/source-zoho-billing/metadata.yaml b/airbyte-integrations/connectors/source-zoho-billing/metadata.yaml new file mode 100644 index 000000000000..b13c5fcf333f --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-billing/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "zohoapis." + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-zoho-billing + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + connectorSubtype: api + connectorType: source + definitionId: cd0c7d19-6189-4ed2-9c9f-663d1bea7789 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-zoho-billing + githubIssueLabel: source-zoho-billing + icon: icon.svg + license: MIT + name: Zoho Billing + releaseDate: 2024-11-05 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/zoho-billing + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/zoho-billing.md b/docs/integrations/sources/zoho-billing.md new file mode 100644 index 000000000000..8cd1daaf1ad3 --- /dev/null +++ b/docs/integrations/sources/zoho-billing.md @@ -0,0 +1,40 @@ +# Zoho Billing +Zoho Billing is a billing software used by countless organizations across the globe. +Using this connector we can extract data from various streams such as products , invoices , transactions and quotes. +Docs : https://www.zoho.com/billing/api/v1/introduction/#overview + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `region` | `string` | Region. | | +| `client_id` | `string` | OAuth Client ID. | | +| `client_secret` | `string` | OAuth Client Secret. | | +| `refresh_token` | `string` | OAuth Refresh Token. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| Products | product_id | DefaultPaginator | ✅ | ❌ | +| plans | plan_code | DefaultPaginator | ✅ | ❌ | +| addons | addon_code | DefaultPaginator | ✅ | ❌ | +| coupons | coupon_code | DefaultPaginator | ✅ | ❌ | +| customers | customer_id | DefaultPaginator | ✅ | ❌ | +| Quotes | estimate_id | DefaultPaginator | ✅ | ❌ | +| invoices | invoice_id | DefaultPaginator | ✅ | ❌ | +| expenses | expense_id | DefaultPaginator | ✅ | ❌ | +| subscriptions | customer_id | DefaultPaginator | ✅ | ❌ | +| taxes | tax_id | DefaultPaginator | ✅ | ❌ | +| transactions | transaction_id | DefaultPaginator | ✅ | ❌ | +| recurring expenses | recurring_expense_id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-11-05 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | + +
From 05f72f9b39de7b4cad2bc2bd2275bedb474deccd Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Wed, 6 Nov 2024 00:52:21 +0530 Subject: [PATCH 744/808] source-microsoft-entra-id contribution from bishalbera (#47997) Co-authored-by: Marcos Marx Co-authored-by: marcosmarxm --- .../source-microsoft-entra-id/manifest.yaml | 234 +++++------------- .../source-microsoft-entra-id/metadata.yaml | 2 +- .../sources/microsoft-entra-id.md | 53 ++-- 3 files changed, 84 insertions(+), 205 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-entra-id/manifest.yaml b/airbyte-integrations/connectors/source-microsoft-entra-id/manifest.yaml index 810ef468a329..ce8308a25961 100644 --- a/airbyte-integrations/connectors/source-microsoft-entra-id/manifest.yaml +++ b/airbyte-integrations/connectors/source-microsoft-entra-id/manifest.yaml @@ -1,4 +1,4 @@ -version: 5.12.0 +version: 5.15.0 type: DeclarativeSource @@ -155,8 +155,8 @@ definitions: cursor_field: type request_option: type: RequestOption - inject_into: body_json field_name: type + inject_into: body_json schema_loader: type: InlineSchemaLoader schema: @@ -182,41 +182,6 @@ definitions: type: InlineSchemaLoader schema: $ref: "#/schemas/directoryroles" - auditlogs: - type: DeclarativeStream - name: auditlogs - primary_key: - - id - retriever: - type: SimpleRetriever - requester: - $ref: "#/definitions/base_requester" - path: /auditLogs/directoryaudits - http_method: GET - request_parameters: - $top: "5" - record_selector: - type: RecordSelector - extractor: - type: DpathExtractor - field_path: - - value - paginator: - type: DefaultPaginator - page_token_option: - type: RequestOption - inject_into: request_parameter - field_name: $skiptoken - pagination_strategy: - type: CursorPagination - cursor_value: >- - {{ response.get("@odata.nextLink") | - regex_search('\$skiptoken=([^&]+)') }} - stop_condition: "{{ response.get('@odata.nextLink') is not defined }}" - schema_loader: - type: InlineSchemaLoader - schema: - $ref: "#/schemas/auditlogs" directoryroletemplates: type: DeclarativeStream name: directoryroletemplates @@ -374,7 +339,7 @@ definitions: grant_type: client_credentials client_secret: "{{ config[\"client_secret\"] }}" refresh_request_body: - scope: "{{ config['application_id_uri'] }}" + scope: https://graph.microsoft.com/.default token_refresh_endpoint: >- https://login.microsoftonline.com/{{ config['tenant_id'] }}/oauth2/v2.0/token @@ -385,7 +350,6 @@ streams: - $ref: "#/definitions/streams/applications" - $ref: "#/definitions/streams/user_owned_deleted_items" - $ref: "#/definitions/streams/directoryroles" - - $ref: "#/definitions/streams/auditlogs" - $ref: "#/definitions/streams/directoryroletemplates" - $ref: "#/definitions/streams/directoryaudits" - $ref: "#/definitions/streams/serviceprincipals" @@ -401,7 +365,6 @@ spec: - client_id - client_secret - tenant_id - - application_id_uri - user_id properties: client_id: @@ -419,14 +382,9 @@ spec: order: 2 title: Tenant Id airbyte_secret: true - application_id_uri: - type: string - order: 3 - title: Application Id URI - airbyte_secret: true user_id: type: string - order: 4 + order: 3 title: User Id airbyte_secret: true additionalProperties: true @@ -438,7 +396,6 @@ metadata: applications: true user_owned_deleted_items: true directoryroles: true - auditlogs: true directoryroletemplates: true directoryaudits: true serviceprincipals: true @@ -446,82 +403,75 @@ metadata: adminconsentrequestpolicy: true testedStreams: users: - streamHash: e9680d9cc418081a2f5fd4e59d7f575b311b8dc5 + streamHash: a3a8dbf864ffb336f197dcd7b5dc94276ac3804c hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true groups: - streamHash: c1a0432c5ce81363e75b39b503b7203fdecfeba6 + streamHash: f4d8c25569bc03e4282b8ab0e2206fe801f7abb4 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true applications: - streamHash: 66f078a70b0c4d468592c3fa1b538bac620b2e7d + streamHash: aec5be1d8ca55d7d6d329969a469413a2799d204 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true user_owned_deleted_items: - streamHash: 9265a6b09eed6ababab8f15d3522dca6e123febe + streamHash: f58339e36ff71c6055a1279d2ccc551a2280fa3f hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true directoryroles: - streamHash: 6ce30c704704828c251bbf8f402778fd8f639edb - hasResponse: true - responsesAreSuccessful: true - hasRecords: true - primaryKeysArePresent: true - primaryKeysAreUnique: true - auditlogs: - streamHash: d49fef83c93794e449409ac2a45685458e45ca57 + streamHash: 1e2973d7b724fe91d182c756dd1b4bb2b1d4d81b hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true directoryroletemplates: - streamHash: e885ecb2033544abad560f266f37176ade361abd + streamHash: 4ae0addeaa79492f472e034533b850b557b08fc1 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true directoryaudits: - streamHash: 7c99e2b68ff2f120774a2091a4ac074c9efed0bc + streamHash: dee13f722e03affc089a46bfc8be8ecd910074a8 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true serviceprincipals: - streamHash: 77a66c133cdcb1882c3dccbafc8fcd2c8164b4a8 - hasResponse: true - responsesAreSuccessful: true hasRecords: true - primaryKeysArePresent: true - primaryKeysAreUnique: true - identityproviders: - streamHash: af1b879e50673feb9b02c80422ad985050cbd927 + streamHash: 1a75792a5cb5d162fc0aaeda12e27a876fe42470 hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true responsesAreSuccessful: true + identityproviders: hasRecords: true - primaryKeysArePresent: true - primaryKeysAreUnique: true - adminconsentrequestpolicy: - streamHash: cbc9761c8b766e847cda5438825d79774f0175b9 + streamHash: 2a6f02761e0744572579767de223c98b35d89890 hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true responsesAreSuccessful: true + adminconsentrequestpolicy: hasRecords: true - primaryKeysArePresent: true + streamHash: c65392dbc76dd3c1700fc307a0cec08113d18deb + hasResponse: true primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true assist: docsUrl: >- https://learn.microsoft.com/en-us/graph/api/resources/identity-network-access-overview?view=graph-rest-1.0 @@ -1100,107 +1050,6 @@ schemas: - "null" required: - id - auditlogs: - type: object - $schema: http://json-schema.org/schema# - additionalProperties: true - properties: - activityDateTime: - type: - - string - - "null" - activityDisplayName: - type: - - string - - "null" - additionalDetails: - type: - - array - - "null" - items: - type: - - object - - "null" - properties: - key: - type: - - string - - "null" - value: - type: - - string - - "null" - category: - type: - - string - - "null" - correlationId: - type: - - string - - "null" - id: - type: string - initiatedBy: - type: - - object - - "null" - properties: - app: - type: - - object - - "null" - properties: - displayName: - type: - - string - - "null" - servicePrincipalId: - type: - - string - - "null" - servicePrincipalName: - type: - - string - - "null" - loggedByService: - type: - - string - - "null" - operationType: - type: - - string - - "null" - result: - type: - - string - - "null" - resultReason: - type: - - string - - "null" - targetResources: - type: - - array - - "null" - items: - type: - - object - - "null" - properties: - type: - type: - - string - - "null" - id: - type: - - string - - "null" - modifiedProperties: - type: - - array - - "null" - required: - - id directoryroletemplates: type: object $schema: http://json-schema.org/schema# @@ -1263,20 +1112,20 @@ schemas: - object - "null" properties: - app: + user: type: - object - "null" properties: - displayName: + id: type: - string - "null" - servicePrincipalId: + ipAddress: type: - string - "null" - servicePrincipalName: + userPrincipalName: type: - string - "null" @@ -1309,6 +1158,14 @@ schemas: type: - string - "null" + displayName: + type: + - string + - "null" + groupType: + type: + - string + - "null" id: type: - string @@ -1317,6 +1174,27 @@ schemas: type: - array - "null" + items: + type: + - object + - "null" + properties: + displayName: + type: + - string + - "null" + newValue: + type: + - string + - "null" + oldValue: + type: + - string + - "null" + userPrincipalName: + type: + - string + - "null" required: - id serviceprincipals: diff --git a/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml index 7ad5790d6c55..8c288cb04ff3 100644 --- a/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-entra-id/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: 337930a3-778a-413e-99cf-e79a3fca1c74 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-microsoft-entra-id githubIssueLabel: source-microsoft-entra-id icon: icon.svg diff --git a/docs/integrations/sources/microsoft-entra-id.md b/docs/integrations/sources/microsoft-entra-id.md index 9e7241da066f..6761c727b1b5 100644 --- a/docs/integrations/sources/microsoft-entra-id.md +++ b/docs/integrations/sources/microsoft-entra-id.md @@ -1,44 +1,45 @@ # Microsoft Entra Id + The Microsoft Entra ID Connector for Airbyte allows seamless integration with Microsoft Entra ID, enabling secure and automated data synchronization of identity and access management information. With this connector, users can efficiently retrieve and manage user, group, and directory data to streamline identity workflows and ensure up-to-date access control within their applications. ## Authentication + First of all you need to register an application in the Microsoft Entra Admin Center. Please folow [these](https://learn.microsoft.com/en-us/graph/auth-register-app-v2) steps to do so. After that you need to follow [these](https://learn.microsoft.com/en-us/graph/auth-v2-service?context=graph%2Fapi%2F1.0&view=graph-rest-1.0&tabs=http) steps to configure the api with right permissions and get the access token. ## Configuration -| Input | Type | Description | Default Value | -|-------|------|-------------|---------------| -| `client_id` | `string` | Client ID. | | -| `client_secret` | `string` | Client secret. | | -| `tenant_id` | `string` | Tenant Id. | | -| `application_id_uri` | `string` | Application Id URI. | | -| `user_id` | `string` | ID of the owner. | | - +| Input | Type | Description | Default Value | +| --------------- | -------- | ---------------- | ------------- | +| `client_id` | `string` | Client ID. | | +| `client_secret` | `string` | Client secret. | | +| `tenant_id` | `string` | Tenant Id. | | +| `user_id` | `string` | ID of the owner. | | ## Streams -| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | -|-------------|-------------|------------|---------------------|----------------------| -| users | id | DefaultPaginator | ✅ | ❌ | -| groups | id | DefaultPaginator | ✅ | ❌ | -| applications | id | DefaultPaginator | ✅ | ❌ | -| user_owned_deleted_items | id | DefaultPaginator | ✅ | ❌ | -| directoryroles | id | No pagination | ✅ | ❌ | -| auditlogs | id | DefaultPaginator | ✅ | ❌ | -| directoryroletemplates | id | No pagination | ✅ | ❌ | -| directoryaudits | id | DefaultPaginator | ✅ | ❌ | -| serviceprincipals | id | DefaultPaginator | ✅ | ❌ | -| identityproviders | | DefaultPaginator | ✅ | ❌ | -| adminconsentrequestpolicy | | DefaultPaginator | ✅ | ❌ | + +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +| ------------------------- | ----------- | ---------------- | ------------------ | -------------------- | +| users | id | DefaultPaginator | ✅ | ❌ | +| groups | id | DefaultPaginator | ✅ | ❌ | +| applications | id | DefaultPaginator | ✅ | ❌ | +| user_owned_deleted_items | id | DefaultPaginator | ✅ | ❌ | +| directoryroles | id | No pagination | ✅ | ❌ | +| directoryroletemplates | id | No pagination | ✅ | ❌ | +| directoryaudits | id | DefaultPaginator | ✅ | ❌ | +| serviceprincipals | id | DefaultPaginator | ✅ | ❌ | +| identityproviders | | DefaultPaginator | ✅ | ❌ | +| adminconsentrequestpolicy | | DefaultPaginator | ✅ | ❌ | ## Changelog
Expand to review -| Version | Date | Pull Request | Subject | -|------------------|-------------------|--------------|----------------| -| 0.0.3 | 2024-10-29 | [47892](https://github.com/airbytehq/airbyte/pull/47892) | Update dependencies | -| 0.0.2 | 2024-10-28 | [47554](https://github.com/airbytehq/airbyte/pull/47554) | Update dependencies | -| 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | +| Version | Date | Pull Request | Subject | +| ------- | ---------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------- | +| 0.0.4 | 2024-10-31 | [47997](https://github.com/airbytehq/airbyte/pull/47997) | Remove `audit_logs` and update auth remove `application_id_uri` parameter | +| 0.0.3 | 2024-10-29 | [47892](https://github.com/airbytehq/airbyte/pull/47892) | Update dependencies | +| 0.0.2 | 2024-10-28 | [47479](https://github.com/airbytehq/airbyte/pull/47479) | Update dependencies | +| 0.0.1 | 2024-10-18 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder |
From 3ea55593cabb80c9c3a0b99f55ca879a3cde4ff1 Mon Sep 17 00:00:00 2001 From: Om Bhardwaj <115864495+ombhardwajj@users.noreply.github.com> Date: Wed, 6 Nov 2024 00:53:37 +0530 Subject: [PATCH 745/808] source-zoho-invoice contribution from ombhardwajj (#47424) Co-authored-by: Marcos Marx --- .../connectors/source-zoho-invoice/README.md | 35 + .../acceptance-test-config.yml | 17 + .../connectors/source-zoho-invoice/icon.svg | 1 + .../source-zoho-invoice/manifest.yaml | 1654 +++++++++++++++++ .../source-zoho-invoice/metadata.yaml | 35 + docs/integrations/sources/zoho-invoice.md | 38 + 6 files changed, 1780 insertions(+) create mode 100644 airbyte-integrations/connectors/source-zoho-invoice/README.md create mode 100644 airbyte-integrations/connectors/source-zoho-invoice/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-zoho-invoice/icon.svg create mode 100644 airbyte-integrations/connectors/source-zoho-invoice/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-zoho-invoice/metadata.yaml create mode 100644 docs/integrations/sources/zoho-invoice.md diff --git a/airbyte-integrations/connectors/source-zoho-invoice/README.md b/airbyte-integrations/connectors/source-zoho-invoice/README.md new file mode 100644 index 000000000000..7642ae7adaf6 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-invoice/README.md @@ -0,0 +1,35 @@ +# Zoho Invoice +This directory contains the manifest-only connector for `source-zoho-invoice`. + +Zoho invoice is an invoicing software used by businesses. +With this connector we can extract data from various streams such as items , contacts and invoices streams. +Docs : https://www.zoho.com/invoice/api/v3/introduction/#overview + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-zoho-invoice:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-zoho-invoice build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-zoho-invoice test +``` + diff --git a/airbyte-integrations/connectors/source-zoho-invoice/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zoho-invoice/acceptance-test-config.yml new file mode 100644 index 000000000000..e5917c672ea0 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-invoice/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-zoho-invoice:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-zoho-invoice/icon.svg b/airbyte-integrations/connectors/source-zoho-invoice/icon.svg new file mode 100644 index 000000000000..294ea2205395 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-invoice/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-zoho-invoice/manifest.yaml b/airbyte-integrations/connectors/source-zoho-invoice/manifest.yaml new file mode 100644 index 000000000000..0ef01fc65076 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-invoice/manifest.yaml @@ -0,0 +1,1654 @@ +version: 6.1.0 + +type: DeclarativeSource + +description: >- + Zoho invoice is an invoicing software used by businesses. + + With this connector we can extract data from various streams such as items , + contacts and invoices streams. + + Docs : https://www.zoho.com/invoice/api/v3/introduction/#overview + +check: + type: CheckStream + stream_names: + - items + +definitions: + streams: + items: + type: DeclarativeStream + name: items + primary_key: + - item_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: items + http_method: GET + request_headers: + X-com-zoho-invoice-organizationid: "{{ config['organization_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/items" + users: + type: DeclarativeStream + name: users + primary_key: + - user_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: users + http_method: GET + request_headers: + X-com-zoho-invoice-organizationid: "{{ config['organization_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - users + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + contacts: + type: DeclarativeStream + name: contacts + primary_key: + - contact_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: contacts + http_method: GET + request_headers: + X-com-zoho-invoice-organizationid: "{{ config['organization_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - contacts + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/contacts" + invoices: + type: DeclarativeStream + name: invoices + primary_key: + - invoice_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: invoices + http_method: GET + request_headers: + X-com-zoho-invoice-organizationid: "{{ config['organization_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - invoices + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/invoices" + recurring_invoices: + type: DeclarativeStream + name: recurring_invoices + primary_key: + - recurring_invoice_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: recurringinvoices + http_method: GET + request_headers: + X-com-zoho-invoice-organizationid: "{{ config['organization_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - recurring_invoices + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/recurring_invoices" + customer_payments: + type: DeclarativeStream + name: customer_payments + primary_key: + - payment_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: customerpayments + http_method: GET + request_headers: + X-com-zoho-invoice-organizationid: "{{ config['organization_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - customerpayments + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customer_payments" + credit notes: + type: DeclarativeStream + name: credit notes + primary_key: + - creditnote_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: creditnotes + http_method: GET + request_headers: + X-com-zoho-invoice-organizationid: "{{ config['organization_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - creditnotes + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/credit notes" + expenses: + type: DeclarativeStream + name: expenses + primary_key: + - expense_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: expenses + http_method: GET + request_headers: + X-com-zoho-invoice-organizationid: "{{ config['organization_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - expenses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 200 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/expenses" + taxes: + type: DeclarativeStream + name: taxes + primary_key: + - tax_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /settings/taxes + http_method: GET + request_headers: + X-com-zoho-invoice-organizationid: "{{ config['organization_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - taxes + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 200 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/taxes" + base_requester: + type: HttpRequester + url_base: https://www.zohoapis.{{ config['region'] }}/invoice/v3/ + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id\"] }}" + grant_type: refresh_token + client_secret: "{{ config[\"client_secret\"] }}" + refresh_token: "{{ config[\"client_refresh_token\"] }}" + refresh_request_body: {} + token_refresh_endpoint: https://accounts.zoho.in/oauth/v2/token + +streams: + - $ref: "#/definitions/streams/items" + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/contacts" + - $ref: "#/definitions/streams/invoices" + - $ref: "#/definitions/streams/recurring_invoices" + - $ref: "#/definitions/streams/customer_payments" + - $ref: "#/definitions/streams/credit notes" + - $ref: "#/definitions/streams/expenses" + - $ref: "#/definitions/streams/taxes" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id + - client_secret + - client_refresh_token + - region + properties: + client_id: + type: string + order: 0 + title: Client ID + airbyte_secret: true + client_secret: + type: string + order: 1 + title: Client secret + airbyte_secret: true + client_refresh_token: + type: string + order: 2 + title: Refresh token + airbyte_secret: true + organization_id: + type: string + description: To be provided if a user belongs to multiple organizations + order: 3 + title: Organization ID + region: + type: string + enum: + - com + - eu + - in + - com.cn + - com.au + - jp + - sa + - ca + order: 4 + title: Region + additionalProperties: true + +metadata: + autoImportSchema: + items: true + users: true + contacts: true + invoices: true + recurring_invoices: true + customer_payments: true + credit notes: true + expenses: true + taxes: true + testedStreams: + items: + streamHash: 2d6534f99c83d65519effcb14e7d119db1674f5a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + users: + streamHash: a246106b1c4373a5105508c126c539ca69b541d6 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + contacts: + hasRecords: true + streamHash: 6150e20bbb3c3b7fefae12d87efb22179139d52a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + invoices: + hasRecords: true + streamHash: cb0cb9526e649a7522b3b2d86aa4ef5af5581a0b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + recurring_invoices: + hasRecords: true + streamHash: 5de65fa77e81237f1fa6a6275a6dbaff59458b80 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + customer_payments: + hasRecords: true + streamHash: 7625f6062136e947be65114ae692df425d96aa7c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + credit notes: + hasRecords: true + streamHash: e1cf97fe81ac4aefb324072130c8946e515e802b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + expenses: + hasRecords: true + streamHash: 147537711b05fb4a95fbb6c85c1c14c0e43f4a9d + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + taxes: + hasRecords: true + streamHash: f47e68753dd13cf3fb35b455ac0ea4ef6539e27d + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: {} + +schemas: + items: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + created_time: + type: + - string + - "null" + has_attachment: + type: + - boolean + - "null" + image_document_id: + type: + - string + - "null" + image_name: + type: + - string + - "null" + image_type: + type: + - string + - "null" + is_linked_with_zohocrm: + type: + - boolean + - "null" + item_id: + type: string + item_name: + type: + - string + - "null" + last_modified_time: + type: + - string + - "null" + name: + type: + - string + - "null" + product_type: + type: + - string + - "null" + rate: + type: + - number + - "null" + sku: + type: + - string + - "null" + source: + type: + - string + - "null" + status: + type: + - string + - "null" + tax_id: + type: + - string + - "null" + tax_name: + type: + - string + - "null" + tax_percentage: + type: + - number + - "null" + unit: + type: + - string + - "null" + zcrm_product_id: + type: + - string + - "null" + required: + - item_id + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + email: + type: + - string + - "null" + invitation_type: + type: + - string + - "null" + is_current_user: + type: + - boolean + - "null" + is_customer_segmented: + type: + - boolean + - "null" + is_employee: + type: + - boolean + - "null" + is_super_admin: + type: + - boolean + - "null" + is_vendor_segmented: + type: + - boolean + - "null" + mobile: + type: + - string + - "null" + name: + type: + - string + - "null" + photo_url: + type: + - string + - "null" + role_id: + type: + - string + - "null" + status: + type: + - string + - "null" + user_id: + type: string + user_role: + type: + - string + - "null" + user_type: + type: + - string + - "null" + required: + - user_id + contacts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + ach_supported: + type: + - boolean + - "null" + company_name: + type: + - string + - "null" + contact_id: + type: string + contact_name: + type: + - string + - "null" + contact_type: + type: + - string + - "null" + contact_type_formatted: + type: + - string + - "null" + created_time: + type: + - string + - "null" + created_time_formatted: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + custom_field_hash: + type: + - object + - "null" + custom_fields: + type: + - array + - "null" + customer_name: + type: + - string + - "null" + customer_sub_type: + type: + - string + - "null" + email: + type: + - string + - "null" + facebook: + type: + - string + - "null" + first_name: + type: + - string + - "null" + has_attachment: + type: + - boolean + - "null" + is_linked_with_zohocrm: + type: + - boolean + - "null" + language_code: + type: + - string + - "null" + language_code_formatted: + type: + - string + - "null" + last_modified_time: + type: + - string + - "null" + last_modified_time_formatted: + type: + - string + - "null" + last_name: + type: + - string + - "null" + mobile: + type: + - string + - "null" + outstanding_receivable_amount: + type: + - number + - "null" + outstanding_receivable_amount_bcy: + type: + - number + - "null" + pan_no: + type: + - string + - "null" + payment_terms: + type: + - number + - "null" + payment_terms_label: + type: + - string + - "null" + phone: + type: + - string + - "null" + portal_status: + type: + - string + - "null" + portal_status_formatted: + type: + - string + - "null" + source: + type: + - string + - "null" + status: + type: + - string + - "null" + twitter: + type: + - string + - "null" + unused_credits_receivable_amount: + type: + - number + - "null" + unused_credits_receivable_amount_bcy: + type: + - number + - "null" + vendor_name: + type: + - string + - "null" + website: + type: + - string + - "null" + required: + - contact_id + invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + ach_payment_initiated: + type: + - boolean + - "null" + adjustment: + type: + - number + - "null" + balance: + type: + - number + - "null" + billing_address: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + fax: + type: + - string + - "null" + phone: + type: + - string + - "null" + state: + type: + - string + - "null" + street2: + type: + - string + - "null" + zipcode: + type: + - string + - "null" + client_viewed_time: + type: + - string + - "null" + color_code: + type: + - string + - "null" + company_name: + type: + - string + - "null" + country: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_time: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + currency_symbol: + type: + - string + - "null" + current_sub_status: + type: + - string + - "null" + current_sub_status_id: + type: + - string + - "null" + custom_field_hash: + type: + - object + - "null" + custom_fields: + type: + - array + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + date: + type: + - string + - "null" + documents: + type: + - string + - "null" + due_date: + type: + - string + - "null" + due_days: + type: + - string + - "null" + email: + type: + - string + - "null" + exchange_rate: + type: + - number + - "null" + has_attachment: + type: + - boolean + - "null" + invoice_id: + type: string + invoice_number: + type: + - string + - "null" + invoice_url: + type: + - string + - "null" + is_emailed: + type: + - boolean + - "null" + is_pre_gst: + type: + - boolean + - "null" + is_viewed_by_client: + type: + - boolean + - "null" + is_viewed_in_mail: + type: + - boolean + - "null" + last_modified_time: + type: + - string + - "null" + last_payment_date: + type: + - string + - "null" + last_reminder_sent_date: + type: + - string + - "null" + mail_first_viewed_time: + type: + - string + - "null" + mail_last_viewed_time: + type: + - string + - "null" + no_of_copies: + type: + - number + - "null" + payment_expected_date: + type: + - string + - "null" + phone: + type: + - string + - "null" + project_name: + type: + - string + - "null" + reference_number: + type: + - string + - "null" + reminders_sent: + type: + - number + - "null" + salesperson_id: + type: + - string + - "null" + salesperson_name: + type: + - string + - "null" + schedule_time: + type: + - string + - "null" + shipping_address: + type: + - object + - "null" + properties: + address: + type: + - string + - "null" + attention: + type: + - string + - "null" + city: + type: + - string + - "null" + country: + type: + - string + - "null" + fax: + type: + - string + - "null" + phone: + type: + - string + - "null" + state: + type: + - string + - "null" + street2: + type: + - string + - "null" + zipcode: + type: + - string + - "null" + shipping_charge: + type: + - number + - "null" + show_no_of_copies: + type: + - boolean + - "null" + status: + type: + - string + - "null" + template_id: + type: + - string + - "null" + template_type: + type: + - string + - "null" + total: + type: + - number + - "null" + transaction_type: + type: + - string + - "null" + unprocessed_payment_amount: + type: + - number + - "null" + updated_time: + type: + - string + - "null" + write_off_amount: + type: + - number + - "null" + zcrm_potential_id: + type: + - string + - "null" + zcrm_potential_name: + type: + - string + - "null" + required: + - invoice_id + recurring_invoices: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + child_entity_type: + type: + - string + - "null" + created_time: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + end_date: + type: + - string + - "null" + last_four_digits: + type: + - string + - "null" + last_modified_time: + type: + - string + - "null" + last_sent_date: + type: + - string + - "null" + next_invoice_date: + type: + - string + - "null" + recurrence_frequency: + type: + - string + - "null" + recurrence_name: + type: + - string + - "null" + recurring_invoice_id: + type: string + reference_number: + type: + - string + - "null" + repeat_every: + type: + - number + - "null" + salesperson_id: + type: + - string + - "null" + salesperson_name: + type: + - string + - "null" + start_date: + type: + - string + - "null" + status: + type: + - string + - "null" + total: + type: + - number + - "null" + required: + - recurring_invoice_id + customer_payments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + amount: + type: + - number + - "null" + applied_invoices: + type: + - array + - "null" + bcy_amount: + type: + - number + - "null" + bcy_refunded_amount: + type: + - number + - "null" + bcy_unused_amount: + type: + - number + - "null" + created_time: + type: + - string + - "null" + custom_fields_list: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + date: + type: + - string + - "null" + documents: + type: + - string + - "null" + gateway_transaction_id: + type: + - string + - "null" + has_attachment: + type: + - boolean + - "null" + invoice_numbers: + type: + - string + - "null" + last_four_digits: + type: + - string + - "null" + last_modified_time: + type: + - string + - "null" + payment_gateway: + type: + - string + - "null" + payment_id: + type: string + payment_mode: + type: + - string + - "null" + payment_mode_formatted: + type: + - string + - "null" + payment_number: + type: + - string + - "null" + payment_status: + type: + - string + - "null" + payment_type: + type: + - string + - "null" + product_description: + type: + - string + - "null" + reference_number: + type: + - string + - "null" + settlement_status: + type: + - string + - "null" + tax_amount_withheld: + type: + - number + - "null" + unused_amount: + type: + - number + - "null" + required: + - payment_id + credit notes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + applied_invoices: + type: + - string + - "null" + balance: + type: + - number + - "null" + client_viewed_time: + type: + - string + - "null" + color_code: + type: + - string + - "null" + created_time: + type: + - string + - "null" + creditnote_id: + type: string + creditnote_number: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + current_sub_status: + type: + - string + - "null" + current_sub_status_id: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + date: + type: + - string + - "null" + exchange_rate: + type: + - number + - "null" + has_attachment: + type: + - boolean + - "null" + is_emailed: + type: + - boolean + - "null" + is_viewed_by_client: + type: + - boolean + - "null" + last_modified_time: + type: + - string + - "null" + price_precision: + type: + - number + - "null" + reference_number: + type: + - string + - "null" + salesperson_id: + type: + - string + - "null" + salesperson_name: + type: + - string + - "null" + status: + type: + - string + - "null" + template_id: + type: + - string + - "null" + template_type: + type: + - string + - "null" + total: + type: + - number + - "null" + required: + - creditnote_id + expenses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + account_name: + type: + - string + - "null" + bcy_total: + type: + - number + - "null" + bcy_total_without_tax: + type: + - number + - "null" + created_time: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + custom_fields_list: + type: + - string + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + date: + type: + - string + - "null" + distance: + type: + - number + - "null" + end_reading: + type: + - string + - "null" + exchange_rate: + type: + - number + - "null" + expense_id: + type: string + expense_receipt_name: + type: + - string + - "null" + expense_type: + type: + - string + - "null" + has_attachment: + type: + - boolean + - "null" + is_billable: + type: + - boolean + - "null" + is_personal: + type: + - boolean + - "null" + last_modified_time: + type: + - string + - "null" + mileage_rate: + type: + - number + - "null" + mileage_type: + type: + - string + - "null" + mileage_unit: + type: + - string + - "null" + reference_number: + type: + - string + - "null" + report_id: + type: + - string + - "null" + report_name: + type: + - string + - "null" + report_number: + type: + - string + - "null" + start_reading: + type: + - string + - "null" + status: + type: + - string + - "null" + total: + type: + - number + - "null" + total_without_tax: + type: + - number + - "null" + user_name: + type: + - string + - "null" + required: + - expense_id + taxes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + diff_rate_reason: + type: + - string + - "null" + end_date: + type: + - string + - "null" + is_default_tax: + type: + - boolean + - "null" + is_editable: + type: + - boolean + - "null" + is_inactive: + type: + - boolean + - "null" + last_modified_time: + type: + - string + - "null" + start_date: + type: + - string + - "null" + status: + type: + - string + - "null" + tax_id: + type: string + tax_name: + type: + - string + - "null" + tax_percentage: + type: + - number + - "null" + tax_specific_type: + type: + - string + - "null" + tax_specification: + type: + - string + - "null" + tax_type: + type: + - string + - "null" + required: + - tax_id diff --git a/airbyte-integrations/connectors/source-zoho-invoice/metadata.yaml b/airbyte-integrations/connectors/source-zoho-invoice/metadata.yaml new file mode 100644 index 000000000000..2fcfb54aa75d --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-invoice/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "zohoapis." + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-zoho-invoice + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + connectorSubtype: api + connectorType: source + definitionId: 6ee3d92d-b081-4024-9214-2987ae114c17 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-zoho-invoice + githubIssueLabel: source-zoho-invoice + icon: icon.svg + license: MIT + name: Zoho Invoice + releaseDate: 2024-11-05 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/zoho-invoice + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/zoho-invoice.md b/docs/integrations/sources/zoho-invoice.md new file mode 100644 index 000000000000..60abfe9c4a81 --- /dev/null +++ b/docs/integrations/sources/zoho-invoice.md @@ -0,0 +1,38 @@ +# Zoho Invoice +Zoho invoice is an invoicing software used by businesses. +With this connector we can extract data from various streams such as items , contacts and invoices streams. +Docs : https://www.zoho.com/invoice/api/v3/introduction/#overview + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `client_id` | `string` | Client ID. | | +| `client_secret` | `string` | Client secret. | | +| `client_refresh_token` | `string` | Refresh token. | | +| `organization_id` | `string` | Organization ID. TO be provided if a user belongs to multiple organizations | | +| `region` | `string` | Region. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| items | item_id | DefaultPaginator | ✅ | ❌ | +| users | | DefaultPaginator | ✅ | ❌ | +| contacts | contact_id | DefaultPaginator | ✅ | ❌ | +| invoices | invoice_id | DefaultPaginator | ✅ | ❌ | +| recurring_invoices | recurring_invoice_id | DefaultPaginator | ✅ | ❌ | +| customer_payments | payment_id | DefaultPaginator | ✅ | ❌ | +| credit notes | creditnote_id | DefaultPaginator | ✅ | ❌ | +| expenses | expense_id | DefaultPaginator | ✅ | ❌ | +| taxes | tax_id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-11-05 | | Initial release by [@ombhardwajj](https://github.com/ombhardwajj) via Connector Builder | + +
From cb88f8da432c984131274a47e930d2ba7a85d7a5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:20 +0100 Subject: [PATCH 746/808] care-quality-commission - Revert to source-declarative-manifest v5.17.0 (#48368) --- .../connectors/source-care-quality-commission/metadata.yaml | 4 ++-- docs/integrations/sources/care-quality-commission.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml b/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml index a2e07548b845..3a09aa0d8693 100644 --- a/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml +++ b/airbyte-integrations/connectors/source-care-quality-commission/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-care-quality-commission connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 2366b7bf-b83e-471c-b4a0-1405887fdf6e - dockerImageTag: 0.0.4 + dockerImageTag: 0.0.5 dockerRepository: airbyte/source-care-quality-commission githubIssueLabel: source-care-quality-commission icon: icon.svg diff --git a/docs/integrations/sources/care-quality-commission.md b/docs/integrations/sources/care-quality-commission.md index 2d57c8e18f2a..82e64673c2b5 100644 --- a/docs/integrations/sources/care-quality-commission.md +++ b/docs/integrations/sources/care-quality-commission.md @@ -25,6 +25,7 @@ https://www.cqc.org.uk/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| +| 0.0.5 | 2024-11-05 | [48368](https://github.com/airbytehq/airbyte/pull/48368) | Revert to source-declarative-manifest v5.17.0 | | 0.0.4 | 2024-11-05 | [48329](https://github.com/airbytehq/airbyte/pull/48329) | Update dependencies | | 0.0.3 | 2024-10-29 | [47897](https://github.com/airbytehq/airbyte/pull/47897) | Update dependencies | | 0.0.2 | 2024-10-28 | [47671](https://github.com/airbytehq/airbyte/pull/47671) | Update dependencies | From b5a774b21e1c4e50be566cc86052c026544db073 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:23 +0100 Subject: [PATCH 747/808] google-tasks - Revert to source-declarative-manifest v5.17.0 (#48366) --- .../connectors/source-google-tasks/metadata.yaml | 4 ++-- docs/integrations/sources/google-tasks.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-tasks/metadata.yaml b/airbyte-integrations/connectors/source-google-tasks/metadata.yaml index d7944004c5fc..2eb4040a59e9 100644 --- a/airbyte-integrations/connectors/source-google-tasks/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-tasks/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-google-tasks connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 751c2519-1446-416e-9736-9b98585f8125 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-google-tasks githubIssueLabel: source-google-tasks icon: icon.svg diff --git a/docs/integrations/sources/google-tasks.md b/docs/integrations/sources/google-tasks.md index ae2cca84bb0e..6e42b86b913c 100644 --- a/docs/integrations/sources/google-tasks.md +++ b/docs/integrations/sources/google-tasks.md @@ -43,6 +43,7 @@ Steps: | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-05 | [48366](https://github.com/airbytehq/airbyte/pull/48366) | Revert to source-declarative-manifest v5.17.0 | | 0.0.3 | 2024-11-05 | [47770](https://github.com/airbytehq/airbyte/pull/47770) | Update dependencies | | 0.0.2 | 2024-10-28 | [47550](https://github.com/airbytehq/airbyte/pull/47550) | Update dependencies | | 0.0.1 | 2024-09-12 | [45427](https://github.com/airbytehq/airbyte/pull/45427) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From fc802f8655fb1a79b486297141802986152d6d11 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:25 +0100 Subject: [PATCH 748/808] productboard - Revert to source-declarative-manifest v5.17.0 (#48365) --- .../connectors/source-productboard/metadata.yaml | 4 ++-- docs/integrations/sources/productboard.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-productboard/metadata.yaml b/airbyte-integrations/connectors/source-productboard/metadata.yaml index ae412af9a761..3234c6fa39f4 100644 --- a/airbyte-integrations/connectors/source-productboard/metadata.yaml +++ b/airbyte-integrations/connectors/source-productboard/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-productboard connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 43ae66ee-e3df-4fb7-bff5-9625d25cdc14 - dockerImageTag: 0.0.4 + dockerImageTag: 0.0.5 dockerRepository: airbyte/source-productboard githubIssueLabel: source-productboard icon: icon.svg diff --git a/docs/integrations/sources/productboard.md b/docs/integrations/sources/productboard.md index fbb68ab31b34..1e3816114432 100644 --- a/docs/integrations/sources/productboard.md +++ b/docs/integrations/sources/productboard.md @@ -36,6 +36,7 @@ A manifest only source for Productboard. https://www.productboard.com/ | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-------------------------------------------------------------------------------------------| +| 0.0.5 | 2024-11-05 | [48365](https://github.com/airbytehq/airbyte/pull/48365) | Revert to source-declarative-manifest v5.17.0 | | 0.0.4 | 2024-11-05 | [48324](https://github.com/airbytehq/airbyte/pull/48324) | Update dependencies | | 0.0.3 | 2024-10-29 | [47774](https://github.com/airbytehq/airbyte/pull/47774) | Update dependencies | | 0.0.2 | 2024-10-28 | [47677](https://github.com/airbytehq/airbyte/pull/47677) | Update dependencies | From 932d600f11aac0a4d25cd062fc9b54b93a3e0392 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:28 +0100 Subject: [PATCH 749/808] luma - Revert to source-declarative-manifest v5.17.0 (#48364) --- airbyte-integrations/connectors/source-luma/metadata.yaml | 4 ++-- docs/integrations/sources/luma.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-luma/metadata.yaml b/airbyte-integrations/connectors/source-luma/metadata.yaml index df3ffd81fbb9..a1ba4a491ec7 100644 --- a/airbyte-integrations/connectors/source-luma/metadata.yaml +++ b/airbyte-integrations/connectors/source-luma/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-luma connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 8ac29756-9a9d-4472-a20b-df29ac29764a - dockerImageTag: 0.0.4 + dockerImageTag: 0.0.5 dockerRepository: airbyte/source-luma githubIssueLabel: source-luma icon: icon.svg diff --git a/docs/integrations/sources/luma.md b/docs/integrations/sources/luma.md index e09a9e46db75..4e7e2b220bde 100644 --- a/docs/integrations/sources/luma.md +++ b/docs/integrations/sources/luma.md @@ -20,6 +20,7 @@ | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.5 | 2024-11-05 | [48364](https://github.com/airbytehq/airbyte/pull/48364) | Revert to source-declarative-manifest v5.17.0 | | 0.0.4 | 2024-11-05 | [48327](https://github.com/airbytehq/airbyte/pull/48327) | Update dependencies | | 0.0.3 | 2024-10-29 | [47746](https://github.com/airbytehq/airbyte/pull/47746) | Update dependencies | | 0.0.2 | 2024-10-28 | [47669](https://github.com/airbytehq/airbyte/pull/47669) | Update dependencies | From 34f12dfe4d151cf9e5b084bbd311c4de11d09dd5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:31 +0100 Subject: [PATCH 750/808] coingecko-coins - Revert to source-declarative-manifest v5.17.0 (#48363) --- .../connectors/source-coingecko-coins/metadata.yaml | 4 ++-- docs/integrations/sources/coingecko-coins.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml index 429777c5667a..507bb39897d0 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml +++ b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml @@ -2,14 +2,14 @@ data: connectorSubtype: api connectorType: source definitionId: 9cdd4183-d0ba-40c3-aad3-6f46d4103974 - dockerImageTag: 0.2.3 + dockerImageTag: 0.2.4 dockerRepository: airbyte/source-coingecko-coins githubIssueLabel: source-coingecko-coins icon: coingeckocoins.svg license: MIT name: CoinGecko Coins connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa remoteRegistries: pypi: enabled: false diff --git a/docs/integrations/sources/coingecko-coins.md b/docs/integrations/sources/coingecko-coins.md index 294424b01626..01fcedbd9051 100644 --- a/docs/integrations/sources/coingecko-coins.md +++ b/docs/integrations/sources/coingecko-coins.md @@ -52,6 +52,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------- | +| 0.2.4 | 2024-11-05 | [48363](https://github.com/airbytehq/airbyte/pull/48363) | Revert to source-declarative-manifest v5.17.0 | | 0.2.3 | 2024-11-05 | [48330](https://github.com/airbytehq/airbyte/pull/48330) | Update dependencies | | 0.2.2 | 2024-10-29 | [47804](https://github.com/airbytehq/airbyte/pull/47804) | Update dependencies | | 0.2.1 | 2024-10-28 | [47559](https://github.com/airbytehq/airbyte/pull/47559) | Update dependencies | From 7794d11adfa753e8988f7d04030e37bae6857d0a Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:34 +0100 Subject: [PATCH 751/808] safetyculture - Revert to source-declarative-manifest v5.17.0 (#48362) --- .../connectors/source-safetyculture/metadata.yaml | 4 ++-- docs/integrations/sources/safetyculture.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-safetyculture/metadata.yaml b/airbyte-integrations/connectors/source-safetyculture/metadata.yaml index e091385e41a2..6eed868a7c1d 100644 --- a/airbyte-integrations/connectors/source-safetyculture/metadata.yaml +++ b/airbyte-integrations/connectors/source-safetyculture/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-safetyculture connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 570b875e-52d9-40e0-a43c-340ebae2d9f8 - dockerImageTag: 0.0.4 + dockerImageTag: 0.0.5 dockerRepository: airbyte/source-safetyculture githubIssueLabel: source-safetyculture icon: icon.svg diff --git a/docs/integrations/sources/safetyculture.md b/docs/integrations/sources/safetyculture.md index 387f6495568d..8071570dd87b 100644 --- a/docs/integrations/sources/safetyculture.md +++ b/docs/integrations/sources/safetyculture.md @@ -54,6 +54,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.5 | 2024-11-05 | [48362](https://github.com/airbytehq/airbyte/pull/48362) | Revert to source-declarative-manifest v5.17.0 | | 0.0.4 | 2024-11-05 | [48325](https://github.com/airbytehq/airbyte/pull/48325) | Update dependencies | | 0.0.3 | 2024-10-29 | [47839](https://github.com/airbytehq/airbyte/pull/47839) | Update dependencies | | 0.0.2 | 2024-10-28 | [47586](https://github.com/airbytehq/airbyte/pull/47586) | Update dependencies | From ae9065cce5ee5179588fb240ce36e8d963cf6709 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:37 +0100 Subject: [PATCH 752/808] secoda - Revert to source-declarative-manifest v5.17.0 (#48360) --- airbyte-integrations/connectors/source-secoda/metadata.yaml | 4 ++-- docs/integrations/sources/secoda.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-secoda/metadata.yaml b/airbyte-integrations/connectors/source-secoda/metadata.yaml index e8a681f2ff68..85727c4486fd 100644 --- a/airbyte-integrations/connectors/source-secoda/metadata.yaml +++ b/airbyte-integrations/connectors/source-secoda/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: da9fc6b9-8059-4be0-b204-f56e22e4d52d - dockerImageTag: 0.2.4 + dockerImageTag: 0.2.5 dockerRepository: airbyte/source-secoda githubIssueLabel: source-secoda icon: secoda.svg @@ -42,5 +42,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/secoda.md b/docs/integrations/sources/secoda.md index f85f175ea9db..33cea1f4dee5 100644 --- a/docs/integrations/sources/secoda.md +++ b/docs/integrations/sources/secoda.md @@ -32,6 +32,7 @@ This source can sync data from the [Secoda API](https://docs.secoda.co/secoda-ap | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------- | +| 0.2.5 | 2024-11-05 | [48360](https://github.com/airbytehq/airbyte/pull/48360) | Revert to source-declarative-manifest v5.17.0 | | 0.2.4 | 2024-11-05 | [48337](https://github.com/airbytehq/airbyte/pull/48337) | Update dependencies | | 0.2.3 | 2024-10-29 | [47908](https://github.com/airbytehq/airbyte/pull/47908) | Update dependencies | | 0.2.2 | 2024-10-28 | [47566](https://github.com/airbytehq/airbyte/pull/47566) | Update dependencies | From e33b6ce9f30c0c388c8d0aa3c235f240029ef463 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:39 +0100 Subject: [PATCH 753/808] hellobaton - Revert to source-declarative-manifest v5.17.0 (#48359) --- .../connectors/source-hellobaton/metadata.yaml | 4 ++-- docs/integrations/sources/hellobaton.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-hellobaton/metadata.yaml b/airbyte-integrations/connectors/source-hellobaton/metadata.yaml index d843e75a2883..1b85e3cc8140 100644 --- a/airbyte-integrations/connectors/source-hellobaton/metadata.yaml +++ b/airbyte-integrations/connectors/source-hellobaton/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 492b56d1-937c-462e-8076-21ad2031e784 - dockerImageTag: 0.3.3 + dockerImageTag: 0.3.4 dockerRepository: airbyte/source-hellobaton githubIssueLabel: source-hellobaton icon: hellobaton.svg @@ -43,5 +43,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/hellobaton.md b/docs/integrations/sources/hellobaton.md index e197f1bea54f..bf274aa4a3f8 100644 --- a/docs/integrations/sources/hellobaton.md +++ b/docs/integrations/sources/hellobaton.md @@ -56,6 +56,7 @@ The connector is rate limited at 1000 requests per minute per api key. If you fi | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------- | +| 0.3.4 | 2024-11-05 | [48359](https://github.com/airbytehq/airbyte/pull/48359) | Revert to source-declarative-manifest v5.17.0 | | 0.3.3 | 2024-11-05 | [48320](https://github.com/airbytehq/airbyte/pull/48320) | Update dependencies | | 0.3.2 | 2024-10-22 | [47236](https://github.com/airbytehq/airbyte/pull/47236) | Update dependencies | | 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version | From aff120591126461821c17a4de4dafa7e9e023715 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:42 +0100 Subject: [PATCH 754/808] fulcrum - Revert to source-declarative-manifest v5.17.0 (#48358) --- airbyte-integrations/connectors/source-fulcrum/metadata.yaml | 4 ++-- docs/integrations/sources/fulcrum.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-fulcrum/metadata.yaml b/airbyte-integrations/connectors/source-fulcrum/metadata.yaml index dd48d91b4661..8b7617349087 100644 --- a/airbyte-integrations/connectors/source-fulcrum/metadata.yaml +++ b/airbyte-integrations/connectors/source-fulcrum/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-fulcrum connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 1028d4dc-005b-484b-9164-5a81e0dbac19 - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-fulcrum githubIssueLabel: source-fulcrum icon: icon.svg diff --git a/docs/integrations/sources/fulcrum.md b/docs/integrations/sources/fulcrum.md index 60fad4ae3f2f..1a83e4b3bfbb 100644 --- a/docs/integrations/sources/fulcrum.md +++ b/docs/integrations/sources/fulcrum.md @@ -36,6 +36,7 @@ Airbyte connector for Fulcrum would enable seamless data extraction from the Ful | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-05 | [48358](https://github.com/airbytehq/airbyte/pull/48358) | Revert to source-declarative-manifest v5.17.0 | | 0.0.2 | 2024-11-05 | [48333](https://github.com/airbytehq/airbyte/pull/48333) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From 0ebf2975cf938660434e9497829ec39de4feae79 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:46 +0100 Subject: [PATCH 755/808] datascope - Revert to source-declarative-manifest v5.17.0 (#48357) --- .../connectors/source-datascope/metadata.yaml | 4 ++-- docs/integrations/sources/datascope.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-datascope/metadata.yaml b/airbyte-integrations/connectors/source-datascope/metadata.yaml index 79b2c55cfe0a..70c8383bdec3 100644 --- a/airbyte-integrations/connectors/source-datascope/metadata.yaml +++ b/airbyte-integrations/connectors/source-datascope/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8e1ae2d2-4790-44d3-9d83-75b3fc3940ff - dockerImageTag: 0.2.4 + dockerImageTag: 0.2.5 dockerRepository: airbyte/source-datascope githubIssueLabel: source-datascope icon: datascope.svg @@ -42,5 +42,5 @@ data: # type: GSM # alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa metadataSpecVersion: "1.0" diff --git a/docs/integrations/sources/datascope.md b/docs/integrations/sources/datascope.md index 51dba5b481f7..e0bba516f963 100644 --- a/docs/integrations/sources/datascope.md +++ b/docs/integrations/sources/datascope.md @@ -64,6 +64,7 @@ GET https://www.mydatascope.com/api/external/locations | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------- | +| 0.2.5 | 2024-11-05 | [48357](https://github.com/airbytehq/airbyte/pull/48357) | Revert to source-declarative-manifest v5.17.0 | | 0.2.4 | 2024-11-05 | [48336](https://github.com/airbytehq/airbyte/pull/48336) | Update dependencies | | 0.2.3 | 2024-10-29 | [47857](https://github.com/airbytehq/airbyte/pull/47857) | Update dependencies | | 0.2.2 | 2024-10-28 | [47451](https://github.com/airbytehq/airbyte/pull/47451) | Update dependencies | From e3e63246f48b2dd0268e8a595236085fed5f7fcc Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:48 +0100 Subject: [PATCH 756/808] kisi - Revert to source-declarative-manifest v5.17.0 (#48356) --- airbyte-integrations/connectors/source-kisi/metadata.yaml | 4 ++-- docs/integrations/sources/kisi.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-kisi/metadata.yaml b/airbyte-integrations/connectors/source-kisi/metadata.yaml index 85613986ed0b..a88aa1fee8ef 100644 --- a/airbyte-integrations/connectors/source-kisi/metadata.yaml +++ b/airbyte-integrations/connectors/source-kisi/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-kisi connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 7706728b-f644-456e-8dd4-ac92c4d8f31a - dockerImageTag: 0.0.4 + dockerImageTag: 0.0.5 dockerRepository: airbyte/source-kisi githubIssueLabel: source-kisi icon: icon.svg diff --git a/docs/integrations/sources/kisi.md b/docs/integrations/sources/kisi.md index 44a059b82522..22cbee9cd98a 100644 --- a/docs/integrations/sources/kisi.md +++ b/docs/integrations/sources/kisi.md @@ -39,6 +39,7 @@ You can learn more about the API key here https://api.kisi.io/docs#/ | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.5 | 2024-11-05 | [48356](https://github.com/airbytehq/airbyte/pull/48356) | Revert to source-declarative-manifest v5.17.0 | | 0.0.4 | 2024-11-05 | [48332](https://github.com/airbytehq/airbyte/pull/48332) | Update dependencies | | 0.0.3 | 2024-10-29 | [47914](https://github.com/airbytehq/airbyte/pull/47914) | Update dependencies | | 0.0.2 | 2024-10-28 | [47606](https://github.com/airbytehq/airbyte/pull/47606) | Update dependencies | From b8a86e48d24b1bc7b88c0e91c543d9faf02e4e37 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:51 +0100 Subject: [PATCH 757/808] clarif-ai - Revert to source-declarative-manifest v5.17.0 (#48355) --- .../connectors/source-clarif-ai/metadata.yaml | 4 ++-- docs/integrations/sources/clarif-ai.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml b/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml index 8328cb998342..bbd72150bf34 100644 --- a/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml +++ b/airbyte-integrations/connectors/source-clarif-ai/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-clarif-ai connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: 7fbeaeea-2d0d-4f13-8200-fa228494d91c - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.3 dockerRepository: airbyte/source-clarif-ai githubIssueLabel: source-clarif-ai icon: icon.svg diff --git a/docs/integrations/sources/clarif-ai.md b/docs/integrations/sources/clarif-ai.md index 485def82c635..1fecc0edb7e9 100644 --- a/docs/integrations/sources/clarif-ai.md +++ b/docs/integrations/sources/clarif-ai.md @@ -31,6 +31,7 @@ API Documentation: https://docs.clarifai.com/api-guide/api-overview/helpful-api- | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.3 | 2024-11-05 | [48355](https://github.com/airbytehq/airbyte/pull/48355) | Revert to source-declarative-manifest v5.17.0 | | 0.0.2 | 2024-11-05 | [48321](https://github.com/airbytehq/airbyte/pull/48321) | Update dependencies | | 0.0.1 | 2024-10-21 | | Initial release by [@gemsteam](https://github.com/gemsteam) via Connector Builder | From 94019a74ac0b64e30974976184d4def002f365ea Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:54 +0100 Subject: [PATCH 758/808] beamer - Revert to source-declarative-manifest v5.17.0 (#48354) --- airbyte-integrations/connectors/source-beamer/metadata.yaml | 4 ++-- docs/integrations/sources/beamer.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-beamer/metadata.yaml b/airbyte-integrations/connectors/source-beamer/metadata.yaml index f8d27c7e966a..054fb723330d 100644 --- a/airbyte-integrations/connectors/source-beamer/metadata.yaml +++ b/airbyte-integrations/connectors/source-beamer/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-beamer connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: b928158d-4d2a-4ea6-a9c6-efa90f5c1e5d - dockerImageTag: 0.0.2 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-beamer githubIssueLabel: source-beamer icon: icon.svg diff --git a/docs/integrations/sources/beamer.md b/docs/integrations/sources/beamer.md index a58dba5b2092..1d147fb76ad4 100644 --- a/docs/integrations/sources/beamer.md +++ b/docs/integrations/sources/beamer.md @@ -20,6 +20,7 @@ Beamer NPS source | Version | Date | Pull Request | Subject | |---------|------|--------------|---------| +| 0.0.4 | 2024-11-05 | [48354](https://github.com/airbytehq/airbyte/pull/48354) | Revert to source-declarative-manifest v5.17.0 | | 0.0.2 | 2024-11-05 | [48335](https://github.com/airbytehq/airbyte/pull/48335) | Update dependencies | | 0.0.1 | 2024-09-17 | | Initial release by [@caydenm](https://github.com/caydenm) via Connector Builder | From 09e7385a259e4edf1c5a41b1f4c15b59ebb6642c Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Nov 2024 20:31:57 +0100 Subject: [PATCH 759/808] sage-hr - Revert to source-declarative-manifest v5.17.0 (#48353) --- airbyte-integrations/connectors/source-sage-hr/metadata.yaml | 4 ++-- docs/integrations/sources/sage-hr.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-sage-hr/metadata.yaml b/airbyte-integrations/connectors/source-sage-hr/metadata.yaml index ecf56277ca7c..154973b569e2 100644 --- a/airbyte-integrations/connectors/source-sage-hr/metadata.yaml +++ b/airbyte-integrations/connectors/source-sage-hr/metadata.yaml @@ -13,11 +13,11 @@ data: enabled: false packageName: airbyte-source-sage-hr connectorBuildOptions: - baseImage: docker.io/airbyte/source-declarative-manifest:6.1.1@sha256:2c0f02fecb74df212054dea8bb971be8e1247a3c175c1ac45e603f5ec67eb7c6 + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa connectorSubtype: api connectorType: source definitionId: d8384215-9de6-4268-bbea-40c636ee14c7 - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-sage-hr githubIssueLabel: source-sage-hr icon: icon.svg diff --git a/docs/integrations/sources/sage-hr.md b/docs/integrations/sources/sage-hr.md index 8306f2c062ae..a4a1e2bc2dce 100644 --- a/docs/integrations/sources/sage-hr.md +++ b/docs/integrations/sources/sage-hr.md @@ -31,6 +31,7 @@ The Sage HR Airbyte Connector enables seamless data integration, allowing you to | Version | Date | Pull Request | Subject | |------------------|-------------------|--------------|----------------| +| 0.0.4 | 2024-11-05 | [48353](https://github.com/airbytehq/airbyte/pull/48353) | Revert to source-declarative-manifest v5.17.0 | | 0.0.3 | 2024-11-05 | [48328](https://github.com/airbytehq/airbyte/pull/48328) | Update dependencies | | 0.0.2 | 2024-10-28 | [47581](https://github.com/airbytehq/airbyte/pull/47581) | Update dependencies | | 0.0.1 | 2024-10-08 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | From e99938a989f49c8a3a392a81915ecf1db4aaf56d Mon Sep 17 00:00:00 2001 From: Maxime Carbonneau-Leclerc <3360483+maxi297@users.noreply.github.com> Date: Tue, 5 Nov 2024 15:18:07 -0500 Subject: [PATCH 760/808] Concurrent cursor support multiple formats (#48361) --- .../parsers/model_to_component_factory.py | 5 ++-- .../datetime_stream_state_converter.py | 27 ++++++++++++++++--- .../test_model_to_component_factory.py | 4 +-- .../test_concurrent_declarative_source.py | 2 +- .../streams/concurrent/test_adapters.py | 4 +-- .../test_datetime_state_converter.py | 21 +++++++++++++++ 6 files changed, 53 insertions(+), 10 deletions(-) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py index db20ffd8db0e..01b76dcdb492 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py @@ -172,7 +172,7 @@ from airbyte_cdk.sources.message import InMemoryMessageRepository, LogAppenderMessageRepositoryDecorator, MessageRepository from airbyte_cdk.sources.streams.concurrent.cursor import ConcurrentCursor, CursorField from airbyte_cdk.sources.streams.concurrent.state_converters.datetime_stream_state_converter import ( - CustomOutputFormatConcurrentStreamStateConverter, + CustomFormatConcurrentStreamStateConverter, DateTimeStreamStateConverter, EpochValueConcurrentStreamStateConverter, ) @@ -532,8 +532,9 @@ def create_concurrent_cursor_from_datetime_based_cursor( if datetime_format == self.EPOCH_DATETIME_FORMAT: connector_state_converter = EpochValueConcurrentStreamStateConverter(is_sequential_state=True) else: - connector_state_converter = CustomOutputFormatConcurrentStreamStateConverter( + connector_state_converter = CustomFormatConcurrentStreamStateConverter( datetime_format=datetime_format, + input_datetime_formats=datetime_based_cursor_model.cursor_datetime_formats, is_sequential_state=True, cursor_granularity=cursor_granularity, # type: ignore # Having issues w/ inspection for GapType and CursorValueType as shown in existing tests. Confirmed functionality is working in practice diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py index 398093204e7c..6447a02d8acd 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py @@ -4,9 +4,13 @@ from abc import abstractmethod from datetime import datetime, timedelta, timezone -from typing import Any, Callable, MutableMapping, Optional, Tuple +from typing import Any, Callable, List, MutableMapping, Optional, Tuple import pendulum + +# FIXME We would eventually like the Concurrent package do be agnostic of the declarative package. However, this is a breaking change and +# the goal in the short term is only to fix the issue we are seeing for source-declarative-manifest. +from airbyte_cdk.sources.declarative.datetime.datetime_parser import DatetimeParser from airbyte_cdk.sources.streams.concurrent.cursor import CursorField from airbyte_cdk.sources.streams.concurrent.state_converters.abstract_stream_state_converter import ( AbstractStreamStateConverter, @@ -159,15 +163,32 @@ def parse_timestamp(self, timestamp: str) -> datetime: return dt_object # type: ignore # we are manually type checking because pendulum.parse may return different types -class CustomOutputFormatConcurrentStreamStateConverter(IsoMillisConcurrentStreamStateConverter): +class CustomFormatConcurrentStreamStateConverter(IsoMillisConcurrentStreamStateConverter): """ Datetime State converter that emits state according to the supplied datetime format. The converter supports reading incoming state in any valid datetime format via Pendulum. """ - def __init__(self, datetime_format: str, is_sequential_state: bool = True, cursor_granularity: Optional[timedelta] = None): + def __init__( + self, + datetime_format: str, + input_datetime_formats: Optional[List[str]] = None, + is_sequential_state: bool = True, + cursor_granularity: Optional[timedelta] = None, + ): super().__init__(is_sequential_state=is_sequential_state, cursor_granularity=cursor_granularity) self._datetime_format = datetime_format + self._input_datetime_formats = input_datetime_formats if input_datetime_formats else [] + self._input_datetime_formats += [self._datetime_format] + self._parser = DatetimeParser() def output_format(self, timestamp: datetime) -> str: return timestamp.strftime(self._datetime_format) + + def parse_timestamp(self, timestamp: str) -> datetime: + for datetime_format in self._input_datetime_formats: + try: + return self._parser.parse(timestamp, datetime_format) + except ValueError: + pass + raise ValueError(f"No format in {self._input_datetime_formats} matching {timestamp}") diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py b/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py index 84083a0c9d44..e28d60679e32 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py @@ -96,7 +96,7 @@ from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource from airbyte_cdk.sources.streams.concurrent.cursor import ConcurrentCursor from airbyte_cdk.sources.streams.concurrent.state_converters.datetime_stream_state_converter import ( - CustomOutputFormatConcurrentStreamStateConverter, + CustomFormatConcurrentStreamStateConverter, ) from airbyte_cdk.sources.streams.http.error_handlers.response_models import ResponseAction from airbyte_cdk.sources.streams.http.requests_native_auth.oauth import SingleUseRefreshTokenOauth2Authenticator @@ -2648,7 +2648,7 @@ def test_create_concurrent_cursor_from_datetime_based_cursor_all_fields(stream_s assert concurrent_cursor._end_provider() == expected_end assert concurrent_cursor._concurrent_state == expected_concurrent_state - assert isinstance(stream_state_converter, CustomOutputFormatConcurrentStreamStateConverter) + assert isinstance(stream_state_converter, CustomFormatConcurrentStreamStateConverter) assert stream_state_converter._datetime_format == expected_datetime_format assert stream_state_converter._is_sequential_state assert stream_state_converter._cursor_granularity == expected_cursor_granularity diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/test_concurrent_declarative_source.py b/airbyte-cdk/python/unit_tests/sources/declarative/test_concurrent_declarative_source.py index f5718bcb351f..e8d31aa81874 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/test_concurrent_declarative_source.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/test_concurrent_declarative_source.py @@ -462,7 +462,7 @@ def test_create_concurrent_cursor(): incoming_locations_state = { "slices": [ - {"start": "2024-07-01T00:00:00.000Z", "end": "2024-07-31T00:00:00.000Z"}, + {"start": "2024-07-01T00:00:00", "end": "2024-07-31T00:00:00"}, ], "state_type": "date-range" } diff --git a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_adapters.py b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_adapters.py index 7a4ece0c0a9f..c5c44a780176 100644 --- a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_adapters.py +++ b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_adapters.py @@ -22,7 +22,7 @@ from airbyte_cdk.sources.streams.concurrent.exceptions import ExceptionWithDisplayMessage from airbyte_cdk.sources.streams.concurrent.partitions.record import Record from airbyte_cdk.sources.streams.concurrent.state_converters.datetime_stream_state_converter import ( - CustomOutputFormatConcurrentStreamStateConverter, + CustomFormatConcurrentStreamStateConverter, ) from airbyte_cdk.sources.streams.core import Stream from airbyte_cdk.sources.types import StreamSlice @@ -377,7 +377,7 @@ def test_cursor_partition_generator(): stream = Mock() cursor = Mock() message_repository = Mock() - connector_state_converter = CustomOutputFormatConcurrentStreamStateConverter(datetime_format="%Y-%m-%dT%H:%M:%S") + connector_state_converter = CustomFormatConcurrentStreamStateConverter(datetime_format="%Y-%m-%dT%H:%M:%S") cursor_field = Mock() slice_boundary_fields = ("start", "end") diff --git a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_datetime_state_converter.py b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_datetime_state_converter.py index 7a8e4027b43d..d139656f8212 100644 --- a/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_datetime_state_converter.py +++ b/airbyte-cdk/python/unit_tests/sources/streams/concurrent/test_datetime_state_converter.py @@ -8,6 +8,7 @@ from airbyte_cdk.sources.streams.concurrent.cursor import CursorField from airbyte_cdk.sources.streams.concurrent.state_converters.abstract_stream_state_converter import ConcurrencyCompatibleStateType from airbyte_cdk.sources.streams.concurrent.state_converters.datetime_stream_state_converter import ( + CustomFormatConcurrentStreamStateConverter, EpochValueConcurrentStreamStateConverter, IsoMillisConcurrentStreamStateConverter, ) @@ -367,3 +368,23 @@ def test_convert_to_sequential_state(converter, concurrent_state, expected_outpu def test_convert_to_sequential_state_no_slices_returns_legacy_state(converter, concurrent_state, expected_output_state): with pytest.raises(RuntimeError): converter.convert_to_state_message(CursorField("created"), concurrent_state) + + +def test_given_multiple_input_datetime_format_when_parse_timestamp_then_iterate_until_successful_parsing(): + output_format = "%Y-%m-%dT%H:%M:%S" + input_formats = ["%Y-%m-%dT%H:%M:%S.%f", "%Y-%m-%d"] + converter = CustomFormatConcurrentStreamStateConverter(output_format, input_formats) + + parsed_datetime = converter.parse_timestamp("2024-01-01") + + assert parsed_datetime == datetime(2024, 1, 1, tzinfo=timezone.utc) + + +def test_given_when_parse_timestamp_then_eventually_fallback_on_output_format(): + output_format = "%Y-%m-%dT%H:%M:%S" + input_formats = ["%Y-%m-%dT%H:%M:%S.%f", "%Y-%m-%d"] + converter = CustomFormatConcurrentStreamStateConverter(output_format, input_formats) + + parsed_datetime = converter.parse_timestamp("2024-01-01T02:00:00") + + assert parsed_datetime == datetime(2024, 1, 1, 2, 0, 0, tzinfo=timezone.utc) From 89f08b732f8cd5e632b04e928734b4dea0579a3f Mon Sep 17 00:00:00 2001 From: maxi297 Date: Tue, 5 Nov 2024 20:21:31 +0000 Subject: [PATCH 761/808] =?UTF-8?q?=F0=9F=A4=96=20minor=20bump=20Python=20?= =?UTF-8?q?CDK=20to=20version=206.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-cdk/python/CHANGELOG.md | 3 +++ airbyte-cdk/python/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index d892e89ba5f9..90d513a24afb 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 6.2.0 +Support multiple input datetime formats as part of the concurrent cursor + ## 6.1.1 fix streams discover diff --git a/airbyte-cdk/python/pyproject.toml b/airbyte-cdk/python/pyproject.toml index a8ea4fa7661f..cda13ba93c7f 100644 --- a/airbyte-cdk/python/pyproject.toml +++ b/airbyte-cdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-cdk" -version = "6.1.1" +version = "6.2.0" description = "A framework for writing Airbyte Connectors." authors = ["Airbyte "] license = "MIT" From ddfa5375c4c588b24fb10b023512a68ee9434a5c Mon Sep 17 00:00:00 2001 From: maxi297 Date: Tue, 5 Nov 2024 20:28:05 +0000 Subject: [PATCH 762/808] =?UTF-8?q?=F0=9F=A4=96=20Cut=20version=206.2.0=20?= =?UTF-8?q?of=20source-declarative-manifest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-declarative-manifest/metadata.yaml | 2 +- .../connectors/source-declarative-manifest/poetry.lock | 8 ++++---- .../connectors/source-declarative-manifest/pyproject.toml | 4 ++-- docs/integrations/sources/low-code.md | 1 + 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml index 84ed714ceacd..95c37b1e2e40 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml +++ b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml @@ -8,7 +8,7 @@ data: connectorType: source definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436 # This version should not be updated manually - it is updated by the CDK release workflow. - dockerImageTag: 6.1.2 + dockerImageTag: 6.2.0 dockerRepository: airbyte/source-declarative-manifest # This page is hidden from the docs for now, since the connector is not in any Airbyte registries. documentationUrl: https://docs.airbyte.com/integrations/sources/low-code diff --git a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock index 218b9500329f..5877e15bc13c 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock +++ b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "6.1.1" +version = "6.2.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-6.1.1-py3-none-any.whl", hash = "sha256:f2b93260d34549031ca174bed55d345cf493fd8822790cc72c6c413682885313"}, - {file = "airbyte_cdk-6.1.1.tar.gz", hash = "sha256:6506b09d3f33381b30507ccc1f9e6346892b1a958489df92470c0e5751ef695c"}, + {file = "airbyte_cdk-6.2.0-py3-none-any.whl", hash = "sha256:731f908577800a0c3f7f930629955ad27429cda3aed3c2436a9230f0692732fd"}, + {file = "airbyte_cdk-6.2.0.tar.gz", hash = "sha256:019e360c7e343246285b467d2a4d5aa9cb725690f818bc7056eb9e69fbdbc895"}, ] [package.dependencies] @@ -1779,4 +1779,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10,<3.12" -content-hash = "4a9cdfc0707227b9909e264617d1ea921827ecfb2fa4e31fbb70bad1fbf50735" +content-hash = "eb2117f91ca29b32f5c630abeb0f86872aef6a883540a32bb87a3a84e16d49f8" diff --git a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml index 9a27d279901e..d90d10ca93b8 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml +++ b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.1.2" +version = "6.2.0" name = "source-declarative-manifest" description = "Base source implementation for low-code sources." authors = ["Airbyte "] @@ -17,7 +17,7 @@ include = "source_declarative_manifest" [tool.poetry.dependencies] python = "^3.10,<3.12" -airbyte-cdk = "6.1.1" +airbyte-cdk = "6.2.0" [tool.poetry.scripts] source-declarative-manifest = "source_declarative_manifest.run:run" diff --git a/docs/integrations/sources/low-code.md b/docs/integrations/sources/low-code.md index 3b7ea75af95a..a14575a9a378 100644 --- a/docs/integrations/sources/low-code.md +++ b/docs/integrations/sources/low-code.md @@ -9,6 +9,7 @@ The changelog below is automatically updated by the `bump_version` command as pa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 6.2.0 | 2024-11-05 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.2.0 | | 6.1.2 | 2024-11-05 | [48344](https://github.com/airbytehq/airbyte/pull/48344) | Fix discover failing on new CDK | | 6.1.1 | 2024-11-04 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.1.1 | | 6.1.0 | 2024-10-31 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.1.0 | From 9a51bce6f63e099a49f0f24dee9fd9dedf06ef29 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Tue, 5 Nov 2024 13:16:36 -0800 Subject: [PATCH 763/808] Bulk load CDK: Add test with every single airbyte type (#48370) --- .../MockBasicFunctionalityIntegrationTest.kt | 7 + .../io/airbyte/cdk/load/data/AirbyteValue.kt | 1 + .../load/data/json/AirbyteTypeToJsonSchema.kt | 3 +- .../cdk/load/data/json/JsonToAirbyteValue.kt | 11 +- .../cdk/load/test/util/RecordDiffer.kt | 28 +- .../BasicFunctionalityIntegrationTest.kt | 355 +++++++++++++++++- ...evNullBasicFunctionalityIntegrationTest.kt | 2 + .../destination/s3_v2/S3V2WriteTest.kt | 38 ++ 8 files changed, 432 insertions(+), 13 deletions(-) diff --git a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt index a633183deed4..874489a1d463 100644 --- a/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt @@ -8,6 +8,7 @@ import io.airbyte.cdk.load.test.util.NoopDestinationCleaner import io.airbyte.cdk.load.test.util.NoopExpectedRecordMapper import io.airbyte.cdk.load.test.util.NoopNameMapper import io.airbyte.cdk.load.write.BasicFunctionalityIntegrationTest +import io.airbyte.cdk.load.write.Untyped import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test @@ -25,6 +26,7 @@ class MockBasicFunctionalityIntegrationTest : promoteUnionToObject = false, preserveUndeclaredFields = true, commitDataIncrementally = false, + allTypesBehavior = Untyped, ) { @Test override fun testBasicWrite() { @@ -86,4 +88,9 @@ class MockBasicFunctionalityIntegrationTest : override fun testUnions() { super.testUnions() } + + @Test + override fun testAllTypes() { + super.testAllTypes() + } } diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt index 65143aaf5eac..fb7d7657a5ca 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValue.kt @@ -16,6 +16,7 @@ sealed interface AirbyteValue { companion object { fun from(value: Any?): AirbyteValue = when (value) { + is AirbyteValue -> value null -> NullValue is String -> StringValue(value) is Boolean -> BooleanValue(value) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt index 101f9344ba41..c1f290a6f894 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt @@ -64,7 +64,8 @@ class AirbyteTypeToJsonSchema { val timestampNode = ofType("string").put("format", "date-time") timestampNode.put("airbyte_type", "timestamp_without_timezone") } - is UnknownType -> throw IllegalArgumentException("Unknown type: $airbyteType") + // In case of unknown type, just return {} (i.e. the accept-all JsonSchema) + is UnknownType -> JsonNodeFactory.instance.objectNode() } } diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt index 6145f09e0fb8..aada67af68ee 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt @@ -6,6 +6,7 @@ package io.airbyte.cdk.load.data.json import com.fasterxml.jackson.databind.JsonNode import io.airbyte.cdk.load.data.* +import io.airbyte.cdk.util.Jsons import java.math.BigDecimal /** @@ -34,7 +35,7 @@ class JsonToAirbyteValue { is ObjectType -> toObject(json, schema) is ObjectTypeWithoutSchema, is ObjectTypeWithEmptySchema -> toObjectWithoutSchema(json) - is StringType -> StringValue(json.asText()) + is StringType -> toString(json) is TimeTypeWithTimezone, is TimeTypeWithoutTimezone -> TimeValue(json.asText()) is TimestampTypeWithTimezone, @@ -67,6 +68,14 @@ class JsonToAirbyteValue { return ArrayValue(json.map { fromJson(it) }) } + private fun toString(json: JsonNode): StringValue { + return if (json.isTextual) { + StringValue(json.asText()) + } else { + StringValue(Jsons.writeValueAsString(json)) + } + } + private fun toBoolean(json: JsonNode): BooleanValue { val boolVal = when { diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt index 2dfe4035b657..c9310efe66f1 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/test/util/RecordDiffer.kt @@ -271,17 +271,25 @@ class RecordDiffer( // Handle temporal types specifically, because they require explicit parsing return when (v1) { is DateValue -> - LocalDate.parse(v1.value) - .compareTo(LocalDate.parse((v2 as DateValue).value)) + try { + LocalDate.parse(v1.value) + .compareTo(LocalDate.parse((v2 as DateValue).value)) + } catch (e: Exception) { + v1.value.compareTo((v2 as DateValue).value) + } is TimeValue -> { try { val time1 = LocalTime.parse(v1.value) val time2 = LocalTime.parse((v2 as TimeValue).value) time1.compareTo(time2) } catch (e: Exception) { - val time1 = OffsetTime.parse(v1.value) - val time2 = OffsetTime.parse((v2 as TimeValue).value) - time1.compareTo(time2) + try { + val time1 = OffsetTime.parse(v1.value) + val time2 = OffsetTime.parse((v2 as TimeValue).value) + time1.compareTo(time2) + } catch (e: Exception) { + v1.value.compareTo((v2 as TimeValue).value) + } } } is TimestampValue -> { @@ -290,9 +298,13 @@ class RecordDiffer( val ts2 = LocalDateTime.parse((v2 as TimestampValue).value) ts1.compareTo(ts2) } catch (e: Exception) { - val ts1 = OffsetDateTime.parse(v1.value) - val ts2 = OffsetDateTime.parse((v2 as TimestampValue).value) - ts1.compareTo(ts2) + try { + val ts1 = OffsetDateTime.parse(v1.value) + val ts2 = OffsetDateTime.parse((v2 as TimestampValue).value) + ts1.compareTo(ts2) + } catch (e: Exception) { + v1.value.compareTo((v2 as TimestampValue).value) + } } } // otherwise, just be a terrible person. diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt index aa4f64483137..f8cbbab5005c 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/write/BasicFunctionalityIntegrationTest.kt @@ -11,20 +11,31 @@ import io.airbyte.cdk.load.command.Dedupe import io.airbyte.cdk.load.command.DestinationCatalog import io.airbyte.cdk.load.command.DestinationStream import io.airbyte.cdk.load.data.AirbyteValue +import io.airbyte.cdk.load.data.ArrayType import io.airbyte.cdk.load.data.ArrayTypeWithoutSchema import io.airbyte.cdk.load.data.BooleanType +import io.airbyte.cdk.load.data.DateType +import io.airbyte.cdk.load.data.DateValue import io.airbyte.cdk.load.data.FieldType import io.airbyte.cdk.load.data.IntegerType import io.airbyte.cdk.load.data.IntegerValue +import io.airbyte.cdk.load.data.NumberType import io.airbyte.cdk.load.data.ObjectType import io.airbyte.cdk.load.data.ObjectTypeWithEmptySchema import io.airbyte.cdk.load.data.ObjectTypeWithoutSchema import io.airbyte.cdk.load.data.ObjectValue import io.airbyte.cdk.load.data.StringType import io.airbyte.cdk.load.data.StringValue +import io.airbyte.cdk.load.data.TimeTypeWithTimezone +import io.airbyte.cdk.load.data.TimeTypeWithoutTimezone +import io.airbyte.cdk.load.data.TimeValue import io.airbyte.cdk.load.data.TimestampTypeWithTimezone +import io.airbyte.cdk.load.data.TimestampTypeWithoutTimezone +import io.airbyte.cdk.load.data.TimestampValue import io.airbyte.cdk.load.data.UnionType +import io.airbyte.cdk.load.data.UnknownType import io.airbyte.cdk.load.message.DestinationRecord +import io.airbyte.cdk.load.message.DestinationRecord.Change import io.airbyte.cdk.load.message.StreamCheckpoint import io.airbyte.cdk.load.test.util.DestinationCleaner import io.airbyte.cdk.load.test.util.DestinationDataDumper @@ -39,7 +50,12 @@ import io.airbyte.cdk.util.Jsons import io.airbyte.protocol.models.v0.AirbyteMessage import io.airbyte.protocol.models.v0.AirbyteRecordMessageMetaChange import io.airbyte.protocol.models.v0.AirbyteStateMessage +import java.math.BigDecimal +import java.time.LocalDate +import java.time.LocalDateTime +import java.time.LocalTime import java.time.OffsetDateTime +import java.time.OffsetTime import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.delay import kotlinx.coroutines.launch @@ -53,6 +69,23 @@ import org.junit.jupiter.api.Test import org.junit.jupiter.api.assertAll import org.junit.jupiter.api.assertThrows +sealed interface AllTypesBehavior + +data class StronglyTyped( + /** + * Whether the destination can cast any value to string. E.g. given a StringType column, if a + * record contains `{"the_column": {"foo": "bar"}}`, does the connector treat this as a type + * error, or does it persist a serialized JSON string? + */ + val convertAllValuesToString: Boolean = true, + /** Whether top-level fields are represented as float64, or as fixed-point values */ + val topLevelFloatLosesPrecision: Boolean = true, + /** Whether floats nested inside objects/arrays are represented as float64. */ + val nestedFloatLosesPrecision: Boolean = true, +) : AllTypesBehavior + +data object Untyped : AllTypesBehavior + abstract class BasicFunctionalityIntegrationTest( /** The config to pass into the connector, as a serialized JSON blob */ val configContents: String, @@ -89,6 +122,7 @@ abstract class BasicFunctionalityIntegrationTest( * would set this parameter to `true`. */ val commitDataIncrementally: Boolean, + val allTypesBehavior: AllTypesBehavior, ) : IntegrationTest(dataDumper, destinationCleaner, recordMangler, nameMapper) { val parsedConfig = ValidatedJsonUtils.parseOne(configSpecClass, configContents) @@ -115,7 +149,7 @@ abstract class BasicFunctionalityIntegrationTest( emittedAtMs = 1234, changes = mutableListOf( - DestinationRecord.Change( + Change( field = "foo", change = AirbyteRecordMessageMetaChange.Change.NULLED, reason = @@ -171,7 +205,7 @@ abstract class BasicFunctionalityIntegrationTest( OutputRecord.Meta( changes = mutableListOf( - DestinationRecord.Change( + Change( field = "foo", change = AirbyteRecordMessageMetaChange.Change @@ -1436,7 +1470,321 @@ abstract class BasicFunctionalityIntegrationTest( assertDoesNotThrow { runSync(configContents, DestinationCatalog(streams), messages) } } - // TODO basic allTypes() test + /** A basic test that we handle all supported data types in a reasonable way. */ + // Depending on how future connector development goes - we might need to do something similar to + // BaseSqlGeneratorIntegrationTest, where we split out tests for connectors that do/don't + // support safe_cast. (or, we move fully to in-connector typing, and we stop worrying about + // per-destination safe_cast support). + @Test + open fun testAllTypes() { + assumeTrue(verifyDataWriting) + val stream = + DestinationStream( + DestinationStream.Descriptor(randomizedNamespace, "test_stream"), + Append, + ObjectType( + linkedMapOf( + "id" to intType, + "struct" to + FieldType( + ObjectType(linkedMapOf("foo" to numberType)), + nullable = false + ), + "struct_schemaless" to + FieldType(ObjectTypeWithEmptySchema, nullable = false), + "struct_empty" to FieldType(ObjectTypeWithEmptySchema, nullable = false), + "array" to FieldType(ArrayType(numberType), nullable = false), + "array_schemaless" to FieldType(ArrayTypeWithoutSchema, nullable = false), + "string" to FieldType(StringType, nullable = false), + "number" to FieldType(NumberType, nullable = false), + "boolean" to FieldType(BooleanType, nullable = false), + "timestamp_with_timezone" to + FieldType(TimestampTypeWithTimezone, nullable = false), + "timestamp_without_timezone" to + FieldType(TimestampTypeWithoutTimezone, nullable = false), + "time_with_timezone" to FieldType(TimeTypeWithTimezone, nullable = false), + "time_without_timezone" to + FieldType(TimeTypeWithoutTimezone, nullable = false), + "date" to FieldType(DateType, nullable = false), + "unknown" to FieldType(UnknownType("test"), nullable = false), + ) + ), + generationId = 42, + minimumGenerationId = 0, + syncId = 42, + ) + fun makeRecord(data: String) = + DestinationRecord( + randomizedNamespace, + "test_stream", + data, + emittedAtMs = 100, + ) + runSync( + configContents, + stream, + listOf( + // A record with valid values for all fields + makeRecord( + """ + { + "id": 1, + "struct": {"foo": 1.0}, + "struct_schemaless": {"foo": 1.0}, + "struct_empty": {"foo": 1.0}, + "array": [1.0], + "array_schemaless": [1.0], + "string": "foo", + "number": 42.1, + "integer": 42, + "boolean": true, + "timestamp_with_timezone": "2023-01-23T12:34:56Z", + "timestamp_without_timezone": "2023-01-23T12:34:56", + "time_with_timezone": "12:34:56Z", + "time_without_timezone": "12:34:56", + "date": "2023-01-23", + "unknown": {} + } + """.trimIndent() + ), + // A record with null for all fields + makeRecord( + """ + { + "id": 2, + "struct": null, + "struct_schemaless": null, + "struct_empty": null, + "array": null, + "array_schemaless": null, + "string": null, + "number": null, + "integer": null, + "boolean": null, + "timestamp_with_timezone": null, + "timestamp_without_timezone": null, + "time_with_timezone": null, + "time_without_timezone": null, + "date": null, + "unknown": null + } + """.trimIndent() + ), + // A record with all fields unset + makeRecord("""{"id": 3}"""), + // A record that verifies floating-point behavior. + // 67.174118 cannot be represented as a standard float64 + // (it turns into 67.17411800000001). + makeRecord( + """ + { + "id": 4, + "struct": {"foo": 67.174118}, + "struct_schemaless": {"foo": 67.174118}, + "struct_empty": {"foo": 67.174118}, + "array": [67.174118], + "array_schemaless": [67.174118], + "number": 67.174118 + } + """.trimIndent(), + ), + // A record with invalid values for all fields + makeRecord( + """ + { + "id": 5, + "struct": "foo", + "struct_schemaless": "foo", + "struct_empty": "foo", + "array": "foo", + "array_schemaless": "foo", + "string": {}, + "number": "foo", + "integer": "foo", + "boolean": "foo", + "timestamp_with_timezone": "foo", + "timestamp_without_timezone": "foo", + "time_with_timezone": "foo", + "time_without_timezone": "foo", + "date": "foo" + } + """.trimIndent() + ), + ), + ) + + val nestedFloat: BigDecimal + val topLevelFloat: BigDecimal + val badValuesData: Map + val badValuesChanges: MutableList + when (allTypesBehavior) { + is StronglyTyped -> { + nestedFloat = + if (allTypesBehavior.nestedFloatLosesPrecision) { + BigDecimal("67.17411800000001") + } else { + BigDecimal("67.174118") + } + topLevelFloat = + if (allTypesBehavior.topLevelFloatLosesPrecision) { + BigDecimal("67.17411800000001") + } else { + BigDecimal("67.174118") + } + badValuesData = + mapOf( + "id" to 5, + "struct" to null, + "struct_schemaless" to null, + "struct_empty" to null, + "array" to null, + "array_schemaless" to null, + "string" to + if (allTypesBehavior.convertAllValuesToString) { + "{}" + } else { + null + }, + "number" to null, + "integer" to null, + "boolean" to null, + "timestamp_with_timezone" to null, + "timestamp_without_timezone" to null, + "time_with_timezone" to null, + "time_without_timezone" to null, + "date" to null, + ) + badValuesChanges = + (stream.schema as ObjectType) + .properties + .keys + .map { key -> + Change( + key, + AirbyteRecordMessageMetaChange.Change.NULLED, + AirbyteRecordMessageMetaChange.Reason + .DESTINATION_SERIALIZATION_ERROR, + ) + } + .filter { + !allTypesBehavior.convertAllValuesToString || it.field != "string" + } + .toMutableList() + } + Untyped -> { + nestedFloat = BigDecimal("67.174118") + topLevelFloat = BigDecimal("67.174118") + badValuesData = + mapOf( + "id" to 5, + "struct" to "foo", + "struct_schemaless" to "foo", + "struct_empty" to "foo", + "array" to "foo", + "array_schemaless" to "foo", + "string" to StringValue("{}"), + "number" to "foo", + "integer" to "foo", + "boolean" to "foo", + // TODO this probably indicates that we should + // 1. actually parse time types + // 2. and just rely on the fallback to JsonToAirbyteValue.fromJson to return + // a StringValue + "timestamp_with_timezone" to TimestampValue("foo"), + "timestamp_without_timezone" to TimestampValue("foo"), + "time_with_timezone" to TimeValue("foo"), + "time_without_timezone" to TimeValue("foo"), + "date" to DateValue("foo"), + ) + badValuesChanges = mutableListOf() + } + } + dumpAndDiffRecords( + parsedConfig, + listOf( + OutputRecord( + extractedAt = 100, + generationId = 42, + data = + mapOf( + "id" to 1, + "struct" to mapOf("foo" to 1.0), + "struct_schemaless" to mapOf("foo" to 1.0), + "struct_empty" to mapOf("foo" to 1.0), + "array" to listOf(1.0), + "array_schemaless" to listOf(1.0), + "string" to "foo", + "number" to 42.1, + "integer" to 42, + "boolean" to true, + "timestamp_with_timezone" to + OffsetDateTime.parse("2023-01-23T12:34:56Z"), + "timestamp_without_timezone" to + LocalDateTime.parse("2023-01-23T12:34:56"), + "time_with_timezone" to OffsetTime.parse("12:34:56Z"), + "time_without_timezone" to LocalTime.parse("12:34:56"), + "date" to LocalDate.parse("2023-01-23"), + "unknown" to mapOf(), + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + OutputRecord( + extractedAt = 100, + generationId = 42, + data = + mapOf( + "id" to 2, + "struct" to null, + "struct_schemaless" to null, + "struct_empty" to null, + "array" to null, + "array_schemaless" to null, + "string" to null, + "number" to null, + "integer" to null, + "boolean" to null, + "timestamp_with_timezone" to null, + "timestamp_without_timezone" to null, + "time_with_timezone" to null, + "time_without_timezone" to null, + "date" to null, + "unknown" to null, + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + OutputRecord( + extractedAt = 100, + generationId = 42, + data = mapOf("id" to 3), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + OutputRecord( + extractedAt = 100, + generationId = 42, + data = + mapOf( + "id" to 4, + "struct" to mapOf("foo" to nestedFloat), + "struct_schemaless" to mapOf("foo" to nestedFloat), + "struct_empty" to mapOf("foo" to nestedFloat), + "array" to listOf(nestedFloat), + "array_schemaless" to listOf(nestedFloat), + "number" to topLevelFloat, + ), + airbyteMeta = OutputRecord.Meta(syncId = 42), + ), + OutputRecord( + extractedAt = 100, + generationId = 42, + data = badValuesData, + airbyteMeta = OutputRecord.Meta(syncId = 42, changes = badValuesChanges), + ), + ), + stream, + primaryKey = listOf(listOf("id")), + cursor = null, + ) + } /** * Some types (object/array) are expected to contain other types. Verify that we handle them @@ -1858,6 +2206,7 @@ abstract class BasicFunctionalityIntegrationTest( companion object { private val intType = FieldType(IntegerType, nullable = true) + private val numberType = FieldType(NumberType, nullable = true) private val stringType = FieldType(StringType, nullable = true) private val timestamptzType = FieldType(TimestampTypeWithTimezone, nullable = true) } diff --git a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt index 1d316df778f6..f154649416fb 100644 --- a/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt +++ b/airbyte-integrations/connectors/destination-dev-null/src/test-integration/kotlin/io/airbyte/integrations/destination/dev_null/DevNullBasicFunctionalityIntegrationTest.kt @@ -7,6 +7,7 @@ package io.airbyte.integrations.destination.dev_null import io.airbyte.cdk.load.test.util.NoopDestinationCleaner import io.airbyte.cdk.load.test.util.NoopExpectedRecordMapper import io.airbyte.cdk.load.write.BasicFunctionalityIntegrationTest +import io.airbyte.cdk.load.write.Untyped import org.junit.jupiter.api.Test class DevNullBasicFunctionalityIntegrationTest : @@ -23,6 +24,7 @@ class DevNullBasicFunctionalityIntegrationTest : promoteUnionToObject = false, preserveUndeclaredFields = false, commitDataIncrementally = false, + allTypesBehavior = Untyped, ) { @Test override fun testBasicWrite() { diff --git a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt index 452648757bf3..cebb81db2e8a 100644 --- a/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt +++ b/airbyte-integrations/connectors/destination-s3-v2/src/test-integration/kotlin/io/airbyte/integrations/destination/s3_v2/S3V2WriteTest.kt @@ -6,7 +6,10 @@ package io.airbyte.integrations.destination.s3_v2 import io.airbyte.cdk.load.test.util.NoopDestinationCleaner import io.airbyte.cdk.load.test.util.NoopExpectedRecordMapper +import io.airbyte.cdk.load.write.AllTypesBehavior import io.airbyte.cdk.load.write.BasicFunctionalityIntegrationTest +import io.airbyte.cdk.load.write.StronglyTyped +import io.airbyte.cdk.load.write.Untyped import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test @@ -17,6 +20,7 @@ abstract class S3V2WriteTest( preserveUndeclaredFields: Boolean, /** This is false for staging mode, and true for non-staging mode. */ commitDataIncrementally: Boolean = false, + allTypesBehavior: AllTypesBehavior, ) : BasicFunctionalityIntegrationTest( S3V2TestUtils.getConfig(path), @@ -30,6 +34,7 @@ abstract class S3V2WriteTest( promoteUnionToObject = promoteUnionToObject, preserveUndeclaredFields = preserveUndeclaredFields, commitDataIncrementally = commitDataIncrementally, + allTypesBehavior = allTypesBehavior, ) { @Test override fun testBasicWrite() { @@ -98,6 +103,7 @@ class S3V2WriteTestJsonUncompressed : stringifySchemalessObjects = false, promoteUnionToObject = false, preserveUndeclaredFields = true, + allTypesBehavior = Untyped, ) class S3V2WriteTestJsonStaging : @@ -106,6 +112,7 @@ class S3V2WriteTestJsonStaging : stringifySchemalessObjects = false, promoteUnionToObject = false, preserveUndeclaredFields = true, + allTypesBehavior = Untyped, ) class S3V2WriteTestJsonGzip : @@ -114,6 +121,7 @@ class S3V2WriteTestJsonGzip : stringifySchemalessObjects = false, promoteUnionToObject = false, preserveUndeclaredFields = true, + allTypesBehavior = Untyped, ) class S3V2WriteTestCsvUncompressed : @@ -122,6 +130,7 @@ class S3V2WriteTestCsvUncompressed : stringifySchemalessObjects = false, promoteUnionToObject = false, preserveUndeclaredFields = true, + allTypesBehavior = Untyped, ) class S3V2WriteTestCsvGzip : @@ -130,6 +139,7 @@ class S3V2WriteTestCsvGzip : stringifySchemalessObjects = false, promoteUnionToObject = false, preserveUndeclaredFields = true, + allTypesBehavior = Untyped, ) class S3V2WriteTestAvroUncompressed : @@ -138,6 +148,7 @@ class S3V2WriteTestAvroUncompressed : stringifySchemalessObjects = true, promoteUnionToObject = false, preserveUndeclaredFields = false, + allTypesBehavior = StronglyTyped(), ) { @Disabled("Not yet working") @Test @@ -150,6 +161,12 @@ class S3V2WriteTestAvroUncompressed : override fun testUnions() { super.testUnions() } + + @Disabled("Not yet working") + @Test + override fun testAllTypes() { + super.testAllTypes() + } } class S3V2WriteTestAvroBzip2 : @@ -158,6 +175,7 @@ class S3V2WriteTestAvroBzip2 : stringifySchemalessObjects = true, promoteUnionToObject = false, preserveUndeclaredFields = false, + allTypesBehavior = StronglyTyped(), ) { @Disabled("Not yet working") @Test @@ -170,6 +188,12 @@ class S3V2WriteTestAvroBzip2 : override fun testUnions() { super.testUnions() } + + @Disabled("Not yet working") + @Test + override fun testAllTypes() { + super.testAllTypes() + } } class S3V2WriteTestParquetUncompressed : @@ -178,6 +202,7 @@ class S3V2WriteTestParquetUncompressed : stringifySchemalessObjects = true, promoteUnionToObject = true, preserveUndeclaredFields = false, + allTypesBehavior = StronglyTyped(), ) { @Disabled("Not yet working") @Test @@ -190,6 +215,12 @@ class S3V2WriteTestParquetUncompressed : override fun testUnions() { super.testUnions() } + + @Disabled("Not yet working") + @Test + override fun testAllTypes() { + super.testAllTypes() + } } class S3V2WriteTestParquetSnappy : @@ -198,6 +229,7 @@ class S3V2WriteTestParquetSnappy : stringifySchemalessObjects = true, promoteUnionToObject = true, preserveUndeclaredFields = false, + allTypesBehavior = StronglyTyped(), ) { @Disabled("Not yet working") @Test @@ -210,4 +242,10 @@ class S3V2WriteTestParquetSnappy : override fun testUnions() { super.testUnions() } + + @Disabled("Not yet working") + @Test + override fun testAllTypes() { + super.testAllTypes() + } } From 3cb7301eedf33bcdc01b14ddd7e8ceda28fd8269 Mon Sep 17 00:00:00 2001 From: Brian Lai <51336873+brianjlai@users.noreply.github.com> Date: Tue, 5 Nov 2024 17:43:03 -0500 Subject: [PATCH 764/808] Instantiate ConcurrentDeclarativeSource with args for remote manifest sources (#48373) Co-authored-by: Ben Church --- .../source-declarative-manifest/metadata.yaml | 2 +- .../pyproject.toml | 2 +- .../source_declarative_manifest/run.py | 67 +++++++++++++------ .../test_source_declarative_local_manifest.py | 16 +++-- ...test_source_declarative_remote_manifest.py | 6 +- docs/integrations/sources/low-code.md | 1 + 6 files changed, 65 insertions(+), 29 deletions(-) diff --git a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml index 95c37b1e2e40..53039337afab 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml +++ b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml @@ -8,7 +8,7 @@ data: connectorType: source definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436 # This version should not be updated manually - it is updated by the CDK release workflow. - dockerImageTag: 6.2.0 + dockerImageTag: 6.2.1 dockerRepository: airbyte/source-declarative-manifest # This page is hidden from the docs for now, since the connector is not in any Airbyte registries. documentationUrl: https://docs.airbyte.com/integrations/sources/low-code diff --git a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml index d90d10ca93b8..d44f0c01b34a 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml +++ b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.2.0" +version = "6.2.1" name = "source-declarative-manifest" description = "Base source implementation for low-code sources." authors = ["Airbyte "] diff --git a/airbyte-integrations/connectors/source-declarative-manifest/source_declarative_manifest/run.py b/airbyte-integrations/connectors/source-declarative-manifest/source_declarative_manifest/run.py index b7303e9c6927..2dfd888804b8 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/source_declarative_manifest/run.py +++ b/airbyte-integrations/connectors/source-declarative-manifest/source_declarative_manifest/run.py @@ -1,6 +1,7 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # + from __future__ import annotations import json @@ -11,21 +12,21 @@ from pathlib import Path from typing import Any, List, Mapping, Optional -from airbyte_cdk import TState -from airbyte_cdk.connector import BaseConnector from airbyte_cdk.entrypoint import AirbyteEntrypoint, launch from airbyte_cdk.models import ( AirbyteErrorTraceMessage, AirbyteMessage, AirbyteMessageSerializer, + AirbyteStateMessage, AirbyteTraceMessage, ConfiguredAirbyteCatalog, ConnectorSpecificationSerializer, TraceType, Type, ) -from airbyte_cdk.sources.declarative.manifest_declarative_source import ManifestDeclarativeSource +from airbyte_cdk.sources.declarative.concurrent_declarative_source import ConcurrentDeclarativeSource from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource +from airbyte_cdk.sources.source import TState from orjson import orjson @@ -61,16 +62,10 @@ def handle_command(args: List[str]) -> None: handle_remote_manifest_command(args) -def _get_local_yaml_source(args: List[str]): - catalog_path = AirbyteEntrypoint.extract_catalog(args) - config_path = AirbyteEntrypoint.extract_config(args) - state_path = AirbyteEntrypoint.extract_state(args) +def _get_local_yaml_source(args: List[str]) -> SourceLocalYaml: try: - return SourceLocalYaml( - SourceLocalYaml.read_catalog(catalog_path) if catalog_path else None, - SourceLocalYaml.read_config(config_path) if config_path else None, - SourceLocalYaml.read_state(state_path) if state_path else None, - ) + config, catalog, state = _parse_inputs_into_config_catalog_state(args) + return SourceLocalYaml(config=config, catalog=catalog, state=state) except Exception as error: print( orjson.dumps( @@ -112,24 +107,56 @@ def handle_remote_manifest_command(args: List[str]) -> None: message = AirbyteMessage(type=Type.SPEC, spec=spec) print(AirbyteEntrypoint.airbyte_message_to_string(message)) else: - source = create_manifest(args) + source = create_declarative_source(args) launch(source, args) -def create_manifest(args: List[str]) -> ManifestDeclarativeSource: +def create_declarative_source(args: List[str]) -> ConcurrentDeclarativeSource: """Creates the source with the injected config. This essentially does what other low-code sources do at build time, but at runtime, with a user-provided manifest in the config. This better reflects what happens in the connector builder. """ - parsed_args = AirbyteEntrypoint.parse_args(args) - config = BaseConnector.read_config(parsed_args.config) - if "__injected_declarative_manifest" not in config: - raise ValueError( - f"Invalid config: `__injected_declarative_manifest` should be provided at the root of the config but config only has keys {list(config.keys())}" + try: + config, catalog, state = _parse_inputs_into_config_catalog_state(args) + if "__injected_declarative_manifest" not in config: + raise ValueError( + f"Invalid config: `__injected_declarative_manifest` should be provided at the root of the config but config only has keys {list(config.keys())}" + ) + return ConcurrentDeclarativeSource( + config=config, catalog=catalog, state=state, source_config=config.get("__injected_declarative_manifest") ) - return ManifestDeclarativeSource(config.get("__injected_declarative_manifest")) + except Exception as error: + print( + orjson.dumps( + AirbyteMessageSerializer.dump( + AirbyteMessage( + type=Type.TRACE, + trace=AirbyteTraceMessage( + type=TraceType.ERROR, + emitted_at=int(datetime.now().timestamp() * 1000), + error=AirbyteErrorTraceMessage( + message=f"Error starting the sync. This could be due to an invalid configuration or catalog. Please contact Support for assistance. Error: {error}", + stack_trace=traceback.format_exc(), + ), + ), + ) + ) + ).decode() + ) + raise error + + +def _parse_inputs_into_config_catalog_state( + args: List[str], +) -> (Optional[Mapping[str, Any]], Optional[ConfiguredAirbyteCatalog], List[AirbyteStateMessage]): + parsed_args = AirbyteEntrypoint.parse_args(args) + config = ConcurrentDeclarativeSource.read_config(parsed_args.config) if hasattr(parsed_args, "config") else None + catalog = ConcurrentDeclarativeSource.read_catalog(parsed_args.catalog) if hasattr(parsed_args, "catalog") else None + state = ConcurrentDeclarativeSource.read_state(parsed_args.state) if hasattr(parsed_args, "state") else [] + + return config, catalog, state def run(): diff --git a/airbyte-integrations/connectors/source-declarative-manifest/unit_tests/test_source_declarative_local_manifest.py b/airbyte-integrations/connectors/source-declarative-manifest/unit_tests/test_source_declarative_local_manifest.py index dddd710bdbee..e2f03e369f8d 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/unit_tests/test_source_declarative_local_manifest.py +++ b/airbyte-integrations/connectors/source-declarative-manifest/unit_tests/test_source_declarative_local_manifest.py @@ -2,6 +2,7 @@ # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +import json from unittest.mock import patch import pytest @@ -10,6 +11,8 @@ POKEAPI_JSON_SPEC_SUBSTRING = '"required":["pokemon_name"]' SUCCESS_CHECK_SUBSTRING = '"connectionStatus":{"status":"SUCCEEDED"}' +FAILED_CHECK_SUBSTRING = '"connectionStatus":{"status":"FAILED"}' + @pytest.fixture(autouse=True) def setup(valid_local_manifest_yaml): @@ -17,21 +20,26 @@ def setup(valid_local_manifest_yaml): with patch('source_declarative_manifest.run.YamlDeclarativeSource._read_and_parse_yaml_file', return_value=valid_local_manifest_yaml): yield + def test_spec_is_poke_api(capsys): run.handle_command(["spec"]) stdout = capsys.readouterr() assert POKEAPI_JSON_SPEC_SUBSTRING in stdout.out + def test_invalid_yaml_throws(capsys, invalid_local_manifest_yaml): with patch('source_declarative_manifest.run.YamlDeclarativeSource._read_and_parse_yaml_file', return_value=invalid_local_manifest_yaml): with pytest.raises(ValidationError): run.handle_command(["spec"]) -def test_given_invalid_config_then_raise_value_error(invalid_local_config_file): - with pytest.raises(ValueError): - run.create_manifest(["check", "--config", str(invalid_local_config_file)]) -def test_given_invalid_config_then_raise_value_error(capsys, valid_local_config_file): +def test_given_invalid_config_then_unsuccessful_check(capsys, invalid_local_config_file): + run.handle_command(["check", "--config", str(invalid_local_config_file)]) + stdout = capsys.readouterr() + assert json.loads(stdout.out).get("connectionStatus").get("status") == "FAILED" + + +def test_given_valid_config_with_successful_check(capsys, valid_local_config_file): run.handle_command(["check", "--config", str(valid_local_config_file)]) stdout = capsys.readouterr() assert SUCCESS_CHECK_SUBSTRING in stdout.out diff --git a/airbyte-integrations/connectors/source-declarative-manifest/unit_tests/test_source_declarative_remote_manifest.py b/airbyte-integrations/connectors/source-declarative-manifest/unit_tests/test_source_declarative_remote_manifest.py index 35091ac0785b..52a363a298c1 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/unit_tests/test_source_declarative_remote_manifest.py +++ b/airbyte-integrations/connectors/source-declarative-manifest/unit_tests/test_source_declarative_remote_manifest.py @@ -4,7 +4,7 @@ import pytest from airbyte_cdk.sources.declarative.manifest_declarative_source import ManifestDeclarativeSource -from source_declarative_manifest.run import create_manifest, handle_command +from source_declarative_manifest.run import create_declarative_source, handle_command REMOTE_MANIFEST_SPEC_SUBSTRING = '"required":["__injected_declarative_manifest"]' @@ -17,9 +17,9 @@ def test_spec_does_not_raise_value_error(capsys): def test_given_no_injected_declarative_manifest_then_raise_value_error(invalid_remote_config): with pytest.raises(ValueError): - create_manifest(["check", "--config", str(invalid_remote_config)]) + create_declarative_source(["check", "--config", str(invalid_remote_config)]) def test_given_injected_declarative_manifest_then_return_declarative_manifest(valid_remote_config): - source = create_manifest(["check", "--config", str(valid_remote_config)]) + source = create_declarative_source(["check", "--config", str(valid_remote_config)]) assert isinstance(source, ManifestDeclarativeSource) diff --git a/docs/integrations/sources/low-code.md b/docs/integrations/sources/low-code.md index a14575a9a378..273b561b3f01 100644 --- a/docs/integrations/sources/low-code.md +++ b/docs/integrations/sources/low-code.md @@ -9,6 +9,7 @@ The changelog below is automatically updated by the `bump_version` command as pa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 6.2.1 | 2024-11-05 | [48373](https://github.com/airbytehq/airbyte/pull/48373) | Add CDK v6 support to remote manifest mode | | 6.2.0 | 2024-11-05 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.2.0 | | 6.1.2 | 2024-11-05 | [48344](https://github.com/airbytehq/airbyte/pull/48344) | Fix discover failing on new CDK | | 6.1.1 | 2024-11-04 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.1.1 | From 9e01e5ab634458269924a81acba3e6235040b8e8 Mon Sep 17 00:00:00 2001 From: Natalie Kwong <38087517+nataliekwong@users.noreply.github.com> Date: Tue, 5 Nov 2024 15:07:53 -0800 Subject: [PATCH 765/808] docs: Remove Doc link (#48334) --- docs/integrations/sources/salesforce.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/sources/salesforce.md b/docs/integrations/sources/salesforce.md index 2e97104ea4cc..a28f916e0c08 100644 --- a/docs/integrations/sources/salesforce.md +++ b/docs/integrations/sources/salesforce.md @@ -83,7 +83,7 @@ To obtain these credentials, follow [this walkthrough](https://medium.com/@bpmme 1. If your Salesforce URL is not in the `X.salesforce.com` format, use your Salesforce domain name. For example, if your Salesforce URL is `awesomecompany.force.com` then use that instead of `awesomecompany.salesforce.com`. 2. When running a curl command, run it with the `-L` option to follow any redirects. -3. If you [created a read-only user](https://docs.google.com/document/d/1wZR8pz4MRdc2zUculc9IqoF8JxN87U40IqVnTtcqdrI/edit#heading=h.w5v6h7b2a9y4), use the user credentials when logging in to generate OAuth tokens. +3. If you created a read-only user, use the user credentials when logging in to generate OAuth tokens. From 2279bb0c908eb64a0b39ea2662739d1cd9c39cc2 Mon Sep 17 00:00:00 2001 From: "Pedro S. Lopez" Date: Tue, 5 Nov 2024 20:13:39 -0400 Subject: [PATCH 766/808] docs: add warning about applications being deleted when migrating to SSO on Cloud (#48376) --- docs/access-management/sso-providers/azure-entra-id.md | 4 ++++ docs/access-management/sso-providers/okta.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/docs/access-management/sso-providers/azure-entra-id.md b/docs/access-management/sso-providers/azure-entra-id.md index a04b8a40d5de..5bbef3341258 100644 --- a/docs/access-management/sso-providers/azure-entra-id.md +++ b/docs/access-management/sso-providers/azure-entra-id.md @@ -61,6 +61,10 @@ You'll need to pass your Airbyte contact the following information of the create Once we've received this information from you, We'll setup SSO for you and let you know once it's ready to be used. +:::warning +For security purposes, existing [Applications](https://reference.airbyte.com/reference/authentication) used to access the Airbyte API that were created before enabling SSO **will be disabled** once the user that owns the Application signs in via SSO for the first time. After enabling SSO, please make sure to replace any Application secrets that were previously in use. +::: + diff --git a/docs/access-management/sso-providers/okta.md b/docs/access-management/sso-providers/okta.md index e6937d897b1a..e331d207a8ec 100644 --- a/docs/access-management/sso-providers/okta.md +++ b/docs/access-management/sso-providers/okta.md @@ -65,6 +65,10 @@ On the following screen you'll need to configure all parameters for your Okta ap * **Client Secret** * **Email Domain** (users signing in from this domain will be required to sign in via SSO) + :::warning + For security purposes, existing [Applications](https://reference.airbyte.com/reference/authentication) used to access the Airbyte API that were created before enabling SSO **will be disabled** once the user that owns the Application signs in via SSO for the first time. After enabling SSO, please make sure to replace any Application secrets that were previously in use. + ::: + Create the application with the following parameters: From 7129f2163ed8e24f2371c921a798f58695cb33f3 Mon Sep 17 00:00:00 2001 From: Balaji Seetharaman Date: Wed, 6 Nov 2024 20:45:13 +0530 Subject: [PATCH 767/808] source-finnhub contribution from bala-ceg (#47343) Co-authored-by: Marcos Marx --- .../connectors/source-finnhub/README.md | 33 + .../source-finnhub/acceptance-test-config.yml | 17 + .../connectors/source-finnhub/icon.svg | 8 + .../connectors/source-finnhub/manifest.yaml | 992 ++++++++++++++++++ .../connectors/source-finnhub/metadata.yaml | 35 + docs/integrations/sources/finnhub.md | 38 + 6 files changed, 1123 insertions(+) create mode 100644 airbyte-integrations/connectors/source-finnhub/README.md create mode 100644 airbyte-integrations/connectors/source-finnhub/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-finnhub/icon.svg create mode 100644 airbyte-integrations/connectors/source-finnhub/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-finnhub/metadata.yaml create mode 100644 docs/integrations/sources/finnhub.md diff --git a/airbyte-integrations/connectors/source-finnhub/README.md b/airbyte-integrations/connectors/source-finnhub/README.md new file mode 100644 index 000000000000..bb95fee010c1 --- /dev/null +++ b/airbyte-integrations/connectors/source-finnhub/README.md @@ -0,0 +1,33 @@ +# Finnhub +This directory contains the manifest-only connector for `source-finnhub`. + +Finnhub is a financial data platform that provides real-time stock market, forex, and cryptocurrency data, along with extensive fundamental data, economic indicators, and alternative data for global markets. With its powerful API, Finnhub delivers actionable insights, enabling developers, financial institutions, and traders to integrate market intelligence into their applications, build trading algorithms, and track investment performance. It supports a wide range of financial metrics, including earnings reports, company profiles, and news, making it a comprehensive solution for financial analysis and market research + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-finnhub:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-finnhub build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-finnhub test +``` + diff --git a/airbyte-integrations/connectors/source-finnhub/acceptance-test-config.yml b/airbyte-integrations/connectors/source-finnhub/acceptance-test-config.yml new file mode 100644 index 000000000000..cab576f482a1 --- /dev/null +++ b/airbyte-integrations/connectors/source-finnhub/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-finnhub:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-finnhub/icon.svg b/airbyte-integrations/connectors/source-finnhub/icon.svg new file mode 100644 index 000000000000..1201a237d741 --- /dev/null +++ b/airbyte-integrations/connectors/source-finnhub/icon.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/airbyte-integrations/connectors/source-finnhub/manifest.yaml b/airbyte-integrations/connectors/source-finnhub/manifest.yaml new file mode 100644 index 000000000000..fd5ce52390d8 --- /dev/null +++ b/airbyte-integrations/connectors/source-finnhub/manifest.yaml @@ -0,0 +1,992 @@ +version: 5.16.0 + +type: DeclarativeSource + +description: >- + Finnhub is a financial data platform that provides real-time stock market, + forex, and cryptocurrency data, along with extensive fundamental data, + economic indicators, and alternative data for global markets. With its + powerful API, Finnhub delivers actionable insights, enabling developers, + financial institutions, and traders to integrate market intelligence into + their applications, build trading algorithms, and track investment + performance. It supports a wide range of financial metrics, including earnings + reports, company profiles, and news, making it a comprehensive solution for + financial analysis and market research +check: + type: CheckStream + stream_names: + - marketnews + +definitions: + streams: + marketnews: + type: DeclarativeStream + name: marketnews + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /news?category={{config['market_new_category']}} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/marketnews" + stock_symbols: + type: DeclarativeStream + name: stock_symbols + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stock/symbol?exchange={{ config['exchange'] }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_symbols" + basic_financial_report: + type: DeclarativeStream + name: basic_financial_report + primary_key: + - accessNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stock/financials-reported + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: ListPartitionRouter + values: "{{ config.symbols }}" + cursor_field: symbol + request_option: + type: RequestOption + inject_into: request_parameter + field_name: symbol + incremental_sync: + type: DatetimeBasedCursor + cursor_field: startDate + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S" + datetime_format: "%Y-%m-%d %H:%M:%S" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date_2\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: from + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: to + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/basic_financial_report" + company_profile: + type: DeclarativeStream + name: company_profile + primary_key: + - ticker + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stock/profile2 + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: ListPartitionRouter + values: "{{ config.symbols }}" + cursor_field: symbol + request_option: + type: RequestOption + inject_into: request_parameter + field_name: symbol + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/company_profile" + sec_filings: + type: DeclarativeStream + name: sec_filings + primary_key: + - accessNumber + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stock/filings + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: ListPartitionRouter + values: "{{ config.symbols }}" + cursor_field: symbol + request_option: + type: RequestOption + inject_into: request_parameter + field_name: symbol + incremental_sync: + type: DatetimeBasedCursor + cursor_field: filedDate + cursor_datetime_formats: + - "%Y-%m-%d %H:%M:%S" + datetime_format: "%Y-%m-%d %H:%M:%S" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date_2\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: from + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: to + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sec_filings" + insider_transactions: + type: DeclarativeStream + name: insider_transactions + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stock/insider-transactions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: ListPartitionRouter + values: "{{ config.symbols }}" + cursor_field: symbol + request_option: + type: RequestOption + inject_into: request_parameter + field_name: symbol + incremental_sync: + type: DatetimeBasedCursor + cursor_field: transactionDate + cursor_datetime_formats: + - "%Y-%m-%d" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date_2\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: from + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: to + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/insider_transactions" + insider_sentiment: + type: DeclarativeStream + name: insider_sentiment + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stock/insider-sentiment + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + partition_router: + type: ListPartitionRouter + values: "{{ config.symbols }}" + cursor_field: symbol + request_option: + type: RequestOption + inject_into: request_parameter + field_name: symbol + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/insider_sentiment" + company_news: + type: DeclarativeStream + name: company_news + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /company-news + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: ListPartitionRouter + values: "{{ config.symbols }}" + cursor_field: symbol + request_option: + type: RequestOption + inject_into: request_parameter + field_name: symbol + incremental_sync: + type: DatetimeBasedCursor + cursor_field: datetime + cursor_datetime_formats: + - "%s" + datetime_format: "%Y-%m-%d" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date_2\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: from + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: to + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/company_news" + stock_recommendations: + type: DeclarativeStream + name: stock_recommendations + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stock/recommendation + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: ListPartitionRouter + values: "{{ config.symbols }}" + cursor_field: symbol + request_option: + type: RequestOption + inject_into: request_parameter + field_name: symbol + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_recommendations" + earnings_surprises: + type: DeclarativeStream + name: earnings_surprises + primary_key: + - symbol + - period + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /stock/earnings + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: ListPartitionRouter + values: "{{ config.symbols }}" + cursor_field: symbol + request_option: + type: RequestOption + inject_into: request_parameter + field_name: symbol + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/earnings_surprises" + stock_quote: + type: DeclarativeStream + name: stock_quote + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /quote + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + partition_router: + type: ListPartitionRouter + values: "{{ config.symbols }}" + cursor_field: symbol + request_option: + type: RequestOption + inject_into: request_parameter + field_name: symbol + transformations: + - type: AddFields + fields: + - path: + - symbol + value: "{{ stream_partition.symbol }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/stock_quote" + base_requester: + type: HttpRequester + url_base: https://finnhub.io/api/v1 + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_key\"] }}" + inject_into: + type: RequestOption + field_name: token + inject_into: request_parameter + +streams: + - $ref: "#/definitions/streams/marketnews" + - $ref: "#/definitions/streams/stock_symbols" + - $ref: "#/definitions/streams/basic_financial_report" + - $ref: "#/definitions/streams/company_profile" + - $ref: "#/definitions/streams/sec_filings" + - $ref: "#/definitions/streams/insider_transactions" + - $ref: "#/definitions/streams/insider_sentiment" + - $ref: "#/definitions/streams/company_news" + - $ref: "#/definitions/streams/stock_recommendations" + - $ref: "#/definitions/streams/earnings_surprises" + - $ref: "#/definitions/streams/stock_quote" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - symbols + - market_news_category + - exchange + - start_date_2 + properties: + api_key: + type: string + description: The API key to use for authentication + name: api_key + order: 0 + title: API Key + airbyte_secret: true + symbols: + type: array + name: company_symbol + order: 1 + title: Companies + market_news_category: + type: string + description: >- + This parameter can be 1 of the following values general, forex, + crypto, merger. + title: Market News Category + default: general + enum: + - general + - forex + - crypto + - merger + order: 2 + exchange: + type: string + description: "More info: https://finnhub.io/docs/api/stock-symbols" + title: Exchange + default: US + order: 3 + start_date_2: + type: string + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + order: 4 + additionalProperties: true + +metadata: + autoImportSchema: + marketnews: true + stock_symbols: true + basic_financial_report: false + company_profile: true + sec_filings: true + insider_transactions: false + insider_sentiment: false + company_news: true + stock_recommendations: false + earnings_surprises: false + stock_quote: true + testedStreams: + marketnews: + streamHash: f1c6821d2ad17da19c15be9a29b964c95fc72b3d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_symbols: + streamHash: a481b061b2ebb223a5e94e71275cf121b53ae457 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + basic_financial_report: + streamHash: 7fb2565f8171add436ff06128d2bddc65f39948f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + company_profile: + streamHash: 093d488e2794fae4274cc8beed808b021cdd30b7 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + sec_filings: + streamHash: 5ccfc67778f56038004767e0c879fe9699ba8909 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + insider_transactions: + streamHash: d3e80f2b01eb399e15aaa95c0a645aa795eb4737 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + insider_sentiment: + streamHash: 68f53090b913d3c23afe895d102f2009a19d45a5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + company_news: + streamHash: 28d15b6953fe6b944ec6bef610f6c69a6aac2c84 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_recommendations: + streamHash: 190cf9650126e66328ec0ebac0f9a324c91fd346 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + earnings_surprises: + streamHash: b89237a3ccb7a1991700822a1cb3c784e6b525bf + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + stock_quote: + streamHash: 59936a915d2fdab55efa6613756c64504578ccf1 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://finnhub.io/docs/api/ + +schemas: + marketnews: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + category: + type: + - string + - "null" + datetime: + type: + - number + - "null" + headline: + type: + - string + - "null" + id: + type: number + image: + type: + - string + - "null" + related: + type: + - string + - "null" + source: + type: + - string + - "null" + summary: + type: + - string + - "null" + url: + type: + - string + - "null" + required: + - id + stock_symbols: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + currency: + type: + - string + - "null" + displaySymbol: + type: + - string + - "null" + figi: + type: + - string + - "null" + mic: + type: + - string + - "null" + shareClassFIGI: + type: + - string + - "null" + symbol: + type: + - string + - "null" + symbol2: + type: + - string + - "null" + basic_financial_report: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} + company_profile: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + estimateCurrency: + type: + - string + - "null" + exchange: + type: + - string + - "null" + finnhubIndustry: + type: + - string + - "null" + ipo: + type: + - string + - "null" + logo: + type: + - string + - "null" + marketCapitalization: + type: + - number + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + shareOutstanding: + type: + - number + - "null" + ticker: + type: string + weburl: + type: + - string + - "null" + required: + - ticker + sec_filings: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + acceptedDate: + type: + - string + - "null" + accessNumber: + type: string + cik: + type: + - string + - "null" + filedDate: + type: string + filingUrl: + type: + - string + - "null" + form: + type: + - string + - "null" + reportUrl: + type: + - string + - "null" + symbol: + type: + - string + - "null" + required: + - accessNumber + - filedDate + insider_transactions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + change: + type: + - number + - "null" + currency: + type: + - string + - "null" + filingDate: + type: + - string + - "null" + id: + type: string + isDerivative: + type: + - boolean + - "null" + name: + type: + - string + - "null" + share: + type: + - number + - "null" + source: + type: + - string + - "null" + symbol: + type: + - string + - "null" + transactionCode: + type: + - string + - "null" + transactionDate: + type: + - string + - "null" + transactionPrice: + type: + - number + - "null" + required: + - id + insider_sentiment: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + data: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + change: + type: + - number + - "null" + month: + type: + - number + - "null" + mspr: + type: + - number + - "null" + symbol: + type: + - string + - "null" + year: + type: + - number + - "null" + symbol: + type: + - string + - "null" + company_news: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + category: + type: + - string + - "null" + datetime: + type: number + headline: + type: + - string + - "null" + id: + type: + - number + - "null" + image: + type: + - string + - "null" + related: + type: + - string + - "null" + source: + type: + - string + - "null" + summary: + type: + - string + - "null" + url: + type: + - string + - "null" + required: + - datetime + stock_recommendations: + type: object + $schema: http://json-schema.org/schema# + properties: + buy: + type: + - number + - "null" + hold: + type: + - number + - "null" + period: + type: + - string + - "null" + sell: + type: + - number + - "null" + strongBuy: + type: + - number + - "null" + strongSell: + type: + - number + - "null" + symbol: + type: + - string + - "null" + additionalProperties: true + earnings_surprises: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + actual: + type: + - number + - "null" + estimate: + type: + - number + - "null" + period: + type: + - string + - "null" + quarter: + type: + - number + - "null" + surprise: + type: + - number + - "null" + surprisePercent: + type: + - number + - "null" + symbol: + type: + - string + - "null" + year: + type: + - number + - "null" + stock_quote: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + c: + type: + - number + - "null" + d: + type: + - number + - "null" + dp: + type: + - number + - "null" + h: + type: + - number + - "null" + l: + type: + - number + - "null" + o: + type: + - number + - "null" + pc: + type: + - number + - "null" + symbol: + type: + - string + - "null" + t: + type: + - number + - "null" diff --git a/airbyte-integrations/connectors/source-finnhub/metadata.yaml b/airbyte-integrations/connectors/source-finnhub/metadata.yaml new file mode 100644 index 000000000000..0d191ed394fd --- /dev/null +++ b/airbyte-integrations/connectors/source-finnhub/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "finnhub.io" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-finnhub + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: ec96d68b-e32c-4f0a-ba28-0b01f176a3bb + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-finnhub + githubIssueLabel: source-finnhub + icon: icon.svg + license: MIT + name: Finnhub + releaseDate: 2024-10-24 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/finnhub + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/finnhub.md b/docs/integrations/sources/finnhub.md new file mode 100644 index 000000000000..9e3b8249e143 --- /dev/null +++ b/docs/integrations/sources/finnhub.md @@ -0,0 +1,38 @@ +# Finnhub +Finnhub is a financial data platform that provides real-time stock market, forex, and cryptocurrency data, along with extensive fundamental data, economic indicators, and alternative data for global markets. With its powerful API, Finnhub delivers actionable insights, enabling developers, financial institutions, and traders to integrate market intelligence into their applications, build trading algorithms, and track investment performance. It supports a wide range of financial metrics, including earnings reports, company profiles, and news, making it a comprehensive solution for financial analysis and market research + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. The API key to use for authentication | | +| `symbols` | `array` | Companies. | | +| `market_news_category` | `string` | Market News Category. This parameter can be 1 of the following values general, forex, crypto, merger. | general | +| `exchange` | `string` | Exchange. More info: https://finnhub.io/docs/api/stock-symbols | US | +| `start_date_2` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| marketnews | id | No pagination | ✅ | ❌ | +| stock_symbols | | No pagination | ✅ | ❌ | +| basic_financial_report | accessNumber | No pagination | ✅ | ✅ | +| company_profile | ticker | No pagination | ✅ | ❌ | +| sec_filings | accessNumber | No pagination | ✅ | ✅ | +| insider_transactions | | No pagination | ✅ | ✅ | +| insider_sentiment | | No pagination | ✅ | ❌ | +| company_news | | No pagination | ✅ | ✅ | +| stock_recommendations | | No pagination | ✅ | ❌ | +| earnings_surprises | symbol.period | No pagination | ✅ | ❌ | +| stock_quote | | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-11-06 | | Initial release by [@marcosmarxm](https://github.com/marcosmarxm) via Connector Builder | + +
From 803658c549ab50e0787acfcca8f3090c49e6a6f3 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Wed, 6 Nov 2024 20:54:11 +0530 Subject: [PATCH 768/808] source-zoho-expense contribution from bishalbera (#47406) Co-authored-by: Marcos Marx --- .../connectors/source-zoho-expense/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-zoho-expense/icon.svg | 319 +++ .../source-zoho-expense/manifest.yaml | 2240 +++++++++++++++++ .../source-zoho-expense/metadata.yaml | 35 + docs/integrations/sources/zoho-expense.md | 36 + 6 files changed, 2680 insertions(+) create mode 100644 airbyte-integrations/connectors/source-zoho-expense/README.md create mode 100644 airbyte-integrations/connectors/source-zoho-expense/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-zoho-expense/icon.svg create mode 100644 airbyte-integrations/connectors/source-zoho-expense/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-zoho-expense/metadata.yaml create mode 100644 docs/integrations/sources/zoho-expense.md diff --git a/airbyte-integrations/connectors/source-zoho-expense/README.md b/airbyte-integrations/connectors/source-zoho-expense/README.md new file mode 100644 index 000000000000..2ebed0abc0a1 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-expense/README.md @@ -0,0 +1,33 @@ +# Zoho Expense +This directory contains the manifest-only connector for `source-zoho-expense`. + +Zoho Expense connector enables seamless data synchronization between Zoho Expense and various destinations. This connector automates expense tracking workflows by extracting financial data efficiently, ensuring accurate reporting and streamlined operations. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-zoho-expense:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-zoho-expense build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-zoho-expense test +``` + diff --git a/airbyte-integrations/connectors/source-zoho-expense/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zoho-expense/acceptance-test-config.yml new file mode 100644 index 000000000000..e02c43eea04b --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-expense/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-zoho-expense:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-zoho-expense/icon.svg b/airbyte-integrations/connectors/source-zoho-expense/icon.svg new file mode 100644 index 000000000000..764c698ecbc1 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-expense/icon.svg @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-zoho-expense/manifest.yaml b/airbyte-integrations/connectors/source-zoho-expense/manifest.yaml new file mode 100644 index 000000000000..704651381914 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-expense/manifest.yaml @@ -0,0 +1,2240 @@ +version: 5.16.0 + +type: DeclarativeSource + +description: >- + Zoho Expense connector enables seamless data synchronization between Zoho + Expense and various destinations. This connector automates expense tracking + workflows by extracting financial data efficiently, ensuring accurate + reporting and streamlined operations. + +check: + type: CheckStream + stream_names: + - users + +definitions: + streams: + users: + type: DeclarativeStream + name: users + primary_key: + - user_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - users + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + trips: + type: DeclarativeStream + name: trips + primary_key: + - trip_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /trips + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - trips + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/trips" + expense_reports: + type: DeclarativeStream + name: expense_reports + primary_key: + - report_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /expensereports + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - expense_reports + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/expense_reports" + projects: + type: DeclarativeStream + name: projects + primary_key: + - project_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /projects + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - projects + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/projects" + customers: + type: DeclarativeStream + name: customers + primary_key: + - contact_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /contacts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - contacts + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/customers" + organizations: + type: DeclarativeStream + name: organizations + primary_key: + - organization_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /organizations + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - organizations + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/organizations" + expense_categories: + type: DeclarativeStream + name: expense_categories + primary_key: + - category_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /expensecategories + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - expense_accounts + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/expense_categories" + currencies: + type: DeclarativeStream + name: currencies + primary_key: + - currency_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /settings/currencies + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - currencies + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/currencies" + taxes: + type: DeclarativeStream + name: taxes + primary_key: + - tax_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /settings/taxes + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - taxes + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/taxes" + base_requester: + type: HttpRequester + url_base: https://www.zohoapis.{{ config['data_center'] }}/expense/v1 + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id\"] }}" + grant_type: refresh_token + client_secret: "{{ config[\"client_secret\"] }}" + refresh_token: "{{ config[\"refresh_token\"] }}" + expires_in_name: expires_in + access_token_name: access_token + refresh_request_body: {} + token_refresh_endpoint: https://accounts.zoho.{{ config["data_center"] }}/oauth/v2/token + +streams: + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/trips" + - $ref: "#/definitions/streams/expense_reports" + - $ref: "#/definitions/streams/projects" + - $ref: "#/definitions/streams/customers" + - $ref: "#/definitions/streams/organizations" + - $ref: "#/definitions/streams/expense_categories" + - $ref: "#/definitions/streams/currencies" + - $ref: "#/definitions/streams/taxes" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id + - client_secret + - refresh_token + properties: + data_center: + type: string + description: >- + The domain suffix for the Zoho Expense API based on your data center + location (e.g., 'com', 'eu', 'in', etc.) + enum: + - com + - in + - jp + - ca + - com.cn + - sa + - com.au + - eu + name: domain + order: 0 + title: Data Center + default: com + client_id: + type: string + name: client_id + order: 1 + title: OAuth Client ID + airbyte_secret: true + client_secret: + type: string + name: client_secret + order: 2 + title: OAuth Client Secret + airbyte_secret: true + refresh_token: + type: string + name: refresh_token + order: 3 + title: OAuth Refresh Token + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + users: true + trips: true + expense_reports: true + projects: true + customers: true + organizations: true + expense_categories: true + currencies: true + taxes: true + testedStreams: + users: + streamHash: 7ebe190ed5cf36fc0eb352e4256418f7e9d82062 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + trips: + streamHash: 3006b5339f6cc116109cbe2fb8aa7029f2933813 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + expense_reports: + streamHash: 44dac027120534cf64c0f9ac9ea701178b7cd86c + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + projects: + streamHash: 5d1a97e0aead1cee724fc6686b5796628c41abd5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: false + primaryKeysArePresent: true + primaryKeysAreUnique: true + customers: + streamHash: 58c100803c4f10d6389885509b2f532d2c81e529 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + organizations: + streamHash: ced9ef3dbf607306d9c45f8f70d05a757e52ae33 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + expense_categories: + streamHash: 94fa40a0885845e1586ebe063c16e460b8d8336d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + currencies: + streamHash: 97bcca96af464e0f54335cab614c20a0336d1d4b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + taxes: + streamHash: 9c86b3cad1cd8a0b8d065a8508387e16756ea44a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://www.zoho.com/expense/api/v1/introduction/#overview + +schemas: + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accounting_app_name: + type: + - string + - "null" + accounting_reference_id: + type: + - string + - "null" + accounting_vendor_reference_id: + type: + - string + - "null" + approval_amount_limit: + type: + - number + - "null" + approver_photo_url: + type: + - string + - "null" + approves_to_email: + type: + - string + - "null" + approves_to_id: + type: + - string + - "null" + approves_to_name: + type: + - string + - "null" + bank_name: + type: + - string + - "null" + can_approve: + type: + - boolean + - "null" + created_time: + type: + - string + - "null" + default_approver_email: + type: + - string + - "null" + default_approver_id: + type: + - string + - "null" + default_approver_name: + type: + - string + - "null" + department_id: + type: + - string + - "null" + department_name: + type: + - string + - "null" + display_name: + type: + - string + - "null" + email: + type: + - string + - "null" + employee_number: + type: + - string + - "null" + getthere_access: + type: + - string + - "null" + getthere_profile_created: + type: + - boolean + - "null" + hr_url: + type: + - string + - "null" + invitation_type: + type: + - string + - "null" + is_current_user: + type: + - boolean + - "null" + is_from_crm: + type: + - boolean + - "null" + is_from_zoho_people: + type: + - boolean + - "null" + is_super_admin: + type: + - boolean + - "null" + last_four_digits: + type: + - string + - "null" + last_modified_time: + type: + - string + - "null" + mobile: + type: + - string + - "null" + name: + type: + - string + - "null" + photo_url: + type: + - string + - "null" + policy_id: + type: + - string + - "null" + policy_name: + type: + - string + - "null" + role_id: + type: + - string + - "null" + status: + type: + - string + - "null" + submission_amount_limit: + type: + - number + - "null" + travel_policy_display_name: + type: + - string + - "null" + travel_policy_id: + type: + - string + - "null" + travel_policy_name: + type: + - string + - "null" + user_id: + type: string + user_mail_in_id: + type: + - string + - "null" + user_role: + type: + - string + - "null" + user_type: + type: + - string + - "null" + required: + - user_id + trips: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + approved_date: + type: + - string + - "null" + approver_email: + type: + - string + - "null" + approver_employee_no: + type: + - string + - "null" + approver_id: + type: + - string + - "null" + approver_name: + type: + - string + - "null" + approver_photo_url: + type: + - string + - "null" + approver_zuid: + type: + - string + - "null" + bcy_budget_amount: + type: + - number + - "null" + booking_summary: + type: + - array + - "null" + budget_amount: + type: + - number + - "null" + business_purpose: + type: + - string + - "null" + can_other_travelers_associate_report: + type: + - boolean + - "null" + created_by_email: + type: + - string + - "null" + created_by_id: + type: + - string + - "null" + created_by_name: + type: + - string + - "null" + created_date: + type: + - string + - "null" + created_time: + type: + - string + - "null" + creator_employee_no: + type: + - string + - "null" + creator_photo_url: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + custom_fields: + type: + - array + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + department_id: + type: + - string + - "null" + department_name: + type: + - string + - "null" + departure: + type: + - string + - "null" + destination_city: + type: + - string + - "null" + destination_country: + type: + - string + - "null" + destination_state: + type: + - string + - "null" + employee_number: + type: + - string + - "null" + end_date: + type: + - string + - "null" + exchange_rate: + type: + - number + - "null" + from_source: + type: + - string + - "null" + is_archived: + type: + - boolean + - "null" + is_billable: + type: + - boolean + - "null" + is_international: + type: + - boolean + - "null" + is_round_trip: + type: + - boolean + - "null" + is_visa_required: + type: + - boolean + - "null" + last_modified_time: + type: + - string + - "null" + last_submitted_date: + type: + - string + - "null" + meal_preference: + type: + - string + - "null" + notes: + type: + - string + - "null" + policy_display_name: + type: + - string + - "null" + policy_id: + type: + - string + - "null" + policy_name: + type: + - string + - "null" + price_precision: + type: + - number + - "null" + project_id: + type: + - string + - "null" + project_name: + type: + - string + - "null" + reports_count: + type: + - number + - "null" + seat_preference: + type: + - string + - "null" + start_date: + type: + - string + - "null" + status: + type: + - string + - "null" + sub_status: + type: + - string + - "null" + submitted_by: + type: + - number + - "null" + submitted_date: + type: + - string + - "null" + submitted_to_department_name: + type: + - string + - "null" + submitted_to_email: + type: + - string + - "null" + submitted_to_employee_no: + type: + - string + - "null" + submitted_to_id: + type: + - string + - "null" + submitted_to_name: + type: + - string + - "null" + submitter_department_name: + type: + - string + - "null" + submitter_email: + type: + - string + - "null" + submitter_employee_no: + type: + - string + - "null" + submitter_name: + type: + - string + - "null" + submitter_photo_url: + type: + - string + - "null" + submitter_zuid: + type: + - string + - "null" + trip_id: + type: string + trip_name: + type: + - string + - "null" + trip_number: + type: + - string + - "null" + user_custom_fields: + type: + - array + - "null" + user_email: + type: + - string + - "null" + user_id: + type: + - string + - "null" + user_name: + type: + - string + - "null" + required: + - trip_id + expense_reports: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + accounting_app_name: + type: + - string + - "null" + accounting_reference_id: + type: + - string + - "null" + accounting_sync_time: + type: + - string + - "null" + amount_policy_violation_count: + type: + - number + - "null" + amount_to_be_reimbursed: + type: + - number + - "null" + approved_date: + type: + - string + - "null" + approver_email: + type: + - string + - "null" + approver_employee_no: + type: + - string + - "null" + approver_id: + type: + - string + - "null" + approver_name: + type: + - string + - "null" + approver_photo_url: + type: + - string + - "null" + approver_zuid: + type: + - string + - "null" + audit_status: + type: + - string + - "null" + can_push_to_accounting_app: + type: + - boolean + - "null" + claim_type_id: + type: + - string + - "null" + claim_type_name: + type: + - string + - "null" + comments_count: + type: + - number + - "null" + created_by_id: + type: + - string + - "null" + created_by_name: + type: + - string + - "null" + created_by_zuid: + type: + - string + - "null" + created_date: + type: + - string + - "null" + created_time: + type: + - string + - "null" + creator_employee_no: + type: + - string + - "null" + creator_photo_url: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + custom_fields: + type: + - array + - "null" + custom_policy_violation_count: + type: + - number + - "null" + customer_id: + type: + - string + - "null" + customer_name: + type: + - string + - "null" + department_id: + type: + - string + - "null" + department_name: + type: + - string + - "null" + description_policy_violation_count: + type: + - number + - "null" + due_date: + type: + - string + - "null" + due_days: + type: + - string + - "null" + employee_number: + type: + - string + - "null" + end_date: + type: + - string + - "null" + expense_count: + type: + - number + - "null" + imprest_account_id: + type: + - string + - "null" + imprest_account_name: + type: + - string + - "null" + is_ach_reimbursement: + type: + - boolean + - "null" + is_archived: + type: + - boolean + - "null" + is_international_trip: + type: + - string + - "null" + is_shared_report: + type: + - boolean + - "null" + last_modified_date: + type: + - string + - "null" + last_modified_time: + type: + - string + - "null" + last_submitted_date: + type: + - string + - "null" + non_reimbursable_total: + type: + - number + - "null" + payrun_name: + type: + - string + - "null" + policy_display_name: + type: + - string + - "null" + policy_id: + type: + - string + - "null" + policy_name: + type: + - string + - "null" + policy_violated: + type: + - boolean + - "null" + project_id: + type: + - string + - "null" + project_name: + type: + - string + - "null" + rcy_currency_code: + type: + - string + - "null" + rcy_currency_id: + type: + - string + - "null" + rcy_currency_symbol: + type: + - string + - "null" + rcy_exchange_rate: + type: + - number + - "null" + rcy_non_reimbursable_total: + type: + - number + - "null" + rcy_price_precision: + type: + - number + - "null" + rcy_reimbursable_total: + type: + - number + - "null" + rcy_total: + type: + - number + - "null" + receipt_policy_violation_count: + type: + - number + - "null" + reimbursable_total: + type: + - number + - "null" + reimbursement_date: + type: + - string + - "null" + report_id: + type: string + report_name: + type: + - string + - "null" + report_number: + type: + - string + - "null" + start_date: + type: + - string + - "null" + status: + type: + - string + - "null" + sub_status: + type: + - string + - "null" + submitted_by: + type: + - string + - "null" + submitted_date: + type: + - string + - "null" + submitted_to_email: + type: + - string + - "null" + submitted_to_employee_no: + type: + - string + - "null" + submitted_to_id: + type: + - string + - "null" + submitted_to_name: + type: + - string + - "null" + submitted_to_zuid: + type: + - string + - "null" + submitter_email: + type: + - string + - "null" + submitter_employee_no: + type: + - string + - "null" + submitter_name: + type: + - string + - "null" + submitter_photo_url: + type: + - string + - "null" + submitter_zuid: + type: + - string + - "null" + total: + type: + - number + - "null" + total_policy_violation_count: + type: + - number + - "null" + trip_budget_amount: + type: + - number + - "null" + trip_budget_amount_currency_code: + type: + - string + - "null" + trip_budget_amount_currency_id: + type: + - string + - "null" + trip_departure: + type: + - string + - "null" + trip_destination_city: + type: + - string + - "null" + trip_destination_country: + type: + - string + - "null" + trip_end_date: + type: + - string + - "null" + trip_id: + type: + - string + - "null" + trip_name: + type: + - string + - "null" + trip_number: + type: + - string + - "null" + trip_start_date: + type: + - string + - "null" + trip_status: + type: + - string + - "null" + uncategorized_expense_count: + type: + - number + - "null" + user_custom_fields: + type: + - array + - "null" + user_email: + type: + - string + - "null" + user_id: + type: + - string + - "null" + user_name: + type: + - string + - "null" + user_photo_url: + type: + - string + - "null" + zcrm_potential_id: + type: + - string + - "null" + zcrm_potential_name: + type: + - string + - "null" + required: + - report_id + projects: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + code: + type: + - number + - "null" + message: + type: + - string + - "null" + page_context: + type: + - object + - "null" + properties: + applied_filter: + type: + - string + - "null" + custom_fields: + type: + - array + - "null" + has_more_page: + type: + - boolean + - "null" + page: + type: + - number + - "null" + per_page: + type: + - number + - "null" + report_name: + type: + - string + - "null" + sort_column: + type: + - string + - "null" + sort_order: + type: + - string + - "null" + projects: + type: + - array + - "null" + customers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + ach_supported: + type: + - boolean + - "null" + company_name: + type: + - string + - "null" + contact_id: + type: string + contact_name: + type: + - string + - "null" + contact_type: + type: + - string + - "null" + contact_type_formatted: + type: + - string + - "null" + created_time: + type: + - string + - "null" + created_time_formatted: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + custom_field_hash: + type: + - object + - "null" + custom_fields: + type: + - array + - "null" + customer_name: + type: + - string + - "null" + customer_sub_type: + type: + - string + - "null" + email: + type: + - string + - "null" + facebook: + type: + - string + - "null" + first_name: + type: + - string + - "null" + has_attachment: + type: + - boolean + - "null" + is_linked_with_zohocrm: + type: + - boolean + - "null" + language_code: + type: + - string + - "null" + language_code_formatted: + type: + - string + - "null" + last_modified_time: + type: + - string + - "null" + last_modified_time_formatted: + type: + - string + - "null" + last_name: + type: + - string + - "null" + mobile: + type: + - string + - "null" + outstanding_payable_amount: + type: + - number + - "null" + outstanding_payable_amount_bcy: + type: + - number + - "null" + outstanding_receivable_amount: + type: + - number + - "null" + outstanding_receivable_amount_bcy: + type: + - number + - "null" + payment_terms: + type: + - number + - "null" + payment_terms_label: + type: + - string + - "null" + phone: + type: + - string + - "null" + portal_status: + type: + - string + - "null" + primary_contact_id: + type: + - string + - "null" + source: + type: + - string + - "null" + status: + type: + - string + - "null" + twitter: + type: + - string + - "null" + unused_credits_payable_amount: + type: + - number + - "null" + unused_credits_payable_amount_bcy: + type: + - number + - "null" + unused_credits_receivable_amount: + type: + - number + - "null" + unused_credits_receivable_amount_bcy: + type: + - number + - "null" + vendor_name: + type: + - string + - "null" + website: + type: + - string + - "null" + required: + - contact_id + organizations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - string + - "null" + AppList: + type: + - array + - "null" + items: + type: + - string + - "null" + account_created_date: + type: + - string + - "null" + account_created_date_formatted: + type: + - string + - "null" + can_change_timezone: + type: + - boolean + - "null" + can_sign_invoice: + type: + - boolean + - "null" + contact_name: + type: + - string + - "null" + country: + type: + - string + - "null" + country_code: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + currency_format: + type: + - string + - "null" + currency_id: + type: + - string + - "null" + currency_symbol: + type: + - string + - "null" + custom_field_type: + type: + - number + - "null" + custom_fields: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + index: + type: + - number + - "null" + label: + type: + - string + - "null" + value: + type: + - string + - "null" + digital_signature_mode: + type: + - string + - "null" + email: + type: + - string + - "null" + field_separator: + type: + - string + - "null" + fiscal_year_start_month: + type: + - number + - "null" + isOrgActive: + type: + - boolean + - "null" + isOrgNotSupported: + type: + - boolean + - "null" + is_advance_approval_enabled: + type: + - boolean + - "null" + is_auto_scan_allowed: + type: + - boolean + - "null" + is_default_org: + type: + - boolean + - "null" + is_designated_zone: + type: + - boolean + - "null" + is_dsign_required: + type: + - boolean + - "null" + is_export_with_payment_enabled: + type: + - boolean + - "null" + is_free_zone: + type: + - boolean + - "null" + is_gst_india_version: + type: + - boolean + - "null" + is_hsn_or_sac_enabled: + type: + - boolean + - "null" + is_international_trade_enabled: + type: + - boolean + - "null" + is_invoice_pmt_tds_allowed: + type: + - boolean + - "null" + is_org_active: + type: + - boolean + - "null" + is_quick_setup_completed: + type: + - boolean + - "null" + is_registered_for_composite_scheme: + type: + - boolean + - "null" + is_registered_for_gst: + type: + - boolean + - "null" + is_registered_for_tax: + type: + - boolean + - "null" + is_sales_inclusive_tax_enabled: + type: + - boolean + - "null" + is_sales_reverse_charge_enabled: + type: + - boolean + - "null" + is_search360_enabled: + type: + - string + - "null" + is_sku_enabled: + type: + - boolean + - "null" + is_solo_org: + type: + - boolean + - "null" + is_tax_registered: + type: + - boolean + - "null" + is_trial_expired: + type: + - boolean + - "null" + is_trial_period_extended: + type: + - boolean + - "null" + is_trip_enabled: + type: + - boolean + - "null" + is_user_dsign_mandatory: + type: + - boolean + - "null" + is_ziedition: + type: + - boolean + - "null" + is_zpayroll_grid: + type: + - boolean + - "null" + language_code: + type: + - string + - "null" + mode: + type: + - string + - "null" + name: + type: + - string + - "null" + org_action: + type: + - string + - "null" + org_created_app_source: + type: + - number + - "null" + org_joined_app_list: + type: + - array + - "null" + items: + type: + - string + - "null" + org_settings: + type: + - boolean + - "null" + org_type: + type: + - string + - "null" + organization_id: + type: string + partners_domain: + type: + - string + - "null" + phone: + type: + - string + - "null" + plan_name: + type: + - string + - "null" + plan_period: + type: + - string + - "null" + plan_type: + type: + - number + - "null" + price_precision: + type: + - number + - "null" + sales_tax_type: + type: + - string + - "null" + source: + type: + - number + - "null" + state: + type: + - string + - "null" + state_code: + type: + - string + - "null" + tax_group_enabled: + type: + - boolean + - "null" + time_zone: + type: + - string + - "null" + time_zone_formatted: + type: + - string + - "null" + user_status: + type: + - number + - "null" + user_status_formatted: + type: + - string + - "null" + version_formatted: + type: + - string + - "null" + zi_zb_client: + type: + - number + - "null" + zi_zb_edition: + type: + - number + - "null" + zoho_one_org: + type: + - string + - "null" + required: + - organization_id + expense_categories: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + attachment_file_name: + type: + - string + - "null" + can_delete: + type: + - boolean + - "null" + can_override_settings: + type: + - boolean + - "null" + can_show: + type: + - boolean + - "null" + category_hint: + type: + - string + - "null" + category_icon: + type: + - string + - "null" + category_id: + type: string + category_name: + type: + - string + - "null" + category_name_with_gl_code: + type: + - string + - "null" + category_type: + type: + - string + - "null" + child_count: + type: + - string + - "null" + depth: + type: + - number + - "null" + expense_type_id: + type: + - string + - "null" + expense_type_name: + type: + - string + - "null" + flat_amount: + type: + - number + - "null" + gl_code: + type: + - string + - "null" + is_child_present: + type: + - boolean + - "null" + is_custom: + type: + - boolean + - "null" + is_description_required: + type: + - boolean + - "null" + is_disabled_master: + type: + - boolean + - "null" + is_enabled: + type: + - boolean + - "null" + is_maximum_amount_required: + type: + - boolean + - "null" + is_mileage: + type: + - boolean + - "null" + is_perdiem_account: + type: + - boolean + - "null" + is_receipt_required: + type: + - boolean + - "null" + is_super_parent: + type: + - boolean + - "null" + maximum_allowed_amount: + type: + - number + - "null" + page_layout_id: + type: + - string + - "null" + page_layout_name: + type: + - string + - "null" + parent_account_id: + type: + - string + - "null" + parent_account_name: + type: + - string + - "null" + receipt_required_amount: + type: + - number + - "null" + status: + type: + - string + - "null" + required: + - category_id + currencies: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + currency_code: + type: + - string + - "null" + currency_format: + type: + - string + - "null" + currency_id: + type: string + currency_name: + type: + - string + - "null" + currency_name_formatted: + type: + - string + - "null" + currency_symbol: + type: + - string + - "null" + effective_date: + type: + - string + - "null" + exchange_rate: + type: + - number + - "null" + is_base_currency: + type: + - boolean + - "null" + price_precision: + type: + - number + - "null" + rcy_configured_count: + type: + - number + - "null" + required: + - currency_id + taxes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accounting_app_name: + type: + - string + - "null" + accounting_reference_id: + type: + - string + - "null" + diff_rate_reason: + type: + - string + - "null" + end_date: + type: + - string + - "null" + is_editable: + type: + - boolean + - "null" + is_inactive: + type: + - boolean + - "null" + is_value_added: + type: + - number + - "null" + last_modified_time: + type: + - string + - "null" + output_tax_account_name: + type: + - string + - "null" + start_date: + type: + - string + - "null" + status: + type: + - string + - "null" + tax_account_id: + type: + - string + - "null" + tax_id: + type: string + tax_name: + type: + - string + - "null" + tax_percentage: + type: + - number + - "null" + tax_type: + type: + - string + - "null" + required: + - tax_id diff --git a/airbyte-integrations/connectors/source-zoho-expense/metadata.yaml b/airbyte-integrations/connectors/source-zoho-expense/metadata.yaml new file mode 100644 index 000000000000..7853e294d11b --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-expense/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "zohoapis." + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-zoho-expense + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 9acfeefc-dad6-4887-a928-6c15ce5737b6 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-zoho-expense + githubIssueLabel: source-zoho-expense + icon: icon.svg + license: MIT + name: Zoho Expense + releaseDate: 2024-10-26 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/zoho-expense + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/zoho-expense.md b/docs/integrations/sources/zoho-expense.md new file mode 100644 index 000000000000..e55a1cfd21d0 --- /dev/null +++ b/docs/integrations/sources/zoho-expense.md @@ -0,0 +1,36 @@ +# Zoho Expense +Zoho Expense connector enables seamless data synchronization between Zoho Expense and various destinations. This connector automates expense tracking workflows by extracting financial data efficiently, ensuring accurate reporting and streamlined operations. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `client_id` | `string` | OAuth Client ID. | | +| `client_secret` | `string` | OAuth Client Secret. | | +| `refresh_token` | `string` | OAuth Refresh Token. | | +| `data_center` | `string` | Data Center. The domain suffix for the Zoho Expense API based on your data center location (e.g., `com`, `in`, `jp` etc.) | `com` | + + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| users | user_id | DefaultPaginator | ✅ | ❌ | +| trips | trip_id | DefaultPaginator | ✅ | ❌ | +| expense_reports | report_id | DefaultPaginator | ✅ | ❌ | +| projects | | DefaultPaginator | ✅ | ❌ | +| customers | contact_id | DefaultPaginator | ✅ | ❌ | +| organizations | organization_id | DefaultPaginator | ✅ | ❌ | +| expense_categories | category_id | DefaultPaginator | ✅ | ❌ | +| currencies | currency_id | DefaultPaginator | ✅ | ❌ | +| taxes | tax_id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-26 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From 5e17bbc604fc20b3d18e7205d437a85d8c419755 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Wed, 6 Nov 2024 21:08:41 +0530 Subject: [PATCH 769/808] source-zoho-bigin contribution from bishalbera (#47414) Co-authored-by: Marcos Marx --- .../connectors/source-zoho-bigin/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-zoho-bigin/icon.svg | 369 +++++ .../source-zoho-bigin/manifest.yaml | 1347 +++++++++++++++++ .../source-zoho-bigin/metadata.yaml | 35 + docs/integrations/sources/zoho-bigin.md | 37 + 6 files changed, 1838 insertions(+) create mode 100644 airbyte-integrations/connectors/source-zoho-bigin/README.md create mode 100644 airbyte-integrations/connectors/source-zoho-bigin/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-zoho-bigin/icon.svg create mode 100644 airbyte-integrations/connectors/source-zoho-bigin/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-zoho-bigin/metadata.yaml create mode 100644 docs/integrations/sources/zoho-bigin.md diff --git a/airbyte-integrations/connectors/source-zoho-bigin/README.md b/airbyte-integrations/connectors/source-zoho-bigin/README.md new file mode 100644 index 000000000000..1374efcd7c4c --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-bigin/README.md @@ -0,0 +1,33 @@ +# Zoho Bigin +This directory contains the manifest-only connector for `source-zoho-bigin`. + + Zoho Bigin connector enables seamless data sync between Zoho Bigin and other platforms. This connector automates CRM data integration, improving workflows and ensuring real-time access to customer insights across tools. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-zoho-bigin:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-zoho-bigin build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-zoho-bigin test +``` + diff --git a/airbyte-integrations/connectors/source-zoho-bigin/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zoho-bigin/acceptance-test-config.yml new file mode 100644 index 000000000000..09b318895df0 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-bigin/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-zoho-bigin:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-zoho-bigin/icon.svg b/airbyte-integrations/connectors/source-zoho-bigin/icon.svg new file mode 100644 index 000000000000..38409d2e747d --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-bigin/icon.svg @@ -0,0 +1,369 @@ + + + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-zoho-bigin/manifest.yaml b/airbyte-integrations/connectors/source-zoho-bigin/manifest.yaml new file mode 100644 index 000000000000..e503b92d7e04 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-bigin/manifest.yaml @@ -0,0 +1,1347 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: " Zoho Bigin connector enables seamless data sync between Zoho Bigin and other platforms. This connector automates CRM data integration, improving workflows and ensuring real-time access to customer insights across tools." + +check: + type: CheckStream + stream_names: + - users + +definitions: + streams: + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - users + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + modules: + type: DeclarativeStream + name: modules + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /settings/modules + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - modules + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/modules" + organizations: + type: DeclarativeStream + name: organizations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /org + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - org + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/organizations" + roles: + type: DeclarativeStream + name: roles + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /settings/roles + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - roles + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/roles" + notes: + type: DeclarativeStream + name: notes + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /Notes + http_method: GET + request_parameters: + fields: Note_Title,Note_Content,Parent_Id + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: PageIncrement + page_size: 200 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/notes" + tags: + type: DeclarativeStream + name: tags + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /settings/tags + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - tags + partition_router: + type: ListPartitionRouter + values: + - Contacts + - Pipelines + - Companies + - Products + - Tasks + - Events + - Calls + cursor_field: module + request_option: + type: RequestOption + inject_into: request_parameter + field_name: module + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tags" + companies: + type: DeclarativeStream + name: companies + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /Accounts + http_method: GET + request_parameters: + fields: Account_Name,Phone,Website + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page_token + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: per_page + pagination_strategy: + type: CursorPagination + page_size: 200 + cursor_value: "{{ response.get('info', {}).get('next_page_token') }}" + stop_condition: "{{ not response.get('info', {}).get('more_records', False) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/companies" + contacts: + type: DeclarativeStream + name: contacts + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /Contacts + http_method: GET + request_parameters: + fields: Last_Name,Email + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page_token + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('info', {}).get('next_page_token', '') }}" + stop_condition: "{{ not response.get('info', {}).get('more_records', False) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/contacts" + tasks: + type: DeclarativeStream + name: tasks + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /Tasks + http_method: GET + request_parameters: + fields: Owner,Subject,Due Date,Remind_At + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page_token + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('info', {}).get('next_page_token', '') }}" + stop_condition: "{{ not response.get('info', {}).get('more_records', False) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tasks" + events: + type: DeclarativeStream + name: events + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /Events + http_method: GET + request_parameters: + fields: Owner,Event_Title,Start_DateTime,End_DateTime + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: per_page + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + start_from_page: 0 + page_size: 200 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/events" + products: + type: DeclarativeStream + name: products + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /Products + http_method: GET + request_parameters: + fields: >- + Owner,Product_Name,Product_Category,Unit_Price,Description,Product_Active + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page_token + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('info', {}).get('next_page_token', '') }}" + stop_condition: "{{ not response.get('info', {}).get('more_records', False) }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/products" + base_requester: + type: HttpRequester + url_base: https://www.zohoapis.{{ config["data_center"] }}/bigin/v2 + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id\"] }}" + grant_type: refresh_token + client_secret: "{{ config[\"client_secret\"] }}" + refresh_token: "{{ config[\"client_refresh_token\"] }}" + expires_in_name: expires_in + access_token_name: access_token + refresh_request_body: {} + token_refresh_endpoint: https://accounts.zoho.{{ config["data_center"] }}/oauth/v2/token + +streams: + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/modules" + - $ref: "#/definitions/streams/organizations" + - $ref: "#/definitions/streams/roles" + - $ref: "#/definitions/streams/notes" + - $ref: "#/definitions/streams/tags" + - $ref: "#/definitions/streams/companies" + - $ref: "#/definitions/streams/contacts" + - $ref: "#/definitions/streams/tasks" + - $ref: "#/definitions/streams/events" + - $ref: "#/definitions/streams/products" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id + - data_center + - client_secret + - client_refresh_token + - module_name + properties: + client_id: + type: string + name: client_id + order: 0 + title: OAuth Client ID + airbyte_secret: true + data_center: + type: string + description: The data center where the Bigin account's resources are hosted + enum: + - com + - com.au + - eu + - in + - com.cn + - jp + name: data_center + order: 1 + title: Data Center + default: com + client_secret: + type: string + name: client_secret + order: 2 + title: OAuth Client Secret + airbyte_secret: true + client_refresh_token: + type: string + order: 3 + title: Refresh token + airbyte_secret: true + module_name: + type: string + order: 4 + title: Module Name + additionalProperties: true + +metadata: + autoImportSchema: + users: true + modules: true + organizations: true + roles: true + notes: true + tags: true + companies: true + contacts: true + tasks: true + events: true + products: true + testedStreams: + users: + streamHash: f9c8fc4a62114f362eb6a984c79ba314d934be17 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + modules: + streamHash: 7027ed4afe12e9a9c1cb9528ed5f1d5bf99c8e76 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + organizations: + streamHash: 2db7dbec4301f64e9296f9d3150a26fcf9f97f3a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + roles: + streamHash: 36e98e146a92bc49dc30c62dd6ba105598e962c8 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + notes: + streamHash: 751e00f2202ac83eb64ee8ad4c2321287834f2e9 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + tags: + streamHash: 1f8fce21c3a7316d352fa01f7bc49213556e74e2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + companies: + streamHash: f41b79d9489ccffd58e8de6fa8029eb8feeadeb0 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + contacts: + streamHash: fb71d11b5a32e69fbcbf527c82e98bc8c3149a49 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + tasks: + streamHash: f28271e7d149c1f1590199c0835fdf32831fb20b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + events: + streamHash: f96faf2540b727a7e1cf24134f8f6cbec82133e3 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + products: + hasRecords: true + streamHash: 8517b62f6a46b2eefaab27dc2a7ba6f6c7f48c9d + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://www.bigin.com/developer/docs/apis/v2/modules-api.html + +schemas: + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + Isonline: + type: + - boolean + - "null" + Modified_By: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + Modified_Time: + type: + - string + - "null" + category: + type: + - string + - "null" + confirm: + type: + - boolean + - "null" + country: + type: + - string + - "null" + country_locale: + type: + - string + - "null" + created_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + created_time: + type: + - string + - "null" + customize_info: + type: + - object + - "null" + properties: + show_detail_view: + type: + - boolean + - "null" + show_home: + type: + - boolean + - "null" + date_format: + type: + - string + - "null" + decimal_separator: + type: + - string + - "null" + default_tab_group: + type: + - string + - "null" + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + full_name: + type: + - string + - "null" + id: + type: string + language: + type: + - string + - "null" + last_name: + type: + - string + - "null" + locale: + type: + - string + - "null" + microsoft: + type: + - boolean + - "null" + name_format: + type: + - string + - "null" + number_separator: + type: + - string + - "null" + offset: + type: + - number + - "null" + personal_account: + type: + - boolean + - "null" + profile: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + role: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + sandboxDeveloper: + type: + - boolean + - "null" + sort_order_preference: + type: + - string + - "null" + state: + type: + - string + - "null" + status: + type: + - string + - "null" + theme: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + background: + type: + - string + - "null" + normal_tab: + type: + - object + - "null" + properties: + background: + type: + - string + - "null" + font_color: + type: + - string + - "null" + screen: + type: + - string + - "null" + selected_tab: + type: + - object + - "null" + properties: + background: + type: + - string + - "null" + font_color: + type: + - string + - "null" + time_format: + type: + - string + - "null" + time_zone: + type: + - string + - "null" + zuid: + type: + - string + - "null" + required: + - id + modules: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + access_type: + type: + - string + - "null" + actual_plural_label: + type: + - string + - "null" + actual_singular_label: + type: + - string + - "null" + api_name: + type: + - string + - "null" + api_supported: + type: + - boolean + - "null" + arguments: + type: + - array + - "null" + business_card_field_limit: + type: + - number + - "null" + convertable: + type: + - boolean + - "null" + creatable: + type: + - boolean + - "null" + deletable: + type: + - boolean + - "null" + editable: + type: + - boolean + - "null" + emailTemplate_support: + type: + - boolean + - "null" + email_parser_supported: + type: + - boolean + - "null" + feeds_required: + type: + - boolean + - "null" + filter_supported: + type: + - boolean + - "null" + generated_type: + type: + - string + - "null" + global_search_supported: + type: + - boolean + - "null" + has_more_profiles: + type: + - boolean + - "null" + id: + type: string + inventory_template_supported: + type: + - boolean + - "null" + isBlueprintSupported: + type: + - boolean + - "null" + modified_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + modified_time: + type: + - string + - "null" + module_name: + type: + - string + - "null" + parent_module: + type: + - object + - "null" + properties: + api_name: + type: + - string + - "null" + id: + type: + - string + - "null" + plural_label: + type: + - string + - "null" + presence_sub_menu: + type: + - boolean + - "null" + profile_count: + type: + - number + - "null" + profiles: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + public_fields_configured: + type: + - boolean + - "null" + quick_create: + type: + - boolean + - "null" + scoring_supported: + type: + - boolean + - "null" + sequence_number: + type: + - number + - "null" + show_as_tab: + type: + - boolean + - "null" + singular_label: + type: + - string + - "null" + triggers_supported: + type: + - boolean + - "null" + viewable: + type: + - boolean + - "null" + visibility: + type: + - number + - "null" + visible: + type: + - boolean + - "null" + webform_supported: + type: + - boolean + - "null" + required: + - id + organizations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + company_name: + type: + - string + - "null" + country_code: + type: + - string + - "null" + currency: + type: + - string + - "null" + currency_locale: + type: + - string + - "null" + currency_symbol: + type: + - string + - "null" + deletable_org_account: + type: + - boolean + - "null" + domain_name: + type: + - string + - "null" + gapps_enabled: + type: + - boolean + - "null" + hierarchy_preferences: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + hipaa_compliance_enabled: + type: + - boolean + - "null" + id: + type: string + iso_code: + type: + - string + - "null" + license_details: + type: + - object + - "null" + properties: + paid: + type: + - boolean + - "null" + paid_type: + type: + - string + - "null" + portal_users_license_purchased: + type: + - number + - "null" + trial_expiry: + type: + - string + - "null" + trial_type: + type: + - string + - "null" + users_license_purchased: + type: + - number + - "null" + lite_users_enabled: + type: + - boolean + - "null" + mc_status: + type: + - boolean + - "null" + phone: + type: + - string + - "null" + primary_email: + type: + - string + - "null" + primary_zuid: + type: + - string + - "null" + privacy_settings: + type: + - boolean + - "null" + time_zone: + type: + - string + - "null" + translation_enabled: + type: + - boolean + - "null" + zgid: + type: + - string + - "null" + required: + - id + roles: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + display_label: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + reporting_to: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + share_with_peers: + type: + - boolean + - "null" + required: + - id + notes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + Note_Content: + type: + - string + - "null" + Note_Title: + type: + - string + - "null" + Parent_Id: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + id: + type: string + required: + - id + tags: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + created_time: + type: + - string + - "null" + id: + type: string + modified_by: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + name: + type: + - string + - "null" + modified_time: + type: + - string + - "null" + name: + type: + - string + - "null" + required: + - id + companies: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + Account_Name: + type: + - string + - "null" + Phone: + type: + - string + - "null" + Website: + type: + - string + - "null" + id: + type: string + required: + - id + contacts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + Email: + type: + - string + - "null" + Last_Name: + type: + - string + - "null" + id: + type: string + required: + - id + tasks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + Owner: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + Subject: + type: + - string + - "null" + id: + type: string + required: + - id + events: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + End_DateTime: + type: + - string + - "null" + Event_Title: + type: + - string + - "null" + Owner: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + Start_DateTime: + type: + - string + - "null" + id: + type: string + required: + - id + products: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + Description: + type: + - string + - "null" + Owner: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + Product_Active: + type: + - boolean + - "null" + Product_Category: + type: + - string + - "null" + Product_Name: + type: + - string + - "null" + Unit_Price: + type: + - number + - "null" + id: + type: string + required: + - id diff --git a/airbyte-integrations/connectors/source-zoho-bigin/metadata.yaml b/airbyte-integrations/connectors/source-zoho-bigin/metadata.yaml new file mode 100644 index 000000000000..641f597f4ef6 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-bigin/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "zohoapis." + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-zoho-bigin + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: 30e47b8d-5132-4b24-a204-2493bda33c8d + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-zoho-bigin + githubIssueLabel: source-zoho-bigin + icon: icon.svg + license: MIT + name: Zoho Bigin + releaseDate: 2024-10-27 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/zoho-bigin + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/zoho-bigin.md b/docs/integrations/sources/zoho-bigin.md new file mode 100644 index 000000000000..7ff4d314898e --- /dev/null +++ b/docs/integrations/sources/zoho-bigin.md @@ -0,0 +1,37 @@ +# Zoho Bigin + Zoho Bigin connector enables seamless data sync between Zoho Bigin and other platforms. This connector automates CRM data integration, improving workflows and ensuring real-time access to customer insights across tools. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `data_center` | `string` | Data Center. The data center where the Bigin account's resources are hosted | com | +| `client_id` | `string` | OAuth Client ID. | | +| `client_secret` | `string` | OAuth Client Secret. | | +| `client_refresh_token` | `string` | Refresh token. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| users | id | DefaultPaginator | ✅ | ❌ | +| modules | id | No pagination | ✅ | ❌ | +| organizations | id | No pagination | ✅ | ❌ | +| roles | id | No pagination | ✅ | ❌ | +| notes | id | DefaultPaginator | ✅ | ❌ | +| tags | id | No pagination | ✅ | ❌ | +| companies | id | DefaultPaginator | ✅ | ❌ | +| contacts | id | DefaultPaginator | ✅ | ❌ | +| tasks | | DefaultPaginator | ✅ | ❌ | +| events | id | DefaultPaginator | ✅ | ❌ | +| products | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-27 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From 961657375171129f01c474b14f29800bd52c8823 Mon Sep 17 00:00:00 2001 From: Om Bhardwaj <115864495+ombhardwajj@users.noreply.github.com> Date: Wed, 6 Nov 2024 23:04:39 +0530 Subject: [PATCH 770/808] source-openaq contribution from ombhardwajj (#47021) Co-authored-by: Marcos Marx --- .../connectors/source-openaq/README.md | 36 + .../source-openaq/acceptance-test-config.yml | 17 + .../connectors/source-openaq/icon.svg | 1 + .../connectors/source-openaq/manifest.yaml | 2060 +++++++++++++++++ .../connectors/source-openaq/metadata.yaml | 35 + docs/integrations/sources/openaq.md | 43 + 6 files changed, 2192 insertions(+) create mode 100644 airbyte-integrations/connectors/source-openaq/README.md create mode 100644 airbyte-integrations/connectors/source-openaq/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-openaq/icon.svg create mode 100644 airbyte-integrations/connectors/source-openaq/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-openaq/metadata.yaml create mode 100644 docs/integrations/sources/openaq.md diff --git a/airbyte-integrations/connectors/source-openaq/README.md b/airbyte-integrations/connectors/source-openaq/README.md new file mode 100644 index 000000000000..fe90cdf7aea4 --- /dev/null +++ b/airbyte-integrations/connectors/source-openaq/README.md @@ -0,0 +1,36 @@ +# OpenAQ +This directory contains the manifest-only connector for `source-openaq`. + +The OpenAQ API provides open access to global air quality data. +This connector enables you to fetch data from all the streams listed on their website such as Locations , Sensors , Measurements and much more. + +Docs : https://docs.openaq.org/using-the-api/quick-start + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-openaq:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-openaq build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-openaq test +``` + diff --git a/airbyte-integrations/connectors/source-openaq/acceptance-test-config.yml b/airbyte-integrations/connectors/source-openaq/acceptance-test-config.yml new file mode 100644 index 000000000000..e4d77afa656b --- /dev/null +++ b/airbyte-integrations/connectors/source-openaq/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-openaq:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-openaq/icon.svg b/airbyte-integrations/connectors/source-openaq/icon.svg new file mode 100644 index 000000000000..58bac52844b4 --- /dev/null +++ b/airbyte-integrations/connectors/source-openaq/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-openaq/manifest.yaml b/airbyte-integrations/connectors/source-openaq/manifest.yaml new file mode 100644 index 000000000000..0b26cfa0d889 --- /dev/null +++ b/airbyte-integrations/connectors/source-openaq/manifest.yaml @@ -0,0 +1,2060 @@ +version: 5.14.0 + +type: DeclarativeSource + +description: >- + The OpenAQ API provides open access to global air quality data. + + This connector enables you to fetch data from all the streams listed on their + website such as Locations , Sensors , Measurements and much more. + + + Docs : https://docs.openaq.org/using-the-api/quick-start + +check: + type: CheckStream + stream_names: + - instruments + +definitions: + streams: + instruments: + type: DeclarativeStream + name: instruments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: instruments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/instruments" + manufacturers: + type: DeclarativeStream + name: manufacturers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: manufacturers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/manufacturers" + manufacturer_instruments: + type: DeclarativeStream + name: manufacturer_instruments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: manufacturers/{{ stream_partition.manufacturer_id }}/instruments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: manufacturer_id + stream: + $ref: "#/definitions/streams/manufacturers" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/manufacturer_instruments" + locations: + type: DeclarativeStream + name: locations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: locations + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 2 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RETRY + http_codes: + - 500 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: ListPartitionRouter + values: "{{ config.country_ids }}" + cursor_field: co_id + request_option: + type: RequestOption + inject_into: request_parameter + field_name: countries_id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/locations" + licenses: + type: DeclarativeStream + name: licenses + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: licenses + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/licenses" + license_instrument: + type: DeclarativeStream + name: license_instrument + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: licenses/{{ stream_partition.licenses_id }} + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: licenses_id + stream: + $ref: "#/definitions/streams/licenses" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/license_instrument" + parameters: + type: DeclarativeStream + name: parameters + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: parameters + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/parameters" + countries: + type: DeclarativeStream + name: countries + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: countries + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/countries" + latest_parameters: + type: DeclarativeStream + name: latest_parameters + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: parameters/{{ stream_partition.parameters_id }}/latest + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: parameters_id + stream: + $ref: "#/definitions/streams/parameters" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/latest_parameters" + sensors: + type: DeclarativeStream + name: sensors + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: locations/{{ stream_partition.location_id }}/sensors + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 10 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 5 + response_filters: + - type: HttpResponseFilter + action: RETRY + http_codes: + - 500 + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: location_id + stream: + $ref: "#/definitions/streams/locations" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sensors" + providers: + type: DeclarativeStream + name: providers + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: providers + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/providers" + owners: + type: DeclarativeStream + name: owners + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: owners + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/owners" + location_latest_measure: + type: DeclarativeStream + name: location_latest_measure + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: locations/{{ stream_partition.location_id }}/latest + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: location_id + stream: + $ref: "#/definitions/streams/locations" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/location_latest_measure" + sensor_measurements: + type: DeclarativeStream + name: sensor_measurements + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: sensors/{{ stream_partition.sensor_id }}/measurements + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: sensor_id + stream: + $ref: "#/definitions/streams/sensors" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/sensor_measurements" + measurements_daily: + type: DeclarativeStream + name: measurements_daily + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: sensors/{{ stream_partition.sensor_id }}/days + http_method: GET + error_handler: + type: CompositeErrorHandler + error_handlers: + - type: DefaultErrorHandler + max_retries: 10 + backoff_strategies: + - type: ConstantBackoffStrategy + backoff_time_in_seconds: 10 + response_filters: + - type: HttpResponseFilter + action: SUCCESS + http_codes: + - 500 + error_message: Internal Server Error + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: PageIncrement + page_size: 1000 + start_from_page: 1 + inject_on_first_request: true + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: sensor_id + stream: + $ref: "#/definitions/streams/sensors" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/measurements_daily" + measurements_yearly: + type: DeclarativeStream + name: measurements_yearly + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: sensors/{{ stream_partition.sensor_id }}/years + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: id + partition_field: sensor_id + stream: + $ref: "#/definitions/streams/sensors" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/measurements_yearly" + base_requester: + type: HttpRequester + url_base: https://api.openaq.org/v3/ + authenticator: + type: ApiKeyAuthenticator + api_token: "{{ config[\"api_key\"] }}" + inject_into: + type: RequestOption + field_name: X-API-Key + inject_into: header + +streams: + - $ref: "#/definitions/streams/instruments" + - $ref: "#/definitions/streams/manufacturers" + - $ref: "#/definitions/streams/manufacturer_instruments" + - $ref: "#/definitions/streams/locations" + - $ref: "#/definitions/streams/licenses" + - $ref: "#/definitions/streams/license_instrument" + - $ref: "#/definitions/streams/parameters" + - $ref: "#/definitions/streams/countries" + - $ref: "#/definitions/streams/latest_parameters" + - $ref: "#/definitions/streams/sensors" + - $ref: "#/definitions/streams/providers" + - $ref: "#/definitions/streams/owners" + - $ref: "#/definitions/streams/location_latest_measure" + - $ref: "#/definitions/streams/sensor_measurements" + - $ref: "#/definitions/streams/measurements_daily" + - $ref: "#/definitions/streams/measurements_yearly" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - country_ids + properties: + api_key: + type: string + order: 0 + title: API Key + airbyte_secret: true + country_ids: + type: array + description: >- + The list of IDs of countries (comma separated) you need the data for, + check more: https://docs.openaq.org/resources/countries + order: 1 + title: Countries + additionalProperties: true + +metadata: + autoImportSchema: + instruments: true + manufacturers: true + manufacturer_instruments: true + locations: true + licenses: true + license_instrument: true + parameters: true + countries: true + latest_parameters: true + sensors: true + providers: true + owners: true + location_latest_measure: true + sensor_measurements: true + measurements_daily: true + measurements_yearly: true + testedStreams: + instruments: + streamHash: 37ced606dd4d1ee203685c7dfff05e26f1c6fbe0 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + manufacturers: + streamHash: 758a158a89e8f45543eb8c22c99ea8643ea462ab + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + manufacturer_instruments: + streamHash: 1d7607c726b0ca392e558ae0b2244c6696b67a0e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + locations: + streamHash: 19ade0d6f041647c45cc191e69b2d4fb6c4a5203 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + licenses: + streamHash: 186c2b5653b20ef06c281f6aef755eee7b1c050f + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + license_instrument: + streamHash: 1ba49590965222df97cb14b486c66eddbffd3253 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + parameters: + streamHash: 2957351af4367680bc00dee0b089bb0b44ab51f1 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + countries: + streamHash: 8d9861715c30528ea96f98e4cb461a87ab3fbef0 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + latest_parameters: + streamHash: 5c9ed8694a093960cd9fa4a5a5821d4b2ccd9282 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + sensors: + streamHash: 32b6ebb6a4882b0e0b46b458aa2ad685df21be9e + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + providers: + streamHash: d4d7e6b2db844501fb3a3a8b004071d0be10c22a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + owners: + streamHash: f39546df1a5c47d70a3c98d020dae113f1bcd6f5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + location_latest_measure: + streamHash: d55e14b3570d202bb19b85675d5de26b634a8597 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + sensor_measurements: + streamHash: b1a0f502086b51e638bc82d67731db75b05d2392 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + measurements_daily: + streamHash: 1c3febd96e12e486b4a47d61cff3e6b6026a2157 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + measurements_yearly: + streamHash: 713432a65dbf7b74fa621638c524aa2c3def25b2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: {} + +schemas: + instruments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + isMonitor: + type: + - boolean + - "null" + manufacturer: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + name: + type: + - string + - "null" + required: + - id + manufacturers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + instruments: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + name: + type: + - string + - "null" + required: + - id + manufacturer_instruments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + isMonitor: + type: + - boolean + - "null" + manufacturer: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + name: + type: + - string + - "null" + required: + - id + locations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + bounds: + type: + - array + - "null" + items: + type: + - number + - "null" + coordinates: + type: + - object + - "null" + properties: + latitude: + type: + - number + - "null" + longitude: + type: + - number + - "null" + country: + type: + - object + - "null" + properties: + code: + type: + - string + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + datetimeFirst: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + datetimeLast: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + id: + type: number + instruments: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + isMobile: + type: + - boolean + - "null" + isMonitor: + type: + - boolean + - "null" + licenses: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + attribution: + type: + - object + - "null" + properties: + name: + type: + - string + - "null" + dateFrom: + type: + - string + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + locality: + type: + - string + - "null" + name: + type: + - string + - "null" + owner: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + provider: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + sensors: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + parameter: + type: + - object + - "null" + properties: + displayName: + type: + - string + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + units: + type: + - string + - "null" + timezone: + type: + - string + - "null" + required: + - id + licenses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attributionRequired: + type: + - boolean + - "null" + commercialUseAllowed: + type: + - boolean + - "null" + id: + type: + - number + - "null" + modificationAllowed: + type: + - boolean + - "null" + name: + type: + - string + - "null" + redistributionAllowed: + type: + - boolean + - "null" + shareAlikeRequired: + type: + - boolean + - "null" + sourceUrl: + type: + - string + - "null" + license_instrument: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + attributionRequired: + type: + - boolean + - "null" + commercialUseAllowed: + type: + - boolean + - "null" + id: + type: number + modificationAllowed: + type: + - boolean + - "null" + name: + type: + - string + - "null" + redistributionAllowed: + type: + - boolean + - "null" + shareAlikeRequired: + type: + - boolean + - "null" + sourceUrl: + type: + - string + - "null" + required: + - id + parameters: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + displayName: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + units: + type: + - string + - "null" + required: + - id + countries: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + code: + type: + - string + - "null" + datetimeFirst: + type: + - string + - "null" + datetimeLast: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + parameters: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + units: + type: + - string + - "null" + required: + - id + latest_parameters: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + coordinates: + type: + - object + - "null" + properties: + latitude: + type: + - number + - "null" + longitude: + type: + - number + - "null" + datetime: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + locationsId: + type: + - number + - "null" + sensorsId: + type: + - number + - "null" + value: + type: + - number + - "null" + sensors: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + coverage: + type: + - object + - "null" + properties: + datetimeFrom: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + datetimeTo: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + expectedCount: + type: + - number + - "null" + expectedInterval: + type: + - string + - "null" + observedCount: + type: + - number + - "null" + observedInterval: + type: + - string + - "null" + percentComplete: + type: + - number + - "null" + percentCoverage: + type: + - number + - "null" + datetimeFirst: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + datetimeLast: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + id: + type: number + latest: + type: + - object + - "null" + properties: + coordinates: + type: + - object + - "null" + properties: + latitude: + type: + - number + - "null" + longitude: + type: + - number + - "null" + datetime: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + value: + type: + - number + - "null" + name: + type: + - string + - "null" + parameter: + type: + - object + - "null" + properties: + displayName: + type: + - string + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + units: + type: + - string + - "null" + summary: + type: + - object + - "null" + properties: + avg: + type: + - number + - "null" + max: + type: + - number + - "null" + min: + type: + - number + - "null" + required: + - id + providers: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + bbox: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + coordinates: + type: + - array + - "null" + items: + anyOf: + - type: number + - type: array + items: + type: array + items: + type: number + datetimeAdded: + type: + - string + - "null" + datetimeFirst: + type: + - string + - "null" + datetimeLast: + type: + - string + - "null" + entitiesId: + type: + - number + - "null" + exportPrefix: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + parameters: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + units: + type: + - string + - "null" + sourceName: + type: + - string + - "null" + required: + - id + owners: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: number + name: + type: + - string + - "null" + required: + - id + location_latest_measure: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + coordinates: + type: + - object + - "null" + properties: + latitude: + type: + - number + - "null" + longitude: + type: + - number + - "null" + datetime: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + locationsId: + type: + - number + - "null" + sensorsId: + type: + - number + - "null" + value: + type: + - number + - "null" + sensor_measurements: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + coverage: + type: + - object + - "null" + properties: + datetimeFrom: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + datetimeTo: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + expectedCount: + type: + - number + - "null" + expectedInterval: + type: + - string + - "null" + observedCount: + type: + - number + - "null" + observedInterval: + type: + - string + - "null" + percentComplete: + type: + - number + - "null" + percentCoverage: + type: + - number + - "null" + flagInfo: + type: + - object + - "null" + properties: + hasFlags: + type: + - boolean + - "null" + parameter: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + units: + type: + - string + - "null" + period: + type: + - object + - "null" + properties: + datetimeFrom: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + datetimeTo: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + interval: + type: + - string + - "null" + label: + type: + - string + - "null" + value: + type: + - number + - "null" + measurements_daily: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + coverage: + type: + - object + - "null" + properties: + datetimeFrom: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + datetimeTo: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + expectedCount: + type: + - number + - "null" + expectedInterval: + type: + - string + - "null" + observedCount: + type: + - number + - "null" + observedInterval: + type: + - string + - "null" + percentComplete: + type: + - number + - "null" + percentCoverage: + type: + - number + - "null" + flagInfo: + type: + - object + - "null" + properties: + hasFlags: + type: + - boolean + - "null" + parameter: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + units: + type: + - string + - "null" + period: + type: + - object + - "null" + properties: + datetimeFrom: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + datetimeTo: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + interval: + type: + - string + - "null" + label: + type: + - string + - "null" + summary: + type: + - object + - "null" + properties: + avg: + type: + - number + - "null" + max: + type: + - number + - "null" + median: + type: + - number + - "null" + min: + type: + - number + - "null" + q02: + type: + - number + - "null" + q25: + type: + - number + - "null" + q75: + type: + - number + - "null" + q98: + type: + - number + - "null" + sd: + type: + - number + - "null" + value: + type: + - number + - "null" + measurements_yearly: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + coverage: + type: + - object + - "null" + properties: + datetimeFrom: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + datetimeTo: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + expectedCount: + type: + - number + - "null" + expectedInterval: + type: + - string + - "null" + observedCount: + type: + - number + - "null" + observedInterval: + type: + - string + - "null" + percentComplete: + type: + - number + - "null" + percentCoverage: + type: + - number + - "null" + flagInfo: + type: + - object + - "null" + properties: + hasFlags: + type: + - boolean + - "null" + parameter: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + units: + type: + - string + - "null" + period: + type: + - object + - "null" + properties: + datetimeFrom: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + datetimeTo: + type: + - object + - "null" + properties: + local: + type: + - string + - "null" + utc: + type: + - string + - "null" + interval: + type: + - string + - "null" + label: + type: + - string + - "null" + summary: + type: + - object + - "null" + properties: + avg: + type: + - number + - "null" + max: + type: + - number + - "null" + median: + type: + - number + - "null" + min: + type: + - number + - "null" + q02: + type: + - number + - "null" + q25: + type: + - number + - "null" + q75: + type: + - number + - "null" + q98: + type: + - number + - "null" + sd: + type: + - number + - "null" + value: + type: + - number + - "null" diff --git a/airbyte-integrations/connectors/source-openaq/metadata.yaml b/airbyte-integrations/connectors/source-openaq/metadata.yaml new file mode 100644 index 000000000000..52233430c448 --- /dev/null +++ b/airbyte-integrations/connectors/source-openaq/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.openaq.org" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-openaq + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.14.0@sha256:accdf6c1bbcabd45b40f836692e4f3b1a1e1f0b28267973802ee212cd9c2c16a + connectorSubtype: api + connectorType: source + definitionId: 5b7216ca-1d6d-4a50-89c3-067746806586 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-openaq + githubIssueLabel: source-openaq + icon: icon.svg + license: MIT + name: OpenAQ + releaseDate: 2024-10-19 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/openaq + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/openaq.md b/docs/integrations/sources/openaq.md new file mode 100644 index 000000000000..7e18a3142eb7 --- /dev/null +++ b/docs/integrations/sources/openaq.md @@ -0,0 +1,43 @@ +# OpenAQ +The OpenAQ API provides open access to global air quality data. +This connector enables you to fetch data from all the streams listed on their website such as Locations , Sensors , Measurements and much more. + +Docs : https://docs.openaq.org/using-the-api/quick-start + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. | | +| `country_ids` | `array` | Countries. The list of IDs of countries (comma separated) you need the data for, check more: https://docs.openaq.org/resources/countries | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| instruments | id | DefaultPaginator | ✅ | ❌ | +| manufacturers | id | DefaultPaginator | ✅ | ❌ | +| manufacturer_instruments | id | No pagination | ✅ | ❌ | +| locations | id | DefaultPaginator | ✅ | ❌ | +| licenses | | DefaultPaginator | ✅ | ❌ | +| license_instrument | id | No pagination | ✅ | ❌ | +| parameters | id | DefaultPaginator | ✅ | ❌ | +| countries | id | DefaultPaginator | ✅ | ❌ | +| latest_parameters | | No pagination | ✅ | ❌ | +| sensors | id | DefaultPaginator | ✅ | ❌ | +| providers | id | DefaultPaginator | ✅ | ❌ | +| owners | id | DefaultPaginator | ✅ | ❌ | +| location_latest_measure | | No pagination | ✅ | ❌ | +| sensor_measurements | | DefaultPaginator | ✅ | ❌ | +| measurements_daily | | DefaultPaginator | ✅ | ❌ | +| measurements_yearly | | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-11-06 | | Initial release by [@marcosmarxm](https://github.com/marcosmarxm) via Connector Builder | + +
From 8e3b5a037dd85144733e395a9249461fe0b13890 Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Wed, 6 Nov 2024 23:32:21 +0530 Subject: [PATCH 771/808] Source Gorgias: Fix incremental sync date format (#48378) Co-authored-by: Natik Gadzhi --- .../connectors/source-gorgias/manifest.yaml | 238 +++++++++++++++--- .../connectors/source-gorgias/metadata.yaml | 2 +- docs/integrations/sources/gorgias.md | 1 + 3 files changed, 212 insertions(+), 29 deletions(-) diff --git a/airbyte-integrations/connectors/source-gorgias/manifest.yaml b/airbyte-integrations/connectors/source-gorgias/manifest.yaml index be154ceb9b9f..4d8ed27bd736 100644 --- a/airbyte-integrations/connectors/source-gorgias/manifest.yaml +++ b/airbyte-integrations/connectors/source-gorgias/manifest.yaml @@ -50,6 +50,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -114,6 +116,8 @@ definitions: cursor_field: updated_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -180,6 +184,8 @@ definitions: cursor_field: updated_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -244,6 +250,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -308,6 +316,8 @@ definitions: cursor_field: updated_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -372,6 +382,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -436,6 +448,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -500,6 +514,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -564,6 +580,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -628,6 +646,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -692,6 +712,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -756,6 +778,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -820,6 +844,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -884,6 +910,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -948,6 +976,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -1020,6 +1050,8 @@ definitions: cursor_field: created_datetime cursor_datetime_formats: - "%Y-%m-%dT%H:%M:%S.%f%z" + - "%Y-%m-%d %H:%M:%S.%f+00:00" + - "%Y-%m-%d %H:%M:%S+00:00" datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" start_datetime: type: MinMaxDatetime @@ -1112,114 +1144,148 @@ metadata: messages: true users: true views_items: true + yamlComponents: + streams: + account: + - incrementalSync + customers: + - incrementalSync + custom-fields: + - incrementalSync + events: + - incrementalSync + integrations: + - incrementalSync + jobs: + - incrementalSync + macros: + - incrementalSync + views: + - incrementalSync + rules: + - incrementalSync + satisfaction-surveys: + - incrementalSync + tags: + - incrementalSync + teams: + - incrementalSync + tickets: + - incrementalSync + messages: + - incrementalSync + users: + - incrementalSync + views_items: + - incrementalSync testedStreams: account: - streamHash: 35c0cadba84dbdeff763b400c40d63332063f0ca + streamHash: d744624c7484b6696d00b448a4873d44577fe6d4 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true customers: - streamHash: f4fa57dc21e535ec9b5b8b772ca89d3c7587e2e9 + streamHash: ca559007a6bf263aeaf11dbb9b96295e64555c2f hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true custom-fields: - hasRecords: true - streamHash: c19cf92c5bde4806aba375c664479a9d36a61896 + streamHash: 158d74d4ec15ddb393fcd93410df78b504b07144 hasResponse: true - primaryKeysAreUnique: true - primaryKeysArePresent: true responsesAreSuccessful: true - events: hasRecords: true - streamHash: 49ac78abe633a9c4fce0778e183d9bba24473308 - hasResponse: true - primaryKeysAreUnique: true primaryKeysArePresent: true + primaryKeysAreUnique: true + events: + streamHash: 180fd5e4dcc2a7c6c78011249aa2a8bdc8910c4f + hasResponse: true responsesAreSuccessful: true - integrations: hasRecords: true - streamHash: d160fd9e3e9e1a62d7d8c789126191c998476934 - hasResponse: true - primaryKeysAreUnique: true primaryKeysArePresent: true + primaryKeysAreUnique: true + integrations: + streamHash: d7d971ef58a4eab715c2a3609213d5d65e8fefca + hasResponse: true responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true jobs: - streamHash: e705479af8c394a6a042d19943fde3c7c574df91 + streamHash: ed6c3e3ed40bb137f8ef8748435bd2c83b9e3d74 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true macros: - hasRecords: true - streamHash: bebe6bd207f5507cc2b92614e82608fe5488acd7 + streamHash: 955fe8be382283bd12e9b461f8c6dea96d521480 hasResponse: true - primaryKeysAreUnique: true - primaryKeysArePresent: true responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true views: - streamHash: fd8ae05b480c0312b7780da2d0ecc1831779db78 + streamHash: f6f2fec4decd9c5657d47007cf7ca50c74798f5d hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true rules: - streamHash: 5df2be309fb2e0d9ddc5903d1f1177e8ddb0e551 + streamHash: 1bbb2ded40d6ec6ac514a7a4d031824fb72c8671 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true satisfaction-surveys: - streamHash: 83a105ff8474fa6f58bb39fa09006938444f10ce + streamHash: 78392e54d6a852c07c6b68f1268167a523a1fed8 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true tags: - streamHash: 3715b9466b20abc4f5bdc222cd4dde77d65b0344 + streamHash: d08f102f1d1d60817d0dc073daebc13c9589d2fc hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true teams: - streamHash: 4c753176b11815ff3da55d6806ee16839b9c0c7d + streamHash: 0ef08ffb72fa8e5404c7ceb3d350be90cf39cbcb hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true tickets: - streamHash: 5086078a027afddc63a8a323be7c7208b47b109c + streamHash: b735a8354cf6d5ad5034612614d137a60a0420d8 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true messages: - streamHash: d57f0f0ff7940081368628d20293453fd5807e0a + streamHash: 5fb8111396993c073be7704df24dac5c8bdb3446 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true users: - streamHash: 4c462adb8d9112b0f7d54e967939cdb8627ba15f + streamHash: 5c44f43aba3bdbdddb0bce2483d1a2baf7591307 hasResponse: true responsesAreSuccessful: true hasRecords: true primaryKeysArePresent: true primaryKeysAreUnique: true views_items: - streamHash: 95d5e0af74d9233ab6a07c00834b2d3b993b4496 + streamHash: 3fb81032865e8878b9d3d811f070b8e09c2d82cf hasResponse: true responsesAreSuccessful: true hasRecords: true @@ -1420,6 +1486,19 @@ schemas: - object - "null" properties: + notification: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + message: + type: + - string + - "null" status: type: - string @@ -1440,6 +1519,10 @@ schemas: type: - string - "null" + custom_fields: + type: + - object + - "null" email: type: - string @@ -1693,12 +1776,103 @@ schemas: - "null" created_datetime: type: string + ended_datetime: + type: + - string + - "null" id: type: number info: type: - object - "null" + properties: + _composed_files: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + absolute_path: + type: + - string + - "null" + content_type: + type: + - string + - "null" + name: + type: + - string + - "null" + size: + type: + - number + - "null" + url: + type: + - string + - "null" + _tickets_files: + type: + - array + - "null" + archive: + type: + - object + - "null" + properties: + absolute_path: + type: + - string + - "null" + content_type: + type: + - string + - "null" + name: + type: + - string + - "null" + size: + type: + - number + - "null" + url: + type: + - string + - "null" + custom_fields_mapping: + type: + - object + - "null" + custom_fields_order: + type: + - array + - "null" + items: + type: + - string + - "null" + iteration_over: + type: + - boolean + - "null" + progress_count: + type: + - number + - "null" + progress_cursor: + type: + - number + - "null" + timezone: + type: + - string + - "null" params: type: - object @@ -2053,6 +2227,10 @@ schemas: type: - string - "null" + started_datetime: + type: + - string + - "null" status: type: - string @@ -7371,6 +7549,10 @@ schemas: - "null" created_datetime: type: string + custom_fields: + type: + - object + - "null" email: type: - string diff --git a/airbyte-integrations/connectors/source-gorgias/metadata.yaml b/airbyte-integrations/connectors/source-gorgias/metadata.yaml index dd2adedb848c..54a9e5182256 100644 --- a/airbyte-integrations/connectors/source-gorgias/metadata.yaml +++ b/airbyte-integrations/connectors/source-gorgias/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9fdc3733-c51a-4129-9be5-7e9ad6eab6ac - dockerImageTag: 0.0.3 + dockerImageTag: 0.0.4 dockerRepository: airbyte/source-gorgias githubIssueLabel: source-gorgias icon: icon.svg diff --git a/docs/integrations/sources/gorgias.md b/docs/integrations/sources/gorgias.md index a56688418f0e..c11684d36d9c 100644 --- a/docs/integrations/sources/gorgias.md +++ b/docs/integrations/sources/gorgias.md @@ -43,6 +43,7 @@ Visit `https://developers.gorgias.com/reference/introduction` for API documentat | Version | Date | Pull Request | Subject | | ------------------ | ------------ | --- | ---------------- | +| 0.0.4 | 2024-11-06 | [48378](https://github.com/airbytehq/airbyte/pull/48378) | Fix incremental sync format, Auto update schema with additional fields | | 0.0.3 | 2024-10-29 | [47923](https://github.com/airbytehq/airbyte/pull/47923) | Update dependencies | | 0.0.2 | 2024-10-28 | [47459](https://github.com/airbytehq/airbyte/pull/47459) | Update dependencies | | 0.0.1 | 2024-09-29 | [46221](https://github.com/airbytehq/airbyte/pull/46221) | Initial release by [@btkcodedev](https://github.com/btkcodedev) via Connector Builder | From 6294144c169da7bea246d5954e719dd958325972 Mon Sep 17 00:00:00 2001 From: Stephane Geneix <147216312+stephane-airbyte@users.noreply.github.com> Date: Wed, 6 Nov 2024 10:45:15 -0800 Subject: [PATCH 772/808] source-sftp-bulk: make the private key an airbyte secret (#46739) simply making the private key an airbyte secret. I also tested this change in cloud on an existing connection where the field was not an airbyteSecret, and everything worked smoothly --- .../connectors/source-sftp-bulk/integration_tests/spec.json | 1 + airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml | 2 +- airbyte-integrations/connectors/source-sftp-bulk/pyproject.toml | 2 +- .../connectors/source-sftp-bulk/source_sftp_bulk/spec.py | 2 +- docs/integrations/sources/sftp-bulk.md | 1 + 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/spec.json b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/spec.json index dd8d9b09f717..eef7da5cce32 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/spec.json +++ b/airbyte-integrations/connectors/source-sftp-bulk/integration_tests/spec.json @@ -524,6 +524,7 @@ "private_key": { "title": "Private key", "description": "The Private key", + "airbyte_secret": true, "multiline": true, "order": 4, "type": "string" diff --git a/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml b/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml index b4f71cbb1c51..4de3a174c45e 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml +++ b/airbyte-integrations/connectors/source-sftp-bulk/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: file connectorType: source definitionId: 31e3242f-dee7-4cdc-a4b8-8e06c5458517 - dockerImageTag: 1.3.0 + dockerImageTag: 1.4.0 dockerRepository: airbyte/source-sftp-bulk documentationUrl: https://docs.airbyte.com/integrations/sources/sftp-bulk githubIssueLabel: source-sftp-bulk diff --git a/airbyte-integrations/connectors/source-sftp-bulk/pyproject.toml b/airbyte-integrations/connectors/source-sftp-bulk/pyproject.toml index 78b1d5b189dc..5bb8477d6395 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/pyproject.toml +++ b/airbyte-integrations/connectors/source-sftp-bulk/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.3.0" +version = "1.4.0" name = "source-sftp-bulk" description = "Source implementation for SFTP Bulk." authors = [ "Airbyte ",] diff --git a/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/spec.py b/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/spec.py index 5de6ce689963..06863da1ae01 100644 --- a/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/spec.py +++ b/airbyte-integrations/connectors/source-sftp-bulk/source_sftp_bulk/spec.py @@ -23,7 +23,7 @@ class Config(OneOfOptionConfig): discriminator = "auth_type" auth_type: Literal["private_key"] = Field("private_key", const=True) - private_key: str = Field(title="Private key", description="The Private key", multiline=True, order=4) + private_key: str = Field(title="Private key", description="The Private key", multiline=True, order=4, airbyte_secret=True) class SourceSFTPBulkSpec(AbstractFileBasedSpec): diff --git a/docs/integrations/sources/sftp-bulk.md b/docs/integrations/sources/sftp-bulk.md index ca50b008701a..a3dad5cf1a56 100644 --- a/docs/integrations/sources/sftp-bulk.md +++ b/docs/integrations/sources/sftp-bulk.md @@ -156,6 +156,7 @@ This source provides a single stream per file with a dynamic schema. The current | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------| +| 1.4.0 | 2024-10-31 | [46739](https://github.com/airbytehq/airbyte/pull/46739) | make private key an airbyte secret. | | 1.3.0 | 2024-10-31 | [47703](https://github.com/airbytehq/airbyte/pull/47703) | Update dependency to CDK v6 with ability to transfer files. | | 1.2.0 | 2024-09-03 | [46323](https://github.com/airbytehq/airbyte/pull/46323) | Update dependency to CDK v5 | | 1.1.0 | 2024-08-14 | [44028](https://github.com/airbytehq/airbyte/pull/44028) | Update dependency to CDK v4 | From e6d3cde64a35a8708eeb917959ce3e9a19201c32 Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Wed, 6 Nov 2024 11:58:31 -0800 Subject: [PATCH 773/808] Bulk Load CDK: Preliminary Refactor before adding mappers (#48350) --- .../cdk/load/check/DestinationChecker.kt | 4 +- .../cdk/load/command/DestinationStream.kt | 59 ---- .../load/data/AirbyteSchemaIdentityMapper.kt | 10 +- .../io/airbyte/cdk/load/data/AirbyteType.kt | 2 - .../data/AirbyteTypeToAirbyteTypeWithMeta.kt | 64 ++++ .../load/data/AirbyteValueIdentityMapper.kt | 1 - ...DestinationRecordToAirbyteValueWithMeta.kt | 24 +- .../cdk/load/data/NullableToUnionNull.kt | 14 - .../load/data/UnionTypeToDisjointRecord.kt | 16 +- .../load/data/json/AirbyteTypeToJsonSchema.kt | 15 +- .../load/data/json/JsonSchemaToAirbyteType.kt | 87 +++--- .../cdk/load/data/json/JsonToAirbyteValue.kt | 2 - .../data/AirbyteSchemaIdentityMapperTest.kt | 4 +- .../data/AirbyteValueIdentityMapperTest.kt | 1 - .../cdk/load/data/NullableToUnionNullTest.kt | 49 --- .../data/UnionTypeToDisjointRecordTest.kt | 12 +- .../json/AirbyteSchemaTypeToJsonSchemaTest.kt | 291 ++++++++++-------- .../load/data/json/AirbyteValueToJsonTest.kt | 14 +- .../json/JsonSchemaToAirbyteSchemaTypeTest.kt | 8 - .../load/data/json/JsonToAirbyteValueTest.kt | 7 - .../load/data/avro/AirbyteTypeToAvroSchema.kt | 2 - .../data/avro/AvroRecordToAirbyteValue.kt | 3 - .../ObjectStorageFormattingWriter.kt | 35 +-- .../cdk/load/ObjectStorageDataDumper.kt | 19 +- 24 files changed, 320 insertions(+), 423 deletions(-) create mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteTypeToAirbyteTypeWithMeta.kt delete mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/NullableToUnionNull.kt delete mode 100644 airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/NullableToUnionNullTest.kt diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/check/DestinationChecker.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/check/DestinationChecker.kt index de44f79fd389..e46ef32658d3 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/check/DestinationChecker.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/check/DestinationChecker.kt @@ -7,7 +7,7 @@ package io.airbyte.cdk.load.check import io.airbyte.cdk.load.command.Append import io.airbyte.cdk.load.command.DestinationConfiguration import io.airbyte.cdk.load.command.DestinationStream -import io.airbyte.cdk.load.data.NullType +import io.airbyte.cdk.load.data.ObjectTypeWithoutSchema /** * A check operation that is run before the destination is used. @@ -25,7 +25,7 @@ interface DestinationChecker { DestinationStream( descriptor = DestinationStream.Descriptor("testing", "test"), importType = Append, - schema = NullType, + schema = ObjectTypeWithoutSchema, generationId = 1, minimumGenerationId = 0, syncId = 1, diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/command/DestinationStream.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/command/DestinationStream.kt index bd14ada6491e..04044cbc6e41 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/command/DestinationStream.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/command/DestinationStream.kt @@ -5,14 +5,8 @@ package io.airbyte.cdk.load.command import io.airbyte.cdk.load.data.AirbyteType -import io.airbyte.cdk.load.data.ArrayType -import io.airbyte.cdk.load.data.FieldType -import io.airbyte.cdk.load.data.IntegerType -import io.airbyte.cdk.load.data.ObjectType -import io.airbyte.cdk.load.data.StringType import io.airbyte.cdk.load.data.json.AirbyteTypeToJsonSchema import io.airbyte.cdk.load.data.json.JsonSchemaToAirbyteType -import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.protocol.models.v0.AirbyteStream import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream import io.airbyte.protocol.models.v0.DestinationSyncMode @@ -51,59 +45,6 @@ data class DestinationStream( * what actually exists, as many destinations have legacy data from before this schema was * adopted. */ - val schemaWithMeta: ObjectType - get() = - ObjectType( - linkedMapOf( - DestinationRecord.Meta.COLUMN_NAME_AB_RAW_ID to - FieldType(StringType, nullable = false), - DestinationRecord.Meta.COLUMN_NAME_AB_EXTRACTED_AT to - FieldType(IntegerType, nullable = false), - DestinationRecord.Meta.COLUMN_NAME_AB_META to - FieldType( - nullable = false, - type = - ObjectType( - linkedMapOf( - "sync_id" to FieldType(IntegerType, nullable = false), - "changes" to - FieldType( - nullable = false, - type = - ArrayType( - FieldType( - nullable = false, - type = - ObjectType( - linkedMapOf( - "field" to - FieldType( - StringType, - nullable = false - ), - "change" to - FieldType( - StringType, - nullable = false - ), - "reason" to - FieldType( - StringType, - nullable = false - ), - ) - ) - ) - ) - ) - ) - ) - ), - DestinationRecord.Meta.COLUMN_NAME_AB_GENERATION_ID to - FieldType(IntegerType, nullable = false), - DestinationRecord.Meta.COLUMN_NAME_DATA to FieldType(schema, nullable = false), - ) - ) /** * This is not fully round-trippable. Destinations don't care about most of the stuff in an diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapper.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapper.kt index a36c286a03a5..8e6936639d42 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapper.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapper.kt @@ -4,10 +4,13 @@ package io.airbyte.cdk.load.data -interface AirbyteSchemaIdentityMapper { - fun map(schema: AirbyteType): AirbyteType = +interface AirbyteSchemaMapper { + fun map(schema: AirbyteType): AirbyteType +} + +interface AirbyteSchemaIdentityMapper : AirbyteSchemaMapper { + override fun map(schema: AirbyteType): AirbyteType = when (schema) { - is NullType -> mapNull(schema) is StringType -> mapString(schema) is BooleanType -> mapBoolean(schema) is IntegerType -> mapInteger(schema) @@ -26,7 +29,6 @@ interface AirbyteSchemaIdentityMapper { is UnknownType -> mapUnknown(schema) } - fun mapNull(schema: NullType): AirbyteType = schema fun mapString(schema: StringType): AirbyteType = schema fun mapBoolean(schema: BooleanType): AirbyteType = schema fun mapInteger(schema: IntegerType): AirbyteType = schema diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteType.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteType.kt index 5093f0597077..f0356dd8cb51 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteType.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteType.kt @@ -6,8 +6,6 @@ package io.airbyte.cdk.load.data sealed interface AirbyteType -data object NullType : AirbyteType - data object StringType : AirbyteType data object BooleanType : AirbyteType diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteTypeToAirbyteTypeWithMeta.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteTypeToAirbyteTypeWithMeta.kt new file mode 100644 index 000000000000..d7d399e85ca6 --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteTypeToAirbyteTypeWithMeta.kt @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.message.DestinationRecord + +class AirbyteTypeToAirbyteTypeWithMeta { + fun convert(schema: AirbyteType): ObjectType = + ObjectType( + linkedMapOf( + DestinationRecord.Meta.COLUMN_NAME_AB_RAW_ID to + FieldType(StringType, nullable = false), + DestinationRecord.Meta.COLUMN_NAME_AB_EXTRACTED_AT to + FieldType(IntegerType, nullable = false), + DestinationRecord.Meta.COLUMN_NAME_AB_META to + FieldType( + nullable = false, + type = + ObjectType( + linkedMapOf( + "sync_id" to FieldType(IntegerType, nullable = false), + "changes" to + FieldType( + nullable = false, + type = + ArrayType( + FieldType( + nullable = false, + type = + ObjectType( + linkedMapOf( + "field" to + FieldType( + StringType, + nullable = false + ), + "change" to + FieldType( + StringType, + nullable = false + ), + "reason" to + FieldType( + StringType, + nullable = false + ), + ) + ) + ) + ) + ) + ) + ) + ), + DestinationRecord.Meta.COLUMN_NAME_AB_GENERATION_ID to + FieldType(IntegerType, nullable = false), + DestinationRecord.Meta.COLUMN_NAME_DATA to FieldType(schema, nullable = false), + ) + ) +} + +fun AirbyteType.withAirbyteMeta(): ObjectType = AirbyteTypeToAirbyteTypeWithMeta().convert(this) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt index eaab8330f276..f72d908425fd 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt @@ -45,7 +45,6 @@ open class AirbyteValueIdentityMapper( mapTimestampWithTimezone(value as TimestampValue, path) is TimestampTypeWithoutTimezone -> mapTimestampWithoutTimezone(value as TimestampValue, path) - is NullType -> mapNull(path) is UnknownType -> { collectFailure(path) mapNull(path) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/DestinationRecordToAirbyteValueWithMeta.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/DestinationRecordToAirbyteValueWithMeta.kt index 84392b1503c3..8343c158ce09 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/DestinationRecordToAirbyteValueWithMeta.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/DestinationRecordToAirbyteValueWithMeta.kt @@ -4,29 +4,24 @@ package io.airbyte.cdk.load.data -import io.airbyte.cdk.load.command.DestinationCatalog +import io.airbyte.cdk.load.command.DestinationStream import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.message.DestinationRecord.Meta -import io.micronaut.context.annotation.Secondary -import jakarta.inject.Singleton import java.util.* -@Singleton -@Secondary -class DestinationRecordToAirbyteValueWithMeta(private val catalog: DestinationCatalog) { - fun decorate(record: DestinationRecord): ObjectValue { - val streamActual = catalog.getStream(record.stream.name, record.stream.namespace) +class DestinationRecordToAirbyteValueWithMeta(val stream: DestinationStream) { + fun convert(data: AirbyteValue, emittedAtMs: Long, meta: DestinationRecord.Meta?): ObjectValue { return ObjectValue( linkedMapOf( Meta.COLUMN_NAME_AB_RAW_ID to StringValue(UUID.randomUUID().toString()), - Meta.COLUMN_NAME_AB_EXTRACTED_AT to IntegerValue(record.emittedAtMs), + Meta.COLUMN_NAME_AB_EXTRACTED_AT to IntegerValue(emittedAtMs), Meta.COLUMN_NAME_AB_META to ObjectValue( linkedMapOf( - "sync_id" to IntegerValue(streamActual.syncId), + "sync_id" to IntegerValue(stream.syncId), "changes" to ArrayValue( - record.meta?.changes?.map { + meta?.changes?.map { ObjectValue( linkedMapOf( "field" to StringValue(it.field), @@ -39,9 +34,12 @@ class DestinationRecordToAirbyteValueWithMeta(private val catalog: DestinationCa ) ) ), - Meta.COLUMN_NAME_AB_GENERATION_ID to IntegerValue(streamActual.generationId), - Meta.COLUMN_NAME_DATA to record.data + Meta.COLUMN_NAME_AB_GENERATION_ID to IntegerValue(stream.generationId), + Meta.COLUMN_NAME_DATA to data ) ) } } + +fun DestinationRecord.dataWithAirbyteMeta(stream: DestinationStream) = + DestinationRecordToAirbyteValueWithMeta(stream).convert(data, emittedAtMs, meta) diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/NullableToUnionNull.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/NullableToUnionNull.kt deleted file mode 100644 index 8b1ea3daa35a..000000000000 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/NullableToUnionNull.kt +++ /dev/null @@ -1,14 +0,0 @@ -/* - * Copyright (c) 2024 Airbyte, Inc., all rights reserved. - */ - -package io.airbyte.cdk.load.data - -class NullableToUnionNull : AirbyteSchemaIdentityMapper { - override fun mapField(field: FieldType): FieldType { - if (field.nullable) { - return FieldType(UnionType(listOf(field.type, NullType)), nullable = false) - } - return field - } -} diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt index 7217f8f32097..c6af8baad53f 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt @@ -8,30 +8,24 @@ import io.airbyte.cdk.load.message.DestinationRecord class UnionTypeToDisjointRecord : AirbyteSchemaIdentityMapper { override fun mapUnion(schema: UnionType): AirbyteType { - val (nullOptions, nonNullOptions) = schema.options.partition { it is NullType } - if (nonNullOptions.size < 2) { + if (schema.options.size < 2) { return schema } /* Create a schema of { "type": "string", "": , etc... } */ val properties = linkedMapOf("type" to FieldType(StringType, nullable = false)) - nonNullOptions.forEach { + schema.options.forEach { val name = typeName(it) if (name in properties) { throw IllegalArgumentException("Union of types with same name: $name") } properties[typeName(it)] = FieldType(it, nullable = true) } - val obj = ObjectType(properties) - if (nullOptions.isEmpty()) { - return obj - } - return UnionType(nullOptions + obj) + return ObjectType(properties) } companion object { fun typeName(type: AirbyteType): String = when (type) { - is NullType -> "null" is StringType -> "string" is BooleanType -> "boolean" is IntegerType -> "integer" @@ -58,8 +52,7 @@ class UnionValueToDisjointRecord(meta: DestinationRecord.Meta) : AirbyteValueIde schema: UnionType, path: List ): AirbyteValue { - val nNonNullOptions = schema.options.filter { it !is NullType }.size - if (nNonNullOptions < 2) { + if (schema.options.size < 2) { return value } @@ -82,7 +75,6 @@ class UnionValueToDisjointRecord(meta: DestinationRecord.Meta) : AirbyteValueIde is BooleanType -> value is BooleanValue is DateType -> value is DateValue is IntegerType -> value is IntegerValue - is NullType -> value is NullValue is NumberType -> value is NumberValue is ObjectType, is ObjectTypeWithoutSchema, diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt index c1f290a6f894..a55eb19183b6 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/AirbyteTypeToJsonSchema.kt @@ -16,7 +16,6 @@ class AirbyteTypeToJsonSchema { fun convert(airbyteType: AirbyteType): JsonNode { return when (airbyteType) { - is NullType -> ofType("null") is StringType -> ofType("string") is BooleanType -> ofType("boolean") is IntegerType -> ofType("integer") @@ -25,13 +24,13 @@ class AirbyteTypeToJsonSchema { JsonNodeFactory.instance .objectNode() .put("type", "array") - .set("items", fromFieldType(airbyteType.items)) + .set("items", convert(airbyteType.items.type)) is ArrayTypeWithoutSchema -> ofType("array") is ObjectType -> { val objNode = ofType("object") val properties = objNode.putObject("properties") airbyteType.properties.forEach { (name, field) -> - properties.replace(name, fromFieldType(field)) + properties.replace(name, convert(field.type)) } objNode } @@ -68,14 +67,4 @@ class AirbyteTypeToJsonSchema { is UnknownType -> JsonNodeFactory.instance.objectNode() } } - - private fun fromFieldType(field: FieldType): JsonNode { - if (field.nullable) { - if (field.type is UnionType) { - return convert(UnionType(options = field.type.options + NullType)) - } - return convert(UnionType(options = listOf(field.type, NullType))) - } - return convert(field.type) - } } diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteType.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteType.kt index 7653c70e467c..163cff0358dc 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteType.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteType.kt @@ -10,7 +10,9 @@ import com.fasterxml.jackson.databind.node.ObjectNode import io.airbyte.cdk.load.data.* class JsonSchemaToAirbyteType { - fun convert(schema: JsonNode): AirbyteType { + fun convert(schema: JsonNode): AirbyteType = convertInner(schema)!! + + private fun convertInner(schema: JsonNode): AirbyteType? { // try { if (schema.isObject && schema.has("type")) { // Normal json object with {"type": ..., ...} @@ -24,33 +26,33 @@ class JsonSchemaToAirbyteType { "number" -> fromNumber(schema) "array" -> fromArray(schema) "object" -> fromObject(schema) - "null" -> NullType + "null" -> null else -> throw IllegalArgumentException( "Unknown type: ${ - schema.get("type").asText() - }" + schema.get("type").asText() + }" ) } } else if (schemaType.isArray) { // {"type": [...], ...} unionFromCombinedTypes(schemaType.toList(), schema) } else { - UnknownType("unspported type for 'type' field: $schemaType") + UnknownType("unsupported type for 'type' field: $schemaType") } } else if (schema.isObject) { // {"oneOf": [...], ...} or {"anyOf": [...], ...} or {"allOf": [...], ...} val options = schema.get("oneOf") ?: schema.get("anyOf") ?: schema.get("allOf") return if (options != null) { - UnionType(options.map { convert(it as ObjectNode) }) + optionsToUnionOrSingleType(options.mapNotNull { convertInner(it as ObjectNode) }) } else { // Default to object if no type and not a union type - convert((schema as ObjectNode).put("type", "object")) + convertInner((schema as ObjectNode).put("type", "object")) } } else if (schema.isTextual) { // "" val typeSchema = JsonNodeFactory.instance.objectNode().put("type", schema.asText()) - return convert(typeSchema) + return convertInner(typeSchema) } else { return UnknownType("Unknown schema type: $schema") } @@ -78,8 +80,8 @@ class JsonSchemaToAirbyteType { else -> throw IllegalArgumentException( "Unknown string format: ${ - schema.get("format").asText() - }" + schema.get("format").asText() + }" ) } @@ -96,8 +98,9 @@ class JsonSchemaToAirbyteType { if (items.isEmpty) { return ArrayTypeWithoutSchema } - val itemOptions = UnionType(items.map { convert(it) }) - return ArrayType(fieldFromUnion(itemOptions)) + val itemOptions = UnionType(items.mapNotNull { convertInner(it) }) + val itemType = optionsToUnionOrSingleType(itemOptions.options) + return ArrayType(FieldType(itemType, true)) } return ArrayType(fieldFromSchema(items as ObjectNode)) } @@ -107,60 +110,48 @@ class JsonSchemaToAirbyteType { if (properties.isEmpty) { return ObjectTypeWithEmptySchema } - val requiredFields = schema.get("required")?.map { it.asText() } ?: emptyList() - return objectFromProperties(properties as ObjectNode, requiredFields) + val propertiesMapped = + properties + .fields() + .asSequence() + .map { (name, node) -> name to fieldFromSchema(node as ObjectNode) } + .toMap(LinkedHashMap()) + return ObjectType(propertiesMapped) } private fun fieldFromSchema( fieldSchema: ObjectNode, - onRequiredList: Boolean = false ): FieldType { - val markedRequired = fieldSchema.get("required")?.asBoolean() ?: false - val nullable = !(onRequiredList || markedRequired) - val airbyteType = convert(fieldSchema) - if (airbyteType is UnionType) { - return fieldFromUnion(airbyteType, nullable) - } else { - return FieldType(airbyteType, nullable) - } - } - - private fun fieldFromUnion(unionType: UnionType, nullable: Boolean = false): FieldType { - if (unionType.options.contains(NullType)) { - val filtered = unionType.options.filter { it != NullType } - return FieldType(UnionType(filtered), nullable = true) - } - return FieldType(unionType, nullable = nullable) - } - - private fun objectFromProperties(schema: ObjectNode, requiredFields: List): ObjectType { - val properties = - schema - .fields() - .asSequence() - .map { (name, node) -> - name to fieldFromSchema(node as ObjectNode, requiredFields.contains(name)) - } - .toMap(LinkedHashMap()) - return ObjectType(properties) + val airbyteType = + convertInner(fieldSchema) ?: UnknownType("Illegal null type as field type") + return FieldType(airbyteType, nullable = true) } private fun unionFromCombinedTypes( options: List, parentSchema: ObjectNode - ): UnionType { + ): AirbyteType { // Denormalize the properties across each type (the converter only checks what matters // per type). val unionOptions = - options.map { + options.mapNotNull { if (it.isTextual) { val schema = parentSchema.deepCopy() schema.put("type", it.textValue()) - convert(schema) + convertInner(schema) } else { - convert(it) + convertInner(it) } } - return UnionType(unionOptions) + return optionsToUnionOrSingleType(unionOptions) } + + private fun optionsToUnionOrSingleType(options: List): AirbyteType = + if (options.isEmpty()) { + UnionType(listOf(UnknownType("No valid options in union"))) + } else if (options.size == 1) { + options.first() + } else { + UnionType(options) + } } diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt index aada67af68ee..96557f74ef78 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValue.kt @@ -30,7 +30,6 @@ class JsonToAirbyteValue { is BooleanType -> toBoolean(json) is DateType -> DateValue(json.asText()) is IntegerType -> toInteger(json) - is NullType -> toNull(json) is NumberType -> toNumber(json) is ObjectType -> toObject(json, schema) is ObjectTypeWithoutSchema, @@ -185,7 +184,6 @@ class JsonToAirbyteValue { is BooleanType -> json.isBoolean is DateType -> json.isTextual is IntegerType -> json.isIntegralNumber - is NullType -> json.isNull is NumberType -> json.isNumber is ObjectType, is ObjectTypeWithoutSchema, diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapperTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapperTest.kt index f91d2f9680a6..3338f3e7edcb 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapperTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteSchemaIdentityMapperTest.kt @@ -19,9 +19,8 @@ class AirbyteSchemaIdentityMapperTest { .with(IntegerType) .with(BooleanType) .with(NumberType) - .with(NullType) .with(ArrayType(FieldType(StringType, true))) - .with(UnionType(listOf(StringType, IntegerType, NullType))) + .with(UnionType(listOf(StringType, IntegerType))) .withRecord() .with(TimeTypeWithTimezone) .with(TimeTypeWithoutTimezone) @@ -33,7 +32,6 @@ class AirbyteSchemaIdentityMapperTest { .with(ArrayTypeWithoutSchema) .endRecord() .endRecord() - .with(NullType) .build() val mapper = object : AirbyteSchemaIdentityMapper {} diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapperTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapperTest.kt index 6adcad2dadd4..f162f8bfc630 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapperTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapperTest.kt @@ -35,7 +35,6 @@ class AirbyteValueIdentityMapperTest { ArrayTypeWithoutSchema ) .withRecord() - .with(NullValue, NullType) .endRecord() .endRecord() .build() diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/NullableToUnionNullTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/NullableToUnionNullTest.kt deleted file mode 100644 index 7832c3628232..000000000000 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/NullableToUnionNullTest.kt +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) 2024 Airbyte, Inc., all rights reserved. - */ - -package io.airbyte.cdk.load.data - -import io.airbyte.cdk.load.test.util.Root -import io.airbyte.cdk.load.test.util.SchemaRecordBuilder -import org.junit.jupiter.api.Assertions -import org.junit.jupiter.api.Test - -class NullableToUnionNullTest { - @Test - fun testBasicBehavior() { - val (inputSchema, expectedOutput) = - SchemaRecordBuilder() - .with(FieldType(StringType, nullable = false)) - .with( - FieldType(IntegerType, nullable = true), - FieldType(UnionType(listOf(IntegerType, NullType)), nullable = false) - ) - .build() - Assertions.assertEquals(NullableToUnionNull().map(inputSchema), expectedOutput) - } - - @Test - fun testWackyBehavior() { - val (inputSchema, expectedOutput) = - SchemaRecordBuilder() - .with(FieldType(UnionType(listOf(StringType, IntegerType)), nullable = false)) - .with( - FieldType(UnionType(listOf(StringType, IntegerType)), nullable = true), - FieldType( - UnionType(listOf(UnionType(listOf(StringType, IntegerType)), NullType)), - nullable = false - ) - ) - .with(FieldType(UnionType(listOf(StringType, NullType)), nullable = false)) - .with( - FieldType(UnionType(listOf(StringType, NullType)), nullable = true), - FieldType( - UnionType(listOf(UnionType(listOf(StringType, NullType)), NullType)), - nullable = false - ) - ) - .build() - Assertions.assertEquals(NullableToUnionNull().map(inputSchema), expectedOutput) - } -} diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecordTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecordTest.kt index dee9cc9e95a8..4e601b50f5cb 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecordTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecordTest.kt @@ -12,7 +12,7 @@ import org.junit.jupiter.api.Test class UnionTypeToDisjointRecordTest { @Test fun testBasicSchemaBehavior() { - val disjoinRecord = + val disjointRecord = ObjectType( linkedMapOf( "type" to FieldType(StringType, nullable = false), @@ -23,15 +23,7 @@ class UnionTypeToDisjointRecordTest { val (inputSchema, expectedOutput) = SchemaRecordBuilder() .with(UnionType(listOf(StringType))) // union of 1 => ignore - .with(UnionType(listOf(StringType, NullType))) // union of 1 w/ null => ignore - .with( - UnionType(listOf(StringType, IntegerType)), - expected = disjoinRecord - ) // union of 2 => disjoint - .with( - UnionType(listOf(StringType, IntegerType, NullType)), - expected = UnionType(listOf(NullType, disjoinRecord)) - ) // union of 2 w/ null => disjoint + .with(UnionType(listOf(StringType, IntegerType)), expected = disjointRecord) .build() val output = UnionTypeToDisjointRecord().map(inputSchema) Assertions.assertEquals(expectedOutput, output) diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteSchemaTypeToJsonSchemaTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteSchemaTypeToJsonSchemaTest.kt index b4139df4af5e..6f4f1bc8fc91 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteSchemaTypeToJsonSchemaTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteSchemaTypeToJsonSchemaTest.kt @@ -4,145 +4,172 @@ package io.airbyte.cdk.load.data.json -import com.fasterxml.jackson.databind.JsonNode -import com.fasterxml.jackson.databind.node.JsonNodeFactory -import com.fasterxml.jackson.databind.node.ObjectNode +import io.airbyte.cdk.load.data.ArrayType +import io.airbyte.cdk.load.data.BooleanType +import io.airbyte.cdk.load.data.DateType +import io.airbyte.cdk.load.data.FieldType +import io.airbyte.cdk.load.data.IntegerType +import io.airbyte.cdk.load.data.NumberType +import io.airbyte.cdk.load.data.ObjectType +import io.airbyte.cdk.load.data.StringType +import io.airbyte.cdk.load.data.TimeTypeWithTimezone +import io.airbyte.cdk.load.data.TimeTypeWithoutTimezone +import io.airbyte.cdk.load.data.TimestampTypeWithTimezone +import io.airbyte.cdk.load.data.TimestampTypeWithoutTimezone +import io.airbyte.cdk.load.data.UnionType +import io.airbyte.cdk.load.util.deserializeToNode +import io.airbyte.cdk.load.util.serializeToString import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test class AirbyteSchemaTypeToJsonSchemaTest { - @Test - fun testRoundTrip() { - val schema = JsonNodeFactory.instance.objectNode() - val props = schema.putObject("properties") - props.putObject("name").put("type", "string").put("required", true) - props.putObject("age").put("type", "integer") - props.putObject("is_cool").put("type", "boolean") - props.putObject("height").put("type", "number") - props.putObject("friends").put("type", "array").putObject("items").put("type", "string") - val subProps = props.putObject("address").put("type", "object").putObject("properties") - subProps.putObject("street").put("type", "string") - subProps.putObject("city").put("type", "string") - props.putObject("null_field").put("type", "null") - val union = props.putObject("nullable_union").putArray("oneOf") - union.add(JsonNodeFactory.instance.objectNode().put("type", "string")) - union.add(JsonNodeFactory.instance.objectNode().put("type", "integer")) - union.add(JsonNodeFactory.instance.objectNode().put("type", "null")) - - val union2 = props.putObject("nonnullable_union") - val union2opts = union2.putArray("oneOf") - union2opts.add(JsonNodeFactory.instance.objectNode().put("type", "string")) - union2opts.add(JsonNodeFactory.instance.objectNode().put("type", "integer")) - union2.put("required", true) - - props.putObject("combined_null").putArray("type").add("string").add("null") - - val combinedDenormalized = props.putObject("combined_denormalized") - combinedDenormalized.putArray("type").add("string").add("object") - combinedDenormalized.putObject("properties").putObject("name").put("type", "string") - - props - .putObject("union_array") - .put("type", "array") - .putArray("items") - .add("string") - .add("integer") - - props.putObject("date").put("type", "string").put("format", "date") - props.putObject("time").put("type", "string").put("format", "time") - props.putObject("timestamp").put("type", "string").put("format", "date-time") - props - .putObject("time_without_timezone") - .put("type", "string") - .put("format", "time") - .put("airbyte_type", "time_without_timezone") - props - .putObject("timestamp_without_timezone") - .put("type", "string") - .put("format", "date-time") - .put("airbyte_type", "timestamp_without_timezone") - - val converted = JsonSchemaToAirbyteType().convert(schema) - val unconverted = AirbyteTypeToJsonSchema().convert(converted) - - val propsOut = unconverted.get("properties") - Assertions.assertEquals(ofType("string", false), propsOut.get("name")) - Assertions.assertEquals(ofType("integer", true), propsOut.get("age")) - Assertions.assertEquals(ofType("boolean", true), propsOut.get("is_cool")) - Assertions.assertEquals(ofType("number", true), propsOut.get("height")) - - val friends = JsonNodeFactory.instance.objectNode() - friends.put("type", "array").replace("items", ofType("string", true)) - Assertions.assertEquals(ofNullable(friends), propsOut.get("friends")) - - val address = JsonNodeFactory.instance.objectNode() - val addressProps = address.put("type", "object").putObject("properties") - addressProps.replace("street", ofType("string", true)) - addressProps.replace("city", ofType("string", true)) - Assertions.assertEquals(ofNullable(address), propsOut.get("address")) - - Assertions.assertEquals(ofType("null", true), propsOut.get("null_field")) - - val nullableUnion = JsonNodeFactory.instance.objectNode() - nullableUnion - .putArray("oneOf") - .add(ofType("string", false)) - .add(ofType("integer", false)) - .add(ofType("null", false)) - Assertions.assertEquals(nullableUnion, propsOut.get("nullable_union")) - - val nonnullableUnion = JsonNodeFactory.instance.objectNode() - nonnullableUnion - .putArray("oneOf") - .add(ofType("string", false)) - .add(ofType("integer", false)) - Assertions.assertEquals(nonnullableUnion, propsOut.get("nonnullable_union")) - - Assertions.assertEquals(ofType("string", true), propsOut.get("combined_null")) - - val combinedDenormed = JsonNodeFactory.instance.objectNode() - val cdObj = ofType("object", false) - cdObj.putObject("properties").replace("name", ofType("string", true)) - combinedDenormed - .putArray("oneOf") - .add(ofType("string", false)) - .add(cdObj) - .add(ofType("null", false)) - Assertions.assertEquals(combinedDenormed, propsOut.get("combined_denormalized")) - - val unionArrayOut = JsonNodeFactory.instance.objectNode() - unionArrayOut - .put("type", "array") - .putObject("items") - .putArray("oneOf") - .add(ofType("string", false)) - .add(ofType("integer", false)) - Assertions.assertEquals(ofNullable(unionArrayOut), propsOut.get("union_array")) - - val timeTypeFieldNames = - listOf("time", "timestamp", "time_without_timezone", "timestamp_without_timezone") - timeTypeFieldNames.forEach { fieldName -> - val expected = props.get(fieldName) as ObjectNode - if (listOf("date-time", "time").contains(expected.get("format").asText())) { - val formatName = expected.get("format").asText().replace("date-time", "timestamp") - if (!expected.has("airbyte_type")) { - expected.put("airbyte_type", "${formatName}_with_timezone") + // A json of every supported type + private val airbyteType = + ObjectType( + mapOf( + "name" to StringType, + "age" to IntegerType, + "is_cool" to BooleanType, + "height" to NumberType, + "alt_integer" to IntegerType, + "friends" to ArrayType(FieldType(StringType, true)), + "mixed_array" to + ArrayType( + FieldType(UnionType(listOf(StringType, IntegerType)), nullable = true) + ), + "address" to + ObjectType( + linkedMapOf( + "street" to FieldType(StringType, true), + "city" to FieldType(StringType, true) + ) + ), + "nonnullable_union" to UnionType(listOf(StringType)), + "combined_denormalized" to + ObjectType(linkedMapOf("name" to FieldType(StringType, true))), + "union_array" to + ArrayType(FieldType(UnionType(listOf(StringType, IntegerType)), true)), + "date" to DateType, + "time" to TimeTypeWithTimezone, + "time_without_timezone" to TimeTypeWithoutTimezone, + "timestamp" to TimestampTypeWithTimezone, + "timestamp_without_timezone" to TimestampTypeWithoutTimezone + ) + .map { it.key to FieldType(it.value, nullable = true) } + .let { linkedMapOf(*it.toTypedArray()) } + ) + + // the json equivalent + private val json = + """ + { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "age": { + "type": "integer" + }, + "is_cool": { + "type": "boolean" + }, + "height": { + "type": "number" + }, + "alt_integer": { + "type": "integer" + }, + "friends": { + "type": "array", + "items": { + "type": "string" + } + }, + "mixed_array": { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + } + }, + "address": { + "type": "object", + "properties": { + "street": { + "type": "string" + }, + "city": { + "type": "string" } + } + }, + "nonnullable_union": { + "oneOf": [ + { + "type": "string" + } + ] + }, + "combined_denormalized": { + "type": "object", + "properties": { + "name": { + "type": "string" + } + } + }, + "union_array": { + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + } + }, + "date": { + "type": "string", + "format": "date" + }, + "time": { + "type": "string", + "format": "time", + "airbyte_type": "time_with_timezone" + }, + "time_without_timezone": { + "type": "string", + "format": "time", + "airbyte_type": "time_without_timezone" + }, + "timestamp": { + "type": "string", + "format": "date-time", + "airbyte_type": "timestamp_with_timezone" + }, + "timestamp_without_timezone": { + "type": "string", + "format": "date-time", + "airbyte_type": "timestamp_without_timezone" } - Assertions.assertEquals(ofNullable(expected), propsOut.get(fieldName)) - } - } - - private fun ofType(type: String, nullable: Boolean = true): ObjectNode = - if (nullable) { - ofNullable(ofType(type, false)) - } else { - JsonNodeFactory.instance.objectNode().put("type", type) + } } + """.trimIndent() - private fun ofNullable(typeNode: JsonNode): ObjectNode { - val schema = JsonNodeFactory.instance.objectNode() - schema.putArray("oneOf").add(typeNode).add(ofType("null", false)) - return schema + @Test + fun testToJsonSchema() { + val expected = json.deserializeToNode().serializeToString() + val actual = AirbyteTypeToJsonSchema().convert(airbyteType).serializeToString() + Assertions.assertEquals(expected, actual) } } diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJsonTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJsonTest.kt index 4d2bede2c25a..76ca3ad817cf 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJsonTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/AirbyteValueToJsonTest.kt @@ -13,8 +13,6 @@ import io.airbyte.cdk.load.data.DateValue import io.airbyte.cdk.load.data.FieldType import io.airbyte.cdk.load.data.IntegerType import io.airbyte.cdk.load.data.IntegerValue -import io.airbyte.cdk.load.data.NullType -import io.airbyte.cdk.load.data.NullValue import io.airbyte.cdk.load.data.NumberType import io.airbyte.cdk.load.data.NumberValue import io.airbyte.cdk.load.data.ObjectType @@ -49,10 +47,7 @@ class AirbyteValueToJsonTest { "city" to StringValue("San Francisco") ) ), - "null_field" to NullValue, - "nullable_union" to IntegerValue(42), - "nonnullable_union" to StringValue("hello"), - "combined_null" to StringValue("hello"), + "union" to StringValue("hello"), "combined_denormalized" to ObjectValue(linkedMapOf("name" to StringValue("hello"))), "union_array" to ArrayValue(listOf(StringValue("hello"), IntegerValue(42))), @@ -81,12 +76,7 @@ class AirbyteValueToJsonTest { ), false ), - "null_field" to FieldType(NullType, false), - "nullable_union" to - FieldType(UnionType(listOf(StringType, IntegerType, NullType)), false), - "nonnullable_union" to - FieldType(UnionType(listOf(StringType, IntegerType)), true), - "combined_null" to FieldType(UnionType(listOf(StringType, NullType)), false), + "union" to FieldType(UnionType(listOf(StringType, IntegerType)), true), "combined_denormalized" to FieldType( ObjectType(linkedMapOf("name" to FieldType(StringType, true))), diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteSchemaTypeTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteSchemaTypeTest.kt index 6264dea2dca4..5a291518d38a 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteSchemaTypeTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonSchemaToAirbyteSchemaTypeTest.kt @@ -12,7 +12,6 @@ import io.airbyte.cdk.load.data.BooleanType import io.airbyte.cdk.load.data.DateType import io.airbyte.cdk.load.data.FieldType import io.airbyte.cdk.load.data.IntegerType -import io.airbyte.cdk.load.data.NullType import io.airbyte.cdk.load.data.NumberType import io.airbyte.cdk.load.data.ObjectType import io.airbyte.cdk.load.data.ObjectTypeWithEmptySchema @@ -32,13 +31,6 @@ class JsonSchemaToAirbyteSchemaTypeTest { return JsonNodeFactory.instance.objectNode().put("type", type) } - @Test - fun testNull() { - val nullType = ofType("null") - val airbyteType = JsonSchemaToAirbyteType().convert(nullType) - Assertions.assertTrue(airbyteType is NullType) - } - @Test fun testString() { val stringType = ofType("string") diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValueTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValueTest.kt index 515099026352..b5d309481f11 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValueTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/json/JsonToAirbyteValueTest.kt @@ -15,8 +15,6 @@ import io.airbyte.cdk.load.data.DateValue import io.airbyte.cdk.load.data.FieldType import io.airbyte.cdk.load.data.IntegerType import io.airbyte.cdk.load.data.IntegerValue -import io.airbyte.cdk.load.data.NullType -import io.airbyte.cdk.load.data.NullValue import io.airbyte.cdk.load.data.NumberType import io.airbyte.cdk.load.data.NumberValue import io.airbyte.cdk.load.data.ObjectType @@ -36,11 +34,6 @@ import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test class JsonToAirbyteValueTest { - @Test - fun testNull() { - val value = JsonToAirbyteValue().convert(JsonNodeFactory.instance.nullNode(), NullType) - Assertions.assertTrue(value is NullValue) - } @Test fun testString() { diff --git a/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteTypeToAvroSchema.kt b/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteTypeToAvroSchema.kt index a4c8797db572..8cedca5ffb42 100644 --- a/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteTypeToAvroSchema.kt +++ b/airbyte-cdk/bulk/toolkits/load-avro/src/main/kotlin/io/airbyte/cdk/load/data/avro/AirbyteTypeToAvroSchema.kt @@ -11,7 +11,6 @@ import io.airbyte.cdk.load.data.ArrayTypeWithoutSchema import io.airbyte.cdk.load.data.BooleanType import io.airbyte.cdk.load.data.DateType import io.airbyte.cdk.load.data.IntegerType -import io.airbyte.cdk.load.data.NullType import io.airbyte.cdk.load.data.NumberType import io.airbyte.cdk.load.data.ObjectType import io.airbyte.cdk.load.data.ObjectTypeWithEmptySchema @@ -54,7 +53,6 @@ class AirbyteTypeToAvroSchema { LogicalTypes.date().addToSchema(schema) } is IntegerType -> SchemaBuilder.builder().longType() - is NullType -> SchemaBuilder.builder().nullType() is NumberType -> SchemaBuilder.builder().doubleType() is ObjectTypeWithEmptySchema -> throw IllegalArgumentException("Object type with empty schema is not supported") diff --git a/airbyte-cdk/bulk/toolkits/load-avro/src/testFixtures/kotlin/io/airbyte/cdk/load/data/avro/AvroRecordToAirbyteValue.kt b/airbyte-cdk/bulk/toolkits/load-avro/src/testFixtures/kotlin/io/airbyte/cdk/load/data/avro/AvroRecordToAirbyteValue.kt index 0cd0ba1f680d..1ba25b45e78e 100644 --- a/airbyte-cdk/bulk/toolkits/load-avro/src/testFixtures/kotlin/io/airbyte/cdk/load/data/avro/AvroRecordToAirbyteValue.kt +++ b/airbyte-cdk/bulk/toolkits/load-avro/src/testFixtures/kotlin/io/airbyte/cdk/load/data/avro/AvroRecordToAirbyteValue.kt @@ -14,8 +14,6 @@ import io.airbyte.cdk.load.data.BooleanValue import io.airbyte.cdk.load.data.DateType import io.airbyte.cdk.load.data.IntegerType import io.airbyte.cdk.load.data.IntegerValue -import io.airbyte.cdk.load.data.NullType -import io.airbyte.cdk.load.data.NullValue import io.airbyte.cdk.load.data.NumberType import io.airbyte.cdk.load.data.NumberValue import io.airbyte.cdk.load.data.ObjectType @@ -55,7 +53,6 @@ class AvroRecordToAirbyteValue { is BooleanType -> return BooleanValue(avroValue as Boolean) is DateType -> throw UnsupportedOperationException("DateType is not supported") is IntegerType -> return IntegerValue(avroValue as Long) - is NullType -> return NullValue is NumberType -> return NumberValue((avroValue as Double).toBigDecimal()) is ObjectTypeWithEmptySchema -> throw UnsupportedOperationException("ObjectTypeWithEmptySchema is not supported") diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt index bc70149ebc3c..e1aec13d8798 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/main/kotlin/io/airbyte/cdk/load/file/object_storage/ObjectStorageFormattingWriter.kt @@ -10,11 +10,12 @@ import io.airbyte.cdk.load.command.object_storage.CSVFormatConfiguration import io.airbyte.cdk.load.command.object_storage.JsonFormatConfiguration import io.airbyte.cdk.load.command.object_storage.ObjectStorageFormatConfigurationProvider import io.airbyte.cdk.load.command.object_storage.ParquetFormatConfiguration -import io.airbyte.cdk.load.data.DestinationRecordToAirbyteValueWithMeta import io.airbyte.cdk.load.data.avro.toAvroRecord import io.airbyte.cdk.load.data.avro.toAvroSchema import io.airbyte.cdk.load.data.csv.toCsvRecord +import io.airbyte.cdk.load.data.dataWithAirbyteMeta import io.airbyte.cdk.load.data.json.toJson +import io.airbyte.cdk.load.data.withAirbyteMeta import io.airbyte.cdk.load.file.avro.toAvroWriter import io.airbyte.cdk.load.file.csv.toCsvPrinterWithHeader import io.airbyte.cdk.load.file.parquet.toParquetWriter @@ -33,7 +34,6 @@ interface ObjectStorageFormattingWriter : Closeable { @Singleton @Secondary class ObjectStorageFormattingWriterFactory( - private val recordDecorator: DestinationRecordToAirbyteValueWithMeta, private val formatConfigProvider: ObjectStorageFormatConfigurationProvider, ) { fun create( @@ -41,14 +41,13 @@ class ObjectStorageFormattingWriterFactory( outputStream: OutputStream ): ObjectStorageFormattingWriter { return when (formatConfigProvider.objectStorageFormatConfiguration) { - is JsonFormatConfiguration -> JsonFormattingWriter(outputStream, recordDecorator) + is JsonFormatConfiguration -> JsonFormattingWriter(stream, outputStream) is AvroFormatConfiguration -> AvroFormattingWriter( stream, outputStream, formatConfigProvider.objectStorageFormatConfiguration as AvroFormatConfiguration, - recordDecorator ) is ParquetFormatConfiguration -> ParquetFormattingWriter( @@ -56,19 +55,18 @@ class ObjectStorageFormattingWriterFactory( outputStream, formatConfigProvider.objectStorageFormatConfiguration as ParquetFormatConfiguration, - recordDecorator ) - is CSVFormatConfiguration -> CSVFormattingWriter(stream, outputStream, recordDecorator) + is CSVFormatConfiguration -> CSVFormattingWriter(stream, outputStream) } } } class JsonFormattingWriter( + private val stream: DestinationStream, private val outputStream: OutputStream, - private val recordDecorator: DestinationRecordToAirbyteValueWithMeta ) : ObjectStorageFormattingWriter { override fun accept(record: DestinationRecord) { - outputStream.write(recordDecorator.decorate(record).toJson().serializeToString()) + outputStream.write(record.dataWithAirbyteMeta(stream).toJson().serializeToString()) outputStream.write("\n") } @@ -78,13 +76,12 @@ class JsonFormattingWriter( } class CSVFormattingWriter( - stream: DestinationStream, + private val stream: DestinationStream, outputStream: OutputStream, - private val recordDecorator: DestinationRecordToAirbyteValueWithMeta ) : ObjectStorageFormattingWriter { - private val printer = stream.schemaWithMeta.toCsvPrinterWithHeader(outputStream) + private val printer = stream.schema.withAirbyteMeta().toCsvPrinterWithHeader(outputStream) override fun accept(record: DestinationRecord) { - printer.printRecord(*recordDecorator.decorate(record).toCsvRecord()) + printer.printRecord(*record.dataWithAirbyteMeta(stream).toCsvRecord()) } override fun close() { printer.close() @@ -92,16 +89,15 @@ class CSVFormattingWriter( } class AvroFormattingWriter( - stream: DestinationStream, + private val stream: DestinationStream, outputStream: OutputStream, formatConfig: AvroFormatConfiguration, - private val recordDecorator: DestinationRecordToAirbyteValueWithMeta ) : ObjectStorageFormattingWriter { - private val avroSchema = stream.schemaWithMeta.toAvroSchema(stream.descriptor) + private val avroSchema = stream.schema.withAirbyteMeta().toAvroSchema(stream.descriptor) private val writer = outputStream.toAvroWriter(avroSchema, formatConfig.avroCompressionConfiguration) override fun accept(record: DestinationRecord) { - writer.write(recordDecorator.decorate(record).toAvroRecord(avroSchema)) + writer.write(record.dataWithAirbyteMeta(stream).toAvroRecord(avroSchema)) } override fun close() { @@ -110,16 +106,15 @@ class AvroFormattingWriter( } class ParquetFormattingWriter( - stream: DestinationStream, + private val stream: DestinationStream, outputStream: OutputStream, formatConfig: ParquetFormatConfiguration, - private val recordDecorator: DestinationRecordToAirbyteValueWithMeta ) : ObjectStorageFormattingWriter { - private val avroSchema = stream.schemaWithMeta.toAvroSchema(stream.descriptor) + private val avroSchema = stream.schema.withAirbyteMeta().toAvroSchema(stream.descriptor) private val writer = outputStream.toParquetWriter(avroSchema, formatConfig.parquetWriterConfiguration) override fun accept(record: DestinationRecord) { - writer.write(recordDecorator.decorate(record).toAvroRecord(avroSchema)) + writer.write(record.dataWithAirbyteMeta(stream).toAvroRecord(avroSchema)) } override fun close() { diff --git a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/ObjectStorageDataDumper.kt b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/ObjectStorageDataDumper.kt index 00210b252097..f683be9efc3e 100644 --- a/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/ObjectStorageDataDumper.kt +++ b/airbyte-cdk/bulk/toolkits/load-object-storage/src/testFixtures/kotlin/io/airbyte/cdk/load/ObjectStorageDataDumper.kt @@ -15,6 +15,7 @@ import io.airbyte.cdk.load.data.avro.toAirbyteValue import io.airbyte.cdk.load.data.avro.toAvroSchema import io.airbyte.cdk.load.data.csv.toAirbyteValue import io.airbyte.cdk.load.data.json.toAirbyteValue +import io.airbyte.cdk.load.data.withAirbyteMeta import io.airbyte.cdk.load.file.GZIPProcessor import io.airbyte.cdk.load.file.NoopProcessor import io.airbyte.cdk.load.file.avro.toAvroReader @@ -76,7 +77,7 @@ class ObjectStorageDataDumper( .map { line -> line .deserializeToNode() - .toAirbyteValue(stream.schemaWithMeta) + .toAirbyteValue(stream.schema.withAirbyteMeta()) .toOutputRecord() } .toList() @@ -84,27 +85,33 @@ class ObjectStorageDataDumper( is CSVFormatConfiguration -> { CSVParser(inputStream.bufferedReader(), CSVFormat.DEFAULT.withHeader()).use { it.records.map { record -> - record.toAirbyteValue(stream.schemaWithMeta).toOutputRecord() + record.toAirbyteValue(stream.schema.withAirbyteMeta()).toOutputRecord() } } } is AvroFormatConfiguration -> { inputStream - .toAvroReader(stream.schemaWithMeta.toAvroSchema(stream.descriptor)) + .toAvroReader(stream.schema.withAirbyteMeta().toAvroSchema(stream.descriptor)) .use { reader -> reader .recordSequence() - .map { it.toAirbyteValue(stream.schemaWithMeta).toOutputRecord() } + .map { + it.toAirbyteValue(stream.schema.withAirbyteMeta()).toOutputRecord() + } .toList() } } is ParquetFormatConfiguration -> { inputStream - .toParquetReader(stream.schemaWithMeta.toAvroSchema(stream.descriptor)) + .toParquetReader( + stream.schema.withAirbyteMeta().toAvroSchema(stream.descriptor) + ) .use { reader -> reader .recordSequence() - .map { it.toAirbyteValue(stream.schemaWithMeta).toOutputRecord() } + .map { + it.toAirbyteValue(stream.schema.withAirbyteMeta()).toOutputRecord() + } .toList() } } From 5157ad3a00731adda8a1e17b3e2a187ebb500bf8 Mon Sep 17 00:00:00 2001 From: Natik Gadzhi Date: Wed, 6 Nov 2024 13:36:38 -0800 Subject: [PATCH 774/808] source-brex contribution from natikgadzhi (#48017) --- .../connectors/source-brex/README.md | 33 ++ .../source-brex/acceptance-test-config.yml | 17 + .../connectors/source-brex/icon.svg | 3 + .../connectors/source-brex/manifest.yaml | 419 ++++++++++++++++++ .../connectors/source-brex/metadata.yaml | 35 ++ docs/integrations/sources/brex.md | 30 ++ 6 files changed, 537 insertions(+) create mode 100644 airbyte-integrations/connectors/source-brex/README.md create mode 100644 airbyte-integrations/connectors/source-brex/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-brex/icon.svg create mode 100644 airbyte-integrations/connectors/source-brex/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-brex/metadata.yaml create mode 100644 docs/integrations/sources/brex.md diff --git a/airbyte-integrations/connectors/source-brex/README.md b/airbyte-integrations/connectors/source-brex/README.md new file mode 100644 index 000000000000..d6fa23bf4c87 --- /dev/null +++ b/airbyte-integrations/connectors/source-brex/README.md @@ -0,0 +1,33 @@ +# Brex +This directory contains the manifest-only connector for `source-brex`. + +Fetches data on users, expenses, transactions, vendors, and budgets from Brex API. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-brex:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-brex build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-brex test +``` + diff --git a/airbyte-integrations/connectors/source-brex/acceptance-test-config.yml b/airbyte-integrations/connectors/source-brex/acceptance-test-config.yml new file mode 100644 index 000000000000..352887b11a2e --- /dev/null +++ b/airbyte-integrations/connectors/source-brex/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-brex:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-brex/icon.svg b/airbyte-integrations/connectors/source-brex/icon.svg new file mode 100644 index 000000000000..244b5e327edf --- /dev/null +++ b/airbyte-integrations/connectors/source-brex/icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/airbyte-integrations/connectors/source-brex/manifest.yaml b/airbyte-integrations/connectors/source-brex/manifest.yaml new file mode 100644 index 000000000000..3a6c6869bfd1 --- /dev/null +++ b/airbyte-integrations/connectors/source-brex/manifest.yaml @@ -0,0 +1,419 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + Fetches data on users, expenses, transactions, vendors, and budgets from Brex + API. + +check: + type: CheckStream + stream_names: + - transactions + +definitions: + streams: + transactions: + type: DeclarativeStream + name: transactions + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/transactions/card/primary + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('next_cursor') }}" + stop_condition: "{{ response.get('next_cursor') is none }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: posted_at_date + lookback_window: P1D + cursor_datetime_formats: + - "%Y-%m-%d" + datetime_format: "%Y-%m-%dT%H:%M:%S" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: posted_at_start + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/transactions" + users: + type: DeclarativeStream + name: users + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/users + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('next_cursor') }}" + stop_condition: "{{ response.get('next_cursor') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + departments: + type: DeclarativeStream + name: departments + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/departments + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('next_cursor') }}" + stop_condition: "{{ response.get('next_cursor') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/departments" + vendors: + type: DeclarativeStream + name: vendors + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v1/vendors + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('next_cursor') }}" + stop_condition: "{{ response.get('next_cursor') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/vendors" + expenses: + type: DeclarativeStream + name: expenses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v1/expenses/card + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('next_cursor') }}" + stop_condition: "{{ response.get('next_cursor') is none }}" + incremental_sync: + type: DatetimeBasedCursor + cursor_field: purchased_at + lookback_window: P1M + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%SZ" + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: purchased_at_start + end_time_option: + type: RequestOption + inject_into: request_parameter + field_name: purchased_at_end + end_datetime: + type: MinMaxDatetime + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/expenses" + budgets: + type: DeclarativeStream + name: budgets + primary_key: + - budget_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/budgets + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - items + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: cursor + pagination_strategy: + type: CursorPagination + cursor_value: "{{ response.get('next_cursor') }}" + stop_condition: "{{ response.get('next_cursor') is none }}" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/budgets" + base_requester: + type: HttpRequester + url_base: https://platform.brexapis.com + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"user_token\"] }}" + +streams: + - $ref: "#/definitions/streams/transactions" + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/departments" + - $ref: "#/definitions/streams/vendors" + - $ref: "#/definitions/streams/expenses" + - $ref: "#/definitions/streams/budgets" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - user_token + - start_date + properties: + user_token: + type: string + description: >- + User token to authenticate API requests. Generate it from your Brex + dashboard under Developer > Settings. + name: user_token + title: User Token + airbyte_secret: true + order: 0 + start_date: + type: string + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + order: 1 + additionalProperties: true + +metadata: + autoImportSchema: + transactions: true + users: false + departments: false + vendors: false + expenses: false + budgets: false + testedStreams: + transactions: + streamHash: 9095688de0c91a5eafb2969f27859182d0eb1329 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + users: + streamHash: 22fb9114f7bec24f5b753c0eed981138105cd5e6 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + departments: + streamHash: 3a7de8adfde28e720a9f9254c63103d34bfc3966 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + vendors: + streamHash: 678154fbac1bda4601d2a9ce17e8e4283df96e22 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + expenses: + streamHash: 83d3aa00696a8b74df332824a39fbcf75bdebd7d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + budgets: + streamHash: 9bfb438f0d1d68b61814339b4153e4904088baaa + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://developer.brex.com/openapi/transactions_api/ + +schemas: + transactions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + amount: + type: + - object + - "null" + properties: + amount: + type: + - number + - "null" + currency: + type: + - string + - "null" + card_id: + type: + - string + - "null" + id: + type: string + initiated_at_date: + type: + - string + - "null" + merchant: + type: + - object + - "null" + properties: + country: + type: + - string + - "null" + mcc: + type: + - string + - "null" + raw_descriptor: + type: + - string + - "null" + posted_at_date: + type: string + required: + - id + - posted_at_date + users: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} + departments: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} + vendors: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} + expenses: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} + budgets: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} diff --git a/airbyte-integrations/connectors/source-brex/metadata.yaml b/airbyte-integrations/connectors/source-brex/metadata.yaml new file mode 100644 index 000000000000..cdafa47cecb0 --- /dev/null +++ b/airbyte-integrations/connectors/source-brex/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "platform.brexapis.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-brex + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + connectorSubtype: api + connectorType: source + definitionId: 7d605ca7-f2b8-41c4-96a7-3d5637e58d6d + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-brex + githubIssueLabel: source-brex + icon: icon.svg + license: MIT + name: Brex + releaseDate: 2024-10-30 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/brex + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/brex.md b/docs/integrations/sources/brex.md new file mode 100644 index 000000000000..f1c70051d964 --- /dev/null +++ b/docs/integrations/sources/brex.md @@ -0,0 +1,30 @@ +# Brex +Fetches data on users, expenses, transactions, vendors, and budgets from Brex API. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `user_token` | `string` | User Token. User token to authenticate API requests. Generate it from your Brex dashboard under Developer > Settings. | | +| `start_date` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| transactions | id | DefaultPaginator | ✅ | ✅ | +| users | id | DefaultPaginator | ✅ | ❌ | +| departments | id | DefaultPaginator | ✅ | ❌ | +| vendors | id | DefaultPaginator | ✅ | ❌ | +| expenses | id | DefaultPaginator | ✅ | ✅ | +| budgets | budget_id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-30 | | Initial release by [@natikgadzhi](https://github.com/natikgadzhi) via Connector Builder | + +
From 5bf61fd1956b6d80748c80f50e0987ffb4c93d6e Mon Sep 17 00:00:00 2001 From: Parthiv Makwana <75653580+parthiv11@users.noreply.github.com> Date: Thu, 7 Nov 2024 04:43:57 +0530 Subject: [PATCH 775/808] source-jobnimbus contribution from parthiv11 (#47707) Co-authored-by: Marcos Marx --- .../connectors/source-jobnimbus/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-jobnimbus/icon.svg | 1 + .../connectors/source-jobnimbus/manifest.yaml | 1274 +++++++++++++++++ .../connectors/source-jobnimbus/metadata.yaml | 35 + docs/integrations/sources/jobnimbus.md | 28 + 6 files changed, 1388 insertions(+) create mode 100644 airbyte-integrations/connectors/source-jobnimbus/README.md create mode 100644 airbyte-integrations/connectors/source-jobnimbus/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-jobnimbus/icon.svg create mode 100644 airbyte-integrations/connectors/source-jobnimbus/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-jobnimbus/metadata.yaml create mode 100644 docs/integrations/sources/jobnimbus.md diff --git a/airbyte-integrations/connectors/source-jobnimbus/README.md b/airbyte-integrations/connectors/source-jobnimbus/README.md new file mode 100644 index 000000000000..a80b59fd0a07 --- /dev/null +++ b/airbyte-integrations/connectors/source-jobnimbus/README.md @@ -0,0 +1,33 @@ +# JobNimbus +This directory contains the manifest-only connector for `source-jobnimbus`. + +The JobNimbus Airbyte connector enables seamless integration between JobNimbus, a popular CRM and project management tool, and your data pipeline. This connector allows you to automatically sync data from JobNimbus, including contacts records, task information, and more, into your preferred destination. It simplifies data extraction and helps you streamline workflows, enabling efficient analysis and reporting for enhanced business insights. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-jobnimbus:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-jobnimbus build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-jobnimbus test +``` + diff --git a/airbyte-integrations/connectors/source-jobnimbus/acceptance-test-config.yml b/airbyte-integrations/connectors/source-jobnimbus/acceptance-test-config.yml new file mode 100644 index 000000000000..fcb55d97f254 --- /dev/null +++ b/airbyte-integrations/connectors/source-jobnimbus/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-jobnimbus:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-jobnimbus/icon.svg b/airbyte-integrations/connectors/source-jobnimbus/icon.svg new file mode 100644 index 000000000000..6b9f7bf24bcd --- /dev/null +++ b/airbyte-integrations/connectors/source-jobnimbus/icon.svg @@ -0,0 +1 @@ +/Logo Vector Files (PDF, EPS, SVG)/JN_Logo SVG/2. JN_Logo_Long-Blue diff --git a/airbyte-integrations/connectors/source-jobnimbus/manifest.yaml b/airbyte-integrations/connectors/source-jobnimbus/manifest.yaml new file mode 100644 index 000000000000..1a669af03dee --- /dev/null +++ b/airbyte-integrations/connectors/source-jobnimbus/manifest.yaml @@ -0,0 +1,1274 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + The JobNimbus Airbyte connector enables seamless integration between + JobNimbus, a popular CRM and project management tool, and your data pipeline. + This connector allows you to automatically sync data from JobNimbus, including + contacts records, task information, and more, into your preferred destination. + It simplifies data extraction and helps you streamline workflows, enabling + efficient analysis and reporting for enhanced business insights. + +check: + type: CheckStream + stream_names: + - jobs + +definitions: + streams: + jobs: + type: DeclarativeStream + name: jobs + primary_key: + - jnid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /jobs + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/jobs" + contacts: + type: DeclarativeStream + name: contacts + primary_key: + - jnid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /contacts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/contacts" + tasks: + type: DeclarativeStream + name: tasks + primary_key: + - jnid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tasks + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: size + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/tasks" + activities: + type: DeclarativeStream + name: activities + primary_key: + - jnid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /activities + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - activity + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: size + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/activities" + files: + type: DeclarativeStream + name: files + primary_key: + - jnid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /files + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - files + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: from + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: size + pagination_strategy: + type: OffsetIncrement + page_size: 1000 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/files" + base_requester: + type: HttpRequester + url_base: https://app.jobnimbus.com/api1 + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/jobs" + - $ref: "#/definitions/streams/contacts" + - $ref: "#/definitions/streams/tasks" + - $ref: "#/definitions/streams/activities" + - $ref: "#/definitions/streams/files" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + properties: + api_key: + type: string + description: >- + API key to use. Find it by logging into your JobNimbus account, + navigating to settings, and creating a new API key under the API + section. + name: api_key + order: 0 + title: API Key + airbyte_secret: true + additionalProperties: true + +metadata: + autoImportSchema: + jobs: true + contacts: true + tasks: true + activities: true + files: true + testedStreams: + jobs: + streamHash: bca8871c147fef7f6d0f77bfce826a62427599f3 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + contacts: + streamHash: 252325bb77028aaf0376b4576d2cf10e3ab87481 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + tasks: + streamHash: efb1562d11b177ff66e9d91bb3cf1ba1bcb74709 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + activities: + streamHash: d1ae5b85712261b52cae2a375adaf139c96978fd + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + files: + hasRecords: true + streamHash: 8a69c7b1902db69e4a5549ec3c52e587fd48d85d + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://documenter.getpostman.com/view/3919598/S11PpG4x + +schemas: + jobs: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + actual_time: + type: + - number + - "null" + address_line1: + type: + - string + - "null" + address_line2: + type: + - string + - "null" + all_day: + type: + - boolean + - "null" + all_day_end_date: + type: + - string + - "null" + all_day_start_date: + type: + - string + - "null" + approved_estimate_total: + type: + - number + - "null" + approved_invoice_due: + type: + - number + - "null" + approved_invoice_total: + type: + - number + - "null" + attachment_count: + type: + - number + - "null" + city: + type: + - string + - "null" + country_name: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_name: + type: + - string + - "null" + customer: + type: + - string + - "null" + date_created: + type: + - number + - "null" + date_end: + type: + - number + - "null" + date_start: + type: + - number + - "null" + date_status_change: + type: + - number + - "null" + date_updated: + type: + - number + - "null" + estimated_time: + type: + - number + - "null" + geo: + type: + - object + - "null" + properties: + lat: + type: + - number + - "null" + lon: + type: + - number + - "null" + is_active: + type: + - boolean + - "null" + is_archived: + type: + - boolean + - "null" + jnid: + type: string + last_budget_gross_margin: + type: + - number + - "null" + last_budget_gross_profit: + type: + - number + - "null" + last_budget_revenue: + type: + - number + - "null" + last_estimate: + type: + - number + - "null" + last_estimate_date_created: + type: + - number + - "null" + last_estimate_date_estimate: + type: + - number + - "null" + last_invoice: + type: + - number + - "null" + last_invoice_date_created: + type: + - number + - "null" + last_invoice_date_invoice: + type: + - number + - "null" + location: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + name: + type: + - string + - "null" + number: + type: + - string + - "null" + owners: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + parent_approved_estimate_total: + type: + - number + - "null" + parent_approved_invoice_due: + type: + - number + - "null" + parent_approved_invoice_total: + type: + - number + - "null" + parent_fax_number: + type: + - string + - "null" + parent_home_phone: + type: + - string + - "null" + parent_last_estimate: + type: + - number + - "null" + parent_last_invoice: + type: + - number + - "null" + parent_mobile_phone: + type: + - string + - "null" + parent_work_phone: + type: + - string + - "null" + primary: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + number: + type: + - string + - "null" + recid: + type: + - number + - "null" + record_type: + type: + - number + - "null" + record_type_name: + type: + - string + - "null" + related: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + number: + type: + - string + - "null" + sales_rep: + type: + - string + - "null" + sales_rep_name: + type: + - string + - "null" + state_text: + type: + - string + - "null" + status: + type: + - number + - "null" + status_name: + type: + - string + - "null" + tags: + type: + - array + - "null" + task_count: + type: + - number + - "null" + zip: + type: + - string + - "null" + required: + - jnid + contacts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + actual_time: + type: + - number + - "null" + address_line1: + type: + - string + - "null" + address_line2: + type: + - string + - "null" + approved_estimate_total: + type: + - number + - "null" + approved_invoice_due: + type: + - number + - "null" + approved_invoice_total: + type: + - number + - "null" + attachment_count: + type: + - number + - "null" + city: + type: + - string + - "null" + company: + type: + - string + - "null" + country_name: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_name: + type: + - string + - "null" + customer: + type: + - string + - "null" + date_created: + type: + - number + - "null" + date_end: + type: + - number + - "null" + date_start: + type: + - number + - "null" + date_status_change: + type: + - number + - "null" + date_updated: + type: + - number + - "null" + disable_auto_text: + type: + - boolean + - "null" + display_name: + type: + - string + - "null" + email: + type: + - string + - "null" + estimated_time: + type: + - number + - "null" + fax_number: + type: + - string + - "null" + first_name: + type: + - string + - "null" + geo: + type: + - object + - "null" + properties: + lat: + type: + - number + - "null" + lon: + type: + - number + - "null" + home_phone: + type: + - string + - "null" + is_active: + type: + - boolean + - "null" + is_archived: + type: + - boolean + - "null" + is_sub_contractor: + type: + - boolean + - "null" + is_user: + type: + - boolean + - "null" + jnid: + type: string + last_budget_gross_margin: + type: + - number + - "null" + last_budget_gross_profit: + type: + - number + - "null" + last_budget_revenue: + type: + - number + - "null" + last_estimate: + type: + - number + - "null" + last_estimate_date_created: + type: + - number + - "null" + last_estimate_date_estimate: + type: + - number + - "null" + last_invoice: + type: + - number + - "null" + last_invoice_date_created: + type: + - number + - "null" + last_invoice_date_invoice: + type: + - number + - "null" + last_name: + type: + - string + - "null" + location: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + mobile_phone: + type: + - string + - "null" + number: + type: + - string + - "null" + owners: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + recid: + type: + - number + - "null" + record_type: + type: + - number + - "null" + record_type_name: + type: + - string + - "null" + sales_rep: + type: + - string + - "null" + sales_rep_name: + type: + - string + - "null" + state_text: + type: + - string + - "null" + status: + type: + - number + - "null" + status_name: + type: + - string + - "null" + tags: + type: + - array + - "null" + task_count: + type: + - number + - "null" + website: + type: + - string + - "null" + work_phone: + type: + - string + - "null" + zip: + type: + - string + - "null" + required: + - jnid + tasks: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + actual_time: + type: + - number + - "null" + all_day: + type: + - boolean + - "null" + all_day_end_date: + type: + - string + - "null" + all_day_start_date: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_name: + type: + - string + - "null" + customer: + type: + - string + - "null" + date_created: + type: + - number + - "null" + date_end: + type: + - number + - "null" + date_start: + type: + - number + - "null" + date_updated: + type: + - number + - "null" + estimated_time: + type: + - number + - "null" + hide_from_calendarview: + type: + - boolean + - "null" + hide_from_tasklist: + type: + - boolean + - "null" + is_active: + type: + - boolean + - "null" + is_archived: + type: + - boolean + - "null" + is_completed: + type: + - boolean + - "null" + jnid: + type: string + location: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + number: + type: + - string + - "null" + owners: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + priority: + type: + - number + - "null" + recid: + type: + - number + - "null" + record_type: + type: + - number + - "null" + record_type_name: + type: + - string + - "null" + related: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + number: + type: + - string + - "null" + tags: + type: + - array + - "null" + title: + type: + - string + - "null" + required: + - jnid + activities: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_name: + type: + - string + - "null" + customer: + type: + - string + - "null" + date_created: + type: + - number + - "null" + date_updated: + type: + - number + - "null" + is_active: + type: + - boolean + - "null" + is_archived: + type: + - boolean + - "null" + is_editable: + type: + - boolean + - "null" + is_status_change: + type: + - boolean + - "null" + jnid: + type: string + location: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + note: + type: + - string + - "null" + owners: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + primary: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + new_status: + type: + - number + - "null" + number: + type: + - string + - "null" + record_type: + type: + - number + - "null" + record_type_name: + type: + - string + - "null" + related: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + new_status: + type: + - number + - "null" + number: + type: + - string + - "null" + sales_rep: + type: + - string + - "null" + sales_rep_name: + type: + - string + - "null" + source: + type: + - string + - "null" + required: + - jnid + files: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + content_type: + type: + - string + - "null" + created_by: + type: + - string + - "null" + created_by_name: + type: + - string + - "null" + customer: + type: + - string + - "null" + date_created: + type: + - number + - "null" + date_file_created: + type: + - number + - "null" + date_updated: + type: + - number + - "null" + exif: + type: + - array + - "null" + filename: + type: + - string + - "null" + is_active: + type: + - boolean + - "null" + jnid: + type: string + md5: + type: + - string + - "null" + owners: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + primary: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + record_type: + type: + - number + - "null" + record_type_name: + type: + - string + - "null" + related: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + id: + type: + - string + - "null" + name: + type: + - string + - "null" + size: + type: + - number + - "null" + required: + - jnid diff --git a/airbyte-integrations/connectors/source-jobnimbus/metadata.yaml b/airbyte-integrations/connectors/source-jobnimbus/metadata.yaml new file mode 100644 index 000000000000..7d8a6e60dea5 --- /dev/null +++ b/airbyte-integrations/connectors/source-jobnimbus/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "app.jobnimbus.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-jobnimbus + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + connectorSubtype: api + connectorType: source + definitionId: 0b98589b-ccee-40fd-9e9d-28d94087b4e1 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-jobnimbus + githubIssueLabel: source-jobnimbus + icon: icon.svg + license: MIT + name: JobNimbus + releaseDate: 2024-10-29 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/jobnimbus + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/jobnimbus.md b/docs/integrations/sources/jobnimbus.md new file mode 100644 index 000000000000..a777f5696fe2 --- /dev/null +++ b/docs/integrations/sources/jobnimbus.md @@ -0,0 +1,28 @@ +# JobNimbus +The JobNimbus Airbyte connector enables seamless integration between JobNimbus, a popular CRM and project management tool, and your data pipeline. This connector allows you to automatically sync data from JobNimbus, including contacts records, task information, and more, into your preferred destination. It simplifies data extraction and helps you streamline workflows, enabling efficient analysis and reporting for enhanced business insights. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. API key to use. Find it by logging into your JobNimbus account, navigating to settings, and creating a new API key under the API section. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| jobs | jnid | DefaultPaginator | ✅ | ❌ | +| contacts | jnid | DefaultPaginator | ✅ | ❌ | +| tasks | jnid | DefaultPaginator | ✅ | ❌ | +| activities | jnid | DefaultPaginator | ✅ | ❌ | +| files | jnid | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-29 | | Initial release by [@parthiv11](https://github.com/parthiv11) via Connector Builder | + +
From 4fbbf58b4d209ebe133757f9d65bcc520ddd8352 Mon Sep 17 00:00:00 2001 From: Benoit Moriceau Date: Wed, 6 Nov 2024 15:18:58 -0800 Subject: [PATCH 776/808] feat: add application yaml (#48385) --- airbyte-cdk/bulk/core/base/build.gradle | 4 ++ .../base/src/main/resources/application.yaml | 4 ++ .../cdk/initialization/TestApplicationYaml.kt | 40 +++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 airbyte-cdk/bulk/core/base/src/main/resources/application.yaml create mode 100644 airbyte-cdk/bulk/core/base/src/test/kotlin/io/airbyte/cdk/initialization/TestApplicationYaml.kt diff --git a/airbyte-cdk/bulk/core/base/build.gradle b/airbyte-cdk/bulk/core/base/build.gradle index 5ecf5624885e..a6696aaacc45 100644 --- a/airbyte-cdk/bulk/core/base/build.gradle +++ b/airbyte-cdk/bulk/core/base/build.gradle @@ -50,3 +50,7 @@ dependencies { testFixturesApi 'io.micronaut.test:micronaut-test-junit5:4.5.0' testFixturesApi 'io.github.deblockt:json-diff:1.1.0' } + +test { + environment "PRESENT", "present-value" +} diff --git a/airbyte-cdk/bulk/core/base/src/main/resources/application.yaml b/airbyte-cdk/bulk/core/base/src/main/resources/application.yaml new file mode 100644 index 000000000000..4f45ac9d8a2e --- /dev/null +++ b/airbyte-cdk/bulk/core/base/src/main/resources/application.yaml @@ -0,0 +1,4 @@ +airbyte: + file-transfer: + enabled: ${USE_FILE_TRANSFER:false} + staging-path: ${AIRBYTE_STAGING_DIRECTORY:/staging/files} diff --git a/airbyte-cdk/bulk/core/base/src/test/kotlin/io/airbyte/cdk/initialization/TestApplicationYaml.kt b/airbyte-cdk/bulk/core/base/src/test/kotlin/io/airbyte/cdk/initialization/TestApplicationYaml.kt new file mode 100644 index 000000000000..40b926300377 --- /dev/null +++ b/airbyte-cdk/bulk/core/base/src/test/kotlin/io/airbyte/cdk/initialization/TestApplicationYaml.kt @@ -0,0 +1,40 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.initialization + +import io.micronaut.context.annotation.Bean +import io.micronaut.context.annotation.Factory +import io.micronaut.context.annotation.Value +import io.micronaut.test.extensions.junit5.annotation.MicronautTest +import jakarta.inject.Inject +import kotlin.test.assertEquals +import org.junit.jupiter.api.Test + +@MicronautTest +class TestApplicationYaml { + @Inject lateinit var defaultValueBean: DefaultValueBean + + @Test + fun testMainDefaultValue() { + assertEquals("/staging/files", defaultValueBean.stagingFolder) + assertEquals(false, defaultValueBean.fileTransferEnable) + } +} + +data class DefaultValueBean( + val stagingFolder: String, + val fileTransferEnable: Boolean, +) + +@Factory +class TestFactory { + @Bean + fun defaultValueBean( + @Value("\${airbyte.file-transfer.staging-path}") stagingFolder: String, + @Value("\${airbyte.file-transfer.enabled}") fileTransferEnable: Boolean, + ): DefaultValueBean { + return DefaultValueBean(stagingFolder, fileTransferEnable) + } +} From 43055d5cf7d2906148403490c8fd6e93e3eb95ce Mon Sep 17 00:00:00 2001 From: Aazam Thakur <59562284+aazam-gh@users.noreply.github.com> Date: Thu, 7 Nov 2024 05:14:40 +0530 Subject: [PATCH 777/808] source-taboola contribution from aazam-gh (#47640) Co-authored-by: Marcos Marx --- .../connectors/source-taboola/README.md | 39 + .../source-taboola/acceptance-test-config.yml | 17 + .../connectors/source-taboola/icon.svg | 20 + .../connectors/source-taboola/manifest.yaml | 1260 +++++++++++++++++ .../connectors/source-taboola/metadata.yaml | 35 + docs/integrations/sources/taboola.md | 38 + 6 files changed, 1409 insertions(+) create mode 100644 airbyte-integrations/connectors/source-taboola/README.md create mode 100644 airbyte-integrations/connectors/source-taboola/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-taboola/icon.svg create mode 100644 airbyte-integrations/connectors/source-taboola/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-taboola/metadata.yaml create mode 100644 docs/integrations/sources/taboola.md diff --git a/airbyte-integrations/connectors/source-taboola/README.md b/airbyte-integrations/connectors/source-taboola/README.md new file mode 100644 index 000000000000..e4d4de6d6a28 --- /dev/null +++ b/airbyte-integrations/connectors/source-taboola/README.md @@ -0,0 +1,39 @@ +# Taboola +This directory contains the manifest-only connector for `source-taboola`. + +This is the Taboola source that ingests data from the Taboola API. + +Taboola helps you reach customers that convert. Drive business results by reaching people genuinely, effectively at just the right moment https://www.taboola.com/ + +In order to use this source, you must first create an account. Once logged in you can contact Taboola support to provide you with a Client ID, Client Secret and Account ID. Once these credentials have been obtained, you can input them into the appropriate fields. + +You can learn more about the API here https://developers.taboola.com/backstage-api/reference + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-taboola:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-taboola build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-taboola test +``` + diff --git a/airbyte-integrations/connectors/source-taboola/acceptance-test-config.yml b/airbyte-integrations/connectors/source-taboola/acceptance-test-config.yml new file mode 100644 index 000000000000..982a88d91231 --- /dev/null +++ b/airbyte-integrations/connectors/source-taboola/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-taboola:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-taboola/icon.svg b/airbyte-integrations/connectors/source-taboola/icon.svg new file mode 100644 index 000000000000..ea523afea87b --- /dev/null +++ b/airbyte-integrations/connectors/source-taboola/icon.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-taboola/manifest.yaml b/airbyte-integrations/connectors/source-taboola/manifest.yaml new file mode 100644 index 000000000000..7f689ccd34d9 --- /dev/null +++ b/airbyte-integrations/connectors/source-taboola/manifest.yaml @@ -0,0 +1,1260 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + This is the Taboola source that ingests data from the Taboola API. + + + Taboola helps you reach customers that convert. Drive business results by + reaching people genuinely, effectively at just the right moment + https://www.taboola.com/ + + + In order to use this source, you must first create an account. Once logged in + you can contact Taboola support to provide you with a Client ID, Client Secret + and Account ID. Once these credentials have been obtained, you can input them + into the appropriate fields. + + + You can learn more about the API here + https://developers.taboola.com/backstage-api/reference + +check: + type: CheckStream + stream_names: + - account + +definitions: + streams: + account: + type: DeclarativeStream + name: account + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: backstage/api/1.0/users/current/allowed-accounts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/account" + audiences: + type: DeclarativeStream + name: audiences + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + backstage/api/1.0/{{ + config["account_id"]}}/combined_audiences/resources/audiences + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/audiences" + campaigns: + type: DeclarativeStream + name: campaigns + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /backstage/api/1.0/{{ config["account_id"] }}/campaigns/ + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/campaigns" + motion_ads: + type: DeclarativeStream + name: motion_ads + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + /backstage/api/1.0/{{ config["account_id"] }}/campaigns/{{ + stream_partition.parent_id }}/performance-video/items/ + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: + $ref: "#/definitions/streams/campaigns" + parent_key: id + partition_field: parent_id + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/motion_ads" + audience_rules: + type: DeclarativeStream + name: audience_rules + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + /backstage/api/1.0/{{ config["account_id"] + }}/universal_pixel/custom_audience_rule + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/audience_rules" + campaign_items: + type: DeclarativeStream + name: campaign_items + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + /backstage/api/1.0/{{ config["account_id"] }}/campaigns/{{ + stream_partition.parent_id }}/items/ + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + stream: + $ref: "#/definitions/streams/campaigns" + parent_key: id + partition_field: parent_id + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/campaign_items" + conversion_rules: + type: DeclarativeStream + name: conversion_rules + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + /backstage/api/1.0/{{ config["account_id"] + }}/universal_pixel/conversion_rule + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + primary_key: + - id + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/conversion_rules" + base_requester: + type: HttpRequester + url_base: https://backstage.taboola.com + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id\"] }}" + grant_type: client_credentials + client_secret: "{{ config[\"client_secret\"] }}" + access_token_name: access_token + refresh_request_body: {} + token_refresh_endpoint: https://backstage.taboola.com/backstage/oauth/token + +streams: + - $ref: "#/definitions/streams/account" + - $ref: "#/definitions/streams/campaigns" + - $ref: "#/definitions/streams/campaign_items" + - $ref: "#/definitions/streams/audience_rules" + - $ref: "#/definitions/streams/conversion_rules" + - $ref: "#/definitions/streams/motion_ads" + - $ref: "#/definitions/streams/audiences" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id + - client_secret + - account_id + properties: + client_id: + type: string + order: 0 + title: Client ID + airbyte_secret: true + account_id: + type: string + description: The ID associated with your taboola account + order: 2 + title: Account ID + client_secret: + type: string + order: 1 + title: Client secret + airbyte_secret: true + additionalProperties: true + +metadata: + assist: {} + testedStreams: + account: + hasRecords: true + streamHash: c0e4963d6cadfe3fa143ae49734e5d9cc889684b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + audiences: + hasRecords: true + streamHash: 082a5eaa73d4b0c8760b6ddb088d52d34a9c77db + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + campaigns: + hasRecords: true + streamHash: d966feac19f7d299089c2544174b780b40dbda8a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + motion_ads: + hasRecords: true + streamHash: c2a2b9778f2a76a1e82d96247b87a05aaff86ca1 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + audience_rules: + hasRecords: true + streamHash: c5d52d8fd716911fef81d1e65dd291e4b6332464 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + campaign_items: + hasRecords: true + streamHash: 8baabb3aa0e3b9f19901b527bb844fff967d9b40 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + conversion_rules: + hasRecords: true + streamHash: b00c3d15be83f431de7e5ec6696e6593e1afb9da + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + autoImportSchema: + account: true + audiences: true + campaigns: true + motion_ads: true + audience_rules: true + campaign_items: true + conversion_rules: true + +schemas: + account: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + type: + type: + - string + - "null" + id: + type: number + name: + type: + - string + - "null" + is_fla: + type: + - boolean + - "null" + country: + type: + - string + - "null" + currency: + type: + - string + - "null" + language: + type: + - string + - "null" + is_active: + type: + - boolean + - "null" + account_id: + type: + - string + - "null" + partner_types: + type: + - array + - "null" + items: + type: + - string + - "null" + campaign_types: + type: + - array + - "null" + items: + type: + - string + - "null" + time_zone_name: + type: + - string + - "null" + default_platform: + type: + - string + - "null" + additionalProperties: true + audiences: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + description: + type: + - string + - "null" + id: + type: number + size: + type: + - number + - "null" + provider: + type: + - string + - "null" + data_type: + type: + - string + - "null" + is_archived: + type: + - boolean + - "null" + audience_name: + type: + - string + - "null" + exclude_from_campaigns: + type: + - boolean + - "null" + additionalProperties: true + campaigns: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + type: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + spent: + type: + - number + - "null" + status: + type: + - string + - "null" + bid_type: + type: + - string + - "null" + comments: + type: + - string + - "null" + cpa_goal: + type: + - number + - "null" + end_date: + type: + - string + - "null" + daily_cap: + type: + - number + - "null" + is_active: + type: + - boolean + - "null" + start_date: + type: + - string + - "null" + bid_strategy: + type: + - string + - "null" + os_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + advertiser_id: + type: + - string + - "null" + branding_text: + type: + - string + - "null" + policy_review: + type: + - object + - "null" + properties: {} + pricing_model: + type: + - string + - "null" + safety_rating: + type: + - string + - "null" + tracking_code: + type: + - string + - "null" + approval_state: + type: + - string + - "null" + city_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + spending_limit: + type: + - number + - "null" + end_date_in_utc: + type: + - string + - "null" + conversion_rules: + type: + - object + - "null" + properties: + rules: + type: + - array + - "null" + activity_schedule: + type: + - object + - "null" + properties: + mode: + type: + - string + - "null" + rules: + type: + - array + - "null" + time_zone: + type: + - string + - "null" + browser_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + country_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + start_date_in_utc: + type: + - string + - "null" + campaign_item_type: + type: + - string + - "null" + platform_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + items: + type: + - string + - "null" + segments_targeting: + type: + - object + - "null" + properties: + AGE: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + href: + type: + - string + - "null" + value: + type: + - array + - "null" + GENDER: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + href: + type: + - string + - "null" + value: + type: + - array + - "null" + audiences_targeting: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + state: + type: + - string + - "null" + marketing_objective: + type: + - string + - "null" + publisher_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + contextual_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + performance_rule_ids: + type: + - array + - "null" + spending_limit_model: + type: + - string + - "null" + day_time_bid_modifier: + type: + - object + - "null" + properties: + values: + type: + - array + - "null" + dma_country_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + external_brand_safety: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + values: + type: + - array + - "null" + is_spend_guard_active: + type: + - string + - "null" + platform_bid_modifier: + type: + - object + - "null" + properties: + values: + type: + - array + - "null" + postal_code_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + href: + type: + - string + - "null" + sub_country_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + publisher_bid_modifier: + type: + - object + - "null" + properties: + values: + type: + - array + - "null" + daily_ad_delivery_model: + type: + - string + - "null" + traffic_allocation_mode: + type: + - string + - "null" + auto_publisher_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + region_country_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + connection_type_targeting: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + value: + type: + - array + - "null" + custom_audience_targeting: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + state: + type: + - string + - "null" + custom_contextual_targeting: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + state: + type: + - string + - "null" + lookalike_audience_targeting: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + state: + type: + - string + - "null" + predefined_targeting_options: + type: + - object + - "null" + properties: + predefined_supply_targeting: + type: + - string + - "null" + contextual_segments_targeting: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + state: + type: + - string + - "null" + marking_label_multi_targeting: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + state: + type: + - string + - "null" + publisher_platform_bid_modifier: + type: + - object + - "null" + properties: + values: + type: + - array + - "null" + publisher_bid_strategy_modifiers: + type: + - object + - "null" + properties: + values: + type: + - array + - "null" + audience_segments_multi_targeting: + type: + - object + - "null" + properties: + href: + type: + - string + - "null" + state: + type: + - string + - "null" + additionalProperties: true + motion_ads: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + description: + type: + - string + - "null" + id: + type: string + url: + type: + - string + - "null" + title: + type: + - string + - "null" + status: + type: + - string + - "null" + gif_url: + type: + - string + - "null" + is_active: + type: + - boolean + - "null" + video_url: + type: + - string + - "null" + campaign_id: + type: + - string + - "null" + custom_data: + type: + - object + - "null" + properties: + custom_id: + type: + - string + - "null" + creative_name: + type: + - string + - "null" + fallback_url: + type: + - string + - "null" + policy_review: + type: + - object + - "null" + properties: {} + approval_state: + type: + - string + - "null" + motion_ads_studio: + type: + - object + - "null" + properties: + vendor_video_id: + type: + - string + - "null" + vendor_template_type: + type: + - string + - "null" + media_upload_source: + type: + - string + - "null" + recommended_fbimage: + type: + - string + - "null" + additionalProperties: true + audience_rules: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + type: + type: + - string + - "null" + id: + type: number + status: + type: + - string + - "null" + category: + type: + - string + - "null" + condition: + type: + - object + - "null" + properties: + value: + type: + - string + - "null" + children: + type: + - array + - "null" + property: + type: + - string + - "null" + predicate: + type: + - string + - "null" + event_name: + type: + - string + - "null" + display_name: + type: + - string + - "null" + advertiser_id: + type: + - string + - "null" + audience_size: + type: + - number + - "null" + last_modified_at: + type: + - string + - "null" + last_modified_by: + type: + - string + - "null" + look_back_window: + type: + - number + - "null" + exclude_from_campaigns: + type: + - boolean + - "null" + additionalProperties: true + campaign_items: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + id: + type: string + url: + type: + - string + - "null" + title: + type: + - string + - "null" + status: + type: + - string + - "null" + is_active: + type: + - boolean + - "null" + campaign_id: + type: + - string + - "null" + custom_data: + type: + - object + - "null" + properties: + custom_id: + type: + - string + - "null" + creative_name: + type: + - string + - "null" + policy_review: + type: + - object + - "null" + properties: {} + thumbnail_url: + type: + - string + - "null" + approval_state: + type: + - string + - "null" + creative_focus: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + additionalProperties: true + conversion_rules: + type: object + $schema: http://json-schema.org/schema# + required: + - id + properties: + type: + type: + - string + - "null" + id: + type: number + status: + type: + - string + - "null" + effects: + type: + - array + - "null" + category: + type: + - string + - "null" + condition: + type: + - object + - "null" + properties: + value: + type: + - string + - "null" + children: + type: + - array + - "null" + property: + type: + - string + - "null" + predicate: + type: + - string + - "null" + event_name: + type: + - string + - "null" + display_name: + type: + - string + - "null" + advertiser_id: + type: + - string + - "null" + aggregation_type: + type: + - string + - "null" + last_modified_at: + type: + - string + - "null" + last_modified_by: + type: + - string + - "null" + look_back_window: + type: + - number + - "null" + exclude_from_campaigns: + type: + - boolean + - "null" + include_in_total_value: + type: + - boolean + - "null" + include_in_total_conversions: + type: + - boolean + - "null" + view_through_look_back_window: + type: + - number + - "null" + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-taboola/metadata.yaml b/airbyte-integrations/connectors/source-taboola/metadata.yaml new file mode 100644 index 000000000000..087139f21a1a --- /dev/null +++ b/airbyte-integrations/connectors/source-taboola/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "backstage.taboola.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-taboola + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + connectorSubtype: api + connectorType: source + definitionId: 40bb20de-e03c-4aa2-80bc-72234598380f + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-taboola + githubIssueLabel: source-taboola + icon: icon.svg + license: MIT + name: Taboola + releaseDate: 2024-10-28 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/taboola + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/taboola.md b/docs/integrations/sources/taboola.md new file mode 100644 index 000000000000..422460c4319d --- /dev/null +++ b/docs/integrations/sources/taboola.md @@ -0,0 +1,38 @@ +# Taboola +This is the Taboola source that ingests data from the Taboola API. + +Taboola helps you reach customers that convert. Drive business results by reaching people genuinely, effectively at just the right moment https://www.taboola.com/ + +In order to use this source, you must first create an account. Once logged in you can contact Taboola support to provide you with a Client ID, Client Secret and Account ID. Once these credentials have been obtained, you can input them into the appropriate fields. + +You can learn more about the API here https://developers.taboola.com/backstage-api/reference + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `client_id` | `string` | Client ID. | | +| `account_id` | `string` | Account ID. The ID associated with your taboola account | | +| `client_secret` | `string` | Client secret. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| account | id | No pagination | ✅ | ❌ | +| campaigns | id | No pagination | ✅ | ❌ | +| campaign_items | id | No pagination | ✅ | ❌ | +| audience_rules | id | No pagination | ✅ | ❌ | +| conversion_rules | id | No pagination | ✅ | ❌ | +| motion_ads | id | No pagination | ✅ | ❌ | +| audiences | id | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-28 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | + +
From c25f3fc140ef4fdfb180ddd4800ba9407814efe7 Mon Sep 17 00:00:00 2001 From: Aazam Thakur <59562284+aazam-gh@users.noreply.github.com> Date: Thu, 7 Nov 2024 05:20:42 +0530 Subject: [PATCH 778/808] source-shippo contribution from aazam-gh (#47485) Co-authored-by: Marcos Marx --- .../connectors/source-shippo/README.md | 37 + .../source-shippo/acceptance-test-config.yml | 17 + .../connectors/source-shippo/icon.svg | 1 + .../connectors/source-shippo/manifest.yaml | 1748 +++++++++++++++++ .../connectors/source-shippo/metadata.yaml | 35 + docs/integrations/sources/shippo.md | 34 + 6 files changed, 1872 insertions(+) create mode 100644 airbyte-integrations/connectors/source-shippo/README.md create mode 100644 airbyte-integrations/connectors/source-shippo/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-shippo/icon.svg create mode 100644 airbyte-integrations/connectors/source-shippo/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-shippo/metadata.yaml create mode 100644 docs/integrations/sources/shippo.md diff --git a/airbyte-integrations/connectors/source-shippo/README.md b/airbyte-integrations/connectors/source-shippo/README.md new file mode 100644 index 000000000000..bd52fb172d2d --- /dev/null +++ b/airbyte-integrations/connectors/source-shippo/README.md @@ -0,0 +1,37 @@ +# Shippo +This directory contains the manifest-only connector for `source-shippo`. + +This is the Shippo source for ingesting data using the Shippo API. + +Shippo is your one-stop solution for shipping labels. Whether you use our app to ship or API to power your logistics workflow, Shippo gives you scalable shipping tools, the best rates, and world-class support https://goshippo.com/ + +In order to use this source, you must first create a Shippo account. Once logged in, head over to Settings -> Advanced -> API and click on generate new token. You can learn more about the API here https://docs.goshippo.com/shippoapi/public-api/#tag/Overview + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-shippo:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-shippo build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-shippo test +``` + diff --git a/airbyte-integrations/connectors/source-shippo/acceptance-test-config.yml b/airbyte-integrations/connectors/source-shippo/acceptance-test-config.yml new file mode 100644 index 000000000000..0cfe1d0e6190 --- /dev/null +++ b/airbyte-integrations/connectors/source-shippo/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-shippo:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-shippo/icon.svg b/airbyte-integrations/connectors/source-shippo/icon.svg new file mode 100644 index 000000000000..d011ec476ea5 --- /dev/null +++ b/airbyte-integrations/connectors/source-shippo/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-shippo/manifest.yaml b/airbyte-integrations/connectors/source-shippo/manifest.yaml new file mode 100644 index 000000000000..8d6fca2ec52b --- /dev/null +++ b/airbyte-integrations/connectors/source-shippo/manifest.yaml @@ -0,0 +1,1748 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + This is the Shippo source for ingesting data using the Shippo API. + + + Shippo is your one-stop solution for shipping labels. Whether you use our app + to ship or API to power your logistics workflow, Shippo gives you scalable + shipping tools, the best rates, and world-class support https://goshippo.com/ + + + In order to use this source, you must first create a Shippo account. Once + logged in, head over to Settings -> Advanced -> API and click on generate new + token. You can learn more about the API here + https://docs.goshippo.com/shippoapi/public-api/#tag/Overview + +check: + type: CheckStream + stream_names: + - addresses + +definitions: + streams: + addresses: + type: DeclarativeStream + name: addresses + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /v2/addresses + http_method: GET + request_headers: + Authorization: ShippoToken {{ config["shippo_token"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: limit + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/addresses" + parcels: + type: DeclarativeStream + name: parcels + primary_key: + - object_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /parcels + http_method: GET + request_headers: + Authorization: ShippoToken {{ config["shippo_token"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: results + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/parcels" + custom_items: + type: DeclarativeStream + name: custom_items + primary_key: + - object_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /customs/items + http_method: GET + request_headers: + Authorization: ShippoToken {{ config["shippo_token"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: results + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/custom_items" + accounts: + type: DeclarativeStream + name: accounts + primary_key: + - object_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /shippo-accounts + http_method: GET + request_headers: + Authorization: ShippoToken {{ config["shippo_token"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: results + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/accounts" + carrier_acounts: + type: DeclarativeStream + name: carrier_acounts + primary_key: + - object_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /carrier_accounts + http_method: GET + request_headers: + Authorization: ShippoToken {{ config["shippo_token"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: results + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/carrier_acounts" + shipments: + type: DeclarativeStream + name: shipments + primary_key: + - object_id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /shipments + http_method: GET + request_headers: + Authorization: ShippoToken {{ config["shippo_token"] }} + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - results + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: results + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + inject_on_first_request: true + incremental_sync: + type: DatetimeBasedCursor + cursor_field: object_updated + cursor_datetime_formats: + - "%Y-%m-%dT%H:%M:%S.%fZ" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + start_datetime: + type: MinMaxDatetime + datetime: "{{ config[\"start_date\"] }}" + datetime_format: "%Y-%m-%dT%H:%M:%SZ" + start_time_option: + type: RequestOption + inject_into: request_parameter + field_name: object_created_gt + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/shipments" + base_requester: + type: HttpRequester + url_base: https://api.goshippo.com + +streams: + - $ref: "#/definitions/streams/addresses" + - $ref: "#/definitions/streams/parcels" + - $ref: "#/definitions/streams/custom_items" + - $ref: "#/definitions/streams/accounts" + - $ref: "#/definitions/streams/carrier_acounts" + - $ref: "#/definitions/streams/shipments" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - shippo_token + - start_date + properties: + shippo_token: + type: string + description: The bearer token used for making requests + title: Shippo Token + order: 0 + start_date: + type: string + title: Start date + format: date-time + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$ + order: 1 + additionalProperties: true + +metadata: + autoImportSchema: + addresses: true + parcels: true + custom_items: true + accounts: true + carrier_acounts: true + shipments: true + testedStreams: + addresses: + streamHash: c2a5943c1cc3c14e6f43ea454bdff5b2627cfc4b + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + parcels: + streamHash: 9d088b7ef340fbe88c91a131f51eb872a5348cd1 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + custom_items: + streamHash: 21c2e781324ebf7429927cedb992834eb107142a + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + accounts: + streamHash: ff3113723dffb561047ec7348ba6e637c7068376 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + carrier_acounts: + streamHash: 17b1fc52b7f21c14dc6587530013aea90327a886 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + shipments: + streamHash: 4e50c91f3910aeb19cb1bb3270663c88d7efb3bd + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: {} + +schemas: + addresses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + address: + type: + - object + - "null" + properties: + address_line_1: + type: + - string + - "null" + address_line_2: + type: + - string + - "null" + address_type: + type: + - string + - "null" + city_locality: + type: + - string + - "null" + country_code: + type: + - string + - "null" + email: + type: + - string + - "null" + name: + type: + - string + - "null" + organization: + type: + - string + - "null" + phone: + type: + - string + - "null" + postal_code: + type: + - string + - "null" + state_province: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: string + updated_at: + type: + - string + - "null" + required: + - id + parcels: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - string + - "null" + distance_unit: + type: + - string + - "null" + extra: + type: + - object + - "null" + properties: + COD: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + currency: + type: + - string + - "null" + payment_method: + type: + - string + - "null" + insurance: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + content: + type: + - string + - "null" + currency: + type: + - string + - "null" + provider: + type: + - string + - "null" + reference_1: + type: + - string + - "null" + reference_2: + type: + - string + - "null" + height: + type: + - string + - "null" + length: + type: + - string + - "null" + line_items: + type: + - array + - "null" + mass_unit: + type: + - string + - "null" + object_created: + type: + - string + - "null" + object_id: + type: string + object_owner: + type: + - string + - "null" + object_state: + type: + - string + - "null" + object_updated: + type: + - string + - "null" + test: + type: + - boolean + - "null" + weight: + type: + - string + - "null" + width: + type: + - string + - "null" + required: + - object_id + custom_items: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + metadata: + type: + - string + - "null" + eccn_ear99: + type: + - string + - "null" + hs_code: + type: + - string + - "null" + mass_unit: + type: + - string + - "null" + net_weight: + type: + - string + - "null" + object_created: + type: + - string + - "null" + object_id: + type: string + object_owner: + type: + - string + - "null" + object_state: + type: + - string + - "null" + object_updated: + type: + - string + - "null" + origin_country: + type: + - string + - "null" + quantity: + type: + - number + - "null" + sku_code: + type: + - string + - "null" + tariff_number: + type: + - string + - "null" + test: + type: + - boolean + - "null" + value_amount: + type: + - string + - "null" + value_currency: + type: + - string + - "null" + required: + - object_id + accounts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + last_name: + type: + - string + - "null" + object_created: + type: + - string + - "null" + object_id: + type: string + object_updated: + type: + - string + - "null" + required: + - object_id + carrier_acounts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - string + - "null" + account_id: + type: + - string + - "null" + active: + type: + - boolean + - "null" + carrier: + type: + - string + - "null" + carrier_images: + type: + - object + - "null" + properties: + "75": + type: + - string + - "null" + "200": + type: + - string + - "null" + carrier_name: + type: + - string + - "null" + is_shippo_account: + type: + - boolean + - "null" + object_id: + type: string + object_info: + type: + - object + - "null" + properties: + authentication: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + object_owner: + type: + - string + - "null" + parameters: + type: + - object + - "null" + properties: + expresslink_password: + type: + - string + - "null" + is_commercial: + type: + - string + - "null" + test: + type: + - boolean + - "null" + required: + - object_id + shipments: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + metadata: + type: + - string + - "null" + address_from: + type: + - object + - "null" + properties: + city: + type: + - string + - "null" + company: + type: + - string + - "null" + country: + type: + - string + - "null" + email: + type: + - string + - "null" + is_complete: + type: + - boolean + - "null" + is_residential: + type: + - boolean + - "null" + name: + type: + - string + - "null" + object_id: + type: + - string + - "null" + phone: + type: + - string + - "null" + state: + type: + - string + - "null" + street1: + type: + - string + - "null" + street2: + type: + - string + - "null" + street3: + type: + - string + - "null" + street_no: + type: + - string + - "null" + test: + type: + - boolean + - "null" + validation_results: + type: + - object + - "null" + properties: + is_valid: + type: + - boolean + - "null" + messages: + type: + - array + - "null" + zip: + type: + - string + - "null" + address_return: + type: + - object + - "null" + properties: + city: + type: + - string + - "null" + company: + type: + - string + - "null" + country: + type: + - string + - "null" + email: + type: + - string + - "null" + is_complete: + type: + - boolean + - "null" + is_residential: + type: + - boolean + - "null" + name: + type: + - string + - "null" + object_id: + type: + - string + - "null" + phone: + type: + - string + - "null" + state: + type: + - string + - "null" + street1: + type: + - string + - "null" + street2: + type: + - string + - "null" + street3: + type: + - string + - "null" + street_no: + type: + - string + - "null" + test: + type: + - boolean + - "null" + validation_results: + type: + - object + - "null" + properties: + is_valid: + type: + - boolean + - "null" + messages: + type: + - array + - "null" + zip: + type: + - string + - "null" + address_to: + type: + - object + - "null" + properties: + city: + type: + - string + - "null" + company: + type: + - string + - "null" + country: + type: + - string + - "null" + email: + type: + - string + - "null" + is_complete: + type: + - boolean + - "null" + name: + type: + - string + - "null" + object_id: + type: + - string + - "null" + phone: + type: + - string + - "null" + state: + type: + - string + - "null" + street1: + type: + - string + - "null" + street2: + type: + - string + - "null" + street3: + type: + - string + - "null" + street_no: + type: + - string + - "null" + test: + type: + - boolean + - "null" + validation_results: + type: + - object + - "null" + properties: + is_valid: + type: + - boolean + - "null" + messages: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + code: + type: + - string + - "null" + source: + type: + - string + - "null" + text: + type: + - string + - "null" + zip: + type: + - string + - "null" + carrier_accounts: + type: + - array + - "null" + items: + type: + - string + - "null" + customs_declaration: + type: + - object + - "null" + properties: + metadata: + type: + - string + - "null" + address_importer: + type: + - string + - "null" + aes_itn: + type: + - string + - "null" + b13a_filing_option: + type: + - string + - "null" + b13a_number: + type: + - string + - "null" + certificate: + type: + - string + - "null" + certify: + type: + - boolean + - "null" + certify_signer: + type: + - string + - "null" + commercial_invoice: + type: + - boolean + - "null" + contents_explanation: + type: + - string + - "null" + contents_type: + type: + - string + - "null" + disclaimer: + type: + - string + - "null" + duties_payor: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + account: + type: + - string + - "null" + address: + type: + - object + - "null" + properties: + country: + type: + - string + - "null" + name: + type: + - string + - "null" + zip: + type: + - string + - "null" + object_created: + type: + - string + - "null" + object_updated: + type: + - string + - "null" + eel_pfc: + type: + - string + - "null" + exporter_identification: + type: + - object + - "null" + properties: + eori_number: + type: + - string + - "null" + tax_id: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + number: + type: + - string + - "null" + exporter_reference: + type: + - string + - "null" + importer_reference: + type: + - string + - "null" + incoterm: + type: + - string + - "null" + invoice: + type: + - string + - "null" + is_vat_collected: + type: + - boolean + - "null" + items: + type: + - array + - "null" + items: + type: + - string + - "null" + license: + type: + - string + - "null" + non_delivery_option: + type: + - string + - "null" + notes: + type: + - string + - "null" + object_created: + type: + - string + - "null" + object_id: + type: + - string + - "null" + object_owner: + type: + - string + - "null" + object_state: + type: + - string + - "null" + object_updated: + type: + - string + - "null" + test: + type: + - boolean + - "null" + extra: + type: + - object + - "null" + properties: + COD: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + currency: + type: + - string + - "null" + payment_method: + type: + - string + - "null" + accounts_receivable_customer_account: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + billing: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + account: + type: + - string + - "null" + country: + type: + - string + - "null" + participation_code: + type: + - string + - "null" + zip: + type: + - string + - "null" + bypass_address_validation: + type: + - boolean + - "null" + carbon_neutral: + type: + - boolean + - "null" + carrier_hub_id: + type: + - string + - "null" + carrier_hub_travel_time: + type: + - number + - "null" + cod_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + delivery_instructions: + type: + - string + - "null" + dept_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + dry_ice: + type: + - object + - "null" + properties: + contains_dry_ice: + type: + - boolean + - "null" + weight: + type: + - string + - "null" + fda_product_code: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + fulfillment_center: + type: + - string + - "null" + insurance: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + content: + type: + - string + - "null" + currency: + type: + - string + - "null" + provider: + type: + - string + - "null" + invoice_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + is_return: + type: + - boolean + - "null" + lasership_attrs: + type: + - array + - "null" + items: + type: + - string + - "null" + lasership_declared_value: + type: + - string + - "null" + manifest_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + model_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + part_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + po_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + preferred_delivery_timeframe: + type: + - string + - "null" + premium: + type: + - boolean + - "null" + production_code: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + purchase_request_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + qr_code_requested: + type: + - boolean + - "null" + reference_1: + type: + - string + - "null" + reference_2: + type: + - string + - "null" + request_retail_rates: + type: + - boolean + - "null" + return_service_type: + type: + - string + - "null" + rma_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + salesperson_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + saturday_delivery: + type: + - boolean + - "null" + serial_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + signature_confirmation: + type: + - string + - "null" + store_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + transaction_reference_number: + type: + - object + - "null" + properties: + prefix: + type: + - string + - "null" + ref_sort: + type: + - number + - "null" + value: + type: + - string + - "null" + messages: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + code: + type: + - string + - "null" + source: + type: + - string + - "null" + text: + type: + - string + - "null" + object_created: + type: + - string + - "null" + object_id: + type: string + object_owner: + type: + - string + - "null" + object_updated: + type: string + parcels: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + metadata: + type: + - string + - "null" + distance_unit: + type: + - string + - "null" + extra: + type: + - object + - "null" + properties: + COD: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + currency: + type: + - string + - "null" + payment_method: + type: + - string + - "null" + height: + type: + - string + - "null" + length: + type: + - string + - "null" + line_items: + type: + - array + - "null" + mass_unit: + type: + - string + - "null" + object_created: + type: + - string + - "null" + object_id: + type: + - string + - "null" + object_owner: + type: + - string + - "null" + object_state: + type: + - string + - "null" + object_updated: + type: + - string + - "null" + test: + type: + - boolean + - "null" + weight: + type: + - string + - "null" + width: + type: + - string + - "null" + rates: + type: + - array + - "null" + shipment_date: + type: + - string + - "null" + status: + type: + - string + - "null" + test: + type: + - boolean + - "null" + required: + - object_id + - object_updated diff --git a/airbyte-integrations/connectors/source-shippo/metadata.yaml b/airbyte-integrations/connectors/source-shippo/metadata.yaml new file mode 100644 index 000000000000..c516081efcb1 --- /dev/null +++ b/airbyte-integrations/connectors/source-shippo/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.goshippo.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-shippo + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: e809021f-7258-42c0-8aa6-4bc563b27837 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-shippo + githubIssueLabel: source-shippo + icon: icon.svg + license: MIT + name: Shippo + releaseDate: 2024-10-28 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/shippo + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/shippo.md b/docs/integrations/sources/shippo.md new file mode 100644 index 000000000000..d98ebe64d065 --- /dev/null +++ b/docs/integrations/sources/shippo.md @@ -0,0 +1,34 @@ +# Shippo +This is the Shippo source for ingesting data using the Shippo API. + +Shippo is your one-stop solution for shipping labels. Whether you use our app to ship or API to power your logistics workflow, Shippo gives you scalable shipping tools, the best rates, and world-class support https://goshippo.com/ + +In order to use this source, you must first create a Shippo account. Once logged in, head over to Settings -> Advanced -> API and click on generate new token. You can learn more about the API here https://docs.goshippo.com/shippoapi/public-api/#tag/Overview + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `shippo_token` | `string` | Shippo Token. The bearer token used for making requests | | +| `start_date` | `string` | Start date. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| addresses | id | DefaultPaginator | ✅ | ❌ | +| parcels | object_id | DefaultPaginator | ✅ | ❌ | +| custom_items | object_id | DefaultPaginator | ✅ | ❌ | +| accounts | object_id | DefaultPaginator | ✅ | ❌ | +| carrier_acounts | object_id | DefaultPaginator | ✅ | ❌ | +| shipments | object_id | DefaultPaginator | ✅ | ✅ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-28 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | + +
From 74746e466941af4ca75516ea38152e154936ccfa Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Thu, 7 Nov 2024 18:22:16 +0530 Subject: [PATCH 779/808] source-freshbooks contribution from bishalbera (#47422) Co-authored-by: Marcos Marx --- .../connectors/source-freshbooks/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-freshbooks/icon.svg | 1 + .../source-freshbooks/manifest.yaml | 2086 +++++++++++++++++ .../source-freshbooks/metadata.yaml | 35 + docs/integrations/sources/freshbooks.md | 42 + 6 files changed, 2214 insertions(+) create mode 100644 airbyte-integrations/connectors/source-freshbooks/README.md create mode 100644 airbyte-integrations/connectors/source-freshbooks/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-freshbooks/icon.svg create mode 100644 airbyte-integrations/connectors/source-freshbooks/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-freshbooks/metadata.yaml create mode 100644 docs/integrations/sources/freshbooks.md diff --git a/airbyte-integrations/connectors/source-freshbooks/README.md b/airbyte-integrations/connectors/source-freshbooks/README.md new file mode 100644 index 000000000000..08b01a383c6e --- /dev/null +++ b/airbyte-integrations/connectors/source-freshbooks/README.md @@ -0,0 +1,33 @@ +# FreshBooks +This directory contains the manifest-only connector for `source-freshbooks`. + +FreshBooks connector seamlessly syncs invoicing, expenses, and client data from FreshBooks into data warehouses or analytics platforms. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-freshbooks:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-freshbooks build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-freshbooks test +``` + diff --git a/airbyte-integrations/connectors/source-freshbooks/acceptance-test-config.yml b/airbyte-integrations/connectors/source-freshbooks/acceptance-test-config.yml new file mode 100644 index 000000000000..e64c1189e300 --- /dev/null +++ b/airbyte-integrations/connectors/source-freshbooks/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-freshbooks:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-freshbooks/icon.svg b/airbyte-integrations/connectors/source-freshbooks/icon.svg new file mode 100644 index 000000000000..9b4ac79421e5 --- /dev/null +++ b/airbyte-integrations/connectors/source-freshbooks/icon.svg @@ -0,0 +1 @@ + diff --git a/airbyte-integrations/connectors/source-freshbooks/manifest.yaml b/airbyte-integrations/connectors/source-freshbooks/manifest.yaml new file mode 100644 index 000000000000..3acf8f940d8b --- /dev/null +++ b/airbyte-integrations/connectors/source-freshbooks/manifest.yaml @@ -0,0 +1,2086 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + FreshBooks connector seamlessly syncs invoicing, expenses, and client data + from FreshBooks into data warehouses or analytics platforms. + +check: + type: CheckStream + stream_names: + - user + +definitions: + streams: + user: + type: DeclarativeStream + name: user + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /auth/api/v1/users/me + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/user" + clients: + type: DeclarativeStream + name: clients + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounting/account/{{ config["account_id"] }}/users/clients + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - response + - result + - clients + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/clients" + invoices: + type: DeclarativeStream + name: invoices + primary_key: + - id + - invoiceid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounting/account/{{ config['account_id'] }}/invoices/invoices + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - response + - result + - invoices + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/invoices" + expenses: + type: DeclarativeStream + name: expenses + primary_key: + - id + - expenseid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounting/account/{{ config['account_id'] }}/expenses/expenses + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - response + - result + - expenses + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/expenses" + expense_summaries: + type: DeclarativeStream + name: expense_summaries + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounting/account/{{ config["account_id"] }}/expenses/summaries + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - response + - result + - summaries + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/expense_summaries" + expense_categories: + type: DeclarativeStream + name: expense_categories + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounting/account/{{ config["account_id"] }}/expenses/categories + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - response + - result + - categories + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/expense_categories" + invoice_details: + type: DeclarativeStream + name: invoice_details + primary_key: + - invoiceid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + /accounting/account/{{ config["account_id"] + }}/reports/accounting/invoice_details + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - response + - result + - invoice_details + - clients + - "*" + - invoices + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/invoice_details" + expense_details: + type: DeclarativeStream + name: expense_details + primary_key: + - expenseid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + /accounting/account/{{ config['account_id'] + }}/reports/accounting/expense_details + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - response + - result + - expense_details + - data + - "*" + - expenses + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/expense_details" + accounts: + type: DeclarativeStream + name: accounts + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: >- + /accounting/businesses/{{ config['business_uuid'] + }}/ledger_accounts/accounts + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/accounts" + taxes: + type: DeclarativeStream + name: taxes + primary_key: + - taxid + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /accounting/account/{{ config["account_id"] }}/taxes/taxes + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - response + - result + - taxes + - "*" + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + pagination_strategy: + type: PageIncrement + page_size: 100 + start_from_page: 1 + inject_on_first_request: true + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/taxes" + base_requester: + type: HttpRequester + url_base: https://api.freshbooks.com + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id\"] }}" + grant_type: refresh_token + client_secret: "{{ config[\"client_secret\"] }}" + refresh_token: "{{ config[\"client_refresh_token\"] }}" + refresh_request_body: + redirect_uri: "{{ config[\"redirect_uri\"] }}" + refresh_token_updater: + refresh_token_name: refresh_token + access_token_config_path: + - oauth_access_token + token_expiry_date_config_path: + - oauth_token_expiry_date + refresh_token_config_path: + - client_refresh_token + token_refresh_endpoint: https://api.freshbooks.com/auth/oauth/token + +streams: + - $ref: "#/definitions/streams/user" + - $ref: "#/definitions/streams/clients" + - $ref: "#/definitions/streams/invoices" + - $ref: "#/definitions/streams/expenses" + - $ref: "#/definitions/streams/expense_summaries" + - $ref: "#/definitions/streams/expense_categories" + - $ref: "#/definitions/streams/invoice_details" + - $ref: "#/definitions/streams/expense_details" + - $ref: "#/definitions/streams/accounts" + - $ref: "#/definitions/streams/taxes" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id + - client_secret + - redirect_uri + - account_id + - client_refresh_token + - business_uuid + properties: + client_id: + type: string + order: 0 + title: Client ID + airbyte_secret: true + client_secret: + type: string + order: 1 + title: Client secret + airbyte_secret: true + redirect_uri: + type: string + order: 2 + title: Redirect Uri + airbyte_secret: true + account_id: + type: string + order: 3 + title: Account Id + client_refresh_token: + type: string + order: 4 + title: Refresh token + airbyte_secret: true + oauth_access_token: + type: string + description: >- + The current access token. This field might be overridden by the + connector based on the token refresh endpoint response. + order: 5 + title: Access token + airbyte_secret: true + oauth_token_expiry_date: + type: string + description: >- + The date the current access token expires in. This field might be + overridden by the connector based on the token refresh endpoint + response. + order: 6 + title: Token expiry date + format: date-time + business_uuid: + type: string + order: 7 + title: Business uuid + additionalProperties: true + +metadata: + autoImportSchema: + user: true + clients: true + invoices: true + expenses: true + expense_summaries: true + expense_categories: true + invoice_details: true + expense_details: true + accounts: true + taxes: true + testedStreams: + user: + hasRecords: true + streamHash: 084154685fd57ba95fed5b9a5e68c697a9a98fcc + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + clients: + hasRecords: true + streamHash: 35e9f0487bda5713e6b688ebca713409e707eaf5 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + invoices: + hasRecords: true + streamHash: c583e59892652200fda6b7b0672278b0a859550d + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + expenses: + hasRecords: true + streamHash: 2b5c12602f5d15f916ccbcb17749332488e7ff45 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + expense_summaries: + hasRecords: true + streamHash: 958e28c6ad13fef3a7ca192cce4d007217744dfa + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + expense_categories: + hasRecords: true + streamHash: 175f129069e1b76a1aa4e4cc09c720b2432e58f0 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + invoice_details: + hasRecords: true + streamHash: b2ea5342d54bed63b89a45a85024677a999f5171 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + expense_details: + hasRecords: true + streamHash: 9b667c02b8aab2f4c21c39b4b7a8d7bc6377f78a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + accounts: + hasRecords: true + streamHash: e393f445f6fa6f1161556aca19e5a9a4dd75bbf2 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + taxes: + streamHash: 12b2752c45f9d92bcc1e51161a53bf54fa9962d2 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://www.freshbooks.com/api/start + +schemas: + user: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + response: + type: + - object + - "null" + properties: + addresses: + type: + - array + - "null" + items: + type: + - "null" + - "null" + business_memberships: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + business: + type: + - object + - "null" + properties: + account_id: + type: + - string + - "null" + active: + type: + - boolean + - "null" + address: + type: + - object + - "null" + properties: + city: + type: + - string + - "null" + country: + type: + - string + - "null" + id: + type: + - number + - "null" + postal_code: + type: + - string + - "null" + province: + type: + - string + - "null" + street: + type: + - string + - "null" + street2: + type: + - string + - "null" + advanced_accounting_enabled: + type: + - boolean + - "null" + business_clients: + type: + - array + - "null" + business_uuid: + type: + - string + - "null" + date_format: + type: + - string + - "null" + first_day_of_week: + type: + - number + - "null" + id: + type: + - number + - "null" + industry: + type: + - string + - "null" + name: + type: + - string + - "null" + phone_number: + type: + - object + - "null" + properties: + id: + type: + - number + - "null" + phone_number: + type: + - string + - "null" + status: + type: + - string + - "null" + timezone: + type: + - string + - "null" + fasttrack_token: + type: + - string + - "null" + id: + type: + - number + - "null" + role: + type: + - string + - "null" + unacknowledged_change: + type: + - boolean + - "null" + business_statuses: + type: + - object + - "null" + properties: + YpZK5G: + type: + - string + - "null" + confirmed_at: + type: + - string + - "null" + created_at: + type: + - string + - "null" + email: + type: + - string + - "null" + first_name: + type: + - string + - "null" + groups: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + active: + type: + - boolean + - "null" + business_id: + type: + - number + - "null" + group_id: + type: + - number + - "null" + id: + type: + - number + - "null" + identity_id: + type: + - number + - "null" + identity_uuid: + type: + - string + - "null" + role: + type: + - string + - "null" + id: + type: + - number + - "null" + identity_id: + type: + - number + - "null" + identity_origin: + type: + - string + - "null" + identity_uuid: + type: + - string + - "null" + integrations: + type: + - object + - "null" + language: + type: + - string + - "null" + last_name: + type: + - string + - "null" + links: + type: + - object + - "null" + properties: + me: + type: + - string + - "null" + roles: + type: + - string + - "null" + permissions: + type: + - object + - "null" + properties: + YpZK5G: + type: + - object + - "null" + properties: + BankReconciliation.access: + type: + - boolean + - "null" + BetaHeliosAsyncExpenses.access: + type: + - boolean + - "null" + accountant_partner.limit: + type: + - number + - "null" + accounting_reports_v2_general_ledger.access: + type: + - boolean + - "null" + accounts_payable.access: + type: + - boolean + - "null" + accounts_payable_beta.access: + type: + - boolean + - "null" + accounts_payable_reports.access: + type: + - boolean + - "null" + acss_direct_debit.access: + type: + - boolean + - "null" + advanced_accounting.access: + type: + - boolean + - "null" + andromeda_manual_mileage_tracking.access: + type: + - boolean + - "null" + andromeda_mileage_tracker.dev.access: + type: + - boolean + - "null" + attachments.access: + type: + - boolean + - "null" + audit_log.access: + type: + - boolean + - "null" + audit_log_backend.access: + type: + - boolean + - "null" + audit_log_expense.access: + type: + - boolean + - "null" + auto_bank_import.access: + type: + - boolean + - "null" + bacs_direct_debit.access: + type: + - boolean + - "null" + bacs_direct_debit_mandate.access: + type: + - boolean + - "null" + bacs_fee_cap.limit: + type: + - number + - "null" + bank_import_failure_notifications.access: + type: + - boolean + - "null" + bank_rec_smart_match.access: + type: + - boolean + - "null" + beta_mobile_create_expense_subcategory.access: + type: + - boolean + - "null" + bill_payment_reconciliation.access: + type: + - boolean + - "null" + business_accountant.limit: + type: + - number + - "null" + cardapp_new_payment_methods.access: + type: + - boolean + - "null" + client.limit: + type: + - number + - "null" + core_data_from_es.access: + type: + - boolean + - "null" + credit_notes_payment_method.access: + type: + - boolean + - "null" + credit_reconciliation.access: + type: + - boolean + - "null" + customizable_dashboard.access: + type: + - boolean + - "null" + display_credits_plan_summary.access: + type: + - boolean + - "null" + documents_ocr.access: + type: + - boolean + - "null" + documents_ocr_bill.access: + type: + - boolean + - "null" + documents_ocr_bill_complete.access: + type: + - boolean + - "null" + documents_ocr_bill_plan.access: + type: + - boolean + - "null" + documents_ocr_complete_plan.access: + type: + - boolean + - "null" + documents_ocr_match_expenses.access: + type: + - boolean + - "null" + documents_ocr_plan.access: + type: + - boolean + - "null" + email_verification_with_code_page.access: + type: + - boolean + - "null" + emails_page.access: + type: + - boolean + - "null" + embedded_payroll.access: + type: + - boolean + - "null" + embedded_payroll_journal_entries.access: + type: + - boolean + - "null" + enhanced_project_client_typeahead.access: + type: + - boolean + - "null" + es_migrations.access: + type: + - boolean + - "null" + estimate_convert_to_project.access: + type: + - boolean + - "null" + fiscal_year.access: + type: + - boolean + - "null" + flexcoa_advanced_accounting.access: + type: + - boolean + - "null" + flexcoa_beta_rollout.access: + type: + - boolean + - "null" + flexible_chart_of_accounts.access: + type: + - boolean + - "null" + helios_bulk_actions_invoices.beta.access: + type: + - boolean + - "null" + helios_company_taxes.beta.access: + type: + - boolean + - "null" + helios_dashboard.access: + type: + - boolean + - "null" + helios_expense_rebilling.beta.access: + type: + - boolean + - "null" + helios_invoice_archive.beta.access: + type: + - boolean + - "null" + helios_late_fee_reminder.beta.access: + type: + - boolean + - "null" + helios_manual_mileage_tracking.access: + type: + - boolean + - "null" + helios_push_resource_to_use_execute.beta.access: + type: + - boolean + - "null" + helios_pushnotifications.beta.access: + type: + - boolean + - "null" + helios_rebill_time.access: + type: + - boolean + - "null" + helios_remote_search.beta.access: + type: + - boolean + - "null" + helios_stripe_virtual_terminal.beta.access: + type: + - boolean + - "null" + helios_sync_throttle.beta.access: + type: + - boolean + - "null" + helios_virtual_terminal.beta.access: + type: + - boolean + - "null" + helios_virtual_terminal_advertising.beta.access: + type: + - boolean + - "null" + helios_virtual_terminal_tutorial.beta.access: + type: + - boolean + - "null" + historical_payroll_minimum.access: + type: + - boolean + - "null" + improved_bank_transfer_education_for_clients.access: + type: + - boolean + - "null" + invoice_pdf_email.access: + type: + - boolean + - "null" + ios_beta_payment_schedules.access: + type: + - boolean + - "null" + ios_beta_zendesk_widget.access: + type: + - boolean + - "null" + latest_released_api_version.access: + type: + - boolean + - "null" + launchpad_cards_version.access: + type: + - boolean + - "null" + launchpad_cards_version_with_personalization.access: + type: + - boolean + - "null" + limit_add_businesses.access: + type: + - boolean + - "null" + manual_journal_entries_feature.access: + type: + - boolean + - "null" + metapane_payment_methods_improvement.access: + type: + - boolean + - "null" + mobile_receipt_rebilling.access: + type: + - boolean + - "null" + modern_friendbuy.access: + type: + - boolean + - "null" + mtd_enhancements.access: + type: + - boolean + - "null" + new_payments_page: + type: + - boolean + - "null" + new_setup_quiz.access: + type: + - boolean + - "null" + no_seat_employee.access: + type: + - boolean + - "null" + opus_items_services_page.access: + type: + - boolean + - "null" + opus_my_team_page.access: + type: + - boolean + - "null" + outstanding_invoices_summary.access: + type: + - boolean + - "null" + partial_payments.access: + type: + - boolean + - "null" + payment_links.access: + type: + - boolean + - "null" + payments_withdrawal_report.access: + type: + - boolean + - "null" + paypal_gateway.access: + type: + - boolean + - "null" + paypal_tiered_pricing.access: + type: + - boolean + - "null" + payroll_notifications.access: + type: + - boolean + - "null" + payroll_user_invite.access: + type: + - boolean + - "null" + plaid_integration.access: + type: + - boolean + - "null" + premium_contractor_role.access: + type: + - boolean + - "null" + project_line_items.access: + type: + - boolean + - "null" + project_profitability.access: + type: + - boolean + - "null" + project_service_estimates.access: + type: + - boolean + - "null" + project_widget_updates.access: + type: + - boolean + - "null" + proposals_candidate.access: + type: + - boolean + - "null" + recurring_ach.access: + type: + - boolean + - "null" + recurring_paypal.access: + type: + - boolean + - "null" + recurring_revenue_monarch_updates.access: + type: + - boolean + - "null" + refunds.access: + type: + - boolean + - "null" + retained_earnings.access: + type: + - boolean + - "null" + retainers.limit: + type: + - number + - "null" + retainers_feature.access: + type: + - boolean + - "null" + rich_proposals.access: + type: + - boolean + - "null" + rounded_time_tracking.access: + type: + - boolean + - "null" + sales_managed_receipt.access: + type: + - boolean + - "null" + saltedge_integration.access: + type: + - boolean + - "null" + save_emails.access: + type: + - boolean + - "null" + scopes_ui_phase1.access: + type: + - boolean + - "null" + sepa_direct_debit.access: + type: + - boolean + - "null" + sepa_direct_debit_mandate.access: + type: + - boolean + - "null" + sepa_fee_cap.limit: + type: + - number + - "null" + solvvy_support_chat.access: + type: + - boolean + - "null" + staff.limit: + type: + - number + - "null" + stripe_ach.access: + type: + - boolean + - "null" + stripe_advanced_payments.access: + type: + - boolean + - "null" + stripe_payments_intent.access: + type: + - boolean + - "null" + stripe_unified_account.access: + type: + - boolean + - "null" + team_members.access: + type: + - boolean + - "null" + team_utilization_report.access: + type: + - boolean + - "null" + ted_report_refactor.access: + type: + - boolean + - "null" + time_entry_billed_amount.access: + type: + - boolean + - "null" + time_zone_enhancement.access: + type: + - boolean + - "null" + wepay_kyc_redirect.access: + type: + - boolean + - "null" + yodlee_fastlink_upgrade.access: + type: + - boolean + - "null" + phone_numbers: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + title: + type: + - string + - "null" + profile: + type: + - object + - "null" + properties: + first_name: + type: + - string + - "null" + has_password: + type: + - boolean + - "null" + is_email_confirmed: + type: + - boolean + - "null" + last_name: + type: + - string + - "null" + professions: + type: + - array + - "null" + setup_complete: + type: + - boolean + - "null" + time_format: + type: + - number + - "null" + timezone: + type: + - string + - "null" + roles: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + accountid: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: + - number + - "null" + links: + type: + - object + - "null" + properties: + destroy: + type: + - string + - "null" + role: + type: + - string + - "null" + systemid: + type: + - number + - "null" + userid: + type: + - number + - "null" + setup_complete: + type: + - boolean + - "null" + subscription_statuses: + type: + - object + - "null" + properties: + YpZK5G: + type: + - string + - "null" + timezone: + type: + - string + - "null" + clients: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accounting_systemid: + type: + - string + - "null" + allow_email_include_pdf: + type: + - boolean + - "null" + allow_late_fees: + type: + - boolean + - "null" + allow_late_notifications: + type: + - boolean + - "null" + bus_phone: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + email: + type: + - string + - "null" + exceeds_client_limit: + type: + - number + - "null" + fax: + type: + - string + - "null" + fname: + type: + - string + - "null" + id: + type: + - number + - "null" + language: + type: + - string + - "null" + level: + type: + - number + - "null" + lname: + type: + - string + - "null" + mob_phone: + type: + - string + - "null" + notified: + type: + - boolean + - "null" + num_logins: + type: + - number + - "null" + organization: + type: + - string + - "null" + p_city: + type: + - string + - "null" + p_code: + type: + - string + - "null" + p_country: + type: + - string + - "null" + p_province: + type: + - string + - "null" + p_street: + type: + - string + - "null" + p_street2: + type: + - string + - "null" + pref_email: + type: + - boolean + - "null" + pref_gmail: + type: + - boolean + - "null" + role: + type: + - string + - "null" + s_city: + type: + - string + - "null" + s_code: + type: + - string + - "null" + s_country: + type: + - string + - "null" + s_province: + type: + - string + - "null" + s_street: + type: + - string + - "null" + s_street2: + type: + - string + - "null" + signup_date: + type: + - string + - "null" + updated: + type: + - string + - "null" + userid: + type: + - number + - "null" + username: + type: + - string + - "null" + uuid: + type: + - string + - "null" + vis_state: + type: + - number + - "null" + invoices: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} + expenses: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + version: + type: + - string + - "null" + account_name: + type: + - string + - "null" + accounting_systemid: + type: + - string + - "null" + amount: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + bank_name: + type: + - string + - "null" + bill_matches: + type: + - array + - "null" + billable: + type: + - boolean + - "null" + categoryid: + type: + - number + - "null" + clientid: + type: + - number + - "null" + compounded_tax: + type: + - boolean + - "null" + date: + type: + - string + - "null" + expenseid: + type: number + ext_invoiceid: + type: + - number + - "null" + ext_systemid: + type: + - number + - "null" + from_bulk_import: + type: + - boolean + - "null" + has_receipt: + type: + - boolean + - "null" + id: + type: number + include_receipt: + type: + - boolean + - "null" + is_cogs: + type: + - boolean + - "null" + isduplicate: + type: + - boolean + - "null" + markup_percent: + type: + - string + - "null" + notes: + type: + - string + - "null" + potential_bill_payment: + type: + - boolean + - "null" + projectid: + type: + - number + - "null" + staffid: + type: + - number + - "null" + status: + type: + - number + - "null" + updated: + type: + - string + - "null" + vis_state: + type: + - number + - "null" + required: + - id + - expenseid + expense_summaries: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + amounts: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + count: + type: + - number + - "null" + counts: + type: + - number + - "null" + id: + type: + - string + - "null" + expense_categories: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + category: + type: + - string + - "null" + categoryid: + type: + - number + - "null" + created_at: + type: + - string + - "null" + id: + type: number + is_cogs: + type: + - boolean + - "null" + is_editable: + type: + - boolean + - "null" + parentid: + type: + - number + - "null" + transaction_posted: + type: + - boolean + - "null" + updated_at: + type: + - string + - "null" + vis_state: + type: + - number + - "null" + required: + - id + invoice_details: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + create_date: + type: + - string + - "null" + currency_code: + type: + - string + - "null" + discount_total: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + due_offset_days: + type: + - number + - "null" + invoice_number: + type: + - string + - "null" + invoiceid: + type: number + lines: + type: + - array + - "null" + outstanding: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + paid: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + subtotal: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + tax: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + tax_summaries: + type: + - array + - "null" + total: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + v3_status: + type: + - string + - "null" + required: + - invoiceid + expense_details: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + account_name: + type: + - string + - "null" + amount: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + authorid: + type: + - string + - "null" + categoryid: + type: + - string + - "null" + clientid: + type: + - string + - "null" + date: + type: + - string + - "null" + expenseid: + type: number + imported_from_csv: + type: + - boolean + - "null" + is_cogs: + type: + - boolean + - "null" + notes: + type: + - string + - "null" + taxAmount1: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + taxAmount2: + type: + - object + - "null" + properties: + amount: + type: + - string + - "null" + code: + type: + - string + - "null" + vendor: + type: + - string + - "null" + vendorid: + type: + - string + - "null" + required: + - expenseid + accounts: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + data: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + description: + type: + - string + - "null" + auto_created: + type: + - boolean + - "null" + name: + type: + - string + - "null" + number: + type: + - string + - "null" + parent_account: + type: + - string + - "null" + state: + type: + - string + - "null" + sub_accounts: + type: + - array + - "null" + items: + type: + - string + - "null" + sub_type: + type: + - string + - "null" + system_account_name: + type: + - string + - "null" + updated_at: + type: + - string + - "null" + uuid: + type: + - string + - "null" + taxes: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + accounting_systemid: + type: + - string + - "null" + amount: + type: + - string + - "null" + compound: + type: + - boolean + - "null" + id: + type: + - number + - "null" + name: + type: + - string + - "null" + taxid: + type: number + updated: + type: + - string + - "null" + required: + - taxid diff --git a/airbyte-integrations/connectors/source-freshbooks/metadata.yaml b/airbyte-integrations/connectors/source-freshbooks/metadata.yaml new file mode 100644 index 000000000000..f5ac14178c6d --- /dev/null +++ b/airbyte-integrations/connectors/source-freshbooks/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.freshbooks.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-freshbooks + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.16.0@sha256:6800f806944ee4fccf24ae01f6b8fbefb12d952c3b3da338f51f732b55de51f2 + connectorSubtype: api + connectorType: source + definitionId: e1e86c88-fdd6-41d3-9516-3564021a1902 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-freshbooks + githubIssueLabel: source-freshbooks + icon: icon.svg + license: MIT + name: FreshBooks + releaseDate: 2024-10-27 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/freshbooks + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/freshbooks.md b/docs/integrations/sources/freshbooks.md new file mode 100644 index 000000000000..6ff67f97ab87 --- /dev/null +++ b/docs/integrations/sources/freshbooks.md @@ -0,0 +1,42 @@ +# FreshBooks +FreshBooks connector seamlessly syncs invoicing, expenses, and client data from FreshBooks into data warehouses or analytics platforms. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `client_id` | `string` | Client ID. | | +| `client_secret` | `string` | Client secret. | | +| `redirect_uri` | `string` | Redirect Uri. | | +| `account_id` | `string` | Account Id. | | +| `client_refresh_token` | `string` | Refresh token. | | +| `oauth_access_token` | `string` | Access token. The current access token. This field might be overridden by the connector based on the token refresh endpoint response. | | +| `oauth_token_expiry_date` | `string` | Token expiry date. The date the current access token expires in. This field might be overridden by the connector based on the token refresh endpoint response. | | +| `business_uuid` | `string` | Business uuid. | | + +Read [this](https://documenter.getpostman.com/view/3322108/S1ERwwza#intro) section carefully to get your Account Id and Business UUID. + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| user | | DefaultPaginator | ✅ | ❌ | +| clients | | DefaultPaginator | ✅ | ❌ | +| invoices | id.invoiceid | DefaultPaginator | ✅ | ❌ | +| expenses | id.expenseid | DefaultPaginator | ✅ | ❌ | +| expense_summaries | | DefaultPaginator | ✅ | ❌ | +| expense_categories | id | DefaultPaginator | ✅ | ❌ | +| invoice_details | invoiceid | DefaultPaginator | ✅ | ❌ | +| expense_details | expenseid | DefaultPaginator | ✅ | ❌ | +| accounts | | DefaultPaginator | ✅ | ❌ | +| taxes | taxid | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-27 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From db95f7a6afd900e86576b453be4f67aa3761f505 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Thu, 7 Nov 2024 18:25:34 +0530 Subject: [PATCH 780/808] source-zoho-analytics-metadata-api contribution from bishalbera (#48397) Co-authored-by: Marcos Marx --- .../README.md | 33 + .../acceptance-test-config.yml | 17 + .../icon.svg | 323 +++++++++ .../manifest.yaml | 654 ++++++++++++++++++ .../metadata.yaml | 35 + .../sources/zoho-analytics-metadata-api.md | 35 + 6 files changed, 1097 insertions(+) create mode 100644 airbyte-integrations/connectors/source-zoho-analytics-metadata-api/README.md create mode 100644 airbyte-integrations/connectors/source-zoho-analytics-metadata-api/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-zoho-analytics-metadata-api/icon.svg create mode 100644 airbyte-integrations/connectors/source-zoho-analytics-metadata-api/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-zoho-analytics-metadata-api/metadata.yaml create mode 100644 docs/integrations/sources/zoho-analytics-metadata-api.md diff --git a/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/README.md b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/README.md new file mode 100644 index 000000000000..bf7320e7e53e --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/README.md @@ -0,0 +1,33 @@ +# Zoho Analytics metadata api +This directory contains the manifest-only connector for `source-zoho-analytics-metadata-api`. + +Zoho Analytics Metadata api connector enables seamless data syncing from Zoho Analytics metadata into data warehouses or BI tools. This connector automates OAuth authentication and ensures reliable data transfer, empowering businesses to streamline analytics workflows and gain deeper insights efficiently. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-zoho-analytics-metadata-api:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-zoho-analytics-metadata-api build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-zoho-analytics-metadata-api test +``` + diff --git a/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/acceptance-test-config.yml b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/acceptance-test-config.yml new file mode 100644 index 000000000000..346c79194115 --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-zoho-analytics-metadata-api:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/icon.svg b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/icon.svg new file mode 100644 index 000000000000..45638ae4a8ff --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/icon.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/manifest.yaml b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/manifest.yaml new file mode 100644 index 000000000000..9e25c0756a4a --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/manifest.yaml @@ -0,0 +1,654 @@ +version: 6.1.0 + +type: DeclarativeSource + +description: >- + Zoho Analytics Metadata api connector enables seamless data syncing from Zoho + Analytics metadata into data warehouses or BI tools. This connector automates + OAuth authentication and ensures reliable data transfer, empowering businesses + to streamline analytics workflows and gain deeper insights efficiently. + +check: + type: CheckStream + stream_names: + - users + +definitions: + streams: + users: + type: DeclarativeStream + name: users + primary_key: + - emailId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /restapi/v2/users + http_method: GET + request_headers: + ZANALYTICS-ORGID: "{{ config['org_id'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - users + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/users" + workspaces: + type: DeclarativeStream + name: workspaces + primary_key: + - workspaceId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /restapi/v2/workspaces + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - ownedWorkspaces + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/workspaces" + organizations: + type: DeclarativeStream + name: organizations + primary_key: + - orgId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /restapi/v2/orgs + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - orgs + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/organizations" + views: + type: DeclarativeStream + name: views + primary_key: + - viewId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /restapi/v2/workspaces/{{ stream_partition.workspace }}/views + http_method: GET + request_headers: + ZANALYTICS-ORGID: "{{ config[\"org_id\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - views + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: workspaceId + partition_field: workspace + stream: + $ref: "#/definitions/streams/workspaces" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/views" + dashboards: + type: DeclarativeStream + name: dashboards + primary_key: + - viewId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /restapi/v2/dashboards + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - ownedViews + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/dashboards" + trash: + type: DeclarativeStream + name: trash + primary_key: + - viewId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /restapi/v2/workspaces/{{ stream_partition.workspace }}/trash + http_method: GET + request_headers: + ZANALYTICS-ORGID: "{{ config[\"org_id\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - views + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: workspaceId + partition_field: workspace + stream: + $ref: "#/definitions/streams/workspaces" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/trash" + workspace_users: + type: DeclarativeStream + name: workspace_users + primary_key: + - emailId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /restapi/v2/workspaces/{{ stream_partition.workspace }}/users + http_method: GET + request_headers: + ZANALYTICS-ORGID: "{{ config[\"org_id\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - users + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: workspaceId + partition_field: workspace + stream: + $ref: "#/definitions/streams/workspaces" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/workspace_users" + folders: + type: DeclarativeStream + name: folders + primary_key: + - folderId + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /restapi/v2/workspaces/{{ stream_partition.workspace }}/folders + http_method: GET + request_headers: + ZANALYTICS-ORGID: "{{ config[\"org_id\"] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + - folders + partition_router: + type: SubstreamPartitionRouter + parent_stream_configs: + - type: ParentStreamConfig + parent_key: workspaceId + partition_field: workspace + stream: + $ref: "#/definitions/streams/workspaces" + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/folders" + base_requester: + type: HttpRequester + url_base: https://analyticsapi.zoho.{{ config["data_center"] }} + authenticator: + type: OAuthAuthenticator + client_id: "{{ config[\"client_id\"] }}" + grant_type: refresh_token + client_secret: "{{ config[\"client_secret\"] }}" + refresh_token: "{{ config[\"refresh_token\"] }}" + expires_in_name: expires_in + access_token_name: access_token + refresh_request_body: {} + token_refresh_endpoint: https://accounts.zoho.{{ config["data_center"] }}/oauth/v2/token + +streams: + - $ref: "#/definitions/streams/users" + - $ref: "#/definitions/streams/workspaces" + - $ref: "#/definitions/streams/organizations" + - $ref: "#/definitions/streams/views" + - $ref: "#/definitions/streams/dashboards" + - $ref: "#/definitions/streams/trash" + - $ref: "#/definitions/streams/workspace_users" + - $ref: "#/definitions/streams/folders" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - client_id + - client_secret + - refresh_token + - data_center + - org_id + properties: + client_id: + type: string + name: client_id + order: 0 + title: OAuth Client ID + airbyte_secret: true + client_secret: + type: string + name: client_secret + order: 1 + title: OAuth Client Secret + airbyte_secret: true + refresh_token: + type: string + name: refresh_token + order: 2 + title: OAuth Refresh Token + airbyte_secret: true + data_center: + type: string + enum: + - com + - eu + - in + - com.au + - com.cn + - jp + order: 3 + title: Data Center + default: com + org_id: + type: number + order: 4 + title: Org Id + additionalProperties: true + +metadata: + autoImportSchema: + users: true + workspaces: true + organizations: true + views: true + dashboards: true + trash: true + workspace_users: true + folders: true + testedStreams: + users: + hasRecords: true + streamHash: 30b9674113495c708b88b03206126e121d54637b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + workspaces: + hasRecords: true + streamHash: 412f2d3ff4d56ea7401a905def908c42a0ee450a + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + organizations: + hasRecords: true + streamHash: fe29c6780e8b266bbe44d9feb13a6f0d486b425c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + views: + hasRecords: true + streamHash: 32af56a385b314e6e5c9238a605b9d0c2ad7f8b0 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + dashboards: + hasRecords: true + streamHash: e13cb711a5f8a91eb42ac3f163d5a9c39f164346 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + trash: + hasRecords: true + streamHash: 0d8d1ecf9c0edad58d67d0a255234ee38278eb6c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + workspace_users: + hasRecords: true + streamHash: dc51d9f2fc5b699cf7dad3a46a5396d85cca9d5c + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + folders: + hasRecords: true + streamHash: 2c74239bed086e4cd23916c4f5f450df3215db18 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + assist: + docsUrl: https://www.zoho.com/analytics/api/v2/introduction.html + +schemas: + users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + emailId: + type: string + role: + type: + - string + - "null" + status: + type: + - boolean + - "null" + required: + - emailId + workspaces: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + createdBy: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + isDefault: + type: + - boolean + - "null" + orgId: + type: + - string + - "null" + workspaceDesc: + type: + - string + - "null" + workspaceId: + type: string + workspaceName: + type: + - string + - "null" + required: + - workspaceId + organizations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + createdBy: + type: + - string + - "null" + createdByZuId: + type: + - string + - "null" + isDefault: + type: + - boolean + - "null" + numberOfWorkspaces: + type: + - number + - "null" + orgDesc: + type: + - string + - "null" + orgId: + type: string + orgName: + type: + - string + - "null" + planName: + type: + - string + - "null" + role: + type: + - string + - "null" + required: + - orgId + views: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + createdBy: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + folderId: + type: + - string + - "null" + isFavorite: + type: + - boolean + - "null" + lastModifiedBy: + type: + - string + - "null" + lastModifiedTime: + type: + - string + - "null" + parentViewId: + type: + - string + - "null" + sharedBy: + type: + - string + - "null" + viewDesc: + type: + - string + - "null" + viewId: + type: string + viewName: + type: + - string + - "null" + viewType: + type: + - string + - "null" + required: + - viewId + dashboards: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + createdBy: + type: + - string + - "null" + createdTime: + type: + - string + - "null" + folderId: + type: + - string + - "null" + isFavorite: + type: + - boolean + - "null" + lastModifiedBy: + type: + - string + - "null" + lastModifiedTime: + type: + - string + - "null" + orgId: + type: + - string + - "null" + parentViewId: + type: + - string + - "null" + sharedBy: + type: + - string + - "null" + viewDesc: + type: + - string + - "null" + viewId: + type: string + viewName: + type: + - string + - "null" + viewType: + type: + - string + - "null" + workspaceId: + type: + - string + - "null" + required: + - viewId + trash: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + deletedBy: + type: + - string + - "null" + deletedTime: + type: + - string + - "null" + viewId: + type: string + viewName: + type: + - string + - "null" + viewType: + type: + - string + - "null" + required: + - viewId + workspace_users: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + emailId: + type: string + role: + type: + - string + - "null" + status: + type: + - boolean + - "null" + required: + - emailId + folders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + folderDesc: + type: + - string + - "null" + folderId: + type: string + folderIndex: + type: + - number + - "null" + folderName: + type: + - string + - "null" + isDefault: + type: + - boolean + - "null" + parentFolderId: + type: + - string + - "null" + required: + - folderId diff --git a/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/metadata.yaml b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/metadata.yaml new file mode 100644 index 000000000000..0f3c6a87ffcb --- /dev/null +++ b/airbyte-integrations/connectors/source-zoho-analytics-metadata-api/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "analyticsapi.zoho." + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-zoho-analytics-metadata-api + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:6.2.1@sha256:641f18edae53820aa91de6c828d1318ec5da22dc2a9f407cc8b6b75cc4e96569 + connectorSubtype: api + connectorType: source + definitionId: 63114ebf-1c0e-4e6e-bb93-28ae03332b14 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-zoho-analytics-metadata-api + githubIssueLabel: source-zoho-analytics-metadata-api + icon: icon.svg + license: MIT + name: Zoho Analytics metadata api + releaseDate: 2024-11-07 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/zoho-analytics-metadata-api + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/zoho-analytics-metadata-api.md b/docs/integrations/sources/zoho-analytics-metadata-api.md new file mode 100644 index 000000000000..cc7f78228baf --- /dev/null +++ b/docs/integrations/sources/zoho-analytics-metadata-api.md @@ -0,0 +1,35 @@ +# Zoho Analytics Metadata API +Zoho Analytics Metadata api connector enables seamless data syncing from Zoho Analytics metadata into data warehouses or BI tools. This connector automates OAuth authentication and ensures reliable data transfer, empowering businesses to streamline analytics workflows and gain deeper insights efficiently. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `org_id` | `number` | Org Id. | | +| `data_center` | `string` | Data Center. | `com` | +| `client_id` | `string` | OAuth Client ID. | | +| `client_secret` | `string` | OAuth Client Secret. | | +| `refresh_token` | `string` | OAuth Refresh Token. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| users | emailId | No pagination | ✅ | ❌ | +| workspaces | workspaceId | No pagination | ✅ | ❌ | +| organizations | orgId | No pagination | ✅ | ❌ | +| views | viewId | No pagination | ✅ | ❌ | +| dashboards | viewId | No pagination | ✅ | ❌ | +| trash | viewId | No pagination | ✅ | ❌ | +| workspace_users | emailId | No pagination | ✅ | ❌ | +| folders | folderId | No pagination | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-11-07 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From 29b212b56c7fdeff1ed72a3f90b1b6424cbf5979 Mon Sep 17 00:00:00 2001 From: Aazam Thakur <59562284+aazam-gh@users.noreply.github.com> Date: Thu, 7 Nov 2024 19:04:38 +0530 Subject: [PATCH 781/808] source-cloudbeds contribution from aazam-gh (#48044) Co-authored-by: Marcos Marx --- .../connectors/source-cloudbeds/README.md | 39 + .../acceptance-test-config.yml | 17 + .../connectors/source-cloudbeds/icon.svg | 16 + .../connectors/source-cloudbeds/manifest.yaml | 703 ++++++++++++++++++ .../connectors/source-cloudbeds/metadata.yaml | 35 + docs/integrations/sources/cloudbeds.md | 35 + 6 files changed, 845 insertions(+) create mode 100644 airbyte-integrations/connectors/source-cloudbeds/README.md create mode 100644 airbyte-integrations/connectors/source-cloudbeds/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-cloudbeds/icon.svg create mode 100644 airbyte-integrations/connectors/source-cloudbeds/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-cloudbeds/metadata.yaml create mode 100644 docs/integrations/sources/cloudbeds.md diff --git a/airbyte-integrations/connectors/source-cloudbeds/README.md b/airbyte-integrations/connectors/source-cloudbeds/README.md new file mode 100644 index 000000000000..95850dce43f8 --- /dev/null +++ b/airbyte-integrations/connectors/source-cloudbeds/README.md @@ -0,0 +1,39 @@ +# Cloudbeds +This directory contains the manifest-only connector for `source-cloudbeds`. + +This is Cloudbeds source that ingests data from the Cloudbeds API. + +Cloudbeds is an unified hospitality platform https://cloudbeds.com + +In order to use this source, you must first create a cloudbeds account. Once logged in, navigate to the API credentials page for your property by clicking Account > Apps & Marketplace in the upper right corner. Use the menu on the top to navigate to the API Credentials Page. Click the New Credentials button, fill in the details and click on Create. This will create an application, then click on the API Key and provide all the required scopes as needed. + +You can learn more about the API here https://hotels.cloudbeds.com/api/v1.2/docs/ + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-cloudbeds:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-cloudbeds build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-cloudbeds test +``` + diff --git a/airbyte-integrations/connectors/source-cloudbeds/acceptance-test-config.yml b/airbyte-integrations/connectors/source-cloudbeds/acceptance-test-config.yml new file mode 100644 index 000000000000..5a07e461b1e8 --- /dev/null +++ b/airbyte-integrations/connectors/source-cloudbeds/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-cloudbeds:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-cloudbeds/icon.svg b/airbyte-integrations/connectors/source-cloudbeds/icon.svg new file mode 100644 index 000000000000..f35ae0ef7cdb --- /dev/null +++ b/airbyte-integrations/connectors/source-cloudbeds/icon.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-cloudbeds/manifest.yaml b/airbyte-integrations/connectors/source-cloudbeds/manifest.yaml new file mode 100644 index 000000000000..e92303143a2c --- /dev/null +++ b/airbyte-integrations/connectors/source-cloudbeds/manifest.yaml @@ -0,0 +1,703 @@ +version: 5.15.0 + +type: DeclarativeSource + +description: >- + This is Cloudbeds source that ingests data from the Cloudbeds API. + + + Cloudbeds is an unified hospitality platform https://cloudbeds.com + + + In order to use this source, you must first create a cloudbeds account. Once + logged in, navigate to the API credentials page for your property by clicking + Account > Apps & Marketplace in the upper right corner. Use the menu on the + top to navigate to the API Credentials Page. Click the New Credentials button, + fill in the details and click on Create. This will create an application, then + click on the API Key and provide all the required scopes as needed. + + + You can learn more about the API here + https://hotels.cloudbeds.com/api/v1.2/docs/ + +check: + type: CheckStream + stream_names: + - guests + +definitions: + streams: + guests: + type: DeclarativeStream + name: guests + primary_key: + - guestID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: getGuestList + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: pageNumber + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: pageSize + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/guests" + hotels: + type: DeclarativeStream + name: hotels + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: getHotels + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: pageNumber + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: pageSize + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/hotels" + rooms: + type: DeclarativeStream + name: rooms + primary_key: + - propertyID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: getRoomBlocks + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: pageNumber + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: pageSize + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/rooms" + reservations: + type: DeclarativeStream + name: reservations + primary_key: + - reservationID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: getReservations + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: pageNumber + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: pageSize + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/reservations" + transactions: + type: DeclarativeStream + name: transactions + primary_key: + - transactionID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: getTransactions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: pageNumber + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: pageSize + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/transactions" + packages: + type: DeclarativeStream + name: packages + primary_key: + - itemID + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: getItems + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - data + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: pageNumber + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: pageSize + pagination_strategy: + type: PageIncrement + start_from_page: 1 + page_size: 100 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/packages" + base_requester: + type: HttpRequester + url_base: https://api.cloudbeds.com/api/v1.2/ + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/guests" + - $ref: "#/definitions/streams/hotels" + - $ref: "#/definitions/streams/rooms" + - $ref: "#/definitions/streams/reservations" + - $ref: "#/definitions/streams/transactions" + - $ref: "#/definitions/streams/packages" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + properties: + api_key: + type: string + title: API Key + airbyte_secret: true + order: 0 + additionalProperties: true + +metadata: + autoImportSchema: + guests: true + hotels: true + rooms: true + reservations: true + transactions: true + packages: true + testedStreams: + guests: + streamHash: 8c3f802465858a6249b0a34501d4cc04c681e1b5 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + hotels: + streamHash: 6e6352cd896d02b30f29b21c2a21ef6d14c27dab + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + rooms: + streamHash: d1b2ac08b13a5b601839be16f3f343e4c84239c1 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + reservations: + streamHash: c318b9390d7f2ac48fc3bf923e6d350ff572000d + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + transactions: + streamHash: c8f35dae787999ae71131884c4fffa6dc51759fe + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + packages: + streamHash: 743c759bcb3abca3ad9c48675da1e955673d5642 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://hotels.cloudbeds.com/api/v1.2/docs/ + openapiSpecUrl: https://hotels.cloudbeds.com/api/v1.2/docs/cb-v1.2-openapi-3.0.1.yaml + +schemas: + guests: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + dateCreated: + type: + - string + - "null" + dateModified: + type: + - string + - "null" + guestEmail: + type: + - string + - "null" + guestID: + type: string + guestName: + type: + - string + - "null" + isAnonymized: + type: + - boolean + - "null" + isMainGuest: + type: + - boolean + - "null" + isMerged: + type: + - boolean + - "null" + newGuestID: + type: + - string + - "null" + propertyID: + type: + - string + - "null" + reservationID: + type: + - string + - "null" + required: + - guestID + hotels: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + organizationID: + type: + - string + - "null" + propertyCurrency: + type: + - object + - "null" + properties: + currencyCode: + type: + - string + - "null" + currencyPosition: + type: + - string + - "null" + currencySymbol: + type: + - string + - "null" + propertyDescription: + type: + - string + - "null" + propertyID: + type: + - string + - "null" + propertyImage: + type: + - string + - "null" + propertyName: + type: + - string + - "null" + propertyTimezone: + type: + - string + - "null" + rooms: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + propertyID: + type: string + roomBlocks: + type: + - array + - "null" + required: + - propertyID + reservations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + adults: + type: + - string + - "null" + balance: + type: + - number + - "null" + children: + type: + - string + - "null" + dateCreated: + type: + - string + - "null" + dateModified: + type: + - string + - "null" + endDate: + type: + - string + - "null" + guestID: + type: + - string + - "null" + guestName: + type: + - string + - "null" + origin: + type: + - string + - "null" + profileID: + type: + - string + - "null" + propertyID: + type: + - string + - "null" + reservationID: + type: string + sourceID: + type: + - string + - "null" + sourceName: + type: + - string + - "null" + startDate: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - reservationID + transactions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + amount: + type: + - number + - "null" + cardType: + type: + - string + - "null" + category: + type: + - string + - "null" + currency: + type: + - string + - "null" + guestCheckIn: + type: + - string + - "null" + guestCheckOut: + type: + - string + - "null" + guestID: + type: + - string + - "null" + guestName: + type: + - string + - "null" + isDeleted: + type: + - boolean + - "null" + itemCategoryName: + type: + - string + - "null" + notes: + type: + - string + - "null" + parentTransactionID: + type: + - string + - "null" + propertyID: + type: + - string + - "null" + propertyName: + type: + - string + - "null" + quantity: + type: + - string + - "null" + reservationID: + type: + - string + - "null" + roomName: + type: + - string + - "null" + roomTypeID: + type: + - string + - "null" + roomTypeName: + type: + - string + - "null" + subReservationID: + type: + - string + - "null" + transactionCategory: + type: + - string + - "null" + transactionCode: + type: + - string + - "null" + transactionDateTime: + type: + - string + - "null" + transactionDateTimeUTC: + type: + - string + - "null" + transactionID: + type: string + transactionModifiedDateTime: + type: + - string + - "null" + transactionModifiedDateTimeUTC: + type: + - string + - "null" + transactionType: + type: + - string + - "null" + userName: + type: + - string + - "null" + required: + - transactionID + packages: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + categoryName: + type: + - string + - "null" + fees: + type: + - array + - "null" + grandTotal: + type: + - number + - "null" + itemCode: + type: + - string + - "null" + itemID: + type: string + itemType: + type: + - string + - "null" + name: + type: + - string + - "null" + price: + type: + - number + - "null" + priceWithoutFeesAndTaxes: + type: + - number + - "null" + sku: + type: + - string + - "null" + stockInventory: + type: + - boolean + - "null" + taxes: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + taxName: + type: + - string + - "null" + taxValue: + type: + - number + - "null" + totalFees: + type: + - number + - "null" + totalTaxes: + type: + - number + - "null" + required: + - itemID diff --git a/airbyte-integrations/connectors/source-cloudbeds/metadata.yaml b/airbyte-integrations/connectors/source-cloudbeds/metadata.yaml new file mode 100644 index 000000000000..ca89d07d4a8a --- /dev/null +++ b/airbyte-integrations/connectors/source-cloudbeds/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "api.cloudbeds.com" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-cloudbeds + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + connectorSubtype: api + connectorType: source + definitionId: 021d2bd7-40de-43b8-8a93-21e8b731eceb + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-cloudbeds + githubIssueLabel: source-cloudbeds + icon: icon.svg + license: MIT + name: Cloudbeds + releaseDate: 2024-10-31 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/cloudbeds + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/cloudbeds.md b/docs/integrations/sources/cloudbeds.md new file mode 100644 index 000000000000..738b3a53ceec --- /dev/null +++ b/docs/integrations/sources/cloudbeds.md @@ -0,0 +1,35 @@ +# Cloudbeds +This is Cloudbeds source that ingests data from the Cloudbeds API. + +Cloudbeds is an unified hospitality platform https://cloudbeds.com + +In order to use this source, you must first create a cloudbeds account. Once logged in, navigate to the API credentials page for your property by clicking Account > Apps & Marketplace in the upper right corner. Use the menu on the top to navigate to the API Credentials Page. Click the New Credentials button, fill in the details and click on Create. This will create an application, then click on the API Key and provide all the required scopes as needed. + +You can learn more about the API here https://hotels.cloudbeds.com/api/v1.2/docs/ + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| guests | guestID | DefaultPaginator | ✅ | ❌ | +| hotels | | DefaultPaginator | ✅ | ❌ | +| rooms | propertyID | DefaultPaginator | ✅ | ❌ | +| reservations | reservationID | DefaultPaginator | ✅ | ❌ | +| transactions | transactionID | DefaultPaginator | ✅ | ❌ | +| packages | itemID | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-31 | | Initial release by [@aazam-gh](https://github.com/aazam-gh) via Connector Builder | + +
From 2e5e5d43e5af53f827195ecbb45258eefc1c3b46 Mon Sep 17 00:00:00 2001 From: Biplab Bera <123734227+bishalbera@users.noreply.github.com> Date: Thu, 7 Nov 2024 20:25:13 +0530 Subject: [PATCH 782/808] source-tremendous contribution from bishalbera (#47860) Co-authored-by: Marcos Marx --- .../connectors/source-tremendous/README.md | 33 + .../acceptance-test-config.yml | 17 + .../connectors/source-tremendous/icon.svg | 276 +++++ .../source-tremendous/manifest.yaml | 954 ++++++++++++++++++ .../source-tremendous/metadata.yaml | 35 + docs/integrations/sources/tremendous.md | 34 + 6 files changed, 1349 insertions(+) create mode 100644 airbyte-integrations/connectors/source-tremendous/README.md create mode 100644 airbyte-integrations/connectors/source-tremendous/acceptance-test-config.yml create mode 100644 airbyte-integrations/connectors/source-tremendous/icon.svg create mode 100644 airbyte-integrations/connectors/source-tremendous/manifest.yaml create mode 100644 airbyte-integrations/connectors/source-tremendous/metadata.yaml create mode 100644 docs/integrations/sources/tremendous.md diff --git a/airbyte-integrations/connectors/source-tremendous/README.md b/airbyte-integrations/connectors/source-tremendous/README.md new file mode 100644 index 000000000000..5185190f0fe9 --- /dev/null +++ b/airbyte-integrations/connectors/source-tremendous/README.md @@ -0,0 +1,33 @@ +# Tremendous +This directory contains the manifest-only connector for `source-tremendous`. + +Tremendous connector enables seamless integration with Tremendous API. This connector allows organizations to automate and sync reward, incentive, and payout data, tapping into 2000+ payout methods, including ACH, gift cards, PayPal, and prepaid cards, all from a single platform. + +## Usage +There are multiple ways to use this connector: +- You can use this connector as any other connector in Airbyte Marketplace. +- You can load this connector in `pyairbyte` using `get_source`! +- You can open this connector in Connector Builder, edit it, and publish to your workspaces. + +Please refer to the manifest-only connector documentation for more details. + +## Local Development +We recommend you use the Connector Builder to edit this connector. + +But, if you want to develop this connector locally, you can use the following steps. + +### Environment Setup +You will need `airbyte-ci` installed. You can find the documentation [here](airbyte-ci). + +### Build +This will create a dev image (`source-tremendous:dev`) that you can use to test the connector locally. +```bash +airbyte-ci connectors --name=source-tremendous build +``` + +### Test +This will run the acceptance tests for the connector. +```bash +airbyte-ci connectors --name=source-tremendous test +``` + diff --git a/airbyte-integrations/connectors/source-tremendous/acceptance-test-config.yml b/airbyte-integrations/connectors/source-tremendous/acceptance-test-config.yml new file mode 100644 index 000000000000..ed2d47e4740e --- /dev/null +++ b/airbyte-integrations/connectors/source-tremendous/acceptance-test-config.yml @@ -0,0 +1,17 @@ +# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-tremendous:dev +acceptance_tests: + spec: + tests: + - spec_path: "manifest.yaml" + connection: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + discovery: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + basic_read: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + incremental: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" + full_refresh: + bypass_reason: "This is a builder contribution, and we do not have secrets at this time" diff --git a/airbyte-integrations/connectors/source-tremendous/icon.svg b/airbyte-integrations/connectors/source-tremendous/icon.svg new file mode 100644 index 000000000000..f1458bdd973e --- /dev/null +++ b/airbyte-integrations/connectors/source-tremendous/icon.svg @@ -0,0 +1,276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/airbyte-integrations/connectors/source-tremendous/manifest.yaml b/airbyte-integrations/connectors/source-tremendous/manifest.yaml new file mode 100644 index 000000000000..b54510f646a0 --- /dev/null +++ b/airbyte-integrations/connectors/source-tremendous/manifest.yaml @@ -0,0 +1,954 @@ +version: 5.17.0 + +type: DeclarativeSource + +description: >- + Tremendous connector enables seamless integration with Tremendous API. This + connector allows organizations to automate and sync reward, incentive, and + payout data, tapping into 2000+ payout methods, including ACH, gift cards, + PayPal, and prepaid cards, all from a single platform. + +check: + type: CheckStream + stream_names: + - orders + +definitions: + streams: + orders: + type: DeclarativeStream + name: orders + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/orders + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - orders + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/orders" + products: + type: DeclarativeStream + name: products + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/products + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - products + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/products" + funding_sources: + type: DeclarativeStream + name: funding_sources + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/funding_sources + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - funding_sources + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + page_size: 10 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/funding_sources" + account_members: + type: DeclarativeStream + name: account_members + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/members + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - members + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + page_size: 10 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/account_members" + campaigns: + type: DeclarativeStream + name: campaigns + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/campaigns + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - campaigns + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + page_size: 10 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/campaigns" + organizations: + type: DeclarativeStream + name: organizations + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/organizations + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - organizations + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + page_size: 10 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/organizations" + balance_transactions: + type: DeclarativeStream + name: balance_transactions + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/balance_transactions + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - transactions + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + page_size: 10 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/balance_transactions" + rewards: + type: DeclarativeStream + name: rewards + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/rewards + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - rewards + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + pagination_strategy: + type: OffsetIncrement + page_size: 10 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/rewards" + members: + type: DeclarativeStream + name: members + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/members + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - members + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/members" + invoices: + type: DeclarativeStream + name: invoices + primary_key: + - id + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /api/v2/invoices + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: + - invoices + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: offset + page_size_option: + type: RequestOption + field_name: limit + inject_into: request_parameter + pagination_strategy: + type: OffsetIncrement + page_size: 100 + inject_on_first_request: false + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/invoices" + base_requester: + type: HttpRequester + url_base: https://{{ config["environment"] }}.tremendous.com + authenticator: + type: BearerAuthenticator + api_token: "{{ config[\"api_key\"] }}" + +streams: + - $ref: "#/definitions/streams/orders" + - $ref: "#/definitions/streams/products" + - $ref: "#/definitions/streams/funding_sources" + - $ref: "#/definitions/streams/account_members" + - $ref: "#/definitions/streams/campaigns" + - $ref: "#/definitions/streams/organizations" + - $ref: "#/definitions/streams/balance_transactions" + - $ref: "#/definitions/streams/rewards" + - $ref: "#/definitions/streams/members" + - $ref: "#/definitions/streams/invoices" + +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - environment + properties: + api_key: + type: string + description: >- + API key to use. You can generate an API key through the Tremendous + dashboard under Team Settings > Developers. Save the key once you’ve + generated it. + name: api_key + order: 0 + title: API Key + airbyte_secret: true + environment: + type: string + enum: + - api + - testflight + order: 1 + title: Environment + additionalProperties: true + +metadata: + autoImportSchema: + orders: true + products: true + funding_sources: true + account_members: true + campaigns: true + organizations: true + balance_transactions: true + rewards: true + members: true + invoices: true + testedStreams: + orders: + hasRecords: true + streamHash: dd9ac3e7308d44dfed6de40252f859c99e04c1c8 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + products: + hasRecords: true + streamHash: c6cb16800a3e12c9eebc9c9fbd449f959d7ebec1 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + funding_sources: + hasRecords: true + streamHash: 06dcd4a04c1ebd97832ba7c747bfbadb3f6cdb1e + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + account_members: + hasRecords: true + streamHash: 371cc88527067daa1f8b1752d31f516a2c676da7 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + campaigns: + hasRecords: true + streamHash: 15fed638e51342240d46f6efb8f3cb8e384db2aa + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + organizations: + hasRecords: true + streamHash: c1ab194ed5a9d57adf721f9d3d66ef97702cdbd3 + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + balance_transactions: + hasRecords: true + streamHash: dae4c687de6c466303e9dae084c6249dbb9e7cab + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + rewards: + hasRecords: true + streamHash: 30f243c223daae7ffb4d35b4acfc8e6774daa11b + hasResponse: true + primaryKeysAreUnique: true + primaryKeysArePresent: true + responsesAreSuccessful: true + members: + streamHash: efe28ca3fd698fd3e3b911c2691cf3552f887a01 + hasResponse: true + responsesAreSuccessful: true + hasRecords: true + primaryKeysArePresent: true + primaryKeysAreUnique: true + invoices: + streamHash: e889a596aaf7abae9f180dfe83617f44b71acfe3 + hasResponse: true + responsesAreSuccessful: true + hasRecords: false + primaryKeysArePresent: true + primaryKeysAreUnique: true + assist: + docsUrl: https://developers.tremendous.com/docs/introduction + +schemas: + orders: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + campaign_id: + type: + - string + - "null" + channel: + type: + - string + - "null" + created_at: + type: + - string + - "null" + id: + type: string + payment: + type: + - object + - "null" + properties: + discount: + type: + - number + - "null" + fees: + type: + - number + - "null" + subtotal: + type: + - number + - "null" + total: + type: + - number + - "null" + rewards: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + created_at: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + method: + type: + - string + - "null" + status: + type: + - string + - "null" + id: + type: + - string + - "null" + order_id: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + value: + type: + - object + - "null" + properties: + currency_code: + type: + - string + - "null" + denomination: + type: + - number + - "null" + status: + type: + - string + - "null" + required: + - id + products: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + category: + type: + - string + - "null" + countries: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + abbr: + type: + - string + - "null" + currency_codes: + type: + - array + - "null" + items: + type: + - string + - "null" + disclosure: + type: + - string + - "null" + id: + type: + - string + - "null" + images: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + type: + type: + - string + - "null" + src: + type: + - string + - "null" + name: + type: + - string + - "null" + skus: + type: + - array + - "null" + items: + type: + - object + - "null" + properties: + max: + type: + - number + - "null" + min: + type: + - number + - "null" + funding_sources: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: string + meta: + type: + - object + - "null" + properties: + available_cents: + type: + - number + - "null" + pending_cents: + type: + - number + - "null" + method: + type: + - string + - "null" + required: + - id + account_members: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + email: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + role: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + campaigns: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + email_style: + type: + - object + - "null" + properties: + sender_name: + type: + - string + - "null" + subject_line: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + products: + type: + - array + - "null" + items: + type: + - string + - "null" + webpage_style: + type: + - object + - "null" + properties: + background_color: + type: + - string + - "null" + headline: + type: + - string + - "null" + logo_background_color: + type: + - string + - "null" + logo_image_height_px: + type: + - number + - "null" + logo_image_url: + type: + - string + - "null" + message: + type: + - string + - "null" + required: + - id + organizations: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + id: + type: string + name: + type: + - string + - "null" + status: + type: + - string + - "null" + website: + type: + - string + - "null" + required: + - id + balance_transactions: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + description: + type: + - string + - "null" + action: + type: + - string + - "null" + amount: + type: + - number + - "null" + balance: + type: + - number + - "null" + created_at: + type: + - string + - "null" + order: + type: + - object + - "null" + properties: + id: + type: + - string + - "null" + payment: + type: + - object + - "null" + properties: + discount: + type: + - number + - "null" + fees: + type: + - number + - "null" + subtotal: + type: + - number + - "null" + total: + type: + - number + - "null" + rewards: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + created_at: + type: + - string + - "null" + delivery: + type: + - object + - "null" + properties: + method: + type: + - string + - "null" + status: + type: + - string + - "null" + id: + type: string + order_id: + type: + - string + - "null" + recipient: + type: + - object + - "null" + properties: + email: + type: + - string + - "null" + name: + type: + - string + - "null" + phone: + type: + - string + - "null" + value: + type: + - object + - "null" + properties: + currency_code: + type: + - string + - "null" + denomination: + type: + - number + - "null" + required: + - id + members: + type: object + $schema: http://json-schema.org/schema# + additionalProperties: true + properties: + active: + type: + - boolean + - "null" + created_at: + type: + - string + - "null" + email: + type: + - string + - "null" + id: + type: string + name: + type: + - string + - "null" + role: + type: + - string + - "null" + status: + type: + - string + - "null" + required: + - id + invoices: + type: object + $schema: http://json-schema.org/draft-07/schema# + additionalProperties: true + properties: {} diff --git a/airbyte-integrations/connectors/source-tremendous/metadata.yaml b/airbyte-integrations/connectors/source-tremendous/metadata.yaml new file mode 100644 index 000000000000..a03202db418b --- /dev/null +++ b/airbyte-integrations/connectors/source-tremendous/metadata.yaml @@ -0,0 +1,35 @@ +metadataSpecVersion: "1.0" +data: + allowedHosts: + hosts: + - "https:" + registryOverrides: + oss: + enabled: true + cloud: + enabled: true + remoteRegistries: + pypi: + enabled: false + packageName: airbyte-source-tremendous + connectorBuildOptions: + baseImage: docker.io/airbyte/source-declarative-manifest:5.17.0@sha256:9c6bfd080a247b7781ce5b25687e7c44e29d31315d0bf656584b38810521bbaa + connectorSubtype: api + connectorType: source + definitionId: 6a91b109-0286-40a0-801b-ac86933a44d4 + dockerImageTag: 0.0.1 + dockerRepository: airbyte/source-tremendous + githubIssueLabel: source-tremendous + icon: icon.svg + license: MIT + name: Tremendous + releaseDate: 2024-10-29 + releaseStage: alpha + supportLevel: community + documentationUrl: https://docs.airbyte.com/integrations/sources/tremendous + tags: + - language:manifest-only + - cdk:low-code + ab_internal: + ql: 100 + sl: 100 diff --git a/docs/integrations/sources/tremendous.md b/docs/integrations/sources/tremendous.md new file mode 100644 index 000000000000..4adcba6991b6 --- /dev/null +++ b/docs/integrations/sources/tremendous.md @@ -0,0 +1,34 @@ +# Tremendous +Tremendous connector enables seamless integration with Tremendous API. This connector allows organizations to automate and sync reward, incentive, and payout data, tapping into 2000+ payout methods, including ACH, gift cards, PayPal, and prepaid cards, all from a single platform. + +## Configuration + +| Input | Type | Description | Default Value | +|-------|------|-------------|---------------| +| `api_key` | `string` | API Key. API key to use. You can generate an API key through the Tremendous dashboard under Team Settings > Developers. Save the key once you’ve generated it. | | +| `environment` | `string` | Environment. | | + +## Streams +| Stream Name | Primary Key | Pagination | Supports Full Sync | Supports Incremental | +|-------------|-------------|------------|---------------------|----------------------| +| orders | id | DefaultPaginator | ✅ | ❌ | +| products | id | DefaultPaginator | ✅ | ❌ | +| funding_sources | id | DefaultPaginator | ✅ | ❌ | +| account_members | id | DefaultPaginator | ✅ | ❌ | +| campaigns | id | DefaultPaginator | ✅ | ❌ | +| exchange_rates | | DefaultPaginator | ✅ | ❌ | +| organizations | id | DefaultPaginator | ✅ | ❌ | +| balance_transactions | | DefaultPaginator | ✅ | ❌ | +| rewards | id | DefaultPaginator | ✅ | ❌ | +| invoices | id | DefaultPaginator | ✅ | ❌ | + +## Changelog + +
+ Expand to review + +| Version | Date | Pull Request | Subject | +|------------------|-------------------|--------------|----------------| +| 0.0.1 | 2024-10-29 | | Initial release by [@bishalbera](https://github.com/bishalbera) via Connector Builder | + +
From 5ca44e5d0d2d96bb0b0113a277b9667832947755 Mon Sep 17 00:00:00 2001 From: Artem Inzhyyants <36314070+artem1205@users.noreply.github.com> Date: Thu, 7 Nov 2024 16:04:52 +0100 Subject: [PATCH 783/808] feat(airbyte-cdk): add clear method to HttpMocker (#48399) Signed-off-by: Artem Inzhyyants --- airbyte-cdk/python/airbyte_cdk/test/mock_http/mocker.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/airbyte-cdk/python/airbyte_cdk/test/mock_http/mocker.py b/airbyte-cdk/python/airbyte_cdk/test/mock_http/mocker.py index 5287c7451d2d..4ac690dc5275 100644 --- a/airbyte-cdk/python/airbyte_cdk/test/mock_http/mocker.py +++ b/airbyte-cdk/python/airbyte_cdk/test/mock_http/mocker.py @@ -133,3 +133,7 @@ def wrapper(*args, **kwargs): # type: ignore # this is a very generic wrapper return result return wrapper + + def clear_all_matchers(self) -> None: + """Clears all stored matchers by resetting the _matchers list to an empty state.""" + self._matchers = [] From 944e01085233fdd204001f5e671f1af2cfeb40f1 Mon Sep 17 00:00:00 2001 From: artem1205 Date: Thu, 7 Nov 2024 15:09:08 +0000 Subject: [PATCH 784/808] =?UTF-8?q?=F0=9F=A4=96=20minor=20bump=20Python=20?= =?UTF-8?q?CDK=20to=20version=206.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-cdk/python/CHANGELOG.md | 3 +++ airbyte-cdk/python/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index 90d513a24afb..38a5ce366bca 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 6.3.0 + add clear method to HttpMocker + ## 6.2.0 Support multiple input datetime formats as part of the concurrent cursor diff --git a/airbyte-cdk/python/pyproject.toml b/airbyte-cdk/python/pyproject.toml index cda13ba93c7f..76e87eabf5dd 100644 --- a/airbyte-cdk/python/pyproject.toml +++ b/airbyte-cdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-cdk" -version = "6.2.0" +version = "6.3.0" description = "A framework for writing Airbyte Connectors." authors = ["Airbyte "] license = "MIT" From 87f514d56adeac134f61400a70095b2a73b0bf02 Mon Sep 17 00:00:00 2001 From: artem1205 Date: Thu, 7 Nov 2024 15:15:59 +0000 Subject: [PATCH 785/808] =?UTF-8?q?=F0=9F=A4=96=20Cut=20version=206.3.0=20?= =?UTF-8?q?of=20source-declarative-manifest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-declarative-manifest/metadata.yaml | 2 +- .../connectors/source-declarative-manifest/poetry.lock | 8 ++++---- .../connectors/source-declarative-manifest/pyproject.toml | 4 ++-- docs/integrations/sources/low-code.md | 1 + 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml index 53039337afab..8af16dc7b9e8 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml +++ b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml @@ -8,7 +8,7 @@ data: connectorType: source definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436 # This version should not be updated manually - it is updated by the CDK release workflow. - dockerImageTag: 6.2.1 + dockerImageTag: 6.3.0 dockerRepository: airbyte/source-declarative-manifest # This page is hidden from the docs for now, since the connector is not in any Airbyte registries. documentationUrl: https://docs.airbyte.com/integrations/sources/low-code diff --git a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock index 5877e15bc13c..3b2d09724e00 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock +++ b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "6.2.0" +version = "6.3.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "airbyte_cdk-6.2.0-py3-none-any.whl", hash = "sha256:731f908577800a0c3f7f930629955ad27429cda3aed3c2436a9230f0692732fd"}, - {file = "airbyte_cdk-6.2.0.tar.gz", hash = "sha256:019e360c7e343246285b467d2a4d5aa9cb725690f818bc7056eb9e69fbdbc895"}, + {file = "airbyte_cdk-6.3.0-py3-none-any.whl", hash = "sha256:e7c0bf0798aa6e8b0ba542a001551d21523e9f02609a4576bfffe0c9ce402606"}, + {file = "airbyte_cdk-6.3.0.tar.gz", hash = "sha256:5dc996f3c3cc65e3f10a120ce7f49790a6023478f70743caf2c840edc9b38eb3"}, ] [package.dependencies] @@ -1779,4 +1779,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10,<3.12" -content-hash = "eb2117f91ca29b32f5c630abeb0f86872aef6a883540a32bb87a3a84e16d49f8" +content-hash = "a9d70525034a9d720aa7700ca3bde75cd3d8ed925f35ae452017fe4e0bcc7069" diff --git a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml index d44f0c01b34a..f1e48fabdc58 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml +++ b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.2.1" +version = "6.3.0" name = "source-declarative-manifest" description = "Base source implementation for low-code sources." authors = ["Airbyte "] @@ -17,7 +17,7 @@ include = "source_declarative_manifest" [tool.poetry.dependencies] python = "^3.10,<3.12" -airbyte-cdk = "6.2.0" +airbyte-cdk = "6.3.0" [tool.poetry.scripts] source-declarative-manifest = "source_declarative_manifest.run:run" diff --git a/docs/integrations/sources/low-code.md b/docs/integrations/sources/low-code.md index 273b561b3f01..19d3cbad9097 100644 --- a/docs/integrations/sources/low-code.md +++ b/docs/integrations/sources/low-code.md @@ -9,6 +9,7 @@ The changelog below is automatically updated by the `bump_version` command as pa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 6.3.0 | 2024-11-07 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.3.0 | | 6.2.1 | 2024-11-05 | [48373](https://github.com/airbytehq/airbyte/pull/48373) | Add CDK v6 support to remote manifest mode | | 6.2.0 | 2024-11-05 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 6.2.0 | | 6.1.2 | 2024-11-05 | [48344](https://github.com/airbytehq/airbyte/pull/48344) | Fix discover failing on new CDK | From 2e3023a8cf204ecbd18804f681a79a86e82d6e9b Mon Sep 17 00:00:00 2001 From: Johnny Schmidt Date: Thu, 7 Nov 2024 07:45:33 -0800 Subject: [PATCH 786/808] Bulk Load CDK: Mapper Pipeline (#48371) --- .../load/data/AirbyteValueIdentityMapper.kt | 39 +++++- .../airbyte/cdk/load/data/MapperPipeline.kt | 39 ++++++ .../cdk/load/data/SchemalessTypesToJson.kt | 3 +- .../load/data/SchemalessTypesToJsonString.kt | 4 +- .../cdk/load/data/TimeStringToInteger.kt | 3 +- .../load/data/UnionTypeToDisjointRecord.kt | 4 +- .../data/AirbyteValueIdentityMapperTest.kt | 22 ++-- .../cdk/load/data/MapperPipelineTest.kt | 117 ++++++++++++++++++ .../data/SchemalessTypesToJsonStringTest.kt | 5 +- .../load/data/SchemalessTypesToJsonTest.kt | 5 +- .../cdk/load/data/TimeStringToIntegerTest.kt | 11 +- .../cdk/load/test/util/SchemaRecordBuilder.kt | 7 +- .../cdk/load/test/util/ValueTestBuilder.kt | 9 +- 13 files changed, 223 insertions(+), 45 deletions(-) create mode 100644 airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/MapperPipeline.kt create mode 100644 airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/MapperPipelineTest.kt diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt index f72d908425fd..b10f2c340775 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapper.kt @@ -8,20 +8,47 @@ import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.protocol.models.v0.AirbyteRecordMessageMetaChange.Change import io.airbyte.protocol.models.v0.AirbyteRecordMessageMetaChange.Reason -open class AirbyteValueIdentityMapper( - val meta: DestinationRecord.Meta, -) { +interface AirbyteValueMapper { + val collectedChanges: List + + fun map( + value: AirbyteValue, + schema: AirbyteType, + path: List = emptyList(), + ): AirbyteValue +} + +/** An optimized identity mapper that just passes through. */ +class AirbyteValueNoopMapper : AirbyteValueMapper { + override val collectedChanges: List = emptyList() + + override fun map( + value: AirbyteValue, + schema: AirbyteType, + path: List, + ): AirbyteValue = value +} + +open class AirbyteValueIdentityMapper : AirbyteValueMapper { + override val collectedChanges: List + get() = changes.toList().also { changes.clear() } + + private val changes: MutableList = mutableListOf() + private fun collectFailure( path: List, reason: Reason = Reason.DESTINATION_SERIALIZATION_ERROR ) { - meta.changes.add(DestinationRecord.Change(path.joinToString("."), Change.NULLED, reason)) + val joined = path.joinToString(".") + if (changes.none { it.field == joined }) { + changes.add(DestinationRecord.Change(path.joinToString("."), Change.NULLED, reason)) + } } - fun map( + override fun map( value: AirbyteValue, schema: AirbyteType, - path: List = emptyList() + path: List, ): AirbyteValue = try { when (schema) { diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/MapperPipeline.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/MapperPipeline.kt new file mode 100644 index 000000000000..3b3b194d588c --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/MapperPipeline.kt @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.command.DestinationStream +import io.airbyte.cdk.load.message.DestinationRecord.Change + +class MapperPipeline( + inputSchema: AirbyteType, + schemaValueMapperPairs: List>, +) { + private val schemasWithMappers: List> + + val finalSchema: AirbyteType + + init { + val (schemaMappers, valueMappers) = schemaValueMapperPairs.unzip() + val schemas = + schemaMappers.runningFold(inputSchema) { schema, mapper -> mapper.map(schema) } + schemasWithMappers = schemas.zip(valueMappers) + finalSchema = schemas.last() + } + + fun map(data: AirbyteValue): Pair> { + val results = + schemasWithMappers.runningFold(data) { value, (schema, mapper) -> + mapper.map(value, schema) + } + val changesFlattened = + schemasWithMappers.flatMap { it.second.collectedChanges }.toSet().toList() + return results.last() to changesFlattened + } +} + +interface MapperPipelineFactory { + fun create(stream: DestinationStream): MapperPipeline +} diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJson.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJson.kt index 5ac72691d6d3..2b8dcc7d5169 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJson.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJson.kt @@ -5,7 +5,6 @@ package io.airbyte.cdk.load.data import io.airbyte.cdk.load.data.json.toJson -import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.util.serializeToString class SchemalessTypesToJson : AirbyteSchemaIdentityMapper { @@ -15,7 +14,7 @@ class SchemalessTypesToJson : AirbyteSchemaIdentityMapper { override fun mapArrayWithoutSchema(schema: ArrayTypeWithoutSchema): AirbyteType = StringType } -class SchemalessValuesToJson(meta: DestinationRecord.Meta) : AirbyteValueIdentityMapper(meta) { +class SchemalessValuesToJson : AirbyteValueIdentityMapper() { override fun mapObjectWithoutSchema( value: ObjectValue, schema: ObjectTypeWithoutSchema, diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonString.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonString.kt index 7946bdc22b9b..e4eaee2663c4 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonString.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonString.kt @@ -5,7 +5,6 @@ package io.airbyte.cdk.load.data import io.airbyte.cdk.load.data.json.toJson -import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.util.serializeToString class SchemalessTypesToJsonString : AirbyteSchemaIdentityMapper { @@ -15,8 +14,7 @@ class SchemalessTypesToJsonString : AirbyteSchemaIdentityMapper { override fun mapArrayWithoutSchema(schema: ArrayTypeWithoutSchema): AirbyteType = StringType } -class SchemalessValuesToJsonString(meta: DestinationRecord.Meta) : - AirbyteValueIdentityMapper(meta) { +class SchemalessValuesToJsonString : AirbyteValueIdentityMapper() { override fun mapObjectWithoutSchema( value: ObjectValue, schema: ObjectTypeWithoutSchema, diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/TimeStringToInteger.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/TimeStringToInteger.kt index 0bfe95911288..5cee5e5aa8fd 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/TimeStringToInteger.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/TimeStringToInteger.kt @@ -4,7 +4,6 @@ package io.airbyte.cdk.load.data -import io.airbyte.cdk.load.message.DestinationRecord import java.time.LocalDate import java.time.LocalDateTime import java.time.LocalTime @@ -30,7 +29,7 @@ class TimeStringTypeToIntegerType : AirbyteSchemaIdentityMapper { * NOTE: To keep parity with the old avro/parquet code, we will always first try to parse the value * as with timezone, then fall back to without. But in theory we should be more strict. */ -class TimeStringToInteger(meta: DestinationRecord.Meta) : AirbyteValueIdentityMapper(meta) { +class TimeStringToInteger : AirbyteValueIdentityMapper() { companion object { private val DATE_TIME_FORMATTER: DateTimeFormatter = DateTimeFormatter.ofPattern( diff --git a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt index c6af8baad53f..0e9f7a4c9075 100644 --- a/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt +++ b/airbyte-cdk/bulk/core/load/src/main/kotlin/io/airbyte/cdk/load/data/UnionTypeToDisjointRecord.kt @@ -4,8 +4,6 @@ package io.airbyte.cdk.load.data -import io.airbyte.cdk.load.message.DestinationRecord - class UnionTypeToDisjointRecord : AirbyteSchemaIdentityMapper { override fun mapUnion(schema: UnionType): AirbyteType { if (schema.options.size < 2) { @@ -46,7 +44,7 @@ class UnionTypeToDisjointRecord : AirbyteSchemaIdentityMapper { } } -class UnionValueToDisjointRecord(meta: DestinationRecord.Meta) : AirbyteValueIdentityMapper(meta) { +class UnionValueToDisjointRecord : AirbyteValueIdentityMapper() { override fun mapUnion( value: AirbyteValue, schema: UnionType, diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapperTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapperTest.kt index f162f8bfc630..0c9a57cb739d 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapperTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/AirbyteValueIdentityMapperTest.kt @@ -4,7 +4,6 @@ package io.airbyte.cdk.load.data -import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.test.util.Root import io.airbyte.cdk.load.test.util.SchemaRecordBuilder import io.airbyte.cdk.load.test.util.ValueTestBuilder @@ -39,10 +38,10 @@ class AirbyteValueIdentityMapperTest { .endRecord() .build() - val meta = DestinationRecord.Meta() - val values = AirbyteValueIdentityMapper(meta).map(inputValues, inputSchema) + val mapper = AirbyteValueIdentityMapper() + val values = mapper.map(inputValues, inputSchema) Assertions.assertEquals(expectedValues, values) - Assertions.assertTrue(meta.changes.isEmpty()) + Assertions.assertTrue(mapper.collectedChanges.isEmpty()) } @Test @@ -56,16 +55,15 @@ class AirbyteValueIdentityMapperTest { nameOverride = "bad" ) .build() - val meta = DestinationRecord.Meta() - val values = AirbyteValueIdentityMapper(meta).map(inputValues, inputSchema) as ObjectValue - Assertions.assertTrue(meta.changes.isNotEmpty()) + val mapper = AirbyteValueIdentityMapper() + val values = mapper.map(inputValues, inputSchema) as ObjectValue + val changes = mapper.collectedChanges + Assertions.assertTrue(changes.isNotEmpty()) Assertions.assertTrue(values.values["bad"] is NullValue) - Assertions.assertTrue(meta.changes[0].field == "bad") + Assertions.assertTrue(changes[0].field == "bad") + Assertions.assertTrue(changes[0].change == AirbyteRecordMessageMetaChange.Change.NULLED) Assertions.assertTrue( - meta.changes[0].change == AirbyteRecordMessageMetaChange.Change.NULLED - ) - Assertions.assertTrue( - meta.changes[0].reason == + changes[0].reason == AirbyteRecordMessageMetaChange.Reason.DESTINATION_SERIALIZATION_ERROR ) } diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/MapperPipelineTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/MapperPipelineTest.kt new file mode 100644 index 000000000000..937d80db21c7 --- /dev/null +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/MapperPipelineTest.kt @@ -0,0 +1,117 @@ +/* + * Copyright (c) 2024 Airbyte, Inc., all rights reserved. + */ + +package io.airbyte.cdk.load.data + +import io.airbyte.cdk.load.test.util.Root +import io.airbyte.cdk.load.test.util.SchemaRecordBuilder +import io.airbyte.cdk.load.test.util.ValueTestBuilder +import org.junit.jupiter.api.Assertions +import org.junit.jupiter.api.Test + +class MapperPipelineTest { + class TurnSchemalessObjectTypesIntoIntegers : AirbyteSchemaIdentityMapper { + override fun mapObjectWithoutSchema(schema: ObjectTypeWithoutSchema): AirbyteType = + IntegerType + } + + class TurnSchemalessObjectsIntoIntegers : AirbyteValueIdentityMapper() { + override fun mapObjectWithoutSchema( + value: ObjectValue, + schema: ObjectTypeWithoutSchema, + path: List + ): AirbyteValue { + if (value.values.size == 1) { + throw IllegalStateException("Arbitrarily reject 1") + } + return IntegerValue(value.values.size.toLong()) + } + } + + class TurnIntegerTypesIntoStrings : AirbyteSchemaIdentityMapper { + override fun mapInteger(schema: IntegerType): AirbyteType = StringType + } + + class TurnIntegersIntoStrings : AirbyteValueIdentityMapper() { + override fun mapInteger(value: IntegerValue, path: List): AirbyteValue { + if (value.value == 2L) { + throw IllegalStateException("Arbitrarily reject 2") + } + return StringValue(value.value.toString()) + } + } + + private fun makePipeline(schema: AirbyteType) = + MapperPipeline( + schema, + listOf( + TurnIntegerTypesIntoStrings() to TurnIntegersIntoStrings(), + TurnSchemalessObjectTypesIntoIntegers() to TurnSchemalessObjectsIntoIntegers(), + ) + ) + + @Test + fun testSuccessfulPipeline() { + val (inputSchema, expectedSchema) = + SchemaRecordBuilder() + .with(ObjectTypeWithoutSchema, IntegerType) + .with(IntegerType, StringType) + .withRecord() + .with(IntegerType, StringType) + .with(BooleanType, BooleanType) // expect unchanged + .endRecord() + .build() + + val pipeline = makePipeline(inputSchema) + Assertions.assertEquals( + expectedSchema, + pipeline.finalSchema, + "final schema matches expected transformed schema" + ) + } + + @Test + fun testRecordMapping() { + val (inputValue, inputSchema, expectedOutput) = + ValueTestBuilder() + .with( + ObjectValue(linkedMapOf("a" to IntegerValue(1), "b" to IntegerValue(2))), + ObjectTypeWithoutSchema, + IntegerValue(2) + ) + .with(IntegerValue(1), IntegerType, StringValue("1")) + .withRecord() + .with(IntegerValue(3), IntegerType, StringValue("3")) + .with(BooleanValue(true), BooleanType, BooleanValue(true)) // expect unchanged + .endRecord() + .build() + val pipeline = makePipeline(inputSchema) + val (result, changes) = pipeline.map(inputValue) + + Assertions.assertEquals(0, changes.size, "no changes were captured") + Assertions.assertEquals(expectedOutput, result, "data was transformed as expected") + } + + @Test + fun testFailedMapping() { + val (inputValue, inputSchema, _) = + ValueTestBuilder() + .with( + ObjectValue(linkedMapOf("a" to IntegerValue(1))), + ObjectTypeWithoutSchema, + NullValue, + nullable = true + ) // fail: reject size==1 + .with(IntegerValue(1), IntegerType, StringValue("1")) + .withRecord() + .with(IntegerValue(2), IntegerType, NullValue, nullable = true) // fail: reject 2 + .with(BooleanValue(true), BooleanType, BooleanValue(true)) // expect unchanged + .endRecord() + .build() + val pipeline = makePipeline(inputSchema) + val (_, changes) = pipeline.map(inputValue) + + Assertions.assertEquals(2, changes.size, "two failures were captured") + } +} diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonStringTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonStringTest.kt index 27d5d9cf9042..eeac7504c8dc 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonStringTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonStringTest.kt @@ -5,7 +5,6 @@ package io.airbyte.cdk.load.data import io.airbyte.cdk.load.data.json.toAirbyteValue -import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.test.util.Root import io.airbyte.cdk.load.test.util.SchemaRecordBuilder import io.airbyte.cdk.load.test.util.ValueTestBuilder @@ -85,7 +84,7 @@ class SchemalessTypesToJsonStringTest { ArrayType(FieldType(StringType, nullable = false)) ) .build() - val mapper = SchemalessValuesToJsonString(DestinationRecord.Meta()) + val mapper = SchemalessValuesToJsonString() val output = mapper.map(inputValues, inputSchema) Assertions.assertEquals(expectedOutput, output) } @@ -120,7 +119,7 @@ class SchemalessTypesToJsonStringTest { ArrayType(FieldType(StringType, nullable = false)) ) .build() - val mapper = SchemalessValuesToJsonString(DestinationRecord.Meta()) + val mapper = SchemalessValuesToJsonString() val output = mapper.map(inputValues, inputSchema) Assertions.assertEquals(expectedOutput, output) } diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonTest.kt index 7dab6e3d4b1a..53266563a27a 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/SchemalessTypesToJsonTest.kt @@ -5,7 +5,6 @@ package io.airbyte.cdk.load.data import io.airbyte.cdk.load.data.json.toAirbyteValue -import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.test.util.Root import io.airbyte.cdk.load.test.util.SchemaRecordBuilder import io.airbyte.cdk.load.test.util.ValueTestBuilder @@ -85,7 +84,7 @@ class SchemalessTypesToJsonTest { ArrayType(FieldType(StringType, nullable = false)) ) .build() - val mapper = SchemalessValuesToJson(DestinationRecord.Meta()) + val mapper = SchemalessValuesToJson() val output = mapper.map(inputValues, inputSchema) Assertions.assertEquals(expectedOutput, output) } @@ -120,7 +119,7 @@ class SchemalessTypesToJsonTest { ArrayType(FieldType(StringType, nullable = false)) ) .build() - val mapper = SchemalessValuesToJson(DestinationRecord.Meta()) + val mapper = SchemalessValuesToJson() val output = mapper.map(inputValues, inputSchema) Assertions.assertEquals(expectedOutput, output) } diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/TimeStringToIntegerTest.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/TimeStringToIntegerTest.kt index 6cfc18a622fd..f17896fce9ef 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/TimeStringToIntegerTest.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/data/TimeStringToIntegerTest.kt @@ -4,7 +4,6 @@ package io.airbyte.cdk.load.data -import io.airbyte.cdk.load.message.DestinationRecord import io.airbyte.cdk.load.test.util.Root import io.airbyte.cdk.load.test.util.SchemaRecordBuilder import org.junit.jupiter.api.Assertions @@ -14,7 +13,7 @@ class TimeStringToIntegerTest { @Test fun testMapDate() { - val mapper = TimeStringToInteger(DestinationRecord.Meta()) + val mapper = TimeStringToInteger() listOf( "2021-1-1" to 18628, "2021-01-01" to 18628, @@ -65,7 +64,7 @@ class TimeStringToIntegerTest { @Test fun testMapTimestampWithTimezone() { - val mapper = TimeStringToInteger(DestinationRecord.Meta()) + val mapper = TimeStringToInteger() timestampPairs.forEach { Assertions.assertEquals( IntegerValue(it.second), @@ -77,7 +76,7 @@ class TimeStringToIntegerTest { @Test fun testMapTimestampWithoutTimezone() { - val mapper = TimeStringToInteger(DestinationRecord.Meta()) + val mapper = TimeStringToInteger() timestampPairs.forEach { Assertions.assertEquals( IntegerValue(it.second), @@ -100,7 +99,7 @@ class TimeStringToIntegerTest { @Test fun testTimeWithTimezone() { - val mapper = TimeStringToInteger(DestinationRecord.Meta()) + val mapper = TimeStringToInteger() timePairs.forEach { Assertions.assertEquals( IntegerValue(it.second), @@ -112,7 +111,7 @@ class TimeStringToIntegerTest { @Test fun testTimeWithoutTimezone() { - val mapper = TimeStringToInteger(DestinationRecord.Meta()) + val mapper = TimeStringToInteger() timePairs.forEach { Assertions.assertEquals( IntegerValue(it.second), diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/test/util/SchemaRecordBuilder.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/test/util/SchemaRecordBuilder.kt index b90cd930016e..16d1777e4be1 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/test/util/SchemaRecordBuilder.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/test/util/SchemaRecordBuilder.kt @@ -34,14 +34,15 @@ class SchemaRecordBuilder( fun with( given: AirbyteType, expected: AirbyteType = given, - nameOverride: String? = null + nameOverride: String? = null, ): SchemaRecordBuilder { return with(FieldType(given, false), FieldType(expected, false), nameOverride) } fun withRecord( nullable: Boolean = false, - nameOverride: String? = null + nameOverride: String? = null, + expectedInstead: ObjectType? = null ): SchemaRecordBuilder> { val name = nameOverride ?: UUID.randomUUID().toString() val inputRecord = ObjectType(properties = LinkedHashMap()) @@ -50,7 +51,7 @@ class SchemaRecordBuilder( expectedSchema.properties[name] = FieldType(outputRecord, nullable = nullable) return SchemaRecordBuilder( inputSchema = inputRecord, - expectedSchema = outputRecord, + expectedSchema = expectedInstead ?: outputRecord, parent = this ) } diff --git a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/test/util/ValueTestBuilder.kt b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/test/util/ValueTestBuilder.kt index 922cde30f918..3f8e0e10cd65 100644 --- a/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/test/util/ValueTestBuilder.kt +++ b/airbyte-cdk/bulk/core/load/src/test/kotlin/io/airbyte/cdk/load/test/util/ValueTestBuilder.kt @@ -6,6 +6,7 @@ package io.airbyte.cdk.load.test.util import io.airbyte.cdk.load.data.AirbyteType import io.airbyte.cdk.load.data.AirbyteValue +import io.airbyte.cdk.load.data.FieldType import io.airbyte.cdk.load.data.ObjectType import io.airbyte.cdk.load.data.ObjectValue import java.util.UUID @@ -21,12 +22,16 @@ data class ValueTestBuilder( inputValue: AirbyteValue, inputSchema: AirbyteType, expectedValue: AirbyteValue = inputValue, - nameOverride: String? = null + nameOverride: String? = null, + nullable: Boolean = false, ): ValueTestBuilder { val name = nameOverride ?: UUID.randomUUID().toString() inputValues.values[name] = inputValue expectedValues.values[name] = expectedValue - (schemaRecordBuilder as SchemaRecordBuilder<*>).with(inputSchema, nameOverride = name) + (schemaRecordBuilder as SchemaRecordBuilder<*>).with( + FieldType(inputSchema, nullable), + nameOverride = name + ) return this } From c6c1f6a2c305789c520bc07e482178ef9865948d Mon Sep 17 00:00:00 2001 From: Alexandre Cuoci Date: Thu, 7 Nov 2024 11:46:40 -0500 Subject: [PATCH 787/808] 1.2 release notes (#48127) --- .../assets/1.2-file-transfers.png | Bin 0 -> 135758 bytes docs/release_notes/assets/1.2-rbac-runner.png | Bin 0 -> 389449 bytes docs/release_notes/assets/1.2-xml-builder.png | Bin 0 -> 866477 bytes docs/release_notes/v-1.2.md | 30 ++++++++++++++++++ docusaurus/sidebars.js | 1 + 5 files changed, 31 insertions(+) create mode 100644 docs/release_notes/assets/1.2-file-transfers.png create mode 100644 docs/release_notes/assets/1.2-rbac-runner.png create mode 100644 docs/release_notes/assets/1.2-xml-builder.png create mode 100644 docs/release_notes/v-1.2.md diff --git a/docs/release_notes/assets/1.2-file-transfers.png b/docs/release_notes/assets/1.2-file-transfers.png new file mode 100644 index 0000000000000000000000000000000000000000..7dd6fa63b25b7a34ca08e63231158214ebb7d457 GIT binary patch literal 135758 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

-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 literal 0 HcmV?d00001 diff --git a/docs/release_notes/assets/1.2-rbac-runner.png b/docs/release_notes/assets/1.2-rbac-runner.png new file mode 100644 index 0000000000000000000000000000000000000000..1df7c01bf5988d71dbaf76f46eb1bdc6281a481c GIT binary patch literal 389449 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

v1 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�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